- or download this
if ($date) {
date();
}
- or download this
if ($date) {
$when = date($date);
}
- or download this
sub format_date_mdy {
my($date) = @_
my $dt = parsedate($date);
return strftime("%m%d%y", localtime($dt));
}
- or download this
login($command, $login, $password);
...
...
}
- or download this
my $job = shift or die "Need a job name";
- or download this
my $job = shift or pod2usage(
-message => "Need a job name",
-verbose => 0,
-exitval => 1,
);
- or download this
if ($options{t}) {
if ($job && $queue && $date && $time) {
...
}
}