Linux xargs命令
xargs是给命令传递参数的一个过滤器,组合多个命令一起执行的工具。
它把一个数据流分割为一些足够小的块,以方便过滤器和命令进行处理。
通常情况下,xargs从管道或者stdin中读取数据,但是它也能够从文件的输出中读取数据。
xargs是一个使用标准数据流构建执行管道的命令,可以使 echo,rm 和 mkdir 等命令接受标准输入作为它们的参数。
xargs的默认命令是echo,这意味着通过管道传递给xargs的输入将会包含换行和空白,不过通过xargs的处理,换行和空白将被空格取代。
xargs 命令
# 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]]
-d:指定分隔符
-n:指定标准输出的列数(最大128K)
-I:将标准输入的每行指定为{},例如,xargs -I {} command {} 将使用标准输入中的参数替换 {}
-i:类似 -I。如果标准输入未指定,则假定{}
-E:指定结束符,若没有找到指定的结束符,那么输出全部
-0:项目之间用null分隔(换行符),而不是空格(连接符)
-a:从文件读取参数,而不是标准输入
-e:如果指定了END,则等效于-E END。否则,就没有文件结束字符串
-L:每行最多使用MAX-LINES非空输入行命令行
-l:每个人最多使用一个非空输入行命令行
-P:一次运行到max-procs进程
-p:执行命令前提示
-r:如果不带参数,则不执行命令。如果这个选项没有给出,COMMAND将会是至少跑一次。
-s:限制命令最多为MAX-CHARS
-t:执行命令前打印命令,例如,xargs -t command 将在执行命令之前打印要执行的命令command
-x:如果超过大小(参见-s)则退出
--process-slot-var:在子进程中设置环境变量VAR
--show-limits:显示命令行长度的限制
find 命令
find path -option [ -print ] [ -exec -ok command ] {} \;
find 参数:
path: find命令所查找的目录路径,例如 用 . 表示当前目录,用 / 表示系统根目录。
-option: find命令的过滤选项,例如 -name 表示查找文件, -type 表示类型(b、c、d、l)
-print: find命令将匹配的文件输出到标准输出。
-exec: find命令对匹配的文件执行该参数所给出的shell命令。相应命令的形式为'command' { } \;,注意{ }和\;之间的空格。
-ok: 和-exec的作用相同,只不过以一种更为安全的模式来执行该参数所给出的shell命令,在执行每一个命令之前,都会给出提示,让用户来确定是否执行。
#-print 将查找到的文件输出到标准输出
#-exec command {} \; —–将查到的文件执行command操作,{} 和 \;之间有空格
#-ok 和-exec相同,只不过在操作前要提示询问用户
例:find . -name .svn | xargs rm -rf
xargs 示例
xargs 是一个强有力的命令,它能够捕获一个命令的输出,然后传递给另外一个命令
下面是一些如何有效使用xargs 的实用例子。
1. 当你尝试用rm 删除太多的文件,你可能得到一个错误信息:/bin/rm Argument list too long. 用xargs 去避免这个问题
find . -name 'aaa*' -print0 | xargs -0 rm -f
示例1:
经典用法
# find . -name 'aaa*' ./aaa.log ./aaa.txt ./aaa ./aaa_error.log
示例2:
-print0 标准输出结果不换行、不空格
# find . -name 'aaa*' -print0 ./aaa.log./aaa.txt./aaa./aaa_error.log
示例3:
xargs 默认 echo 输出
# find . -name 'aaa*' | xargs ./aaa.log ./aaa.txt ./aaa ./aaa_error.log # # # find . -name 'aaa*' | xargs echo ./aaa.log ./aaa.txt ./aaa ./aaa_error.log
示例4:
xargs -0 输出换行
# find . -name 'aaa*' | xargs -0 ./aaa.log ./aaa.txt ./aaa ./aaa_error.log
示例5:
xargs 加上显示命令
# find . -name 'aaa*' | xargs ls ./aaa ./aaa_error.log ./aaa.log ./aaa.txt
2. 获得/etc/ 下所有*.conf 结尾的文件列表,有几种不同的方法能得到相同的结果,下面的例子仅仅是示范怎么实用xargs ,在这个例子中实用 xargs将find 命令的输出传递给ls -l
# find /etc -name "*.conf" | xargs ls –l
3. 假如你有一个文件包含了很多你希望下载的URL, 你能够使用xargs 下载所有链接
# cat url.txt | xargs wget –c
4. 查找所有的jpg 文件,并且压缩它
# find / -name *.jpg -type f -print | xargs tar -cvzf images.tar.gz
5. 拷贝所有的图片文件到一个外部的硬盘驱动
# ls *.jpg | xargs -n1 -i cp {} /external-hard-drive/directory
6. xargs 多行输入转成一行输出
# cat aaa2.txt 1 2 3 4 5 # cat aaa2.txt | xargs 1 2 3 4 5 # cat aaa2.txt | xargs echo 1 2 3 4 5
7. xargs 一行输入转成多行输出
# cat aaa.txt 1 2 3 4 5 # cat aaa.txt | xargs -n 2 1 2 3 4 5 # cat aaa.txt | xargs -n 1 1 2 3 4 5
xargs 命令里,空格是默认的定界符,-n 表示每行显示几个参数,2显示两个参数,1显示一个参数(即单行显示)
如果需要指定字符分隔,则用参数 -d,示例如下:
# echo "blog.mimvp.com,proxy.mimvp.com,money.mimvp.com" | xargs -d "," -n 1 blog.mimvp.com proxy.mimvp.com money.mimvp.com
8. xargs 判断为空
xargs 命令通常用于构建和执行命令行,它可以处理来自标准输入的数据。
如果想使用 xargs 来判断输入是否为空,可结合 test 命令(也可以用 [ 替代)和 xargs 一起使用。
# echo "mimvp" | xargs -I {} bash -c '[ -n "{}" ] && echo "Input is not empty." || echo "Input is empty."'
Input is not empty.
下面是一个使用 xargs
和 test
来判断输入是否为空的例子:
# echo "mimvp" | xargs -tI {} bash -c 'test -n "{}" && echo "Input is not empty." || echo "Input is empty."'
bash -c test -n "mimvp" && echo "Input is not empty." || echo "Input is empty."
Input is not empty.
1)如果输入是空字符串"",上述命令将输出 "Input is empty."
2)如果输入有内容,例如"mimvp",将输出 "Input is not empty."
解释:
-
echo ""
输出一个空字符串。 -
xargs -I {}
将{}
替换为xargs
的输入,并为每个输入执行后面的命令。 -
bash -c '...'
允许在新的 shell 中执行复杂的命令。 -
test -n "{}"
检查{}
是否不是一个空字符串。 -
&&
表示前一个命令(test
)成功执行时,才执行后面的命令。 -
||
表示前一个命令(test
)失败执行时,才执行后面的命令。
EXAMPLES
find /tmp -name core -type f -print | xargs /bin/rm -f
Find files named core in or below the directory /tmp and delete them. Note that this will work incorrectly if there are any filenames containing newlines or spaces.
find /tmp -name core -type f -print0 | xargs -0 /bin/rm -f
Find files named core in or below the directory /tmp and delete them, processing filenames in such a way that file or directory names containing spaces or newlines are correctly handled.
find /tmp -depth -name core -type f -delete
Find files named core in or below the directory /tmp and delete them, but more efficiently than in the previous example (because we avoid the need to use fork(2) and exec(2) to launch rm and we don't need the extra xargs process).
cut -d: -f1 < /etc/passwd | sort | xargs echo
Generates a compact listing of all the users on the system.
xargs sh -c 'emacs "$@" < /dev/tty' emacs
Launches the minimum number of copies of Emacs needed, one after the other, to edit the files listed on xargs' standard input. This example achieves the same effect as BSD's -o option, but in a more flexible and portable way.
参考推荐:
Linux下which、whereis、locate、find 区别
版权所有: 本文系米扑博客原创、转载、摘录,或修订后发表,最后更新于 2024-07-15 17:04:37
侵权处理: 本个人博客,不盈利,若侵犯了您的作品权,请联系博主删除,莫恶意,索钱财,感谢!
转载注明: Linux xargs命令 (米扑博客)