Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    my @uptime = split ' ', `uptime`;
    
    print "Server rebooted in last 24 hours" if ( $uptime[2] < 1 );
    
  2. or download this
     print "Server rebooted in last 24 hours"