Leniu-Canteen/scripts_244/stopServices.sh

8 lines
148 B
Bash
Raw Normal View History

2025-01-23 09:53:52 +08:00
P_ID=$(pgrep -f BonusSmartSiteApplication)
if [ -z "$P_ID" ]; then
echo "BonusSmartSiteApplication is not running"
else
kill -9 "$P_ID"
fi