• Home
Name Date Size #Lines LOC

..--

build-aux/03-May-2024-16,17013,919

doc/03-May-2024-12,86610,770

lib/03-May-2024-31,47321,503

m4/03-May-2024-8,1907,623

po/03-May-2024-18,79615,567

sed/03-May-2024-6,7085,065

testsuite/03-May-2024-16,48614,328

ABOUT-NLSD03-May-202478.7 KiB1,1121,065

AUTHORSD03-May-2024205 64

BUGSD03-May-20245.8 KiB134101

COPYINGD03-May-202434.2 KiB677553

COPYING.DOCD03-May-202422.4 KiB452373

ChangeLogD03-May-2024109.2 KiB3,1862,267

INSTALLD03-May-20249.3 KiB237179

Makefile.amD03-May-20242 KiB6033

Makefile.inD03-May-202435.5 KiB1,062978

NEWSD03-May-202417.9 KiB503345

READMED03-May-2024447 149

README-alphaD03-May-2024196 96

README.bootD03-May-20241.2 KiB2420

THANKSD03-May-20241.9 KiB5553

aclocal.m4D03-May-202434 KiB958865

autobootD03-May-202418 KiB653469

basicdefs.hD03-May-20245.4 KiB17496

bootstrap.shD03-May-20244.2 KiB14896

bootstrap.sh.inD03-May-20244.2 KiB14896

config_h.inD03-May-202423.1 KiB809573

configureD03-May-2024755.8 KiB29,14323,990

configure.acD03-May-20245 KiB177155

README

1This is the GNU implementation of sed, the Unix stream editor.
2
3See the NEWS file for a brief summary and the ChangeLog for
4more detailed descriptions of changes.
5
6See the file INSTALL for generic compilation and installation
7instructions.
8
9See the file BUGS for instructions about reporting bugs.
10
11The file README.boot gives instructions for making a "bootstrap"
12version of sed on systems which lack any pre-existing and working
13version of sed.
14

README-alpha

1This is an alpha version of GNU sed.  Please try it on a wide
2range of scripts (especially configure scripts) and submit
3bug reports to bonzini@gnu.org.
4
5Thanks,
6
7Paolo Bonzini
8GNU sed maintainer
9

README.boot

1Because a working sed is a prerequisite for running the ``configure''
2script, I have provided the script ``bootstrap.sh'' which will attempt
3to build a version of sed adequate for running ``configure''.  If it
4fails, edit the ``config.h'' file that was created according to the
5comments found therein, and then try running ``bootstrap.sh'' again.
6
7The bootstrap build is quite likely to babble on and on with
8various compiler warnings.  You may want to tell bootstrap.sh
9how to invoke your compiler with warnings disabled.  For example,
10with a Bourne-like shell and gcc one could use:
11  $ CC='gcc -w' sh bootstrap.sh
12or with a csh-like shell, one could try:
13  % env CC='gcc -w' sh bootstrap.sh
14
15Once you get a working version of sed, temporarily install sed/sed
16somewhere in your $PATH, and then really re-build the normal way
17(starting with ``sh configure''); the bootstrap version is almost
18certainly more crippled than it needs to be on your machine.
19
20I don't much care to hear about any bugs in ``bootstrap'' versions
21of sed beyond those which actually keep the ``bootstrap'' version from
22building, or sed's configure script from running properly.  I am
23especially uninterested in compiler warnings from the bootstrap build.
24