This is my command:
echo "Test" | sed -f <(sed -e 's/.*/s,&,gI/' mydic)
The file mydic contains 2 columns delimited by commas (,)
a,AlphabetA
.
.
.
e,AlphabetE
.
.
s,AlphabetS
.
t,AlphabetT
test,testedd
.
.
zebra,zebraaaa
The expect result is testedd, but I get AlphabetTAlphabetEAlphabetSAlphabetT.