Table of Contents
Why use xargs, the source of the problem
xargs是什么,与管道有什么不同
1. -d 选项
2. -p 选项
3. -n 选项
4. -E 选项,有的系统的xargs版本可能是-e  eof-str
Home Operation and Maintenance Linux Operation and Maintenance Detailed explanation of xargs command under Linux and the difference between xargs and pipes

Detailed explanation of xargs command under Linux and the difference between xargs and pipes

Jun 07, 2017 am 10:04 AM

Why use xargs, the source of the problem

I often come into contact with the xargs command at work, especially in scripts written by others, but it is easy to get confused with pipelines. This article will explain in detail what the xargs command is, why you should use the xargs command, and the difference with pipes. Why use xargs? We know that the linux command can read the content to be processed from two places, one is through the command line parameters, and the other is the standard input. For example, cat and grep are such commands. For example:

1

echo 'main' | cat test.cpp

Copy after login

In this case, cat will output the content of test.cpp instead of 'main'String, if test. If cpp does not exist, the cat command will report that the file does not exist and will not attempt to read from standard input. echo 'main' | will import the standard output of echo (that is, the string 'main') into the standard input of cat through a pipeline. That is to say, there is content in the standard input of cat at this time, and its content is the string' main' but in the above content, cat will not read the content to be processed from its standard input. (Note: The standard input has a buffer, just like we use scanffunction to read from the standard input in the program, it actually reads from the standard input buffer). In fact, basically many Linux commands are designed to first obtain the parameters from the command line parameters, and then read them from the standard input, which is reflected in the program. The command line parameters are int main(int argc,char through the main function *argv[]) Function parameters are obtained, and the standard input is read through the standard input function such as scanf in C language. Where they get it is different. For example:

1

echo 'main' | cat

Copy after login

This command will cause cat to read the content from its standard input and process it, that is, it will output the 'main' string. The echo command directs the contents of its standard output 'main' to the standard output of cat through a pipe.

1

cat

Copy after login

If you just enter cat and press Enter, the program will wait for input. We need to input the content to be processed from the keyboard to cat. At this time, cat also gets the content to be processed from the standard input, because Our cat command line also does not specify the file name to be processed. Most commands have a parameter - if specified directly at the end of the command - which means reading from the standard input,

For example:

1

echo 'main' | cat -

Copy after login

This is also feasible and the 'main' character will be displayed String, also enter cat - Enter directly and enter cat directly, the effect is the same, but what if:

1

echo 'main' | cat test.cpp -

Copy after login

Specify test.cpp and - parameters at the same time, then the cat program will still display test. cpp content. But there is a program with a different strategy, it is grep, for example:

1

echo 'main' | grep 'main' test.cpp -

Copy after login

The output of this command is:

1

2

test.cpp:int main()

(standard input):main

Copy after login

At this time grep will process the standard input and the file test.cpp at the same time The content, that is to say, will be searched for 'main' in the standard input and 'main' will also be searched for in the file test.cpp (the file name is obtained from the grep command line parameter). That is to say, when the two parameters test.cpp and - exist at the same time in the command line, different programs handle them differently. We have seen that cat and grep are processed differently. But one thing is the same: first find the source of the content to be processed on the command line (whether from a file, standard input, or both), if the parameters related to the source of the content to be processed are not found in the command line By default, the content to be processed is read from the standard

input.

In addition, many programs do not process standard input, such as kill and rm. If the content to be processed is not specified in the command line parameters, these programs will not read from standard input by default. Therefore:

1

echo '516' | kill

Copy after login

This kind of destiny cannot be carried out.

1

echo 'test' | rm -f

Copy after login

This is also ineffective.

These two commands only accept the processing content specified in the command line parameters and do not obtain the processing content from the standard input. It's normal when you think about it. Kill means to end the process, and rm means delete the file. If the pid of the process to be ended and the name of the file to be deleted need to be read from the standard input, this is also It's weird. But it is natural for word processing tools like cat and grep to read content to be processed from standard input.

But sometimes our scripts need the effect of echo '516' | kill, such as ps -ef | grep 'ddd' | kill, to filter out the process pid that meets certain conditions and then end it. This need is natural and very common for us, so how should we achieve this effect? There are several solutions:

1. In the form of

1

kill `ps -ef | grep 'ddd'`

Copy after login

, this is actually equivalent to the command obtained by splicing strings, and its effect is similar to kill $pid

2.

