How to globally replace strings in lines NOT starting with a certain pattern
I want to globally replace the string foo with the string bar, using sed. This should only be done for lines which do NOT start with the string ##Input.
I can't get it to work. I tried things like this but reached a point where I'm not sure if I know what I'm doing:
sed -i '/^##Input/ s/foo/bar/g' myfile
Please help!
You just need to negate the match using !
:
sed -i '/^##Input/! s/foo/bar/g' myfile