37
3
For example, if I have a directory containing files file1 and file2, and a directory dir1, then "ls -l file1" will show details just for file1. Doing the same thing for dir1 will instead show the contents of dir1. Is there a way to treat dir1 like file1?
9Merging single-character parameters also works for ls, so
ls -ld dir
andls -dl dir
andls -l -d dir
all work equally well. – Trey Hunner – 2010-05-17T07:29:47.753