2 lines
82 B
Bash
2 lines
82 B
Bash
|
#!/bin/sh
|
||
|
ps -ef | grep anmo.jar | grep -v grep | awk '{print $2}' | xargs kill -9
|