in reply to parsing output of uptime
$string=`uptime`; $string=~/.*?up (.*?,.*?),/; print "$1\n"; [download]