converts from `stdin` to command line arguments
Last updated 1 year ago
Some commands accept command line arguments only, so we have to use xargs in order to achieve the desired result
xargs
For example cat filenames.txt | echo
The wouldnt execute without xargs as echo accepts command line arguments only
echo
cat filenames.txt | xargs touch