new script to take down berserk witcher 3 game
[feisty_meow.git] / scripts / customize / fred / scripts / games / zap_witcher.sh
1 #!/bin/bash
2
3 # windows compatible process killer for any stray processes started as
4 # "witcher" something.
5
6 source $FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh
7
8 procid="$( psa witcher | tail -n 1 | awk '{ print $1; }' )"
9
10 if [ ! -z "$procid" ]; then
11   taskkill.exe /f /pid ${procid}
12 fi