Answers for "how to to ls all files even in subfolders linux"

1

how to search all subfolders in linux for file

find . -name "enter the file name or search pattern here"

example

find . -name "file_name.py"
or
find . -name "*.py"
Posted by: Guest on May-05-2021
0

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 to ls all files even in subfolders linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language