17
0
I have a compilation problem, and when I check my lib/ directory I get this output from "ls":
What the red/black combination mean?
I checked in the output of "dircolors -p" as suggested here (What does it mean for the file name to be shown with red background), but I could not find an answer.
Moreover, what the question marks at the place of permissions/user/size/timestamp mean?
Thanks for your help
1
ls -l
should also print the symlink target, which it doesn't seem to do here. – Stefan Seidel – 2013-01-29T13:44:28.2501This is true in most cases, but I've seen it fail to do that in a couple of obscure circumstances.
file
is usually a lot better at working out what's going on with a particular, erm, file. – Xyon – 2013-01-29T13:45:43.377Many thanks Xyon, I didn't know the
file
command: it's very useful indeed. +1! – rmbianchi – 2013-01-30T13:30:39.623