#!/bin/sh CAL=/usr/bin/cal echo Content-type: text/html echo if [ -x $CAL ]; then if [ $# = 0 ]; then cat << EOM
Example: 3 1993 would give the calendar for March 1993. EOM else echo \
3 1993
$CAL $* fi else echo Cannot find cal on this system. fi