blob: 42ef29bbe87912e8609dff82bb7e6b808f2eecda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! /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
|