#!/bin/sh # start/stop an application # 2014-07-29 09:45 created by niujiuru start() { chmod a+x ${APPBINS_PATH}/${APPNAME} ${APPBINS_PATH}/${APPNAME} & } stop() { kill_programs ${APPNAME} 9 }