emud/area_current/
emud/area_current/castle/
emud/area_current/newareas/
emud/area_current/nwcentral/
emud/area_current/scontinent/
emud/clans/
emud/player/
emud/player/d/e/bak/
emud/player/e/m/
emud/player/e/m/bak/
#!/bin/bash

# get the pids and get the shells out of them

for i in `ps U $1 -o "%p"`
do
	if [ $i != "PID" ]
	then
		kill -TERM $i;
	fi
done