Xargs
From Linuxintro
xargs allows you to pipe the output of one program as parameters to another program.
- Example: You want to show the content of all text files in your directory
ls | xargs cat
xargs allows you to pipe the output of one program as parameters to another program.
ls | xargs cat