8 lines
154 B
Bash
8 lines
154 B
Bash
|
|
P_ID=$(pgrep -f BonusSmartCanteenApplication)
|
||
|
|
if [ -z "$P_ID" ]; then
|
||
|
|
echo "BonusSmartCanteenApplication is not running"
|
||
|
|
else
|
||
|
|
kill -9 "$P_ID"
|
||
|
|
fi
|
||
|
|
|