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