#!/bin/sh
# Immediate CPU% (using `top`) of all processes
#
# uses `top(1)` for real-time CPU% because `ps(1)` will report CPU%
# average over the processes' lifetime.
top -w 512 -bn1 | tail -n +8 | awk '{print $9,$1,$12}'
