List directories via 'ls -d' - surprised me
This was one of those feelings where I was left surprised with the humble linux command 'ls'
Here is what the man page says about ls -d -
list directories themselves, not their contents
tried many times 'ls -d' all I got back was -
[sanjayu@dhcp-0-69:~]$Now definitely there is something wrong, and I started searching the google. frankly not much came out as a help. I know we can do this via find ie find ./ -type d (using -maxdepth one can control recursive-ness). However, what intrigued me was man page and the contrary behaviour.
ls -dl
drwx--x---+ 110 sanjayu sanjayu 12288 Nov 10 19:39 .
[sanjayu@dhcp-0-69:~]$
ls -d
.
Finally found this - http://www.rapidtables.com/code/linux/ls.htm
ls -d */