mirror of
http://123.56.153.49:3000/haibing/litemall.git
synced 2025-06-06 21:59:51 +00:00
8 lines
124 B
Bash
8 lines
124 B
Bash
#!/bin/bash
|
|
|
|
PID=$(ps -ef | grep litemall.jar | grep -v grep | awk '{ print $2 }')
|
|
|
|
if [ ! -z "$PID" ]
|
|
then
|
|
kill $PID
|
|
fi |