shutdown.sh 168 B

1234567891011
  1. #!/bin/bash
  2. RESOURCE_NAME=army_chongqing_college.jar
  3. Pid=`awk '{print $1}' tpid`
  4. if [ ${Pid} ]; then
  5. kill -9 $Pid
  6. echo 'Kill Process!'
  7. else
  8. echo 'Stop failed!'
  9. fi