mirror of
https://github.com/NishiOwO/ncsa-httpd.git
synced 2025-04-22 01:04:43 +00:00
30 lines
454 B
Bash
Executable File
30 lines
454 B
Bash
Executable File
#!/bin/sh
|
|
|
|
FINGER=/usr/ucb/finger
|
|
|
|
echo Content-type: text/html
|
|
echo
|
|
|
|
if [ -x $FINGER ]; then
|
|
if [ $# = 0 ]; then
|
|
cat << EOM
|
|
<HTML><HEAD><TITLE>Finger Gateway</TITLE></HEAD><BODY>
|
|
<H1>Finger Gateway</H1>
|
|
|
|
<ISINDEX>
|
|
|
|
This is a gateway to "finger". Type a user@host combination in your browser's
|
|
search dialog.<P>
|
|
EOM
|
|
else
|
|
echo \<PRE\>
|
|
$FINGER "$*"
|
|
echo \</PRE\>
|
|
fi
|
|
else
|
|
echo Cannot find finger on this system.
|
|
fi
|
|
cat << EOM
|
|
</BODY></HTML>
|
|
EOM
|