By default when you run the ls command, it will show you all the files and directories in the directory you run this command.
If you want to only display the list of all the directories, you can make use of the -d option.
Note it will not work just by using the -d option, you would also need to add */
% ls -d */
/Applications /System /Volumes /cores
/etc /opt /sbin /usr
/Library /Users /bin /dev
/home /private /tmp /var
The * is the wildcard to match any string and / to indicate that only directories should be listed.
If you also want to see hidden files you may add -a flag and -l to display it as a list.
% ls -lad */
Facing issues? Have Questions? Post them here! I am happy to answer!
- Command to know the Available Memory on Linux System
- How to install curl on Alpine Linux
- How to backup a file in Linux/Unix
- Install Java Runtime Environment (Oracle or open JRE) on Ubuntu
- What is the Default Admin user and Password for Jenkins
- How to tar.gz a directory or folder Command
- Copy entire directory using Terminal Command [Linux, Mac, Bash]
- Fix: bash: ipconfig: command not found on Linux
- Command to check Last Login or Reboot History of Users and TTYs
- Linux: Create a New User and Password and Login Example
- ls command to list only directories
- bash: cls: command not found
- How to exit from nano command
- Installing and using unzip Command to unzip a zip file using Terminal
- What does apt-get update command does?
- ls command: sort files by name alphabetically A-Z or Z-A [Linux/Unix/macOS/Bash]
- How to remove or uninstall Java from Ubuntu using apt-get
- scp: ssh: connect to host xxxx port 22: Connection refused Error
- Sort ls command by last modified date and time
- Create Nested Directories using mkdir Command
- How to Exit a File in Terminal (Bash/Zsh)
- Command to know the installed Debian version?
- How to connect to SSH port other than default 22
- How to save a file in Nano Editor and Exit
- Install OpenSSL on Linux/Ubuntu
- How to convert a Excel to PDF file in Mac - MacOS
- How to Provide Full Disk Access to App on Mac - MacOS
- How to Install glib on Mac - MacOS
- Remove Apps from Dock when Quit [Mac Ventura] - MacOS
- List of all iPads till year 2020 - Apple
- Facebook Thanks for stopping by! We hope to see you again soon. - Facebook
- Delete blank lines in a file using Notepad++ - NotepadPlusPlus
- pip install specific version of a Python Package - PIP