This commit is contained in:
Nick Bebout 2013-05-20 17:04:57 -05:00
parent f9c9223de1
commit 7b3dcc45fb
28 changed files with 503 additions and 1144 deletions

View file

@ -1,6 +1,6 @@
#!/bin/sh
# $Id: archive_per_month,v 1.5 2012/08/12 16:41:22 gilles Exp gilles $
# $Id: archive_per_month,v 1.6 2013/04/18 15:08:18 gilles Exp gilles $
# Translate Jan to 01, Feb to 02 etc.
month_number() {
@ -50,12 +50,12 @@ archive_year_month() {
#
for year_archive in 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012; do
for year_archive in 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013; do
for month_archive in "Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"; do
archive_year_month $year_archive $month_archive
done
done
# End of $Id: archive_per_month,v 1.5 2012/08/12 16:41:22 gilles Exp gilles $
# End of $Id: archive_per_month,v 1.6 2013/04/18 15:08:18 gilles Exp gilles $