find工作常用命令总结

查找指定数据信息进行删除

   find /test -type f -name "test*.txt"|xargs rm

   find /test -type f -name "test*.txt" -exec rm -rf {} \;

   find /test -type f -name "test*.txt" -delete

查找指定数据信息进行复制

   find /test -type f -name "test*.txt" |xargs -i cp {} /test01/

   find /test -type f -name "test*.txt" |xargs cp -t /test01/

   find /test -type f -name "test*.txt" -exec cp -a {} /test01 \;

查找指定数据信息进行移动

   find /

上一篇:常见linux命令-记录以便于查阅


下一篇:判断程序是否已经运行