From 8b153884678a56171be81c9bf214a1903c8192b8 Mon Sep 17 00:00:00 2001 From: Bryan Roessler Date: Sun, 30 Jun 2024 14:48:13 -0400 Subject: [PATCH] Fix prompt --- script-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-functions b/script-functions index ea54c957..1d6254ea 100644 --- a/script-functions +++ b/script-functions @@ -5,7 +5,7 @@ # Don't run this script directly [[ "${BASH_SOURCE[0]}" == "${0}" ]] && exit 0 -prompt() { read -pr "Enter $1: " "$1"; } +prompt() { read -r -p "Enter $1: " "$1"; } ask_ok() { declare response