I'm trying to replace the following string with null/nothing using sed:
(env "MyValue")
I've tried a bunch of escapes like this but can't get it to work,
sed -i -e "s|"\(\env \"\MyValue\"\\)\"|""|g" ./myFile
Any sed gods here that can direct me? I cannot seem (with many many different attempts, to get sed to remove the above string from my files.
Thanks!