4 lines
73 B
Plaintext
4 lines
73 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
ps -ef|grep "$1"|grep -v grep|awk '{print("kill -9", $2)}'|sh
|