This doesn't actually solve the problem, but it may help troubleshooting:
: letters (there are three named BQ, others are BQQBQ, CS, CSSPA,
^^^^^^^^^^^^^^
filenames must be unique within a directory. Since you see three 'BQ's I
too am sure there are unprintable chars in the names.
: I'm sure there are control characters mixed in with the actual
: letters that appear on the screen, but I don't know how to get
I use this to tell if some unprintable chars are in a filename. Doesn't
tell you what unprintable chars, but at least I know they are there.
ls | sed -e 's/^/:/' -e 's/$/:/'
This delimits each filename with colons.
To find out the control chars you could ls >listing_file, and then do
'od' on listing_file.
--
---------------------------------------------------------------------
|
| Tad McClellan, Logistics Specialist (IETMs and SGML guy)
| Lockheed Martin Tactical Aircraft Systems
| P.O. Box 748 MZ 1025
| Fort Worth, TX 76101
|
| voice: (817) 763-6314
|
---------------------------------------------------------------------
|
| Just be thankful we don't get all the government we pay for!
|
---------------------------------------------------------------------