9 lines
132 B
Bash
Executable File
9 lines
132 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
pid=`ps -ef | grep bill| grep java | awk '{print $2}'`
|
|
|
|
if [ -n "$pid" ]; then
|
|
echo $pid
|
|
kill -9 $pid
|
|
fi
|