Command name: Find
Command path:/bin/find
Syntax: find "search scope" "Match criteria"
Function Description: File search
Example
Find/etc-name Init
Find file init in directory/etc
-iname Case insensitive
* Represents a wildcard? Represents a character
Find/-size +204800
Find files larger than 100MB in the root directory
+n greater than-n less than n equals
Find/home-user Shenchao
Find the owner-Shenchao file in the home directory
-group based on the owning group
Find/etc-cmin-5
Find files and directories for properties that have been modified within 5 minutes under/etc
-amin Accessing Time Access
-cmin file attribute Change
-mmin File Contents Modify
Find/etc-size +163840-a-size-204800
Find files larger than 80MB less than 100MB under etc
-a two conditions simultaneously satisfy
-O even a condition mother and child any one can
Find/etc-name init-exec ls-l {} \;
Find the init file under Etc Ice show its details
-exec/-ok command {} \; Perform actions on search results
-type Search by file type
F File D directory l soft connect file
-inum based on I-node lookup
Linux Common commands-File Search command-File Search command find