Answers for "cshell find file by name"

1

cshell find file by name

find <path> - name "*filename*"
<path> -> to find in this folder type '.'
the '*' in the filename means each wildcard, any string

 <<< examples >>>:
find . -name "*.txt"
find . -name "goku.*"
Posted by: Guest on February-16-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language