This repository has been archived on 2025-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
Bonus-Cloud-Smart-Canteen/scripts_244/stopServices.sh

8 lines
154 B
Bash
Raw Permalink Normal View History

2025-02-10 12:42:18 +08:00
P_ID=$(pgrep -f BonusSmartCanteenApplication)
2025-01-23 16:18:40 +08:00
if [ -z "$P_ID" ]; then
2025-02-10 12:42:18 +08:00
echo "BonusSmartCanteenApplication is not running"
2025-01-23 16:18:40 +08:00
else
kill -9 "$P_ID"
fi