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