Help for this page

Select Code to Download


  1. or download this
       my $output = `uptime.pl`; # or qx/ /
       print $output
    
  2. or download this
       my $exit_status = system( "uptime.pl" );
       print $exit_status;