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

I want to programmatically edit file content using windows command line (cmd.exe). In *nix there is sed for this tasks. Is there any usefull equivalent in windows?

Edit: I am looking for native command line solution.

link|improve this question

1  
What do you mean by "native" ??? Installable to work in cmd.exe, or to work without installation whatsoever? If the former, see GnuWin32 ref'd below; if the latter, no. No pre-installed native sed for windows. – Michael Paulukonis May 26 '09 at 13:10
1  
By native I meant solution which runs on all windows without installing additional stuff. – Jakub Šturc May 26 '09 at 17:34
feedback

17 Answers

up vote 22 down vote accepted

sed (and its ilk) are contained within several packages of Unix commands.

  • Cygwin works but is gigantic.
  • UnxUtils is much slimmer.
  • GnuWin32 is another port that works.
  • Another alternative is AT&T Research's UWIN system.
  • MSYS from MinGw is yet another option.

EDIT after re-reading "native" several times...

Okay, you could build something sed-like in vbscript. Below is a gross, off-the-cuff stab at it. Your command line would look like cscript sed.vbs s/(oldpat)/(newpat)/ <inpfile.txt >outfile.txt where oldpat and newpat are Microsoft vbscript regex patterns. Obviously i've only implemented the substitute command and assumed some things, but you could flesh it out to be smarter and understand more of the sed command-line.

Dim pat, patparts, rxp, inp
pat = WScript.Arguments(0)
patparts = Split(pat,"/")
Set rxp = new RegExp
rxp.Global = True
rxp.Multiline = False
rxp.Pattern = patparts(1)
Do While Not WScript.StdIn.AtEndOfStream
  inp = WScript.StdIn.ReadLine()
  WScript.Echo rxp.Replace(inp, patparts(2))
Loop
link|improve this answer
1  
This is not exactly what I want however I beleave that the dependency upon VBS is the most lightest solution. – Jakub Šturc Sep 24 '08 at 16:08
Anyway thank you a lot and all others for answers. – Jakub Šturc Sep 24 '08 at 16:16
1  
GnuWin32 is a native solution, if by native you mean designed to run in the "normal" windows environment (unlike CygWin). Give them a try, and you'll start expecting them to be on EVERY windows system you use. !!! – Michael Paulukonis May 26 '09 at 13:09
2  
Works for my case! Also, don't forget "//NoLogo" cscript option. – Marko Dumic Jun 21 '10 at 14:38
If this is "off-the-cuff", wonder what your other code looks like! Amazing, thanks. – Sabuncu Jul 14 '11 at 7:10
feedback

UnxUtils provides sed for Win32, as does GNUWin32.

link|improve this answer
feedback

You could install Cygwin (http://www.cygwin.com/) and use sed from there.

link|improve this answer
feedback

edlin or edit

plus there is Windows Services for Unix which comes with many unix tools for windows. http://technet.microsoft.com/en-us/interopmigration/bb380242.aspx

link|improve this answer
Both don't exist anymore on 64-bit versions of Windows. – Joey Apr 21 '10 at 8:51
feedback

You could try powershell. There are get-content and set-content commandlets build in that you could use.

link|improve this answer
1  
Those are probably the two things in PowerShell that contribute least to what sed does ;-). The -replace operator is probably a better suggestion. – Joey Apr 21 '10 at 8:51
feedback

I use Cygwin. I run into a lot of people that do not realize that if you put the Cygwin binaries on your PATH, you can use them from within the Windows Command shell. You do not have to run Cygwin's Bash.

You might also look into Windows Services for Unix available from Microsoft (but only on the Professional and above versions of Windows).

link|improve this answer
feedback

There is Super Sed an enhanced version of sed. For Windows this is a standalone .exe, intended for running from the command line.

link|improve this answer
feedback

If you don't want to install anything (I assume you want to add the script into some solution/program/etc that will be run in other machines), you could try creating a vbs script (lets say, 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.WriteLine strNewText
objFile.Close

And you run it like this:

cscript replace.vbs "C:\One.txt" "Robert" "Rob"

Which is similar to the sed version provided by "bill weaver", but I think this one is more friendly in terms of special (' > < / ) characters.

Btw, I didn't write this, but I can't recall where I got it from.

Hope it helps!

link|improve this answer
feedback

You could look at GNU Tools, they provide (amongst other things) sed on windows.

link|improve this answer
feedback

Today powershell saved me.

For grep there is:

get-content somefile.txt | where { $_ -match "expression"}

and for sed there is:

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

For more detail see Zain Naboulsis blog entry.

link|improve this answer
feedback

You could use cygwin?

link|improve this answer
feedback

Cygwin works, but these utilities are also available. Just plop them on your drive, put the directory into your path, and you have many of your friendly unix utilities. Lighterweight IMHO that Cygwin (although that works just as well).

link|improve this answer
feedback

As far as I know nothing like sed is bundled with windows. However, sed is available for Windows in several different forms, including as part of Cygwin, if you want a full POSIX subsystem, or as a Win32 native executable if you want to run just sed on the command line.

Sed for Windows (GnuWin32 Project)

If it needs to be native to Windows then the only other thing I can suggest would be to use a scripting language supported by Windows without add-ons, such as VBScript.

link|improve this answer
feedback

This works on Vista Ultimate, not sure Pro.

sed -f commandfilename.cmd file1 > file2

link|improve this answer
feedback

simply said you are talking about Perl or Python or even Parrot. It will take just time to realize it ..

link|improve this answer
feedback

For those of you that already have it installed, Visual Studio can do this. Open the files you want to search, Ctrl-Shift-H, and choose "All open documents"

link|improve this answer
feedback

MKS Toolkit provides a good list of *nix style utilities.

www.mkssoftware.com/

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.