#!/bin/bash
#echo "SIGHUP"
kill -SIGHUP `ps ax | grep "netscape.*a[t]or" | sed -e ": x;s/ / /;t x" | cut --field=2 --delimiter=' '`
sleep 1
#echo "SIGQUIT"
kill -SIGQUIT `ps ax | grep "netscape.*a[t]or" | sed -e ": x;s/ / /;t x" | cut --field=2 --delimiter=' '`
#sleep 1
#echo "SIGTERM"
#kill -SIGTERM `ps ax | grep "netscape.*a[t]or" | sed -e ": x;s/ / /;t x" | cut --field=2 --delimiter=' '`
#sleep 1
#echo "SIGABRT"
#kill -SIGABRT `ps ax | grep "netscape.*a[t]or" | sed -e ": x;s/ / /;t x" | cut --field=2 --delimiter=' '`
#sleep 1
#echo "SIGKILL"
#kill -SIGKILL `ps ax | grep "netscape.*a[t]or" | sed -e ": x;s/ / /;t x" | cut --field=2 --delimiter=' '`
|