Answers for "iterate through directories bash"

1

loop through directories bash

#loops only through directories
for d in */ ; do
    echo "$d"
done
Posted by: Guest on March-28-2020
4

Iterate over only folder in bash

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

Code answers related to "iterate through directories bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language