Skip to content

Instantly share code, notes, and snippets.

@moccos
Created April 16, 2015 15:44
Show Gist options
  • Save moccos/0ab51db5a737d8be4f1e to your computer and use it in GitHub Desktop.
Save moccos/0ab51db5a737d8be4f1e to your computer and use it in GitHub Desktop.
taskkill.exe helper
function exekill() {
if [ "$1" = "" ]; then
echo "exekill: specify exe name (without .exe)"
return
fi
local exe=$1.exe
taskkill /f /im $exe
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment