Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: calendar print outs

by drock (Beadle)
on Dec 20, 2004 at 21:04 UTC ( [id://416321]=note: print w/replies, xml ) Need Help??


in reply to Re: calendar print outs
in thread Calendar print outs

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

Replies are listed 'Best First'.
Re^3: calendar print outs
by Anonymous Monk on Dec 20, 2004 at 21:13 UTC
    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://416321]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (6)
As of 2024-04-19 06:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found