Daily linux Command Learning-xargs command

Source: Internet
Author: User

Xargs command

Xargs is a filter that passes parameters to the command, and is also a tool for combining multiple commands . It divides a data stream into small enough chunks to facilitate the processing of filters and commands. Typically, Xargs reads data from a pipe or stdin, but it can also read data from the output of a file. The default command for Xargs is echo, which means that the input passed to Xargs by the pipeline will contain line breaks and whitespace, but with xargs processing, line breaks and whitespace will be replaced by spaces.

  Xargs is a powerful command that captures the output of a command and then passes it to another command.

In simple terms, the "|" is usually Use the output of the previous command as input to the latter command.

Example 1:

When you use the RM command to delete many files, you may get an error message: "/bin/rm Argument list too long–linux". You can use Xargs to avoid this problem.

Find ~-name *.log '-print0 | xargs-0 rm–f

Example 2:

# find/etc-name "*.conf" | Xargs ls–l

Daily linux Command Learning-xargs command

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.