Answers for "how to list directories in linux"

4

get list of directories bash

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

linux list directories

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

linux commad to show directories

// it will show all directories or folders not files...
ls -d */
Posted by: Guest on February-22-2021
1

list all files in a directory and subdirectory linux

find . -type f -follow -print
Posted by: Guest on May-02-2020

Code answers related to "how to list directories in linux"

Browse Popular Code Answers by Language