Answers for "linux bash script list files in directory"

4

get list of directories bash

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

bash command for listing files

ls -la
Posted by: Guest on August-12-2021

Code answers related to "linux bash script list files in directory"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language