Commande pour convertir les entrées standard en arguments pour une commande piped
command | xargs command
# e.g to remove files outputed by the cat command
cat dir1 | xargs rm
Chris Nzoka-okoye