This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
cdelorme
/
arch-desktop
Seguir
1
Destacar
0
Fork
0
Archivos
Incidencias
0
Pull Requests
0
Wiki
Explorar el Código
add a script to kill all wine .exe processes
Casey DeLorme
hace 5 años
padre
ea24870333
commit
2ecfd3dd46
Se han
modificado 1 ficheros
con
2 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
2
0
install/usr/local/bin/wine-killer
+ 2
- 0
install/usr/local/bin/wine-killer
Ver fichero
@@ -0,0 +1,2 @@
+#!/bin/bash
+kill -9 $(ps ux | grep -iE "\.exe" | grep -v grep | awk '{print $2}')