Bash List Only Directories
To only directories of current working directory, we can either use echo */
or ls -d */
command.
1. Example using echo
command
echo
command2. Example using ls
command
ls
commandSource: StackOverFlow
Last updated