Answers for "linux man find"

1

Find linux

find . -name "foo*"
Posted by: Guest on July-29-2021
1

find in linux

$ find [where to start searching from]
 [expression determines what to find] [-options] [what to find]
 
 $ find ./GFG -name sample.txt
Posted by: Guest on February-20-2021
0

linux find command

find / -name .profile -print
find . -perm 0600 -print
find ./test ./logs -name failed*.* -type f
find . -ctime 1 -print
find . -name ‘*find*’ -print
Posted by: Guest on February-19-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language