I am writing a batch file script using Windows command-line environment and want to change each occurrence of some text in a file (ex. "FOO") with another (ex. "BAR"). What is the simplest way to do that? Any built in functions?

link|improve this question

You might want to clarify that you mean "Windows command-line environment", not "MS-DOS". – bzlm Sep 26 '08 at 9:34
@bzlm, The command line in Windows since I believe Windows 2000 on up is not referred to as MS-DOS but instead just the Windows Command Prompt or Windows Command Line. – jpierson Sep 17 '10 at 1:55
@jpierson stackoverflow.com/posts/60034/revisions ;) – bzlm Sep 17 '10 at 7:33
@bzlm, Thanks for pointing that out, I must have read your comment wrong. I guess your and my comments are all obsolete now but unfortunately I'm not ranked high enough to make these comments go away ;) – jpierson Sep 17 '10 at 19:18
2  
@jpierson You'll get there! – bzlm Sep 18 '10 at 9:03
feedback

15 Answers

up vote 41 down vote accepted

If you are on Windows version that supports .Net 2.0, I would replace your shell. PowerShell gives you the full power of .Net from the command line. There are many commandlets built in as well. The example below will solve your question. I'm using the full names of the commands, there are shorter aliases, but this gives you something to Google for.

Get-Content test.txt | ForEach-Object { $_ -replace "foo", "bar" } | Set-Content test2.txt
link|improve this answer
I second the vote for PowerShell. It gives you just an extremely capable shell. – Steven Murawski Sep 13 '08 at 0:17
I can see PowerShell is capable of archieving this. But how can I make this run from a batch file (example: myProc.bat)? – Pablo Venturino Mar 3 '10 at 12:43
1  
@Pablo, use powershell.exe and wrap ps command into single parameter – lubos hasko Mar 5 '10 at 8:13
2  
Now Powershell is part of Windows as of Windows 7 so this really is a great option. – jpierson Sep 17 '10 at 1:52
-1.. Sure the answer was accepted, but it's not answer to the specified question. – dave at flow May 2 at 1:29
show 1 more comment
feedback

Just used FART ("F ind A nd R eplace T ext" command line utility):
excellent little freeware for text replacement within a large set of files.

The setup files are here.

fart.exe -p -r -c -- C:\tools\perl-5.8.9\* @@APP_DIR@@ C:\tools

will preview the replacements to recursively do in the files of this Perl distribution.

Only problem: the FART website icon isn't exactly tasteful, refined nor elegant ;)

alt text

link|improve this answer
4  
The cool thing is it's one single exe. No dependencies. No small prints. Super easy to deploy. – Serge - appTranslator Mar 2 '11 at 17:24
Thanks for the fart recommendation. Seems to work well, although I wish it supported regex. – Gary Kephart Jul 9 '11 at 16:57
Very lightweight and easy to use, but I was hoping it would print out the exact places that replacements took place. Not being able to see that gave me a sense of insecurity. – William Niu Sep 6 '11 at 7:39
1  
Thanks, it's perfect, should be part of the standard dos tools and worked a charm. The -p option however doesn't show you how many changes it 'would' make and always reports 0 which threw me for a few mins – sradforth Jan 10 at 14:53
feedback

BatchSubstitute.bat on dostips.com is an example of search and replace using a pure batch file.

It uses a combination of FOR, FIND and CALL SET.

Lines containing characters among "&<>]|^ may be treated incorrectly.


link|improve this answer
Awesome. Bliss. Greatfruit. – Kieveli Sep 15 '09 at 18:12
I have to question the usefulness of a code snippet site whose terms of use prohibit copying any of the code (“You may not distribute any information provided under the domain dostips.com in any form without express written permission of the domain owner.”). – Gilles Apr 11 at 8:34
I agree their terms are confusing, they also say "The information provided under the domain dostips.com is hopefully useful" so my assumption is that they are happy for people to copy the code to solve a problem. I'm not sure I have ever read any terms and conditions and been happy... – morechilli Apr 16 at 9:58
feedback

I don't think there's a way to do it with any built-in commands. I would suggest you download something like Gnuwin32 or UnxUtils and use the sed command:

sed -c s/FOO/BAR/g filename
link|improve this answer
Use cygwin (cygwin.com). It's the next best thing to actually installing linux. – Andrew Johnson Sep 12 '08 at 22:12
feedback

Replace - Replace a substring using string substitution Description: To replace a substring with another string use the string substitution feature. The example shown here replaces all occurrences "teh" misspellings with "the" in the string variable str.

set str=teh cat in teh hat
echo.%str%
set str=%str:teh=the%
echo.%str%

Script Output:

teh cat in teh hat
the cat in the hat

ref: http://www.dostips.com/DtTipsStringManipulation.php#Snippets.Replace

link|improve this answer
1  
the sed suggestion above is better – Bill Richardson May 28 '11 at 1:28
4  
How is the sed suggestion better? This seems to be the most simple answer of them all and requires installing nothing. – DonBecker Jan 20 at 20:18
1  
Can any sort of pattern matching be done here? Wildcards, Regex etc? – Keyo Apr 19 at 21:51
feedback

