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.
|
P_ID=$(pgrep -f BonusSmartCanteenApplication)
|
|
if [ -z "$P_ID" ]; then
|
|
echo "BonusSmartCanteenApplication is not running"
|
|
else
|
|
kill -9 "$P_ID"
|
|
fi
|
|
|