1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| #!/bin/bash
process_name=`pwd | xargs basename`
usage() { echo "./start.sh [ start | stop | reload | status ]" }
status() { ps -ef | grep $process_name | grep -v grep }
start() { echo "start $process_name...." nohup ./$process_name 2>&1 1>/dev/null & status }
stop() { echo "stop $process_name..." ps -ef | grep $process_name | grep -v grep | awk '{print $2}' |xargs kill -9 status }
reload() { echo "reload $process_name..." ps -ef | grep $process_name |grep -v grep | awk '{print $2}' |xargs kill -HUP status }
case "$1" in start) start ;; stop) stop ;; reload) reload ;; status) status ;; *) usage ;; esac
|