To list the subdirectories in the current directory: find . -maxdepth 1 -type d To list the subdirectories and all their subdirectories: find . -type d
The root directory is the top level directory of the entire file system. Every branch starts from there. The current working directory is where you happen to be in the tree at the moment. If the root...