Przeglądaj źródła

add a script to kill all wine .exe processes

Casey DeLorme 5 lat temu
rodzic
commit
2ecfd3dd46
1 zmienionych plików z 2 dodań i 0 usunięć
  1. 2 0
      install/usr/local/bin/wine-killer

+ 2 - 0
install/usr/local/bin/wine-killer

@@ -0,0 +1,2 @@
+#!/bin/bash
+kill -9 $(ps ux | grep -iE "\.exe" | grep -v grep | awk '{print $2}')