Translations:GNU Parallel/6/en: Difference between revisions
From Alliance Doc
Jump to navigation
Jump to search
Revision as of 14:14, 10 November 2016
Multiple Arguments
You can also use multiple arguments by enumerating them, for example:
[name@server ~]$ parallel echo {1} {2} ::: $(seq 1 3) ::: $(seq 2 3)
1 2
1 3
2 2
2 3
3 2
3 3