stop.sh 101 B

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