in reply to Pipe and extract
You can split the output by using comma
my $a=`uptime`; my @y=split(/,/,$a); print $y[3]; [download]
Take care of leading and trailing spaces