stop.sh 112 B

12345
  1. #!/bin/bash
  2. for i in $(ps -ef | grep domainBApi.jar | grep -v grep | awk '{print $2}'); do
  3. kill -9 "$i"
  4. done