aruneeshsalhotr
07-11-03, 16:13
| Hi I had a basic question on Unix. I know in DOS, one could use dir /ad to list only directories in a given path. I wanted to know what is the equivalent command in UNIX for the same. |
View Full Version : How to list only directories
| Hi I had a basic question on Unix. I know in DOS, one could use dir /ad to list only directories in a given path. I wanted to know what is the equivalent command in UNIX for the same. |
| find . -type d works fine but ls -d ./ * show even the files |