managed to encode my data in the script
[feisty_meow.git] / scripts / text / interactive_underscores_to_spaces.sh
1 #!/bin/bash
2
3 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
4
5 while true; do
6   sep 14 
7   read line 
8   echo "< $line"
9   echo "> $line" | sed -e 's/_/ /g'
10 done
11