parallel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

parallel echo {1} {2} {3} ::: 6 7 ::: 4 5 ::: 1 2 3 : results out of ord


From: George Marselis
Subject: parallel echo {1} {2} {3} ::: 6 7 ::: 4 5 ::: 1 2 3 : results out of order?
Date: Fri, 15 Mar 2013 15:49:23 +0300

hey guys.

i executed  the above example from the manual in my bash shell.

i got back the following results: 

[gmarselis@4jane ~]$  parallel echo {1} {2} {3} ::: 6 7 ::: 4 5 ::: 1 2 3
6 4 1
6 4 3
6 5 1
6 5 2
6 5 3
7 4 1
7 4 2
7 4 3
7 5 1
7 5 2
6 4 2
7 5 3

i would have guess that { 6, 4, 2 } would have been produced right before {6, 4, 3} . is there no guarantee on the order of the results returning?

reply via email to

[Prev in Thread] Current Thread [Next in Thread]