From: Chris Koeritz Date: Fri, 25 May 2018 23:14:12 +0000 (-0400) Subject: managed to encode my data in the script X-Git-Tag: 2.140.113^2~6 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=1e4dcf49953721d9bc4505d66717a7613de19d0e managed to encode my data in the script fixed now. --- diff --git a/scripts/text/interactive_underscores_to_spaces.sh b/scripts/text/interactive_underscores_to_spaces.sh index ed704767..2f122619 100644 --- a/scripts/text/interactive_underscores_to_spaces.sh +++ b/scripts/text/interactive_underscores_to_spaces.sh @@ -5,7 +5,7 @@ source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" while true; do sep 14 read line - echo "< arfle_soiwe_pestunius" - echo "> arfle_soiwe_pestunius" | sed -e 's/_/ /g' + echo "< $line" + echo "> $line" | sed -e 's/_/ /g' done