This website works better with JavaScript
Home
Explore
Help
Sign In
cdelorme
/
arch-desktop
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
add a script to kill all wine .exe processes
Casey DeLorme
5 years ago
parent
ea24870333
commit
2ecfd3dd46
1 changed files
with
2 additions
and
0 deletions
Split View
Show Diff Stats
2
0
install/usr/local/bin/wine-killer
+ 2
- 0
install/usr/local/bin/wine-killer
View File
@@ -0,0 +1,2 @@
+#!/bin/bash
+kill -9 $(ps ux | grep -iE "\.exe" | grep -v grep | awk '{print $2}')