Force delete all the. svn file directories below the item, find. -name '. SVN '-exec rm-rf {} \;
Empty
Displays all the blank files and displays the details: find. -empty
Size
Display files of size 10k: Find. -size 10k
Show all files larger than 10k: find. -size +10k
Or, and, not, or, and, non-queried
Find files that are larger than 10k or contain a demo: Find. -size +10k-o-name ' *demo* '
Find files that are larger than 10k and less than 100k: find. -size +10k-a-size-100k
Find files larger than 10k with a name that does not contain a demo: Find. -size +10k! -name ' *demo* '
Perm, search based on file permissions
Note: If you find a file with permission 600: Find. -perm 600, if the permission is preceded by a "-" number, indicating that a match can be satisfied,
such as: Find. -perm 007 matches files with permissions of 007, 077, 777
Regex, using regular expressions to find
such as: Find. -regex '. */[0-9]\w.* ' (matches a file that starts with a number)
Linux Search under the Find command supplements