Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: calendar print outs

by cchampion (Curate)
on Dec 20, 2004 at 18:18 UTC ( [id://416264]=note: print w/replies, xml ) Need Help??


in reply to Calendar print outs

Not a module, but what about this?

perl -e 'system "cal $_" for 2000..2099'

Alternatively, you may try Calendar::Simple.

P.S. s/calander/calendar/

Update
Actually, the 21st century should be 2001..2100. Your request about 2000-2999 covers most of the third millennium (2001-3000).

Replies are listed 'Best First'.
Re^2: calendar print outs
by Fletch (Bishop) on Dec 20, 2004 at 18:22 UTC

    Maybe he wants colander print outs for the next 100 years, although that might produce a large strain on his system . . .

    Update: And possibly of use to the original querent, PPT implementations of cal.

Re^2: calendar print outs
by drock (Beadle) on Dec 20, 2004 at 21:04 UTC
    ok here is what I have
    for (2005..2006) { system ("cal $_ > /tmp/file"); }
    But how would I get this for individual months for instance in KSH for year in 2004 2005 2006 do for month in 1 2 3 4 5 6 7 8 9 10 11 12 do cal $year/$month
      perl -e 'for $y (2005..2006) {for $m (1..12) {system "cal $m $y"}}' \ > /tmp/file

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://416264]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (5)
As of 2024-04-25 07:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found