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