]> git.ipfire.org Git - thirdparty/bash.git/blame - README
Imported from ../bash-2.03.tar.gz.
[thirdparty/bash.git] / README
CommitLineData
ccc6cda3
JA
1Introduction
2============
726f6388 3
b72432fd 4This is GNU Bash, version 2.03. 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
JA
53
54 bug-bash@prep.ai.mit.edu
55
56using the `bashbug' program that is built and installed at the same
57time as bash.
58
ccc6cda3 59The discussion list `bug-bash@prep.ai.mit.edu' often contains
d166f048
JA
60information about new ports of Bash, or discussions of new features or
61behavior changes that people would like. This mailing list is also
62available as a usenet newsgroup: gnu.bash.bug.
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',
67please send mail to bug-bash@prep.ai.mit.edu with the following
68information:
69
b72432fd 70 * the version number and release status of Bash (e.g., 2.01-release)
d166f048
JA
71 * the machine and OS that it is running on (look at the file
72 `.made' in the bash build directory)
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
JA
81If you would like to contact the Bash maintainers directly, send mail
82to bash-maintainers@prep.ai.mit.edu.
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
90chet@po.cwru.edu