#!/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 -ef | grep -v grep | grep $1 | awk '{print $2}'`

