Answers for "linux command list all files in directory and subdirectories"

9

linux list directories

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

list recursively all files linux

find <directory>/ -print
ls -R <directory>
Posted by: Guest on February-01-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 "linux command list all files in directory and subdirectories"

Browse Popular Code Answers by Language