In Ubuntu 10.04, there is a certain file that appears highlighted in terminal. When I try to cat the file, it says there is no such file or directory. How can I see what's in this file? Is this a symbolic link?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Perhaps it's a broken symbolic link pointing to some non-existing destination file?

Some commands you might like to try:

ls -la /path/to/your/file
stat /path/to/your/file
file /path/to/your/file
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.