I'm trying to get a long listing of all directories in the directory tree, but using option d as listed in the man pages does no good.
ls -d <- does not work properly for me
The best alternative solution I found to do this job is using find and grep as follows...
find . -type d -exec ls -l {} \; | grep "^d"
is there a better way to this?
ls -d <- does not work properly for me
The best alternative solution I found to do this job is using find and grep as follows...
find . -type d -exec ls -l {} \; | grep "^d"
is there a better way to this?