#!/bin/bash wineserver -k; killall -9 wine wineserver; for i in `ps ax|grep -E "\.exe"|awk '{print $1 }'`;do kill -9 $i;done;echo 'killed wine'