I need to replace all ü Characters with ue from my Textfile.
I tried the following:
set -e 's/ü/\"ue/g
Output: "ue
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?
CodePudding user response:
I suppose that your command is sed -e 's/ü/"ue/g
the final command is sed -e 's/ü/ue/g without the backslash