An easier way to delete a file with unprintable chars
in the file name is bye using ls -li to get the inode number
and then doing a find:
find . -inum <inumber> -exec rm {} \;
This does the same thing that scw suggests, but doesn't require
any programming and is much quicker/easier.
Gordon Prieur
Tektronix