home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / cgi-bin / Japan / WIDE / uptime < prev    next >
Text File  |  2017-09-21  |  164b  |  15 lines

  1. #!/bin/sh
  2.  
  3. UPTIME=`which 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.