for example:
find . -name "[1-9]*" 或 find -name "[1-9]*" 在当前目录下查找文件名以1到9开头的文件及文件夹
find etc/ -name "[1-9]*" -type f 在当前目录下查找文件名以1到9开头,类型为文件的文件
find etc/ -name "file1.txt" 在etc目录下查找文件名为file.txt的文件或文件夹
find etc/ -perm 755 在etc目录下查找权限值为755的文件或文件夹
find etc/ -user lc 在etc目录下所有者为lc的文件或文件夹
find etc/ -mtime -3 在etc目录下更改时间在3天内的文件或文件夹
find etc/ -m +5 在etc目录下更改时间为5天以前的文件或文件夹
find etc/ -size +1000000c 在etc目录下文件大小大于1m的文件或文件夹
find etc/ -name "file1.txt" | xargs ls -l 将find etc/ -name "file1.txt"输出结果执行ls -l命令