Bonus-Cloud-JYY-Smart-Canteen/scripts_244_smart_canteen_test/stopServices.sh

8 lines
154 B
Bash
Raw Permalink Normal View History

2025-05-25 12:12:02 +08:00
P_ID=$(pgrep -f BonusSmartCanteenApplication)
if [ -z "$P_ID" ]; then
echo "BonusSmartCanteenApplication is not running"
else
kill -9 "$P_ID"
fi