Translations:GNU Parallel/4/fr: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
m (FuzzyBot moved page Translations:Gnu Parallel/4/fr to Translations:GNU Parallel/4/fr without leaving a redirect: Part of translatable page "Gnu Parallel".)
No edit summary
 
Line 1: Line 1:
On peut aussi utiliser <tt>:::</tt>, comme dans l'exemple suivant  
On peut aussi utiliser <tt>:::</tt>, comme dans l'exemple suivant  
{{Commande
{{Command
|parallel echo {{(}}{{)}} ::: $(seq 1 3)
|parallel echo {{(}}{{)}} ::: $(seq 1 3)
|result=
|result=

Latest revision as of 20:53, 19 December 2017

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (GNU Parallel)
An alternative syntax is to use <tt>:::</tt>, such as in this example:
{{Command
|parallel echo {{(}}{{)}} ::: $(seq 1 3)
|result=
1
2
3
}}

On peut aussi utiliser :::, comme dans l'exemple suivant

Question.png
[name@server ~]$ parallel echo {} ::: $(seq 1 3)
1
2
3