From b286877af0d4b2eb8d7f32139d4f296882926b3d Mon Sep 17 00:00:00 2001 From: Heavybullets8 Date: Tue, 26 Jul 2022 16:52:32 -0600 Subject: [PATCH] print current selection --- functions/menu.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/functions/menu.sh b/functions/menu.sh index 7821c7aa..35ae5f4d 100644 --- a/functions/menu.sh +++ b/functions/menu.sh @@ -100,6 +100,11 @@ menu(){ echo "0) Done making selections, proceed with update" echo read -rt 600 -p "Please type the number associated with the flag above: " current_selection + + for i in "${current_selection[@]}" + do + echo "$i" + done if [[ $current_selection == 0 ]]; then exec bash "$script_name" "${update_selection[@]}" exit