#!/bin/bash
echo "Content-type: text/html;"
echo
echo "<html><body>"
cat /proc/loadavg | awk '{if ($3 > 0.01){print $1,$2,"<b>"$3"</b>"}}'
echo "</body></html>"
