mirror of
https://github.com/NishiOwO/ncsa-httpd.git
synced 2025-04-21 16:54:46 +00:00
15 lines
169 B
Bash
Executable File
15 lines
169 B
Bash
Executable File
#!/bin/sh
|
|
|
|
FORTUNE=`which fortune`
|
|
|
|
echo Content-type: text/plain
|
|
echo
|
|
|
|
if [ -x $FORTUNE ]; then
|
|
$FORTUNE
|
|
else
|
|
echo Cannot find fortune command on this system.
|
|
fi
|
|
|
|
|