#!/bin/sh
#
# This file kills the cwbeacon process

cwpid="`/bin/ps -aux | /usr/bin/grep cwbeacon | /usr/bin/awk '{print $2}'`"

/bin/kill -9 ${cwpid}
