5 lines
89 B
Bash
Executable File
5 lines
89 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
ps -ef|grep "app/sage.py"|grep -v grep|awk '{print("kill -9", $2)}'|sh
|
|
|