home *** CD-ROM | disk | FTP | other *** search
/ The HTML Web Publisher's Construction Kit / HTMLWPCK.ISO / unix / servers / httpd_14 / source.z / source / httpd_1.4.1 / cgi-bin / fortune < prev    next >
Encoding:
Text File  |  1995-05-18  |  172 b   |  15 lines

  1. #!/bin/sh
  2.  
  3. FORTUNE=/usr/games/fortune
  4.  
  5. echo Content-type: text/plain
  6. echo
  7.  
  8. if [ -x $FORTUNE ];  then
  9.     $FORTUNE
  10. else 
  11.     echo Cannot find fortune command on this system.
  12. fi
  13.  
  14.  
  15.