Linux-xargs命令
Posted 薛文博
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux-xargs命令相关的知识,希望对你有一定的参考价值。
概述
xargs命令是给其他命令传递参数的一个过滤器,也是组合多个命令的一个工具。
它擅长将标准输入数据转换成命令行参数,xargs能够处理管道或者stdin并将其转换成特定命令的命令参数。
xargs也可以将单行或多行文本输入转换为其他格式,例如多行变单行,单行变多行。
xargs的默认命令是echo,空格是默认定界符。
这意味着通过管道传递给xargs的输入将会包含换行和空白,不过通过xargs的处理,换行和空白将被空格取代。
xargs是构建单行命令的重要组件之一。
语法
[[email protected] ~]# xargs --help Usage: xargs [-0prtx] [--interactive] [--null] [-d|--delimiter=delim] [-E eof-str] [-e[eof-str]] [--eof[=eof-str]] [-L max-lines] [-l[max-lines]] [--max-lines[=max-lines]] [-I replace-str] [-i[replace-str]] [--replace[=replace-str]] [-n max-args] [--max-args=max-args] [-s max-chars] [--max-chars=max-chars] [-P max-procs] [--max-procs=max-procs] [--show-limits] [--verbose] [--exit] [--no-run-if-empty] [--arg-file=file] [--version] [--help] [command [initial-arguments]] Report bugs to <[email protected]>.
栗子
xargs用作替换工具,读取输入数据重新格式化后输出。
定义一个测试文件,内有多行文本数据:
[[email protected] ~]# cat xargs.txt a b c d e f g h i j k l m n o p q r s t u v w x y z
多行输入单行输出
[[email protected] ~]# cat xargs.txt a b c d e f g h i j k l m n o p q r s t u v w x y z [[email protected] ~]# cat xargs.txt |xargs a b c d e f g h i j k l m n o p q r s t u v w x y z
-n选项多行输出
[[email protected] ~]# cat xargs.txt | xargs -n5 a b c d e f g h i j k l m n o p q r s t u v w x y z [[email protected] ~]#
-d选项可以自定义一个定界符:
[[email protected] ~]# echo "nameXnameXnameXname" | xargs -dX name name name name
结合-n选项使用
[[email protected] ~]# echo "nameXnameXnameXname" | xargs -dX -n2 name name name name
读取stdin,将格式化后的参数传递给命令
假设一个命令为 xgj.sh 和一个保存参数的文件args.txt:
args.txt已经具备执行权限
[[email protected] test]# cat xgj.sh #!/bin/bash #打印所有的参数 echo $* [[email protected] test]# cat args.txt aaa bbb ccc
xargs的一个选项-I,
使用-I指定一个替换字符串{},
这个字符串在xargs扩展时会被替换掉,当-I与xargs结合使用,每一个参数命令都会被执行一次:
[[email protected] test]# cat args.txt | xargs -I {} ./xgj.sh XXX {} YYY XXX aaa YYY XXX bbb YYY XXX ccc YYY
复制所有图片文件到 /data/images 目录下:
ls *.jpg | xargs -n1 -I cp {} /data/images
xargs结合find使用
用rm 删除太多的文件时候,可能得到一个错误信息:
/bin/rm Argument list too long.
用xargs去避免这个问题:
find . -type f -name "*.log" -print0 | xargs -0 rm -f
xargs -0将\0作为定界符。
统计一个源代码目录中所有py文件的行数:
find . -type f -name "*.py" -print0 | xargs -0 wc -l
查找所有的jpg 文件,并且压缩它们:
find . -type f -name "*.jpg" -print | xargs tar -czvf images.tar.gz
xargs其他应用
假如你有一个文件包含了很多你希望下载的URL,你能够使用xargs下载所有链接:
cat url-list.txt | xargs wget -c
以上是关于Linux-xargs命令的主要内容,如果未能解决你的问题,请参考以下文章