#!/bin/csh -f 
#--------- killns: kill running netscape
#   usage: killns

set nspid = `/usr/bin/ps -A| grep netscape| grep -v grep| awk '{ print $1 }'`
kill -9 $nspid
/bin/rm -f $HOME/.netscape/lock

