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.
feedback
|
|
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
| |||||||||||||||||
feedback
|
|
You could install Cygwin (http://www.cygwin.com/) and use sed from there. | |||
|
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 | ||||
|
feedback
|
|
You could try powershell. There are get-content and set-content commandlets build in that you could use. | |||||
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). | |||
|
feedback
|
|
There is Super Sed an enhanced version of sed. For Windows this is a standalone .exe, intended for running from the command line. | ||||
|
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):
And you run it like this:
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! | |||
|
feedback
|
|
You could look at GNU Tools, they provide (amongst other things) sed on windows. | |||
|
feedback
|
|
Today powershell saved me. For grep there is:
and for sed there is:
For more detail see Zain Naboulsis blog entry. | |||
|
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). | |||
|
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. | |||
|
feedback
|
|
This works on Vista Ultimate, not sure Pro. sed -f commandfilename.cmd file1 > file2 | |||
|
feedback
|
|
simply said you are talking about Perl or Python or even Parrot. It will take just time to realize it .. | ||||
|
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" | |||
|
feedback
|
|
MKS Toolkit provides a good list of *nix style utilities. www.mkssoftware.com/ | |||
|
feedback
|