]> git.ipfire.org Git - thirdparty/bash.git/blame - README
fix for SIGINT in sourced script
[thirdparty/bash.git] / README
CommitLineData
ccc6cda3
JA
1Introduction
2============
726f6388 3
a0c0a00f 4This is GNU Bash, version 4.4. Bash is the GNU Project's Bourne
495aee44 5Again SHell, a complete implementation of the POSIX 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
495aee44 15from the POSIX spec and a description of the Bash `posix mode'.
726f6388 16
ccc6cda3 17There are some user-visible incompatibilities between this version
a0c0a00f
CR
18of Bash and previous widely-distributed versions, bash-4.2 and
19bash-4.3. For details, see the file COMPAT. The NEWS file tersely
0628567a 20lists features that are new in this release.
ccc6cda3 21
3185942a
JA
22Bash is free software, distributed under the terms of the [GNU] General
23Public License as published by the Free Software Foundation,
24version 3 of the License (or any later version). For more information,
25see the file COPYING.
ccc6cda3 26
d166f048
JA
27A number of frequently-asked questions are answered in the file
28`doc/FAQ'.
29
495aee44
CR
30To compile Bash, type `./configure', then `make'. Bash auto-configures
31the build process, so no further intervention should be necessary. Bash
32builds with `gcc' by default if it is available. If you want to use `cc'
33instead, type
ccc6cda3
JA
34
35 CC=cc ./configure
36
37if you are using a Bourne-style shell. If you are not, the following
38may work:
39
40 env CC=cc ./configure
41
42Read the file INSTALL in this directory for more information about how
43to customize and control the build process. The file NOTES contains
44platform-specific installation and configuration information.
726f6388
JA
45
46If you are a csh user and wish to convert your csh aliases to Bash
ccc6cda3 47aliases, you may wish to use the script `examples/misc/alias-conv.sh'
d166f048
JA
48as a starting point. The script `examples/misc/cshtobash' is a
49more ambitious script that attempts to do a more complete job.
726f6388 50
ccc6cda3
JA
51Reporting Bugs
52==============
53
b72432fd 54Bug reports for bash should be sent to:
726f6388 55
bb70624e 56 bug-bash@gnu.org
726f6388
JA
57
58using the `bashbug' program that is built and installed at the same
59time as bash.
60
bb70624e
JA
61The discussion list `bug-bash@gnu.org' often contains information
62about new ports of Bash, or discussions of new features or behavior
63changes that people would like. This mailing list is also available
64as a usenet newsgroup: gnu.bash.bug.
d166f048
JA
65
66When you send a bug report, please use the `bashbug' program that is
67built at the same time as bash. If bash fails to build, try building
68bashbug directly with `make bashbug'. If you cannot build `bashbug',
bb70624e 69please send mail to bug-bash@gnu.org with the following information:
d166f048 70
7117c2d2
JA
71 * the version number and release status of Bash (e.g., 2.05a-release)
72 * the machine and OS that it is running on (you may run
73 `bashversion -l' from the bash build directory for this information)
ccc6cda3
JA
74 * a list of the compilation flags or the contents of `config.h', if
75 appropriate
726f6388
JA
76 * a description of the bug
77 * a recipe for recreating the bug reliably
78 * a fix for the bug if you have one!
79
80The `bashbug' program includes much of this automatically.
81
ac50fbac
CR
82Questions and requests for help with bash and bash programming may be
83sent to the help-bash@gnu.org mailing list.
84
d166f048 85If you would like to contact the Bash maintainers directly, send mail
bb70624e 86to bash-maintainers@gnu.org.
ccc6cda3 87
726f6388
JA
88While the Bash maintainers do not promise to fix all bugs, we would
89like this shell to be the best that we can make it.
90
91Enjoy!
92
93Chet Ramey
0628567a 94chet.ramey@case.edu
0001803f
CR
95
96Copying and distribution of this file, with or without modification,
97are permitted in any medium without royalty provided the copyright
98notice and this notice are preserved. This file is offered as-is,
99without any warranty.