myapp 201 B

1234567891011121314
  1. #!/bin/sh
  2. # start/stop an application
  3. # 2014-07-29 09:45 created by niujiuru
  4. start()
  5. {
  6. chmod a+x ${APPBINS_PATH}/${APPNAME}
  7. ${APPBINS_PATH}/${APPNAME} &
  8. }
  9. stop()
  10. {
  11. kill_programs ${APPNAME} 9
  12. }