#!/bin/sh -u # # $0 # # (no arguments) # Produce a numbered, reverse sorted list of my processes. # by Ian! idallen@ncf.ca June 14, 2001 export PATH=/bin:/usr/bin umask 022 # The +2 skips over line 1, which is the title line I don't want sorted. # ps | tail -n +2 | cat -b | sort -nr