1

for procid in $(ps -aux | grep "some search" | awk '{print $2}'); do kill -9 $procid; done

Copy after login

其实与第一种原理一样,只不过需要多次kill的时候是循环处理的,每次处理一个

3.

1

ps -ef | grep 'ddd' | xargs kill

Copy after login

OK,使用了xargs命令,铺垫了这么久终于铺到了主题上。xargs命令可以通过管道接受字符串,并将接收到的字符串通过空格分割成许多参数(默认情况下是通过空格分割) 然后将参数传递给其后面的命令,作为后面命令的命令行参数

xargs是什么,与管道有什么不同

xargs与管道有什么不同呢,这是两个很容易混淆的东西,看了上面的xargs的例子还是有点云里雾里的话,我们来看下面的例子弄清楚为什么需要xargs:

1

echo '--help' | cat

Copy after login

输出:

1

2

--help

echo '--help' | xargs cat

Copy after login

输出:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

Usage: cat [OPTION]... [FILE]...

Concatenate FILE(s), or standard input, to standard output.

 -A, --show-all   equivalent to -vET

 -b, --number-nonblank number nonempty output lines

 -e      equivalent to -vE

 -E, --show-ends   display $ at end of each line

 -n, --number    number all output lines

 -s, --squeeze-blank  suppress repeated empty output lines

 -t      equivalent to -vT

 -T, --show-tabs   display TAB characters as ^I

 -u      (ignored)

 -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB

  --help  display this help and exit

  --version output version information and exit

Copy after login

可以看到 echo '--help' | cat 该命令输出的是echo的内容,也就是说将echo的内容当作cat处理的文件内容了,实际上就是echo命令的输出通过管道定向到cat的输入了。然后cat从其标准输入中读取待处理的文本内容。这等价于在test.txt文件中有一行字符 '--help' 然后运行 cat test.txt 的效果。

而 echo '--help' | xargs cat 等价于 cat --help 什么意思呢,就是xargs将其接受的字符串 --help 做成cat的一个命令参数来运行cat命令,同样 echo 'test.c test.cpp' | xargs cat 等价于 cat test.c test.cpp 此时会将test.c和test.cpp的内容都显示出来。

xargs的一些有用的选项

相信到这里应该都知道xargs的作用了,那么我们看看xargs还有一些有用的选项:

1. -d 选项

默认情况下xargs将其标准输入中的内容以空白(包括空格、Tab、回车换行等)分割成多个之后当作命令行参数传递给其后面的命令,并运行之,我们可以使用 -d 命令指定分隔符,例如:

1

echo '11@22@33' | xargs echo

Copy after login

输出:

1

11@22@33

Copy after login

默认情况下以空白分割,那么11@22@33这个字符串中没有空白,所以实际上等价于 echo 11@22@33 其中字符串 '11@22@33' 被当作echo命令的一个命令行参数

1

echo '11@22@33' | xargs -d '@' echo

Copy after login

输出:

1

11 22 33

Copy after login

指定以@符号分割参数,所以等价于 echo 11 22 33 相当于给echo传递了3个参数,分别是11、22、33

2. -p 选项

使用该选项之后xargs并不会马上执行其后面的命令,而是输出即将要执行的完整的命令(包括命令以及传递给命令的命令行参数),询问是否执行,输入 y 才继续执行,否则不执行。这种方式可以清楚的看到执行的命令是什么样子,也就是xargs传递给命令的参数是什么,例如:

1

echo '11@22@33' | xargs -p -d '@' echo

Copy after login

输出:

1

echo 11 22 33

Copy after login

?...y ==>这里询问是否执行命令 echo 11 22 33 输入y并回车,则显示执行结果,否则不执行

11 22 33 ==>执行结果

3. -n 选项

该选项表示将xargs生成的命令行参数,每次传递几个参数给其后面的命令执行,例如如果xargs从标准输入中读入内容,然后以分隔符分割之后生成的命令行参数有10个,使用 -n 3 之后表示一次传递给xargs后面的命令是3个参数,因为一共有10个参数,所以要执行4次,才能将参数用完。例如:

1

echo '11@22@33@44@55@66@77@88@99@00' | xargs -d '@' -n 3 echo

Copy after login

输出结果:

1

2

3

4

11 22 33

44 55 66

77 88 99

00

Copy after login

等价于:

1

2

3

4

echo 11 22 33

echo 44 55 66

echo 77 88 99

