In general, xargs is used to convert stdin to arguments for a second command. Usually the second command will expect one or more newline/space separated results.
xargs
prog | xargs utility
e.g. ls | xargs echo
ls | xargs echo
[[shell]]