shutdown.sh 94 B

12345
  1. #!/bin/bash
  2. app='devops-agent.jar'
  3. pid=`jps | grep ${app} | awk '{print $1}'`
  4. kill -15 ${pid}