博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Shell xargs
阅读量:6453 次
发布时间:2019-06-23

本文共 846 字,大约阅读时间需要 2 分钟。

无开关参数:多行并一行

  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 )

转载于:https://www.cnblogs.com/FlyCat/archive/2013/01/08/2851889.html

你可能感兴趣的文章
vue.js笔记
查看>>
【Unity3D入门教程】Unity3D之GUI浅析
查看>>
Hive 简单操作
查看>>
湘潭1247 Pair-Pair(树状数组)
查看>>
IEnumerable<T>
查看>>
IntelliJ IDEA 注册码
查看>>
linux 上面配置apache2的虚拟目录
查看>>
Linux学习总结 (未完待续...)
查看>>
NoSQL数据库探讨 - 为什么要用非关系数据库?
查看>>
String字符串的截取
查看>>
switch函数——Gevent源码分析
查看>>
Spring MVC简单原理
查看>>
DynamoDB Local for Desktop Development
查看>>
ANDROID的SENSOR相关信息
查看>>
laravel 使用QQ邮箱发送邮件
查看>>
用javascript验证哥德巴赫猜想
查看>>
Shell编程-环境变量配置文件
查看>>
thymeleaf 中文乱码问题
查看>>
(转)CSS浮动(float,clear)通俗讲解
查看>>
os.walk函数
查看>>