changes accidentally checked into main branch
[feisty_meow.git] / scripts / customize / fred / scripts / games / zap_fallout.sh
1 #!/bin/bash
2
3 # windows compatible process killer for any stray processes started as
4 #"fallout" something.
5
6 source $FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh
7
8 procid="$( psa fallout | tail -n 1 | awk '{ print $1; }' )"
9
10 if [ ! -z "$procid" ]; then
11   taskkill.exe /f /pid ${procid}
12 fi