#!/bin/sh

#This is a replacement for the pkill command. Install it
#only if your operating system does not have a pkill command.
#You need it for the sms start/stop script.

kill `ps -e | awk '$4=="kgpg"{print $1}'`
