Habituellement, nous n'avons qu'à passer un argument: echo abc | cat echo abc | cat some_file - echo abc | cat - some_file Existe-t-il un moyen de passer deux arguments? Quelque chose comme {echo abc , echo xyz} | cat cat `echo abc` `echo xyz` Je pourrais tout d'abord stocker les deux résultats...