ホームページ >運用・保守 >Linuxの運用と保守 >Linux における xargs コマンド テクニックのさまざまな使用法の詳細な説明

Linux における xargs コマンド テクニックのさまざまな使用法の詳細な説明

黄舟
黄舟オリジナル
2017-05-28 11:39:311710ブラウズ

xargs はコマンドにパラメーターを渡すための フィルター であり、複数のコマンドを組み合わせるツールでもあります。以下の記事では、linux での xargs コマンドの使用法に関する関連情報を主に紹介します。必要な方は、エディターで参照してください。

はじめに

xargs コマンドは、受信したデータを再フォーマットし、それをパラメータとして他のコマンドに提供します。 以下に、xargs コマンドのさまざまな使用テクニックを紹介します。

1. 複数行入力を単一行入力に変換します:

[root@host1 test]# echo -e "1 2 3 4 5 \n6 7 8 \n9 10 11 12" >example.txt
[root@host1 test]# cat example.txt 
1 2 3 4 5 
6 7 8 
9 10 11 12
[root@host1 test]# cat example.txt |xargs 
1 2 3 4 5 6 7 8 9 10 11 12

単一行入力を複数行出力に変換します:

[root@host1 test]# cat example.txt | xargs -n 3
1 2 3
4 5 6
7 8 9
10 11 12

変換用の区切り文字をカスタマイズします (デフォルトの区切り文字はスペースです)。

[root@host1 test]# echo "Hello:Hello:Hello:Hello" | xargs -d : -n 2
Hello Hello
Hello Hello

2. スクリプトで使用します:

[root@host1 test]# cat echo.sh 
#!/bin/bash
echo $* '^-^'

パラメーターが echo.sh に渡されると、これらのパラメーターが出力され、「^-^」で終わります。 echo.sh后,它会将这些参数打印出来,并且以"^-^"作为结尾:

[root@host1 test]# echo -e "Tom\nHarry\nJerry\nLucy" > args.txt
[root@host1 test]# cat args.txt | xargs bash echo.sh 
Tom Harry Jerry Lucy ^-^
[root@host1 test]# cat args.txt | xargs -n 2 bash echo.sh 
Tom Harry ^-^
Jerry Lucy ^-^

在上面的例子中,我们把参数源都放入args.txt文件,但是除了这些参数,我们还需要一些固定不变的参数,比如:

[root@host1 test]# bash echo.sh Welcome Tom 
Welcome Tom ^-^

在上述命令执行过程中,Tom是变量,其余部分为常量,我们可以从"args.txt"中提取参数,并按照下面的方式提供给命令:

[root@host1 test]# bash echo.sh Welcome Tom 
[root@host1 test]# bash echo.sh Welcome Herry
[root@host1 test]# bash echo.sh Welcome Jerry
[root@host1 test]# bash echo.sh Welcome Lucy

这时我们需要使用xargs中-I命令:

[root@host1 test]# cat args.txt | xargs -I {} bash echo.sh Welcome {} 
Welcome Tom ^-^
Welcome Harry ^-^
Welcome Jerry ^-^
Welcome Lucy ^-^

-I {} 指定替换字符串,对于每一个命令参数,字符串{}都会被从stdin读取到的参数替换掉,

使用-I的时候,命令以循环的方式执行,如果有4个参数,那么命令就会连同{}一起被执行4次,在每一次执行中{}都会被替换为相应的参数。

三、结合find使用

xargs和find是一对非常好的组合,但是,我们通常是以一种错误的方式运用它们的,比如:

[root@host1 test]# find . -type f -name "*.txt" -print | xargs rm -f

这样做是有危险的,有时会删除不必删除的文件,如果文件名里包含有空格符(' '),则xargs很可能认为它们是定界符(例如,file text.txt会被xargs误认为file和text.txt)。

如果我们想把find的输出作为xargs的输入,就必须将-print0与find结合使用以字符null('

以上がLinux における xargs コマンド テクニックのさまざまな使用法の詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。