|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| build-aux/ | | 03-May-2024 | - | 16,170 | 13,919 |
| doc/ | | 03-May-2024 | - | 12,866 | 10,770 |
| lib/ | | 03-May-2024 | - | 31,473 | 21,503 |
| m4/ | | 03-May-2024 | - | 8,190 | 7,623 |
| po/ | | 03-May-2024 | - | 18,796 | 15,567 |
| sed/ | | 03-May-2024 | - | 6,708 | 5,065 |
| testsuite/ | | 03-May-2024 | - | 16,486 | 14,328 |
| ABOUT-NLS | D | 03-May-2024 | 78.7 KiB | 1,112 | 1,065 |
| AUTHORS | D | 03-May-2024 | 205 | 6 | 4 |
| BUGS | D | 03-May-2024 | 5.8 KiB | 134 | 101 |
| COPYING | D | 03-May-2024 | 34.2 KiB | 677 | 553 |
| COPYING.DOC | D | 03-May-2024 | 22.4 KiB | 452 | 373 |
| ChangeLog | D | 03-May-2024 | 109.2 KiB | 3,186 | 2,267 |
| INSTALL | D | 03-May-2024 | 9.3 KiB | 237 | 179 |
| Makefile.am | D | 03-May-2024 | 2 KiB | 60 | 33 |
| Makefile.in | D | 03-May-2024 | 35.5 KiB | 1,062 | 978 |
| NEWS | D | 03-May-2024 | 17.9 KiB | 503 | 345 |
| README | D | 03-May-2024 | 447 | 14 | 9 |
| README-alpha | D | 03-May-2024 | 196 | 9 | 6 |
| README.boot | D | 03-May-2024 | 1.2 KiB | 24 | 20 |
| THANKS | D | 03-May-2024 | 1.9 KiB | 55 | 53 |
| aclocal.m4 | D | 03-May-2024 | 34 KiB | 958 | 865 |
| autoboot | D | 03-May-2024 | 18 KiB | 653 | 469 |
| basicdefs.h | D | 03-May-2024 | 5.4 KiB | 174 | 96 |
| bootstrap.sh | D | 03-May-2024 | 4.2 KiB | 148 | 96 |
| bootstrap.sh.in | D | 03-May-2024 | 4.2 KiB | 148 | 96 |
| config_h.in | D | 03-May-2024 | 23.1 KiB | 809 | 573 |
| configure | D | 03-May-2024 | 755.8 KiB | 29,143 | 23,990 |
| configure.ac | D | 03-May-2024 | 5 KiB | 177 | 155 |
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