in reply to parsing output of uptime

#!/usr/bin/perl $uptime = `/usr/bin/uptime`; @tmp = split(); # Split $uptime up by whitespace $result = "$uptime2 $uptime3 $uptime4"; print "$result\n";