From 48f0efc6e7307eef5b9b154ac78897484e83abdd Mon Sep 17 00:00:00 2001 From: pvincent Date: Thu, 30 Oct 2025 15:36:39 +0400 Subject: [PATCH] interactive --- interactive.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interactive.bash b/interactive.bash index 09644a7..71967b4 100755 --- a/interactive.bash +++ b/interactive.bash @@ -6,5 +6,5 @@ echo REPLY=$REPLY choices=( one two three) select choice in "${choices[@]}"; do [[ -n $choice ]] && break -done +done < /dev/tty echo "choice is: $choice"