mirror of
https://github.com/coolsnowwolf/luci.git
synced 2025-05-02 22:32:24 +08:00
6 lines
164 B
Bash
Executable File
6 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
|
|
python_ver=$(ls /usr/bin|grep -e "^python[23]\.[1-9]\+$"|tail -1)
|
|
eval $(ps -ef | grep "[0-9] ${python_ver} server\\.py m" | awk '{print "kill "$2}')
|
|
|