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
/
uptime
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-05-18
|
165 b
|
15 lines
#!/bin/sh
UPTIME=/usr/ucb/uptime
echo Content-type: text/plain
echo
if [ -x $UPTIME ]; then
$UPTIME
else
echo Cannot find uptime command on this system.
fi