#!/bin/sh
#Suicide!
#this is GPL software, read the license at www.gnu.org
#by Carlos Urbieta Cabrera
#a change suggested by John et al
if [ $USER != root ]; then
  kill -9 `ps aux | grep $USER | awk '{print $2}'`
fi
