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.
Latest posts by Surendra Anne (see all)
- Docker: How to copy files to/from docker container - June 30, 2020
- Anisble: ERROR! unexpected parameter type in action:
Fix - June 29, 2020 - FREE: JOIN OUR DEVOPS TELEGRAM GROUPS - August 2, 2019
- Review: Whizlabs Practice Tests for AWS Certified Solutions Architect Professional (CSAP) - August 27, 2018
- How to use ohai/chef-shell to get node attributes - July 19, 2018