find ./ -name *.bak | xargs rm/mv

#####################################################################################################

#find ... -exec rm {} \; 

可以把find命令查找到的结果删除,简单的说是把find发现的结果一次性传给exec选项,这样当文件数量较多的时候,就可能会出现“参数太多”之类的错误。

-exec   必须由一个   ;   结束,而因为通常   shell   都会对   ;   进行处理,所以用   \;   防止这种情况。{} 可能需要写做   '{}',也是为了避免被   shell   过滤 

eg1:

[root@localhost xusx]# touch 1.sh 2.sh 3.sh 1.txt 2.txt 3.txt
[root@localhost xusx]# ls
1.sh 1.txt 2.sh 2.txt 3.sh 3.txt passwd
[root@localhost xusx]# find ./ -type f ! -name "passwd" -exec rm {} \; (删除passwd之外的文件)

[root@localhost xusx]# ls
1.sh 1.txt 2.sh 2.txt 3.sh 3.txt

#####################################################################################################

#find ... | xargs rm -rf

这个命令可以避免这个错误,因为xargs命令会分批次的处理结果。这样看来,“find ... | xargs rm -rf”是更通用的方法,推荐使用!

rm不接受标准输入,所以不能用find / -name "tmpfile" |rm

eg1:

[root@localhost xusx]# ls
1.sh 1.txt 2.sh 2.txt 3.sh 3.txt

[root@localhost xusx]# find ./ -type f -name "1.sh"|xargs rm -f
[root@localhost xusx]# ls
1.txt 2.sh 2.txt 3.sh 3.txt

#####################################################################################################

./表示从当前目录找 
-type f,表示只找file,文件类型的,目录和其他字节不要 
-exec 把find到的文件名作为参数传递给后面的命令行,代替{}的部分 
-exec后跟的命令行,必须用“ \;”结束

#####################################################################################################

经典的移动:man mv
find ./  -type f -name "*.sh"|xargs mv  -t /opt/
find ./  -type f -name "*.sh"|xargs  -i mv  {} /opt/
find ./  -type f -name "*.sh"  -exec mv  {} /opt/  \;  =====>\转意符号。否则 ; 不被shell识别。
mv  `find ./  -type f -name "*.sh" ` /opt/  或者  cp $(find ./  -type f -name "*.sh"  ) /opt/

  

转载于:https://www.cnblogs.com/xusx/p/6041089.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值