]> git.ipfire.org Git - thirdparty/bash.git/blame - README
Imported from ../bash-3.2.48.tar.gz.
[thirdparty/bash.git] / README
CommitLineData
ccc6cda3
JA
1Introduction
2============
726f6388 3
0628567a 4This is GNU Bash, version 3.2. Bash is the GNU Project's Bourne
ccc6cda3 5Again SHell, a complete implementation of the POSIX.2 shell spec,
726f6388 6but also with interactive command line editing, job control on
ccc6cda3
JA
7architectures that support it, csh-like features such as history
8substitution and brace expansion, and a slew of other features.
9For more information on the features of Bash that are new to this
d166f048
JA
10type of shell, see the file `doc/bashref.texi'. There is also a
11large Unix-style man page. The man page is the definitive description
12of the shell's features.
726f6388 13
b80f6443 14See the file POSIX for a discussion of how the Bash defaults differ
ccc6cda3 15from the POSIX.2 spec and a description of the Bash `posix mode'.
726f6388 16
ccc6cda3 17There are some user-visible incompatibilities between this version
0628567a
JA
18of Bash and previous widely-distributed versions, bash-1.14 and
19bash-2.05b. For details, see the file COMPAT. The NEWS file tersely
20lists features that are new in this release.
ccc6cda3 21
f73dda09
JA
22Bash is free software, distributed under the terms of the [GNU]
23General Public License, version 2. For more information, see the
24file COPYING.
ccc6cda3 25
d166f048
JA
26A number of frequently-asked questions are answered in the file
27`doc/FAQ'.
28
ccc6cda3
JA
29To compile Bash, try typing `./configure', then `make'. Bash
30auto-configures the build process, so no further intervention
31should be necessary. Bash builds with `gcc' by default if it is
32available. If you want to use `cc' instead, type
33
34 CC=cc ./configure
35
36if you are using a Bourne-style shell. If you are not, the following
37may work:
38
39 env CC=cc ./configure
40
41Read the file INSTALL in this directory for more information about how
42to customize and control the build process. The file NOTES contains
43platform-specific installation and configuration information.
726f6388
JA
44
45If you are a csh user and wish to convert your csh aliases to Bash
ccc6cda3 46aliases, you may wish to use the script `examples/misc/alias-conv.sh'
d166f048
JA
47as a starting point. The script `examples/misc/cshtobash' is a
48more ambitious script that attempts to do a more complete job.
726f6388 49
ccc6cda3
JA
50Reporting Bugs
51==============
52
b72432fd 53Bug reports for bash should be sent to:
726f6388 54
bb70624e 55 bug-bash@gnu.org
726f6388
JA
56
57using the `bashbug' program that is built and installed at the same
58time as bash.
59
bb70624e
JA
60The discussion list `bug-bash@gnu.org' often contains information
61about new ports of Bash, or discussions of new features or behavior
62changes that people would like. This mailing list is also available
63as a usenet newsgroup: gnu.bash.bug.
d166f048
JA
64
65When you send a bug report, please use the `bashbug' program that is
66built at the same time as bash. If bash fails to build, try building
67bashbug directly with `make bashbug'. If you cannot build `bashbug',
bb70624e 68please send mail to bug-bash@gnu.org with the following information:
d166f048 69
7117c2d2
JA
70 * the version number and release status of Bash (e.g., 2.05a-release)
71 * the machine and OS that it is running on (you may run
72 `bashversion -l' from the bash build directory for this information)
ccc6cda3
JA
73 * a list of the compilation flags or the contents of `config.h', if
74 appropriate
726f6388
JA
75 * a description of the bug
76 * a recipe for recreating the bug reliably
77 * a fix for the bug if you have one!
78
79The `bashbug' program includes much of this automatically.
80
d166f048 81If you would like to contact the Bash maintainers directly, send mail
bb70624e 82to bash-maintainers@gnu.org.
ccc6cda3 83
726f6388
JA
84While the Bash maintainers do not promise to fix all bugs, we would
85like this shell to be the best that we can make it.
86
87Enjoy!
88
89Chet Ramey
0628567a 90chet.ramey@case.edu