home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Online / Apache / cgi-bin / date < prev    next >
Text File  |  1999-11-11  |  151b  |  15 lines

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