码迷,mamicode.com
首页 > 系统相关 > 详细

Shell xargs (转)

时间:2015-01-05 18:20:11      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

  cat example.txt # Example file
  1 2 3 4 5 6 
  7 8 9 10 
  11 12
  cat example.txt | xargs
  1 2 3 4 5 6 7 8 9 10 11 12

-n num:一行变多行,num是每行的个数
  cat example.txt | xargs -n 3
  1 2 3 
  4 5 6 
  7 8 9 
  10 11 12


-d:使用自定义界定符(delimiter)分割
  echo "splitXsplitXsplitXsplit" | xargs -d X
  split split split split

传递参数: INPUT | xargs –n X ,X是参数个数  

   args.txt文件:
    arg1
    arg2
    arg3
  cecho.sh文件:
    #!/bin/bash
    #Filename: cecho.sh
    echo $*‘#‘ 
  cat args.txt | xargs -n 1 ./cecho.sh #cecho.sh会被调用3次
  输出结果:
    arg1 #
    arg2 #
    arg3 #

与find一起使用时的问题:   find . -type f -name "*.txt"  -print | xargs rm -f  #xargs默认分隔符是" ",如果文件名是file name.txt时,xargs会出现分割错误,导致删除错误文件

必须使用find -print0参数使分隔符为\0,并且在xargs中使用-0参数指定分隔符为\0   find . -type f -name "*.txt" -print0 | xargs -0 rm -f

 

单独调用变量方法:  

cat files.txt  | ( while read arg; do cat $arg; done )

Shell xargs (转)

标签:

原文地址:http://www.cnblogs.com/hello-kelly/p/4203881.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!