shadowsocks/run.sh
2016-06-03 21:18:50 +08:00

6 lines
170 B
Bash

#!/bin/bash
cd `dirname $0`
eval $(ps -ef | grep "[0-9] python server\\.py m" | awk '{print "kill "$2}')
ulimit -n 512000
nohup python server.py m>> ssserver.log 2>&1 &