Translations:GNU Parallel/6/en: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
(Importing a new version from external source)
 
m (FuzzyBot moved page Translations:Gnu Parallel/6/en to Translations:GNU Parallel/6/en without leaving a redirect: Part of translatable page "Gnu Parallel".)
 
(No difference)

Latest revision as of 13:35, 28 August 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)
== Multiple Arguments ==
You can also use multiple arguments by enumerating them, for example:
{{Command
|parallel echo {{(}}1{{)}} {{(}}2{{)}} ::: $(seq 1 3) ::: $(seq 2 3)
|result=
1 2
1 3
2 2
2 3
3 2
3 3
}}

Multiple Arguments

You can also use multiple arguments by enumerating them, for example:

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