Search
Find command
Search files
find -type fSearch owned by user name or ID
find -user username|idSearch owned by group name or ID
find -group groupname|idSearch with grep
grep <pattern> <file> # grep hello hello.txtgrep flags with examples:
-i- case insensitive-r- recursive-v- don't match lines-w- whole word-A- after-B- before
Last updated
Was this helpful?