Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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.*"
 
PREVIOUS NEXT
Tagged: #cshell #find #file
ADD COMMENT
Topic
Name
8+3 =