up vote 3 down vote favorite
1
share [g+] share [fb]

I want to create a batch while which finds specific lines in a batch file and are able to edit these lines.

Example:

//TXT FILE//

ex1
ex2
ex3
ex4

i want to let the batch file find 'ex3' and edit this to 'ex5' to let it look like this:

ex1
ex2
ex5
ex4
link|improve this question

You haven't told us anything about your environment (are you using Windows, Linux, a Mac?). You haven't told us which tools you have at your disposal or are prepared to use. – Gav Jul 12 '09 at 8:49
it looks clear if i say ´BATCH´ – gdscei Jul 12 '09 at 9:14
feedback

5 Answers

up vote 3 down vote accepted

on a native Windows install, you can either use batch(cmd.exe) or vbscript without the need to get external tools. here's an example in vbscript

Set objFS = CreateObject("Scripting.FileSystemObject")
strFile = "c:\test\file.txt"
Set objFile = objFS.OpenTextFile(strFile)
Do Until objFile.AtEndOfStream
    strLine = objFile.ReadLine
    If InStr(strLine,"ex3")> 0 Then
    	strLine = Replace(strLine,"ex3","ex5")
    End If 
    WScript.Echo strLine
Loop

save as myreplace.vbs and on the command line

c:\test> cscript /nologo myreplace.vbs  > newfile
c:\test> ren newfile file.txt
link|improve this answer
Thanks a lot, Helps me! – gdscei Nov 10 '09 at 17:57
feedback

This is the kind of stuff sed was made for (of course, you need sed on your system for that).

sed 's/ex3/ex5/g' input.txt > output.txt

You will either need a Unix system or a Windows Cygwin kind of platform for this.
There is also GnuWin32 for sed. (GnuWin32 installation and usage).

link|improve this answer
this is too many stuff that i need. I want to set this public; so it should be done easily. – gdscei Jul 12 '09 at 8:30
feedback

There is no search and replace function or stream editing at the command line in XP or 2k3 (dont know about vista or beyond). So, you'll need to use a script like the one Ghostdog posted, or a search and replace capable tool like sed.

There is more than one way to do it, as this script shows:

  @echo off
        SETLOCAL=ENABLEDELAYEDEXPANSION

        rename text.file text.tmp
        for /f %%a in (text.tmp) do (
            set foo=%%a
            if !foo!==ex3 set foo=ex5
            echo !foo! >> text.file) 
    del text.tmp
link|improve this answer
feedback

ghostdog74's example provided the core of what I needed, since I've never written any vbs before and needed to do that. It's not perfect, but I fleshed out the example into a full script in case anyone finds it useful.

'ReplaceText.vbs

Option Explicit

Const ForAppending = 8
Const TristateFalse = 0 ' the value for ASCII
Const TempFilename = "C:\Temp\temp.txt"
Const Overwrite = True

Dim FileSystem
Dim Filename, OldText, NewText
Dim OriginalFile, TempFile, Line

If WScript.Arguments.Count = 3 Then
    Filename = WScript.Arguments.Item(0)
    OldText = WScript.Arguments.Item(1)
    NewText = WScript.Arguments.Item(2)
Else
    Wscript.Echo "Usage: ReplaceText.vbs <Filename> <OldText> <NewText>"
    Wscript.Quit
End If

Set FileSystem = CreateObject("Scripting.FileSystemObject")

If FileSystem.FileExists(TempFilename) Then
    FileSystem.DeleteFile TempFilename
End If

Set TempFile = FileSystem.CreateTextFile(TempFilename, Overwrite, TristateFalse)
Set OriginalFile = FileSystem.OpenTextFile(Filename)

Do Until OriginalFile.AtEndOfStream
    Line = OriginalFile.ReadLine

    If InStr(Line, OldText) > 0 Then
        Line = Replace(Line, OldText, NewText)
    End If 

    TempFile.WriteLine(Line)
Loop

OriginalFile.Close
TempFile.Close

FileSystem.DeleteFile Filename
FileSystem.MoveFile TempFilename, Filename

Wscript.Quit
link|improve this answer
feedback

You can always use "FAR" = "Find and Replace". It's written under java, so it works where Java works (pretty much everywhere). Works with directories and subdirectories, searches and replaces within files, also can renames them. Also can rename bulk files.Licence = free, for both individuals or comapnies. Very fast and maintained by the developer. Find it here: http://findandreplace.sourceforge.net/

Also you can use GrepWin. Works pretty much the same. You can find it here: http://tools.tortoisesvn.net/grepWin.html

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.