• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

script to check uptime

Albert

New Member
I am searching for simple script to check uptime. Preferred languages are bash, perl and python
 
Can't help with any of those I'm afraid but I might be able to come up with something in PHP if that helps.

Nick
 
Code:
#!/usr/bin/perl
print "Content-Type: text/html\n\n\n";
print `uptime`;
That's the easy way. Just print the output of `uptime`.
 
Back
Top