mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
Fixes: bug #34463: parallel -S .. --tag --onall ::: date uptime gives uninitialized value.
This commit is contained in:
parent
beef9c13ec
commit
a5cd7dc7ee
|
@ -59,7 +59,7 @@ if($::opt_skip_first_line) {
|
||||||
<$fh>;
|
<$fh>;
|
||||||
}
|
}
|
||||||
|
|
||||||
my $command;
|
my $command = "";
|
||||||
if(@ARGV) {
|
if(@ARGV) {
|
||||||
if($Global::quoting) {
|
if($Global::quoting) {
|
||||||
$command = shell_quote(@ARGV);
|
$command = shell_quote(@ARGV);
|
||||||
|
@ -496,7 +496,7 @@ sub get_options_from_array {
|
||||||
sub parse_options {
|
sub parse_options {
|
||||||
# Returns: N/A
|
# Returns: N/A
|
||||||
# Defaults:
|
# Defaults:
|
||||||
$Global::version = 20111002;
|
$Global::version = 20111003;
|
||||||
$Global::progname = 'parallel';
|
$Global::progname = 'parallel';
|
||||||
$Global::infinity = 2**31;
|
$Global::infinity = 2**31;
|
||||||
$Global::debug = 0;
|
$Global::debug = 0;
|
||||||
|
|
Loading…
Reference in a new issue