Added gitignore entries needed to ignore derived objects generated from full build...
[bash.git] / NEWS
blob028ba42a70de70ae0d3c747cc55004230637c492
1 This is a terse description of the new features added to bash-4.2 since
2 the release of bash-4.1.  As always, the manual page (doc/bash.1) is
3 the place to look for complete descriptions.
5 1.  New Features in Bash
7 a.  `exec -a foo' now sets $0 to `foo' in an executable shell script without a
8     leading #!.
10 b.  Subshells begun to execute command substitutions or run shell functions or
11     builtins in subshells do not reset trap strings until a new trap is
12     specified.  This allows $(trap) to display the caller's traps and the
13     trap strings to persist until a new trap is set.
15 c.  `trap -p' will now show signals ignored at shell startup, though their
16     disposition still cannot be modified.
18 d.  $'...', echo, and printf understand \uXXXX and \UXXXXXXXX escape sequences.
20 e.  declare/typeset has a new `-g' option, which creates variables in the
21     global scope even when run in a shell function.
23 f.  test/[/[[ have a new -v variable unary operator, which returns success if
24     `variable' has been set.
26 g.  Posix parsing changes to allow `! time command' and multiple consecutive
27     instances of `!' (which toggle) and `time' (which have no cumulative
28     effect).
30 h.  Posix change to allow `time' as a command by itself to print the elapsed
31     user, system, and real times for the shell and its children.
33 j.  $((...)) is always parsed as an arithmetic expansion first, instead of as
34     a potential nested command substitution, as Posix requires.
36 k.  A new FUNCNEST variable to allow the user to control the maximum shell
37     function nesting (recursive execution) level.
39 l.  The mapfile builtin now supplies a third argument to the callback command:
40     the line about to be assigned to the supplied array index.
42 m.  The printf builtin has a new %(fmt)T specifier, which allows time values
43     to use strftime-like formatting.
45 n.  There is a new `compat41' shell option.
47 o.  The cd builtin has a new Posix-mandated `-e' option.
49 p.  Negative subscripts to indexed arrays, previously errors, now are treated
50     as offsets from the maximum assigned index + 1.
52 q.  Negative length specifications in the ${var:offset:length} expansion,
53     previously errors, are now treated as offsets from the end of the variable.
55 r.  Parsing change to allow `time -p --'.
57 s.  Posix-mode parsing change to not recognize `time' as a keyword if the
58     following token begins with a `-'.  This means no more Posix-mode
59     `time -p'.  Posix interpretation 267.
61 t.  There is a new `lastpipe' shell option that runs the last command of a
62     pipeline in the current shell context.  The lastpipe option has no
63     effect if job control is enabled.
65 u.  History expansion no longer expands the `$!' variable expansion.
67 v.  Posix mode shells no longer exit if a variable assignment error occurs
68     with an assignment preceding a command that is not a special builtin.
70 w.  Non-interactive mode shells exit if -u is enabled and an attempt is made
71     to use an unset variable with the % or # expansions, the `//', `^', or
72     `,' expansions, or the parameter length expansion.
74 x.  Posix-mode shells use the argument passed to `.' as-is if a $PATH search
75     fails, effectively searching the current directory.  Posix-2008 change.
77 2.  New Features in Readline
79 a.  The history library does not try to write the history filename in the
80     current directory if $HOME is unset.  This closes a potential security
81     problem if the application does not specify a history filename.
83 b.  New bindable variable `completion-display-width' to set the number of
84     columns used when displaying completions.
86 c.  New bindable variable `completion-case-map' to cause case-insensitive
87     completion to treat `-' and `_' as identical.
89 d.  There are new bindable vi-mode command names to avoid readline's case-
90     insensitive matching not allowing them to be bound separately.
92 e.  New bindable variable `menu-complete-display-prefix' causes the menu
93     completion code to display the common prefix of the possible completions
94     before cycling through the list, instead of after.
96 -------------------------------------------------------------------------------
97 This is a terse description of the new features added to bash-4.1 since
98 the release of bash-4.0.  As always, the manual page (doc/bash.1) is
99 the place to look for complete descriptions.
101 1.  New Features in Bash
103 a.  Here-documents within $(...) command substitutions may once more be
104     delimited by the closing right paren, instead of requiring a newline.
106 b.  Bash's file status checks (executable, readable, etc.) now take file
107     system ACLs into account on file systems that support them.
109 c.  Bash now passes environment variables with names that are not valid
110     shell variable names through into the environment passed to child
111     processes.
113 d.  The `execute-unix-command' readline function now attempts to clear and
114     reuse the current line rather than move to a new one after the command
115     executes.
117 e.  `printf -v' can now assign values to array indices.
119 f.  New `complete -E' and `compopt -E' options that work on the "empty"
120     completion: completion attempted on an empty command line.
122 g.  New complete/compgen/compopt -D option to define a `default' completion:
123     a completion to be invoked on command for which no completion has been
124     defined.  If this function returns 124, programmable completion is
125     attempted again, allowing a user to dynamically build a set of completions
126     as completion is attempted by having the default completion function
127     install individual completion functions each time it is invoked.
129 h.  When displaying associative arrays, subscripts are now quoted.
131 i.  Changes to dabbrev-expand to make it more `emacs-like': no space appended
132     after matches, completions are not sorted, and most recent history entries
133     are presented first.
135 j.  The [[ and (( commands are now subject to the setting of `set -e' and the
136     ERR trap.
138 k.  The source/. builtin now removes NUL bytes from the file before attempting
139     to parse commands.
141 l.  There is a new configuration option (in config-top.h) that forces bash to
142     forward all history entries to syslog.
144 m.  A new variable $BASHOPTS to export shell options settable using `shopt' to
145     child processes.
147 n.  There is a new confgure option that forces the extglob option to be
148     enabled by default.
150 o.  New variable $BASH_XTRACEFD; when set to an integer bash will write xtrace
151     output to that file descriptor.
153 p.  If the optional left-hand-side of a redirection is of the form {var}, the
154     shell assigns the file descriptor used to $var or uses $var as the file
155     descriptor to move or close, depending on the redirection operator.
157 q.  The < and > operators to the [[ conditional command now do string
158     comparison according to the current locale if the compatibility level
159     is greater than 40.
161 r.  Programmable completion now uses the completion for `b' instead of `a'
162     when completion is attempted on a line like: a $(b c.
164 s.  Force extglob on temporarily when parsing the pattern argument to
165     the == and != operators to the [[ command, for compatibility.
167 t.  Changed the behavior of interrupting the wait builtin when a SIGCHLD is
168     received and a trap on SIGCHLD is set to be Posix-mode only.
170 u.  The read builtin has a new `-N nchars' option, which reads exactly NCHARS
171     characters, ignoring delimiters like newline.
173 v.  The mapfile/readarray builtin no longer stores the commands it invokes via
174     callbacks in the history list.
176 w.  There is a new `compat40' shopt option.
178 2.  New Features in Readline
180 a.  New bindable function: menu-complete-backward.
182 b.  In the vi insertion keymap, C-n is now bound to menu-complete by default,
183     and C-p to menu-complete-backward.
185 c.  When in vi command mode, repeatedly hitting ESC now does nothing, even
186     when ESC introduces a bound key sequence.  This is closer to how
187     historical vi behaves.
189 d.  New bindable function: skip-csi-sequence.  Can be used as a default to
190     consume key sequences generated by keys like Home and End without having
191     to bind all keys.
193 e.  New application-settable function: rl_filename_rewrite_hook.  Can be used
194     to rewite or modify filenames read from the file system before they are
195     compared to the word to be completed.
197 f.  New bindable variable: skip-completed-text, active when completing in the
198     middle of a word.  If enabled, it means that characters in the completion
199     that match characters in the remainder of the word are "skipped" rather
200     than inserted into the line.
202 g.  The pre-readline-6.0 version of menu completion is available as
203     "old-menu-complete" for users who do not like the readline-6.0 version.
205 h.  New bindable variable: echo-control-characters.  If enabled, and the
206     tty ECHOCTL bit is set, controls the echoing of characters corresponding
207     to keyboard-generated signals.
209 i.  New bindable variable: enable-meta-key.  Controls whether or not readline
210     sends the smm/rmm sequences if the terminal indicates it has a meta key
211     that enables eight-bit characters.
213 -------------------------------------------------------------------------------
214 This is a terse description of the new features added to bash-4.0 since
215 the release of bash-3.2.  As always, the manual page (doc/bash.1) is
216 the place to look for complete descriptions.
218 1.  New Features in Bash
220 a.  When using substring expansion on the positional parameters, a starting
221     index of 0 now causes $0 to be prefixed to the list.
223 b.  The `help' builtin now prints its columns with entries sorted vertically
224     rather than horizontally.
226 c.  There is a new variable, $BASHPID, which always returns the process id of
227     the current shell.
229 d.  There is a new `autocd' option that, when enabled, causes bash to attempt
230     to `cd' to a directory name that is supplied as the first word of a
231     simple command.
233 e.  There is a new `checkjobs' option that causes the shell to check for and
234     report any running or stopped jobs at exit.
236 f.  The programmable completion code exports a new COMP_TYPE variable, set to
237     a character describing the type of completion being attempted.
239 g.  The programmable completion code exports a new COMP_KEY variable, set to
240     the character that caused the completion to be invoked (e.g., TAB).
242 h.  If creation of a child process fails due to insufficient resources, bash
243     will try again several times before reporting failure.
245 i.  The programmable completion code now uses the same set of characters as
246     readline when breaking the command line into a list of words.
248 j.  The block multiplier for the ulimit -c and -f options is now 512 when in
249     Posix mode, as Posix specifies.
251 k.  Changed the behavior of the read builtin to save any partial input received
252     in the specified variable when the read builtin times out.  This also
253     results in variables specified as arguments to read to be set to the empty
254     string when there is no input available.  When the read builtin times out,
255     it returns an exit status greater than 128.
257 l.  The shell now has the notion of a `compatibility level', controlled by
258     new variables settable by `shopt'.  Setting this variable currently
259     restores the bash-3.1 behavior when processing quoted strings on the rhs
260     of the `=~' operator to the `[[' command.
262 m.  The `ulimit' builtin now has new -b (socket buffer size) and -T (number
263     of threads) options.
265 n.  The -p option to `declare' now displays all variable values and attributes
266     (or function values and attributes if used with -f).
268 o.  There is a new `compopt' builtin that allows completion functions to modify
269     completion options for existing completions or the completion currently
270     being executed.
272 p.  The `read' builtin has a new -i option which inserts text into the reply
273     buffer when using readline.
275 q.  A new `-E' option to the complete builtin allows control of the default
276     behavior for completion on an empty line.
278 r.  There is now limited support for completing command name words containing
279     globbing characters.
281 s.  Changed format of internal help documentation for all builtins to roughly
282     follow man page format.
284 t.  The `help' builtin now has a new -d option, to display a short description,
285     and a -m option, to print help information in a man page-like format.
287 u.  There is a new `mapfile' builtin to populate an array with lines from a
288     given file.  The name `readarray' is a synonym.
290 v.  If a command is not found, the shell attempts to execute a shell function
291     named `command_not_found_handle', supplying the command words as the
292     function arguments.
294 w.  There is a new shell option: `globstar'.  When enabled, the globbing code
295     treats `**' specially -- it matches all directories (and files within
296     them, when appropriate) recursively.
298 x.  There is a new shell option: `dirspell'.  When enabled, the filename
299     completion code performs spelling correction on directory names during
300     completion.
302 y.  The `-t' option to the `read' builtin now supports fractional timeout
303     values.
305 z.  Brace expansion now allows zero-padding of expanded numeric values and
306     will add the proper number of zeroes to make sure all values contain the
307     same number of digits.
309 aa. There is a new bash-specific bindable readline function: `dabbrev-expand'.
310     It uses menu completion on a set of words taken from the history list.
312 bb. The command assigned to a key sequence with `bind -x' now sets two new
313     variables in the environment of the executed command:  READLINE_LINE_BUFFER
314     and READLINE_POINT.  The command can change the current readline line
315     and cursor position by modifying READLINE_LINE_BUFFER and READLINE_POINT,
316     respectively.
318 cc. There is a new &>> redirection operator, which appends the standard output
319     and standard error to the named file.
321 dd. The parser now understands `|&' as a synonym for `2>&1 |', which redirects
322     the standard error for a command through a pipe.
324 ee. The new `;&' case statement action list terminator causes execution to
325     continue with the action associated with the next pattern in the
326     statement rather than terminating the command.
328 ff. The new `;;&' case statement action list terminator causes the shell to
329     test the next set of patterns after completing execution of the current
330     action, rather than terminating the command.
332 gg. The shell understands a new variable: PROMPT_DIRTRIM.  When set to an
333     integer value greater than zero, prompt expansion of \w and \W  will
334     retain only that number of trailing pathname components and replace
335     the intervening characters with `...'.
337 hh. There are new case-modifying word expansions: uppercase (^[^]) and
338     lowercase (,[,]).  They can work on either the first character or
339     array element, or globally.  They accept an optional shell pattern
340     that determines which characters to modify.  There is an optionally-
341     configured feature to include capitalization operators.
343 ii. The shell provides associative array variables, with the appropriate
344     support to create, delete, assign values to, and expand them.
346 jj. The `declare' builtin now has new -l (convert value to lowercase upon
347     assignment) and -u (convert value to uppercase upon assignment) options.
348     There is an optionally-configurable -c option to capitalize a value at
349     assignment.
351 kk. There is a new `coproc' reserved word that specifies a coprocess: an
352     asynchronous command run with two pipes connected to the creating shell.
353     Coprocs can be named.  The input and output file descriptors and the
354     PID of the coprocess are available to the calling shell in variables
355     with coproc-specific names.
357 ll. A value of 0 for the -t option to `read' now returns success if there is
358     input available to be read from the specified file descriptor.
360 mm. CDPATH and GLOBIGNORE are ignored when the shell is running in privileged
361     mode.
363 nn. New bindable readline functions shell-forward-word and shell-backward-word,
364     which move forward and backward words delimited by shell metacharacters
365     and honor shell quoting.
367 oo.  New bindable readline functions shell-backward-kill-word and shell-kill-word
368     which kill words backward and forward, but use the same word boundaries
369     as shell-forward-word and shell-backward-word.
371 2.  New Features in Readline
373 a.  A new variable, rl_sort_completion_matches; allows applications to inhibit
374     match list sorting (but beware: some things don't work right if
375     applications do this).
377 b.  A new variable, rl_completion_invoking_key; allows applications to discover
378     the key that invoked rl_complete or rl_menu_complete.
380 c.  The functions rl_block_sigint and rl_release_sigint are now public and
381     available to calling applications who want to protect critical sections
382     (like redisplay).
384 d.  The functions rl_save_state and rl_restore_state are now public and
385     available to calling applications; documented rest of readline's state
386     flag values.
388 e.  A new user-settable variable, `history-size', allows setting the maximum
389     number of entries in the history list.
391 f.  There is a new implementation of menu completion, with several improvements
392     over the old; the most notable improvement is a better `completions
393     browsing' mode.
395 g.  The menu completion code now uses the rl_menu_completion_entry_function
396     variable, allowing applications to provide their own menu completion
397     generators.
399 h.  There is support for replacing a prefix  of a pathname with a `...' when
400     displaying possible completions.  This is controllable by setting the
401     `completion-prefix-display-length' variable.  Matches with a common prefix
402     longer than this value have the common prefix replaced with `...'.
404 i.  There is a new `revert-all-at-newline' variable.  If enabled, readline will
405     undo all outstanding changes to all history lines when `accept-line' is
406     executed.
408 j.  If the kernel supports it, readline displays special characters
409     corresponding to a keyboard-generated signal when the signal is received.
411 -------------------------------------------------------------------------------
412 This is a terse description of the new features added to bash-3.2 since
413 the release of bash-3.1.  As always, the manual page (doc/bash.1) is
414 the place to look for complete descriptions.
416 1.  New Features in Bash
418 a.  Changed the parameter pattern replacement functions to not anchor the
419     pattern at the beginning of the string if doing global replacement - that
420     combination doesn't make any sense.
422 b.  When running in `word expansion only' mode (--wordexp option), inhibit
423     process substitution.
425 c.  Loadable builtins now work on MacOS X 10.[34].
427 d.  Shells running in posix mode no longer set $HOME, as POSIX requires.
429 e.  The code that checks for binary files being executed as shell scripts now
430     checks only for NUL rather than any non-printing character.
432 f.  Quoting the string argument to the [[ command's  =~ operator now forces
433     string matching, as with the other pattern-matching operators.
435 2.  New Features in Readline
437 a.  Calling applications can now set the keyboard timeout to 0, allowing
438     poll-like behavior.
440 b.  The value of SYS_INPUTRC (configurable at compilation time) is now used as
441     the default last-ditch startup file.
443 c.  The history file reading functions now allow windows-like \r\n line
444     terminators.
446 -------------------------------------------------------------------------------
447 This is a terse description of the new features added to bash-3.1 since
448 the release of bash-3.0.  As always, the manual page (doc/bash.1) is
449 the place to look for complete descriptions.
451 1.  New Features in Bash
453 a.  Bash now understands LC_TIME as a special variable so that time display
454     tracks the current locale.
456 b.  BASH_ARGC, BASH_ARGV, BASH_SOURCE, and BASH_LINENO are no longer created
457     as `invisible' variables and may not be unset.
459 c.  In POSIX mode, if `xpg_echo' option is enabled, the `echo' builtin doesn't
460     try to interpret any options at all, as POSIX requires.
462 d.  The `bg' builtin now accepts multiple arguments, as POSIX seems to specify.
464 e.  Fixed vi-mode word completion and glob expansion to perform tilde
465     expansion.
467 f.  The `**' mathematic exponentiation operator is now right-associative.
469 g.  The `ulimit' builtin has new options: -i (max number of pending signals),
470     -q (max size of POSIX message queues), and -x (max number of file locks).
472 h.  A bare `%' once again expands to the current job when used as a job
473     specifier.
475 i.  The `+=' assignment operator (append to the value of a string or array) is
476     now supported for assignment statements and arguments to builtin commands
477     that accept assignment statements.
479 j.  BASH_COMMAND now preserves its value when a DEBUG trap is executed.
481 k.  The `gnu_errfmt' option is enabled automatically if the shell is running
482     in an emacs terminal window.
484 l.  New configuration option:  --single-help-strings.  Causes long help text
485     to be written as a single string; intended to ease translation.
487 m.  The COMP_WORDBREAKS variable now causes the list of word break characters
488     to be emptied when the variable is unset.
490 n.  An unquoted expansion of $* when $IFS is empty now causes the positional
491     parameters to be concatenated if the expansion doesn't undergo word
492     splitting.
494 o.  Bash now inherits $_ from the environment if it appears there at startup.
496 p.  New shell option: nocasematch.  If non-zero, shell pattern matching ignores
497     case when used by `case' and `[[' commands.
499 q.  The `printf' builtin takes a new option: -v var.  That causes the output
500     to be placed into var instead of on stdout.
502 r.  By default, the shell no longer reports processes dying from SIGPIPE.
504 s.  Bash now sets the extern variable `environ' to the export environment it
505     creates, so C library functions that call getenv() (and can't use the
506     shell-provided replacement) get current values of environment variables.
508 t.  A new configuration option, `--enable-strict-posix-default', which will
509     build bash to be POSIX conforming by default.
511 u.  If compiled for strict POSIX conformance, LINES and COLUMNS may now
512     override the true terminal size.
514 2.  New Features in Readline
516 a.  The key sequence sent by the keypad `delete' key is now automatically
517     bound to delete-char.
519 b.  A negative argument to menu-complete now cycles backward through the
520     completion list.
522 c.  A new bindable readline variable:  bind-tty-special-chars.  If non-zero,
523     readline will bind the terminal special characters to their readline
524     equivalents when it's called (on by default).
526 d.  New bindable command: vi-rubout.  Saves deleted text for possible
527     reinsertion, as with any vi-mode `text modification' command; `X' is bound
528     to this in vi command mode.
530 e.  A new external application-controllable variable that allows the LINES
531     and COLUMNS environment variables to set the window size regardless of
532     what the kernel returns: rl_prefer_env_winsize
534 -------------------------------------------------------------------------------
535 This is a terse description of the new features added to bash-3.0 since
536 the release of bash-2.05b.  As always, the manual page (doc/bash.1) is
537 the place to look for complete descriptions.
539 1.  New Features in Bash
541 a.  ANSI string expansion now implements the \x{hexdigits} escape.
543 b.  There is a new loadable `strftime' builtin.
545 c.  New variable, COMP_WORDBREAKS, which controls the readline completer's
546     idea of word break characters.
548 d.  The `type' builtin no longer reports on aliases unless alias expansion
549     will actually be performed.    
551 e.  HISTCONTROL is now a colon-separated list of values, which permits
552     more extensibility and backwards compatibility.
554 f.  HISTCONTROL may now include the `erasedups' option, which causes all lines
555     matching a line being added to be removed from the history list.
557 g.  `configure' has a new `--enable-multibyte' argument that permits multibyte
558     character support to be disabled even on systems that support it.
560 h.  New variables to support the bash debugger:  BASH_ARGC, BASH_ARGV,
561     BASH_SOURCE, BASH_LINENO, BASH_SUBSHELL, BASH_EXECUTION_STRING,
562     BASH_COMMAND
564 i.  FUNCNAME has been changed to support the debugger: it's now an array
565     variable.
567 j.  for, case, select, arithmetic commands now keep line number information
568     for the debugger.
570 k.  There is a new `RETURN' trap executed when a function or sourced script
571     returns (not inherited child processes; inherited by command substitution
572     if function tracing is enabled and the debugger is active).
574 l.  New invocation option:  --debugger.  Enables debugging and turns on new
575     `extdebug' shell option.
577 m.  New `functrace' and `errtrace' options to `set -o' cause DEBUG and ERR
578     traps, respectively, to be inherited by shell functions.  Equivalent to
579     `set -T' and `set -E' respectively.  The `functrace' option also controls
580     whether or not the DEBUG trap is inherited by sourced scripts.
582 n.  The DEBUG trap is run before binding the variable and running the action
583     list in a `for' command, binding the selection variable and running the
584     query in a `select' command, and before attempting a match in a `case'
585     command.
587 o.  New `--enable-debugger' option to `configure' to compile in the debugger
588     support code.
590 p.  `declare -F' now prints out extra line number and source file information
591     if the `extdebug' option is set.
593 q.  If `extdebug' is enabled, a non-zero return value from a DEBUG trap causes
594     the next command to be skipped, and a return value of 2 while in a
595     function or sourced script forces a `return'.
597 r.  New `caller' builtin to provide a call stack for the bash debugger.
599 s.  The DEBUG trap is run just before the first command in a function body is
600     executed, for the debugger.
602 t.  `for', `select', and `case' command heads are printed when `set -x' is
603     enabled.
605 u.  There is a new {x..y} brace expansion, which is shorthand for {x.x+1,
606     x+2,...,y}.  x and y can be integers or single characters; the sequence
607     may ascend or descend; the increment is always 1.
609 v.  New ksh93-like ${!array[@]} expansion, expands to all the keys (indices)
610     of array.
612 w.  New `force_fignore' shopt option; if enabled, suffixes specified by
613     FIGNORE cause words to be ignored when performing word completion even
614     if they're the only possibilities.
616 x.  New `gnu_errfmt' shopt option; if enabled, error messages follow the `gnu
617     style' (filename:lineno:message) format.
619 y.  New `-o bashdefault' option to complete and compgen; if set, causes the
620     whole set of bash completions to be performed if the compspec doesn't
621     result in a match.
623 z.  New `-o plusdirs' option to complete and compgen; if set, causes directory
624     name completion to be performed and the results added to the rest of the
625     possible completions.
627 aa. `kill' is available as a builtin even when the shell is built without
628     job control.
630 bb. New HISTTIMEFORMAT variable; value is a format string to pass to
631     strftime(3).  If set and not null, the `history' builtin prints out
632     timestamp information according to the specified format when displaying
633     history entries.  If set, bash tells the history library to write out
634     timestamp information when the history file is written.
636 cc. The [[ ... ]] command has a new binary `=~' operator that performs
637     extended regular expression (egrep-like) matching.
639 dd. `configure' has a new `--enable-cond-regexp' option (enabled by default)
640     to enable the =~ operator and regexp matching in [[ ... ]].
642 ee. Subexpressions matched by the =~ operator are placed in the new
643     BASH_REMATCH array variable.
645 ff. New `failglob' option that causes an expansion error when pathname
646     expansion fails to produce a match.
648 gg. New `set -o pipefail' option that causes a pipeline to return a failure
649     status if any of the processes in the pipeline fail, not just the last
650     one.
652 hh. printf builtin understands two new escape sequences:  \" and \?.
654 ii. `echo -e' understands two new escape sequences:  \" and \?.
656 jj. The GNU `gettext' package and libintl have been integrated; the shell's
657     messages can be translated into different languages.
659 kk. The `\W' prompt expansion now abbreviates $HOME as `~', like `\w'.
661 ll. The error message printed when bash cannot open a shell script supplied
662     as argument 1 now includes the name of the shell, to better identify
663     the error as coming from bash.
665 mm. The parameter pattern removal and substitution expansions are now much
666     faster and more efficient when using multibyte characters.
668 nn. The `jobs', `kill', and `wait' builtins now accept job control notation
669     even if job control is not enabled.
671 oo. The historical behavior of `trap' that allows a missing `action' argument
672     to cause each specified signal's handling to be reset to its default is
673     now only supported when `trap' is given a single non-option argument.
675 2.  New Features in Readline
677 a.  History expansion has a new `a' modifier equivalent to the `g' modifier
678     for compatibility with the BSD csh.
680 b.  History expansion has a new `G' modifier equivalent to the BSD csh `g'
681     modifier, which performs a substitution once per word.
683 c.  All non-incremental search operations may now undo the operation of
684     replacing the current line with the history line.
686 d.  The text inserted by an `a' command in vi mode can be reinserted with
687     `.'.
689 e.  New bindable variable, `show-all-if-unmodified'.  If set, the readline
690     completer will list possible completions immediately if there is more
691     than one completion and partial completion cannot be performed.
693 f.  There is a new application-callable `free_history_entry()' function.
695 g.  History list entries now contain timestamp information; the history file
696     functions know how to read and write timestamp information associated
697     with each entry.
699 h.  Four new key binding functions have been added:
701         rl_bind_key_if_unbound()
702         rl_bind_key_if_unbound_in_map()
703         rl_bind_keyseq_if_unbound()
704         rl_bind_keyseq_if_unbound_in_map()
706 i.  New application variable, rl_completion_quote_character, set to any
707     quote character readline finds before it calls the application completion
708     function.
710 j.  New application variable, rl_completion_suppress_quote, settable by an
711     application completion function.  If set to non-zero, readline does not
712     attempt to append a closing quote to a completed word.
714 k.  New application variable, rl_completion_found_quote, set to a non-zero
715     value if readline determines that the word to be completed is quoted.
716     Set before readline calls any application completion function.
718 l.  New function hook, rl_completion_word_break_hook, called when readline
719     needs to break a line into words when completion is attempted.  Allows
720     the word break characters to vary based on position in the line.
722 m.  New bindable command: unix-filename-rubout.  Does the same thing as
723     unix-word-rubout, but adds `/' to the set of word delimiters.
725 n.  When listing completions, directories have a `/' appended if the
726     `mark-directories' option has been enabled.
728 -------------------------------------------------------------------------------
729 This is a terse description of the new features added to bash-2.05b since
730 the release of bash-2.05a.  As always, the manual page (doc/bash.1) is
731 the place to look for complete descriptions.
733 1.  New Features in Bash
735 a.  If set, TMOUT is the default timeout for the `read' builtin.
737 b.  `type' has two new options:  `-f' suppresses shell function lookup, and
738     `-P' forces a $PATH search.
740 c.  New code to handle multibyte characters.
742 d.  `select' was changed to be more ksh-compatible, in that the menu is
743     reprinted each time through the loop only if REPLY is set to NULL.
744     The previous behavior is available as a compile-time option.
746 e.  `complete -d' and `complete -o dirnames' now force a slash to be
747     appended to names which are symlinks to directories.
749 f.  There is now a bindable edit-and-execute-command readline command,
750     like the vi-mode `v' command, bound to C-xC-e in emacs mode.
752 g.  Added support for ksh93-like [:word:] character class in pattern matching.
754 h.  The  $'...' quoting construct now expands \cX to Control-X.
756 i.  A new \D{...} prompt expansion; passes the `...' to strftime and inserts
757     the result into the expanded prompt.
759 j.  The shell now performs arithmetic in the largest integer size the
760     machine supports (intmax_t), instead of long.
762 k.  If a numeric argument is supplied to one of the bash globbing completion
763     functions, a `*' is appended to the word before expansion is attempted.
765 l.  The bash globbing completion functions now allow completions to be listed
766     with double tabs or if `show-all-if-ambiguous' is set.
768 m.  New `-o nospace' option for `complete' and `compgen' builtins; suppresses
769     readline's appending a space to the completed word.
771 n.  New `here-string' redirection operator:  <<< word.
773 o.  When displaying variables, function attributes and definitions are shown
774     separately, allowing them to be re-used as input (attempting to re-use
775     the old output would result in syntax errors).
777 p.  There is a new configuration option `--enable-mem-scramble', controls
778     bash malloc behavior of writing garbage characters into memory at
779     allocation and free time.
781 q.  The `complete' and `compgen' builtins now have a new `-s/-A service'
782     option to complete on names from /etc/services.
784 r.  `read' has a new `-u fd' option to read from a specified file descriptor.
786 s.  Fix the completion code so that expansion errors in a directory name
787     don't cause a longjmp back to the command loop.
789 t.  Fixed word completion inside command substitution to work a little more
790     intuitively.
792 u.  The `printf' %q format specifier now uses $'...' quoting to print the
793     argument if it contains non-printing characters.
795 v.  The `declare' and `typeset' builtins have a new `-t' option.  When applied
796     to functions, it causes the DEBUG trap to be inherited by the named
797     function.  Currently has no effect on variables.
799 w.  The DEBUG trap is now run *before* simple commands, ((...)) commands,
800     [[...]] conditional commands, and for ((...)) loops.
802 x.  The expansion of $LINENO inside a shell function is only relative to the
803     function start if the shell is interactive -- if the shell is running a
804     script, $LINENO expands to the line number in the script.  This is as
805     POSIX-2001 requires.
807 y.  The bash debugger in examples/bashdb has been modified to work with the
808     new DEBUG trap semantics, the command set has been made more gdb-like,
809     and the changes to $LINENO make debugging functions work better.  Code
810     from Gary Vaughan.
812 z.  New [n]<&word- and [n]>&word- redirections from ksh93 -- move fds (dup
813     and close).
815 aa. There is a new `-l' invocation option, equivalent to `--login'.
817 bb. The `hash' builtin has a new `-l' option to list contents in a reusable
818     format, and a `-d' option to remove a name from the hash table.
820 cc. There is now support for placing the long help text into separate files 
821     installed into ${datadir}/bash.  Not enabled by default; can be turned  
822     on with `--enable-separate-helpfiles' option to configure.
823     
824 dd. All builtins that take operands accept a `--' pseudo-option, except
825     `echo'.
827 ee. The `echo' builtin now accepts \0xxx (zero to three octal digits following
828     the `0') in addition to \xxx (one to three octal digits) for SUSv3/XPG6/
829     POSIX.1-2001 compliance.
832 2.  New Features in Readline
834 a.  Support for key `subsequences':  allows, e.g., ESC and ESC-a to both
835     be bound to readline functions.  Now the arrow keys may be used in vi
836     insert mode.
838 b.  When listing completions, and the number of lines displayed is more than
839     the screen length, readline uses an internal pager to display the results.
840     This is controlled by the `page-completions' variable (default on).
842 c.  New code to handle editing and displaying multibyte characters.
844 d.  The behavior introduced in bash-2.05a of deciding whether or not to
845     append a slash to a completed name that is a symlink to a directory has
846     been made optional, controlled by the `mark-symlinked-directories'
847     variable (default is the 2.05a behavior).
849 e.  The `insert-comment' command now acts as a toggle if given a numeric
850     argument:  if the first characters on the line don't specify a
851     comment, insert one; if they do, delete the comment text
853 f.  New application-settable completion variable:
854     rl_completion_mark_symlink_dirs, allows an application's completion
855     function to temporarily override the user's preference for appending
856     slashes to names which are symlinks to directories.
858 g.  New function available to application completion functions:
859     rl_completion_mode, to tell how the completion function was invoked
860     and decide which argument to supply to rl_complete_internal (to list
861     completions, etc.).
863 h.  Readline now has an overwrite mode, toggled by the `overwrite-mode'
864     bindable command, which could be bound to `Insert'.
866 i.  New application-settable completion variable:
867     rl_completion_suppress_append, inhibits appending of
868     rl_completion_append_character to completed words.
870 j.  New key bindings when reading an incremental search string:  ^W yanks
871     the currently-matched word out of the current line into the search
872     string; ^Y yanks the rest of the current line into the search string,
873     DEL or ^H deletes characters from the search string.
875 -------------------------------------------------------------------------------
876 This is a terse description of the new features added to bash-2.05a since
877 the release of bash-2.05.  As always, the manual page (doc/bash.1) is
878 the place to look for complete descriptions.
880 1.  New Features in Bash
882 a.  Added support for DESTDIR installation root prefix, so you can do a
883     `make install DESTDIR=bash-root' and do easier binary packaging.
885 b.  Added support for builtin printf "'" flag character as per latest POSIX
886     drafts.
888 c.  Support for POSIX.2 printf(1) length specifiers `j', `t', and `z' (from
889     ISO C99).
891 d.  New autoconf macro, RL_LIB_READLINE_VERSION, for use by other applications
892     (bash doesn't use very much of what it returns).
894 e.  `set [-+]o nolog' is recognized as required by the latest POSIX drafts,
895     but ignored.
897 f.  New read-only `shopt' option:  login_shell.  Set to non-zero value if the
898     shell is a login shell.
900 g.  New `\A' prompt string escape sequence; expands to time in 24 HH:MM format.
902 h.  New `-A group/-g' option to complete and compgen; does group name
903     completion.
905 i.  New `-t' option to `hash' to list hash values for each filename argument.
907 j.  New [-+]O invocation option to set and unset `shopt' options at startup.
909 k.  configure's `--with-installed-readline' option now takes an optional
910     `=PATH' suffix to set the root of the tree where readline is installed
911     to PATH.
913 l.  The ksh-like `ERR' trap has been added.  The `ERR' trap will be run
914     whenever the shell would have exited if the -e option were enabled.
915     It is not inherited by shell functions.
917 m.  `readonly', `export', and `declare' now print variables which have been
918     given attributes but not set by assigning a value as just a command and
919     a variable name (like `export foo') when listing, as the latest POSIX
920     drafts require.
922 n.  `bashbug' now requires that the subject be changed from the default.
924 o.  configure has a new `--enable-largefile' option, like other GNU utilities.
926 p.  `for' loops now allow empty word lists after `in', like the latest POSIX
927     drafts require.
929 q.  The builtin `ulimit' now takes two new non-numeric arguments:  `hard',
930     meaning the current hard limit, and `soft', meaning the current soft  
931     limit, in addition to `unlimited'
932     
933 r.  `ulimit' now prints the option letter associated with a particular
934     resource when printing more than one limit.
936 s.  `ulimit' prints `hard' or `soft' when a value is not `unlimited' but is
937     one of RLIM_SAVED_MAX or RLIM_SAVED_CUR, respectively.
939 t.  The `printf' builtin now handles the %a and %A conversions if they're
940     implemented by printf(3).
942 u.  The `printf' builtin now handles the %F conversion (just about like %f).
944 v.  The `printf' builtin now handles the %n conversion like printf(3).  The
945     corresponding argument is the name of a shell variable to which the
946     value is assigned.
948 2.  New Features in Readline
950 a.  Added extern declaration for rl_get_termcap to readline.h, making it a
951     public function (it was always there, just not in readline.h).
953 b.  New #defines in readline.h:  RL_READLINE_VERSION, currently 0x0402,
954     RL_VERSION_MAJOR, currently 4, and RL_VERSION_MINOR, currently 2.
956 c.  New readline variable:  rl_readline_version, mirrors RL_READLINE_VERSION.
958 d.  New bindable boolean readline variable:  match-hidden-files.  Controls
959     completion of files beginning with a `.' (on Unix).  Enabled by default.
961 e.  The history expansion code now allows any character to terminate a
962     `:first-' modifier, like csh.
964 f.  New bindable variable `history-preserve-point'.  If set, the history
965     code attempts to place the user at the same location on each history
966     line retrived with previous-history or next-history.
968 -------------------------------------------------------------------------------
969 This is a terse description of the new features added to bash-2.05 since
970 the release of bash-2.04.  As always, the manual page (doc/bash.1) is
971 the place to look for complete descriptions.
973 1.  New Features in Bash
975 a.  Added a new `--init-file' invocation argument as a synonym for `--rcfile',
976     per the new GNU coding standards.
978 b.  The /dev/tcp and /dev/udp redirections now accept service names as well as
979     port numbers.
981 c.  `complete' and `compgen' now take a `-o value' option, which controls some
982     of the aspects of that compspec.  Valid values are:
984         default - perform bash default completion if programmable
985                   completion produces no matches
986         dirnames - perform directory name completion if programmable
987                    completion produces no matches
988         filenames - tell readline that the compspec produces filenames,
989                     so it can do things like append slashes to
990                     directory names and suppress trailing spaces
992 d.  A new loadable builtin, realpath, which canonicalizes and expands symlinks
993     in pathname arguments.
994     
995 e.  When `set' is called without options, it prints function defintions in a
996     way that allows them to be reused as input.  This affects `declare' and 
997     `declare -p' as well.  This only happens when the shell is not in POSIX
998     mode, since POSIX.2 forbids this behavior.
1000 f.  Bash-2.05 once again honors the current locale setting when processing
1001     ranges within pattern matching bracket expressions (e.g., [A-Z]).
1003 2.  New Features in Readline
1005 a.  The blink timeout for paren matching is now settable by applications,
1006     via the rl_set_paren_blink_timeout() function.
1008 b.  _rl_executing_macro has been renamed to rl_executing_macro, which means
1009     it's now part of the public interface.
1011 c.  Readline has a new variable, rl_readline_state, which is a bitmap that
1012     encapsulates the current state of the library; intended for use by
1013     callbacks and hook functions.
1015 d.  New application-callable function rl_set_prompt(const char *prompt):
1016     expands its prompt string argument and sets rl_prompt to the result.
1018 e.  New application-callable function rl_set_screen_size(int rows, int cols):
1019     public method for applications to set readline's idea of the screen
1020     dimensions.
1022 f.  New function, rl_get_screen_size (int *rows, int *columns), returns
1023     readline's idea of the screen dimensions.
1025 g.  The timeout in rl_gather_tyi (readline keyboard input polling function)
1026     is now settable via a function (rl_set_keyboard_input_timeout()).
1028 h.  Renamed the max_input_history variable to history_max_entries; the old
1029     variable is maintained for backwards compatibility.
1031 i.  The list of characters that separate words for the history tokenizer is
1032     now settable with a variable:  history_word_delimiters.  The default
1033     value is as before.
1035 -------------------------------------------------------------------------------
1036 This is a terse description of the new features added to bash-2.04 since
1037 the release of bash-2.03.  As always, the manual page (doc/bash.1) is
1038 the place to look for complete descriptions.
1040 1.  New Features in Bash
1042 a.  The history builtin has a `-d offset' option to delete the history entry
1043     at position `offset'.
1045 b.  The prompt expansion code has two new escape sequences: \j, the number of
1046     active jobs; and \l, the basename of the shell's tty device name.
1048 c.  The `bind' builtin has a new `-x' option to bind key sequences to shell   
1049     commands.
1051 d.  There is a new shell option, no_empty_command_completion, which, when
1052     enabled, disables command completion when TAB is typed on an empty line.
1054 e.  The `help' builtin has a `-s' option to just print a builtin's usage
1055     synopsis.
1057 f.  There are several new arithmetic operators:  id++, id-- (variable
1058     post-increment/decrement), ++id, --id (variable pre-increment/decrement),
1059     expr1 , expr2 (comma operator).
1061 g.  There is a new ksh-93 style arithmetic for command:
1062         for ((expr1 ; expr2; expr3 )); do list; done
1064 h.  The `read' builtin has a number of new options:
1065         -t timeout      only wait timeout seconds for input
1066         -n nchars       only read nchars from input instead of a full line
1067         -d delim        read until delim rather than newline
1068         -s              don't echo input chars as they are read
1070 i.  The redirection code now handles several filenames specially:
1071     /dev/fd/N, /dev/stdin, /dev/stdout, and /dev/stderr, whether or
1072     not they are present in the file system.
1074 j.  The redirection code now recognizes pathnames of the form
1075     /dev/tcp/host/port and /dev/udp/host/port, and tries to open a socket
1076     of the appropriate type to the specified port on the specified host.
1078 k.  The ksh-93 ${!prefix*} expansion, which expands to the names of all
1079     shell variables with prefix PREFIX, has been implemented.
1081 l.  There is a new dynamic variable, FUNCNAME, which expands to the name of
1082     a currently-executing function.  Assignments to FUNCNAME have no effect.
1084 m.  The GROUPS variable is no longer readonly; assignments to it are silently
1085     discarded.  This means it can be unset.
1087 n.  A new programmable completion facility, with two new builtin commands:
1088     complete and compgen.
1090 o.  configure has a new option, `--enable-progcomp', to compile in the
1091     programmable completion features (enabled by default).
1093 p.  `shopt' has a new option, `progcomp', to enable and disable programmable
1094     completion at runtime.
1096 q.  Unsetting HOSTFILE now clears the list of hostnames used for completion.
1098 r.  configure has a new option, `--enable-bash-malloc', replacing the old
1099     `--with-gnu-malloc' (which is still present for backwards compatibility).
1101 s.  There is a new manual page describing rbash, the restricted shell.
1103 t.  `bashbug' has new `--help' and `--version' options.
1105 u.  `shopt' has a new `xpg_echo' option, which controls the behavior of
1106     `echo' with respect to backslash-escaped characters at runtime.
1108 v.  If NON_INTERACTIVE_LOGIN_SHELLS is defined, all login shells read the
1109     startup files, even if they are not interactive.
1111 w.  The LC_NUMERIC variable is now treated specially, and used to set the
1112     LC_NUMERIC locale category for number formatting, e.g., when `printf'
1113     displays floating-point numbers.
1115 2.  New features in Readline
1117 a.  Parentheses matching is now always compiled into readline, and enabled
1118     or disabled when the value of the `blink-matching-paren' variable is
1119     changed.
1121 b.  MS-DOS systems now use ~/_inputrc as the last-ditch inputrc filename.
1123 c.  MS-DOS systems now use ~/_history as the default history file.
1125 d.  history-search-{forward,backward} now leave the point at the end of the
1126     line when the string to search for is empty, like
1127     {reverse,forward}-search-history.
1129 e.  history-search-{forward,backward} now leave the last history line found
1130     in the readline buffer if the second or subsequent search fails.
1132 f.  New function for use by applications:  rl_on_new_line_with_prompt, used
1133     when an application displays the prompt itself before calling readline().
1135 g.  New variable for use by applications:  rl_already_prompted.  An application
1136     that displays the prompt itself before calling readline() must set this to
1137     a non-zero value.
1139 h.  A new variable, rl_gnu_readline_p, always 1.  The intent is that an
1140     application can verify whether or not it is linked with the `real'
1141     readline library or some substitute.
1143 -------------------------------------------------------------------------------
1144 This is a terse description of the new features added to bash-2.03 since
1145 the release of bash-2.02.  As always, the manual page (doc/bash.1) is
1146 the place to look for complete descriptions.
1148 1.  New Features in Bash
1150 a.  New `shopt' option, `restricted_shell', indicating whether or not the
1151     shell was started in restricted mode, for use in startup files.
1153 b.  Filename generation is now performed on the words between ( and ) in
1154     array assignments (which it probably should have done all along).
1156 c.  OLDPWD is now auto-exported, as POSIX.2 seems to require.
1158 d.  ENV and BASH_ENV are read-only variables in a restricted shell.
1160 e.  A change was made to the startup file code so that any shell begun with
1161     the `--login' option, even non-interactive shells, will source the login
1162     shell startup files.
1164 2.  New Features in Readline
1166 a.  Many changes to the signal handling:
1167         o Readline now catches SIGQUIT and cleans up the tty before returning;
1168         o A new variable, rl_catch_signals, is available to application writers 
1169           to indicate to readline whether or not it should install its own
1170           signal handlers for SIGINT, SIGTERM, SIGQUIT, SIGALRM, SIGTSTP,
1171           SIGTTIN, and SIGTTOU;
1172         o A new variable, rl_catch_sigwinch, is available to application
1173           writers to indicate to readline whether or not it should install its
1174           own signal handler for SIGWINCH, which will chain to the calling
1175           applications's SIGWINCH handler, if one is installed;
1176         o There is a new function, rl_free_line_state, for application signal
1177           handlers to call to free up the state associated with the current
1178           line after receiving a signal;
1179         o There is a new function, rl_cleanup_after_signal, to clean up the
1180           display and terminal state after receiving a signal;
1181         o There is a new function, rl_reset_after_signal, to reinitialize the
1182           terminal and display state after an application signal handler
1183           returns and readline continues
1185 b.  There is a new function, rl_resize_terminal, to reset readline's idea of
1186     the screen size after a SIGWINCH.
1188 c.  New public functions: rl_save_prompt and rl_restore_prompt.  These were
1189     previously private functions with a `_' prefix.
1191 d.  New function hook: rl_pre_input_hook, called just before readline starts
1192     reading input, after initialization.
1194 e.  New function hook: rl_display_matches_hook, called when readline would
1195     display the list of completion matches.  The new function
1196     rl_display_match_list is what readline uses internally, and is available
1197     for use by application functions called via this hook.
1199 f.  New bindable function, delete-char-or-list, like tcsh.
1201 g.  A new variable, rl_erase_empty_line, which, if set by an application using
1202     readline, will cause readline to erase, prompt and all, lines on which the
1203     only thing typed was a newline.
1205 h.  New bindable variable: `isearch-terminators'.
1207 i.  New bindable function: `forward-backward-delete-char' (unbound by default).
1209 -------------------------------------------------------------------------------
1210 This is a terse description of the new features added to bash-2.02 since
1211 the release of bash-2.01.1.  As always, the manual page (doc/bash.1) is
1212 the place to look for complete descriptions.
1214 1. New Features in Bash
1216 a.  A new version of malloc, based on the older GNU malloc, that has many
1217     changes, is more page-based, is more conservative with memory usage,
1218     and does not `orphan' large blocks when they are freed.
1220 b.  A new version of gmalloc, based on the old GLIBC malloc, with many
1221     changes and range checking included by default.
1223 c.  A new implementation of fnmatch(3) that includes full POSIX.2 Basic
1224     Regular Expression matching, including character classes, collating
1225     symbols, equivalence classes, and support for case-insensitive pattern
1226     matching.
1228 d.  ksh-88 egrep-style extended pattern matching ([@+*?!](patlist)) has been
1229     implemented, controlled by a new `shopt' option, `extglob'.  
1230     
1231 e.  There is a new ksh-like `[[' compound command, which implements   
1232     extended `test' functionality.
1233     
1234 f.  There is a new `printf' builtin, implemented according to the POSIX.2
1235     specification.
1236     
1237 g.  There is a new feature for command substitution: $(< filename) now expands
1238     to the contents of `filename', with any trailing newlines removed
1239     (equivalent to $(cat filename)).
1241 h.  There are new tilde prefixes which expand to directories from the
1242     directory stack.
1244 i.  There is a new `**' arithmetic operator to do exponentiation.
1246 j.  There are new configuration options to control how bash is linked:
1247     `--enable-profiling', to allow bash to be profiled with gprof, and
1248     `--enable-static-link', to allow bash to be linked statically.
1250 k.  There is a new configuration option, `--enable-cond-command', which
1251     controls whether or not the `[[' command is included.  It is on by
1252     default. 
1254 l.  There is a new configuration option, `--enable-extended-glob', which
1255     controls whether or not the ksh extended globbing feature is included.
1256     It is enabled by default.
1258 m.  There is a new configuration #define in config.h.top that, when enabled,
1259     will cause all login shells to source /etc/profile and one of the user-
1260     specific login shell startup files, whether or not the shell is
1261     interactive.  
1262     
1263 n.  There is a new invocation option, `--dump-po-strings', to dump
1264     a shell script's translatable strings ($"...") in GNU `po' format. 
1265     
1266 o.  There is a new `shopt' option, `nocaseglob', to enable case-insensitive
1267     pattern matching when globbing filenames and using the `case' construct.
1269 p.  There is a new `shopt' option, `huponexit', which, when enabled, causes
1270     the shell to send SIGHUP to all jobs when an interactive login shell
1271     exits.
1273 q.  `bind' has a new `-u' option, which takes a readline function name as an
1274     argument and unbinds all key sequences bound to that function in a
1275     specified keymap.
1276     
1277 r.  `disown' now has `-a' and `-r' options, to limit operation to all jobs
1278     and running jobs, respectively.
1280 s.  The `shopt' `-p' option now causes output to be displayed in a reusable
1281     format.
1282     
1283 t.  `test' has a new `-N' option, which returns true if the filename argument
1284     has been modified since it was last accessed.
1286 u.  `umask' now has a `-p' option to print output in a reusable format.
1287     
1288 v.  A new escape sequence, `\xNNN', has been added to the `echo -e' and $'...'
1289     translation code.  It expands to the character whose ascii code is NNN
1290     in hexadecimal.
1291     
1292 w.  The prompt string expansion code has a new `\r' escape sequence.
1294 x.  The shell may now be cross-compiled for the CYGWIN32 environment on
1295     a Unix machine.
1297 2. New Features in Readline
1299 a.  There is now an option for `iterative' yank-last-arg handline, so a user
1300     can keep entering `M-.', yanking the last argument of successive history
1301     lines.
1303 b.  New variable, `print-completions-horizontally', which causes completion
1304     matches to be displayed across the screen (like `ls -x') rather than up
1305     and down the screen (like `ls').
1307 c.  New variable, `completion-ignore-case', which causes filename completion
1308     and matching to be performed case-insensitively.
1310 d.  There is a new bindable command, `magic-space', which causes history
1311     expansion to be performed on the current readline buffer and a space to
1312     be inserted into the result.
1314 e.  There is a new bindable command, `menu-complete', which enables tcsh-like
1315     menu completion (successive executions of menu-complete insert a single
1316     completion match, cycling through the list of possible completions).
1318 f.  There is a new bindable command, `paste-from-clipboard', for use on Win32
1319     systems, to insert the text from the Win32 clipboard into the editing
1320     buffer.
1322 g.  The key sequence translation code now understands printf-style backslash
1323     escape sequences, including \NNN octal escapes.  These escape sequences
1324     may be used in key sequence definitions or macro values.
1326 h.  An `$include' inputrc file parser directive has been added.
1328 -------------------------------------------------------------------------------
1329 This is a terse description of the new features added to bash-2.01 since
1330 the release of bash-2.0.  As always, the manual page (doc/bash.1) is the
1331 place to look for complete descriptions.
1333 1. New Features in Bash
1335 a.  There is a new builtin array variable: GROUPS, the set of groups to which
1336     the user belongs.  This is used by the test suite.
1338 2.  New Features in Readline
1340 a.  If a key sequence bound to `universal-argument' is read while reading a
1341     numeric argument started with `universal-argument', it terminates the
1342     argument but is otherwise ignored.  This provides a way to insert multiple
1343     instances of a digit string, and is how GNU emacs does it.
1345 -------------------------------------------------------------------------------
1346 This is a terse description of the new features added to bash-2.0 since
1347 the release of bash-1.14.7.  As always, the manual page (doc/bash.1) is
1348 the place to look for complete descriptions.
1350 1.  New Features in Bash
1352 a.  There is a new invocation option, -D, that dumps translatable strings
1353     in a script.
1355 b.  The `long' invocation options must now be prefixed with `--'.
1357 c.  New long invocation options:  --dump-strings, --help, --verbose
1359 d.  The `nolineediting' invocation option was renamed to `noediting'.
1361 e.  The `nobraceexpansion' and `quiet' long invocation options were removed.
1363 f.  The `--help' and `--version' long options now work as the GNU coding
1364     standards specify.
1366 g.  If invoked as `sh', bash now enters posix mode after reading the
1367     startup files, and reads and executes commands from the file named
1368     by $ENV if interactive (as POSIX.2 specifies).  A login shell invoked
1369     as `sh' reads $ENV after /etc/profile and ~/.profile.
1371 h.  There is a new reserved word, `time', for timing pipelines, builtin
1372     commands, and shell functions.  It uses the value of the TIMEFORMAT
1373     variable as a format string describing how to print the timing
1374     statistics.
1376 i.  The $'...' quoting syntax expands ANSI-C escapes in ... and leaves the
1377     result single-quoted.
1379 j.  The $"..." quoting syntax performs locale-specific translation of ...
1380     and leaves the result double-quoted.
1382 k.  LINENO now works correctly in functions.
1384 l.  New variables: DIRSTACK, PIPESTATUS, BASH_VERSINFO, HOSTNAME, SHELLOPTS,
1385     MACHTYPE.  The first three are array variables.
1387 m.  The BASH_VERSION and BASH_VERSINFO variables now include the shell's
1388     `release status' (alpha[N], beta[N], release).
1390 n.  Some variables have been removed:  MAIL_WARNING, notify, history_control,
1391     command_oriented_history, glob_dot_filenames, allow_null_glob_expansion,
1392     nolinks, hostname_completion_file, noclobber, no_exit_on_failed_exec, and
1393     cdable_vars.  Most of them are now implemented with the new `shopt'
1394     builtin; others were already implemented by `set'.
1396 o.  Bash now uses some new variables:  LC_ALL, LC_MESSAGES, LC_CTYPE,
1397     LC_COLLATE, LANG, GLOBIGNORE, HISTIGNORE.
1399 p.  The shell now supports integer-indexed arrays of unlimited length,
1400     with a new compound assignment syntax and changes to the appropriate
1401     builtin commands (declare/typeset, read, readonly, etc.).  The array
1402     index may be an arithmetic expression.
1404 q.  ${!var}: indirect variable expansion, equivalent to eval \${$var}.
1406 r.  ${paramter:offset[:length]}: variable substring extraction.
1408 s.  ${parameter/pattern[/[/]string]}: variable pattern substitution.
1410 t.  The $[...] arithmetic expansion syntax is no longer supported, in
1411     favor of $((...)).
1413 u.  Aliases can now be expanded in shell scripts with a shell option
1414     (shopt expand_aliases).
1416 v.  History and history expansion can now be used in scripts with
1417     set -o history and set -H.
1419 w.  All builtins now return an exit status of 2 for incorrect usage.
1421 x.  Interactive shells resend SIGHUP to all running or stopped children
1422     if (and only if) they exit due to a SIGHUP.
1424 y.  New prompting expansions: \a, \e, \H, \T, \@, \v, \V.
1426 z.  Variable expansion in prompt strings is now controllable via a shell
1427     option (shopt promptvars).
1429 aa. Bash now defaults to using command-oriented history.
1431 bb. The history file ($HISTFILE) is now truncated to $HISTFILESIZE after
1432     being written.
1434 cc. The POSIX.2 conditional arithmetic evaluation syntax (expr ? expr : expr)
1435     has been implemented.
1437 dd. Each builtin now accepts `--' to signify the end of the options, except
1438     as documented (echo, etc.).
1440 ee. All builtins use -p to display values in a re-readable format where
1441     appropriate, except as documented (echo, type, etc.).
1443 ff. The `alias' builtin has a new -p option.
1445 gg. Changes to the `bind' builtin:
1446         o has new options: -psPSVr.
1447         o the `-d' option was renamed to `-p'
1448         o the `-v' option now dumps variables; the old `-v' is now `-P'
1450 hh. The `bye' synonym for `exit' was removed.
1452 ii. The -L and -P options to `cd' and `pwd' have been documented.
1454 jj. The `cd' builtin now does spelling correction on the directory name
1455     by default.  This is settable with a shell option (shopt cdspell).
1457 kk. The `declare' builtin has new options: -a, -F, -p.
1459 ll. The `dirs' builtin has new options: -c, -p, -v.
1461 mm. The new `disown' builtin removes jobs from the shell's jobs table
1462     or inhibits the resending of SIGHUP when the shell receives a
1463     SIGHUP.
1465 nn. The `echo' builtin has a new escape character: \e.
1467 oo. The `enable' builtin can now load new builtins dynamically from shared
1468     objects on systems with the dlopen/dlsym interface.  There are a number
1469     of examples in the examples/loadables directory.  There are also
1470     new options: -d, -f, -s, -p.
1472 pp. The `-all' option to `enable' was removed in favor of `-a'.
1474 qq. The `exec' builtin has new options: -l, -c, -a.
1476 rr. The `hash' builtin has a new option: -p.
1478 ss. The `history' builtin has new options: -c, -p, -s.
1480 tt. The `jobs' builtin has new options: -r, -s.
1482 uu. The `kill' builtin has new options: -n signum, -l signame.
1484 vv. The `pushd' and `popd' builtins have a new option: -n.
1486 ww. The `read' builtin has new options: -p prompt, -e, -a.
1488 xx. The `readonly' builtin has a new -a option, and the -n option was removed.
1490 yy. Changes to the `set' builtin:
1491         o new options: -B, -o keyword, -o onecmd, -o history
1492         o options removed: -l, -d, -o nohash
1493         o options changed: +o, -h, -o hashall
1494         o now displays variables in a format that can be re-read as input
1496 zz. The new `shopt' builtin controls shell optional behavior previously
1497     done by setting and unsetting certain shell variables.
1499 aaa. The `test' builtin has new operators: -o option, s1 == s2, s1 < s2,
1500      and s1 > s2, where s1 and s2 are strings.
1502 bbb. There is a new trap, DEBUG, executed after every simple command.
1504 ccc. The `trap' builtin has a new -p option.
1506 ddd. The `ulimit' builtin has a new -l option on 4.4BSD-based systems.
1508 eee. The PS1, PS2, PATH, and IFS variables may now be unset.
1510 fff. The restricted shell mode has been expanded and is now documented.
1512 ggg. Security improvements:
1513         o functions are not imported from the environment if running setuid
1514           or with -p
1515         o no startup files are sourced if running setuid or with -p
1517 hhh. The documentation has been overhauled:  the texinfo manual was
1518      expanded, and HTML versions of the man page and texinfo manual
1519      are included.
1521 iii. Changes to Posix mode:
1522         o Command lookup now finds special builtins before shell functions.
1523         o Failure of a special builtin causes a non-interactive shell to
1524           exit.  Failures are defined in the POSIX.2 specification.
1525         o If the `cd' builtin finds a directory to change to using $CDPATH,
1526           the value assigned to PWD when `cd' completes does not contain
1527           any symbolic links.
1528         o A non-interactive shell exits if a variable assignment error
1529           occurs when no command name follows the assignment statements.
1530         o A non-interactive shell exits if the interation variable in a
1531           `for' statement or the selection variable in a `select' statement
1532           is read-only or another variable assignment error occurs.
1533         o The `<>' redirection operator now opens a file for both stdin and
1534           stdout by default, not just when in posix mode.
1535         o Assignment statements preceding special builtins now persist in
1536           the shell's environment when the builtin completes.
1538      Posix mode is now completely POSIX.2-compliant (modulo bugs).  When
1539      invoked as sh, bash should be completely POSIX.2-compliant.
1541 jjj. The default value of PS1 is now "\s-\v\$ ".
1543 kkk. The ksh-like ((...)) arithmetic command syntax has been implemented.
1544      This is exactly equivalent to `let "..."'.
1546 lll. Integer constants have been extended to base 64.
1548 mmm. The `ulimit' builtin now sets both hard and soft limits and reports the
1549      soft limit by default.
1551 2.  New Features in Readline
1553 a.  New variables:  enable-keypad, input-meta (new name for meta-flag),
1554     mark-directories, visible-stats (now documented), disable-completion,
1555     comment-begin.
1557 b.  New bindable commands:  kill-region, copy-region-as-kill,
1558     copy-backward-word, copy-forward-word, set-mark, exchange-point-and-mark,
1559     character-search, character-search-backward, insert-comment,
1560     glob-expand-word, glob-list-expansions, dump-variables, dump-macros.
1562 c.  New emacs keybindings:  delete-horizontal-space (M-\),
1563     insert-completions (M-*), possible-completions (M-=).
1565 d.  The history-search-backward and history-search-forward commands were
1566     modified to be the same as previous-line and next-line if point is at
1567     the start of the line.
1569 e.  More file types are available for the visible-stats mode.
1571 3.  Changes of interest in the Bash implementation
1573 a.  There is a new autoconf-based configuration mechanism.
1575 b.  More things have been moved from Posix mode to standard shell behavior.
1577 c.  The trace output (set -x) now inserts quotes where necessary so it can
1578     be reused as input.
1580 d.  There is a compile-time option for a system-wide interactive shell
1581     startup file (disabled by default).
1583 e.  The YACC grammar is smaller and tighter, and all 66 shift-reduce
1584     conflicts are gone.  Several parsing bugs have been fixed.
1586 f.  Builtin option parsing has been regularized (using internal_getopt()),
1587     with the exception of `echo', `type', and `set'.
1589 g.  Builtins now return standard usage messages constructed from the
1590     `short doc' used by the help builtin.
1592 h.  Completion now quotes using backslashes by default, but honors
1593     user-supplied quotes.
1595 i.  The GNU libc malloc is available as a configure-time option.
1597 j.  There are more internationalization features; bash uses gettext if
1598     it is available.  The $"..." translation syntax uses the current
1599     locale and gettext.
1601 k.  There is better reporting of job termination when the shell is not
1602     interactive.
1604 l.  The shell is somewhat more efficient: it uses a little less memory and
1605     makes fewer system calls.
1607 4.  Changes of interest in the Readline implementation
1609 a.  There is now support for readline `callback' functions.
1611 b.  There is now support for user-supplied input, redisplay, and terminal
1612     preparation functions.
1614 c.  Most of the shell-specific code in readline has been generalized or
1615     removed.
1617 d.  Most of the annoying redisplay bugs have been fixed, notably the problems
1618     with incremental search and excessive redrawing when special characters
1619     appear in the prompt string.
1621 e.  There are new library functions and variables available to application
1622     writers, most having to do with completion and quoting.
1624 f.  The NEWLINE character (^J) is now treated as a search terminator by the
1625     incremental search functions.
1626 -------------------------------------------------------------------------------
1628 Copying and distribution of this file, with or without modification,
1629 are permitted in any medium without royalty provided the copyright
1630 notice and this notice are preserved.  This file is offered as-is,
1631 without any warranty.