shutdown.sh 101 B

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