#!/bin/sh
export COLUMNS=1000
if [ "$#" -gt 0 -a "$1" = "${1#-}" ]; then
	ps uf -u "$@"
else
	ps auxf
fi
