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.
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.