Home Xargs
Post
Cancel

Xargs

 # put the output to the end of echo
ls *str* | xargs echo
 # put the output between echo and hello
ls *str* | xargs -I {} echo {} hello
This post is licensed under CC BY 4.0 by the author.