Linux: How to list only folders with lsdecl (25) in linux • 7 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. linux cli ls folders