freebsd-dev/share/zoneinfo/yearistype.sh
Garrett Wollman d2746e980f Latest version of the timezone data files from Arthur David Olson, to
go with the code imported yesterday.

Obtained from: Arthur David Olson, ftp://elsie.nci.nih.gov/pub/tzdata94f.tar.gz
1994-09-13 21:50:20 +00:00

19 lines
298 B
Bash
Executable File

#! /bin/sh
: '@(#)yearistype.sh 7.2'
case $#-$2 in
2-odd) case $1 in
*[13579]) exit 0 ;;
*) exit 1 ;;
esac ;;
2-even) case $1 in
*[24680]) exit 0 ;;
*) exit 1 ;;
esac ;;
2-*) echo "$0: wild type - $2" >&2
exit 1 ;;
*) echo "$0: usage is $0 year type" >&2
exit 1 ;;
esac