I have a text file.
using windows cmd I want to find and replace the following
__HTML_APP_URL__
--> http://google.com
Couldn't find simple tutorial to do so
I have a text file.
using windows cmd I want to find and replace the following
__HTML_APP_URL__
--> http://google.com
Couldn't find simple tutorial to do so
I'll try
powerShell
get-content somefile.txt | %{$_ -replace "expression","replace"}