2015年7月17日 星期五

[Bash] Kill the current PID

# Kill the current PID

ABC=`ps|grep watchdog_rt|grep -v grep|cut -c 1-5`

if [ -n "$ABC" ]; then
   kill -9 $ABC ; \
fi

0 意見:

張貼留言