mirror of
https://github.com/kenzok8/small-package.git
synced 2026-02-07 23:27:13 +08:00
6 lines
167 B
Bash
6 lines
167 B
Bash
#!/bin/bash
|
|
cd `dirname $0`
|
|
eval $(ps -ef | grep "[0-9] python server\\.py a" | awk '{print "kill "$2}')
|
|
ulimit -n 512000
|
|
nohup python server.py a >> /dev/null 2>&1 &
|