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 commandecho */
ansible/ caddy/ cheatsheets/ docker/ git/ github/ go/ learning-resources/ linux/ miscellaneous/ python/ reactjs/ vagrant/ vscode/ wsl/2. Example using ls command
ls commandls -d */
ansible/ caddy/ cheatsheets/ docker/ git/ github/ go/ learning-resources/ linux/ miscellaneous/ python/ reactjs/ vagrant/ vscode/ wsl/Source: StackOverFlow
Last updated