Answers for "list all directories linux command"

4

get list of directories bash

for d in */ ; do
    echo "$d"
done
Posted by: Guest on April-16-2020
11

linux list directories

ls -d */
Posted by: Guest on June-15-2020

Code answers related to "list all directories linux command"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language