if [ -z "$1" ]; then
	/usr/bin/cal
elif [ -z "$2" ]; then
	/usr/bin/cal "$1" `date +%Y`
else
	/usr/bin/cal "$@"
fi
