Files
litemall/deploy/bin/stop.sh
linlinjava f50138243c chore
2020-11-29 11:12:07 +08:00

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