1992-03-15 22:05:13 -05:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
2006-07-17 10:12:13 -04:00
|
|
|
: 'This file is in the public domain, so clarified as of'
|
|
|
|
|
: '2006-07-17 by Arthur David Olson.'
|
|
|
|
|
|
2000-08-08 12:39:14 -04:00
|
|
|
case $#-$1 in
|
|
|
|
|
2-|2-0*|2-*[!0-9]*)
|
2014-06-17 18:46:31 -07:00
|
|
|
echo "$0: wild year: $1" >&2
|
2000-08-08 12:39:14 -04:00
|
|
|
exit 1 ;;
|
|
|
|
|
esac
|
|
|
|
|
|
1992-03-15 22:05:13 -05:00
|
|
|
case $#-$2 in
|
2005-01-31 14:06:08 -05:00
|
|
|
2-even)
|
2000-08-08 12:39:14 -04:00
|
|
|
case $1 in
|
|
|
|
|
*[24680]) exit 0 ;;
|
|
|
|
|
*) exit 1 ;;
|
|
|
|
|
esac ;;
|
2000-08-08 12:28:00 -04:00
|
|
|
2-nonpres|2-nonuspres)
|
2000-08-08 12:39:14 -04:00
|
|
|
case $1 in
|
|
|
|
|
*[02468][048]|*[13579][26]) exit 1 ;;
|
|
|
|
|
*) exit 0 ;;
|
|
|
|
|
esac ;;
|
2005-01-31 14:06:08 -05:00
|
|
|
2-odd)
|
2000-08-08 12:39:14 -04:00
|
|
|
case $1 in
|
|
|
|
|
*[13579]) exit 0 ;;
|
|
|
|
|
*) exit 1 ;;
|
|
|
|
|
esac ;;
|
2000-08-08 12:28:00 -04:00
|
|
|
2-uspres)
|
2000-08-08 12:39:14 -04:00
|
|
|
case $1 in
|
|
|
|
|
*[02468][048]|*[13579][26]) exit 0 ;;
|
|
|
|
|
*) exit 1 ;;
|
|
|
|
|
esac ;;
|
2005-01-31 14:06:08 -05:00
|
|
|
2-*)
|
2014-06-17 18:46:31 -07:00
|
|
|
echo "$0: wild type: $2" >&2 ;;
|
1992-03-15 22:05:13 -05:00
|
|
|
esac
|
2000-08-08 12:28:00 -04:00
|
|
|
|
|
|
|
|
echo "$0: usage is $0 year even|odd|uspres|nonpres|nonuspres" >&2
|
2000-08-14 09:54:03 -04:00
|
|
|
exit 1
|