#!/bin/sh WHOIS=/usr/bin/whois echo Content-type: text/html echo if [ -x $WHOIS ]; then if [ $# = 0 ]; then cat << EOM Access Internet Communications's Domain Search

Domain Search

Use this form to check the domain name you want to see if it is available.

For the most reliable results, enter the full domain name and hierarchy desired, such as mydoamin.com EOM else echo \ echo \ $WHOIS "$*" echo \ fi else echo Cannot find whois on this system. fi