How to view/list only directories in Linux?
This is a small post for Linux new babies. Viewing folders can be achieved by two ways in linux/unix
- Through ls command
- Through find command
With ls we have to use grep to get the directory listings..
Ls –l | grep ^d
Example
[root@test surendra_a]# ls -l | grep ^d
d——— 2 surendra_a surendra_a 4096 Sep 8 09:54 HTWFAIP
drwxrwxr-x 2 surendra_a root 4096 Nov 27 12:30 LinuxCBT – RHEL5
drwxrwxr-x 2 surendra_a root 4096 Oct 12 16:40 Software
Through find command
find . -type d
The above command will show you all the file types which are directories in present working directory.
There is one more command to list only directories instead of files.
lnx_host-105 ~ ->% ls -ld */
Check Dir with soze
du -h –max-depth=1 | sort -n -r
Check Dir with soze
du -h –max-depth=1 | sort -n -r
wlcm man..!