Hi I have a munin plugin that does this
load_fetch() {
set -- $(cat /proc/loadavg)
cat <<EOF
load1.value $1
load5.value $2
load15.value $3
EOF
}
I was woundering if any one could tell me what the "set --" is doing? its not an east thing to google for and get results.