From a1ae478dbe2640a2fd5c92aec7f67c593ab9cae6 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Fri, 25 May 2018 19:16:40 -0400 Subject: [PATCH] decided to stop once there is no input left --- scripts/text/interactive_underscores_to_spaces.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/text/interactive_underscores_to_spaces.sh b/scripts/text/interactive_underscores_to_spaces.sh index 2f122619..9d414526 100644 --- a/scripts/text/interactive_underscores_to_spaces.sh +++ b/scripts/text/interactive_underscores_to_spaces.sh @@ -4,7 +4,7 @@ source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" while true; do sep 14 - read line + read line || break echo "< $line" echo "> $line" | sed -e 's/_/ /g' done -- 2.34.1