I have a bash script that contains the following text:
LOAD=`/usr/bin/w |grep "load average"`
echo $LOAD 
when I execute the script it searches for load average in the files inthe directory that is given. After it's executed the output is the following:
10:06:40 up 7 days, 17:21, 3 users, load average: 0.08, 0.06, 0.09
What I want is the $LOAD variable to give the following output:
10:06:40 up 7 days, 17:21, 3 users, load averages: 0.08, 0.06, 0.09
I can't recompile the files in the directory that is given so that is not an option. Any ideas how I am able to achieve this output?
Thanks in advance

load averagewithwfromprocps 3.2.8on Ubuntu. Same on Gentoo fromprocps-ng 3.3.2.grep "load average:"because that's what worked withwbefore... but not with OP's script because he tinkered with the output. Ta-daaa...w, it does printaverages. This is stone-oldBSDcode, for what it's worth.