File Error. Help.

My computer has a file of 600MB size.
I can list it's file name with command ls, but system displays "the file does not exist.", when I operate the file, mv, rm, read etc.
I performed fsck -y on the disk, nothing is wrong with it.
How can I do about that?
 
What is the name of the file? Does it have a space in the name? There could be other invisible characters in the filename, also.
 
If the filename contains an asterisk, you need to escape it with a backslash or with quotes:
% cat foo\*bar
% cat "foo*bar"
% cat 'foo*bar'

Fonz
 
Back
Top