1994-09-13 21:50:20 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
2006-10-13 10:00:49 +00:00
|
|
|
: 'This file is in the public domain, so clarified as of'
|
|
|
|
: '2006-07-17 by Arthur David Olson.'
|
|
|
|
|
2000-08-10 19:20:14 +00:00
|
|
|
case $#-$1 in
|
|
|
|
2-|2-0*|2-*[!0-9]*)
|
2014-08-27 18:49:41 +00:00
|
|
|
echo "$0: wild year: $1" >&2
|
2000-08-10 19:20:14 +00:00
|
|
|
exit 1 ;;
|
|
|
|
esac
|
1994-09-13 21:50:20 +00:00
|
|
|
|
|
|
|
case $#-$2 in
|
Vendor update of timezone database.
Changes to historical dates in: Azerbaijan, B.I.O.T., China, Denmark,
Libya, and Poland.
Changes to current dates in: East Timor, Haiti, Israel, Kazakhstan,
Nicaragua, Paraguay, Samoa, Tunisia, Uruguay
Changes to future dates in: Australia, Iran, United States
Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata2005l.tar.gz
2005-08-26 18:39:31 +00:00
|
|
|
2-even)
|
2000-08-10 19:20:14 +00:00
|
|
|
case $1 in
|
|
|
|
*[24680]) exit 0 ;;
|
|
|
|
*) exit 1 ;;
|
|
|
|
esac ;;
|
|
|
|
2-nonpres|2-nonuspres)
|
|
|
|
case $1 in
|
|
|
|
*[02468][048]|*[13579][26]) exit 1 ;;
|
|
|
|
*) exit 0 ;;
|
|
|
|
esac ;;
|
Vendor update of timezone database.
Changes to historical dates in: Azerbaijan, B.I.O.T., China, Denmark,
Libya, and Poland.
Changes to current dates in: East Timor, Haiti, Israel, Kazakhstan,
Nicaragua, Paraguay, Samoa, Tunisia, Uruguay
Changes to future dates in: Australia, Iran, United States
Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata2005l.tar.gz
2005-08-26 18:39:31 +00:00
|
|
|
2-odd)
|
2000-08-10 19:20:14 +00:00
|
|
|
case $1 in
|
|
|
|
*[13579]) exit 0 ;;
|
|
|
|
*) exit 1 ;;
|
|
|
|
esac ;;
|
|
|
|
2-uspres)
|
|
|
|
case $1 in
|
|
|
|
*[02468][048]|*[13579][26]) exit 0 ;;
|
|
|
|
*) exit 1 ;;
|
|
|
|
esac ;;
|
Vendor update of timezone database.
Changes to historical dates in: Azerbaijan, B.I.O.T., China, Denmark,
Libya, and Poland.
Changes to current dates in: East Timor, Haiti, Israel, Kazakhstan,
Nicaragua, Paraguay, Samoa, Tunisia, Uruguay
Changes to future dates in: Australia, Iran, United States
Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata2005l.tar.gz
2005-08-26 18:39:31 +00:00
|
|
|
2-*)
|
2014-08-27 18:49:41 +00:00
|
|
|
echo "$0: wild type: $2" >&2 ;;
|
1994-09-13 21:50:20 +00:00
|
|
|
esac
|
2000-08-10 19:20:14 +00:00
|
|
|
|
|
|
|
echo "$0: usage is $0 year even|odd|uspres|nonpres|nonuspres" >&2
|
2000-10-25 19:33:50 +00:00
|
|
|
exit 1
|