We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4563ab2 commit ffcc6c1Copy full SHA for ffcc6c1
1 file changed
scripts/ClamAV.sh
@@ -53,7 +53,8 @@ echo "Choose an option:"
53
echo "1 - Install ClamAV"
54
echo "2 - Uninstall ClamAV"
55
echo "3 - List ClamAV Commands"
56
-read -p "Enter your choice (1, 2, or 3): " choice
+echo "0 - Quit"
57
+read -p "Enter your choice: " choice
58
59
case $choice in
60
1)
@@ -65,6 +66,10 @@ case $choice in
65
66
3)
67
list_clamav_commands
68
;;
69
+ 0)
70
+ echo "Exiting..."
71
+ exit 0
72
+ ;;
73
*)
74
echo "Invalid choice. Please run the script again and choose 1, 2, or 3."
75
0 commit comments