0

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

Elad Benda
  • 35,076
  • 87
  • 265
  • 471
  • 1
    See http://stackoverflow.com/questions/127318/is-there-any-sed-like-utility-for-cmd-exe – NPE Dec 03 '12 at 08:16

1 Answers1

0

I'll try

powerShell

get-content somefile.txt | %{$_ -replace "expression","replace"}

Elad Benda
  • 35,076
  • 87
  • 265
  • 471