From d92821b46533210cd43b2ad35c093874f286b428 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Fri, 25 May 2018 18:11:13 -0400 Subject: [PATCH] special purpose underscore to space converter just takes lines of input and turns the underscores back into spaces; part of a simple readability toolset for converting file names to titles. --- scripts/text/interactive_underscores_to_spaces.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/text/interactive_underscores_to_spaces.sh diff --git a/scripts/text/interactive_underscores_to_spaces.sh b/scripts/text/interactive_underscores_to_spaces.sh new file mode 100644 index 00000000..ed704767 --- /dev/null +++ b/scripts/text/interactive_underscores_to_spaces.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +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' +done + -- 2.34.1