home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 October / PCO1097.ISO / FilesBBS / FREI / FSCROLL.EXE / date.cgi < prev    next >
Encoding:
Text File  |  1997-07-30  |  274 b   |  18 lines

  1. #!/bin/sh
  2. #
  3. # Simple CGI-script to send date in FunScroll data format...
  4. #
  5.  
  6. DATE=/bin/date
  7.  
  8. echo Content-type: text/plain
  9. echo
  10.  
  11. if [ -x $DATE ];  then
  12.     echo "<down><50>`$DATE`<down>"
  13. else 
  14.     echo "<nervous><100>Cannot find date command on this system."
  15. fi
  16.  
  17.  
  18.