How can you list only directories from the current directory?In: Linux |
To list the subdirectories in the current directory:
find . -maxdepth 1 -type d
To list the subdirectories and all their subdirectories:
find . -type d
|
|
|
First answer by Hvdeynde. Last edit by Hvdeynde. Contributor trust: 35 [recommend contributor]. Question popularity: 14 [recommend question]
|
Research your answer: |
Can you answer other questions about linux?
|
|


