Answers for "listing files of a directory command linux"

4

how to view the files in folder linux

#linux
ls
#to view files in the directories
Posted by: Guest on July-06-2021
4

get list of directories bash

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

Code answers related to "listing files of a directory command linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language