Here's a solution that I found worked on Win XP. In my running batch file, I included the following:

set value=new_value

:: Setup initial configuration
:: I use && as the delimiter in the file because it should not exist, thereby giving me the whole line
::
echo --> Setting configuration and properties.
for /f "tokens=* delims=&&" %%a in (config\config.txt) do ( 
  call replace.bat "%%a" _KEY_ %value% config\temp.txt 
)
del config\config.txt
rename config\temp.txt config.txt

The replace.bat file is as below. I did not find a way to include that function within the same batch file, because the %%a variable always seems to give the last value in the for loop.

replace.bat:

@echo off

:: This ensures the parameters are resolved prior to the internal variable
::
SetLocal EnableDelayedExpansion

:: Replaces Key Variables
::
:: Parameters:
:: %1  = Line to search for replacement
:: %2  = Key to replace
:: %3  = Value to replace key with
:: %4  = File in which to write the replacement
::

:: Read in line without the surrounding double quotes (use ~)
::
set line=%~1

:: Write line to specified file, replacing key (%2) with value (%3)
::
echo !line:%2=%3! >> %4

:: Restore delayed expansion
::
EndLocal
link|improve this answer
Essentially the same as Bill Richardson's answer. – STATUS_ACCESS_DENIED Apr 9 at 20:39
feedback

Create file replace.vbs:

Const ForReading = 1    
Const ForWriting = 2

strFileName = Wscript.Arguments(0)
strOldText = Wscript.Arguments(1)
strNewText = Wscript.Arguments(2)

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile(strFileName, ForReading)
strText = objFile.ReadAll
objFile.Close

strNewText = Replace(strText, strOldText, strNewText)
Set objFile = objFSO.OpenTextFile(strFileName, ForWriting)
objFile.Write strNewText  'WriteLine adds extra CR/LF
objFile.Close

To use this revised script (which we’ll call replace.vbs) just type a command similar to this from the command prompt:

cscript replace.vbs "C:\Scripts\Text.txt" "Jim " "James "

link|improve this answer
Format the entire code, not just the first line. – st0le Sep 27 '10 at 5:04
feedback

May be a little bit late, but I am frequently looking for similar stuff, since I don't want to get through the pain of getting software approved.

However, you usually use the FOR statement in various forms. Someone created a useful batch file that does a search and replace. Have a look here. It is important to understand the limitations of the batch file provided. For this reason I don't copy the source code in this answer.

link|improve this answer
feedback

This is one thing that batch scripting just does not do well.

The script morechilli linked to will work for some files, but unfortunately it will choke on ones which contain characters such as pipes and ampersands.

VBScript is a better built-in tool for this task. See this article for an example: http://www.microsoft.com/technet/scriptcenter/resources/qanda/feb05/hey0208.mspx

link|improve this answer
feedback

Take a look at http://stackoverflow.com/questions/127318/ which asked for a sed equivalent under Windows, should apply to this question as well. Executive summary:

  • It can be done in batch file, but it's not pretty
  • Lots of available third party executables that will do it for you, if you have the luxury of installing or just copying over an exe
  • Can be done with VBScript or similar if you need something able to run on a Windows box without modification etc.
link|improve this answer
feedback

I have used perl, and that works marvelously.

perl -pi.orig -e "s/<textToReplace>/<textToReplaceWith>/g;" <fileName>

.orig is the extension it would append to the original file

For a number of files matching such as *.html

for %x in (<filePattern>) do perl -pi.orig -e "s/<textToReplace>/<textToReplaceWith>/g;" %x
link|improve this answer
feedback

When I was looking for a similar tool for my own usage, I found many of the tools lacking. So I wrote yet another one and made it open source. http://findandreplace.codeplex.com/

The main difference with other tools is that you can easily generate a command line using windows dialog and test it through regular UI before running find/replace in DOS or in batch file.

link|improve this answer
feedback

Download Cygwin (free) and use unix-like commands at the Windows command line.

Your best bet: sed

link|improve this answer
6  
Cygwin is evil. Don't install it. Better use UnixUtils mentioned below. – zedoo Oct 20 '10 at 8:15
10  
What's so evil about it? – jm. Oct 21 '10 at 23:34
feedback

I played around with some of the existing answers here and prefer my improved solution...

type test.txt | powershell -Command "$input | ForEach-Object { $_ -replace \"foo\", \"bar\" }"

or if you want to save the output again to a file...

type test.txt | powershell -Command "$input | ForEach-Object { $_ -replace \"foo\", \"bar\" }" > outputFile.txt

The benefit of this is that you can pipe in output from any program. Will look into using regular expressions with this too. Couldn't work out how to make it into a BAT file for easier use though... :-(

link|improve this answer
feedback

Power shell command works like a charm

(
test.txt | ForEach-Object { $_ -replace "foo", "bar" } | Set-Content test2.txt
)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.