This blog is to share my experience about what I am learning, troubleshooting in my day-to-day life while working on Linux Servers.
Thursday, September 23, 2010
How to listdown directories
ls -d */
the -d says “do not descend into sub-directories, it is the same as saying -d1.
The */ says list only items ending in / (which are directories).
If you want to see hidden directories, you could do a ls -d .*/
No comments:
Post a Comment