NetBSD/share/zoneinfo/yearistype.sh

44 lines
775 B
Bash
Raw Normal View History

1997-06-18 05:19:11 +04:00
#! /bin/sh
1998-01-09 11:03:16 +03:00
#
2006-09-23 21:34:36 +04:00
# $NetBSD: yearistype.sh,v 1.6 2006/09/23 17:34:36 kleink Exp $
1998-01-09 11:03:16 +03:00
#
1997-06-18 05:19:11 +04:00
2006-09-23 21:34:36 +04:00
: 'This file is in the public domain, so clarified as of'
: '2006-07-17 by Arthur David Olson.'
: '@(#)yearistype.sh 8.2'
2000-08-11 16:03:21 +04:00
case $#-$1 in
2-|2-0*|2-*[!0-9]*)
echo "$0: wild year - $1" >&2
exit 1 ;;
esac
1997-06-18 05:19:11 +04:00
case $#-$2 in
2005-02-12 03:31:41 +03:00
2-even)
2000-08-11 16:03:21 +04: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 ;;
2005-02-12 03:31:41 +03:00
2-odd)
2000-08-11 16:03:21 +04:00
case $1 in
*[13579]) exit 0 ;;
*) exit 1 ;;
esac ;;
2-uspres)
case $1 in
*[02468][048]|*[13579][26]) exit 0 ;;
*) exit 1 ;;
esac ;;
2005-02-12 03:31:41 +03:00
2-*)
2000-08-11 16:03:21 +04:00
echo "$0: wild type - $2" >&2 ;;
1997-06-18 05:19:11 +04:00
esac
2000-08-11 16:03:21 +04:00
echo "$0: usage is $0 year even|odd|uspres|nonpres|nonuspres" >&2
2000-11-03 14:08:22 +03:00
exit 1