sed - the stream editor

sed . . . the stream editor

Originally written and designed for Unix, sed has been ported to MS-DOS, Windows, OS/2, and other operating systems. Sed is a non-interactive editor that works from a command line; it's not a GUI Windows app. Sed changes blocks of text on the fly, without making you open up a screen, push a cursor around, and press DELETE or INSERT or ENTER or function keys.

"Hey," you might ask. "All word processors have a find-and-replace feature."

Not like this. Sed is extremely powerful, and you can do things in sed that you can't do in any standard word processor. And because sed is external to the word processor and comes with every Unix system in the world, once you learn sed you'll have a very handy tool in your toolkit, even if (like me) you rarely use Unix.

How it works: You feed sed a script of editing commands (like, "change every line that begins with a colon to such-and-such") and sed sends your revised text to the screen. To save the revisions on disk, use the redirection arrow, >newfile.txt. Sample syntax:

         sed "one-or-two-sed-commands" input.file >newfile.txt
         sed -f bigger_sed.script input.file >newfile.txt

This page is an attempt to collect my FAQ (Frequently Asked Questions) files and my favorite sed utilities and introductions for novices. The text files are for any sed user; the binaries are for DOS/Windows users.

March 2001 update: Precompiled binaries of ssed (super-sed) for Win32 are here. The "official" version of my sed pages is at North Park University. They are mirrored at Cornerstone, which is often up-to-date. The pages at North Park are always the most recent.



sed docs by Eric Pement
various sed websites


popular sed binaries for MS-DOS

All of these versions will run in a DOS window or in a full-screen DOS session under Microsoft Windows.

A Table of Differences among DOS versions of SED
This version of sed supports . . . . ssed gsed302.80 gsed302 gsed205 gsed103 hhsed sedmod
Win95 long filenames Y Y Y Y Y N
newlines in s/find/rep/ replacement text via \n Y Y N N Y Y Y
represent tabs by \t Y Y N N Y Y Y
"a append-on-same-line" (for a,i,c commands) Y Y N N N Y Y
interval expressions like \{m,n\} Y Y Y Y N N
ignore case /flag/i or switch (-i) Y Y Y N N N Y
hex code entry via \xHH Y Y N N Y Y N
unlimited line length or buffer size Y Y Y Y 64K 4K 4K
numeric argument flags in s/ubsti/tution/5 Y Y Y Y Y Y N
OR searches with \|, like /this\|or\|this/ Y Y Y Y Y N N
periodic line matching with M~N Y Y Y Y N N N
word arguments with $1, $2, ... $8, $9 N N N N N N Y
case change with \L, \l, \U, \u, \E, \e Y N N N N N Y
can run in MS-DOS mode, fully outside of Windows N Y Y N N Y

(¹) File SED15X.ZIP does not support Win95 long filenames. However, a version of SED15.EXE compiled with Mingw32 does support long filenames and is available here.
(²) Interval range of \{0,n\} not supported in sed15.
(³) sed15 will run in MS-DOS mode; the version compiled with Mingw32 will not.



mailing list for sed users

If you are interested in learning more about sed (its syntax, using regular expressions, etc.) you are welcome to subscribe to a sed-oriented mailing list. In fact, there are two mailing lists about sed: one in English named sed-users, moderated by Sven Guckes; and one in Portuguese named sed-BR, moderated by Aurelio Marinho Jargas. The average volume of mail for sed-users is about 10 messages a week.



related batch editing files
Console/command-line apps Windows apps

Thanks for visiting. Hope you found what you wanted!

Eric Pement, sed FAQ maintainer
home page: http://www.student.northpark.edu/pemente/

Last revised Mar. 23, 2001