Answers for "shell list all folder names insode a folder"

4

get list of directories bash

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

bash list all files in directory and subdirectories

# Bash-specific

# syntax 
ls -R <file-or-directory-to-find>

# example
ls -R *hotographi*
Posted by: Guest on April-22-2020

Code answers related to "shell list all folder names insode a folder"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language