Linux: How to list only folders with ls

in #linux8 years ago

Do you want to show only the folders in current the directory ? And not all files ?

Try this one:
$ ls -d */

Where -d lists the directory itself, not the contents and */ shows every folder in the current directory.