xargs
命令用于将stdin
的数据,分隔为某个命令的参数。
用法:xargs [-0epnd] command
参数:
1
2
3
4
5
6
7
8
-0 : 将 \0 作为定界符
-e : EOF(end of file), 后面可以接一个字符串,当xargs分析到这个字符串时,就会停止工作
-p : 在执行每个命令的参数时,都会询问用户。
-n num : 后面加次数,表示命令在执行的时候一次用的argument的个数,默认是用所有的。
-d :使用自己的定义的定界符来分隔参数。
-i : 将xargs的每项名称,一般是一行一行赋值给 {}。
-I : 指定其他标识代替{}
-t : 执行命令前打印
示例
-0
1
2
3
4
5
6
7
8
9
10
11
12
[root@centos6 test]# touch "file 1.log" "file 2.log"
#直接删除不成功,xargs默认是以空白字符(空格、TAB、换行符)来分割记录
[root@centos6 test]# find -name '*.log' | xargs rm
rm: cannot remove './file': No such file or directory
rm: cannot remove '2.log': No such file or directory
rm: cannot remove './file': No such file or directory
rm: cannot remove '1.log': No such file or directory
#find在打印出一个文件名之后接着输出一个NULL字符,
#然后告诉xargs用NULL字符来作为记录的分隔
[root@centos6 test]# find -name '*.log' -print0 | xargs -0 rm
[root@centos6 test]# find -name '*.log'
-e
1
2
[root@centos6 test]# echo a bc d e rf f | xargs -ee
a bc d
-p
1
2
3
4
[root@centos6 test]# ls a* | xargs -p rm # 执行rm前,先询问下
rm a1 a2 a3 ?...y
[root@centos6 test]# ls a*
ls: cannot access a*: No such file or directory
-n
1
2
3
4
5
6
7
8
9
10
11
[root@centos6 test]# cat example.txt
1 2 3 4 5 6
7 8 9 10
11 12
[root@centos6 test]# cat example.txt | xargs
1 2 3 4 5 6 7 8 9 10 11 12
[root@centos6 test]# cat example.txt | xargs -n 3
1 2 3
4 5 6
7 8 9
10 11 12
-d
1
2
3
4
5
6
7
[root@centos6 test]# echo "splitXsplitXsplitXsplit" | xargs -d X
split split split split
# 结合-n选项使用
[root@centos6 test]# echo "splitXsplitXsplitXsplit" | xargs -d X -n 2
split split
split split
-i & -I
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[root@centos6 xargsi]# cat file1.txt
This is file1.txt
...
[root@centos6 xargsi]# cat files.txt
file1.txt
file2.txt
file3.txt
#等价于cat files.txt | ( while read arg ; do cat $arg; done )
[root@centos6 xargsi]# cat files.txt | xargs -I {} cat {}
This is file1.txt
This is file2.txt
This is file3.txt
[root@centos6 xargsi]# cat files.txt | xargs -I R cat R
This is file1.txt
This is file2.txt
This is file3.txt
[root@centos6 xargsi]# cat files.txt | xargs -i cat {}
This is file1.txt
This is file2.txt
This is file3.txt
参考资料
- [参数代换命令xargs使用小结]https://blog.csdn.net/miouqi/article/details/73350797
- Linux xargs 命令
选项参考:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
-0, --null
如果输入的 stdin 含有特殊字符,例如反引号 `、反斜杠 \、空格等字符时,xargs 将它还原成一般字符。为默认选项
-a, --arg-file=FILE
从指定的文件 FILE 中读取输入内容而不是从标准输入
-d, --delimiter=DEL
指定 xargs 处理输入内容时的分隔符。xargs 处理输入内容默认是按空格和换行符作为分隔符,输出 arguments 时按空格分隔
-E EOF_STR
EOF_STR 是 end of file string,表示输入的结束
-e, --eof[=EOF_STR]
作用等同于 -E 选项,与 -E 选项不同时,该选项不符合 POSIX 标准且 EOF_STR 不是强制的。如果没有 EOF_STR 则表示输入没有结束符
-I REPLACE_STR
将 xargs 输出的每一项参数单独赋值给后面的命令,参数需要用指定的替代字符串 REPLACE_STR 代替。REPLACE_STR 可以使用 {} $ @ 等符号,其主要作用是当 xargs command 后有多个参数时,调整参数位置。例如备份以 txt 为后缀的文件:find . -name "*.txt" | xargs -I {} cp {} /tmp/{}.bak
-i, --replace[=REPLACE_STR]
作用同 -I 选项,参数 REPLACE_STR 是可选的,缺省为 {}。建议使用 -I 选项,因为其符合 POSIX
-L MAX_LINES
限定最大输入行数。隐含了 -x 选项
-l, --max-lines[=MAX_LINES]
作用同 -L 选项,参数 MAX_LINES 是可选的,缺省为 1。建议使用 -L 选项,因为其符合 POSIX 标准
-n, --max-args=MAX_ARGS
表示命令在执行的时候一次使用参数的最大个数
-o, --open-tty
在执行命令之前,在子进程中重新打开stdin作为/dev/TTY。如果您希望xargs运行交互式应用程序,这是非常有用的
-P, --max-procs=MAX_PROCS
每次运行最大进程;缺省值为 1。如果 MAX_PROCS 为 0,xargs 将一次运行尽可能多的进程。一般和 -n 或 -L 选项一起使用
-p, --interactive
当每次执行一个 argument 的时候询问一次用户
--process-slot-var=NAME
将指定的环境变量设置为每个正在运行的子进程中的唯一值。一旦子进程退出,将重用该值。例如,这可以用于初始负荷分配方案
-r, --no-run-if-empty
当 xargs 的输入为空的时候则停止 xargs,不用再去执行后面的命令了。为默认选项
-s, --max-chars=MAX_CHARS
命令行的最大字符数,指的是 xargs 后面那个命令的最大命令行字符数,包括命令、空格和换行符。每个参数单独传入 xargs 后面的命令
--show-limits
显示操作系统对命令行长度的限制
-t, --verbose
先打印命令到标准错误输出,然后再执行
-x, --exit
配合 -s 使用,当命令行字符数大于 -s 指定的数值时,退出 xargs
--help
显示帮助信息并退出
--version
显示版本信息并退出