#!/bin/sh ARCHIE=/usr/local/bin/archie echo Content-type: text/html echo if [ -x $ARCHIE ]; then if [ $# = 0 ]; then cat << EOM Archie Gateway

Archie Gateway

This is a gateway to archie. Type search query in your browser's search dialog.

EOM else echo \ $ARCHIE "$*" fi else echo Cannot find archie on this system. fi