Comando para convertir la entrada estándar en argumentos para un comando tuberido

command | xargs command

# e.g to remove files outputed by the cat command
cat dir1 | xargs rm
Chris Nzoka-okoye