stop.sh 73 B

12345
  1. #!/bin/bash
  2. for i in $(pgrep -f sms_server.jar); do
  3. kill -9 "$i"
  4. done