3 echo "Did not find a parameter to seek out and whack from the process list."
7 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
11 PIDLIST=$(psfind -x $SCRIPT_NAME $1)
12 #echo "PIDS are $PIDLIST"
13 if [ -z "$PIDLIST" ]; then
14 echo "Your process name was not found in the system."
17 echo "Here are the processes matching your pattern:"
19 echo "Are you sure you want to kill all of these? [y/N] "
21 if [ "$answer" = "Y" -o "$answer" = "y" ]; then
24 echo "You chose not to zap the processes."