echo a b c | xargs -n1 rm
rm a rm b rm c
echo a b c | xargs rm
rm a b c
echo a b c | xargs -I% -n1 echo test/%
echo test/a echo test/b echo test/c