The GNU Bourne-Again Shell
Bash is an sh-compatible command interpreter that executes commands
read from standard input or from a file. Bash incorporates useful
features from the Korn and C shells (ksh and csh). Bash is intended to
be a conformant implementation of the IEEE Posix Shell and Tools
specification (IEEE Working Group 1003.2).
- Developed at Base:System
- Sources inherited from project openSUSE:Factory
-
8
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Leap:16.0:FactoryCandidates/bash && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
baselibs.conf | 0000000112 112 Bytes | |
bash-2.03-manual.patch | 0000001583 1.55 KB | |
bash-3.0-evalexp.patch | 0000000386 386 Bytes | |
bash-3.0-warn-locale.patch | 0000000850 850 Bytes | |
bash-3.2-printf.patch | 0000001041 1.02 KB | |
bash-4.0-setlocale.dif | 0000001154 1.13 KB | |
bash-4.1-bash.bashrc.dif | 0000002447 2.39 KB | |
bash-4.1-completion.dif | 0000000474 474 Bytes | |
bash-4.2-history-myown.dif.bz2 | 0000001468 1.43 KB | |
bash-4.2-nscdunmap.dif | 0000000959 959 Bytes | |
bash-4.3-2.4.4.patch | 0000003783 3.69 KB | |
bash-4.3-SJIS.patch | 0000008800 8.59 KB | |
bash-4.3-decl.patch | 0000000275 275 Bytes | |
bash-4.3-extra-import-func.patch | 0000003502 3.42 KB | |
bash-4.3-include-unistd.dif | 0000000260 260 Bytes | |
bash-4.3-loadables.dif | 0000002538 2.48 KB | |
bash-4.3-pathtemp.patch | 0000001908 1.86 KB | |
bash-4.3-perl522.patch | 0000000884 884 Bytes | |
bash-4.3-sigrestart.patch | 0000000952 952 Bytes | |
bash-4.3-winch.dif | 0000000479 479 Bytes | |
bash-5.2-patches.tar.bz2 | 0000030584 29.9 KB | |
bash-5.2.dif | 0000008330 8.13 KB | |
bash-5.2.tar.gz | 0010950833 10.4 MB | |
bash-5.2.tar.gz.sig | 0000000095 95 Bytes | |
bash-rpmlintrc | 0000000270 270 Bytes | |
bash.changes | 0000158028 154 KB | |
bash.keyring | 0000001440 1.41 KB | |
bash.spec | 0000019649 19.2 KB | |
dot.bashrc | 0000000604 604 Bytes | |
dot.profile | 0000000856 856 Bytes | |
get_version_number.sh | 0000001028 1 KB | |
man2html-no-timestamp.patch | 0000000427 427 Bytes | |
quotes-man2html.patch | 0000000593 593 Bytes | |
run-tests | 0000001904 1.86 KB |
Revision 188 (latest revision is 193)
Ana Guerrero (anag+factory)
accepted
request 1126551
from
Dr. Werner Fink (WernerFink)
(revision 188)
- Declare token YYEOF to be able to support older bison versions as well - Be sure to have a usable bison installed at build time - Add upstream patches * bash52-021 There is an off-by-one error that causes command substitutions to fail when they appear in a word expansion inside a here-document. * bash52-020 The parser did not allow `time' to appear as the first reserved word in a command substitution. * bash52-019 There are some cases where the shell reaped a background (asynchronous) job and would incorrectly try to set the terminal's process group back to the shell's. In these cases it never set the terminal process group to that jobs's process group initially, so resetting it is incorrect. * bash52-018 There are two problems with returning tokens to yyparse() when the shell encounters a syntax error or when it reads EOF. When reading a WORD token, the parser has to return the correct value to yyparse. Previous versions returned a value < 0, which the bash parser translated into YYERRCODE for bison, and in newer versions of bison, the appropriate reset actions didn't happen. We should return YYUNDEF, which bison uses for `invalid token'. Since we can return a token < 0 for both invalid tokens and EOF, the bash tokenizer needs to differentiate between those two cases. * bash52-017 In certain cases, using the `.' builtin in a subshell would optimize away the rest of the commands in the subshell.
Comments 0