echo 00

Copy after login

实际上运行了4次,每次传递3个参数,最后还剩一个,就直接传递一个参数。

4. -E 选项,有的系统的xargs版本可能是-e eof-str

该选项指定一个字符串,当xargs解析出多个命令行参数的时候,如果搜索到-e指定的命令行参数,则只会将-e指定的命令行参数之前的参数(不包括-e指定的这个参数)传递给xargs后面的命令

1

echo '11 22 33' | xargs -E '33' echo

Copy after login

输出:

1

11 22

Copy after login

可以看到正常情况下有3个命令行参数 11、22、33 由于使用了-E '33' 表示在将命令行参数 33 之前的参数传递给执行的命令,33本身不传递。等价于 echo 11 22 这里-E实际上有搜索的作用,表示只取xargs读到的命令行参数前面的某些部分给命令执行。

注意:-E只有在xargs不指定-d的时候有效,如果指定了-d则不起作用,而不管-d指定的是什么字符,空格也不行。

1

2

3

4

echo '11 22 33' | xargs -d ' ' -E '33' echo => 输出 11 22 33

echo '11@22@33@44@55@66@77@88@99@00 aa 33 bb' | xargs -E '33' -d '@' -p echo => 输出 11 22 33 44 55 66 77 88 99 00 aa 33 bb

## -0 选项表示以 '\0' 为分隔符,一般与find结合使用

find . -name "*.txt"

Copy after login

输出:

1

2

3

4

./2.txt

./3.txt

./1.txt     => 默认情况下find的输出结果是每条记录后面加上换行,也就是每条记录是一个新行

find . -name "*.txt" -print0

Copy after login

输出:

1

2

./2.txt./3.txt./1.txt     => 加上 -print0 参数表示find输出的每条结果后面加上 '\0' 而不是换行

find . -name "*.txt" -print0 | xargs -0 echo

Copy after login

输出:

1

2

./2.txt ./3.txt ./1.txt

find . -name "*.txt" -print0 | xargs -d '\0' echo

Copy after login

输出:

1

./2.txt ./3.txt ./1.txt

Copy after login

xargs的 -0 和 -d '\0' 表示其从标准输入中读取的内容使用 '\0' 来分割,由于 find 的结果是使用 '\0' 分隔的,所以xargs使用 '\0' 将 find的结果分隔之后得到3个参数: ./2.txt ./3.txt ./1.txt   注意中间是有空格的。上面的结果就等价于 echo ./2.txt ./3.txt ./1.txt

In fact, it is also possible to use the default whitespace delimiter of xargs find . -name "*.txt" | xargs echo because the newline character is also one of the default whitespace characters of xargs. If the find command does not add -print0, a newline is actually added after each string in the search results.

The above is the detailed content of Detailed explanation of xargs command under Linux and the difference between xargs and pipes. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

deepseek web version entrance deepseek official website entrance deepseek web version entrance deepseek official website entrance Feb 19, 2025 pm 04:54 PM

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

Ouyi okx installation package is directly included Ouyi okx installation package is directly included Feb 21, 2025 pm 08:00 PM

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

BITGet official website installation (2025 beginner's guide) BITGet official website installation (2025 beginner's guide) Feb 21, 2025 pm 08:42 PM

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Get the gate.io installation package for free Get the gate.io installation package for free Feb 21, 2025 pm 08:21 PM

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

Ouyi Exchange Download Official Portal Ouyi Exchange Download Official Portal Feb 21, 2025 pm 07:51 PM

Ouyi, also known as OKX, is a world-leading cryptocurrency trading platform. The article provides a download portal for Ouyi's official installation package, which facilitates users to install Ouyi client on different devices. This installation package supports Windows, Mac, Android and iOS systems. Users can choose the corresponding version to download according to their device type. After the installation is completed, users can register or log in to the Ouyi account, start trading cryptocurrencies and enjoy other services provided by the platform.

Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Apr 01, 2025 pm 03:06 PM

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

gate.io official website registration installation package link gate.io official website registration installation package link Feb 21, 2025 pm 08:15 PM

Gate.io is a highly acclaimed cryptocurrency trading platform known for its extensive token selection, low transaction fees and a user-friendly interface. With its advanced security features and excellent customer service, Gate.io provides traders with a reliable and convenient cryptocurrency trading environment. If you want to join Gate.io, please click the link provided to download the official registration installation package to start your cryptocurrency trading journey.

See all articles