home *** CD-ROM | disk | FTP | other *** search
/ Magazyn WWW 1999 July / www_07_1999.iso / prez / amiga / apache_1_0_5.lha / apache_1.0.5 / cgi-bin / uptime < prev    next >
Text File  |  1994-03-01  |  165b  |  15 lines

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