xargs与cp

原文地址:http://blog.csdn.net/dreamcoding/article/details/8507410

 

无奈之前xargs一直是配合find查找然后删除用的:

find ./ -type d |xargs rm -rf

之类。

但是突然今天,想把本目录下所有的.h文件拷贝出来,才想到如何代指传给xargs的参数继续传递呢?

find ./ -name ""*.h" |xargs cp dir

这样子其实展开后的命令是将dir拷贝为传递过来的参数。。。

遂man了一下没太注意,然后又百度之,才发现如下即可:

find ./ -name ""*.h" |xargs -I{} cp {} dir

然后也就看清楚了man中的一段:

       -I replace-str
              Replace occurrences of replace-str in the initial-arguments with names read from standard input.   Also,
              unquoted  blanks  do not terminate input items; instead the separator is the newline character.  Implies
              -x and -L 1.


       --replace[=replace-str]
       -i[replace-str]
              This option is a synonym for -Ireplace-str if replace-str is specified, and for  -I{}  otherwise.   This
              option is deprecated; use -I instead.

其实只要-i就可以了,只是也许以后就不能用了呢。

这样以后就可以随意的使用xargs了

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值