This commit is contained in:
pdiogoantunes 2017-09-26 13:45:40 +02:00
parent 2a97164f43
commit 56b82c12af

View file

@ -227,4 +227,10 @@ Pour ceux «built-in», pas possible :
~~~{.bash} ~~~{.bash}
$ type getopts $ type getopts
getopts is a shell builtin getopts is a shell builtin
~~~
## Utiliser résultat xargs en milieu de commande
~~~{.bash}
$ echo coucou | xargs -i echo {} c\'est moi!
~~~ ~~~