Shell
- How I use xargs without being surprised by spaces
xargs is useful when one command prints a list and another command needs that list as arguments. A simple example: printf '%s\n' one two three | xargs echo Output: one two three That looks too simple to matter, …