mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 05:57:54 +00:00
parallel: sorting of multiple -a changed
This commit is contained in:
parent
a560a74b8a
commit
9b773d03f4
|
@ -3989,7 +3989,7 @@ sub nest_get {
|
|||
$self->unget([@first_arg_set]);
|
||||
}
|
||||
my @fh = @{$self->{'fhs'}};
|
||||
for (my $fhno = 0; $fhno < $no_of_inputs; $fhno++) {
|
||||
for (my $fhno = $no_of_inputs-1; $fhno >= 0; $fhno--) {
|
||||
if(eof($fh[$fhno])) {
|
||||
next;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue