# 语法格式 find [查找范围] 寻找条件
常用参数:
find -name # 匹配名称
find -user # 匹配所有者
find -group # 匹配所属组
find -exec {} \; # 把find命令得到的结果交给随后的命令进行进一步处理。{} 表示find命令搜索出的每一个文件
# eg:
find /root/ -name a -exec cp {} /collect/ \; # 查找/root/下所有名称为a的文件并复制到/collect/下
标签:匹配,name,exec,collect,root,find From: https://www.cnblogs.com/yu2hao/p/17485004.html