参考:http://www.cnblogs.com/itxdm/p/5936907.html 一. 先复习下find命令 1. name参数 find -name tom 或 find -iname tom #其中参数 -iname不区分大小写 2. type参数 find /root -name rabbit -type f 普通文件用 f 表示:符号连接用 l 表示:普通目录用 d 表示:字符设备用 c 表示:块设备用 b 表示:套接字用 s 表示 3. size参数 find /ro…
find最普通的用法是查找文件,然后要对文件进行处理就需要用到参数-exec. 先看下manpage中介绍: -exec command ; Execute command; status is returned. All following arguments to find are taken to be arguments to the command until an argument consisting of `;' is encountered. The string `{}' i…