diff --git a/src/parallel b/src/parallel index f476b96e..adb6faf7 100755 --- a/src/parallel +++ b/src/parallel @@ -153,6 +153,10 @@ files. The arguments can be accessed in the command as B<{1}> B<{6}> will refer to the line with the same line number from the 6th file. +Example: Print the number on the opposing sides of a six sided die. + +B + =item B<--arg-file-sep> I (beta testing) @@ -3887,7 +3891,7 @@ sub progress { $header = "Computer:jobs completed"; $status = $eta . join(" ",map - { sprintf("%s:%d/%d", + { sprintf("%s:%d", $sshlogin{$_}, ($Global::host{$_}{'completed'}||0)) } @workers); @@ -3897,7 +3901,7 @@ sub progress { $header = "Computer:jobs completed"; $status = $eta . join(" ",map - { sprintf("%s:%d/%d", + { sprintf("%s:%d", $workerno{$_}, ($Global::host{$_}{'completed'}||0)) } @workers); @@ -4396,6 +4400,8 @@ sub read_sshloginfile { open(IN, $file) || die "Cannot open $file"; while() { chomp; + /^\s*#/ and next; + /^\s*$/ and next; push @Global::sshlogin, $_; } close IN;