#!/bin/sh
#
# Author: Peter Keel <killer@discordia.ch>
# Tired of typing the same string again and again. Filtering out the 
# special case with no argument given doesn't work. Who cares?
#
if [ -n $1 ]
then
    ps aux | grep $1 | grep -v grep
fi
