hi, i have a .pm file named Util. and a subroutine that returns a next date.
sub getNextDate {
$inputDate = @_[1];
if ($inputDate != "") {
($year,$mon,$day) = split("-",$inputDate);
$mon = $mon - 1;
$dtToday = timelocal(0,0,0,$day,$mon,$year);
} else {
$dtToday = time;
}
$nextDate = $dtToday + 86400;
+
$nextMonth = ( localtime( $nextDate)->mon ) + 1;
$nextYear = ( localtime( $nextDate)->year ) + 1900;
+
$nextDay = localtime( $nextDate)->mday;
if($nextMonth <= 9) {
$nextMonth = '0'.$nextMonth;
}
if($nextDay <= 9) {
$nextDay = '0'.$nextDay ;
}
return $nextYear . "-" . $nextMonth . "-" . $nextDay;
}
i have a .ksh file. i want to pass a date as an argument from the .ksh file to the subroutine in .pm.
my code in .ksh is
startDate=2013-02-25
perl -MUtil -e 'print Util::getNextDate("$startDate");' > $result
echo $result
its not working..i am getting output based on current date rather than the date i am passing..
if i keep date directly instead of variable, i am getting correct output.
perl -MUtil -e 'print Util::getNextDate("2013-02-25");'
but i want to use $startDate instead of 2013-02-25.....please help
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.