Par exemple, j'ai obtenu de certaines commandes des lignes
$ some-command
John
Bob
Lucy
J'aimerais maintenant ajouter une commande de chaînage, qui modifie la sortie.
$ some-command | other-command
Hi John Bye
Hi Bob Bye
Hi Lucy Bye
Comment écrire other-command
? (Je suis novice en bash)
some-command | paste -d\ <(printf '%s\n' Hi Hi Hi) - <(printf '%s\n' why Why WHY??)