Finden Sie Linux
find . -name "foo*"
Difficult Dotterel
find . -name "foo*"
$ find [where to start searching from]
[expression determines what to find] [-options] [what to find]
$ find ./GFG -name sample.txt
find / -name .profile -print
find . -perm 0600 -print
find ./test ./logs -name failed*.* -type f
find . -ctime 1 -print
find . -name ‘*find*’ -print