in reply to What is the best way to get a list of all Mondays until the end of the year?
Update: shortened the line a bit.perl -e 'use Date::Manip; $dt = ParseDate("now"); while($dt lt "200812 +31") { $dt = Date_GetNext($dt,"Mon", 0); print UnixDate( $dt, "%Y-%m- +%d"), "\n"; }'
|
|---|