1761022 Members
4023 Online
108897 Solutions
New Discussion юеВ

List Directory, Sub-Dirs

 
SOLVED
Go to solution
panchpan
Regular Advisor

List Directory, Sub-Dirs

Hello.
Could you please let me know the command to list only directory name and their sub-directory names?

Thank you
5 REPLIES 5
Peter Godron
Honored Contributor
Solution

Re: List Directory, Sub-Dirs

Hi,
see
man find


find -type d
e.g.
find . -type d for current dir downwards
find / -type d for / dir downwards
Ninad_1
Honored Contributor

Re: List Directory, Sub-Dirs

Hi,

If you want to search in say /dir1 then use
find /dir1 -type d
This should list all dirs and sub dirs under /dir1

Regards,
Ninad
panchpan
Regular Advisor

Re: List Directory, Sub-Dirs

Thank you so much for your help and time.
sudhapage
Regular Advisor

Re: List Directory, Sub-Dirs

Hi,

Ex: list the directories and subdirectories of the "test" folder

'find /test -type d'

This will display directories and subdirectories of the test folder.

Regards,
Sudhakaran.K
Murat SULUHAN
Honored Contributor

Re: List Directory, Sub-Dirs

Hi

ls -l | grep ^d

Best Regards
Murat Suluhan