From ad2e58931f6675744c1e38b5de6b3a07a5d34002 Mon Sep 17 00:00:00 2001 From: Ayo Date: Thu, 25 Dec 2025 14:14:58 +0100 Subject: [PATCH] feat: add catch-all & report command not found --- ayo.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ayo.sh b/ayo.sh index 473ac2d..aeaad03 100755 --- a/ayo.sh +++ b/ayo.sh @@ -111,5 +111,8 @@ case $1 in ms) quickemu --vm ${HOME}/macos-monterey.conf --kill ;; + *) + echo "Command not found" + ;; esac }