how do i add a line with double quotes in sed?
here is the line:
"AStringHere"=dword:00000000
i want this to be replaced with:
"AStringHere"=dword:00000001
this is what i thought would work but doesnt:
sed -i '/"AStringHere"=dword:00000000/"AStringHere"=dword:00000001' filepath
how do i fix this?
Last edited by Beandip408; 02-01-2012 at 03:21 PM.
Reason: nevermind i figured it out:
|