mirror of
https://gitee.com/BDWare/agent-backend
synced 2025-01-09 09:24:13 +00:00
10 lines
237 B
Bash
10 lines
237 B
Bash
#!/bin/bash
|
|
if [ -a './CMI' ]; then
|
|
ps -ef | grep java | grep yjs | grep $(cat CMI) | awk '{print $2}' | xargs kill -9
|
|
fi
|
|
|
|
if [ $# -gt 0 ]; then
|
|
echo $1
|
|
ps -ef | grep java | grep yjs | grep $1 | awk '{print $2}' | xargs kill -9
|
|
fi
|