Issue
I need to replace all ü Characters with ue from my Textfile.
I tried the following:
set -e 's/ü/\"ue/g
If im writing it like this I became E:
set -e 's/ü/\ue/g
Output: E
My actual problem is: How can I remove the " from "ue?
Solution
I suppose that your command is
sed -e 's/ü/\"ue/g
the final command is
sed -e 's/ü/ue/g
without the backslash
Answered By - Angelo Mantellini Answer Checked By - Mary Flores (WPSolving Volunteer)