I would like to change the following in a 'Local State' chrome config file
from
"browser":{
Change to
"browser":{"enabled_labs_experiments":["read-later@2"],"
using this to replace standard Strings is great... but as you can see.. my needs are a little more complex
im having problems using this following command
powershell -Command "(gc myFile.txt) -replace 'foo', 'bar' | Out-File -encoding ASCII myFile.txt
the issue is that it appears that powershell knows only RAW... so the " and @ and : sends it into a spin...
is there a way to tell powershell to ingore those?.... or is there another way I can find & replace using powershell?
(F.A.R.T has the same issue)
