标签:
xarge参数的意义,请自行搜索。
abc.txt 文件内容如下:
/home/wufa/num_file1 /home/wufa/num_file2
其中num_file1和num_file2每行包括一个数字
cat abc.txt | xargs -i -n 1 -P 20 sh -c "grep "23" {} > {}.log "
从abc.txt 中每次读取一行,作为grep的参数,由{} 替代。
并将读取后匹配的数字内容,生成大小为0字节的 数字.log 文件。
示例2:
sed -n "1,10p" ids.txt | tr "\n" "," |xargs -i sh -c "php mergeVids.php -ids {} > test.log"
ids.txt文件每行为一个视频id,需要提取10行id,以“,”分割,作为mergeVids.php 的-ids 参数。并将mergeVids.php的执行输出记录到日志 test.log .
注: 其中mergeVids.php 需要在内部过滤id为空的情况。
标签:
原文地址:http://my.oschina.net/wufa/blog/474061