immortalwrt/package/lean/luci-app-ssrserver-python/root/usr/share/ssr/logrun.sh

8 lines
250 B
Bash
Raw Normal View History

#!/bin/bash
cd `dirname $0`
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}')
ulimit -n 512000
nohup ${python_ver} server.py m>> ssserver.log 2>&1 &