Link to home
Start Free TrialLog in
Avatar of blnukem
blnukem

asked on

Perl monthly Calendar

Hi All

How can I create a monthly Calendar in perl?
Avatar of ozo
ozo
Flag of United States of America image

What is a monthly Calendar?
Hi blnukem,
#!/usr/local/bin/perl
print "enter the month between 1 - 12:";
chomp($month = <STDIN>);
print "enter the year:";
chomp($year = <STDIN>);
system("cal $month $year");


Cheers!
Suhas
Avatar of blnukem
blnukem

ASKER


Q: What is a monthly Calendar?
A: http://www.abacoinfo.com/cgi-bin/webcal/webcal.cgi
ASKER CERTIFIED SOLUTION
Avatar of ozo
ozo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial