This is hardcoded var in my sh script
Now, I would like to parse string, in that var, to get redefined $var with value:
Using sh's built in 'echo' for piping it to 'converter' is a no go, as echo replaces tab with space BEFORE output-ing.
Code:
# White spaces are:
# do<SPACE>co<TAB>le<TAB><TAB>tsk
lol='do co le tsk'
Code:
# White space <TAB> char, is substituted with 2 chars: \t
lol='do co\tle\t\ttsk'