From 6c1407d2a9ae12dfba6538f92f5826f15868bcfb Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Fri, 17 Jun 2022 09:54:51 -0400 Subject: [PATCH] Bash-5.2-rc1 release --- CHANGES | 58 +- COMPAT | 7 + CWRU/changelog | 239 +- MANIFEST | 6 +- Makefile.in | 5 +- NEWS | 9 + POSIX | 7 +- bashline.c | 2 +- bashline.h | 2 +- builtins/Makefile.in | 32 +- builtins/common.c | 34 + builtins/common.h | 1 + builtins/evalstring.c | 5 +- builtins/mapfile.def | 21 +- builtins/mkbuiltins.c | 19 +- builtins/printf.def | 59 +- builtins/read.def | 20 +- builtins/suspend.def | 21 +- builtins/wait.def | 16 +- configure | 106 +- configure.ac | 12 +- doc/bash.0 | 3516 +++--- doc/bash.1 | 37 +- doc/bash.html | 42 +- doc/bash.info | 324 +- doc/bash.pdf | Bin 400290 -> 400480 bytes doc/bash.ps | 12432 +++++++++++----------- doc/bashref.dvi | Bin 820844 -> 821652 bytes doc/bashref.html | 48 +- doc/bashref.info | 324 +- doc/bashref.pdf | Bin 793808 -> 794339 bytes doc/bashref.ps | 758 +- doc/bashref.texi | 39 +- doc/builtins.0 | 387 +- doc/builtins.ps | 699 +- doc/rbash.ps | 2 +- doc/version.texi | 6 +- examples/loadables/Makefile.in | 8 +- examples/loadables/Makefile.inc.in | 9 +- examples/loadables/Makefile.sample.in | 44 + examples/loadables/cat.c | 4 +- examples/loadables/print.c | 3 +- examples/loadables/seq.c | 12 + examples/scripts/bcalc | 104 + execute_cmd.c | 6 +- jobs.c | 6 +- lib/glob/glob.c | 2 +- lib/malloc/imalloc.h | 5 + lib/malloc/malloc.c | 9 +- lib/readline/callback.c | 7 +- lib/readline/doc/rltech.texi | 3 + lib/readline/examples/excallback.c | 4 + lib/readline/examples/histexamp.c | 3 + lib/readline/examples/rl-callbacktest.c | 27 +- lib/readline/examples/rl.c | 8 + lib/readline/examples/rlcat.c | 8 + lib/readline/examples/rltest.c | 8 + lib/readline/input.c | 2 +- lib/sh/oslib.c | 14 +- lib/sh/shmatch.c | 17 +- lib/sh/strvis.c | 6 + lib/sh/zgetline.c | 3 +- lib/sh/zmapfd.c | 2 +- m4/strtoimax.m4 | 35 + nojobs.c | 2 +- parse.y | 100 +- pathexp.c | 56 +- pathexp.h | 7 +- pcomplete.c | 7 +- po/ro.gmo | Bin 13353 -> 189265 bytes po/ro.po | 5312 ++++----- po/tr.gmo | Bin 126804 -> 130291 bytes po/tr.po | 2519 ++--- po/zh_TW.gmo | Bin 152761 -> 167967 bytes po/zh_TW.po | 381 +- print_cmd.c | 10 +- redir.c | 5 +- shell.h | 2 +- stringlib.c | 5 +- subst.c | 4 +- tests/comsub-posix.right | 20 +- tests/comsub-posix.tests | 3 +- tests/comsub-posix1.sub | 2 +- tests/comsub-posix5.sub | 6 +- tests/comsub-posix6.sub | 43 + tests/errors.right | 8 +- tests/errors.tests | 6 +- tests/intl.tests | 2 +- tests/unicode1.sub | 13 +- variables.c | 30 +- variables.h | 2 + y.tab.c | 100 +- 92 files changed, 14083 insertions(+), 14216 deletions(-) create mode 100644 examples/loadables/Makefile.sample.in create mode 100644 examples/scripts/bcalc create mode 100644 m4/strtoimax.m4 create mode 100644 tests/comsub-posix6.sub diff --git a/CHANGES b/CHANGES index ed856182..8304d426 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,55 @@ +This document details the changes between this version, bash-5.2-rc1, and +the previous version, bash-5.2-beta. + +1. Changes to Bash + +a. Changes to `wait -p' and how it sets the variable name in the presence of + valid and invalid PID arguments. + +b. Fixed a bug that caused compgen to dump core if the completion engine was + not initialized. + +c. Fixed a memory leak in the variable name programmable completion code. + +d. Here-documents and here-strings use tempfiles if the shell compatibility + level is 50 or lower. + +e. Non-interactive shells exit on a syntax error encountered while parsing a + command substitution. + +f. Fixed a bug with inherited parser state while parsing a command substitution. + +g. Fixed a bug that caused the shell not to check for terminating signals + after executing the command_string supplied with `-c' and before executing + the exit trap. + +h. Changes to avoid a make race condition while generating builtins.c. + +i. Make it explicit that BASH_REMATCH is always a global variable, and that + local copies are (currently) ignored. + +j. Fixed a bug that caused an ambiguous redirection (>&word) to be printed + incorrectly (>&word) if no file descriptor was supplied. + +2. Changes to Readline + +a. Fixed a bug that caused rl_eof_found to be set prematurely while reading a + multi-character key sequence in callback mode. + +3. New Features in Bash + +a. In posix mode, the `printf' builtin checks for the `L' length modifier and + uses long double for floating point conversion specifiers if it's present, + double otherwise. + +b. The `globbing' completion code now takes the `globstar' option into account. + +c. `suspend -f' now forces the shell to suspend even if job control is not + currently enabled. + +4. New Features in Readline + +------------------------------------------------------------------------------ This document details the changes between this version, bash-5.2-beta, and the previous version, bash-5.2-alpha. @@ -291,10 +343,10 @@ h. The `unset' builtin now attempts to treat arguments as array subscripts i. There is a default value for $BASH_LOADABLES_PATH in config-top.h. j. Associative array assignment and certain instances of referencing (e.g., - `test -v' now allow `@' and `*' to be used as keys. + `test -v') now allow `@' and `*' to be used as keys. -k. Bash attempts to expand indexed array subscripts only once when executing - shell constructs and word expansions. +k. Bash attempts to expand indexed and associative array subscripts only + once when executing shell constructs and word expansions. l. The `unset' builtin allows a subscript of `@' or `*' to unset a key with that value for associative arrays instead of unsetting the entire array diff --git a/COMPAT b/COMPAT index aa25f19d..091371cd 100644 --- a/COMPAT +++ b/COMPAT @@ -550,6 +550,9 @@ compat50 (set using BASH_COMPAT) printed an informational message to that effect even when writing output in a format that can be reused as input (-l). Bash-5.1 suppresses that message if -l is supplied + - Bash-5.1 and later use pipes for here-documents and here-strings if + they are smaller than the pipe capacity. If the shell compatibility + level is set to 50 or lower, it reverts to using temporary files. compat51 (set using BASH_COMPAT) - The `unset' builtin will unset the array a given an argument like @@ -560,6 +563,10 @@ compat51 (set using BASH_COMPAT) for statement can be expanded more than once - expressions used as arguments to arithmetic operators in the [[ conditional command can be expanded more than once + - indexed and associative array subscripts used as arguments to the + operators in the [[ conditional command (e.g., `[[ -v') can be + expanded more than once. Bash-5.2 behaves as if the + `assoc_expand_once' option were enabled. - the expressions in substring parameter brace expansion can be expanded more than once - the expressions in the $(( ... )) word expansion can be expanded diff --git a/CWRU/changelog b/CWRU/changelog index 66d3cd6b..ee45b9c4 100644 --- a/CWRU/changelog +++ b/CWRU/changelog @@ -2870,7 +2870,7 @@ subst.c - parameter_brace_expand: when expanding an indirect variable, extend the special case for array[@] and array[*] (set -u/no positional parameters, obeying the baroque quoting rules) to the value of the - indirection. Report amd fix from konsolebox + indirection. Report and fix from konsolebox 12/31 ----- @@ -3449,3 +3449,240 @@ lib/readline/{complete,histfile,histsearch,isearch,terminal}.c --- configure.ac - bumped version to bash-5.2-beta + +[bash-5.2-beta frozen] + + 4/8 + --- +lib/readline/input.c + - _rl_orig_sigset: need extern declaration if HAVE_SELECT is defined. + From https://savannah.gnu.org/support/?110634 + +examples/loadables/seq.c + - PRIdMAX: redefine if PRI_MACROS_BROKEN is defined. + From https://savannah.gnu.org/support/index.php?110635 + + 4/11 + ---- +configure.ac + - BASH_FUNC_STRTOIMAX: replace strtoimax if the system doesn't provide + a declaration in a standard header file. Uses new m4/strtoimax.m4. + From https://savannah.gnu.org/support/index.php?110633 + +builtins/printf.def + - getdouble: new function, parses string into `double' using strtod + - printf_builtin: check for the `L' length modifier and use long + doubles for the floating point conversion specifiers. If it's not + supplied, use `double' when in posix mode (as posix specifies) and + long double (if it's available, double if not) in default mode. + From a report from Paul Eggert + + 4/12 + ---- +lib/sh/oslib.c + - bzero: update function signature to modern BSD version + + 4/14 + ---- +lib/sh/oslib.c + - bcopy, gethostname, mkfifo: update function signatures to modern + versions + + 4/15 + ---- +jobs.c,nojobs.c + - wait_for_single_pid: if the pid or job argument is invalid -- isn't + a child of this shell -- return 257, which is out of the range of + valid 8-bit status values + +execute_cmd.c + - execute_pipeline: if wait_for_single_pid returns > 256, set it to + 127 (invalid process) + +jobs.c + - wait_for_background_pids: if wait_for_single_pid returns > 256, set + the status we return in PS to 127 (what it was before) + +builtins/wait.def + - wait_builtin: if wait_for_single_pid returns > 256, treat it as an + error and set pstat.pid to NO_PID + - wait_builtin: if -p supplied, and we get to the end of the argument + list with PSTAT.PID != NO_PID (which we assume means that the return + value is set from PSTAT.STATUS), set the variable name to PSTAT.PID. + From a report by Robert Elz + - wait_builtin: for compatibility with the netbsd sh, leave the variable + name specified with `-p' unset if there are no PID arguments. + From a report by Robert Elz + + 4/17 + ---- +parse.y + - xparse_dolparen: if (flags & SX_NOLONGJMP), don't call + jump_to_top_level() on errors + +bashline.c + - bash_quote_filename: don't call quote_word_break_chars() unless we + have word break chars initialized. Fixes bug reported by + Sam James + + 4/18 + ---- +pcomplete.c + - gen_globpat_matches: call glob_filename with the GX_GLOBSTAR flag if + the `globstar' shell option is enabled. From a report by + Steve + +lib/malloc/malloc.c + - internal_free: remove the GLIBC21 code (!) + - internal_free: make the code that tests against memtop and calls + lesscore depend on USE_LESSCORE being defined, which it is by + default + +lib/malloc/imalloc.h + - USE_LESSCORE: define + +parse.y,shell.h + - token_buffer_size and its corresponding saved value in the shell's + parser state are now size_t instead of int + +stringlib.c + - strsub,strcreplace: use size_t instead of int for local length and + indexing variables + +lib/sh/zmapfd.c + - zmapfd: use size_t instead of int for local length and indexing + variables + +lib/sh/zgetline.c + - zgetline: use size_t instead of int for local length and indexing + variables + + 4/20 + ---- +pcomplete.c + - init_itemlist_from_varlist: free VLIST after assigning it from + *SVFUNC and after we get the variable names and values out of it. + Report from Robert E. Griffith + + 4/25 + ---- +redir.c + - here_document_to_fd: if the shell compatibility level is bash-5.0 or + earlier, use tempfiles for all here-documents and here-strings. From + a bug-bash discussion started by Sam Liddicott + + 4/26 + ---- +parse.y + - parse_comsub: non-interactive shells exit on a syntax error while + parsing the command substitution + - parse_comsub: unset additional PARSER_STATE flags before calling + yyparse(). Inspired by https://bugs.gentoo.org/837203; unsetting + PST_COMPASSIGN is the fix for that bug + - parse_string_to_word_list: use save_parser_state/restore_parser_state + instead of saving pieces of the shell state in individual variables + - parse_compound_assignment: use save_parser_state/restore_parser_state + instead of saving pieces of the shell state in individual variables + - parse_compound_assignment: unset additional PARSER_STATE flags before + calling read_token(); set esacs_needed_count and expecting_in_token + to 0 like in parse_comsub() since read_token can use them + + 4/27 + ---- +lib/sh/strvis.c + - sh_charvis: changes to handle being compiled without multibyte support + + 4/29 + ---- +lib/readline/callback.c + - rl_callback_read_char: don't set rl_eof_found unless eof is > 0, + since it can be -3 if we need to read more input in a multi-key + sequence. Report from Andrew Burgess + +examples/loadables/Makefile.sample.in + - new file, containing the rules to build the example shared object + - includes Makefile.inc from wherever it's installed. Suggested by + Robert E. Griffith + +examples/loadables/Makefile.inc.in + - remove rules that create the example shared object + + 4/30 + ---- +builtins/evalstring.c + - parse_and_execute: check for terminating signals before returning, + after any longjmp, to improve responsiveness and fix the -c code + path before running any exit trap. Report from + Emanuele Torre + + 5/17 + ---- +builtins/suspend.def + - suspend_builtin: the -f option now forces a suspend even if job + control is not enabled. Inspired by a discussion with + Robert Elz + +doc/{bash.1,bashref.texi} + - suspend: updated description to include expanded -f behavior + + 5/25 + ---- +builtins/mkbuiltins.c + - -includefile: new argument, specifies extern filename to insert + into the #include statement in the structfile (builtins.c) and + the filename in the comment in the extern file (builtext.h). + From Alexander Kanavin via + https://savannah.gnu.org/patch/?10210 + +builtins/Makefile.in + - builtins.c: change call to mkbuiltins to add -includefile option + - builtins.c: change recipe to run all the commands in the same shell + invocation + - builtins.c: change recipe to specify new filenames in the call to + mkbuiltins and move them onto builtins.c/builtext.h if the new ones + are different; make the new filenames use the current make recipe + shell pid in the filename ($$RECPID). + Inspired by Alexander Kanavin via + https://savannah.gnu.org/patch/?10210 + + 6/2 + --- +builtins/common.c + - builtin_find_indexed_array: new function, factored common code out + of mapfile and read builtins to find an in-scope indexed array or + create one + +builtins/common.h + - builtin_find_indexed_array: extern declaration + +builtins/{mapfile,read}.def + - change callers to use builtin_find_indexed_array + +variables.c + - unbind_global_variable, unbind_global_variable_noref: new functions + that remove variables from the global_variables table + +lib/sh/shmatch.c + - sh_regmatch: use unbind_global_variable_noref to make sure we act on + the copy of BASH_REMATCH in the global scope all the time, ignoring + any local variables that might exist. Tentative fix for memory leak + report from Emanuele Torre + +doc/{bash.1,bashref.texi} + - BASH_REMATCH: add caveat about making it a local variable + + 6/6 + --- +print_cmd.c + - print_redirection: if the redirectee for r_duplicating_output_word + (r_duplicating_input_word) is 1 (0), don't print it; only print a + non-default file descriptor number + - print_redirection_list: remove the code that tries to temporarily + translate a >&word redirection to >&word now that we won't print a + non-default file descriptor number. Fixes issue with `declare -f' and + function export reported by Namikaze Minato + + 6/13 + ---- +configure.ac + - bumped version to bash-5.2-rc1 diff --git a/MANIFEST b/MANIFEST index 4fe2e46c..61ff12dd 100644 --- a/MANIFEST +++ b/MANIFEST @@ -206,7 +206,7 @@ builtins/umask.def f builtins/wait.def f builtins/psize.c f builtins/psize.sh f -builtins/inlib.def f +#builtins/inlib.def f builtins/bashgetopt.c f builtins/common.h f builtins/bashgetopt.h f @@ -484,6 +484,7 @@ lib/tilde/Makefile.in f lib/tilde/tilde.c f lib/tilde/tilde.h f lib/tilde/shell.c f +m4/strtoimax.m4 f m4/stat-time.m4 f m4/timespec.m4 f m4/codeset.m4 f @@ -716,6 +717,7 @@ examples/loadables/template.c f examples/loadables/loadables.h f examples/loadables/Makefile.in f examples/loadables/Makefile.inc.in f +examples/loadables/Makefile.sample.in f examples/loadables/necho.c f examples/loadables/hello.c f examples/loadables/asort.c f @@ -825,6 +827,7 @@ examples/functions/which f #examples/scripts/adventure.sh f #examples/scripts/bash-hexdump.sh f #examples/scripts/bcsh.sh f +examples/scripts/bcalc f examples/scripts/cat.sh f examples/scripts/center f #examples/scripts/dd-ex.sh f @@ -1012,6 +1015,7 @@ tests/comsub-posix1.sub f tests/comsub-posix2.sub f tests/comsub-posix3.sub f tests/comsub-posix5.sub f +tests/comsub-posix6.sub f tests/cond.tests f tests/cond.right f tests/cond-regexp1.sub f diff --git a/Makefile.in b/Makefile.in index ef26d708..5fc3644c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -468,7 +468,8 @@ INSTALLED_HEADERS = shell.h bashjmp.h command.h syntax.h general.h error.h \ make_cmd.h subst.h sig.h externs.h builtins.h \ bashtypes.h xmalloc.h config-top.h config-bot.h \ bashintl.h bashansi.h bashjmp.h alias.h hashlib.h \ - conftypes.h unwind_prot.h jobs.h siglist.h + conftypes.h unwind_prot.h jobs.h siglist.h \ + execute_cmd.h INSTALLED_BUILTINS_HEADERS = bashgetopt.h common.h getopt.h INSTALLED_INCFILES = posixstat.h ansi_stdlib.h filecntl.h posixdir.h \ memalloc.h stdc.h posixjmp.h posixwait.h posixtime.h systimes.h \ @@ -570,7 +571,7 @@ CREATED_MAKEFILES = Makefile builtins/Makefile doc/Makefile \ lib/readline/Makefile lib/glob/Makefile \ lib/sh/Makefile lib/tilde/Makefile lib/malloc/Makefile \ lib/termcap/Makefile examples/loadables/Makefile \ - examples/loadables/Makefile.inc \ + examples/loadables/Makefile.inc examples/loadables/Makefile.sample \ examples/loadables/perl/Makefile support/Makefile \ lib/intl/Makefile po/Makefile po/Makefile.in CREATED_HEADERS = signames.h config.h pathnames.h version.h y.tab.h \ diff --git a/NEWS b/NEWS index d742247b..42c3fc64 100644 --- a/NEWS +++ b/NEWS @@ -100,6 +100,15 @@ bb. Array references using `@' and `*' that are the value of nameref variables cc. There is a new bindable readline command name: `vi-edit-and-execute-command'. +dd. In posix mode, the `printf' builtin checks for the `L' length modifier and + uses long double for floating point conversion specifiers if it's present, + double otherwise. + +ee. The `globbing' completion code now takes the `globstar' option into account. + +ff. `suspend -f' now forces the shell to suspend even if job control is not + currently enabled. + 2. New Features in Readline a. There is now an HS_HISTORY_VERSION containing the version number of the diff --git a/POSIX b/POSIX index d9368a2f..3fd3c882 100644 --- a/POSIX +++ b/POSIX @@ -240,7 +240,12 @@ The following list is what's changed when 'POSIX mode' is in effect: 'read', the trap handler executes and 'read' returns an exit status greater than 128. - 60. Bash removes an exited background process's status from the list + 60. The 'printf' builting uses 'double' (via 'strtod') to convert + arguments corresponding to floating point conversion specifiers, + instead of 'long double' if it's available. The 'L' length + modifier forces 'printf' to use 'long double' if it's available. + + 61. Bash removes an exited background process's status from the list of such statuses after the 'wait' builtin is used to obtain it. There is other POSIX behavior that Bash does not implement by default diff --git a/bashline.c b/bashline.c index f9fce251..c85b05b6 100644 --- a/bashline.c +++ b/bashline.c @@ -4341,7 +4341,7 @@ bash_quote_filename (s, rtype, qcp) /* We may need to quote additional characters: those that readline treats as word breaks that are not quoted by backslash_quote. */ /* XXX - test complete_fullquote here? */ - if (rtext && cs == COMPLETE_BSQUOTE) + if (rtext && cs == COMPLETE_BSQUOTE && rl_completer_word_break_characters) { mtext = quote_word_break_chars (rtext); free (rtext); diff --git a/bashline.h b/bashline.h index 48c9fecf..d40228e2 100644 --- a/bashline.h +++ b/bashline.h @@ -53,7 +53,7 @@ extern int unbind_unix_command PARAMS((char *)); extern char **bash_default_completion PARAMS((const char *, int, int, int, int)); -void set_directory_hook PARAMS((void)); +extern void set_directory_hook PARAMS((void)); /* Used by programmable completion code. */ extern char *command_word_completion_function PARAMS((const char *, int)); diff --git a/builtins/Makefile.in b/builtins/Makefile.in index 313ea54f..642878c6 100644 --- a/builtins/Makefile.in +++ b/builtins/Makefile.in @@ -1,6 +1,6 @@ # This Makefile for building libbuiltins.a is in -*- text -*- for Emacs. # -# Copyright (C) 1996-2021 Free Software Foundation, Inc. +# Copyright (C) 1996-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -186,20 +186,22 @@ gen-helpfiles: tmpbuiltins.o gen-helpfiles.o $(CC_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ gen-helpfiles.o tmpbuiltins.o $(LIBS_FOR_BUILD) builtext.h builtins.c: $(MKBUILTINS) $(DEFSRC) - @-if test -f builtins.c; then mv -f builtins.c old-builtins.c; fi - @-if test -f builtext.h; then mv -f builtext.h old-builtext.h; fi - ./$(MKBUILTINS) -externfile builtext.h -structfile builtins.c \ - -noproduction $(DIRECTDEFINE) $(HELPDIRDEFINE) $(HELPSTRINGS) $(DEFSRC) - @-if cmp -s old-builtext.h builtext.h 2>/dev/null; then \ - mv old-builtext.h builtext.h; \ - else \ - $(RM) old-builtext.h; \ - fi - @-if cmp -s old-builtins.c builtins.c 2>/dev/null; then \ - mv old-builtins.c builtins.c; \ - else \ - $(RM) old-builtins.c; \ - fi + @RECPID=$$$$ ; \ + NEW_BUILTEXT=builtext-$$RECPID.h NEW_BUILTINS=builtins-$$RECPID.c ; \ + ./$(MKBUILTINS) -externfile $$NEW_BUILTEXT \ + -includefile builtext.h \ + -structfile $$NEW_BUILTINS \ + -noproduction $(DIRECTDEFINE) $(HELPDIRDEFINE) $(HELPSTRINGS) $(DEFSRC) ; \ + if cmp -s $$NEW_BUILTEXT builtext.h 2>/dev/null; then \ + $(RM) $$NEW_BUILTEXT; \ + else \ + mv $$NEW_BUILTEXT builtext.h; \ + fi ; \ + if cmp -s $$NEW_BUILTINS builtins.c 2>/dev/null; then \ + $(RM) $$NEW_BUILTINS ; \ + else \ + mv $$NEW_BUILTINS builtins.c; \ + fi helpdoc: gen-helpfiles ./gen-helpfiles ${HELPDIRDEFINE} diff --git a/builtins/common.c b/builtins/common.c index 7b80a3c7..19b00c4d 100644 --- a/builtins/common.c +++ b/builtins/common.c @@ -1024,6 +1024,40 @@ builtin_bind_var_to_int (name, val, flags) return v; } +#if defined (ARRAY_VARS) +SHELL_VAR * +builtin_find_indexed_array (array_name, flags) + char *array_name; + int flags; +{ + SHELL_VAR *entry; + + if ((flags & 2) && legal_identifier (array_name) == 0) + { + sh_invalidid (array_name); + return (SHELL_VAR *)NULL; + } + + entry = find_or_make_array_variable (array_name, 1); + /* With flags argument & 1, find_or_make_array_variable checks for readonly + and noassign variables and prints error messages. */ + if (entry == 0) + return entry; + else if (array_p (entry) == 0) + { + builtin_error (_("%s: not an indexed array"), array_name); + return (SHELL_VAR *)NULL; + } + else if (invisible_p (entry)) + VUNSETATTR (entry, att_invisible); /* no longer invisible */ + + if (flags & 1) + array_flush (array_cell (entry)); + + return entry; +} +#endif /* ARRAY_VARS */ + /* Like check_unbind_variable, but for use by builtins (only matters for error messages). */ int diff --git a/builtins/common.h b/builtins/common.h index 1cec62fc..f5cd87f0 100644 --- a/builtins/common.h +++ b/builtins/common.h @@ -235,6 +235,7 @@ extern SHELL_VAR *builtin_bind_variable PARAMS((char *, char *, int)); extern SHELL_VAR *builtin_bind_var_to_int PARAMS((char *, intmax_t, int)); extern int builtin_unbind_variable PARAMS((const char *)); +extern SHELL_VAR *builtin_find_indexed_array PARAMS((char *, int)); extern int builtin_arrayref_flags PARAMS((WORD_DESC *, int)); /* variables from evalfile.c */ diff --git a/builtins/evalstring.c b/builtins/evalstring.c index 5088151a..7023eb32 100644 --- a/builtins/evalstring.c +++ b/builtins/evalstring.c @@ -426,7 +426,7 @@ parse_and_execute (string, from_file, flags) break; } } - + if (parse_command () == 0) { if ((flags & SEVAL_PARSEONLY) || (interactive_shell == 0 && read_but_dont_execute)) @@ -561,6 +561,8 @@ parse_and_execute (string, from_file, flags) throw_to_top_level (); } + CHECK_TERMSIG; + if (should_jump_to_top_level) jump_to_top_level (code); @@ -594,7 +596,6 @@ parse_string (string, from_file, flags, cmdp, endp) sigprocmask (SIG_BLOCK, (sigset_t *)NULL, (sigset_t *)&ps_sigmask); #endif -/*itrace("parse_string: `%s'", string);*/ /* Reset the line number if the caller wants us to. If we don't reset the line number, we have to subtract one, because we will add one just before executing the next command (resetting the line number sets it to diff --git a/builtins/mapfile.def b/builtins/mapfile.def index c17fc5c5..4ddd7233 100644 --- a/builtins/mapfile.def +++ b/builtins/mapfile.def @@ -167,24 +167,9 @@ mapfile (fd, line_count_goal, origin, nskip, callback_quantum, callback, array_n /* The following check should be done before reading any lines. Doing it here allows us to call bind_array_element instead of bind_array_variable and skip the variable lookup on every call. */ - entry = find_or_make_array_variable (array_name, 1); - if (entry == 0 || readonly_p (entry) || noassign_p (entry)) - { - if (entry && readonly_p (entry)) - err_readonly (array_name); - - return (EXECUTION_FAILURE); - } - else if (array_p (entry) == 0) - { - builtin_error (_("%s: not an indexed array"), array_name); - return (EXECUTION_FAILURE); - } - else if (invisible_p (entry)) - VUNSETATTR (entry, att_invisible); /* no longer invisible */ - - if (flags & MAPF_CLEARARRAY) - array_flush (array_cell (entry)); + entry = builtin_find_indexed_array (array_name, flags & MAPF_CLEARARRAY); + if (entry == 0) + return EXECUTION_FAILURE; #ifndef __CYGWIN__ /* If the delimiter is a newline, turn on unbuffered reads for pipes diff --git a/builtins/mkbuiltins.c b/builtins/mkbuiltins.c index f21b76b9..f505ebde 100644 --- a/builtins/mkbuiltins.c +++ b/builtins/mkbuiltins.c @@ -1,7 +1,7 @@ /* mkbuiltins.c - Create builtins.c, builtext.h, and builtdoc.c from a single source file called builtins.def. */ -/* Copyright (C) 1987-2021 Free Software Foundation, Inc. +/* Copyright (C) 1987-2022 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -113,6 +113,12 @@ char *struct_filename = (char *)NULL; /* The name of the external declaration file. */ char *extern_filename = (char *)NULL; +/* The name of the include file to write into the structure file, if it's + different from extern_filename. */ +char *include_filename = (char *)NULL; + +/* The name of the include file to put into the generated struct filename. */ + /* Here is a structure for manipulating arrays of data. */ typedef struct { int size; /* Number of slots allocated to array. */ @@ -241,6 +247,8 @@ main (argc, argv) if (strcmp (arg, "-externfile") == 0) extern_filename = argv[arg_index++]; + else if (strcmp (arg, "-includefile") == 0) + include_filename = argv[arg_index++]; else if (strcmp (arg, "-structfile") == 0) struct_filename = argv[arg_index++]; else if (strcmp (arg, "-noproduction") == 0) @@ -284,6 +292,9 @@ main (argc, argv) } } + if (include_filename == 0) + include_filename = extern_filename; + /* If there are no files to process, just quit now. */ if (arg_index == argc) exit (0); @@ -1125,7 +1136,7 @@ char *structfile_header[] = { "/* This file is manufactured by ./mkbuiltins, and should not be", " edited by hand. See the source to mkbuiltins for details. */", "", - "/* Copyright (C) 1987-2021 Free Software Foundation, Inc.", + "/* Copyright (C) 1987-2022 Free Software Foundation, Inc.", "", " This file is part of GNU Bash, the Bourne Again SHell.", "", @@ -1187,7 +1198,7 @@ write_file_headers (structfile, externfile) fprintf (structfile, "%s\n", structfile_header[i]); fprintf (structfile, "#include \"%s\"\n", - extern_filename ? extern_filename : "builtext.h"); + include_filename ? include_filename : "builtext.h"); fprintf (structfile, "#include \"bashintl.h\"\n"); @@ -1197,7 +1208,7 @@ write_file_headers (structfile, externfile) if (externfile) fprintf (externfile, "/* %s - The list of builtins found in libbuiltins.a. */\n", - extern_filename ? extern_filename : "builtext.h"); + include_filename ? include_filename : "builtext.h"); } /* Write out any necessary closing information for diff --git a/builtins/printf.def b/builtins/printf.def index 25145448..22560991 100644 --- a/builtins/printf.def +++ b/builtins/printf.def @@ -215,13 +215,16 @@ static uintmax_t getuintmax PARAMS((void)); #if defined (HAVE_LONG_DOUBLE) && HAVE_DECL_STRTOLD && !defined(STRTOLD_BROKEN) typedef long double floatmax_t; +# define USE_LONG_DOUBLE 1 # define FLOATMAX_CONV "L" # define strtofltmax strtold #else typedef double floatmax_t; +# define USE_LONG_DOUBLE 0 # define FLOATMAX_CONV "" # define strtofltmax strtod #endif +static double getdouble PARAMS((void)); static floatmax_t getfloatmax PARAMS((void)); static intmax_t asciicode PARAMS((void)); @@ -247,7 +250,7 @@ printf_builtin (list) WORD_LIST *list; { int ch, fieldwidth, precision; - int have_fieldwidth, have_precision; + int have_fieldwidth, have_precision, use_Lmod; char convch, thisch, nextch, *format, *modstart, *precstart, *fmt, *start; #if defined (HANDLE_MULTIBYTE) char mbch[25]; /* 25 > MB_LEN_MAX, plus can handle 4-byte UTF-8 and large Unicode characters*/ @@ -422,8 +425,12 @@ printf_builtin (list) /* skip possible format modifiers */ modstart = fmt; + use_Lmod = 0; while (*fmt && strchr (LENMODS, *fmt)) - fmt++; + { + use_Lmod |= USE_LONG_DOUBLE && *fmt == 'L'; + fmt++; + } if (*fmt == 0) { @@ -694,11 +701,24 @@ printf_builtin (list) #endif { char *f; - floatmax_t p; - p = getfloatmax (); - f = mklong (start, FLOATMAX_CONV, sizeof(FLOATMAX_CONV) - 1); - PF (f, p); + if (use_Lmod || posixly_correct == 0) + { + floatmax_t p; + + p = getfloatmax (); + f = mklong (start, "L", 1); + PF (f, p); + } + else /* posixly_correct */ + { + double p; + + p = getdouble (); + f = mklong (start, "", 0); + PF (f, p); + } + break; } @@ -1248,6 +1268,33 @@ getuintmax () return (ret); } +static double +getdouble () +{ + double ret; + char *ep; + + if (garglist == 0) + return (0); + + if (garglist->word->word[0] == '\'' || garglist->word->word[0] == '"') + return asciicode (); + + errno = 0; + ret = strtod (garglist->word->word, &ep); + + if (*ep) + { + sh_invalidnum (garglist->word->word); + conversion_error = 1; + } + else if (errno == ERANGE) + printf_erange (garglist->word->word); + + garglist = garglist->next; + return (ret); +} + static floatmax_t getfloatmax () { diff --git a/builtins/read.def b/builtins/read.def index 8c889deb..3c38bc02 100644 --- a/builtins/read.def +++ b/builtins/read.def @@ -869,28 +869,14 @@ assign_vars: an assign them to `arrayname' in turn. */ if (arrayname) { - if (legal_identifier (arrayname) == 0) - { - sh_invalidid (arrayname); - free (input_string); - return (EXECUTION_FAILURE); - } - - var = find_or_make_array_variable (arrayname, 1); + /* pass 1 for flags arg to clear the existing array + 2 to check for a + valid identifier. */ + var = builtin_find_indexed_array (arrayname, 3); if (var == 0) { free (input_string); return EXECUTION_FAILURE; /* readonly or noassign */ } - if (assoc_p (var)) - { - builtin_error (_("%s: cannot convert associative to indexed array"), arrayname); - free (input_string); - return EXECUTION_FAILURE; /* existing associative array */ - } - else if (invisible_p (var)) - VUNSETATTR (var, att_invisible); - array_flush (array_cell (var)); alist = list_string (input_string, ifs_chars, 0); if (alist) diff --git a/builtins/suspend.def b/builtins/suspend.def index e99fd26b..4f3a56c9 100644 --- a/builtins/suspend.def +++ b/builtins/suspend.def @@ -1,7 +1,7 @@ This file is suspend.def, from which is created suspend.c. It implements the builtin "suspend" in Bash. -Copyright (C) 1987-2020 Free Software Foundation, Inc. +Copyright (C) 1987-2022 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -27,10 +27,12 @@ $SHORT_DOC suspend [-f] Suspend shell execution. Suspend the execution of this shell until it receives a SIGCONT signal. -Unless forced, login shells cannot be suspended. +Unless forced, login shells and shells without job control cannot be +suspended. Options: - -f force the suspend, even if the shell is a login shell + -f force the suspend, even if the shell is a login shell or job + control is not enabled. Exit Status: Returns success unless job control is not enabled or an error occurs. @@ -96,16 +98,15 @@ suspend_builtin (list) } list = loptend; - - if (job_control == 0) - { - sh_nojobs (_("cannot suspend")); - return (EXECUTION_FAILURE); - } + no_args (list); if (force == 0) { - no_args (list); + if (job_control == 0) + { + sh_nojobs (_("cannot suspend")); + return (EXECUTION_FAILURE); + } if (login_shell) { diff --git a/builtins/wait.def b/builtins/wait.def index 9bde1660..b066d78d 100644 --- a/builtins/wait.def +++ b/builtins/wait.def @@ -1,4 +1,4 @@ -This file is wait.def, from which is created wait.c. +'This file is wait.def, from which is created wait.c. It implements the builtin "wait" in Bash. Copyright (C) 1987-2021 Free Software Foundation, Inc. @@ -236,8 +236,12 @@ wait_builtin (list) if (list == 0) { opt = wait_for_background_pids (&pstat); +#if 0 + /* Compatibility with NetBSD sh: don't set VNAME since it doesn't + correspond to the return status. */ if (vname && opt) builtin_bind_var_to_int (vname, pstat.pid, bindflags); +#endif WAIT_RETURN (EXECUTION_SUCCESS); } @@ -255,8 +259,11 @@ wait_builtin (list) { pid = (pid_t)pid_value; status = wait_for_single_pid (pid, wflags|JWAIT_PERROR); - pstat.pid = pid; - pstat.status = status; + /* status > 256 means pid error */ + pstat.pid = (status > 256) ? NO_PID : pid; + pstat.status = (status > 256) ? 127 : status; + if (status > 256) + status = 127; } else { @@ -313,6 +320,9 @@ wait_builtin (list) list = list->next; } + if (vname && pstat.pid != NO_PID) + builtin_bind_var_to_int (vname, pstat.pid, bindflags); + WAIT_RETURN (status); } diff --git a/configure b/configure index 0835ffa4..dbacea7f 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh -# From configure.ac for Bash 5.2, version 5.039. +# From configure.ac for Bash 5.2, version 5.041. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for bash 5.2-beta. +# Generated by GNU Autoconf 2.71 for bash 5.2-rc1. # # Report bugs to . # @@ -612,8 +612,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='bash' PACKAGE_TARNAME='bash' -PACKAGE_VERSION='5.2-beta' -PACKAGE_STRING='bash 5.2-beta' +PACKAGE_VERSION='5.2-rc1' +PACKAGE_STRING='bash 5.2-rc1' PACKAGE_BUGREPORT='bug-bash@gnu.org' PACKAGE_URL='' @@ -1467,7 +1467,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures bash 5.2-beta to adapt to many kinds of systems. +\`configure' configures bash 5.2-rc1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1533,7 +1533,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of bash 5.2-beta:";; + short | recursive ) echo "Configuration of bash 5.2-rc1:";; esac cat <<\_ACEOF @@ -1740,7 +1740,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -bash configure 5.2-beta +bash configure 5.2-rc1 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -2397,7 +2397,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by bash $as_me 5.2-beta, which was +It was created by bash $as_me 5.2-rc1, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -3176,7 +3176,7 @@ ac_config_headers="$ac_config_headers config.h" BASHVERS=5.2 -RELSTATUS=beta +RELSTATUS=rc1 case "$RELSTATUS" in alp*|bet*|dev*|rc*|releng*|maint*) DEBUG='-DDEBUG' MALLOC_DEBUG='-DMALLOC_DEBUG' ;; @@ -6659,6 +6659,11 @@ fi + + + + + # codeset.m4 serial 5 (gettext-0.18.2) @@ -15503,19 +15508,6 @@ else $as_nop ;; esac -fi -ac_fn_c_check_func "$LINENO" "strtoimax" "ac_cv_func_strtoimax" -if test "x$ac_cv_func_strtoimax" = xyes -then : - printf "%s\n" "#define HAVE_STRTOIMAX 1" >>confdefs.h - -else $as_nop - case " $LIBOBJS " in - *" strtoimax.$ac_objext "* ) ;; - *) LIBOBJS="$LIBOBJS strtoimax.$ac_objext" - ;; -esac - fi ac_fn_c_check_func "$LINENO" "strtoumax" "ac_cv_func_strtoumax" if test "x$ac_cv_func_strtoumax" = xyes @@ -15711,15 +15703,6 @@ printf "%s\n" "$bash_cv_strtold_broken" >&6; } fi -ac_fn_check_decl "$LINENO" "strtoimax" "ac_cv_have_decl_strtoimax" "$ac_includes_default" "$ac_c_undeclared_builtin_options" "CFLAGS" -if test "x$ac_cv_have_decl_strtoimax" = xyes -then : - ac_have_decl=1 -else $as_nop - ac_have_decl=0 -fi -printf "%s\n" "#define HAVE_DECL_STRTOIMAX $ac_have_decl" >>confdefs.h - ac_fn_check_decl "$LINENO" "strtol" "ac_cv_have_decl_strtol" "$ac_includes_default" "$ac_c_undeclared_builtin_options" "CFLAGS" if test "x$ac_cv_have_decl_strtol" = xyes then : @@ -20417,6 +20400,60 @@ printf "%s\n" "#define HAVE_VSNPRINTF 0" >>confdefs.h +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for usable strtoimax" >&5 +printf %s "checking for usable strtoimax... " >&6; } +if test ${bash_cv_func_strtoimax+y} +then : + printf %s "(cached) " >&6 +else $as_nop + + HAVE_STRTOIMAX=0 HAVE_DECL_STRTOIMAX=0 + + ac_fn_c_check_func "$LINENO" "strtoimax" "ac_cv_func_strtoimax" +if test "x$ac_cv_func_strtoimax" = xyes +then : + printf "%s\n" "#define HAVE_STRTOIMAX 1" >>confdefs.h + +fi + + ac_fn_check_decl "$LINENO" "strtoimax" "ac_cv_have_decl_strtoimax" "$ac_includes_default" "$ac_c_undeclared_builtin_options" "CFLAGS" +if test "x$ac_cv_have_decl_strtoimax" = xyes +then : + ac_have_decl=1 +else $as_nop + ac_have_decl=0 +fi +printf "%s\n" "#define HAVE_DECL_STRTOIMAX $ac_have_decl" >>confdefs.h + + + if test "$ac_cv_func_strtoimax" = "yes" ; then + HAVE_STRTOIMAX=1 + fi + if test "$ac_cv_have_decl_strtoimax" = "yes" ; then + HAVE_DECL_STRTOIMAX=1 + fi + + if test "$HAVE_STRTOIMAX" = 0 || test "$HAVE_DECL_STRTOIMAX" = 0 ; then + bash_cv_func_strtoimax=no REPLACE_STRTOIMAX=1 + else + bash_cv_func_strtoimax=yes + fi + +fi + +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $bash_cv_func_strtoimax" >&5 +printf "%s\n" "$bash_cv_func_strtoimax" >&6; } +if test $bash_cv_func_strtoimax = yes; then +case " $LIBOBJS " in + *" strtoimax.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS strtoimax.$ac_objext" + ;; +esac + +fi + + + if test "$ac_cv_func_putenv" = "yes"; then @@ -21826,7 +21863,7 @@ fi #AC_SUBST(ALLOCA_SOURCE) #AC_SUBST(ALLOCA_OBJECT) -ac_config_files="$ac_config_files Makefile builtins/Makefile lib/readline/Makefile lib/glob/Makefile lib/intl/Makefile lib/malloc/Makefile lib/sh/Makefile lib/termcap/Makefile lib/tilde/Makefile doc/Makefile support/Makefile po/Makefile.in examples/loadables/Makefile examples/loadables/Makefile.inc examples/loadables/perl/Makefile support/bash.pc support/bashbug.sh" +ac_config_files="$ac_config_files Makefile builtins/Makefile lib/readline/Makefile lib/glob/Makefile lib/intl/Makefile lib/malloc/Makefile lib/sh/Makefile lib/termcap/Makefile lib/tilde/Makefile doc/Makefile support/Makefile po/Makefile.in examples/loadables/Makefile examples/loadables/Makefile.inc examples/loadables/Makefile.sample examples/loadables/perl/Makefile support/bash.pc support/bashbug.sh" ac_config_commands="$ac_config_commands stamp-h" @@ -22332,7 +22369,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by bash $as_me 5.2-beta, which was +This file was extended by bash $as_me 5.2-rc1, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -22400,7 +22437,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -bash config.status 5.2-beta +bash config.status 5.2-rc1 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" @@ -22549,6 +22586,7 @@ do "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "examples/loadables/Makefile") CONFIG_FILES="$CONFIG_FILES examples/loadables/Makefile" ;; "examples/loadables/Makefile.inc") CONFIG_FILES="$CONFIG_FILES examples/loadables/Makefile.inc" ;; + "examples/loadables/Makefile.sample") CONFIG_FILES="$CONFIG_FILES examples/loadables/Makefile.sample" ;; "examples/loadables/perl/Makefile") CONFIG_FILES="$CONFIG_FILES examples/loadables/perl/Makefile" ;; "support/bash.pc") CONFIG_FILES="$CONFIG_FILES support/bash.pc" ;; "support/bashbug.sh") CONFIG_FILES="$CONFIG_FILES support/bashbug.sh" ;; diff --git a/configure.ac b/configure.ac index 2cae05e3..417e89a5 100644 --- a/configure.ac +++ b/configure.ac @@ -21,10 +21,10 @@ dnl Process this file with autoconf to produce a configure script. # You should have received a copy of the GNU General Public License # along with this program. If not, see . -AC_REVISION([for Bash 5.2, version 5.039])dnl +AC_REVISION([for Bash 5.2, version 5.041])dnl define(bashvers, 5.2) -define(relstatus, beta) +define(relstatus, rc1) AC_INIT([bash], bashvers-relstatus, [bug-bash@gnu.org]) @@ -713,6 +713,8 @@ AC_SUBST(SIZE) m4_include([m4/stat-time.m4]) m4_include([m4/timespec.m4]) +m4_include([m4/strtoimax.m4]) + dnl include files for gettext m4_include([m4/codeset.m4]) @@ -859,7 +861,7 @@ AC_CHECK_FUNCS(arc4random) AC_REPLACE_FUNCS(getcwd memset) AC_REPLACE_FUNCS(strcasecmp strcasestr strerror strftime strnlen strpbrk strstr) -AC_REPLACE_FUNCS(strtod strtol strtoul strtoll strtoull strtoimax strtoumax) +AC_REPLACE_FUNCS(strtod strtol strtoul strtoll strtoull strtoumax) AC_REPLACE_FUNCS(dprintf) AC_REPLACE_FUNCS(strchrnul) AC_REPLACE_FUNCS(strdup) @@ -894,7 +896,6 @@ AC_CHECK_DECLS([strtold], [ fi ]) -AC_CHECK_DECLS(strtoimax) AC_CHECK_DECLS(strtol) AC_CHECK_DECLS(strtoll) AC_CHECK_DECLS(strtoul) @@ -1068,6 +1069,8 @@ BASH_FUNC_STRCOLL BASH_FUNC_SNPRINTF BASH_FUNC_VSNPRINTF +BASH_FUNC_STRTOIMAX + dnl If putenv or unsetenv is not present, set the right define so the dnl prototype and declaration in lib/sh/getenv.c will be standard-conformant @@ -1313,6 +1316,7 @@ AC_CONFIG_FILES([Makefile builtins/Makefile lib/readline/Makefile \ lib/tilde/Makefile doc/Makefile support/Makefile \ po/Makefile.in examples/loadables/Makefile \ examples/loadables/Makefile.inc \ + examples/loadables/Makefile.sample \ examples/loadables/perl/Makefile \ support/bash.pc support/bashbug.sh]) diff --git a/doc/bash.0 b/doc/bash.0 index d39ecf87..4e3d97bb 100644 --- a/doc/bash.0 +++ b/doc/bash.0 @@ -191,14 +191,14 @@ IINNVVOOCCAATTIIOONN startup files are read. BBaasshh attempts to determine when it is being run with its standard input - connected to a network connection, as when executed by the remote shell - daemon, usually _r_s_h_d, or the secure shell daemon _s_s_h_d. If bbaasshh deter- - mines it is being run in this fashion, it reads and executes commands - from _~_/_._b_a_s_h_r_c, if that file exists and is readable. It will not do - this if invoked as sshh. The ----nnoorrcc option may be used to inhibit this - behavior, and the ----rrccffiillee option may be used to force another file to - be read, but neither _r_s_h_d nor _s_s_h_d generally invoke the shell with - those options or allow them to be specified. + connected to a network connection, as when executed by the historical + remote shell daemon, usually _r_s_h_d, or the secure shell daemon _s_s_h_d. If + bbaasshh determines it is being run non-interactively in this fashion, it + reads and executes commands from _~_/_._b_a_s_h_r_c, if that file exists and is + readable. It will not do this if invoked as sshh. The ----nnoorrcc option may + be used to inhibit this behavior, and the ----rrccffiillee option may be used + to force another file to be read, but neither _r_s_h_d nor _s_s_h_d generally + invoke the shell with those options or allow them to be specified. If the shell is started with the effective user (group) id not equal to the real user (group) id, and the --pp option is not supplied, no startup @@ -288,12 +288,12 @@ SSHHEELLLL GGRRAAMMMMAARR by the shell and its children. The TTIIMMEEFFOORRMMAATT variable may be used to specify the format of the time information. - Each command in a pipeline is executed in a _s_u_b_s_h_e_l_l, which is a sepa- - rate process. See CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT for a description of - subshells and a subshell environment. If the llaassttppiippee option is en- - abled using the sshhoopptt builtin (see the description of sshhoopptt below), the - last element of a pipeline may be run by the shell process when job - control is not active. + Each command in a multi-command pipeline, where pipes are created, is + executed in a _s_u_b_s_h_e_l_l, which is a separate process. See CCOOMMMMAANNDD EEXXEE-- + CCUUTTIIOONN EENNVVIIRROONNMMEENNTT for a description of subshells and a subshell envi- + ronment. If the llaassttppiippee option is enabled using the sshhoopptt builtin + (see the description of sshhoopptt below), the last element of a pipeline + may be run by the shell process when job control is not active. LLiissttss A _l_i_s_t is a sequence of one or more pipelines separated by one of the @@ -415,7 +415,9 @@ SSHHEELLLL GGRRAAMMMMAARR Substrings matched by parenthesized subexpressions within the regular expression are saved in the remaining BBAASSHH__RREEMMAATTCCHH in- dices. The element of BBAASSHH__RREEMMAATTCCHH with index _n is the portion - of the string matching the _nth parenthesized subexpression. + of the string matching the _nth parenthesized subexpression. + Bash sets BBAASSHH__RREEMMAATTCCHH in the global scope; declaring it as a + local variable will lead to unexpected results. Expressions may be combined using the following operators, listed in decreasing order of precedence: @@ -2107,37 +2109,38 @@ EEXXPPAANNSSIIOONN quence and character set, is matched. If the first char- acter following the [[ is a !! or a ^^ then any character not enclosed is matched. The sorting order of characters - in range expressions is determined by the current locale - and the values of the LLCC__CCOOLLLLAATTEE or LLCC__AALLLL shell vari- - ables, if set. To obtain the traditional interpretation - of range expressions, where [[aa--dd]] is equivalent to - [[aabbccdd]], set value of the LLCC__AALLLL shell variable to CC, or - enable the gglloobbaasscciiiirraannggeess shell option. A -- may be - matched by including it as the first or last character in - the set. A ]] may be matched by including it as the first - character in the set. + in range expressions, and the characters included in the + range, are determined by the current locale and the val- + ues of the LLCC__CCOOLLLLAATTEE or LLCC__AALLLL shell variables, if set. + To obtain the traditional interpretation of range expres- + sions, where [[aa--dd]] is equivalent to [[aabbccdd]], set value of + the LLCC__AALLLL shell variable to CC, or enable the gglloobbaassccii-- + iirraannggeess shell option. A -- may be matched by including it + as the first or last character in the set. A ]] may be + matched by including it as the first character in the + set. - Within [[ and ]], _c_h_a_r_a_c_t_e_r _c_l_a_s_s_e_s can be specified using + Within [[ and ]], _c_h_a_r_a_c_t_e_r _c_l_a_s_s_e_s can be specified using the syntax [[::_c_l_a_s_s::]], where _c_l_a_s_s is one of the following classes defined in the POSIX standard: - aallnnuumm aallpphhaa aasscciiii bbllaannkk ccnnttrrll ddiiggiitt ggrraapphh lloowweerr pprriinntt + aallnnuumm aallpphhaa aasscciiii bbllaannkk ccnnttrrll ddiiggiitt ggrraapphh lloowweerr pprriinntt ppuunncctt ssppaaccee uuppppeerr wwoorrdd xxddiiggiitt A character class matches any character belonging to that class. The wwoorrdd character class matches letters, digits, and the character _. Within [[ and ]], an _e_q_u_i_v_a_l_e_n_c_e _c_l_a_s_s can be specified us- - ing the syntax [[==_c==]], which matches all characters with - the same collation weight (as defined by the current lo- + ing the syntax [[==_c==]], which matches all characters with + the same collation weight (as defined by the current lo- cale) as the character _c. Within [[ and ]], the syntax [[.._s_y_m_b_o_l..]] matches the collat- ing symbol _s_y_m_b_o_l. - If the eexxttgglloobb shell option is enabled using the sshhoopptt builtin, the - shell recognizes several extended pattern matching operators. In the + If the eexxttgglloobb shell option is enabled using the sshhoopptt builtin, the + shell recognizes several extended pattern matching operators. In the following description, a _p_a_t_t_e_r_n_-_l_i_s_t is a list of one or more patterns - separated by a ||. Composite patterns may be formed using one or more + separated by a ||. Composite patterns may be formed using one or more of the following sub-patterns: ??((_p_a_t_t_e_r_n_-_l_i_s_t)) @@ -2152,78 +2155,78 @@ EEXXPPAANNSSIIOONN Matches anything except one of the given patterns When matching filenames, the ddoottgglloobb shell option determines the set of - filenames that are tested: when ddoottgglloobb is enabled, the set of file- - names includes all files beginning with ``.'', but ``.'' and ``..'' - must be matched by a pattern or sub-pattern that begins with a dot; - when it is disabled, the set does not include any filenames beginning - with ``.'' unless the pattern or sub-pattern begins with a ``.''. As + filenames that are tested: when ddoottgglloobb is enabled, the set of file- + names includes all files beginning with ``.'', but ``.'' and ``..'' + must be matched by a pattern or sub-pattern that begins with a dot; + when it is disabled, the set does not include any filenames beginning + with ``.'' unless the pattern or sub-pattern begins with a ``.''. As above, ``.'' only has a special meaning when matching filenames. Complicated extended pattern matching against long strings is slow, es- pecially when the patterns contain alternations and the strings contain - multiple matches. Using separate matches against shorter strings, or + multiple matches. Using separate matches against shorter strings, or using arrays of strings instead of a single long string, may be faster. QQuuoottee RReemmoovvaall After the preceding expansions, all unquoted occurrences of the charac- - ters \\, '', and "" that did not result from one of the above expansions + ters \\, '', and "" that did not result from one of the above expansions are removed. RREEDDIIRREECCTTIIOONN - Before a command is executed, its input and output may be _r_e_d_i_r_e_c_t_e_d - using a special notation interpreted by the shell. _R_e_d_i_r_e_c_t_i_o_n allows - commands' file handles to be duplicated, opened, closed, made to refer + Before a command is executed, its input and output may be _r_e_d_i_r_e_c_t_e_d + using a special notation interpreted by the shell. _R_e_d_i_r_e_c_t_i_o_n allows + commands' file handles to be duplicated, opened, closed, made to refer to different files, and can change the files the command reads from and - writes to. Redirection may also be used to modify file handles in the - current shell execution environment. The following redirection opera- + writes to. Redirection may also be used to modify file handles in the + current shell execution environment. The following redirection opera- tors may precede or appear anywhere within a _s_i_m_p_l_e _c_o_m_m_a_n_d or may fol- - low a _c_o_m_m_a_n_d. Redirections are processed in the order they appear, + low a _c_o_m_m_a_n_d. Redirections are processed in the order they appear, from left to right. - Each redirection that may be preceded by a file descriptor number may + Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form {_v_a_r_n_a_m_e}. In this case, for each redirection operator except >&- and <&-, the shell will allocate a - file descriptor greater than or equal to 10 and assign it to _v_a_r_n_a_m_e. - If >&- or <&- is preceded by {_v_a_r_n_a_m_e}, the value of _v_a_r_n_a_m_e defines - the file descriptor to close. If {_v_a_r_n_a_m_e} is supplied, the redirect- - ion persists beyond the scope of the command, allowing the shell pro- + file descriptor greater than or equal to 10 and assign it to _v_a_r_n_a_m_e. + If >&- or <&- is preceded by {_v_a_r_n_a_m_e}, the value of _v_a_r_n_a_m_e defines + the file descriptor to close. If {_v_a_r_n_a_m_e} is supplied, the redirect- + ion persists beyond the scope of the command, allowing the shell pro- grammer to manage the file descriptor's lifetime manually. The vvaarrrreeddiirr__cclloossee shell option manages this behavior. - In the following descriptions, if the file descriptor number is omit- - ted, and the first character of the redirection operator is <<, the re- - direction refers to the standard input (file descriptor 0). If the - first character of the redirection operator is >>, the redirection + In the following descriptions, if the file descriptor number is omit- + ted, and the first character of the redirection operator is <<, the re- + direction refers to the standard input (file descriptor 0). If the + first character of the redirection operator is >>, the redirection refers to the standard output (file descriptor 1). - The word following the redirection operator in the following descrip- - tions, unless otherwise noted, is subjected to brace expansion, tilde - expansion, parameter and variable expansion, command substitution, - arithmetic expansion, quote removal, pathname expansion, and word + The word following the redirection operator in the following descrip- + tions, unless otherwise noted, is subjected to brace expansion, tilde + expansion, parameter and variable expansion, command substitution, + arithmetic expansion, quote removal, pathname expansion, and word splitting. If it expands to more than one word, bbaasshh reports an error. - Note that the order of redirections is significant. For example, the + Note that the order of redirections is significant. For example, the command ls >> dirlist 2>>&&1 - directs both standard output and standard error to the file _d_i_r_l_i_s_t, + directs both standard output and standard error to the file _d_i_r_l_i_s_t, while the command ls 2>>&&1 >> dirlist - directs only the standard output to file _d_i_r_l_i_s_t, because the standard - error was duplicated from the standard output before the standard out- + directs only the standard output to file _d_i_r_l_i_s_t, because the standard + error was duplicated from the standard output before the standard out- put was redirected to _d_i_r_l_i_s_t. BBaasshh handles several filenames specially when they are used in redirec- tions, as described in the following table. If the operating system on which bbaasshh is running provides these special files, bash will use them; - otherwise it will emulate them internally with the behavior described + otherwise it will emulate them internally with the behavior described below. //ddeevv//ffdd//_f_d - If _f_d is a valid integer, file descriptor _f_d is dupli- + If _f_d is a valid integer, file descriptor _f_d is dupli- cated. //ddeevv//ssttddiinn File descriptor 0 is duplicated. @@ -2233,22 +2236,22 @@ RREEDDIIRREECCTTIIOONN File descriptor 2 is duplicated. //ddeevv//ttccpp//_h_o_s_t//_p_o_r_t If _h_o_s_t is a valid hostname or Internet address, and _p_o_r_t - is an integer port number or service name, bbaasshh attempts + is an integer port number or service name, bbaasshh attempts to open the corresponding TCP socket. //ddeevv//uuddpp//_h_o_s_t//_p_o_r_t If _h_o_s_t is a valid hostname or Internet address, and _p_o_r_t - is an integer port number or service name, bbaasshh attempts + is an integer port number or service name, bbaasshh attempts to open the corresponding UDP socket. A failure to open or create a file causes the redirection to fail. - Redirections using file descriptors greater than 9 should be used with - care, as they may conflict with file descriptors the shell uses inter- + Redirections using file descriptors greater than 9 should be used with + care, as they may conflict with file descriptors the shell uses inter- nally. RReeddiirreeccttiinngg IInnppuutt Redirection of input causes the file whose name results from the expan- - sion of _w_o_r_d to be opened for reading on file descriptor _n, or the + sion of _w_o_r_d to be opened for reading on file descriptor _n, or the standard input (file descriptor 0) if _n is not specified. The general format for redirecting input is: @@ -2256,27 +2259,27 @@ RREEDDIIRREECCTTIIOONN [_n]<<_w_o_r_d RReeddiirreeccttiinngg OOuuttppuutt - Redirection of output causes the file whose name results from the ex- - pansion of _w_o_r_d to be opened for writing on file descriptor _n, or the + Redirection of output causes the file whose name results from the ex- + pansion of _w_o_r_d to be opened for writing on file descriptor _n, or the standard output (file descriptor 1) if _n is not specified. If the file - does not exist it is created; if it does exist it is truncated to zero + does not exist it is created; if it does exist it is truncated to zero size. The general format for redirecting output is: [_n]>>_w_o_r_d - If the redirection operator is >>, and the nnoocclloobbbbeerr option to the sseett - builtin has been enabled, the redirection will fail if the file whose - name results from the expansion of _w_o_r_d exists and is a regular file. + If the redirection operator is >>, and the nnoocclloobbbbeerr option to the sseett + builtin has been enabled, the redirection will fail if the file whose + name results from the expansion of _w_o_r_d exists and is a regular file. If the redirection operator is >>||, or the redirection operator is >> and the nnoocclloobbbbeerr option to the sseett builtin command is not enabled, the re- direction is attempted even if the file named by _w_o_r_d exists. AAppppeennddiinngg RReeddiirreecctteedd OOuuttppuutt - Redirection of output in this fashion causes the file whose name re- + Redirection of output in this fashion causes the file whose name re- sults from the expansion of _w_o_r_d to be opened for appending on file de- - scriptor _n, or the standard output (file descriptor 1) if _n is not + scriptor _n, or the standard output (file descriptor 1) if _n is not specified. If the file does not exist it is created. The general format for appending output is: @@ -2284,11 +2287,11 @@ RREEDDIIRREECCTTIIOONN [_n]>>>>_w_o_r_d RReeddiirreeccttiinngg SSttaannddaarrdd OOuuttppuutt aanndd SSttaannddaarrdd EErrrroorr - This construct allows both the standard output (file descriptor 1) and - the standard error output (file descriptor 2) to be redirected to the + This construct allows both the standard output (file descriptor 1) and + the standard error output (file descriptor 2) to be redirected to the file whose name is the expansion of _w_o_r_d. - There are two formats for redirecting standard output and standard er- + There are two formats for redirecting standard output and standard er- ror: &&>>_w_o_r_d @@ -2300,13 +2303,13 @@ RREEDDIIRREECCTTIIOONN >>_w_o_r_d 2>>&&1 - When using the second form, _w_o_r_d may not expand to a number or --. If - it does, other redirection operators apply (see DDuupplliiccaattiinngg FFiillee DDee-- + When using the second form, _w_o_r_d may not expand to a number or --. If + it does, other redirection operators apply (see DDuupplliiccaattiinngg FFiillee DDee-- ssccrriippttoorrss below) for compatibility reasons. AAppppeennddiinngg SSttaannddaarrdd OOuuttppuutt aanndd SSttaannddaarrdd EErrrroorr - This construct allows both the standard output (file descriptor 1) and - the standard error output (file descriptor 2) to be appended to the + This construct allows both the standard output (file descriptor 1) and + the standard error output (file descriptor 2) to be appended to the file whose name is the expansion of _w_o_r_d. The format for appending standard output and standard error is: @@ -2320,10 +2323,10 @@ RREEDDIIRREECCTTIIOONN (see DDuupplliiccaattiinngg FFiillee DDeessccrriippttoorrss below). HHeerree DDooccuummeennttss - This type of redirection instructs the shell to read input from the + This type of redirection instructs the shell to read input from the current source until a line containing only _d_e_l_i_m_i_t_e_r (with no trailing - blanks) is seen. All of the lines read up to that point are then used - as the standard input (or file descriptor _n if _n is specified) for a + blanks) is seen. All of the lines read up to that point are then used + as the standard input (or file descriptor _n if _n is specified) for a command. The format of here-documents is: @@ -2332,18 +2335,18 @@ RREEDDIIRREECCTTIIOONN _h_e_r_e_-_d_o_c_u_m_e_n_t _d_e_l_i_m_i_t_e_r - No parameter and variable expansion, command substitution, arithmetic - expansion, or pathname expansion is performed on _w_o_r_d. If any part of - _w_o_r_d is quoted, the _d_e_l_i_m_i_t_e_r is the result of quote removal on _w_o_r_d, - and the lines in the here-document are not expanded. If _w_o_r_d is un- - quoted, all lines of the here-document are subjected to parameter ex- - pansion, command substitution, and arithmetic expansion, the character + No parameter and variable expansion, command substitution, arithmetic + expansion, or pathname expansion is performed on _w_o_r_d. If any part of + _w_o_r_d is quoted, the _d_e_l_i_m_i_t_e_r is the result of quote removal on _w_o_r_d, + and the lines in the here-document are not expanded. If _w_o_r_d is un- + quoted, all lines of the here-document are subjected to parameter ex- + pansion, command substitution, and arithmetic expansion, the character sequence \\<> is ignored, and \\ must be used to quote the charac- ters \\, $$, and ``. If the redirection operator is <<<<--, then all leading tab characters are - stripped from input lines and the line containing _d_e_l_i_m_i_t_e_r. This al- - lows here-documents within shell scripts to be indented in a natural + stripped from input lines and the line containing _d_e_l_i_m_i_t_e_r. This al- + lows here-documents within shell scripts to be indented in a natural fashion. HHeerree SSttrriinnggss @@ -2351,9 +2354,9 @@ RREEDDIIRREECCTTIIOONN [_n]<<<<<<_w_o_r_d - The _w_o_r_d undergoes tilde expansion, parameter and variable expansion, - command substitution, arithmetic expansion, and quote removal. Path- - name expansion and word splitting are not performed. The result is + The _w_o_r_d undergoes tilde expansion, parameter and variable expansion, + command substitution, arithmetic expansion, and quote removal. Path- + name expansion and word splitting are not performed. The result is supplied as a single string, with a newline appended, to the command on its standard input (or file descriptor _n if _n is specified). @@ -2363,8 +2366,8 @@ RREEDDIIRREECCTTIIOONN [_n]<<&&_w_o_r_d is used to duplicate input file descriptors. If _w_o_r_d expands to one or - more digits, the file descriptor denoted by _n is made to be a copy of - that file descriptor. If the digits in _w_o_r_d do not specify a file de- + more digits, the file descriptor denoted by _n is made to be a copy of + that file descriptor. If the digits in _w_o_r_d do not specify a file de- scriptor open for input, a redirection error occurs. If _w_o_r_d evaluates to --, file descriptor _n is closed. If _n is not specified, the standard input (file descriptor 0) is used. @@ -2373,12 +2376,12 @@ RREEDDIIRREECCTTIIOONN [_n]>>&&_w_o_r_d - is used similarly to duplicate output file descriptors. If _n is not - specified, the standard output (file descriptor 1) is used. If the - digits in _w_o_r_d do not specify a file descriptor open for output, a re- - direction error occurs. If _w_o_r_d evaluates to --, file descriptor _n is - closed. As a special case, if _n is omitted, and _w_o_r_d does not expand - to one or more digits or --, the standard output and standard error are + is used similarly to duplicate output file descriptors. If _n is not + specified, the standard output (file descriptor 1) is used. If the + digits in _w_o_r_d do not specify a file descriptor open for output, a re- + direction error occurs. If _w_o_r_d evaluates to --, file descriptor _n is + closed. As a special case, if _n is omitted, and _w_o_r_d does not expand + to one or more digits or --, the standard output and standard error are redirected as described previously. MMoovviinngg FFiillee DDeessccrriippttoorrss @@ -2386,7 +2389,7 @@ RREEDDIIRREECCTTIIOONN [_n]<<&&_d_i_g_i_t-- - moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard + moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard input (file descriptor 0) if _n is not specified. _d_i_g_i_t is closed after being duplicated to _n. @@ -2394,7 +2397,7 @@ RREEDDIIRREECCTTIIOONN [_n]>>&&_d_i_g_i_t-- - moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard + moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard output (file descriptor 1) if _n is not specified. OOppeenniinngg FFiillee DDeessccrriippttoorrss ffoorr RReeaaddiinngg aanndd WWrriittiinngg @@ -2402,153 +2405,153 @@ RREEDDIIRREECCTTIIOONN [_n]<<>>_w_o_r_d - causes the file whose name is the expansion of _w_o_r_d to be opened for - both reading and writing on file descriptor _n, or on file descriptor 0 + causes the file whose name is the expansion of _w_o_r_d to be opened for + both reading and writing on file descriptor _n, or on file descriptor 0 if _n is not specified. If the file does not exist, it is created. AALLIIAASSEESS - _A_l_i_a_s_e_s allow a string to be substituted for a word when it is used as - the first word of a simple command. The shell maintains a list of - aliases that may be set and unset with the aalliiaass and uunnaalliiaass builtin - commands (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). The first word of each - simple command, if unquoted, is checked to see if it has an alias. If - so, that word is replaced by the text of the alias. The characters //, - $$, ``, and == and any of the shell _m_e_t_a_c_h_a_r_a_c_t_e_r_s or quoting characters + _A_l_i_a_s_e_s allow a string to be substituted for a word when it is used as + the first word of a simple command. The shell maintains a list of + aliases that may be set and unset with the aalliiaass and uunnaalliiaass builtin + commands (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). The first word of each + simple command, if unquoted, is checked to see if it has an alias. If + so, that word is replaced by the text of the alias. The characters //, + $$, ``, and == and any of the shell _m_e_t_a_c_h_a_r_a_c_t_e_r_s or quoting characters listed above may not appear in an alias name. The replacement text may - contain any valid shell input, including shell metacharacters. The - first word of the replacement text is tested for aliases, but a word - that is identical to an alias being expanded is not expanded a second - time. This means that one may alias llss to llss --FF, for instance, and - bbaasshh does not try to recursively expand the replacement text. If the - last character of the alias value is a _b_l_a_n_k, then the next command + contain any valid shell input, including shell metacharacters. The + first word of the replacement text is tested for aliases, but a word + that is identical to an alias being expanded is not expanded a second + time. This means that one may alias llss to llss --FF, for instance, and + bbaasshh does not try to recursively expand the replacement text. If the + last character of the alias value is a _b_l_a_n_k, then the next command word following the alias is also checked for alias expansion. Aliases are created and listed with the aalliiaass command, and removed with the uunnaalliiaass command. - There is no mechanism for using arguments in the replacement text. If + There is no mechanism for using arguments in the replacement text. If arguments are needed, use a shell function (see FFUUNNCCTTIIOONNSS below). - Aliases are not expanded when the shell is not interactive, unless the - eexxppaanndd__aalliiaasseess shell option is set using sshhoopptt (see the description of + Aliases are not expanded when the shell is not interactive, unless the + eexxppaanndd__aalliiaasseess shell option is set using sshhoopptt (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - The rules concerning the definition and use of aliases are somewhat - confusing. BBaasshh always reads at least one complete line of input, and - all lines that make up a compound command, before executing any of the - commands on that line or the compound command. Aliases are expanded - when a command is read, not when it is executed. Therefore, an alias - definition appearing on the same line as another command does not take - effect until the next line of input is read. The commands following - the alias definition on that line are not affected by the new alias. - This behavior is also an issue when functions are executed. Aliases - are expanded when a function definition is read, not when the function - is executed, because a function definition is itself a command. As a - consequence, aliases defined in a function are not available until af- - ter that function is executed. To be safe, always put alias defini- + The rules concerning the definition and use of aliases are somewhat + confusing. BBaasshh always reads at least one complete line of input, and + all lines that make up a compound command, before executing any of the + commands on that line or the compound command. Aliases are expanded + when a command is read, not when it is executed. Therefore, an alias + definition appearing on the same line as another command does not take + effect until the next line of input is read. The commands following + the alias definition on that line are not affected by the new alias. + This behavior is also an issue when functions are executed. Aliases + are expanded when a function definition is read, not when the function + is executed, because a function definition is itself a command. As a + consequence, aliases defined in a function are not available until af- + ter that function is executed. To be safe, always put alias defini- tions on a separate line, and do not use aalliiaass in compound commands. For almost every purpose, aliases are superseded by shell functions. FFUUNNCCTTIIOONNSS - A shell function, defined as described above under SSHHEELLLL GGRRAAMMMMAARR, - stores a series of commands for later execution. When the name of a - shell function is used as a simple command name, the list of commands + A shell function, defined as described above under SSHHEELLLL GGRRAAMMMMAARR, + stores a series of commands for later execution. When the name of a + shell function is used as a simple command name, the list of commands associated with that function name is executed. Functions are executed - in the context of the current shell; no new process is created to in- - terpret them (contrast this with the execution of a shell script). - When a function is executed, the arguments to the function become the + in the context of the current shell; no new process is created to in- + terpret them (contrast this with the execution of a shell script). + When a function is executed, the arguments to the function become the positional parameters during its execution. The special parameter ## is - updated to reflect the change. Special parameter 00 is unchanged. The - first element of the FFUUNNCCNNAAMMEE variable is set to the name of the func- + updated to reflect the change. Special parameter 00 is unchanged. The + first element of the FFUUNNCCNNAAMMEE variable is set to the name of the func- tion while the function is executing. - All other aspects of the shell execution environment are identical be- - tween a function and its caller with these exceptions: the DDEEBBUUGG and - RREETTUURRNN traps (see the description of the ttrraapp builtin under SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS below) are not inherited unless the function has been - given the ttrraaccee attribute (see the description of the ddeeccllaarree builtin - below) or the --oo ffuunnccttrraaccee shell option has been enabled with the sseett - builtin (in which case all functions inherit the DDEEBBUUGG and RREETTUURRNN - traps), and the EERRRR trap is not inherited unless the --oo eerrrrttrraaccee shell + All other aspects of the shell execution environment are identical be- + tween a function and its caller with these exceptions: the DDEEBBUUGG and + RREETTUURRNN traps (see the description of the ttrraapp builtin under SSHHEELLLL + BBUUIILLTTIINN CCOOMMMMAANNDDSS below) are not inherited unless the function has been + given the ttrraaccee attribute (see the description of the ddeeccllaarree builtin + below) or the --oo ffuunnccttrraaccee shell option has been enabled with the sseett + builtin (in which case all functions inherit the DDEEBBUUGG and RREETTUURRNN + traps), and the EERRRR trap is not inherited unless the --oo eerrrrttrraaccee shell option has been enabled. - Variables local to the function may be declared with the llooccaall builtin - command (_l_o_c_a_l _v_a_r_i_a_b_l_e_s). Ordinarily, variables and their values are - shared between the function and its caller. If a variable is declared - llooccaall, the variable's visible scope is restricted to that function and + Variables local to the function may be declared with the llooccaall builtin + command (_l_o_c_a_l _v_a_r_i_a_b_l_e_s). Ordinarily, variables and their values are + shared between the function and its caller. If a variable is declared + llooccaall, the variable's visible scope is restricted to that function and its children (including the functions it calls). In the following description, the _c_u_r_r_e_n_t _s_c_o_p_e is a currently- execut- ing function. Previous scopes consist of that function's caller and so - on, back to the "global" scope, where the shell is not executing any + on, back to the "global" scope, where the shell is not executing any shell function. Consequently, a local variable at the current scope is a variable declared using the llooccaall or ddeeccllaarree builtins in the function that is currently executing. - Local variables "shadow" variables with the same name declared at pre- - vious scopes. For instance, a local variable declared in a function - hides a global variable of the same name: references and assignments - refer to the local variable, leaving the global variable unmodified. + Local variables "shadow" variables with the same name declared at pre- + vious scopes. For instance, a local variable declared in a function + hides a global variable of the same name: references and assignments + refer to the local variable, leaving the global variable unmodified. When the function returns, the global variable is once again visible. - The shell uses _d_y_n_a_m_i_c _s_c_o_p_i_n_g to control a variable's visibility - within functions. With dynamic scoping, visible variables and their - values are a result of the sequence of function calls that caused exe- - cution to reach the current function. The value of a variable that a - function sees depends on its value within its caller, if any, whether - that caller is the "global" scope or another shell function. This is - also the value that a local variable declaration "shadows", and the + The shell uses _d_y_n_a_m_i_c _s_c_o_p_i_n_g to control a variable's visibility + within functions. With dynamic scoping, visible variables and their + values are a result of the sequence of function calls that caused exe- + cution to reach the current function. The value of a variable that a + function sees depends on its value within its caller, if any, whether + that caller is the "global" scope or another shell function. This is + also the value that a local variable declaration "shadows", and the value that is restored when the function returns. - For example, if a variable _v_a_r is declared as local in function _f_u_n_c_1, - and _f_u_n_c_1 calls another function _f_u_n_c_2, references to _v_a_r made from + For example, if a variable _v_a_r is declared as local in function _f_u_n_c_1, + and _f_u_n_c_1 calls another function _f_u_n_c_2, references to _v_a_r made from within _f_u_n_c_2 will resolve to the local variable _v_a_r from _f_u_n_c_1, shadow- ing any global variable named _v_a_r. The uunnsseett builtin also acts using the same dynamic scope: if a variable is local to the current scope, uunnsseett will unset it; otherwise the unset - will refer to the variable found in any calling scope as described - above. If a variable at the current local scope is unset, it will re- - main so (appearing as unset) until it is reset in that scope or until - the function returns. Once the function returns, any instance of the + will refer to the variable found in any calling scope as described + above. If a variable at the current local scope is unset, it will re- + main so (appearing as unset) until it is reset in that scope or until + the function returns. Once the function returns, any instance of the variable at a previous scope will become visible. If the unset acts on - a variable at a previous scope, any instance of a variable with that - name that had been shadowed will become visible (see below how the lloo-- + a variable at a previous scope, any instance of a variable with that + name that had been shadowed will become visible (see below how the lloo-- ccaallvvaarr__uunnsseett shell option changes this behavior). - The FFUUNNCCNNEESSTT variable, if set to a numeric value greater than 0, de- - fines a maximum function nesting level. Function invocations that ex- + The FFUUNNCCNNEESSTT variable, if set to a numeric value greater than 0, de- + fines a maximum function nesting level. Function invocations that ex- ceed the limit cause the entire command to abort. - If the builtin command rreettuurrnn is executed in a function, the function - completes and execution resumes with the next command after the func- + If the builtin command rreettuurrnn is executed in a function, the function + completes and execution resumes with the next command after the func- tion call. Any command associated with the RREETTUURRNN trap is executed be- - fore execution resumes. When a function completes, the values of the - positional parameters and the special parameter ## are restored to the + fore execution resumes. When a function completes, the values of the + positional parameters and the special parameter ## are restored to the values they had prior to the function's execution. - Function names and definitions may be listed with the --ff option to the + Function names and definitions may be listed with the --ff option to the ddeeccllaarree or ttyyppeesseett builtin commands. The --FF option to ddeeccllaarree or ttyyppee-- - sseett will list the function names only (and optionally the source file - and line number, if the eexxttddeebbuugg shell option is enabled). Functions - may be exported so that child shell processes (those created when exe- - cuting a separate shell invocation) automatically have them defined + sseett will list the function names only (and optionally the source file + and line number, if the eexxttddeebbuugg shell option is enabled). Functions + may be exported so that child shell processes (those created when exe- + cuting a separate shell invocation) automatically have them defined with the --ff option to the eexxppoorrtt builtin. A function definition may be deleted using the --ff option to the uunnsseett builtin. Functions may be recursive. The FFUUNNCCNNEESSTT variable may be used to limit - the depth of the function call stack and restrict the number of func- + the depth of the function call stack and restrict the number of func- tion invocations. By default, no limit is imposed on the number of re- cursive calls. AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN - The shell allows arithmetic expressions to be evaluated, under certain - circumstances (see the lleett and ddeeccllaarree builtin commands, the (((( com- + The shell allows arithmetic expressions to be evaluated, under certain + circumstances (see the lleett and ddeeccllaarree builtin commands, the (((( com- pound command, and AArriitthhmmeettiicc EExxppaannssiioonn). Evaluation is done in fixed- - width integers with no check for overflow, though division by 0 is - trapped and flagged as an error. The operators and their precedence, - associativity, and values are the same as in the C language. The fol- + width integers with no check for overflow, though division by 0 is + trapped and flagged as an error. The operators and their precedence, + associativity, and values are the same as in the C language. The fol- lowing list of operators is grouped into levels of equal-precedence op- erators. The levels are listed in order of decreasing precedence. @@ -2577,55 +2580,55 @@ AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN _e_x_p_r_1 ,, _e_x_p_r_2 comma - Shell variables are allowed as operands; parameter expansion is per- + Shell variables are allowed as operands; parameter expansion is per- formed before the expression is evaluated. Within an expression, shell - variables may also be referenced by name without using the parameter - expansion syntax. A shell variable that is null or unset evaluates to + variables may also be referenced by name without using the parameter + expansion syntax. A shell variable that is null or unset evaluates to 0 when referenced by name without using the parameter expansion syntax. - The value of a variable is evaluated as an arithmetic expression when - it is referenced, or when a variable which has been given the _i_n_t_e_g_e_r + The value of a variable is evaluated as an arithmetic expression when + it is referenced, or when a variable which has been given the _i_n_t_e_g_e_r attribute using ddeeccllaarree --ii is assigned a value. A null value evaluates - to 0. A shell variable need not have its _i_n_t_e_g_e_r attribute turned on + to 0. A shell variable need not have its _i_n_t_e_g_e_r attribute turned on to be used in an expression. Integer constants follow the C language definition, without suffixes or character constants. Constants with a leading 0 are interpreted as oc- - tal numbers. A leading 0x or 0X denotes hexadecimal. Otherwise, num- - bers take the form [_b_a_s_e_#]n, where the optional _b_a_s_e is a decimal num- - ber between 2 and 64 representing the arithmetic base, and _n is a num- - ber in that base. If _b_a_s_e_# is omitted, then base 10 is used. When + tal numbers. A leading 0x or 0X denotes hexadecimal. Otherwise, num- + bers take the form [_b_a_s_e_#]n, where the optional _b_a_s_e is a decimal num- + ber between 2 and 64 representing the arithmetic base, and _n is a num- + ber in that base. If _b_a_s_e_# is omitted, then base 10 is used. When specifying _n, if a non-digit is required, the digits greater than 9 are - represented by the lowercase letters, the uppercase letters, @, and _, - in that order. If _b_a_s_e is less than or equal to 36, lowercase and up- - percase letters may be used interchangeably to represent numbers be- + represented by the lowercase letters, the uppercase letters, @, and _, + in that order. If _b_a_s_e is less than or equal to 36, lowercase and up- + percase letters may be used interchangeably to represent numbers be- tween 10 and 35. - Operators are evaluated in order of precedence. Sub-expressions in - parentheses are evaluated first and may override the precedence rules + Operators are evaluated in order of precedence. Sub-expressions in + parentheses are evaluated first and may override the precedence rules above. CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS - Conditional expressions are used by the [[[[ compound command and the - tteesstt and [[ builtin commands to test file attributes and perform string - and arithmetic comparisons. The tteesstt and [[ commands determine their - behavior based on the number of arguments; see the descriptions of + Conditional expressions are used by the [[[[ compound command and the + tteesstt and [[ builtin commands to test file attributes and perform string + and arithmetic comparisons. The tteesstt and [[ commands determine their + behavior based on the number of arguments; see the descriptions of those commands for any other command-specific actions. - Expressions are formed from the following unary or binary primaries. - BBaasshh handles several filenames specially when they are used in expres- + Expressions are formed from the following unary or binary primaries. + BBaasshh handles several filenames specially when they are used in expres- sions. If the operating system on which bbaasshh is running provides these - special files, bash will use them; otherwise it will emulate them in- - ternally with this behavior: If any _f_i_l_e argument to one of the pri- + special files, bash will use them; otherwise it will emulate them in- + ternally with this behavior: If any _f_i_l_e argument to one of the pri- maries is of the form _/_d_e_v_/_f_d_/_n, then file descriptor _n is checked. If - the _f_i_l_e argument to one of the primaries is one of _/_d_e_v_/_s_t_d_i_n, - _/_d_e_v_/_s_t_d_o_u_t, or _/_d_e_v_/_s_t_d_e_r_r, file descriptor 0, 1, or 2, respectively, + the _f_i_l_e argument to one of the primaries is one of _/_d_e_v_/_s_t_d_i_n, + _/_d_e_v_/_s_t_d_o_u_t, or _/_d_e_v_/_s_t_d_e_r_r, file descriptor 0, 1, or 2, respectively, is checked. Unless otherwise specified, primaries that operate on files follow sym- bolic links and operate on the target of the link, rather than the link itself. - When used with [[[[, the << and >> operators sort lexicographically using + When used with [[[[, the << and >> operators sort lexicographically using the current locale. The tteesstt command sorts using ASCII ordering. --aa _f_i_l_e @@ -2664,30 +2667,30 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS --LL _f_i_l_e True if _f_i_l_e exists and is a symbolic link. --NN _f_i_l_e - True if _f_i_l_e exists and has been modified since it was last + True if _f_i_l_e exists and has been modified since it was last read. --OO _f_i_l_e True if _f_i_l_e exists and is owned by the effective user id. --SS _f_i_l_e True if _f_i_l_e exists and is a socket. _f_i_l_e_1 --eeff _f_i_l_e_2 - True if _f_i_l_e_1 and _f_i_l_e_2 refer to the same device and inode num- + True if _f_i_l_e_1 and _f_i_l_e_2 refer to the same device and inode num- bers. _f_i_l_e_1 -nntt _f_i_l_e_2 - True if _f_i_l_e_1 is newer (according to modification date) than + True if _f_i_l_e_1 is newer (according to modification date) than _f_i_l_e_2, or if _f_i_l_e_1 exists and _f_i_l_e_2 does not. _f_i_l_e_1 -oott _f_i_l_e_2 - True if _f_i_l_e_1 is older than _f_i_l_e_2, or if _f_i_l_e_2 exists and _f_i_l_e_1 + True if _f_i_l_e_1 is older than _f_i_l_e_2, or if _f_i_l_e_2 exists and _f_i_l_e_1 does not. --oo _o_p_t_n_a_m_e - True if the shell option _o_p_t_n_a_m_e is enabled. See the list of - options under the description of the --oo option to the sseett + True if the shell option _o_p_t_n_a_m_e is enabled. See the list of + options under the description of the --oo option to the sseett builtin below. --vv _v_a_r_n_a_m_e - True if the shell variable _v_a_r_n_a_m_e is set (has been assigned a + True if the shell variable _v_a_r_n_a_m_e is set (has been assigned a value). --RR _v_a_r_n_a_m_e - True if the shell variable _v_a_r_n_a_m_e is set and is a name refer- + True if the shell variable _v_a_r_n_a_m_e is set and is a name refer- ence. --zz _s_t_r_i_n_g True if the length of _s_t_r_i_n_g is zero. @@ -2697,8 +2700,8 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS _s_t_r_i_n_g_1 ==== _s_t_r_i_n_g_2 _s_t_r_i_n_g_1 == _s_t_r_i_n_g_2 - True if the strings are equal. == should be used with the tteesstt - command for POSIX conformance. When used with the [[[[ command, + True if the strings are equal. == should be used with the tteesstt + command for POSIX conformance. When used with the [[[[ command, this performs pattern matching as described above (CCoommppoouunndd CCoomm-- mmaannddss). @@ -2712,113 +2715,113 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS True if _s_t_r_i_n_g_1 sorts after _s_t_r_i_n_g_2 lexicographically. _a_r_g_1 OOPP _a_r_g_2 - OOPP is one of --eeqq, --nnee, --lltt, --llee, --ggtt, or --ggee. These arithmetic - binary operators return true if _a_r_g_1 is equal to, not equal to, - less than, less than or equal to, greater than, or greater than - or equal to _a_r_g_2, respectively. _A_r_g_1 and _a_r_g_2 may be positive - or negative integers. When used with the [[[[ command, _A_r_g_1 and - _A_r_g_2 are evaluated as arithmetic expressions (see AARRIITTHHMMEETTIICC + OOPP is one of --eeqq, --nnee, --lltt, --llee, --ggtt, or --ggee. These arithmetic + binary operators return true if _a_r_g_1 is equal to, not equal to, + less than, less than or equal to, greater than, or greater than + or equal to _a_r_g_2, respectively. _A_r_g_1 and _a_r_g_2 may be positive + or negative integers. When used with the [[[[ command, _A_r_g_1 and + _A_r_g_2 are evaluated as arithmetic expressions (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above). SSIIMMPPLLEE CCOOMMMMAANNDD EEXXPPAANNSSIIOONN When a simple command is executed, the shell performs the following ex- - pansions, assignments, and redirections, from left to right, in the + pansions, assignments, and redirections, from left to right, in the following order. - 1. The words that the parser has marked as variable assignments - (those preceding the command name) and redirections are saved + 1. The words that the parser has marked as variable assignments + (those preceding the command name) and redirections are saved for later processing. - 2. The words that are not variable assignments or redirections are - expanded. If any words remain after expansion, the first word - is taken to be the name of the command and the remaining words + 2. The words that are not variable assignments or redirections are + expanded. If any words remain after expansion, the first word + is taken to be the name of the command and the remaining words are the arguments. 3. Redirections are performed as described above under RREEDDIIRREECCTTIIOONN. 4. The text after the == in each variable assignment undergoes tilde expansion, parameter expansion, command substitution, arithmetic - expansion, and quote removal before being assigned to the vari- + expansion, and quote removal before being assigned to the vari- able. If no command name results, the variable assignments affect the current - shell environment. In the case of such a command (one that consists - only of assignment statements and redirections), assignment statements - are performed before redirections. Otherwise, the variables are added - to the environment of the executed command and do not affect the cur- + shell environment. In the case of such a command (one that consists + only of assignment statements and redirections), assignment statements + are performed before redirections. Otherwise, the variables are added + to the environment of the executed command and do not affect the cur- rent shell environment. If any of the assignments attempts to assign a - value to a readonly variable, an error occurs, and the command exits + value to a readonly variable, an error occurs, and the command exits with a non-zero status. - If no command name results, redirections are performed, but do not af- - fect the current shell environment. A redirection error causes the + If no command name results, redirections are performed, but do not af- + fect the current shell environment. A redirection error causes the command to exit with a non-zero status. - If there is a command name left after expansion, execution proceeds as - described below. Otherwise, the command exits. If one of the expan- - sions contained a command substitution, the exit status of the command - is the exit status of the last command substitution performed. If + If there is a command name left after expansion, execution proceeds as + described below. Otherwise, the command exits. If one of the expan- + sions contained a command substitution, the exit status of the command + is the exit status of the last command substitution performed. If there were no command substitutions, the command exits with a status of zero. CCOOMMMMAANNDD EEXXEECCUUTTIIOONN - After a command has been split into words, if it results in a simple - command and an optional list of arguments, the following actions are + After a command has been split into words, if it results in a simple + command and an optional list of arguments, the following actions are taken. - If the command name contains no slashes, the shell attempts to locate - it. If there exists a shell function by that name, that function is - invoked as described above in FFUUNNCCTTIIOONNSS. If the name does not match a - function, the shell searches for it in the list of shell builtins. If + If the command name contains no slashes, the shell attempts to locate + it. If there exists a shell function by that name, that function is + invoked as described above in FFUUNNCCTTIIOONNSS. If the name does not match a + function, the shell searches for it in the list of shell builtins. If a match is found, that builtin is invoked. - If the name is neither a shell function nor a builtin, and contains no - slashes, bbaasshh searches each element of the PPAATTHH for a directory con- + If the name is neither a shell function nor a builtin, and contains no + slashes, bbaasshh searches each element of the PPAATTHH for a directory con- taining an executable file by that name. BBaasshh uses a hash table to re- - member the full pathnames of executable files (see hhaasshh under SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS below). A full search of the directories in PPAATTHH is - performed only if the command is not found in the hash table. If the + member the full pathnames of executable files (see hhaasshh under SSHHEELLLL + BBUUIILLTTIINN CCOOMMMMAANNDDSS below). A full search of the directories in PPAATTHH is + performed only if the command is not found in the hash table. If the search is unsuccessful, the shell searches for a defined shell function named ccoommmmaanndd__nnoott__ffoouunndd__hhaannddllee. If that function exists, it is invoked - in a separate execution environment with the original command and the - original command's arguments as its arguments, and the function's exit - status becomes the exit status of that subshell. If that function is + in a separate execution environment with the original command and the + original command's arguments as its arguments, and the function's exit + status becomes the exit status of that subshell. If that function is not defined, the shell prints an error message and returns an exit sta- tus of 127. - If the search is successful, or if the command name contains one or + If the search is successful, or if the command name contains one or more slashes, the shell executes the named program in a separate execu- tion environment. Argument 0 is set to the name given, and the remain- ing arguments to the command are set to the arguments given, if any. - If this execution fails because the file is not in executable format, - and the file is not a directory, it is assumed to be a _s_h_e_l_l _s_c_r_i_p_t, a + If this execution fails because the file is not in executable format, + and the file is not a directory, it is assumed to be a _s_h_e_l_l _s_c_r_i_p_t, a file containing shell commands, and the shell creates a new instance of - itself to execute it. This subshell reinitializes itself, so that the + itself to execute it. This subshell reinitializes itself, so that the effect is as if a new shell had been invoked to handle the script, with - the exception that the locations of commands remembered by the parent - (see hhaasshh below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS) are retained by the + the exception that the locations of commands remembered by the parent + (see hhaasshh below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS) are retained by the child. - If the program is a file beginning with ##!!, the remainder of the first - line specifies an interpreter for the program. The shell executes the + If the program is a file beginning with ##!!, the remainder of the first + line specifies an interpreter for the program. The shell executes the specified interpreter on operating systems that do not handle this exe- cutable format themselves. The arguments to the interpreter consist of - a single optional argument following the interpreter name on the first - line of the program, followed by the name of the program, followed by + a single optional argument following the interpreter name on the first + line of the program, followed by the name of the program, followed by the command arguments, if any. CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT - The shell has an _e_x_e_c_u_t_i_o_n _e_n_v_i_r_o_n_m_e_n_t, which consists of the follow- + The shell has an _e_x_e_c_u_t_i_o_n _e_n_v_i_r_o_n_m_e_n_t, which consists of the follow- ing: - +o open files inherited by the shell at invocation, as modified by + +o open files inherited by the shell at invocation, as modified by redirections supplied to the eexxeecc builtin - +o the current working directory as set by ccdd, ppuusshhdd, or ppooppdd, or + +o the current working directory as set by ccdd, ppuusshhdd, or ppooppdd, or inherited by the shell at invocation - +o the file creation mode mask as set by uummaasskk or inherited from + +o the file creation mode mask as set by uummaasskk or inherited from the shell's parent +o current traps set by ttrraapp @@ -2826,282 +2829,282 @@ CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENN +o shell parameters that are set by variable assignment or with sseett or inherited from the shell's parent in the environment - +o shell functions defined during execution or inherited from the + +o shell functions defined during execution or inherited from the shell's parent in the environment - +o options enabled at invocation (either by default or with com- + +o options enabled at invocation (either by default or with com- mand-line arguments) or by sseett +o options enabled by sshhoopptt +o shell aliases defined with aalliiaass - +o various process IDs, including those of background jobs, the + +o various process IDs, including those of background jobs, the value of $$$$, and the value of PPPPIIDD - When a simple command other than a builtin or shell function is to be - executed, it is invoked in a separate execution environment that con- - sists of the following. Unless otherwise noted, the values are inher- + When a simple command other than a builtin or shell function is to be + executed, it is invoked in a separate execution environment that con- + sists of the following. Unless otherwise noted, the values are inher- ited from the shell. - +o the shell's open files, plus any modifications and additions + +o the shell's open files, plus any modifications and additions specified by redirections to the command +o the current working directory +o the file creation mode mask - +o shell variables and functions marked for export, along with + +o shell variables and functions marked for export, along with variables exported for the command, passed in the environment +o traps caught by the shell are reset to the values inherited from the shell's parent, and traps ignored by the shell are ignored - A command invoked in this separate environment cannot affect the + A command invoked in this separate environment cannot affect the shell's execution environment. A _s_u_b_s_h_e_l_l is a copy of the shell process. - Command substitution, commands grouped with parentheses, and asynchro- + Command substitution, commands grouped with parentheses, and asynchro- nous commands are invoked in a subshell environment that is a duplicate of the shell environment, except that traps caught by the shell are re- - set to the values that the shell inherited from its parent at invoca- + set to the values that the shell inherited from its parent at invoca- tion. Builtin commands that are invoked as part of a pipeline are also executed in a subshell environment. Changes made to the subshell envi- ronment cannot affect the shell's execution environment. Subshells spawned to execute command substitutions inherit the value of - the --ee option from the parent shell. When not in _p_o_s_i_x _m_o_d_e, bbaasshh + the --ee option from the parent shell. When not in _p_o_s_i_x _m_o_d_e, bbaasshh clears the --ee option in such subshells. - If a command is followed by a && and job control is not active, the de- + If a command is followed by a && and job control is not active, the de- fault standard input for the command is the empty file _/_d_e_v_/_n_u_l_l. Oth- - erwise, the invoked command inherits the file descriptors of the call- + erwise, the invoked command inherits the file descriptors of the call- ing shell as modified by redirections. EENNVVIIRROONNMMEENNTT - When a program is invoked it is given an array of strings called the + When a program is invoked it is given an array of strings called the _e_n_v_i_r_o_n_m_e_n_t. This is a list of _n_a_m_e-_v_a_l_u_e pairs, of the form _n_a_m_e=_v_a_l_u_e. - The shell provides several ways to manipulate the environment. On in- - vocation, the shell scans its own environment and creates a parameter - for each name found, automatically marking it for _e_x_p_o_r_t to child pro- + The shell provides several ways to manipulate the environment. On in- + vocation, the shell scans its own environment and creates a parameter + for each name found, automatically marking it for _e_x_p_o_r_t to child pro- cesses. Executed commands inherit the environment. The eexxppoorrtt and ddee-- - ccllaarree --xx commands allow parameters and functions to be added to and + ccllaarree --xx commands allow parameters and functions to be added to and deleted from the environment. If the value of a parameter in the envi- ronment is modified, the new value becomes part of the environment, re- - placing the old. The environment inherited by any executed command - consists of the shell's initial environment, whose values may be modi- - fied in the shell, less any pairs removed by the uunnsseett command, plus + placing the old. The environment inherited by any executed command + consists of the shell's initial environment, whose values may be modi- + fied in the shell, less any pairs removed by the uunnsseett command, plus any additions via the eexxppoorrtt and ddeeccllaarree --xx commands. - The environment for any _s_i_m_p_l_e _c_o_m_m_a_n_d or function may be augmented - temporarily by prefixing it with parameter assignments, as described + The environment for any _s_i_m_p_l_e _c_o_m_m_a_n_d or function may be augmented + temporarily by prefixing it with parameter assignments, as described above in PPAARRAAMMEETTEERRSS. These assignment statements affect only the envi- ronment seen by that command. - If the --kk option is set (see the sseett builtin command below), then _a_l_l - parameter assignments are placed in the environment for a command, not + If the --kk option is set (see the sseett builtin command below), then _a_l_l + parameter assignments are placed in the environment for a command, not just those that precede the command name. - When bbaasshh invokes an external command, the variable __ is set to the + When bbaasshh invokes an external command, the variable __ is set to the full filename of the command and passed to that command in its environ- ment. EEXXIITT SSTTAATTUUSS - The exit status of an executed command is the value returned by the + The exit status of an executed command is the value returned by the _w_a_i_t_p_i_d system call or equivalent function. Exit statuses fall between - 0 and 255, though, as explained below, the shell may use values above + 0 and 255, though, as explained below, the shell may use values above 125 specially. Exit statuses from shell builtins and compound commands are also limited to this range. Under certain circumstances, the shell will use special values to indicate specific failure modes. For the shell's purposes, a command which exits with a zero exit status - has succeeded. An exit status of zero indicates success. A non-zero - exit status indicates failure. When a command terminates on a fatal + has succeeded. An exit status of zero indicates success. A non-zero + exit status indicates failure. When a command terminates on a fatal signal _N, bbaasshh uses the value of 128+_N as the exit status. - If a command is not found, the child process created to execute it re- - turns a status of 127. If a command is found but is not executable, + If a command is not found, the child process created to execute it re- + turns a status of 127. If a command is found but is not executable, the return status is 126. If a command fails because of an error during expansion or redirection, the exit status is greater than zero. - Shell builtin commands return a status of 0 (_t_r_u_e) if successful, and - non-zero (_f_a_l_s_e) if an error occurs while they execute. All builtins - return an exit status of 2 to indicate incorrect usage, generally in- + Shell builtin commands return a status of 0 (_t_r_u_e) if successful, and + non-zero (_f_a_l_s_e) if an error occurs while they execute. All builtins + return an exit status of 2 to indicate incorrect usage, generally in- valid options or missing arguments. The exit status of the last command is available in the special parame- ter $?. - BBaasshh itself returns the exit status of the last command executed, un- - less a syntax error occurs, in which case it exits with a non-zero + BBaasshh itself returns the exit status of the last command executed, un- + less a syntax error occurs, in which case it exits with a non-zero value. See also the eexxiitt builtin command below. SSIIGGNNAALLSS - When bbaasshh is interactive, in the absence of any traps, it ignores + When bbaasshh is interactive, in the absence of any traps, it ignores SSIIGGTTEERRMM (so that kkiillll 00 does not kill an interactive shell), and SSIIGGIINNTT - is caught and handled (so that the wwaaiitt builtin is interruptible). In + is caught and handled (so that the wwaaiitt builtin is interruptible). In all cases, bbaasshh ignores SSIIGGQQUUIITT. If job control is in effect, bbaasshh ig- nores SSIIGGTTTTIINN, SSIIGGTTTTOOUU, and SSIIGGTTSSTTPP. Non-builtin commands run by bbaasshh have signal handlers set to the values inherited by the shell from its parent. When job control is not in ef- - fect, asynchronous commands ignore SSIIGGIINNTT and SSIIGGQQUUIITT in addition to - these inherited handlers. Commands run as a result of command substi- + fect, asynchronous commands ignore SSIIGGIINNTT and SSIIGGQQUUIITT in addition to + these inherited handlers. Commands run as a result of command substi- tution ignore the keyboard-generated job control signals SSIIGGTTTTIINN, SSIIGGTT-- TTOOUU, and SSIIGGTTSSTTPP. - The shell exits by default upon receipt of a SSIIGGHHUUPP. Before exiting, - an interactive shell resends the SSIIGGHHUUPP to all jobs, running or + The shell exits by default upon receipt of a SSIIGGHHUUPP. Before exiting, + an interactive shell resends the SSIIGGHHUUPP to all jobs, running or stopped. Stopped jobs are sent SSIIGGCCOONNTT to ensure that they receive the - SSIIGGHHUUPP. To prevent the shell from sending the signal to a particular - job, it should be removed from the jobs table with the ddiissoowwnn builtin - (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) or marked to not receive SSIIGGHHUUPP us- + SSIIGGHHUUPP. To prevent the shell from sending the signal to a particular + job, it should be removed from the jobs table with the ddiissoowwnn builtin + (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) or marked to not receive SSIIGGHHUUPP us- ing ddiissoowwnn --hh. - If the hhuuppoonneexxiitt shell option has been set with sshhoopptt, bbaasshh sends a + If the hhuuppoonneexxiitt shell option has been set with sshhoopptt, bbaasshh sends a SSIIGGHHUUPP to all jobs when an interactive login shell exits. - If bbaasshh is waiting for a command to complete and receives a signal for + If bbaasshh is waiting for a command to complete and receives a signal for which a trap has been set, the trap will not be executed until the com- - mand completes. When bbaasshh is waiting for an asynchronous command via - the wwaaiitt builtin, the reception of a signal for which a trap has been + mand completes. When bbaasshh is waiting for an asynchronous command via + the wwaaiitt builtin, the reception of a signal for which a trap has been set will cause the wwaaiitt builtin to return immediately with an exit sta- tus greater than 128, immediately after which the trap is executed. - When job control is not enabled, and bbaasshh is waiting for a foreground + When job control is not enabled, and bbaasshh is waiting for a foreground command to complete, the shell receives keyboard-generated signals such - as SSIIGGIINNTT (usually generated by ^^CC) that users commonly intend to send + as SSIIGGIINNTT (usually generated by ^^CC) that users commonly intend to send to that command. This happens because the shell and the command are in the same process group as the terminal, and ^^CC sends SSIIGGIINNTT to all pro- cesses in that process group. - When bbaasshh is running without job control enabled and receives SSIIGGIINNTT - while waiting for a foreground command, it waits until that foreground + When bbaasshh is running without job control enabled and receives SSIIGGIINNTT + while waiting for a foreground command, it waits until that foreground command terminates and then decides what to do about the SSIIGGIINNTT: 1. If the command terminates due to the SSIIGGIINNTT, bbaasshh concludes that - the user meant to end the entire script, and acts on the SSIIGGIINNTT + the user meant to end the entire script, and acts on the SSIIGGIINNTT (e.g., by running a SSIIGGIINNTT trap or exiting itself); - 2. If the command does not terminate due to SSIIGGIINNTT, the program - handled the SSIIGGIINNTT itself and did not treat it as a fatal sig- - nal. In that case, bbaasshh does not treat SSIIGGIINNTT as a fatal sig- - nal, either, instead assuming that the SSIIGGIINNTT was used as part - of the program's normal operation (e.g., emacs uses it to abort + 2. If the command does not terminate due to SSIIGGIINNTT, the program + handled the SSIIGGIINNTT itself and did not treat it as a fatal sig- + nal. In that case, bbaasshh does not treat SSIIGGIINNTT as a fatal sig- + nal, either, instead assuming that the SSIIGGIINNTT was used as part + of the program's normal operation (e.g., emacs uses it to abort editing commands) or deliberately discarded. However, bbaasshh will - run any trap set on SSIIGGIINNTT, as it does with any other trapped - signal it receives while it is waiting for the foreground com- + run any trap set on SSIIGGIINNTT, as it does with any other trapped + signal it receives while it is waiting for the foreground com- mand to complete, for compatibility. JJOOBB CCOONNTTRROOLL _J_o_b _c_o_n_t_r_o_l refers to the ability to selectively stop (_s_u_s_p_e_n_d) the ex- - ecution of processes and continue (_r_e_s_u_m_e) their execution at a later - point. A user typically employs this facility via an interactive in- - terface supplied jointly by the operating system kernel's terminal + ecution of processes and continue (_r_e_s_u_m_e) their execution at a later + point. A user typically employs this facility via an interactive in- + terface supplied jointly by the operating system kernel's terminal driver and bbaasshh. - The shell associates a _j_o_b with each pipeline. It keeps a table of - currently executing jobs, which may be listed with the jjoobbss command. - When bbaasshh starts a job asynchronously (in the _b_a_c_k_g_r_o_u_n_d), it prints a + The shell associates a _j_o_b with each pipeline. It keeps a table of + currently executing jobs, which may be listed with the jjoobbss command. + When bbaasshh starts a job asynchronously (in the _b_a_c_k_g_r_o_u_n_d), it prints a line that looks like: [1] 25647 indicating that this job is job number 1 and that the process ID of the last process in the pipeline associated with this job is 25647. All of - the processes in a single pipeline are members of the same job. BBaasshh + the processes in a single pipeline are members of the same job. BBaasshh uses the _j_o_b abstraction as the basis for job control. - To facilitate the implementation of the user interface to job control, + To facilitate the implementation of the user interface to job control, the operating system maintains the notion of a _c_u_r_r_e_n_t _t_e_r_m_i_n_a_l _p_r_o_c_e_s_s _g_r_o_u_p _I_D. Members of this process group (processes whose process group ID is equal to the current terminal process group ID) receive keyboard- - generated signals such as SSIIGGIINNTT. These processes are said to be in - the _f_o_r_e_g_r_o_u_n_d. _B_a_c_k_g_r_o_u_n_d processes are those whose process group ID + generated signals such as SSIIGGIINNTT. These processes are said to be in + the _f_o_r_e_g_r_o_u_n_d. _B_a_c_k_g_r_o_u_n_d processes are those whose process group ID differs from the terminal's; such processes are immune to keyboard-gen- erated signals. Only foreground processes are allowed to read from or, - if the user so specifies with stty tostop, write to the terminal. - Background processes which attempt to read from (write to when stty - tostop is in effect) the terminal are sent a SSIIGGTTTTIINN ((SSIIGGTTTTOOUU)) signal - by the kernel's terminal driver, which, unless caught, suspends the + if the user so specifies with stty tostop, write to the terminal. + Background processes which attempt to read from (write to when stty + tostop is in effect) the terminal are sent a SSIIGGTTTTIINN ((SSIIGGTTTTOOUU)) signal + by the kernel's terminal driver, which, unless caught, suspends the process. - If the operating system on which bbaasshh is running supports job control, + If the operating system on which bbaasshh is running supports job control, bbaasshh contains facilities to use it. Typing the _s_u_s_p_e_n_d character (typ- ically ^^ZZ, Control-Z) while a process is running causes that process to - be stopped and returns control to bbaasshh. Typing the _d_e_l_a_y_e_d _s_u_s_p_e_n_d - character (typically ^^YY, Control-Y) causes the process to be stopped + be stopped and returns control to bbaasshh. Typing the _d_e_l_a_y_e_d _s_u_s_p_e_n_d + character (typically ^^YY, Control-Y) causes the process to be stopped when it attempts to read input from the terminal, and control to be re- - turned to bbaasshh. The user may then manipulate the state of this job, - using the bbgg command to continue it in the background, the ffgg command + turned to bbaasshh. The user may then manipulate the state of this job, + using the bbgg command to continue it in the background, the ffgg command to continue it in the foreground, or the kkiillll command to kill it. A ^^ZZ takes effect immediately, and has the additional side effect of causing pending output and typeahead to be discarded. There are a number of ways to refer to a job in the shell. The charac- - ter %% introduces a job specification (_j_o_b_s_p_e_c). Job number _n may be + ter %% introduces a job specification (_j_o_b_s_p_e_c). Job number _n may be referred to as %%nn. A job may also be referred to using a prefix of the name used to start it, or using a substring that appears in its command - line. For example, %%ccee refers to a stopped job whose command name be- - gins with ccee. If a prefix matches more than one job, bbaasshh reports an + line. For example, %%ccee refers to a stopped job whose command name be- + gins with ccee. If a prefix matches more than one job, bbaasshh reports an error. Using %%??ccee, on the other hand, refers to any job containing the - string ccee in its command line. If the substring matches more than one + string ccee in its command line. If the substring matches more than one job, bbaasshh reports an error. The symbols %%%% and %%++ refer to the shell's - notion of the _c_u_r_r_e_n_t _j_o_b, which is the last job stopped while it was - in the foreground or started in the background. The _p_r_e_v_i_o_u_s _j_o_b may - be referenced using %%--. If there is only a single job, %%++ and %%-- can + notion of the _c_u_r_r_e_n_t _j_o_b, which is the last job stopped while it was + in the foreground or started in the background. The _p_r_e_v_i_o_u_s _j_o_b may + be referenced using %%--. If there is only a single job, %%++ and %%-- can both be used to refer to that job. In output pertaining to jobs (e.g., the output of the jjoobbss command), the current job is always flagged with - a ++, and the previous job with a --. A single % (with no accompanying + a ++, and the previous job with a --. A single % (with no accompanying job specification) also refers to the current job. - Simply naming a job can be used to bring it into the foreground: %%11 is - a synonym for ````ffgg %%11'''', bringing job 1 from the background into the - foreground. Similarly, ````%%11 &&'''' resumes job 1 in the background, + Simply naming a job can be used to bring it into the foreground: %%11 is + a synonym for ````ffgg %%11'''', bringing job 1 from the background into the + foreground. Similarly, ````%%11 &&'''' resumes job 1 in the background, equivalent to ````bbgg %%11''''. - The shell learns immediately whenever a job changes state. Normally, + The shell learns immediately whenever a job changes state. Normally, bbaasshh waits until it is about to print a prompt before reporting changes - in a job's status so as to not interrupt any other output. If the --bb + in a job's status so as to not interrupt any other output. If the --bb option to the sseett builtin command is enabled, bbaasshh reports such changes - immediately. Any trap on SSIIGGCCHHLLDD is executed for each child that ex- + immediately. Any trap on SSIIGGCCHHLLDD is executed for each child that ex- its. - If an attempt to exit bbaasshh is made while jobs are stopped (or, if the - cchheecckkjjoobbss shell option has been enabled using the sshhoopptt builtin, run- + If an attempt to exit bbaasshh is made while jobs are stopped (or, if the + cchheecckkjjoobbss shell option has been enabled using the sshhoopptt builtin, run- ning), the shell prints a warning message, and, if the cchheecckkjjoobbss option - is enabled, lists the jobs and their statuses. The jjoobbss command may - then be used to inspect their status. If a second attempt to exit is - made without an intervening command, the shell does not print another + is enabled, lists the jobs and their statuses. The jjoobbss command may + then be used to inspect their status. If a second attempt to exit is + made without an intervening command, the shell does not print another warning, and any stopped jobs are terminated. - When the shell is waiting for a job or process using the wwaaiitt builtin, - and job control is enabled, wwaaiitt will return when the job changes - state. The --ff option causes wwaaiitt to wait until the job or process ter- + When the shell is waiting for a job or process using the wwaaiitt builtin, + and job control is enabled, wwaaiitt will return when the job changes + state. The --ff option causes wwaaiitt to wait until the job or process ter- minates before returning. PPRROOMMPPTTIINNGG When executing interactively, bbaasshh displays the primary prompt PPSS11 when - it is ready to read a command, and the secondary prompt PPSS22 when it - needs more input to complete a command. BBaasshh displays PPSS00 after it - reads a command but before executing it. BBaasshh displays PPSS44 as de- - scribed above before tracing each command when the --xx option is en- - abled. BBaasshh allows these prompt strings to be customized by inserting - a number of backslash-escaped special characters that are decoded as + it is ready to read a command, and the secondary prompt PPSS22 when it + needs more input to complete a command. BBaasshh displays PPSS00 after it + reads a command but before executing it. BBaasshh displays PPSS44 as de- + scribed above before tracing each command when the --xx option is en- + abled. BBaasshh allows these prompt strings to be customized by inserting + a number of backslash-escaped special characters that are decoded as follows: \\aa an ASCII bell character (07) - \\dd the date in "Weekday Month Date" format (e.g., "Tue May + \\dd the date in "Weekday Month Date" format (e.g., "Tue May 26") \\DD{{_f_o_r_m_a_t}} the _f_o_r_m_a_t is passed to _s_t_r_f_t_i_m_e(3) and the result is in- serted into the prompt string; an empty _f_o_r_m_a_t results in - a locale-specific time representation. The braces are + a locale-specific time representation. The braces are required \\ee an ASCII escape character (033) \\hh the hostname up to the first `.' @@ -3110,7 +3113,7 @@ PPRROOMMPPTTIINNGG \\ll the basename of the shell's terminal device name \\nn newline \\rr carriage return - \\ss the name of the shell, the basename of $$00 (the portion + \\ss the name of the shell, the basename of $$00 (the portion following the final slash) \\tt the current time in 24-hour HH:MM:SS format \\TT the current time in 12-hour HH:MM:SS format @@ -3119,8 +3122,8 @@ PPRROOMMPPTTIINNGG \\uu the username of the current user \\vv the version of bbaasshh (e.g., 2.00) \\VV the release of bbaasshh, version + patch level (e.g., 2.00.0) - \\ww the value of the PPWWDD shell variable ($$PPWWDD), with $$HHOOMMEE - abbreviated with a tilde (uses the value of the + \\ww the value of the PPWWDD shell variable ($$PPWWDD), with $$HHOOMMEE + abbreviated with a tilde (uses the value of the PPRROOMMPPTT__DDIIRRTTRRIIMM variable) \\WW the basename of $$PPWWDD, with $$HHOOMMEE abbreviated with a tilde \\!! the history number of this command @@ -3128,70 +3131,70 @@ PPRROOMMPPTTIINNGG \\$$ if the effective UID is 0, a ##, otherwise a $$ \\_n_n_n the character corresponding to the octal number _n_n_n \\\\ a backslash - \\[[ begin a sequence of non-printing characters, which could - be used to embed a terminal control sequence into the + \\[[ begin a sequence of non-printing characters, which could + be used to embed a terminal control sequence into the prompt \\]] end a sequence of non-printing characters - The command number and the history number are usually different: the - history number of a command is its position in the history list, which - may include commands restored from the history file (see HHIISSTTOORRYY be- - low), while the command number is the position in the sequence of com- - mands executed during the current shell session. After the string is - decoded, it is expanded via parameter expansion, command substitution, - arithmetic expansion, and quote removal, subject to the value of the + The command number and the history number are usually different: the + history number of a command is its position in the history list, which + may include commands restored from the history file (see HHIISSTTOORRYY be- + low), while the command number is the position in the sequence of com- + mands executed during the current shell session. After the string is + decoded, it is expanded via parameter expansion, command substitution, + arithmetic expansion, and quote removal, subject to the value of the pprroommppttvvaarrss shell option (see the description of the sshhoopptt command under - SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). This can have unwanted side effects if - escaped portions of the string appear within command substitution or + SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). This can have unwanted side effects if + escaped portions of the string appear within command substitution or contain characters special to word expansion. RREEAADDLLIINNEE - This is the library that handles reading input when using an interac- + This is the library that handles reading input when using an interac- tive shell, unless the ----nnooeeddiittiinngg option is given at shell invocation. Line editing is also used when using the --ee option to the rreeaadd builtin. By default, the line editing commands are similar to those of Emacs. A vi-style line editing interface is also available. Line editing can be - enabled at any time using the --oo eemmaaccss or --oo vvii options to the sseett - builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). To turn off line editing - after the shell is running, use the ++oo eemmaaccss or ++oo vvii options to the + enabled at any time using the --oo eemmaaccss or --oo vvii options to the sseett + builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). To turn off line editing + after the shell is running, use the ++oo eemmaaccss or ++oo vvii options to the sseett builtin. RReeaaddlliinnee NNoottaattiioonn In this section, the Emacs-style notation is used to denote keystrokes. - Control keys are denoted by C-_k_e_y, e.g., C-n means Control-N. Simi- - larly, _m_e_t_a keys are denoted by M-_k_e_y, so M-x means Meta-X. (On key- - boards without a _m_e_t_a key, M-_x means ESC _x, i.e., press the Escape key + Control keys are denoted by C-_k_e_y, e.g., C-n means Control-N. Simi- + larly, _m_e_t_a keys are denoted by M-_k_e_y, so M-x means Meta-X. (On key- + boards without a _m_e_t_a key, M-_x means ESC _x, i.e., press the Escape key then the _x key. This makes ESC the _m_e_t_a _p_r_e_f_i_x. The combination M-C-_x - means ESC-Control-_x, or press the Escape key then hold the Control key + means ESC-Control-_x, or press the Escape key then hold the Control key while pressing the _x key.) Readline commands may be given numeric _a_r_g_u_m_e_n_t_s, which normally act as - a repeat count. Sometimes, however, it is the sign of the argument - that is significant. Passing a negative argument to a command that - acts in the forward direction (e.g., kkiillll--lliinnee) causes that command to - act in a backward direction. Commands whose behavior with arguments + a repeat count. Sometimes, however, it is the sign of the argument + that is significant. Passing a negative argument to a command that + acts in the forward direction (e.g., kkiillll--lliinnee) causes that command to + act in a backward direction. Commands whose behavior with arguments deviates from this are noted below. - When a command is described as _k_i_l_l_i_n_g text, the text deleted is saved + When a command is described as _k_i_l_l_i_n_g text, the text deleted is saved for possible future retrieval (_y_a_n_k_i_n_g). The killed text is saved in a _k_i_l_l _r_i_n_g. Consecutive kills cause the text to be accumulated into one unit, which can be yanked all at once. Commands which do not kill text separate the chunks of text on the kill ring. RReeaaddlliinnee IInniittiiaalliizzaattiioonn - Readline is customized by putting commands in an initialization file - (the _i_n_p_u_t_r_c file). The name of this file is taken from the value of + Readline is customized by putting commands in an initialization file + (the _i_n_p_u_t_r_c file). The name of this file is taken from the value of the IINNPPUUTTRRCC variable. If that variable is unset, the default is _~_/_._i_n_- - _p_u_t_r_c. If that file does not exist or cannot be read, the ultimate - default is _/_e_t_c_/_i_n_p_u_t_r_c. When a program which uses the readline li- - brary starts up, the initialization file is read, and the key bindings - and variables are set. There are only a few basic constructs allowed - in the readline initialization file. Blank lines are ignored. Lines - beginning with a ## are comments. Lines beginning with a $$ indicate - conditional constructs. Other lines denote key bindings and variable + _p_u_t_r_c. If that file does not exist or cannot be read, the ultimate + default is _/_e_t_c_/_i_n_p_u_t_r_c. When a program which uses the readline li- + brary starts up, the initialization file is read, and the key bindings + and variables are set. There are only a few basic constructs allowed + in the readline initialization file. Blank lines are ignored. Lines + beginning with a ## are comments. Lines beginning with a $$ indicate + conditional constructs. Other lines denote key bindings and variable settings. - The default key-bindings may be changed with an _i_n_p_u_t_r_c file. Other + The default key-bindings may be changed with an _i_n_p_u_t_r_c file. Other programs that use this library may add their own commands and bindings. For example, placing @@ -3199,18 +3202,18 @@ RREEAADDLLIINNEE M-Control-u: universal-argument or C-Meta-u: universal-argument - into the _i_n_p_u_t_r_c would make M-C-u execute the readline command _u_n_i_v_e_r_- + into the _i_n_p_u_t_r_c would make M-C-u execute the readline command _u_n_i_v_e_r_- _s_a_l_-_a_r_g_u_m_e_n_t. - The following symbolic character names are recognized: _R_U_B_O_U_T, _D_E_L, + The following symbolic character names are recognized: _R_U_B_O_U_T, _D_E_L, _E_S_C, _L_F_D, _N_E_W_L_I_N_E, _R_E_T, _R_E_T_U_R_N, _S_P_C, _S_P_A_C_E, and _T_A_B. - In addition to command names, readline allows keys to be bound to a + In addition to command names, readline allows keys to be bound to a string that is inserted when the key is pressed (a _m_a_c_r_o). RReeaaddlliinnee KKeeyy BBiinnddiinnggss - The syntax for controlling key bindings in the _i_n_p_u_t_r_c file is simple. - All that is required is the name of the command or the text of a macro + The syntax for controlling key bindings in the _i_n_p_u_t_r_c file is simple. + All that is required is the name of the command or the text of a macro and a key sequence to which it should be bound. The name may be speci- fied in one of two ways: as a symbolic key name, possibly with _M_e_t_a_- or _C_o_n_t_r_o_l_- prefixes, or as a key sequence. @@ -3222,15 +3225,15 @@ RREEAADDLLIINNEE Meta-Rubout: backward-kill-word Control-o: "> output" - In the above example, _C_-_u is bound to the function uunniivveerrssaall--aarrgguummeenntt, - _M_-_D_E_L is bound to the function bbaacckkwwaarrdd--kkiillll--wwoorrdd, and _C_-_o is bound to - run the macro expressed on the right hand side (that is, to insert the + In the above example, _C_-_u is bound to the function uunniivveerrssaall--aarrgguummeenntt, + _M_-_D_E_L is bound to the function bbaacckkwwaarrdd--kkiillll--wwoorrdd, and _C_-_o is bound to + run the macro expressed on the right hand side (that is, to insert the text ``> output'' into the line). - In the second form, ""kkeeyysseeqq"":_f_u_n_c_t_i_o_n_-_n_a_m_e or _m_a_c_r_o, kkeeyysseeqq differs - from kkeeyynnaammee above in that strings denoting an entire key sequence may - be specified by placing the sequence within double quotes. Some GNU - Emacs style key escapes can be used, as in the following example, but + In the second form, ""kkeeyysseeqq"":_f_u_n_c_t_i_o_n_-_n_a_m_e or _m_a_c_r_o, kkeeyysseeqq differs + from kkeeyynnaammee above in that strings denoting an entire key sequence may + be specified by placing the sequence within double quotes. Some GNU + Emacs style key escapes can be used, as in the following example, but the symbolic character names are not recognized. "\C-u": universal-argument @@ -3238,7 +3241,7 @@ RREEAADDLLIINNEE "\e[11~": "Function Key 1" In this example, _C_-_u is again bound to the function uunniivveerrssaall--aarrgguummeenntt. - _C_-_x _C_-_r is bound to the function rree--rreeaadd--iinniitt--ffiillee, and _E_S_C _[ _1 _1 _~ is + _C_-_x _C_-_r is bound to the function rree--rreeaadd--iinniitt--ffiillee, and _E_S_C _[ _1 _1 _~ is bound to insert the text ``Function Key 1''. The full set of GNU Emacs style escape sequences is @@ -3249,7 +3252,7 @@ RREEAADDLLIINNEE \\"" literal " \\'' literal ' - In addition to the GNU Emacs style escape sequences, a second set of + In addition to the GNU Emacs style escape sequences, a second set of backslash escapes is available: \\aa alert (bell) \\bb backspace @@ -3259,20 +3262,20 @@ RREEAADDLLIINNEE \\rr carriage return \\tt horizontal tab \\vv vertical tab - \\_n_n_n the eight-bit character whose value is the octal value + \\_n_n_n the eight-bit character whose value is the octal value _n_n_n (one to three digits) - \\xx_H_H the eight-bit character whose value is the hexadecimal + \\xx_H_H the eight-bit character whose value is the hexadecimal value _H_H (one or two hex digits) When entering the text of a macro, single or double quotes must be used to indicate a macro definition. Unquoted text is assumed to be a func- - tion name. In the macro body, the backslash escapes described above - are expanded. Backslash will quote any other character in the macro + tion name. In the macro body, the backslash escapes described above + are expanded. Backslash will quote any other character in the macro text, including " and '. - BBaasshh allows the current readline key bindings to be displayed or modi- - fied with the bbiinndd builtin command. The editing mode may be switched - during interactive use by using the --oo option to the sseett builtin com- + BBaasshh allows the current readline key bindings to be displayed or modi- + fied with the bbiinndd builtin command. The editing mode may be switched + during interactive use by using the --oo option to the sseett builtin com- mand (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). RReeaaddlliinnee VVaarriiaabblleess @@ -3283,104 +3286,104 @@ RREEAADDLLIINNEE sseett _v_a_r_i_a_b_l_e_-_n_a_m_e _v_a_l_u_e or using the bbiinndd builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - Except where noted, readline variables can take the values OOnn or OOffff - (without regard to case). Unrecognized variable names are ignored. - When a variable value is read, empty or null values, "on" (case-insen- + Except where noted, readline variables can take the values OOnn or OOffff + (without regard to case). Unrecognized variable names are ignored. + When a variable value is read, empty or null values, "on" (case-insen- sitive), and "1" are equivalent to OOnn. All other values are equivalent to OOffff. The variables and their default values are: aaccttiivvee--rreeggiioonn--ssttaarrtt--ccoolloorr - A string variable that controls the text color and background - when displaying the text in the active region (see the descrip- - tion of eennaabbllee--aaccttiivvee--rreeggiioonn below). This string must not take + A string variable that controls the text color and background + when displaying the text in the active region (see the descrip- + tion of eennaabbllee--aaccttiivvee--rreeggiioonn below). This string must not take up any physical character positions on the display, so it should - consist only of terminal escape sequences. It is output to the - terminal before displaying the text in the active region. This - variable is reset to the default value whenever the terminal - type changes. The default value is the string that puts the - terminal in standout mode, as obtained from the terminal's ter- + consist only of terminal escape sequences. It is output to the + terminal before displaying the text in the active region. This + variable is reset to the default value whenever the terminal + type changes. The default value is the string that puts the + terminal in standout mode, as obtained from the terminal's ter- minfo description. A sample value might be "\e[01;33m". aaccttiivvee--rreeggiioonn--eenndd--ccoolloorr - A string variable that "undoes" the effects of aaccttiivvee--rree-- - ggiioonn--ssttaarrtt--ccoolloorr and restores "normal" terminal display appear- - ance after displaying text in the active region. This string - must not take up any physical character positions on the dis- - play, so it should consist only of terminal escape sequences. - It is output to the terminal after displaying the text in the - active region. This variable is reset to the default value - whenever the terminal type changes. The default value is the - string that restores the terminal from standout mode, as ob- + A string variable that "undoes" the effects of aaccttiivvee--rree-- + ggiioonn--ssttaarrtt--ccoolloorr and restores "normal" terminal display appear- + ance after displaying text in the active region. This string + must not take up any physical character positions on the dis- + play, so it should consist only of terminal escape sequences. + It is output to the terminal after displaying the text in the + active region. This variable is reset to the default value + whenever the terminal type changes. The default value is the + string that restores the terminal from standout mode, as ob- tained from the terminal's terminfo description. A sample value might be "\e[0m". bbeellll--ssttyyllee ((aauuddiibbllee)) - Controls what happens when readline wants to ring the terminal + Controls what happens when readline wants to ring the terminal bell. If set to nnoonnee, readline never rings the bell. If set to - vviissiibbllee, readline uses a visible bell if one is available. If + vviissiibbllee, readline uses a visible bell if one is available. If set to aauuddiibbllee, readline attempts to ring the terminal's bell. bbiinndd--ttttyy--ssppeecciiaall--cchhaarrss ((OOnn)) - If set to OOnn, readline attempts to bind the control characters + If set to OOnn, readline attempts to bind the control characters treated specially by the kernel's terminal driver to their read- line equivalents. bblliinnkk--mmaattcchhiinngg--ppaarreenn ((OOffff)) If set to OOnn, readline attempts to briefly move the cursor to an opening parenthesis when a closing parenthesis is inserted. ccoolloorreedd--ccoommpplleettiioonn--pprreeffiixx ((OOffff)) - If set to OOnn, when listing completions, readline displays the + If set to OOnn, when listing completions, readline displays the common prefix of the set of possible completions using a differ- - ent color. The color definitions are taken from the value of + ent color. The color definitions are taken from the value of the LLSS__CCOOLLOORRSS environment variable. If there is a color defini- - tion in $$LLSS__CCOOLLOORRSS for the custom suffix "readline-colored-com- - pletion-prefix", readline uses this color for the common prefix + tion in $$LLSS__CCOOLLOORRSS for the custom suffix "readline-colored-com- + pletion-prefix", readline uses this color for the common prefix instead of its default. ccoolloorreedd--ssttaattss ((OOffff)) - If set to OOnn, readline displays possible completions using dif- - ferent colors to indicate their file type. The color defini- - tions are taken from the value of the LLSS__CCOOLLOORRSS environment + If set to OOnn, readline displays possible completions using dif- + ferent colors to indicate their file type. The color defini- + tions are taken from the value of the LLSS__CCOOLLOORRSS environment variable. ccoommmmeenntt--bbeeggiinn ((````##'''')) - The string that is inserted when the readline iinnsseerrtt--ccoommmmeenntt + The string that is inserted when the readline iinnsseerrtt--ccoommmmeenntt command is executed. This command is bound to MM--## in emacs mode and to ## in vi command mode. ccoommpplleettiioonn--ddiissppllaayy--wwiiddtthh ((--11)) - The number of screen columns used to display possible matches - when performing completion. The value is ignored if it is less - than 0 or greater than the terminal screen width. A value of 0 - will cause matches to be displayed one per line. The default + The number of screen columns used to display possible matches + when performing completion. The value is ignored if it is less + than 0 or greater than the terminal screen width. A value of 0 + will cause matches to be displayed one per line. The default value is -1. ccoommpplleettiioonn--iiggnnoorree--ccaassee ((OOffff)) If set to OOnn, readline performs filename matching and completion in a case-insensitive fashion. ccoommpplleettiioonn--mmaapp--ccaassee ((OOffff)) - If set to OOnn, and ccoommpplleettiioonn--iiggnnoorree--ccaassee is enabled, readline - treats hyphens (_-) and underscores (__) as equivalent when per- + If set to OOnn, and ccoommpplleettiioonn--iiggnnoorree--ccaassee is enabled, readline + treats hyphens (_-) and underscores (__) as equivalent when per- forming case-insensitive filename matching and completion. ccoommpplleettiioonn--pprreeffiixx--ddiissppllaayy--lleennggtthh ((00)) - The length in characters of the common prefix of a list of pos- - sible completions that is displayed without modification. When - set to a value greater than zero, common prefixes longer than - this value are replaced with an ellipsis when displaying possi- + The length in characters of the common prefix of a list of pos- + sible completions that is displayed without modification. When + set to a value greater than zero, common prefixes longer than + this value are replaced with an ellipsis when displaying possi- ble completions. ccoommpplleettiioonn--qquueerryy--iitteemmss ((110000)) - This determines when the user is queried about viewing the num- - ber of possible completions generated by the ppoossssiibbllee--ccoommppllee-- - ttiioonnss command. It may be set to any integer value greater than - or equal to zero. If the number of possible completions is - greater than or equal to the value of this variable, readline - will ask whether or not the user wishes to view them; otherwise - they are simply listed on the terminal. A zero value means + This determines when the user is queried about viewing the num- + ber of possible completions generated by the ppoossssiibbllee--ccoommppllee-- + ttiioonnss command. It may be set to any integer value greater than + or equal to zero. If the number of possible completions is + greater than or equal to the value of this variable, readline + will ask whether or not the user wishes to view them; otherwise + they are simply listed on the terminal. A zero value means readline should never ask; negative values are treated as zero. ccoonnvveerrtt--mmeettaa ((OOnn)) - If set to OOnn, readline will convert characters with the eighth + If set to OOnn, readline will convert characters with the eighth bit set to an ASCII key sequence by stripping the eighth bit and - prefixing an escape character (in effect, using escape as the - _m_e_t_a _p_r_e_f_i_x). The default is _O_n, but readline will set it to + prefixing an escape character (in effect, using escape as the + _m_e_t_a _p_r_e_f_i_x). The default is _O_n, but readline will set it to _O_f_f if the locale contains eight-bit characters. ddiissaabbllee--ccoommpplleettiioonn ((OOffff)) If set to OOnn, readline will inhibit word completion. Completion - characters will be inserted into the line as if they had been + characters will be inserted into the line as if they had been mapped to sseellff--iinnsseerrtt. eecchhoo--ccoonnttrrooll--cchhaarraacctteerrss ((OOnn)) - When set to OOnn, on operating systems that indicate they support + When set to OOnn, on operating systems that indicate they support it, readline echoes a character corresponding to a signal gener- ated from the keyboard. eeddiittiinngg--mmooddee ((eemmaaccss)) @@ -3388,29 +3391,29 @@ RREEAADDLLIINNEE ilar to _E_m_a_c_s or _v_i. eeddiittiinngg--mmooddee can be set to either eemmaaccss or vvii. eemmaaccss--mmooddee--ssttrriinngg ((@@)) - If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is + If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is displayed immediately before the last line of the primary prompt when emacs editing mode is active. The value is expanded like a - key binding, so the standard set of meta- and control prefixes - and backslash escape sequences is available. Use the \1 and \2 - escapes to begin and end sequences of non-printing characters, - which can be used to embed a terminal control sequence into the + key binding, so the standard set of meta- and control prefixes + and backslash escape sequences is available. Use the \1 and \2 + escapes to begin and end sequences of non-printing characters, + which can be used to embed a terminal control sequence into the mode string. eennaabbllee--aaccttiivvee--rreeggiioonn ((OOnn)) - The _p_o_i_n_t is the current cursor position, and _m_a_r_k refers to a - saved cursor position. The text between the point and mark is - referred to as the _r_e_g_i_o_n. When this variable is set to _O_n, - readline allows certain commands to designate the region as _a_c_- - _t_i_v_e. When the region is active, readline highlights the text - in the region using the value of the aaccttiivvee--rreeggiioonn--ssttaarrtt--ccoolloorr, - which defaults to the string that enables the terminal's stand- - out mode. The active region shows the text inserted by brack- - eted-paste and any matching text found by incremental and non- + The _p_o_i_n_t is the current cursor position, and _m_a_r_k refers to a + saved cursor position. The text between the point and mark is + referred to as the _r_e_g_i_o_n. When this variable is set to _O_n, + readline allows certain commands to designate the region as _a_c_- + _t_i_v_e. When the region is active, readline highlights the text + in the region using the value of the aaccttiivvee--rreeggiioonn--ssttaarrtt--ccoolloorr, + which defaults to the string that enables the terminal's stand- + out mode. The active region shows the text inserted by brack- + eted-paste and any matching text found by incremental and non- incremental history searches. eennaabbllee--bbrraacckkeetteedd--ppaassttee ((OOnn)) - When set to OOnn, readline configures the terminal to insert each - paste into the editing buffer as a single string of characters, - instead of treating each character as if it had been read from + When set to OOnn, readline configures the terminal to insert each + paste into the editing buffer as a single string of characters, + instead of treating each character as if it had been read from the keyboard. This prevents readline from executing any editing commands bound to key sequences appearing in the pasted text. eennaabbllee--kkeeyyppaadd ((OOffff)) @@ -3418,189 +3421,189 @@ RREEAADDLLIINNEE pad when it is called. Some systems need this to enable the ar- row keys. eennaabbllee--mmeettaa--kkeeyy ((OOnn)) - When set to OOnn, readline will try to enable any meta modifier - key the terminal claims to support when it is called. On many + When set to OOnn, readline will try to enable any meta modifier + key the terminal claims to support when it is called. On many terminals, the meta key is used to send eight-bit characters. eexxppaanndd--ttiillddee ((OOffff)) - If set to OOnn, tilde expansion is performed when readline at- + If set to OOnn, tilde expansion is performed when readline at- tempts word completion. hhiissttoorryy--pprreesseerrvvee--ppooiinntt ((OOffff)) - If set to OOnn, the history code attempts to place point at the - same location on each history line retrieved with pprreevviioouuss--hhiiss-- + If set to OOnn, the history code attempts to place point at the + same location on each history line retrieved with pprreevviioouuss--hhiiss-- ttoorryy or nneexxtt--hhiissttoorryy. hhiissttoorryy--ssiizzee ((uunnsseett)) - Set the maximum number of history entries saved in the history - list. If set to zero, any existing history entries are deleted + Set the maximum number of history entries saved in the history + list. If set to zero, any existing history entries are deleted and no new entries are saved. If set to a value less than zero, - the number of history entries is not limited. By default, the - number of history entries is set to the value of the HHIISSTTSSIIZZEE - shell variable. If an attempt is made to set _h_i_s_t_o_r_y_-_s_i_z_e to a + the number of history entries is not limited. By default, the + number of history entries is set to the value of the HHIISSTTSSIIZZEE + shell variable. If an attempt is made to set _h_i_s_t_o_r_y_-_s_i_z_e to a non-numeric value, the maximum number of history entries will be set to 500. hhoorriizzoonnttaall--ssccrroollll--mmooddee ((OOffff)) - When set to OOnn, makes readline use a single line for display, + When set to OOnn, makes readline use a single line for display, scrolling the input horizontally on a single screen line when it - becomes longer than the screen width rather than wrapping to a - new line. This setting is automatically enabled for terminals + becomes longer than the screen width rather than wrapping to a + new line. This setting is automatically enabled for terminals of height 1. iinnppuutt--mmeettaa ((OOffff)) - If set to OOnn, readline will enable eight-bit input (that is, it + If set to OOnn, readline will enable eight-bit input (that is, it will not strip the eighth bit from the characters it reads), re- - gardless of what the terminal claims it can support. The name - mmeettaa--ffllaagg is a synonym for this variable. The default is _O_f_f, - but readline will set it to _O_n if the locale contains eight-bit + gardless of what the terminal claims it can support. The name + mmeettaa--ffllaagg is a synonym for this variable. The default is _O_f_f, + but readline will set it to _O_n if the locale contains eight-bit characters. iisseeaarrcchh--tteerrmmiinnaattoorrss ((````CC--[[CC--JJ'''')) - The string of characters that should terminate an incremental - search without subsequently executing the character as a com- - mand. If this variable has not been given a value, the charac- + The string of characters that should terminate an incremental + search without subsequently executing the character as a com- + mand. If this variable has not been given a value, the charac- ters _E_S_C and _C_-_J will terminate an incremental search. kkeeyymmaapp ((eemmaaccss)) - Set the current readline keymap. The set of valid keymap names - is _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_c_o_m_- - _m_a_n_d, and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d; _e_m_a_c_s is - equivalent to _e_m_a_c_s_-_s_t_a_n_d_a_r_d. The default value is _e_m_a_c_s; the + Set the current readline keymap. The set of valid keymap names + is _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_c_o_m_- + _m_a_n_d, and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d; _e_m_a_c_s is + equivalent to _e_m_a_c_s_-_s_t_a_n_d_a_r_d. The default value is _e_m_a_c_s; the value of eeddiittiinngg--mmooddee also affects the default keymap. kkeeyysseeqq--ttiimmeeoouutt ((550000)) - Specifies the duration _r_e_a_d_l_i_n_e will wait for a character when - reading an ambiguous key sequence (one that can form a complete + Specifies the duration _r_e_a_d_l_i_n_e will wait for a character when + reading an ambiguous key sequence (one that can form a complete key sequence using the input read so far, or can take additional - input to complete a longer key sequence). If no input is re- - ceived within the timeout, _r_e_a_d_l_i_n_e will use the shorter but - complete key sequence. The value is specified in milliseconds, - so a value of 1000 means that _r_e_a_d_l_i_n_e will wait one second for - additional input. If this variable is set to a value less than - or equal to zero, or to a non-numeric value, _r_e_a_d_l_i_n_e will wait - until another key is pressed to decide which key sequence to + input to complete a longer key sequence). If no input is re- + ceived within the timeout, _r_e_a_d_l_i_n_e will use the shorter but + complete key sequence. The value is specified in milliseconds, + so a value of 1000 means that _r_e_a_d_l_i_n_e will wait one second for + additional input. If this variable is set to a value less than + or equal to zero, or to a non-numeric value, _r_e_a_d_l_i_n_e will wait + until another key is pressed to decide which key sequence to complete. mmaarrkk--ddiirreeccttoorriieess ((OOnn)) If set to OOnn, completed directory names have a slash appended. mmaarrkk--mmooddiiffiieedd--lliinneess ((OOffff)) - If set to OOnn, history lines that have been modified are dis- + If set to OOnn, history lines that have been modified are dis- played with a preceding asterisk (**). mmaarrkk--ssyymmlliinnkkeedd--ddiirreeccttoorriieess ((OOffff)) If set to OOnn, completed names which are symbolic links to direc- - tories have a slash appended (subject to the value of mmaarrkk--ddii-- + tories have a slash appended (subject to the value of mmaarrkk--ddii-- rreeccttoorriieess). mmaattcchh--hhiiddddeenn--ffiilleess ((OOnn)) - This variable, when set to OOnn, causes readline to match files - whose names begin with a `.' (hidden files) when performing - filename completion. If set to OOffff, the leading `.' must be + This variable, when set to OOnn, causes readline to match files + whose names begin with a `.' (hidden files) when performing + filename completion. If set to OOffff, the leading `.' must be supplied by the user in the filename to be completed. mmeennuu--ccoommpplleettee--ddiissppllaayy--pprreeffiixx ((OOffff)) - If set to OOnn, menu completion displays the common prefix of the + If set to OOnn, menu completion displays the common prefix of the list of possible completions (which may be empty) before cycling through the list. oouuttppuutt--mmeettaa ((OOffff)) - If set to OOnn, readline will display characters with the eighth + If set to OOnn, readline will display characters with the eighth bit set directly rather than as a meta-prefixed escape sequence. The default is _O_f_f, but readline will set it to _O_n if the locale contains eight-bit characters. ppaaggee--ccoommpplleettiioonnss ((OOnn)) - If set to OOnn, readline uses an internal _m_o_r_e-like pager to dis- + If set to OOnn, readline uses an internal _m_o_r_e-like pager to dis- play a screenful of possible completions at a time. pprriinntt--ccoommpplleettiioonnss--hhoorriizzoonnttaallllyy ((OOffff)) - If set to OOnn, readline will display completions with matches - sorted horizontally in alphabetical order, rather than down the + If set to OOnn, readline will display completions with matches + sorted horizontally in alphabetical order, rather than down the screen. rreevveerrtt--aallll--aatt--nneewwlliinnee ((OOffff)) - If set to OOnn, readline will undo all changes to history lines + If set to OOnn, readline will undo all changes to history lines before returning when aacccceepptt--lliinnee is executed. By default, his- - tory lines may be modified and retain individual undo lists + tory lines may be modified and retain individual undo lists across calls to rreeaaddlliinnee. sshhooww--aallll--iiff--aammbbiigguuoouuss ((OOffff)) - This alters the default behavior of the completion functions. + This alters the default behavior of the completion functions. If set to OOnn, words which have more than one possible completion - cause the matches to be listed immediately instead of ringing + cause the matches to be listed immediately instead of ringing the bell. sshhooww--aallll--iiff--uunnmmooddiiffiieedd ((OOffff)) - This alters the default behavior of the completion functions in + This alters the default behavior of the completion functions in a fashion similar to sshhooww--aallll--iiff--aammbbiigguuoouuss. If set to OOnn, words - which have more than one possible completion without any possi- - ble partial completion (the possible completions don't share a - common prefix) cause the matches to be listed immediately in- + which have more than one possible completion without any possi- + ble partial completion (the possible completions don't share a + common prefix) cause the matches to be listed immediately in- stead of ringing the bell. sshhooww--mmooddee--iinn--pprroommpptt ((OOffff)) - If set to OOnn, add a string to the beginning of the prompt indi- - cating the editing mode: emacs, vi command, or vi insertion. + If set to OOnn, add a string to the beginning of the prompt indi- + cating the editing mode: emacs, vi command, or vi insertion. The mode strings are user-settable (e.g., _e_m_a_c_s_-_m_o_d_e_-_s_t_r_i_n_g). sskkiipp--ccoommpplleetteedd--tteexxtt ((OOffff)) - If set to OOnn, this alters the default completion behavior when - inserting a single match into the line. It's only active when - performing completion in the middle of a word. If enabled, - readline does not insert characters from the completion that - match characters after point in the word being completed, so + If set to OOnn, this alters the default completion behavior when + inserting a single match into the line. It's only active when + performing completion in the middle of a word. If enabled, + readline does not insert characters from the completion that + match characters after point in the word being completed, so portions of the word following the cursor are not duplicated. vvii--ccmmdd--mmooddee--ssttrriinngg ((((ccmmdd)))) - If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is - displayed immediately before the last line of the primary prompt - when vi editing mode is active and in command mode. The value - is expanded like a key binding, so the standard set of meta- and - control prefixes and backslash escape sequences is available. - Use the \1 and \2 escapes to begin and end sequences of non- - printing characters, which can be used to embed a terminal con- - trol sequence into the mode string. - vvii--iinnss--mmooddee--ssttrriinngg ((((iinnss)))) If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is displayed immediately before the last line of the primary prompt - when vi editing mode is active and in insertion mode. The value + when vi editing mode is active and in command mode. The value is expanded like a key binding, so the standard set of meta- and control prefixes and backslash escape sequences is available. Use the \1 and \2 escapes to begin and end sequences of non- printing characters, which can be used to embed a terminal con- trol sequence into the mode string. + vvii--iinnss--mmooddee--ssttrriinngg ((((iinnss)))) + If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is + displayed immediately before the last line of the primary prompt + when vi editing mode is active and in insertion mode. The value + is expanded like a key binding, so the standard set of meta- and + control prefixes and backslash escape sequences is available. + Use the \1 and \2 escapes to begin and end sequences of non- + printing characters, which can be used to embed a terminal con- + trol sequence into the mode string. vviissiibbllee--ssttaattss ((OOffff)) - If set to OOnn, a character denoting a file's type as reported by - _s_t_a_t(2) is appended to the filename when listing possible com- + If set to OOnn, a character denoting a file's type as reported by + _s_t_a_t(2) is appended to the filename when listing possible com- pletions. RReeaaddlliinnee CCoonnddiittiioonnaall CCoonnssttrruuccttss - Readline implements a facility similar in spirit to the conditional - compilation features of the C preprocessor which allows key bindings - and variable settings to be performed as the result of tests. There + Readline implements a facility similar in spirit to the conditional + compilation features of the C preprocessor which allows key bindings + and variable settings to be performed as the result of tests. There are four parser directives used. - $$iiff The $$iiff construct allows bindings to be made based on the edit- - ing mode, the terminal being used, or the application using + $$iiff The $$iiff construct allows bindings to be made based on the edit- + ing mode, the terminal being used, or the application using readline. The text of the test, after any comparison operator, - extends to the end of the line; unless otherwise noted, no + extends to the end of the line; unless otherwise noted, no characters are required to isolate it. - mmooddee The mmooddee== form of the $$iiff directive is used to test - whether readline is in emacs or vi mode. This may be - used in conjunction with the sseett kkeeyymmaapp command, for in- - stance, to set bindings in the _e_m_a_c_s_-_s_t_a_n_d_a_r_d and - _e_m_a_c_s_-_c_t_l_x keymaps only if readline is starting out in + mmooddee The mmooddee== form of the $$iiff directive is used to test + whether readline is in emacs or vi mode. This may be + used in conjunction with the sseett kkeeyymmaapp command, for in- + stance, to set bindings in the _e_m_a_c_s_-_s_t_a_n_d_a_r_d and + _e_m_a_c_s_-_c_t_l_x keymaps only if readline is starting out in emacs mode. - tteerrmm The tteerrmm== form may be used to include terminal-specific + tteerrmm The tteerrmm== form may be used to include terminal-specific key bindings, perhaps to bind the key sequences output by the terminal's function keys. The word on the right side of the == is tested against both the full name of the ter- - minal and the portion of the terminal name before the - first --. This allows _s_u_n to match both _s_u_n and _s_u_n_-_c_m_d, + minal and the portion of the terminal name before the + first --. This allows _s_u_n to match both _s_u_n and _s_u_n_-_c_m_d, for instance. vveerrssiioonn - The vveerrssiioonn test may be used to perform comparisons - against specific readline versions. The vveerrssiioonn expands - to the current readline version. The set of comparison - operators includes ==, (and ====), !!==, <<==, >>==, <<, and >>. - The version number supplied on the right side of the op- - erator consists of a major version number, an optional + The vveerrssiioonn test may be used to perform comparisons + against specific readline versions. The vveerrssiioonn expands + to the current readline version. The set of comparison + operators includes ==, (and ====), !!==, <<==, >>==, <<, and >>. + The version number supplied on the right side of the op- + erator consists of a major version number, an optional decimal point, and an optional minor version (e.g., 77..11). - If the minor version is omitted, it is assumed to be 00. + If the minor version is omitted, it is assumed to be 00. The operator may be separated from the string vveerrssiioonn and from the version number argument by whitespace. aapppplliiccaattiioonn The aapppplliiccaattiioonn construct is used to include application- - specific settings. Each program using the readline li- - brary sets the _a_p_p_l_i_c_a_t_i_o_n _n_a_m_e, and an initialization + specific settings. Each program using the readline li- + brary sets the _a_p_p_l_i_c_a_t_i_o_n _n_a_m_e, and an initialization file can test for a particular value. This could be used - to bind key sequences to functions useful for a specific - program. For instance, the following command adds a key - sequence that quotes the current or previous word in + to bind key sequences to functions useful for a specific + program. For instance, the following command adds a key + sequence that quotes the current or previous word in bbaasshh: $$iiff Bash @@ -3610,12 +3613,12 @@ RREEAADDLLIINNEE _v_a_r_i_a_b_l_e The _v_a_r_i_a_b_l_e construct provides simple equality tests for - readline variables and values. The permitted comparison - operators are _=, _=_=, and _!_=. The variable name must be + readline variables and values. The permitted comparison + operators are _=, _=_=, and _!_=. The variable name must be separated from the comparison operator by whitespace; the - operator may be separated from the value on the right - hand side by whitespace. Both string and boolean vari- - ables may be tested. Boolean variables must be tested + operator may be separated from the value on the right + hand side by whitespace. Both string and boolean vari- + ables may be tested. Boolean variables must be tested against the values _o_n and _o_f_f. $$eennddiiff This command, as seen in the previous example, terminates an $$iiff @@ -3625,51 +3628,51 @@ RREEAADDLLIINNEE test fails. $$iinncclluuddee - This directive takes a single filename as an argument and reads - commands and bindings from that file. For example, the follow- + This directive takes a single filename as an argument and reads + commands and bindings from that file. For example, the follow- ing directive would read _/_e_t_c_/_i_n_p_u_t_r_c: $$iinncclluuddee _/_e_t_c_/_i_n_p_u_t_r_c SSeeaarrcchhiinngg - Readline provides commands for searching through the command history + Readline provides commands for searching through the command history (see HHIISSTTOORRYY below) for lines containing a specified string. There are two search modes: _i_n_c_r_e_m_e_n_t_a_l and _n_o_n_-_i_n_c_r_e_m_e_n_t_a_l. - Incremental searches begin before the user has finished typing the - search string. As each character of the search string is typed, read- + Incremental searches begin before the user has finished typing the + search string. As each character of the search string is typed, read- line displays the next entry from the history matching the string typed - so far. An incremental search requires only as many characters as - needed to find the desired history entry. The characters present in - the value of the iisseeaarrcchh--tteerrmmiinnaattoorrss variable are used to terminate an + so far. An incremental search requires only as many characters as + needed to find the desired history entry. The characters present in + the value of the iisseeaarrcchh--tteerrmmiinnaattoorrss variable are used to terminate an incremental search. If that variable has not been assigned a value the - Escape and Control-J characters will terminate an incremental search. - Control-G will abort an incremental search and restore the original - line. When the search is terminated, the history entry containing the + Escape and Control-J characters will terminate an incremental search. + Control-G will abort an incremental search and restore the original + line. When the search is terminated, the history entry containing the search string becomes the current line. - To find other matching entries in the history list, type Control-S or - Control-R as appropriate. This will search backward or forward in the - history for the next entry matching the search string typed so far. - Any other key sequence bound to a readline command will terminate the - search and execute that command. For instance, a _n_e_w_l_i_n_e will termi- + To find other matching entries in the history list, type Control-S or + Control-R as appropriate. This will search backward or forward in the + history for the next entry matching the search string typed so far. + Any other key sequence bound to a readline command will terminate the + search and execute that command. For instance, a _n_e_w_l_i_n_e will termi- nate the search and accept the line, thereby executing the command from the history list. Readline remembers the last incremental search string. If two Control- - Rs are typed without any intervening characters defining a new search + Rs are typed without any intervening characters defining a new search string, any remembered search string is used. - Non-incremental searches read the entire search string before starting - to search for matching history lines. The search string may be typed + Non-incremental searches read the entire search string before starting + to search for matching history lines. The search string may be typed by the user or be part of the contents of the current line. RReeaaddlliinnee CCoommmmaanndd NNaammeess - The following is a list of the names of the commands and the default + The following is a list of the names of the commands and the default key sequences to which they are bound. Command names without an accom- panying key sequence are unbound by default. In the following descrip- - tions, _p_o_i_n_t refers to the current cursor position, and _m_a_r_k refers to - a cursor position saved by the sseett--mmaarrkk command. The text between the + tions, _p_o_i_n_t refers to the current cursor position, and _m_a_r_k refers to + a cursor position saved by the sseett--mmaarrkk command. The text between the point and mark is referred to as the _r_e_g_i_o_n. CCoommmmaannddss ffoorr MMoovviinngg @@ -3685,33 +3688,33 @@ RREEAADDLLIINNEE Move forward to the end of the next word. Words are composed of alphanumeric characters (letters and digits). bbaacckkwwaarrdd--wwoorrdd ((MM--bb)) - Move back to the start of the current or previous word. Words + Move back to the start of the current or previous word. Words are composed of alphanumeric characters (letters and digits). sshheellll--ffoorrwwaarrdd--wwoorrdd - Move forward to the end of the next word. Words are delimited + Move forward to the end of the next word. Words are delimited by non-quoted shell metacharacters. sshheellll--bbaacckkwwaarrdd--wwoorrdd - Move back to the start of the current or previous word. Words + Move back to the start of the current or previous word. Words are delimited by non-quoted shell metacharacters. pprreevviioouuss--ssccrreeeenn--lliinnee - Attempt to move point to the same physical screen column on the - previous physical screen line. This will not have the desired - effect if the current Readline line does not take up more than - one physical line or if point is not greater than the length of + Attempt to move point to the same physical screen column on the + previous physical screen line. This will not have the desired + effect if the current Readline line does not take up more than + one physical line or if point is not greater than the length of the prompt plus the screen width. nneexxtt--ssccrreeeenn--lliinnee - Attempt to move point to the same physical screen column on the + Attempt to move point to the same physical screen column on the next physical screen line. This will not have the desired effect - if the current Readline line does not take up more than one - physical line or if the length of the current Readline line is + if the current Readline line does not take up more than one + physical line or if the length of the current Readline line is not greater than the length of the prompt plus the screen width. cclleeaarr--ddiissppllaayy ((MM--CC--ll)) - Clear the screen and, if possible, the terminal's scrollback - buffer, then redraw the current line, leaving the current line + Clear the screen and, if possible, the terminal's scrollback + buffer, then redraw the current line, leaving the current line at the top of the screen. cclleeaarr--ssccrreeeenn ((CC--ll)) Clear the screen, then redraw the current line, leaving the cur- - rent line at the top of the screen. With an argument, refresh + rent line at the top of the screen. With an argument, refresh the current line without clearing the screen. rreeddrraaww--ccuurrrreenntt--lliinnee Refresh the current line. @@ -3719,79 +3722,79 @@ RREEAADDLLIINNEE CCoommmmaannddss ffoorr MMaanniippuullaattiinngg tthhee HHiissttoorryy aacccceepptt--lliinnee ((NNeewwlliinnee,, RReettuurrnn)) Accept the line regardless of where the cursor is. If this line - is non-empty, add it to the history list according to the state - of the HHIISSTTCCOONNTTRROOLL variable. If the line is a modified history + is non-empty, add it to the history list according to the state + of the HHIISSTTCCOONNTTRROOLL variable. If the line is a modified history line, then restore the history line to its original state. pprreevviioouuss--hhiissttoorryy ((CC--pp)) Fetch the previous command from the history list, moving back in the list. nneexxtt--hhiissttoorryy ((CC--nn)) - Fetch the next command from the history list, moving forward in + Fetch the next command from the history list, moving forward in the list. bbeeggiinnnniinngg--ooff--hhiissttoorryy ((MM--<<)) Move to the first line in the history. eenndd--ooff--hhiissttoorryy ((MM-->>)) - Move to the end of the input history, i.e., the line currently + Move to the end of the input history, i.e., the line currently being entered. ooppeerraattee--aanndd--ggeett--nneexxtt ((CC--oo)) - Accept the current line for execution and fetch the next line - relative to the current line from the history for editing. A - numeric argument, if supplied, specifies the history entry to + Accept the current line for execution and fetch the next line + relative to the current line from the history for editing. A + numeric argument, if supplied, specifies the history entry to use instead of the current line. ffeettcchh--hhiissttoorryy - With a numeric argument, fetch that entry from the history list + With a numeric argument, fetch that entry from the history list and make it the current line. Without an argument, move back to the first entry in the history list. rreevveerrssee--sseeaarrcchh--hhiissttoorryy ((CC--rr)) - Search backward starting at the current line and moving `up' - through the history as necessary. This is an incremental + Search backward starting at the current line and moving `up' + through the history as necessary. This is an incremental search. ffoorrwwaarrdd--sseeaarrcchh--hhiissttoorryy ((CC--ss)) - Search forward starting at the current line and moving `down' - through the history as necessary. This is an incremental + Search forward starting at the current line and moving `down' + through the history as necessary. This is an incremental search. nnoonn--iinnccrreemmeennttaall--rreevveerrssee--sseeaarrcchh--hhiissttoorryy ((MM--pp)) Search backward through the history starting at the current line - using a non-incremental search for a string supplied by the + using a non-incremental search for a string supplied by the user. nnoonn--iinnccrreemmeennttaall--ffoorrwwaarrdd--sseeaarrcchh--hhiissttoorryy ((MM--nn)) - Search forward through the history using a non-incremental + Search forward through the history using a non-incremental search for a string supplied by the user. hhiissttoorryy--sseeaarrcchh--ffoorrwwaarrdd - Search forward through the history for the string of characters - between the start of the current line and the point. This is a + Search forward through the history for the string of characters + between the start of the current line and the point. This is a non-incremental search. hhiissttoorryy--sseeaarrcchh--bbaacckkwwaarrdd Search backward through the history for the string of characters - between the start of the current line and the point. This is a + between the start of the current line and the point. This is a non-incremental search. hhiissttoorryy--ssuubbssttrriinngg--sseeaarrcchh--bbaacckkwwaarrdd Search backward through the history for the string of characters between the start of the current line and the current cursor po- - sition (the _p_o_i_n_t). The search string may match anywhere in a + sition (the _p_o_i_n_t). The search string may match anywhere in a history line. This is a non-incremental search. hhiissttoorryy--ssuubbssttrriinngg--sseeaarrcchh--ffoorrwwaarrdd - Search forward through the history for the string of characters + Search forward through the history for the string of characters between the start of the current line and the point. The search - string may match anywhere in a history line. This is a non-in- + string may match anywhere in a history line. This is a non-in- cremental search. yyaannkk--nntthh--aarrgg ((MM--CC--yy)) - Insert the first argument to the previous command (usually the + Insert the first argument to the previous command (usually the second word on the previous line) at point. With an argument _n, - insert the _nth word from the previous command (the words in the - previous command begin with word 0). A negative argument in- - serts the _nth word from the end of the previous command. Once - the argument _n is computed, the argument is extracted as if the + insert the _nth word from the previous command (the words in the + previous command begin with word 0). A negative argument in- + serts the _nth word from the end of the previous command. Once + the argument _n is computed, the argument is extracted as if the "!_n" history expansion had been specified. yyaannkk--llaasstt--aarrgg ((MM--..,, MM--__)) - Insert the last argument to the previous command (the last word + Insert the last argument to the previous command (the last word of the previous history entry). With a numeric argument, behave - exactly like yyaannkk--nntthh--aarrgg. Successive calls to yyaannkk--llaasstt--aarrgg - move back through the history list, inserting the last word (or - the word specified by the argument to the first call) of each + exactly like yyaannkk--nntthh--aarrgg. Successive calls to yyaannkk--llaasstt--aarrgg + move back through the history list, inserting the last word (or + the word specified by the argument to the first call) of each line in turn. Any numeric argument supplied to these successive - calls determines the direction to move through the history. A - negative argument switches the direction through the history + calls determines the direction to move through the history. A + negative argument switches the direction through the history (back or forward). The history expansion facilities are used to extract the last word, as if the "!$" history expansion had been specified. @@ -3800,75 +3803,75 @@ RREEAADDLLIINNEE tory expansion as well as all of the shell word expansions. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN below for a description of history expansion. hhiissttoorryy--eexxppaanndd--lliinnee ((MM--^^)) - Perform history expansion on the current line. See HHIISSTTOORRYY EEXX-- + Perform history expansion on the current line. See HHIISSTTOORRYY EEXX-- PPAANNSSIIOONN below for a description of history expansion. mmaaggiicc--ssppaaccee - Perform history expansion on the current line and insert a + Perform history expansion on the current line and insert a space. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN below for a description of history expansion. aalliiaass--eexxppaanndd--lliinnee - Perform alias expansion on the current line. See AALLIIAASSEESS above + Perform alias expansion on the current line. See AALLIIAASSEESS above for a description of alias expansion. hhiissttoorryy--aanndd--aalliiaass--eexxppaanndd--lliinnee Perform history and alias expansion on the current line. iinnsseerrtt--llaasstt--aarrgguummeenntt ((MM--..,, MM--__)) A synonym for yyaannkk--llaasstt--aarrgg. eeddiitt--aanndd--eexxeeccuuttee--ccoommmmaanndd ((CC--xx CC--ee)) - Invoke an editor on the current command line, and execute the + Invoke an editor on the current command line, and execute the result as shell commands. BBaasshh attempts to invoke $$VVIISSUUAALL, $$EEDD-- IITTOORR, and _e_m_a_c_s as the editor, in that order. CCoommmmaannddss ffoorr CChhaannggiinngg TTeexxtt _e_n_d_-_o_f_-_f_i_l_e ((uussuuaallllyy CC--dd)) - The character indicating end-of-file as set, for example, by - ``stty''. If this character is read when there are no charac- - ters on the line, and point is at the beginning of the line, + The character indicating end-of-file as set, for example, by + ``stty''. If this character is read when there are no charac- + ters on the line, and point is at the beginning of the line, Readline interprets it as the end of input and returns EEOOFF. ddeelleettee--cchhaarr ((CC--dd)) Delete the character at point. If this function is bound to the same character as the tty EEOOFF character, as CC--dd commonly is, see above for the effects. bbaacckkwwaarrdd--ddeelleettee--cchhaarr ((RRuubboouutt)) - Delete the character behind the cursor. When given a numeric + Delete the character behind the cursor. When given a numeric argument, save the deleted text on the kill ring. ffoorrwwaarrdd--bbaacckkwwaarrdd--ddeelleettee--cchhaarr - Delete the character under the cursor, unless the cursor is at + Delete the character under the cursor, unless the cursor is at the end of the line, in which case the character behind the cur- sor is deleted. qquuootteedd--iinnsseerrtt ((CC--qq,, CC--vv)) - Add the next character typed to the line verbatim. This is how + Add the next character typed to the line verbatim. This is how to insert characters like CC--qq, for example. ttaabb--iinnsseerrtt ((CC--vv TTAABB)) Insert a tab character. sseellff--iinnsseerrtt ((aa,, bb,, AA,, 11,, !!,, ......)) Insert the character typed. ttrraannssppoossee--cchhaarrss ((CC--tt)) - Drag the character before point forward over the character at - point, moving point forward as well. If point is at the end of - the line, then this transposes the two characters before point. + Drag the character before point forward over the character at + point, moving point forward as well. If point is at the end of + the line, then this transposes the two characters before point. Negative arguments have no effect. ttrraannssppoossee--wwoorrddss ((MM--tt)) - Drag the word before point past the word after point, moving - point over that word as well. If point is at the end of the + Drag the word before point past the word after point, moving + point over that word as well. If point is at the end of the line, this transposes the last two words on the line. uuppccaassee--wwoorrdd ((MM--uu)) - Uppercase the current (or following) word. With a negative ar- + Uppercase the current (or following) word. With a negative ar- gument, uppercase the previous word, but do not move point. ddoowwnnccaassee--wwoorrdd ((MM--ll)) - Lowercase the current (or following) word. With a negative ar- + Lowercase the current (or following) word. With a negative ar- gument, lowercase the previous word, but do not move point. ccaappiittaalliizzee--wwoorrdd ((MM--cc)) Capitalize the current (or following) word. With a negative ar- gument, capitalize the previous word, but do not move point. oovveerrwwrriittee--mmooddee - Toggle overwrite mode. With an explicit positive numeric argu- + Toggle overwrite mode. With an explicit positive numeric argu- ment, switches to overwrite mode. With an explicit non-positive numeric argument, switches to insert mode. This command affects - only eemmaaccss mode; vvii mode does overwrite differently. Each call + only eemmaaccss mode; vvii mode does overwrite differently. Each call to _r_e_a_d_l_i_n_e_(_) starts in insert mode. In overwrite mode, charac- - ters bound to sseellff--iinnsseerrtt replace the text at point rather than - pushing the text to the right. Characters bound to bbaacckk-- - wwaarrdd--ddeelleettee--cchhaarr replace the character before point with a + ters bound to sseellff--iinnsseerrtt replace the text at point rather than + pushing the text to the right. Characters bound to bbaacckk-- + wwaarrdd--ddeelleettee--cchhaarr replace the character before point with a space. By default, this command is unbound. KKiilllliinngg aanndd YYaannkkiinngg @@ -3877,31 +3880,31 @@ RREEAADDLLIINNEE bbaacckkwwaarrdd--kkiillll--lliinnee ((CC--xx RRuubboouutt)) Kill backward to the beginning of the line. uunniixx--lliinnee--ddiissccaarrdd ((CC--uu)) - Kill backward from point to the beginning of the line. The + Kill backward from point to the beginning of the line. The killed text is saved on the kill-ring. kkiillll--wwhhoollee--lliinnee - Kill all characters on the current line, no matter where point + Kill all characters on the current line, no matter where point is. kkiillll--wwoorrdd ((MM--dd)) - Kill from point to the end of the current word, or if between - words, to the end of the next word. Word boundaries are the - same as those used by ffoorrwwaarrdd--wwoorrdd. - bbaacckkwwaarrdd--kkiillll--wwoorrdd ((MM--RRuubboouutt)) - Kill the word behind point. Word boundaries are the same as - those used by bbaacckkwwaarrdd--wwoorrdd. - sshheellll--kkiillll--wwoorrdd Kill from point to the end of the current word, or if between words, to the end of the next word. Word boundaries are the + same as those used by ffoorrwwaarrdd--wwoorrdd. + bbaacckkwwaarrdd--kkiillll--wwoorrdd ((MM--RRuubboouutt)) + Kill the word behind point. Word boundaries are the same as + those used by bbaacckkwwaarrdd--wwoorrdd. + sshheellll--kkiillll--wwoorrdd + Kill from point to the end of the current word, or if between + words, to the end of the next word. Word boundaries are the same as those used by sshheellll--ffoorrwwaarrdd--wwoorrdd. sshheellll--bbaacckkwwaarrdd--kkiillll--wwoorrdd - Kill the word behind point. Word boundaries are the same as + Kill the word behind point. Word boundaries are the same as those used by sshheellll--bbaacckkwwaarrdd--wwoorrdd. uunniixx--wwoorrdd--rruubboouutt ((CC--ww)) - Kill the word behind point, using white space as a word bound- + Kill the word behind point, using white space as a word bound- ary. The killed text is saved on the kill-ring. uunniixx--ffiilleennaammee--rruubboouutt - Kill the word behind point, using white space and the slash - character as the word boundaries. The killed text is saved on + Kill the word behind point, using white space and the slash + character as the word boundaries. The killed text is saved on the kill-ring. ddeelleettee--hhoorriizzoonnttaall--ssppaaccee ((MM--\\)) Delete all spaces and tabs around point. @@ -3910,64 +3913,64 @@ RREEAADDLLIINNEE ccooppyy--rreeggiioonn--aass--kkiillll Copy the text in the region to the kill buffer. ccooppyy--bbaacckkwwaarrdd--wwoorrdd - Copy the word before point to the kill buffer. The word bound- + Copy the word before point to the kill buffer. The word bound- aries are the same as bbaacckkwwaarrdd--wwoorrdd. ccooppyy--ffoorrwwaarrdd--wwoorrdd - Copy the word following point to the kill buffer. The word + Copy the word following point to the kill buffer. The word boundaries are the same as ffoorrwwaarrdd--wwoorrdd. yyaannkk ((CC--yy)) Yank the top of the kill ring into the buffer at point. yyaannkk--ppoopp ((MM--yy)) - Rotate the kill ring, and yank the new top. Only works follow- + Rotate the kill ring, and yank the new top. Only works follow- ing yyaannkk or yyaannkk--ppoopp. NNuummeerriicc AArrgguummeennttss ddiiggiitt--aarrgguummeenntt ((MM--00,, MM--11,, ......,, MM----)) - Add this digit to the argument already accumulating, or start a + Add this digit to the argument already accumulating, or start a new argument. M-- starts a negative argument. uunniivveerrssaall--aarrgguummeenntt - This is another way to specify an argument. If this command is - followed by one or more digits, optionally with a leading minus - sign, those digits define the argument. If the command is fol- + This is another way to specify an argument. If this command is + followed by one or more digits, optionally with a leading minus + sign, those digits define the argument. If the command is fol- lowed by digits, executing uunniivveerrssaall--aarrgguummeenntt again ends the nu- meric argument, but is otherwise ignored. As a special case, if this command is immediately followed by a character that is nei- - ther a digit nor minus sign, the argument count for the next - command is multiplied by four. The argument count is initially - one, so executing this function the first time makes the argu- + ther a digit nor minus sign, the argument count for the next + command is multiplied by four. The argument count is initially + one, so executing this function the first time makes the argu- ment count four, a second time makes the argument count sixteen, and so on. CCoommpplleettiinngg ccoommpplleettee ((TTAABB)) - Attempt to perform completion on the text before point. BBaasshh + Attempt to perform completion on the text before point. BBaasshh attempts completion treating the text as a variable (if the text - begins with $$), username (if the text begins with ~~), hostname - (if the text begins with @@), or command (including aliases and + begins with $$), username (if the text begins with ~~), hostname + (if the text begins with @@), or command (including aliases and functions) in turn. If none of these produces a match, filename completion is attempted. ppoossssiibbllee--ccoommpplleettiioonnss ((MM--??)) List the possible completions of the text before point. iinnsseerrtt--ccoommpplleettiioonnss ((MM--**)) - Insert all completions of the text before point that would have + Insert all completions of the text before point that would have been generated by ppoossssiibbllee--ccoommpplleettiioonnss. mmeennuu--ccoommpplleettee - Similar to ccoommpplleettee, but replaces the word to be completed with - a single match from the list of possible completions. Repeated - execution of mmeennuu--ccoommpplleettee steps through the list of possible - completions, inserting each match in turn. At the end of the + Similar to ccoommpplleettee, but replaces the word to be completed with + a single match from the list of possible completions. Repeated + execution of mmeennuu--ccoommpplleettee steps through the list of possible + completions, inserting each match in turn. At the end of the list of completions, the bell is rung (subject to the setting of bbeellll--ssttyyllee) and the original text is restored. An argument of _n moves _n positions forward in the list of matches; a negative ar- gument may be used to move backward through the list. This com- mand is intended to be bound to TTAABB, but is unbound by default. mmeennuu--ccoommpplleettee--bbaacckkwwaarrdd - Identical to mmeennuu--ccoommpplleettee, but moves backward through the list - of possible completions, as if mmeennuu--ccoommpplleettee had been given a + Identical to mmeennuu--ccoommpplleettee, but moves backward through the list + of possible completions, as if mmeennuu--ccoommpplleettee had been given a negative argument. This command is unbound by default. ddeelleettee--cchhaarr--oorr--lliisstt - Deletes the character under the cursor if not at the beginning - or end of the line (like ddeelleettee--cchhaarr). If at the end of the + Deletes the character under the cursor if not at the beginning + or end of the line (like ddeelleettee--cchhaarr). If at the end of the line, behaves identically to ppoossssiibbllee--ccoommpplleettiioonnss. This command is unbound by default. ccoommpplleettee--ffiilleennaammee ((MM--//)) @@ -3976,67 +3979,67 @@ RREEAADDLLIINNEE List the possible completions of the text before point, treating it as a filename. ccoommpplleettee--uusseerrnnaammee ((MM--~~)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a username. ppoossssiibbllee--uusseerrnnaammee--ccoommpplleettiioonnss ((CC--xx ~~)) List the possible completions of the text before point, treating it as a username. ccoommpplleettee--vvaarriiaabbllee ((MM--$$)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a shell variable. ppoossssiibbllee--vvaarriiaabbllee--ccoommpplleettiioonnss ((CC--xx $$)) List the possible completions of the text before point, treating it as a shell variable. ccoommpplleettee--hhoossttnnaammee ((MM--@@)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a hostname. ppoossssiibbllee--hhoossttnnaammee--ccoommpplleettiioonnss ((CC--xx @@)) List the possible completions of the text before point, treating it as a hostname. ccoommpplleettee--ccoommmmaanndd ((MM--!!)) - Attempt completion on the text before point, treating it as a - command name. Command completion attempts to match the text - against aliases, reserved words, shell functions, shell + Attempt completion on the text before point, treating it as a + command name. Command completion attempts to match the text + against aliases, reserved words, shell functions, shell builtins, and finally executable filenames, in that order. ppoossssiibbllee--ccoommmmaanndd--ccoommpplleettiioonnss ((CC--xx !!)) List the possible completions of the text before point, treating it as a command name. ddyynnaammiicc--ccoommpplleettee--hhiissttoorryy ((MM--TTAABB)) - Attempt completion on the text before point, comparing the text - against lines from the history list for possible completion + Attempt completion on the text before point, comparing the text + against lines from the history list for possible completion matches. ddaabbbbrreevv--eexxppaanndd - Attempt menu completion on the text before point, comparing the + Attempt menu completion on the text before point, comparing the text against lines from the history list for possible completion matches. ccoommpplleettee--iinnttoo--bbrraacceess ((MM--{{)) Perform filename completion and insert the list of possible com- - pletions enclosed within braces so the list is available to the + pletions enclosed within braces so the list is available to the shell (see BBrraaccee EExxppaannssiioonn above). KKeeyybbooaarrdd MMaaccrrooss ssttaarrtt--kkbbdd--mmaaccrroo ((CC--xx (()) - Begin saving the characters typed into the current keyboard + Begin saving the characters typed into the current keyboard macro. eenndd--kkbbdd--mmaaccrroo ((CC--xx )))) Stop saving the characters typed into the current keyboard macro and store the definition. ccaallll--llaasstt--kkbbdd--mmaaccrroo ((CC--xx ee)) - Re-execute the last keyboard macro defined, by making the char- + Re-execute the last keyboard macro defined, by making the char- acters in the macro appear as if typed at the keyboard. pprriinntt--llaasstt--kkbbdd--mmaaccrroo (()) - Print the last keyboard macro defined in a format suitable for + Print the last keyboard macro defined in a format suitable for the _i_n_p_u_t_r_c file. MMiisscceellllaanneeoouuss rree--rreeaadd--iinniitt--ffiillee ((CC--xx CC--rr)) - Read in the contents of the _i_n_p_u_t_r_c file, and incorporate any + Read in the contents of the _i_n_p_u_t_r_c file, and incorporate any bindings or variable assignments found there. aabboorrtt ((CC--gg)) - Abort the current editing command and ring the terminal's bell + Abort the current editing command and ring the terminal's bell (subject to the setting of bbeellll--ssttyyllee). ddoo--lloowweerrccaassee--vveerrssiioonn ((MM--AA,, MM--BB,, MM--_x,, ......)) - If the metafied character _x is uppercase, run the command that + If the metafied character _x is uppercase, run the command that is bound to the corresponding metafied lowercase character. The behavior is undefined if _x is already lowercase. pprreeffiixx--mmeettaa ((EESSCC)) @@ -4044,204 +4047,204 @@ RREEAADDLLIINNEE uunnddoo ((CC--__,, CC--xx CC--uu)) Incremental undo, separately remembered for each line. rreevveerrtt--lliinnee ((MM--rr)) - Undo all changes made to this line. This is like executing the - uunnddoo command enough times to return the line to its initial + Undo all changes made to this line. This is like executing the + uunnddoo command enough times to return the line to its initial state. ttiillddee--eexxppaanndd ((MM--&&)) Perform tilde expansion on the current word. sseett--mmaarrkk ((CC--@@,, MM--<>)) - Set the mark to the point. If a numeric argument is supplied, + Set the mark to the point. If a numeric argument is supplied, the mark is set to that position. eexxcchhaannggee--ppooiinntt--aanndd--mmaarrkk ((CC--xx CC--xx)) - Swap the point with the mark. The current cursor position is - set to the saved position, and the old cursor position is saved + Swap the point with the mark. The current cursor position is + set to the saved position, and the old cursor position is saved as the mark. cchhaarraacctteerr--sseeaarrcchh ((CC--]])) A character is read and point is moved to the next occurrence of - that character. A negative count searches for previous occur- + that character. A negative count searches for previous occur- rences. cchhaarraacctteerr--sseeaarrcchh--bbaacckkwwaarrdd ((MM--CC--]])) - A character is read and point is moved to the previous occur- - rence of that character. A negative count searches for subse- + A character is read and point is moved to the previous occur- + rence of that character. A negative count searches for subse- quent occurrences. sskkiipp--ccssii--sseeqquueennccee - Read enough characters to consume a multi-key sequence such as - those defined for keys like Home and End. Such sequences begin + Read enough characters to consume a multi-key sequence such as + those defined for keys like Home and End. Such sequences begin with a Control Sequence Indicator (CSI), usually ESC-[. If this - sequence is bound to "\[", keys producing such sequences will - have no effect unless explicitly bound to a readline command, - instead of inserting stray characters into the editing buffer. + sequence is bound to "\[", keys producing such sequences will + have no effect unless explicitly bound to a readline command, + instead of inserting stray characters into the editing buffer. This is unbound by default, but usually bound to ESC-[. iinnsseerrtt--ccoommmmeenntt ((MM--##)) - Without a numeric argument, the value of the readline ccoomm-- - mmeenntt--bbeeggiinn variable is inserted at the beginning of the current + Without a numeric argument, the value of the readline ccoomm-- + mmeenntt--bbeeggiinn variable is inserted at the beginning of the current line. If a numeric argument is supplied, this command acts as a - toggle: if the characters at the beginning of the line do not - match the value of ccoommmmeenntt--bbeeggiinn, the value is inserted, other- + toggle: if the characters at the beginning of the line do not + match the value of ccoommmmeenntt--bbeeggiinn, the value is inserted, other- wise the characters in ccoommmmeenntt--bbeeggiinn are deleted from the begin- - ning of the line. In either case, the line is accepted as if a - newline had been typed. The default value of ccoommmmeenntt--bbeeggiinn - causes this command to make the current line a shell comment. - If a numeric argument causes the comment character to be re- + ning of the line. In either case, the line is accepted as if a + newline had been typed. The default value of ccoommmmeenntt--bbeeggiinn + causes this command to make the current line a shell comment. + If a numeric argument causes the comment character to be re- moved, the line will be executed by the shell. ssppeellll--ccoorrrreecctt--wwoorrdd ((CC--xx ss)) - Perform spelling correction on the current word, treating it as - a directory or filename, in the same way as the ccddssppeellll shell - option. Word boundaries are the same as those used by + Perform spelling correction on the current word, treating it as + a directory or filename, in the same way as the ccddssppeellll shell + option. Word boundaries are the same as those used by sshheellll--ffoorrwwaarrdd--wwoorrdd. gglloobb--ccoommpplleettee--wwoorrdd ((MM--gg)) - The word before point is treated as a pattern for pathname ex- - pansion, with an asterisk implicitly appended. This pattern is - used to generate a list of matching filenames for possible com- + The word before point is treated as a pattern for pathname ex- + pansion, with an asterisk implicitly appended. This pattern is + used to generate a list of matching filenames for possible com- pletions. gglloobb--eexxppaanndd--wwoorrdd ((CC--xx **)) - The word before point is treated as a pattern for pathname ex- + The word before point is treated as a pattern for pathname ex- pansion, and the list of matching filenames is inserted, replac- ing the word. If a numeric argument is supplied, an asterisk is appended before pathname expansion. gglloobb--lliisstt--eexxppaannssiioonnss ((CC--xx gg)) - The list of expansions that would have been generated by - gglloobb--eexxppaanndd--wwoorrdd is displayed, and the line is redrawn. If a - numeric argument is supplied, an asterisk is appended before + The list of expansions that would have been generated by + gglloobb--eexxppaanndd--wwoorrdd is displayed, and the line is redrawn. If a + numeric argument is supplied, an asterisk is appended before pathname expansion. dduummpp--ffuunnccttiioonnss - Print all of the functions and their key bindings to the read- + Print all of the functions and their key bindings to the read- line output stream. If a numeric argument is supplied, the out- - put is formatted in such a way that it can be made part of an + put is formatted in such a way that it can be made part of an _i_n_p_u_t_r_c file. dduummpp--vvaarriiaabblleess Print all of the settable readline variables and their values to - the readline output stream. If a numeric argument is supplied, - the output is formatted in such a way that it can be made part + the readline output stream. If a numeric argument is supplied, + the output is formatted in such a way that it can be made part of an _i_n_p_u_t_r_c file. dduummpp--mmaaccrrooss - Print all of the readline key sequences bound to macros and the - strings they output. If a numeric argument is supplied, the + Print all of the readline key sequences bound to macros and the + strings they output. If a numeric argument is supplied, the output is formatted in such a way that it can be made part of an _i_n_p_u_t_r_c file. ddiissppllaayy--sshheellll--vveerrssiioonn ((CC--xx CC--vv)) Display version information about the current instance of bbaasshh. PPrrooggrraammmmaabbllee CCoommpplleettiioonn - When word completion is attempted for an argument to a command for - which a completion specification (a _c_o_m_p_s_p_e_c) has been defined using - the ccoommpplleettee builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the program- + When word completion is attempted for an argument to a command for + which a completion specification (a _c_o_m_p_s_p_e_c) has been defined using + the ccoommpplleettee builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the program- mable completion facilities are invoked. - First, the command name is identified. If the command word is the - empty string (completion attempted at the beginning of an empty line), - any compspec defined with the --EE option to ccoommpplleettee is used. If a - compspec has been defined for that command, the compspec is used to + First, the command name is identified. If the command word is the + empty string (completion attempted at the beginning of an empty line), + any compspec defined with the --EE option to ccoommpplleettee is used. If a + compspec has been defined for that command, the compspec is used to generate the list of possible completions for the word. If the command - word is a full pathname, a compspec for the full pathname is searched - for first. If no compspec is found for the full pathname, an attempt - is made to find a compspec for the portion following the final slash. - If those searches do not result in a compspec, any compspec defined - with the --DD option to ccoommpplleettee is used as the default. If there is no - default compspec, bbaasshh attempts alias expansion on the command word as - a final resort, and attempts to find a compspec for the command word + word is a full pathname, a compspec for the full pathname is searched + for first. If no compspec is found for the full pathname, an attempt + is made to find a compspec for the portion following the final slash. + If those searches do not result in a compspec, any compspec defined + with the --DD option to ccoommpplleettee is used as the default. If there is no + default compspec, bbaasshh attempts alias expansion on the command word as + a final resort, and attempts to find a compspec for the command word from any successful expansion. - Once a compspec has been found, it is used to generate the list of - matching words. If a compspec is not found, the default bbaasshh comple- + Once a compspec has been found, it is used to generate the list of + matching words. If a compspec is not found, the default bbaasshh comple- tion as described above under CCoommpplleettiinngg is performed. - First, the actions specified by the compspec are used. Only matches - which are prefixed by the word being completed are returned. When the - --ff or --dd option is used for filename or directory name completion, the + First, the actions specified by the compspec are used. Only matches + which are prefixed by the word being completed are returned. When the + --ff or --dd option is used for filename or directory name completion, the shell variable FFIIGGNNOORREE is used to filter the matches. Any completions specified by a pathname expansion pattern to the --GG op- - tion are generated next. The words generated by the pattern need not - match the word being completed. The GGLLOOBBIIGGNNOORREE shell variable is not + tion are generated next. The words generated by the pattern need not + match the word being completed. The GGLLOOBBIIGGNNOORREE shell variable is not used to filter the matches, but the FFIIGGNNOORREE variable is used. - Next, the string specified as the argument to the --WW option is consid- - ered. The string is first split using the characters in the IIFFSS spe- - cial variable as delimiters. Shell quoting is honored. Each word is - then expanded using brace expansion, tilde expansion, parameter and - variable expansion, command substitution, and arithmetic expansion, as + Next, the string specified as the argument to the --WW option is consid- + ered. The string is first split using the characters in the IIFFSS spe- + cial variable as delimiters. Shell quoting is honored. Each word is + then expanded using brace expansion, tilde expansion, parameter and + variable expansion, command substitution, and arithmetic expansion, as described above under EEXXPPAANNSSIIOONN. The results are split using the rules described above under WWoorrdd SSpplliittttiinngg. The results of the expansion are prefix-matched against the word being completed, and the matching words become the possible completions. - After these matches have been generated, any shell function or command - specified with the --FF and --CC options is invoked. When the command or + After these matches have been generated, any shell function or command + specified with the --FF and --CC options is invoked. When the command or function is invoked, the CCOOMMPP__LLIINNEE, CCOOMMPP__PPOOIINNTT, CCOOMMPP__KKEEYY, and CCOOMMPP__TTYYPPEE variables are assigned values as described above under SShheellll VVaarriiaabblleess. - If a shell function is being invoked, the CCOOMMPP__WWOORRDDSS and CCOOMMPP__CCWWOORRDD - variables are also set. When the function or command is invoked, the - first argument ($$11) is the name of the command whose arguments are be- - ing completed, the second argument ($$22) is the word being completed, - and the third argument ($$33) is the word preceding the word being com- + If a shell function is being invoked, the CCOOMMPP__WWOORRDDSS and CCOOMMPP__CCWWOORRDD + variables are also set. When the function or command is invoked, the + first argument ($$11) is the name of the command whose arguments are be- + ing completed, the second argument ($$22) is the word being completed, + and the third argument ($$33) is the word preceding the word being com- pleted on the current command line. No filtering of the generated com- pletions against the word being completed is performed; the function or command has complete freedom in generating the matches. - Any function specified with --FF is invoked first. The function may use - any of the shell facilities, including the ccoommppggeenn builtin described - below, to generate the matches. It must put the possible completions + Any function specified with --FF is invoked first. The function may use + any of the shell facilities, including the ccoommppggeenn builtin described + below, to generate the matches. It must put the possible completions in the CCOOMMPPRREEPPLLYY array variable, one per array element. - Next, any command specified with the --CC option is invoked in an envi- - ronment equivalent to command substitution. It should print a list of - completions, one per line, to the standard output. Backslash may be + Next, any command specified with the --CC option is invoked in an envi- + ronment equivalent to command substitution. It should print a list of + completions, one per line, to the standard output. Backslash may be used to escape a newline, if necessary. - After all of the possible completions are generated, any filter speci- - fied with the --XX option is applied to the list. The filter is a pat- - tern as used for pathname expansion; a && in the pattern is replaced - with the text of the word being completed. A literal && may be escaped - with a backslash; the backslash is removed before attempting a match. - Any completion that matches the pattern will be removed from the list. + After all of the possible completions are generated, any filter speci- + fied with the --XX option is applied to the list. The filter is a pat- + tern as used for pathname expansion; a && in the pattern is replaced + with the text of the word being completed. A literal && may be escaped + with a backslash; the backslash is removed before attempting a match. + Any completion that matches the pattern will be removed from the list. A leading !! negates the pattern; in this case any completion not match- - ing the pattern will be removed. If the nnooccaasseemmaattcchh shell option is - enabled, the match is performed without regard to the case of alpha- + ing the pattern will be removed. If the nnooccaasseemmaattcchh shell option is + enabled, the match is performed without regard to the case of alpha- betic characters. Finally, any prefix and suffix specified with the --PP and --SS options are added to each member of the completion list, and the result is returned to the readline completion code as the list of possible completions. - If the previously-applied actions do not generate any matches, and the - --oo ddiirrnnaammeess option was supplied to ccoommpplleettee when the compspec was de- + If the previously-applied actions do not generate any matches, and the + --oo ddiirrnnaammeess option was supplied to ccoommpplleettee when the compspec was de- fined, directory name completion is attempted. - If the --oo pplluussddiirrss option was supplied to ccoommpplleettee when the compspec + If the --oo pplluussddiirrss option was supplied to ccoommpplleettee when the compspec was defined, directory name completion is attempted and any matches are added to the results of the other actions. - By default, if a compspec is found, whatever it generates is returned - to the completion code as the full set of possible completions. The + By default, if a compspec is found, whatever it generates is returned + to the completion code as the full set of possible completions. The default bbaasshh completions are not attempted, and the readline default of filename completion is disabled. If the --oo bbaasshhddeeffaauulltt option was sup- - plied to ccoommpplleettee when the compspec was defined, the bbaasshh default com- + plied to ccoommpplleettee when the compspec was defined, the bbaasshh default com- pletions are attempted if the compspec generates no matches. If the --oo - ddeeffaauulltt option was supplied to ccoommpplleettee when the compspec was defined, - readline's default completion will be performed if the compspec (and, + ddeeffaauulltt option was supplied to ccoommpplleettee when the compspec was defined, + readline's default completion will be performed if the compspec (and, if attempted, the default bbaasshh completions) generate no matches. - When a compspec indicates that directory name completion is desired, - the programmable completion functions force readline to append a slash - to completed names which are symbolic links to directories, subject to - the value of the mmaarrkk--ddiirreeccttoorriieess readline variable, regardless of the + When a compspec indicates that directory name completion is desired, + the programmable completion functions force readline to append a slash + to completed names which are symbolic links to directories, subject to + the value of the mmaarrkk--ddiirreeccttoorriieess readline variable, regardless of the setting of the mmaarrkk--ssyymmlliinnkkeedd--ddiirreeccttoorriieess readline variable. - There is some support for dynamically modifying completions. This is - most useful when used in combination with a default completion speci- - fied with ccoommpplleettee --DD. It's possible for shell functions executed as - completion handlers to indicate that completion should be retried by - returning an exit status of 124. If a shell function returns 124, and + There is some support for dynamically modifying completions. This is + most useful when used in combination with a default completion speci- + fied with ccoommpplleettee --DD. It's possible for shell functions executed as + completion handlers to indicate that completion should be retried by + returning an exit status of 124. If a shell function returns 124, and changes the compspec associated with the command on which completion is - being attempted (supplied as the first argument when the function is + being attempted (supplied as the first argument when the function is executed), programmable completion restarts from the beginning, with an - attempt to find a new compspec for that command. This allows a set of - completions to be built dynamically as completion is attempted, rather + attempt to find a new compspec for that command. This allows a set of + completions to be built dynamically as completion is attempted, rather than being loaded all at once. - For instance, assuming that there is a library of compspecs, each kept - in a file corresponding to the name of the command, the following de- + For instance, assuming that there is a library of compspecs, each kept + in a file corresponding to the name of the command, the following de- fault completion function would load completions dynamically: _completion_loader() @@ -4252,167 +4255,167 @@ RREEAADDLLIINNEE HHIISSTTOORRYY - When the --oo hhiissttoorryy option to the sseett builtin is enabled, the shell + When the --oo hhiissttoorryy option to the sseett builtin is enabled, the shell provides access to the _c_o_m_m_a_n_d _h_i_s_t_o_r_y, the list of commands previously - typed. The value of the HHIISSTTSSIIZZEE variable is used as the number of + typed. The value of the HHIISSTTSSIIZZEE variable is used as the number of commands to save in a history list. The text of the last HHIISSTTSSIIZZEE com- - mands (default 500) is saved. The shell stores each command in the - history list prior to parameter and variable expansion (see EEXXPPAANNSSIIOONN - above) but after history expansion is performed, subject to the values + mands (default 500) is saved. The shell stores each command in the + history list prior to parameter and variable expansion (see EEXXPPAANNSSIIOONN + above) but after history expansion is performed, subject to the values of the shell variables HHIISSTTIIGGNNOORREE and HHIISSTTCCOONNTTRROOLL. On startup, the history is initialized from the file named by the vari- - able HHIISSTTFFIILLEE (default _~_/_._b_a_s_h___h_i_s_t_o_r_y). The file named by the value - of HHIISSTTFFIILLEE is truncated, if necessary, to contain no more than the - number of lines specified by the value of HHIISSTTFFIILLEESSIIZZEE. If HHIISSTTFFIILLEE-- - SSIIZZEE is unset, or set to null, a non-numeric value, or a numeric value - less than zero, the history file is not truncated. When the history - file is read, lines beginning with the history comment character fol- + able HHIISSTTFFIILLEE (default _~_/_._b_a_s_h___h_i_s_t_o_r_y). The file named by the value + of HHIISSTTFFIILLEE is truncated, if necessary, to contain no more than the + number of lines specified by the value of HHIISSTTFFIILLEESSIIZZEE. If HHIISSTTFFIILLEE-- + SSIIZZEE is unset, or set to null, a non-numeric value, or a numeric value + less than zero, the history file is not truncated. When the history + file is read, lines beginning with the history comment character fol- lowed immediately by a digit are interpreted as timestamps for the fol- lowing history line. These timestamps are optionally displayed depend- - ing on the value of the HHIISSTTTTIIMMEEFFOORRMMAATT variable. When a shell with - history enabled exits, the last $$HHIISSTTSSIIZZEE lines are copied from the - history list to $$HHIISSTTFFIILLEE. If the hhiissttaappppeenndd shell option is enabled - (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the - lines are appended to the history file, otherwise the history file is - overwritten. If HHIISSTTFFIILLEE is unset, or if the history file is un- - writable, the history is not saved. If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is - set, time stamps are written to the history file, marked with the his- + ing on the value of the HHIISSTTTTIIMMEEFFOORRMMAATT variable. When a shell with + history enabled exits, the last $$HHIISSTTSSIIZZEE lines are copied from the + history list to $$HHIISSTTFFIILLEE. If the hhiissttaappppeenndd shell option is enabled + (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the + lines are appended to the history file, otherwise the history file is + overwritten. If HHIISSTTFFIILLEE is unset, or if the history file is un- + writable, the history is not saved. If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is + set, time stamps are written to the history file, marked with the his- tory comment character, so they may be preserved across shell sessions. - This uses the history comment character to distinguish timestamps from - other history lines. After saving the history, the history file is - truncated to contain no more than HHIISSTTFFIILLEESSIIZZEE lines. If HHIISSTTFFIILLEESSIIZZEE - is unset, or set to null, a non-numeric value, or a numeric value less + This uses the history comment character to distinguish timestamps from + other history lines. After saving the history, the history file is + truncated to contain no more than HHIISSTTFFIILLEESSIIZZEE lines. If HHIISSTTFFIILLEESSIIZZEE + is unset, or set to null, a non-numeric value, or a numeric value less than zero, the history file is not truncated. - The builtin command ffcc (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) may be used + The builtin command ffcc (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) may be used to list or edit and re-execute a portion of the history list. The hhiiss-- - ttoorryy builtin may be used to display or modify the history list and ma- - nipulate the history file. When using command-line editing, search - commands are available in each editing mode that provide access to the + ttoorryy builtin may be used to display or modify the history list and ma- + nipulate the history file. When using command-line editing, search + commands are available in each editing mode that provide access to the history list. - The shell allows control over which commands are saved on the history + The shell allows control over which commands are saved on the history list. The HHIISSTTCCOONNTTRROOLL and HHIISSTTIIGGNNOORREE variables may be set to cause the shell to save only a subset of the commands entered. The ccmmddhhiisstt shell - option, if enabled, causes the shell to attempt to save each line of a - multi-line command in the same history entry, adding semicolons where - necessary to preserve syntactic correctness. The lliitthhiisstt shell option - causes the shell to save the command with embedded newlines instead of + option, if enabled, causes the shell to attempt to save each line of a + multi-line command in the same history entry, adding semicolons where + necessary to preserve syntactic correctness. The lliitthhiisstt shell option + causes the shell to save the command with embedded newlines instead of semicolons. See the description of the sshhoopptt builtin below under SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS for information on setting and unsetting shell op- + BBUUIILLTTIINN CCOOMMMMAANNDDSS for information on setting and unsetting shell op- tions. HHIISSTTOORRYY EEXXPPAANNSSIIOONN - The shell supports a history expansion feature that is similar to the - history expansion in ccsshh. This section describes what syntax features - are available. This feature is enabled by default for interactive + The shell supports a history expansion feature that is similar to the + history expansion in ccsshh. This section describes what syntax features + are available. This feature is enabled by default for interactive shells, and can be disabled using the ++HH option to the sseett builtin com- mand (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). Non-interactive shells do not perform history expansion by default. History expansions introduce words from the history list into the input - stream, making it easy to repeat commands, insert the arguments to a + stream, making it easy to repeat commands, insert the arguments to a previous command into the current input line, or fix errors in previous commands quickly. - History expansion is performed immediately after a complete line is - read, before the shell breaks it into words, and is performed on each - line individually without taking quoting on previous lines into ac- - count. It takes place in two parts. The first is to determine which - line from the history list to use during substitution. The second is - to select portions of that line for inclusion into the current one. - The line selected from the history is the _e_v_e_n_t, and the portions of - that line that are acted upon are _w_o_r_d_s. Various _m_o_d_i_f_i_e_r_s are avail- - able to manipulate the selected words. The line is broken into words - in the same fashion as when reading input, so that several _m_e_t_a_c_h_a_r_a_c_- + History expansion is performed immediately after a complete line is + read, before the shell breaks it into words, and is performed on each + line individually without taking quoting on previous lines into ac- + count. It takes place in two parts. The first is to determine which + line from the history list to use during substitution. The second is + to select portions of that line for inclusion into the current one. + The line selected from the history is the _e_v_e_n_t, and the portions of + that line that are acted upon are _w_o_r_d_s. Various _m_o_d_i_f_i_e_r_s are avail- + able to manipulate the selected words. The line is broken into words + in the same fashion as when reading input, so that several _m_e_t_a_c_h_a_r_a_c_- _t_e_r-separated words surrounded by quotes are considered one word. His- - tory expansions are introduced by the appearance of the history expan- - sion character, which is !! by default. Only backslash (\\) and single - quotes can quote the history expansion character, but the history ex- - pansion character is also treated as quoted if it immediately precedes + tory expansions are introduced by the appearance of the history expan- + sion character, which is !! by default. Only backslash (\\) and single + quotes can quote the history expansion character, but the history ex- + pansion character is also treated as quoted if it immediately precedes the closing double quote in a double-quoted string. - Several characters inhibit history expansion if found immediately fol- - lowing the history expansion character, even if it is unquoted: space, - tab, newline, carriage return, and ==. If the eexxttgglloobb shell option is + Several characters inhibit history expansion if found immediately fol- + lowing the history expansion character, even if it is unquoted: space, + tab, newline, carriage return, and ==. If the eexxttgglloobb shell option is enabled, (( will also inhibit expansion. - Several shell options settable with the sshhoopptt builtin may be used to - tailor the behavior of history expansion. If the hhiissttvveerriiffyy shell op- - tion is enabled (see the description of the sshhoopptt builtin below), and - rreeaaddlliinnee is being used, history substitutions are not immediately - passed to the shell parser. Instead, the expanded line is reloaded + Several shell options settable with the sshhoopptt builtin may be used to + tailor the behavior of history expansion. If the hhiissttvveerriiffyy shell op- + tion is enabled (see the description of the sshhoopptt builtin below), and + rreeaaddlliinnee is being used, history substitutions are not immediately + passed to the shell parser. Instead, the expanded line is reloaded into the rreeaaddlliinnee editing buffer for further modification. If rreeaaddlliinnee - is being used, and the hhiissttrreeeeddiitt shell option is enabled, a failed - history substitution will be reloaded into the rreeaaddlliinnee editing buffer - for correction. The --pp option to the hhiissttoorryy builtin command may be - used to see what a history expansion will do before using it. The --ss + is being used, and the hhiissttrreeeeddiitt shell option is enabled, a failed + history substitution will be reloaded into the rreeaaddlliinnee editing buffer + for correction. The --pp option to the hhiissttoorryy builtin command may be + used to see what a history expansion will do before using it. The --ss option to the hhiissttoorryy builtin may be used to add commands to the end of - the history list without actually executing them, so that they are + the history list without actually executing them, so that they are available for subsequent recall. - The shell allows control of the various characters used by the history + The shell allows control of the various characters used by the history expansion mechanism (see the description of hhiissttcchhaarrss above under SShheellll - VVaarriiaabblleess). The shell uses the history comment character to mark his- + VVaarriiaabblleess). The shell uses the history comment character to mark his- tory timestamps when writing the history file. EEvveenntt DDeessiiggnnaattoorrss - An event designator is a reference to a command line entry in the his- - tory list. Unless the reference is absolute, events are relative to + An event designator is a reference to a command line entry in the his- + tory list. Unless the reference is absolute, events are relative to the current position in the history list. - !! Start a history substitution, except when followed by a bbllaannkk, - newline, carriage return, = or ( (when the eexxttgglloobb shell option + !! Start a history substitution, except when followed by a bbllaannkk, + newline, carriage return, = or ( (when the eexxttgglloobb shell option is enabled using the sshhoopptt builtin). !!_n Refer to command line _n. !!--_n Refer to the current command minus _n. !!!! Refer to the previous command. This is a synonym for `!-1'. !!_s_t_r_i_n_g - Refer to the most recent command preceding the current position + Refer to the most recent command preceding the current position in the history list starting with _s_t_r_i_n_g. !!??_s_t_r_i_n_g[[??]] - Refer to the most recent command preceding the current position - in the history list containing _s_t_r_i_n_g. The trailing ?? may be - omitted if _s_t_r_i_n_g is followed immediately by a newline. If - _s_t_r_i_n_g is missing, the string from the most recent search is + Refer to the most recent command preceding the current position + in the history list containing _s_t_r_i_n_g. The trailing ?? may be + omitted if _s_t_r_i_n_g is followed immediately by a newline. If + _s_t_r_i_n_g is missing, the string from the most recent search is used; it is an error if there is no previous search string. ^^_s_t_r_i_n_g_1^^_s_t_r_i_n_g_2^^ - Quick substitution. Repeat the previous command, replacing - _s_t_r_i_n_g_1 with _s_t_r_i_n_g_2. Equivalent to ``!!:s^_s_t_r_i_n_g_1^_s_t_r_i_n_g_2^'' + Quick substitution. Repeat the previous command, replacing + _s_t_r_i_n_g_1 with _s_t_r_i_n_g_2. Equivalent to ``!!:s^_s_t_r_i_n_g_1^_s_t_r_i_n_g_2^'' (see MMooddiiffiieerrss below). !!## The entire command line typed so far. WWoorrdd DDeessiiggnnaattoorrss - Word designators are used to select desired words from the event. A :: - separates the event specification from the word designator. It may be - omitted if the word designator begins with a ^^, $$, **, --, or %%. Words - are numbered from the beginning of the line, with the first word being - denoted by 0 (zero). Words are inserted into the current line sepa- + Word designators are used to select desired words from the event. A :: + separates the event specification from the word designator. It may be + omitted if the word designator begins with a ^^, $$, **, --, or %%. Words + are numbered from the beginning of the line, with the first word being + denoted by 0 (zero). Words are inserted into the current line sepa- rated by single spaces. 00 ((zzeerroo)) The zeroth word. For the shell, this is the command word. _n The _nth word. ^^ The first argument. That is, word 1. - $$ The last word. This is usually the last argument, but will ex- + $$ The last word. This is usually the last argument, but will ex- pand to the zeroth word if there is only one word in the line. - %% The first word matched by the most recent `?_s_t_r_i_n_g?' search, if - the search string begins with a character that is part of a + %% The first word matched by the most recent `?_s_t_r_i_n_g?' search, if + the search string begins with a character that is part of a word. _x--_y A range of words; `-_y' abbreviates `0-_y'. - ** All of the words but the zeroth. This is a synonym for `_1_-_$'. - It is not an error to use ** if there is just one word in the + ** All of the words but the zeroth. This is a synonym for `_1_-_$'. + It is not an error to use ** if there is just one word in the event; the empty string is returned in that case. xx** Abbreviates _x_-_$. xx-- Abbreviates _x_-_$ like xx**, but omits the last word. If xx is miss- ing, it defaults to 0. - If a word designator is supplied without an event specification, the + If a word designator is supplied without an event specification, the previous command is used as the event. MMooddiiffiieerrss - After the optional word designator, there may appear a sequence of one + After the optional word designator, there may appear a sequence of one or more of the following modifiers, each preceded by a `:'. These mod- ify, or edit, the word or words selected from the history event. @@ -4422,24 +4425,24 @@ HHIISSTTOORRYY EEXXPPAANNSSIIOONN ee Remove all but the trailing suffix. pp Print the new command but do not execute it. qq Quote the substituted words, escaping further substitutions. - xx Quote the substituted words as with qq, but break into words at - bbllaannkkss and newlines. The qq and xx modifiers are mutually exclu- + xx Quote the substituted words as with qq, but break into words at + bbllaannkkss and newlines. The qq and xx modifiers are mutually exclu- sive; the last one supplied is used. ss//_o_l_d//_n_e_w// - Substitute _n_e_w for the first occurrence of _o_l_d in the event + Substitute _n_e_w for the first occurrence of _o_l_d in the event line. Any character may be used as the delimiter in place of /. - The final delimiter is optional if it is the last character of + The final delimiter is optional if it is the last character of the event line. The delimiter may be quoted in _o_l_d and _n_e_w with a single backslash. If & appears in _n_e_w, it is replaced by _o_l_d. - A single backslash will quote the &. If _o_l_d is null, it is set - to the last _o_l_d substituted, or, if no previous history substi- - tutions took place, the last _s_t_r_i_n_g in a !!??_s_t_r_i_n_g[[??]] search. + A single backslash will quote the &. If _o_l_d is null, it is set + to the last _o_l_d substituted, or, if no previous history substi- + tutions took place, the last _s_t_r_i_n_g in a !!??_s_t_r_i_n_g[[??]] search. If _n_e_w is null, each matching _o_l_d is deleted. && Repeat the previous substitution. gg Cause changes to be applied over the entire event line. This is - used in conjunction with `::ss' (e.g., `::ggss//_o_l_d//_n_e_w//') or `::&&'. - If used with `::ss', any delimiter can be used in place of /, and - the final delimiter is optional if it is the last character of + used in conjunction with `::ss' (e.g., `::ggss//_o_l_d//_n_e_w//') or `::&&'. + If used with `::ss', any delimiter can be used in place of /, and + the final delimiter is optional if it is the last character of the event line. An aa may be used as a synonym for gg. GG Apply the following `ss' or `&&' modifier once to each word in the event line. @@ -4448,56 +4451,56 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Unless otherwise noted, each builtin command documented in this section as accepting options preceded by -- accepts ---- to signify the end of the options. The ::, ttrruuee, ffaallssee, and tteesstt/[[ builtins do not accept options - and do not treat ---- specially. The eexxiitt, llooggoouutt, rreettuurrnn, bbrreeaakk, ccoonn-- - ttiinnuuee, lleett, and sshhiifftt builtins accept and process arguments beginning - with -- without requiring ----. Other builtins that accept arguments but - are not specified as accepting options interpret arguments beginning - with -- as invalid options and require ---- to prevent this interpreta- + and do not treat ---- specially. The eexxiitt, llooggoouutt, rreettuurrnn, bbrreeaakk, ccoonn-- + ttiinnuuee, lleett, and sshhiifftt builtins accept and process arguments beginning + with -- without requiring ----. Other builtins that accept arguments but + are not specified as accepting options interpret arguments beginning + with -- as invalid options and require ---- to prevent this interpreta- tion. :: [_a_r_g_u_m_e_n_t_s] - No effect; the command does nothing beyond expanding _a_r_g_u_m_e_n_t_s + No effect; the command does nothing beyond expanding _a_r_g_u_m_e_n_t_s and performing any specified redirections. The return status is zero. .. _f_i_l_e_n_a_m_e [_a_r_g_u_m_e_n_t_s] ssoouurrccee _f_i_l_e_n_a_m_e [_a_r_g_u_m_e_n_t_s] Read and execute commands from _f_i_l_e_n_a_m_e in the current shell en- - vironment and return the exit status of the last command exe- - cuted from _f_i_l_e_n_a_m_e. If _f_i_l_e_n_a_m_e does not contain a slash, - filenames in PPAATTHH are used to find the directory containing + vironment and return the exit status of the last command exe- + cuted from _f_i_l_e_n_a_m_e. If _f_i_l_e_n_a_m_e does not contain a slash, + filenames in PPAATTHH are used to find the directory containing _f_i_l_e_n_a_m_e, but _f_i_l_e_n_a_m_e does not need to be executable. The file - searched for in PPAATTHH need not be executable. When bbaasshh is not - in _p_o_s_i_x _m_o_d_e, the current directory is searched if no file is - found in PPAATTHH. If the ssoouurrcceeppaatthh option to the sshhoopptt builtin - command is turned off, the PPAATTHH is not searched. If any _a_r_g_u_- - _m_e_n_t_s are supplied, they become the positional parameters when - _f_i_l_e_n_a_m_e is executed. Otherwise the positional parameters are - unchanged. If the --TT option is enabled, .. inherits any trap on + searched for in PPAATTHH need not be executable. When bbaasshh is not + in _p_o_s_i_x _m_o_d_e, the current directory is searched if no file is + found in PPAATTHH. If the ssoouurrcceeppaatthh option to the sshhoopptt builtin + command is turned off, the PPAATTHH is not searched. If any _a_r_g_u_- + _m_e_n_t_s are supplied, they become the positional parameters when + _f_i_l_e_n_a_m_e is executed. Otherwise the positional parameters are + unchanged. If the --TT option is enabled, .. inherits any trap on DDEEBBUUGG; if it is not, any DDEEBBUUGG trap string is saved and restored - around the call to .., and .. unsets the DDEEBBUUGG trap while it exe- + around the call to .., and .. unsets the DDEEBBUUGG trap while it exe- cutes. If --TT is not set, and the sourced file changes the DDEEBBUUGG - trap, the new value is retained when .. completes. The return - status is the status of the last command exited within the + trap, the new value is retained when .. completes. The return + status is the status of the last command exited within the script (0 if no commands are executed), and false if _f_i_l_e_n_a_m_e is not found or cannot be read. aalliiaass [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] AAlliiaass with no arguments or with the --pp option prints the list of - aliases in the form aalliiaass _n_a_m_e=_v_a_l_u_e on standard output. When - arguments are supplied, an alias is defined for each _n_a_m_e whose - _v_a_l_u_e is given. A trailing space in _v_a_l_u_e causes the next word + aliases in the form aalliiaass _n_a_m_e=_v_a_l_u_e on standard output. When + arguments are supplied, an alias is defined for each _n_a_m_e whose + _v_a_l_u_e is given. A trailing space in _v_a_l_u_e causes the next word to be checked for alias substitution when the alias is expanded. - For each _n_a_m_e in the argument list for which no _v_a_l_u_e is sup- - plied, the name and value of the alias is printed. AAlliiaass re- - turns true unless a _n_a_m_e is given for which no alias has been + For each _n_a_m_e in the argument list for which no _v_a_l_u_e is sup- + plied, the name and value of the alias is printed. AAlliiaass re- + turns true unless a _n_a_m_e is given for which no alias has been defined. bbgg [_j_o_b_s_p_e_c ...] - Resume each suspended job _j_o_b_s_p_e_c in the background, as if it + Resume each suspended job _j_o_b_s_p_e_c in the background, as if it had been started with &&. If _j_o_b_s_p_e_c is not present, the shell's - notion of the _c_u_r_r_e_n_t _j_o_b is used. bbgg _j_o_b_s_p_e_c returns 0 unless - run when job control is disabled or, when run with job control - enabled, any specified _j_o_b_s_p_e_c was not found or was started + notion of the _c_u_r_r_e_n_t _j_o_b is used. bbgg _j_o_b_s_p_e_c returns 0 unless + run when job control is disabled or, when run with job control + enabled, any specified _j_o_b_s_p_e_c was not found or was started without job control. bbiinndd [--mm _k_e_y_m_a_p] [--llppssvvPPSSVVXX] @@ -4507,30 +4510,30 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS bbiinndd [--mm _k_e_y_m_a_p] _k_e_y_s_e_q:_f_u_n_c_t_i_o_n_-_n_a_m_e bbiinndd [--mm _k_e_y_m_a_p] _k_e_y_s_e_q:_r_e_a_d_l_i_n_e_-_c_o_m_m_a_n_d bbiinndd _r_e_a_d_l_i_n_e_-_c_o_m_m_a_n_d_-_l_i_n_e - Display current rreeaaddlliinnee key and function bindings, bind a key - sequence to a rreeaaddlliinnee function or macro, or set a rreeaaddlliinnee + Display current rreeaaddlliinnee key and function bindings, bind a key + sequence to a rreeaaddlliinnee function or macro, or set a rreeaaddlliinnee variable. Each non-option argument is a command as it would ap- - pear in a rreeaaddlliinnee initialization file such as _._i_n_p_u_t_r_c, but - each binding or command must be passed as a separate argument; - e.g., '"\C-x\C-r": re-read-init-file'. Options, if supplied, + pear in a rreeaaddlliinnee initialization file such as _._i_n_p_u_t_r_c, but + each binding or command must be passed as a separate argument; + e.g., '"\C-x\C-r": re-read-init-file'. Options, if supplied, have the following meanings: --mm _k_e_y_m_a_p Use _k_e_y_m_a_p as the keymap to be affected by the subsequent bindings. Acceptable _k_e_y_m_a_p names are _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_- - _d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_m_o_v_e_, _v_i_-_c_o_m_m_a_n_d, - and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d (_v_i_-_m_o_v_e - is also a synonym); _e_m_a_c_s is equivalent to _e_m_a_c_s_-_s_t_a_n_- + _d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_m_o_v_e_, _v_i_-_c_o_m_m_a_n_d, + and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d (_v_i_-_m_o_v_e + is also a synonym); _e_m_a_c_s is equivalent to _e_m_a_c_s_-_s_t_a_n_- _d_a_r_d. --ll List the names of all rreeaaddlliinnee functions. - --pp Display rreeaaddlliinnee function names and bindings in such a + --pp Display rreeaaddlliinnee function names and bindings in such a way that they can be re-read. --PP List current rreeaaddlliinnee function names and bindings. - --ss Display rreeaaddlliinnee key sequences bound to macros and the - strings they output in such a way that they can be re- + --ss Display rreeaaddlliinnee key sequences bound to macros and the + strings they output in such a way that they can be re- read. - --SS Display rreeaaddlliinnee key sequences bound to macros and the + --SS Display rreeaaddlliinnee key sequences bound to macros and the strings they output. - --vv Display rreeaaddlliinnee variable names and values in such a way + --vv Display rreeaaddlliinnee variable names and values in such a way that they can be re-read. --VV List current rreeaaddlliinnee variable names and values. --ff _f_i_l_e_n_a_m_e @@ -4543,188 +4546,188 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Remove any current binding for _k_e_y_s_e_q. --xx _k_e_y_s_e_q::_s_h_e_l_l_-_c_o_m_m_a_n_d Cause _s_h_e_l_l_-_c_o_m_m_a_n_d to be executed whenever _k_e_y_s_e_q is en- - tered. When _s_h_e_l_l_-_c_o_m_m_a_n_d is executed, the shell sets - the RREEAADDLLIINNEE__LLIINNEE variable to the contents of the rreeaadd-- + tered. When _s_h_e_l_l_-_c_o_m_m_a_n_d is executed, the shell sets + the RREEAADDLLIINNEE__LLIINNEE variable to the contents of the rreeaadd-- lliinnee line buffer and the RREEAADDLLIINNEE__PPOOIINNTT and RREEAADDLLIINNEE__MMAARRKK - variables to the current location of the insertion point - and the saved insertion point (the mark), respectively. - The shell assigns any numeric argument the user supplied + variables to the current location of the insertion point + and the saved insertion point (the mark), respectively. + The shell assigns any numeric argument the user supplied to the RREEAADDLLIINNEE__AARRGGUUMMEENNTT variable. If there was no argu- - ment, that variable is not set. If the executed command - changes the value of any of RREEAADDLLIINNEE__LLIINNEE, RREEAADD-- - LLIINNEE__PPOOIINNTT, or RREEAADDLLIINNEE__MMAARRKK, those new values will be + ment, that variable is not set. If the executed command + changes the value of any of RREEAADDLLIINNEE__LLIINNEE, RREEAADD-- + LLIINNEE__PPOOIINNTT, or RREEAADDLLIINNEE__MMAARRKK, those new values will be reflected in the editing state. - --XX List all key sequences bound to shell commands and the + --XX List all key sequences bound to shell commands and the associated commands in a format that can be reused as in- put. - The return value is 0 unless an unrecognized option is given or + The return value is 0 unless an unrecognized option is given or an error occurred. bbrreeaakk [_n] - Exit from within a ffoorr, wwhhiillee, uunnttiill, or sseelleecctt loop. If _n is - specified, break _n levels. _n must be >= 1. If _n is greater - than the number of enclosing loops, all enclosing loops are ex- - ited. The return value is 0 unless _n is not greater than or + Exit from within a ffoorr, wwhhiillee, uunnttiill, or sseelleecctt loop. If _n is + specified, break _n levels. _n must be >= 1. If _n is greater + than the number of enclosing loops, all enclosing loops are ex- + ited. The return value is 0 unless _n is not greater than or equal to 1. bbuuiillttiinn _s_h_e_l_l_-_b_u_i_l_t_i_n [_a_r_g_u_m_e_n_t_s] - Execute the specified shell builtin, passing it _a_r_g_u_m_e_n_t_s, and + Execute the specified shell builtin, passing it _a_r_g_u_m_e_n_t_s, and return its exit status. This is useful when defining a function - whose name is the same as a shell builtin, retaining the func- + whose name is the same as a shell builtin, retaining the func- tionality of the builtin within the function. The ccdd builtin is - commonly redefined this way. The return status is false if + commonly redefined this way. The return status is false if _s_h_e_l_l_-_b_u_i_l_t_i_n is not a shell builtin command. ccaalllleerr [_e_x_p_r] Returns the context of any active subroutine call (a shell func- tion or a script executed with the .. or ssoouurrccee builtins). With- out _e_x_p_r, ccaalllleerr displays the line number and source filename of - the current subroutine call. If a non-negative integer is sup- + the current subroutine call. If a non-negative integer is sup- plied as _e_x_p_r, ccaalllleerr displays the line number, subroutine name, - and source file corresponding to that position in the current - execution call stack. This extra information may be used, for - example, to print a stack trace. The current frame is frame 0. - The return value is 0 unless the shell is not executing a sub- - routine call or _e_x_p_r does not correspond to a valid position in + and source file corresponding to that position in the current + execution call stack. This extra information may be used, for + example, to print a stack trace. The current frame is frame 0. + The return value is 0 unless the shell is not executing a sub- + routine call or _e_x_p_r does not correspond to a valid position in the call stack. ccdd [--LL|[--PP [--ee]] [-@]] [_d_i_r] - Change the current directory to _d_i_r. if _d_i_r is not supplied, - the value of the HHOOMMEE shell variable is the default. The vari- + Change the current directory to _d_i_r. if _d_i_r is not supplied, + the value of the HHOOMMEE shell variable is the default. The vari- able CCDDPPAATTHH defines the search path for the directory containing - _d_i_r: each directory name in CCDDPPAATTHH is searched for _d_i_r. Alter- - native directory names in CCDDPPAATTHH are separated by a colon (:). - A null directory name in CCDDPPAATTHH is the same as the current di- - rectory, i.e., ``..''. If _d_i_r begins with a slash (/), then CCDD-- - PPAATTHH is not used. The --PP option causes ccdd to use the physical + _d_i_r: each directory name in CCDDPPAATTHH is searched for _d_i_r. Alter- + native directory names in CCDDPPAATTHH are separated by a colon (:). + A null directory name in CCDDPPAATTHH is the same as the current di- + rectory, i.e., ``..''. If _d_i_r begins with a slash (/), then CCDD-- + PPAATTHH is not used. The --PP option causes ccdd to use the physical directory structure by resolving symbolic links while traversing - _d_i_r and before processing instances of _._. in _d_i_r (see also the + _d_i_r and before processing instances of _._. in _d_i_r (see also the --PP option to the sseett builtin command); the --LL option forces sym- - bolic links to be followed by resolving the link after process- - ing instances of _._. in _d_i_r. If _._. appears in _d_i_r, it is pro- - cessed by removing the immediately previous pathname component - from _d_i_r, back to a slash or the beginning of _d_i_r. If the --ee - option is supplied with --PP, and the current working directory - cannot be successfully determined after a successful directory - change, ccdd will return an unsuccessful status. On systems that + bolic links to be followed by resolving the link after process- + ing instances of _._. in _d_i_r. If _._. appears in _d_i_r, it is pro- + cessed by removing the immediately previous pathname component + from _d_i_r, back to a slash or the beginning of _d_i_r. If the --ee + option is supplied with --PP, and the current working directory + cannot be successfully determined after a successful directory + change, ccdd will return an unsuccessful status. On systems that support it, the --@@ option presents the extended attributes asso- - ciated with a file as a directory. An argument of -- is con- - verted to $$OOLLDDPPWWDD before the directory change is attempted. If - a non-empty directory name from CCDDPPAATTHH is used, or if -- is the - first argument, and the directory change is successful, the ab- - solute pathname of the new working directory is written to the + ciated with a file as a directory. An argument of -- is con- + verted to $$OOLLDDPPWWDD before the directory change is attempted. If + a non-empty directory name from CCDDPPAATTHH is used, or if -- is the + first argument, and the directory change is successful, the ab- + solute pathname of the new working directory is written to the standard output. If the directory change is successful, ccdd sets - the value of the PPWWDD environment variable to the new directory - name, and sets the OOLLDDPPWWDD environment variable to the value of - the current working directory before the change. The return - value is true if the directory was successfully changed; false + the value of the PPWWDD environment variable to the new directory + name, and sets the OOLLDDPPWWDD environment variable to the value of + the current working directory before the change. The return + value is true if the directory was successfully changed; false otherwise. ccoommmmaanndd [--ppVVvv] _c_o_m_m_a_n_d [_a_r_g ...] - Run _c_o_m_m_a_n_d with _a_r_g_s suppressing the normal shell function + Run _c_o_m_m_a_n_d with _a_r_g_s suppressing the normal shell function lookup. Only builtin commands or commands found in the PPAATTHH are - executed. If the --pp option is given, the search for _c_o_m_m_a_n_d is - performed using a default value for PPAATTHH that is guaranteed to - find all of the standard utilities. If either the --VV or --vv op- - tion is supplied, a description of _c_o_m_m_a_n_d is printed. The --vv - option causes a single word indicating the command or filename + executed. If the --pp option is given, the search for _c_o_m_m_a_n_d is + performed using a default value for PPAATTHH that is guaranteed to + find all of the standard utilities. If either the --VV or --vv op- + tion is supplied, a description of _c_o_m_m_a_n_d is printed. The --vv + option causes a single word indicating the command or filename used to invoke _c_o_m_m_a_n_d to be displayed; the --VV option produces a - more verbose description. If the --VV or --vv option is supplied, - the exit status is 0 if _c_o_m_m_a_n_d was found, and 1 if not. If + more verbose description. If the --VV or --vv option is supplied, + the exit status is 0 if _c_o_m_m_a_n_d was found, and 1 if not. If neither option is supplied and an error occurred or _c_o_m_m_a_n_d can- - not be found, the exit status is 127. Otherwise, the exit sta- + not be found, the exit status is 127. Otherwise, the exit sta- tus of the ccoommmmaanndd builtin is the exit status of _c_o_m_m_a_n_d. ccoommppggeenn [_o_p_t_i_o_n] [_w_o_r_d] - Generate possible completion matches for _w_o_r_d according to the - _o_p_t_i_o_ns, which may be any option accepted by the ccoommpplleettee - builtin with the exception of --pp and --rr, and write the matches - to the standard output. When using the --FF or --CC options, the - various shell variables set by the programmable completion fa- + Generate possible completion matches for _w_o_r_d according to the + _o_p_t_i_o_ns, which may be any option accepted by the ccoommpplleettee + builtin with the exception of --pp and --rr, and write the matches + to the standard output. When using the --FF or --CC options, the + various shell variables set by the programmable completion fa- cilities, while available, will not have useful values. The matches will be generated in the same way as if the program- mable completion code had generated them directly from a comple- - tion specification with the same flags. If _w_o_r_d is specified, + tion specification with the same flags. If _w_o_r_d is specified, only those completions matching _w_o_r_d will be displayed. - The return value is true unless an invalid option is supplied, + The return value is true unless an invalid option is supplied, or no matches were generated. - ccoommpplleettee [--aabbccddeeffggjjkkssuuvv] [--oo _c_o_m_p_-_o_p_t_i_o_n] [--DDEEII] [--AA _a_c_t_i_o_n] [--GG _g_l_o_b_- + ccoommpplleettee [--aabbccddeeffggjjkkssuuvv] [--oo _c_o_m_p_-_o_p_t_i_o_n] [--DDEEII] [--AA _a_c_t_i_o_n] [--GG _g_l_o_b_- _p_a_t] [--WW _w_o_r_d_l_i_s_t] - [--FF _f_u_n_c_t_i_o_n] [--CC _c_o_m_m_a_n_d] [--XX _f_i_l_t_e_r_p_a_t] [--PP _p_r_e_f_i_x] [--SS _s_u_f_- + [--FF _f_u_n_c_t_i_o_n] [--CC _c_o_m_m_a_n_d] [--XX _f_i_l_t_e_r_p_a_t] [--PP _p_r_e_f_i_x] [--SS _s_u_f_- _f_i_x] _n_a_m_e [_n_a_m_e _._._.] ccoommpplleettee --pprr [--DDEEII] [_n_a_m_e ...] - Specify how arguments to each _n_a_m_e should be completed. If the - --pp option is supplied, or if no options are supplied, existing - completion specifications are printed in a way that allows them + Specify how arguments to each _n_a_m_e should be completed. If the + --pp option is supplied, or if no options are supplied, existing + completion specifications are printed in a way that allows them to be reused as input. The --rr option removes a completion spec- - ification for each _n_a_m_e, or, if no _n_a_m_es are supplied, all com- + ification for each _n_a_m_e, or, if no _n_a_m_es are supplied, all com- pletion specifications. The --DD option indicates that other sup- - plied options and actions should apply to the ``default'' com- - mand completion; that is, completion attempted on a command for - which no completion has previously been defined. The --EE option - indicates that other supplied options and actions should apply - to ``empty'' command completion; that is, completion attempted - on a blank line. The --II option indicates that other supplied - options and actions should apply to completion on the initial - non-assignment word on the line, or after a command delimiter - such as ;; or ||, which is usually command name completion. If - multiple options are supplied, the --DD option takes precedence + plied options and actions should apply to the ``default'' com- + mand completion; that is, completion attempted on a command for + which no completion has previously been defined. The --EE option + indicates that other supplied options and actions should apply + to ``empty'' command completion; that is, completion attempted + on a blank line. The --II option indicates that other supplied + options and actions should apply to completion on the initial + non-assignment word on the line, or after a command delimiter + such as ;; or ||, which is usually command name completion. If + multiple options are supplied, the --DD option takes precedence over --EE, and both take precedence over --II. If any of --DD, --EE, or - --II are supplied, any other _n_a_m_e arguments are ignored; these + --II are supplied, any other _n_a_m_e arguments are ignored; these completions only apply to the case specified by the option. - The process of applying these completion specifications when - word completion is attempted is described above under PPrrooggrraamm-- + The process of applying these completion specifications when + word completion is attempted is described above under PPrrooggrraamm-- mmaabbllee CCoommpplleettiioonn. - Other options, if specified, have the following meanings. The - arguments to the --GG, --WW, and --XX options (and, if necessary, the - --PP and --SS options) should be quoted to protect them from expan- + Other options, if specified, have the following meanings. The + arguments to the --GG, --WW, and --XX options (and, if necessary, the + --PP and --SS options) should be quoted to protect them from expan- sion before the ccoommpplleettee builtin is invoked. --oo _c_o_m_p_-_o_p_t_i_o_n - The _c_o_m_p_-_o_p_t_i_o_n controls several aspects of the comp- - spec's behavior beyond the simple generation of comple- + The _c_o_m_p_-_o_p_t_i_o_n controls several aspects of the comp- + spec's behavior beyond the simple generation of comple- tions. _c_o_m_p_-_o_p_t_i_o_n may be one of: bbaasshhddeeffaauulltt Perform the rest of the default bbaasshh completions if the compspec generates no matches. - ddeeffaauulltt Use readline's default filename completion if + ddeeffaauulltt Use readline's default filename completion if the compspec generates no matches. ddiirrnnaammeess - Perform directory name completion if the comp- + Perform directory name completion if the comp- spec generates no matches. ffiilleennaammeess - Tell readline that the compspec generates file- - names, so it can perform any filename-specific - processing (like adding a slash to directory - names, quoting special characters, or suppress- - ing trailing spaces). Intended to be used with + Tell readline that the compspec generates file- + names, so it can perform any filename-specific + processing (like adding a slash to directory + names, quoting special characters, or suppress- + ing trailing spaces). Intended to be used with shell functions. - nnooqquuoottee Tell readline not to quote the completed words - if they are filenames (quoting filenames is the + nnooqquuoottee Tell readline not to quote the completed words + if they are filenames (quoting filenames is the default). - nnoossoorrtt Tell readline not to sort the list of possible + nnoossoorrtt Tell readline not to sort the list of possible completions alphabetically. - nnoossppaaccee Tell readline not to append a space (the de- - fault) to words completed at the end of the + nnoossppaaccee Tell readline not to append a space (the de- + fault) to words completed at the end of the line. pplluussddiirrss - After any matches defined by the compspec are + After any matches defined by the compspec are generated, directory name completion is at- tempted and any matches are added to the results of the other actions. --AA _a_c_t_i_o_n - The _a_c_t_i_o_n may be one of the following to generate a + The _a_c_t_i_o_n may be one of the following to generate a list of possible completions: aalliiaass Alias names. May also be specified as --aa. aarrrraayyvvaarr Array variable names. bbiinnddiinngg RReeaaddlliinnee key binding names. - bbuuiillttiinn Names of shell builtin commands. May also be + bbuuiillttiinn Names of shell builtin commands. May also be specified as --bb. ccoommmmaanndd Command names. May also be specified as --cc. ddiirreeccttoorryy @@ -4732,7 +4735,7 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ddiissaabblleedd Names of disabled shell builtins. eennaabblleedd Names of enabled shell builtins. - eexxppoorrtt Names of exported shell variables. May also be + eexxppoorrtt Names of exported shell variables. May also be specified as --ee. ffiillee File names. May also be specified as --ff. ffuunnccttiioonn @@ -4741,17 +4744,17 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS hheellppttooppiicc Help topics as accepted by the hheellpp builtin. hhoossttnnaammee - Hostnames, as taken from the file specified by + Hostnames, as taken from the file specified by the HHOOSSTTFFIILLEE shell variable. - jjoobb Job names, if job control is active. May also + jjoobb Job names, if job control is active. May also be specified as --jj. - kkeeyywwoorrdd Shell reserved words. May also be specified as + kkeeyywwoorrdd Shell reserved words. May also be specified as --kk. rruunnnniinngg Names of running jobs, if job control is active. sseerrvviiccee Service names. May also be specified as --ss. - sseettoopptt Valid arguments for the --oo option to the sseett + sseettoopptt Valid arguments for the --oo option to the sseett builtin. - sshhoopptt Shell option names as accepted by the sshhoopptt + sshhoopptt Shell option names as accepted by the sshhoopptt builtin. ssiiggnnaall Signal names. ssttooppppeedd Names of stopped jobs, if job control is active. @@ -4760,197 +4763,197 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Names of all shell variables. May also be spec- ified as --vv. --CC _c_o_m_m_a_n_d - _c_o_m_m_a_n_d is executed in a subshell environment, and its + _c_o_m_m_a_n_d is executed in a subshell environment, and its output is used as the possible completions. --FF _f_u_n_c_t_i_o_n - The shell function _f_u_n_c_t_i_o_n is executed in the current - shell environment. When the function is executed, the + The shell function _f_u_n_c_t_i_o_n is executed in the current + shell environment. When the function is executed, the first argument ($$11) is the name of the command whose ar- guments are being completed, the second argument ($$22) is the word being completed, and the third argument ($$33) is - the word preceding the word being completed on the cur- - rent command line. When it finishes, the possible com- - pletions are retrieved from the value of the CCOOMMPPRREEPPLLYY + the word preceding the word being completed on the cur- + rent command line. When it finishes, the possible com- + pletions are retrieved from the value of the CCOOMMPPRREEPPLLYY array variable. --GG _g_l_o_b_p_a_t - The pathname expansion pattern _g_l_o_b_p_a_t is expanded to + The pathname expansion pattern _g_l_o_b_p_a_t is expanded to generate the possible completions. --PP _p_r_e_f_i_x - _p_r_e_f_i_x is added at the beginning of each possible com- + _p_r_e_f_i_x is added at the beginning of each possible com- pletion after all other options have been applied. --SS _s_u_f_f_i_x _s_u_f_f_i_x is appended to each possible completion after all other options have been applied. --WW _w_o_r_d_l_i_s_t - The _w_o_r_d_l_i_s_t is split using the characters in the IIFFSS - special variable as delimiters, and each resultant word - is expanded. Shell quoting is honored within _w_o_r_d_l_i_s_t, + The _w_o_r_d_l_i_s_t is split using the characters in the IIFFSS + special variable as delimiters, and each resultant word + is expanded. Shell quoting is honored within _w_o_r_d_l_i_s_t, in order to provide a mechanism for the words to contain - shell metacharacters or characters in the value of IIFFSS. - The possible completions are the members of the resul- + shell metacharacters or characters in the value of IIFFSS. + The possible completions are the members of the resul- tant list which match the word being completed. --XX _f_i_l_t_e_r_p_a_t - _f_i_l_t_e_r_p_a_t is a pattern as used for pathname expansion. + _f_i_l_t_e_r_p_a_t is a pattern as used for pathname expansion. It is applied to the list of possible completions gener- - ated by the preceding options and arguments, and each - completion matching _f_i_l_t_e_r_p_a_t is removed from the list. - A leading !! in _f_i_l_t_e_r_p_a_t negates the pattern; in this + ated by the preceding options and arguments, and each + completion matching _f_i_l_t_e_r_p_a_t is removed from the list. + A leading !! in _f_i_l_t_e_r_p_a_t negates the pattern; in this case, any completion not matching _f_i_l_t_e_r_p_a_t is removed. - The return value is true unless an invalid option is supplied, - an option other than --pp or --rr is supplied without a _n_a_m_e argu- - ment, an attempt is made to remove a completion specification + The return value is true unless an invalid option is supplied, + an option other than --pp or --rr is supplied without a _n_a_m_e argu- + ment, an attempt is made to remove a completion specification for a _n_a_m_e for which no specification exists, or an error occurs adding a completion specification. ccoommppoopptt [--oo _o_p_t_i_o_n] [--DDEEII] [++oo _o_p_t_i_o_n] [_n_a_m_e] - Modify completion options for each _n_a_m_e according to the _o_p_- + Modify completion options for each _n_a_m_e according to the _o_p_- _t_i_o_ns, or for the currently-executing completion if no _n_a_m_es are - supplied. If no _o_p_t_i_o_ns are given, display the completion op- - tions for each _n_a_m_e or the current completion. The possible - values of _o_p_t_i_o_n are those valid for the ccoommpplleettee builtin de- - scribed above. The --DD option indicates that other supplied op- - tions should apply to the ``default'' command completion; that - is, completion attempted on a command for which no completion + supplied. If no _o_p_t_i_o_ns are given, display the completion op- + tions for each _n_a_m_e or the current completion. The possible + values of _o_p_t_i_o_n are those valid for the ccoommpplleettee builtin de- + scribed above. The --DD option indicates that other supplied op- + tions should apply to the ``default'' command completion; that + is, completion attempted on a command for which no completion has previously been defined. The --EE option indicates that other - supplied options should apply to ``empty'' command completion; - that is, completion attempted on a blank line. The --II option + supplied options should apply to ``empty'' command completion; + that is, completion attempted on a blank line. The --II option indicates that other supplied options should apply to completion - on the initial non-assignment word on the line, or after a com- - mand delimiter such as ;; or ||, which is usually command name + on the initial non-assignment word on the line, or after a com- + mand delimiter such as ;; or ||, which is usually command name completion. - The return value is true unless an invalid option is supplied, + The return value is true unless an invalid option is supplied, an attempt is made to modify the options for a _n_a_m_e for which no completion specification exists, or an output error occurs. ccoonnttiinnuuee [_n] Resume the next iteration of the enclosing ffoorr, wwhhiillee, uunnttiill, or - sseelleecctt loop. If _n is specified, resume at the _nth enclosing - loop. _n must be >= 1. If _n is greater than the number of en- - closing loops, the last enclosing loop (the ``top-level'' loop) - is resumed. The return value is 0 unless _n is not greater than + sseelleecctt loop. If _n is specified, resume at the _nth enclosing + loop. _n must be >= 1. If _n is greater than the number of en- + closing loops, the last enclosing loop (the ``top-level'' loop) + is resumed. The return value is 0 unless _n is not greater than or equal to 1. ddeeccllaarree [--aaAAffFFggiiIIllnnrrttuuxx] [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] ttyyppeesseett [--aaAAffFFggiiIIllnnrrttuuxx] [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] - Declare variables and/or give them attributes. If no _n_a_m_es are - given then display the values of variables. The --pp option will + Declare variables and/or give them attributes. If no _n_a_m_es are + given then display the values of variables. The --pp option will display the attributes and values of each _n_a_m_e. When --pp is used - with _n_a_m_e arguments, additional options, other than --ff and --FF, - are ignored. When --pp is supplied without _n_a_m_e arguments, it - will display the attributes and values of all variables having + with _n_a_m_e arguments, additional options, other than --ff and --FF, + are ignored. When --pp is supplied without _n_a_m_e arguments, it + will display the attributes and values of all variables having the attributes specified by the additional options. If no other - options are supplied with --pp, ddeeccllaarree will display the at- - tributes and values of all shell variables. The --ff option will + options are supplied with --pp, ddeeccllaarree will display the at- + tributes and values of all shell variables. The --ff option will restrict the display to shell functions. The --FF option inhibits - the display of function definitions; only the function name and + the display of function definitions; only the function name and attributes are printed. If the eexxttddeebbuugg shell option is enabled - using sshhoopptt, the source file name and line number where each - _n_a_m_e is defined are displayed as well. The --FF option implies + using sshhoopptt, the source file name and line number where each + _n_a_m_e is defined are displayed as well. The --FF option implies --ff. The --gg option forces variables to be created or modified at the global scope, even when ddeeccllaarree is executed in a shell func- - tion. It is ignored in all other cases. The --II option causes - local variables to inherit the attributes (except the _n_a_m_e_r_e_f + tion. It is ignored in all other cases. The --II option causes + local variables to inherit the attributes (except the _n_a_m_e_r_e_f attribute) and value of any existing variable with the same _n_a_m_e - at a surrounding scope. If there is no existing variable, the + at a surrounding scope. If there is no existing variable, the local variable is initially unset. The following options can be - used to restrict output to variables with the specified attri- + used to restrict output to variables with the specified attri- bute or to give variables attributes: - --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss + --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss above). - --AA Each _n_a_m_e is an associative array variable (see AArrrraayyss + --AA Each _n_a_m_e is an associative array variable (see AArrrraayyss above). --ff Use function names only. --ii The variable is treated as an integer; arithmetic evalua- - tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above) is performed when + tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above) is performed when the variable is assigned a value. - --ll When the variable is assigned a value, all upper-case - characters are converted to lower-case. The upper-case + --ll When the variable is assigned a value, all upper-case + characters are converted to lower-case. The upper-case attribute is disabled. - --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name - reference to another variable. That other variable is - defined by the value of _n_a_m_e. All references, assign- - ments, and attribute modifications to _n_a_m_e, except those - using or changing the --nn attribute itself, are performed - on the variable referenced by _n_a_m_e's value. The nameref + --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name + reference to another variable. That other variable is + defined by the value of _n_a_m_e. All references, assign- + ments, and attribute modifications to _n_a_m_e, except those + using or changing the --nn attribute itself, are performed + on the variable referenced by _n_a_m_e's value. The nameref attribute cannot be applied to array variables. --rr Make _n_a_m_es readonly. These names cannot then be assigned values by subsequent assignment statements or unset. --tt Give each _n_a_m_e the _t_r_a_c_e attribute. Traced functions in- - herit the DDEEBBUUGG and RREETTUURRNN traps from the calling shell. + herit the DDEEBBUUGG and RREETTUURRNN traps from the calling shell. The trace attribute has no special meaning for variables. - --uu When the variable is assigned a value, all lower-case - characters are converted to upper-case. The lower-case + --uu When the variable is assigned a value, all lower-case + characters are converted to upper-case. The lower-case attribute is disabled. - --xx Mark _n_a_m_es for export to subsequent commands via the en- + --xx Mark _n_a_m_es for export to subsequent commands via the en- vironment. - Using `+' instead of `-' turns off the attribute instead, with - the exceptions that ++aa and ++AA may not be used to destroy array - variables and ++rr will not remove the readonly attribute. When + Using `+' instead of `-' turns off the attribute instead, with + the exceptions that ++aa and ++AA may not be used to destroy array + variables and ++rr will not remove the readonly attribute. When used in a function, ddeeccllaarree and ttyyppeesseett make each _n_a_m_e local, as - with the llooccaall command, unless the --gg option is supplied. If a - variable name is followed by =_v_a_l_u_e, the value of the variable - is set to _v_a_l_u_e. When using --aa or --AA and the compound assign- - ment syntax to create array variables, additional attributes do - not take effect until subsequent assignments. The return value + with the llooccaall command, unless the --gg option is supplied. If a + variable name is followed by =_v_a_l_u_e, the value of the variable + is set to _v_a_l_u_e. When using --aa or --AA and the compound assign- + ment syntax to create array variables, additional attributes do + not take effect until subsequent assignments. The return value is 0 unless an invalid option is encountered, an attempt is made to define a function using ``-f foo=bar'', an attempt is made to assign a value to a readonly variable, an attempt is made to as- sign a value to an array variable without using the compound as- - signment syntax (see AArrrraayyss above), one of the _n_a_m_e_s is not a - valid shell variable name, an attempt is made to turn off read- - only status for a readonly variable, an attempt is made to turn + signment syntax (see AArrrraayyss above), one of the _n_a_m_e_s is not a + valid shell variable name, an attempt is made to turn off read- + only status for a readonly variable, an attempt is made to turn off array status for an array variable, or an attempt is made to display a non-existent function with --ff. ddiirrss [[--ccllppvv]] [[++_n]] [[--_n]] - Without options, displays the list of currently remembered di- - rectories. The default display is on a single line with direc- - tory names separated by spaces. Directories are added to the - list with the ppuusshhdd command; the ppooppdd command removes entries + Without options, displays the list of currently remembered di- + rectories. The default display is on a single line with direc- + tory names separated by spaces. Directories are added to the + list with the ppuusshhdd command; the ppooppdd command removes entries from the list. The current directory is always the first direc- tory in the stack. - --cc Clears the directory stack by deleting all of the en- + --cc Clears the directory stack by deleting all of the en- tries. - --ll Produces a listing using full pathnames; the default + --ll Produces a listing using full pathnames; the default listing format uses a tilde to denote the home directory. --pp Print the directory stack with one entry per line. - --vv Print the directory stack with one entry per line, pre- + --vv Print the directory stack with one entry per line, pre- fixing each entry with its index in the stack. ++_n Displays the _nth entry counting from the left of the list shown by ddiirrss when invoked without options, starting with zero. - --_n Displays the _nth entry counting from the right of the + --_n Displays the _nth entry counting from the right of the list shown by ddiirrss when invoked without options, starting with zero. - The return value is 0 unless an invalid option is supplied or _n + The return value is 0 unless an invalid option is supplied or _n indexes beyond the end of the directory stack. ddiissoowwnn [--aarr] [--hh] [_j_o_b_s_p_e_c ... | _p_i_d ... ] - Without options, remove each _j_o_b_s_p_e_c from the table of active - jobs. If _j_o_b_s_p_e_c is not present, and neither the --aa nor the --rr - option is supplied, the _c_u_r_r_e_n_t _j_o_b is used. If the --hh option - is given, each _j_o_b_s_p_e_c is not removed from the table, but is - marked so that SSIIGGHHUUPP is not sent to the job if the shell re- + Without options, remove each _j_o_b_s_p_e_c from the table of active + jobs. If _j_o_b_s_p_e_c is not present, and neither the --aa nor the --rr + option is supplied, the _c_u_r_r_e_n_t _j_o_b is used. If the --hh option + is given, each _j_o_b_s_p_e_c is not removed from the table, but is + marked so that SSIIGGHHUUPP is not sent to the job if the shell re- ceives a SSIIGGHHUUPP. If no _j_o_b_s_p_e_c is supplied, the --aa option means - to remove or mark all jobs; the --rr option without a _j_o_b_s_p_e_c ar- + to remove or mark all jobs; the --rr option without a _j_o_b_s_p_e_c ar- gument restricts operation to running jobs. The return value is 0 unless a _j_o_b_s_p_e_c does not specify a valid job. eecchhoo [--nneeEE] [_a_r_g ...] - Output the _a_r_gs, separated by spaces, followed by a newline. - The return status is 0 unless a write error occurs. If --nn is + Output the _a_r_gs, separated by spaces, followed by a newline. + The return status is 0 unless a write error occurs. If --nn is specified, the trailing newline is suppressed. If the --ee option - is given, interpretation of the following backslash-escaped - characters is enabled. The --EE option disables the interpreta- - tion of these escape characters, even on systems where they are - interpreted by default. The xxppgg__eecchhoo shell option may be used - to dynamically determine whether or not eecchhoo expands these es- - cape characters by default. eecchhoo does not interpret ---- to mean - the end of options. eecchhoo interprets the following escape se- + is given, interpretation of the following backslash-escaped + characters is enabled. The --EE option disables the interpreta- + tion of these escape characters, even on systems where they are + interpreted by default. The xxppgg__eecchhoo shell option may be used + to dynamically determine whether or not eecchhoo expands these es- + cape characters by default. eecchhoo does not interpret ---- to mean + the end of options. eecchhoo interprets the following escape se- quences: \\aa alert (bell) \\bb backspace @@ -4963,200 +4966,200 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS \\tt horizontal tab \\vv vertical tab \\\\ backslash - \\00_n_n_n the eight-bit character whose value is the octal value + \\00_n_n_n the eight-bit character whose value is the octal value _n_n_n (zero to three octal digits) - \\xx_H_H the eight-bit character whose value is the hexadecimal + \\xx_H_H the eight-bit character whose value is the hexadecimal value _H_H (one or two hex digits) - \\uu_H_H_H_H the Unicode (ISO/IEC 10646) character whose value is the + \\uu_H_H_H_H the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value _H_H_H_H (one to four hex digits) \\UU_H_H_H_H_H_H_H_H - the Unicode (ISO/IEC 10646) character whose value is the + the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value _H_H_H_H_H_H_H_H (one to eight hex digits) eennaabbllee [--aa] [--ddnnppss] [--ff _f_i_l_e_n_a_m_e] [_n_a_m_e ...] - Enable and disable builtin shell commands. Disabling a builtin + Enable and disable builtin shell commands. Disabling a builtin allows a disk command which has the same name as a shell builtin - to be executed without specifying a full pathname, even though - the shell normally searches for builtins before disk commands. - If --nn is used, each _n_a_m_e is disabled; otherwise, _n_a_m_e_s are en- - abled. For example, to use the tteesstt binary found via the PPAATTHH - instead of the shell builtin version, run ``enable -n test''. - The --ff option means to load the new builtin command _n_a_m_e from + to be executed without specifying a full pathname, even though + the shell normally searches for builtins before disk commands. + If --nn is used, each _n_a_m_e is disabled; otherwise, _n_a_m_e_s are en- + abled. For example, to use the tteesstt binary found via the PPAATTHH + instead of the shell builtin version, run ``enable -n test''. + The --ff option means to load the new builtin command _n_a_m_e from shared object _f_i_l_e_n_a_m_e, on systems that support dynamic loading. Bash will use the value of the BBAASSHH__LLOOAADDAABBLLEESS__PPAATTHH variable as a colon-separated list of directories in which to search for _f_i_l_e_- - _n_a_m_e. The default is system-dependent. The --dd option will - delete a builtin previously loaded with --ff. If no _n_a_m_e argu- - ments are given, or if the --pp option is supplied, a list of - shell builtins is printed. With no other option arguments, the + _n_a_m_e. The default is system-dependent. The --dd option will + delete a builtin previously loaded with --ff. If no _n_a_m_e argu- + ments are given, or if the --pp option is supplied, a list of + shell builtins is printed. With no other option arguments, the list consists of all enabled shell builtins. If --nn is supplied, only disabled builtins are printed. If --aa is supplied, the list - printed includes all builtins, with an indication of whether or - not each is enabled. If --ss is supplied, the output is re- - stricted to the POSIX _s_p_e_c_i_a_l builtins. If no options are sup- - plied and a _n_a_m_e is not a shell builtin, eennaabbllee will attempt to - load _n_a_m_e from a shared object named _n_a_m_e, as if the command - were ``enable -f _n_a_m_e _n_a_m_e . The return value is 0 unless a - _n_a_m_e is not a shell builtin or there is an error loading a new + printed includes all builtins, with an indication of whether or + not each is enabled. If --ss is supplied, the output is re- + stricted to the POSIX _s_p_e_c_i_a_l builtins. If no options are sup- + plied and a _n_a_m_e is not a shell builtin, eennaabbllee will attempt to + load _n_a_m_e from a shared object named _n_a_m_e, as if the command + were ``enable -f _n_a_m_e _n_a_m_e . The return value is 0 unless a + _n_a_m_e is not a shell builtin or there is an error loading a new builtin from a shared object. eevvaall [_a_r_g ...] - The _a_r_gs are read and concatenated together into a single com- - mand. This command is then read and executed by the shell, and - its exit status is returned as the value of eevvaall. If there are + The _a_r_gs are read and concatenated together into a single com- + mand. This command is then read and executed by the shell, and + its exit status is returned as the value of eevvaall. If there are no _a_r_g_s, or only null arguments, eevvaall returns 0. eexxeecc [--ccll] [--aa _n_a_m_e] [_c_o_m_m_a_n_d [_a_r_g_u_m_e_n_t_s]] - If _c_o_m_m_a_n_d is specified, it replaces the shell. No new process - is created. The _a_r_g_u_m_e_n_t_s become the arguments to _c_o_m_m_a_n_d. If + If _c_o_m_m_a_n_d is specified, it replaces the shell. No new process + is created. The _a_r_g_u_m_e_n_t_s become the arguments to _c_o_m_m_a_n_d. If the --ll option is supplied, the shell places a dash at the begin- ning of the zeroth argument passed to _c_o_m_m_a_n_d. This is what _l_o_- - _g_i_n(1) does. The --cc option causes _c_o_m_m_a_n_d to be executed with - an empty environment. If --aa is supplied, the shell passes _n_a_m_e + _g_i_n(1) does. The --cc option causes _c_o_m_m_a_n_d to be executed with + an empty environment. If --aa is supplied, the shell passes _n_a_m_e as the zeroth argument to the executed command. If _c_o_m_m_a_n_d can- - not be executed for some reason, a non-interactive shell exits, - unless the eexxeeccffaaiill shell option is enabled. In that case, it - returns failure. An interactive shell returns failure if the - file cannot be executed. A subshell exits unconditionally if - eexxeecc fails. If _c_o_m_m_a_n_d is not specified, any redirections take - effect in the current shell, and the return status is 0. If + not be executed for some reason, a non-interactive shell exits, + unless the eexxeeccffaaiill shell option is enabled. In that case, it + returns failure. An interactive shell returns failure if the + file cannot be executed. A subshell exits unconditionally if + eexxeecc fails. If _c_o_m_m_a_n_d is not specified, any redirections take + effect in the current shell, and the return status is 0. If there is a redirection error, the return status is 1. eexxiitt [_n] - Cause the shell to exit with a status of _n. If _n is omitted, + Cause the shell to exit with a status of _n. If _n is omitted, the exit status is that of the last command executed. A trap on EEXXIITT is executed before the shell terminates. eexxppoorrtt [--ffnn] [_n_a_m_e[=_w_o_r_d]] ... eexxppoorrtt --pp - The supplied _n_a_m_e_s are marked for automatic export to the envi- - ronment of subsequently executed commands. If the --ff option is - given, the _n_a_m_e_s refer to functions. If no _n_a_m_e_s are given, or - if the --pp option is supplied, a list of names of all exported - variables is printed. The --nn option causes the export property + The supplied _n_a_m_e_s are marked for automatic export to the envi- + ronment of subsequently executed commands. If the --ff option is + given, the _n_a_m_e_s refer to functions. If no _n_a_m_e_s are given, or + if the --pp option is supplied, a list of names of all exported + variables is printed. The --nn option causes the export property to be removed from each _n_a_m_e. If a variable name is followed by =_w_o_r_d, the value of the variable is set to _w_o_r_d. eexxppoorrtt returns an exit status of 0 unless an invalid option is encountered, one - of the _n_a_m_e_s is not a valid shell variable name, or --ff is sup- + of the _n_a_m_e_s is not a valid shell variable name, or --ff is sup- plied with a _n_a_m_e that is not a function. ffcc [--ee _e_n_a_m_e] [--llnnrr] [_f_i_r_s_t] [_l_a_s_t] ffcc --ss [_p_a_t=_r_e_p] [_c_m_d] - The first form selects a range of commands from _f_i_r_s_t to _l_a_s_t - from the history list and displays or edits and re-executes - them. _F_i_r_s_t and _l_a_s_t may be specified as a string (to locate - the last command beginning with that string) or as a number (an - index into the history list, where a negative number is used as - an offset from the current command number). When listing, a - _f_i_r_s_t or _l_a_s_t of 0 is equivalent to -1 and -0 is equivalent to - the current command (usually the ffcc command); otherwise 0 is - equivalent to -1 and -0 is invalid. If _l_a_s_t is not specified, - it is set to the current command for listing (so that ``fc -l - -10'' prints the last 10 commands) and to _f_i_r_s_t otherwise. If - _f_i_r_s_t is not specified, it is set to the previous command for + The first form selects a range of commands from _f_i_r_s_t to _l_a_s_t + from the history list and displays or edits and re-executes + them. _F_i_r_s_t and _l_a_s_t may be specified as a string (to locate + the last command beginning with that string) or as a number (an + index into the history list, where a negative number is used as + an offset from the current command number). When listing, a + _f_i_r_s_t or _l_a_s_t of 0 is equivalent to -1 and -0 is equivalent to + the current command (usually the ffcc command); otherwise 0 is + equivalent to -1 and -0 is invalid. If _l_a_s_t is not specified, + it is set to the current command for listing (so that ``fc -l + -10'' prints the last 10 commands) and to _f_i_r_s_t otherwise. If + _f_i_r_s_t is not specified, it is set to the previous command for editing and -16 for listing. - The --nn option suppresses the command numbers when listing. The - --rr option reverses the order of the commands. If the --ll option - is given, the commands are listed on standard output. Other- - wise, the editor given by _e_n_a_m_e is invoked on a file containing - those commands. If _e_n_a_m_e is not given, the value of the FFCCEEDDIITT - variable is used, and the value of EEDDIITTOORR if FFCCEEDDIITT is not set. - If neither variable is set, _v_i is used. When editing is com- + The --nn option suppresses the command numbers when listing. The + --rr option reverses the order of the commands. If the --ll option + is given, the commands are listed on standard output. Other- + wise, the editor given by _e_n_a_m_e is invoked on a file containing + those commands. If _e_n_a_m_e is not given, the value of the FFCCEEDDIITT + variable is used, and the value of EEDDIITTOORR if FFCCEEDDIITT is not set. + If neither variable is set, _v_i is used. When editing is com- plete, the edited commands are echoed and executed. - In the second form, _c_o_m_m_a_n_d is re-executed after each instance - of _p_a_t is replaced by _r_e_p. _C_o_m_m_a_n_d is interpreted the same as - _f_i_r_s_t above. A useful alias to use with this is ``r="fc -s"'', - so that typing ``r cc'' runs the last command beginning with + In the second form, _c_o_m_m_a_n_d is re-executed after each instance + of _p_a_t is replaced by _r_e_p. _C_o_m_m_a_n_d is interpreted the same as + _f_i_r_s_t above. A useful alias to use with this is ``r="fc -s"'', + so that typing ``r cc'' runs the last command beginning with ``cc'' and typing ``r'' re-executes the last command. - If the first form is used, the return value is 0 unless an in- - valid option is encountered or _f_i_r_s_t or _l_a_s_t specify history - lines out of range. If the --ee option is supplied, the return + If the first form is used, the return value is 0 unless an in- + valid option is encountered or _f_i_r_s_t or _l_a_s_t specify history + lines out of range. If the --ee option is supplied, the return value is the value of the last command executed or failure if an error occurs with the temporary file of commands. If the second - form is used, the return status is that of the command re-exe- - cuted, unless _c_m_d does not specify a valid history line, in + form is used, the return status is that of the command re-exe- + cuted, unless _c_m_d does not specify a valid history line, in which case ffcc returns failure. ffgg [_j_o_b_s_p_e_c] - Resume _j_o_b_s_p_e_c in the foreground, and make it the current job. + Resume _j_o_b_s_p_e_c in the foreground, and make it the current job. If _j_o_b_s_p_e_c is not present, the shell's notion of the _c_u_r_r_e_n_t _j_o_b - is used. The return value is that of the command placed into - the foreground, or failure if run when job control is disabled + is used. The return value is that of the command placed into + the foreground, or failure if run when job control is disabled or, when run with job control enabled, if _j_o_b_s_p_e_c does not spec- - ify a valid job or _j_o_b_s_p_e_c specifies a job that was started + ify a valid job or _j_o_b_s_p_e_c specifies a job that was started without job control. ggeettooppttss _o_p_t_s_t_r_i_n_g _n_a_m_e [_a_r_g _._._.] - ggeettooppttss is used by shell procedures to parse positional parame- - ters. _o_p_t_s_t_r_i_n_g contains the option characters to be recog- - nized; if a character is followed by a colon, the option is ex- + ggeettooppttss is used by shell procedures to parse positional parame- + ters. _o_p_t_s_t_r_i_n_g contains the option characters to be recog- + nized; if a character is followed by a colon, the option is ex- pected to have an argument, which should be separated from it by - white space. The colon and question mark characters may not be - used as option characters. Each time it is invoked, ggeettooppttss - places the next option in the shell variable _n_a_m_e, initializing + white space. The colon and question mark characters may not be + used as option characters. Each time it is invoked, ggeettooppttss + places the next option in the shell variable _n_a_m_e, initializing _n_a_m_e if it does not exist, and the index of the next argument to be processed into the variable OOPPTTIINNDD. OOPPTTIINNDD is initialized to 1 each time the shell or a shell script is invoked. When an op- tion requires an argument, ggeettooppttss places that argument into the variable OOPPTTAARRGG. The shell does not reset OOPPTTIINNDD automatically; - it must be manually reset between multiple calls to ggeettooppttss - within the same shell invocation if a new set of parameters is + it must be manually reset between multiple calls to ggeettooppttss + within the same shell invocation if a new set of parameters is to be used. When the end of options is encountered, ggeettooppttss exits with a re- turn value greater than zero. OOPPTTIINNDD is set to the index of the first non-option argument, and _n_a_m_e is set to ?. - ggeettooppttss normally parses the positional parameters, but if more - arguments are supplied as _a_r_g values, ggeettooppttss parses those in- + ggeettooppttss normally parses the positional parameters, but if more + arguments are supplied as _a_r_g values, ggeettooppttss parses those in- stead. - ggeettooppttss can report errors in two ways. If the first character - of _o_p_t_s_t_r_i_n_g is a colon, _s_i_l_e_n_t error reporting is used. In - normal operation, diagnostic messages are printed when invalid - options or missing option arguments are encountered. If the - variable OOPPTTEERRRR is set to 0, no error messages will be dis- + ggeettooppttss can report errors in two ways. If the first character + of _o_p_t_s_t_r_i_n_g is a colon, _s_i_l_e_n_t error reporting is used. In + normal operation, diagnostic messages are printed when invalid + options or missing option arguments are encountered. If the + variable OOPPTTEERRRR is set to 0, no error messages will be dis- played, even if the first character of _o_p_t_s_t_r_i_n_g is not a colon. If an invalid option is seen, ggeettooppttss places ? into _n_a_m_e and, if - not silent, prints an error message and unsets OOPPTTAARRGG. If - ggeettooppttss is silent, the option character found is placed in OOPP-- + not silent, prints an error message and unsets OOPPTTAARRGG. If + ggeettooppttss is silent, the option character found is placed in OOPP-- TTAARRGG and no diagnostic message is printed. - If a required argument is not found, and ggeettooppttss is not silent, - a question mark (??) is placed in _n_a_m_e, OOPPTTAARRGG is unset, and a - diagnostic message is printed. If ggeettooppttss is silent, then a - colon (::) is placed in _n_a_m_e and OOPPTTAARRGG is set to the option + If a required argument is not found, and ggeettooppttss is not silent, + a question mark (??) is placed in _n_a_m_e, OOPPTTAARRGG is unset, and a + diagnostic message is printed. If ggeettooppttss is silent, then a + colon (::) is placed in _n_a_m_e and OOPPTTAARRGG is set to the option character found. - ggeettooppttss returns true if an option, specified or unspecified, is + ggeettooppttss returns true if an option, specified or unspecified, is found. It returns false if the end of options is encountered or an error occurs. hhaasshh [--llrr] [--pp _f_i_l_e_n_a_m_e] [--ddtt] [_n_a_m_e] Each time hhaasshh is invoked, the full pathname of the command _n_a_m_e - is determined by searching the directories in $$PPAATTHH and remem- + is determined by searching the directories in $$PPAATTHH and remem- bered. Any previously-remembered pathname is discarded. If the --pp option is supplied, no path search is performed, and _f_i_l_e_n_a_m_e - is used as the full filename of the command. The --rr option + is used as the full filename of the command. The --rr option causes the shell to forget all remembered locations. The --dd op- - tion causes the shell to forget the remembered location of each - _n_a_m_e. If the --tt option is supplied, the full pathname to which - each _n_a_m_e corresponds is printed. If multiple _n_a_m_e arguments + tion causes the shell to forget the remembered location of each + _n_a_m_e. If the --tt option is supplied, the full pathname to which + each _n_a_m_e corresponds is printed. If multiple _n_a_m_e arguments are supplied with --tt, the _n_a_m_e is printed before the hashed full pathname. The --ll option causes output to be displayed in a for- - mat that may be reused as input. If no arguments are given, or + mat that may be reused as input. If no arguments are given, or if only --ll is supplied, information about remembered commands is - printed. The return status is true unless a _n_a_m_e is not found + printed. The return status is true unless a _n_a_m_e is not found or an invalid option is supplied. hheellpp [--ddmmss] [_p_a_t_t_e_r_n] - Display helpful information about builtin commands. If _p_a_t_t_e_r_n - is specified, hheellpp gives detailed help on all commands matching - _p_a_t_t_e_r_n; otherwise help for all the builtins and shell control + Display helpful information about builtin commands. If _p_a_t_t_e_r_n + is specified, hheellpp gives detailed help on all commands matching + _p_a_t_t_e_r_n; otherwise help for all the builtins and shell control structures is printed. --dd Display a short description of each _p_a_t_t_e_r_n --mm Display the description of each _p_a_t_t_e_r_n in a manpage-like @@ -5174,54 +5177,54 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS hhiissttoorryy --ss _a_r_g [_a_r_g _._._.] With no options, display the command history list with line num- bers. Lines listed with a ** have been modified. An argument of - _n lists only the last _n lines. If the shell variable HHIISSTTTTIIMMEE-- - FFOORRMMAATT is set and not null, it is used as a format string for - _s_t_r_f_t_i_m_e(3) to display the time stamp associated with each dis- - played history entry. No intervening blank is printed between - the formatted time stamp and the history line. If _f_i_l_e_n_a_m_e is - supplied, it is used as the name of the history file; if not, - the value of HHIISSTTFFIILLEE is used. Options, if supplied, have the + _n lists only the last _n lines. If the shell variable HHIISSTTTTIIMMEE-- + FFOORRMMAATT is set and not null, it is used as a format string for + _s_t_r_f_t_i_m_e(3) to display the time stamp associated with each dis- + played history entry. No intervening blank is printed between + the formatted time stamp and the history line. If _f_i_l_e_n_a_m_e is + supplied, it is used as the name of the history file; if not, + the value of HHIISSTTFFIILLEE is used. Options, if supplied, have the following meanings: --cc Clear the history list by deleting all the entries. --dd _o_f_f_s_e_t - Delete the history entry at position _o_f_f_s_e_t. If _o_f_f_s_e_t + Delete the history entry at position _o_f_f_s_e_t. If _o_f_f_s_e_t is negative, it is interpreted as relative to one greater than the last history position, so negative indices count - back from the end of the history, and an index of -1 + back from the end of the history, and an index of -1 refers to the current hhiissttoorryy --dd command. --dd _s_t_a_r_t-_e_n_d - Delete the range of history entries between positions - _s_t_a_r_t and _e_n_d, inclusive. Positive and negative values + Delete the range of history entries between positions + _s_t_a_r_t and _e_n_d, inclusive. Positive and negative values for _s_t_a_r_t and _e_n_d are interpreted as described above. - --aa Append the ``new'' history lines to the history file. - These are history lines entered since the beginning of + --aa Append the ``new'' history lines to the history file. + These are history lines entered since the beginning of the current bbaasshh session, but not already appended to the history file. - --nn Read the history lines not already read from the history - file into the current history list. These are lines ap- - pended to the history file since the beginning of the + --nn Read the history lines not already read from the history + file into the current history list. These are lines ap- + pended to the history file since the beginning of the current bbaasshh session. - --rr Read the contents of the history file and append them to + --rr Read the contents of the history file and append them to the current history list. --ww Write the current history list to the history file, over- writing the history file's contents. - --pp Perform history substitution on the following _a_r_g_s and - display the result on the standard output. Does not - store the results in the history list. Each _a_r_g must be + --pp Perform history substitution on the following _a_r_g_s and + display the result on the standard output. Does not + store the results in the history list. Each _a_r_g must be quoted to disable normal history expansion. - --ss Store the _a_r_g_s in the history list as a single entry. - The last command in the history list is removed before + --ss Store the _a_r_g_s in the history list as a single entry. + The last command in the history list is removed before the _a_r_g_s are added. - If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is set, the time stamp informa- - tion associated with each history entry is written to the his- - tory file, marked with the history comment character. When the - history file is read, lines beginning with the history comment - character followed immediately by a digit are interpreted as + If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is set, the time stamp informa- + tion associated with each history entry is written to the his- + tory file, marked with the history comment character. When the + history file is read, lines beginning with the history comment + character followed immediately by a digit are interpreted as timestamps for the following history entry. The return value is 0 unless an invalid option is encountered, an error occurs while - reading or writing the history file, an invalid _o_f_f_s_e_t or range - is supplied as an argument to --dd, or the history expansion sup- + reading or writing the history file, an invalid _o_f_f_s_e_t or range + is supplied as an argument to --dd, or the history expansion sup- plied as an argument to --pp fails. jjoobbss [--llnnpprrss] [ _j_o_b_s_p_e_c ... ] @@ -5229,15 +5232,15 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS The first form lists the active jobs. The options have the fol- lowing meanings: --ll List process IDs in addition to the normal information. - --nn Display information only about jobs that have changed + --nn Display information only about jobs that have changed status since the user was last notified of their status. - --pp List only the process ID of the job's process group + --pp List only the process ID of the job's process group leader. --rr Display only running jobs. --ss Display only stopped jobs. - If _j_o_b_s_p_e_c is given, output is restricted to information about - that job. The return status is 0 unless an invalid option is + If _j_o_b_s_p_e_c is given, output is restricted to information about + that job. The return status is 0 unless an invalid option is encountered or an invalid _j_o_b_s_p_e_c is supplied. If the --xx option is supplied, jjoobbss replaces any _j_o_b_s_p_e_c found in @@ -5246,142 +5249,142 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS kkiillll [--ss _s_i_g_s_p_e_c | --nn _s_i_g_n_u_m | --_s_i_g_s_p_e_c] [_p_i_d | _j_o_b_s_p_e_c] ... kkiillll --ll|--LL [_s_i_g_s_p_e_c | _e_x_i_t___s_t_a_t_u_s] - Send the signal named by _s_i_g_s_p_e_c or _s_i_g_n_u_m to the processes - named by _p_i_d or _j_o_b_s_p_e_c. _s_i_g_s_p_e_c is either a case-insensitive - signal name such as SSIIGGKKIILLLL (with or without the SSIIGG prefix) or - a signal number; _s_i_g_n_u_m is a signal number. If _s_i_g_s_p_e_c is not - present, then SSIIGGTTEERRMM is assumed. An argument of --ll lists the - signal names. If any arguments are supplied when --ll is given, - the names of the signals corresponding to the arguments are + Send the signal named by _s_i_g_s_p_e_c or _s_i_g_n_u_m to the processes + named by _p_i_d or _j_o_b_s_p_e_c. _s_i_g_s_p_e_c is either a case-insensitive + signal name such as SSIIGGKKIILLLL (with or without the SSIIGG prefix) or + a signal number; _s_i_g_n_u_m is a signal number. If _s_i_g_s_p_e_c is not + present, then SSIIGGTTEERRMM is assumed. An argument of --ll lists the + signal names. If any arguments are supplied when --ll is given, + the names of the signals corresponding to the arguments are listed, and the return status is 0. The _e_x_i_t___s_t_a_t_u_s argument to - --ll is a number specifying either a signal number or the exit - status of a process terminated by a signal. The --LL option is - equivalent to --ll. kkiillll returns true if at least one signal was + --ll is a number specifying either a signal number or the exit + status of a process terminated by a signal. The --LL option is + equivalent to --ll. kkiillll returns true if at least one signal was successfully sent, or false if an error occurs or an invalid op- tion is encountered. lleett _a_r_g [_a_r_g ...] Each _a_r_g is an arithmetic expression to be evaluated (see AARRIITTHH-- - MMEETTIICC EEVVAALLUUAATTIIOONN above). If the last _a_r_g evaluates to 0, lleett + MMEETTIICC EEVVAALLUUAATTIIOONN above). If the last _a_r_g evaluates to 0, lleett returns 1; 0 is returned otherwise. llooccaall [_o_p_t_i_o_n] [_n_a_m_e[=_v_a_l_u_e] ... | - ] - For each argument, a local variable named _n_a_m_e is created, and - assigned _v_a_l_u_e. The _o_p_t_i_o_n can be any of the options accepted + For each argument, a local variable named _n_a_m_e is created, and + assigned _v_a_l_u_e. The _o_p_t_i_o_n can be any of the options accepted by ddeeccllaarree. When llooccaall is used within a function, it causes the - variable _n_a_m_e to have a visible scope restricted to that func- - tion and its children. If _n_a_m_e is -, the set of shell options - is made local to the function in which llooccaall is invoked: shell - options changed using the sseett builtin inside the function are - restored to their original values when the function returns. + variable _n_a_m_e to have a visible scope restricted to that func- + tion and its children. If _n_a_m_e is -, the set of shell options + is made local to the function in which llooccaall is invoked: shell + options changed using the sseett builtin inside the function are + restored to their original values when the function returns. The restore is effected as if a series of sseett commands were exe- - cuted to restore the values that were in place before the func- - tion. With no operands, llooccaall writes a list of local variables - to the standard output. It is an error to use llooccaall when not - within a function. The return status is 0 unless llooccaall is used - outside a function, an invalid _n_a_m_e is supplied, or _n_a_m_e is a + cuted to restore the values that were in place before the func- + tion. With no operands, llooccaall writes a list of local variables + to the standard output. It is an error to use llooccaall when not + within a function. The return status is 0 unless llooccaall is used + outside a function, an invalid _n_a_m_e is supplied, or _n_a_m_e is a readonly variable. llooggoouutt Exit a login shell. - mmaappffiillee [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC + mmaappffiillee [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC _c_a_l_l_b_a_c_k] [--cc _q_u_a_n_t_u_m] [_a_r_r_a_y] rreeaaddaarrrraayy [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC _c_a_l_l_b_a_c_k] [--cc _q_u_a_n_t_u_m] [_a_r_r_a_y] - Read lines from the standard input into the indexed array vari- - able _a_r_r_a_y, or from file descriptor _f_d if the --uu option is sup- - plied. The variable MMAAPPFFIILLEE is the default _a_r_r_a_y. Options, if + Read lines from the standard input into the indexed array vari- + able _a_r_r_a_y, or from file descriptor _f_d if the --uu option is sup- + plied. The variable MMAAPPFFIILLEE is the default _a_r_r_a_y. Options, if supplied, have the following meanings: - --dd The first character of _d_e_l_i_m is used to terminate each - input line, rather than newline. If _d_e_l_i_m is the empty + --dd The first character of _d_e_l_i_m is used to terminate each + input line, rather than newline. If _d_e_l_i_m is the empty string, mmaappffiillee will terminate a line when it reads a NUL character. - --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, all lines are + --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, all lines are copied. - --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default + --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default index is 0. --ss Discard the first _c_o_u_n_t lines read. - --tt Remove a trailing _d_e_l_i_m (default newline) from each line + --tt Remove a trailing _d_e_l_i_m (default newline) from each line read. - --uu Read lines from file descriptor _f_d instead of the stan- + --uu Read lines from file descriptor _f_d instead of the stan- dard input. - --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The + --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The --cc option specifies _q_u_a_n_t_u_m. - --cc Specify the number of lines read between each call to + --cc Specify the number of lines read between each call to _c_a_l_l_b_a_c_k. - If --CC is specified without --cc, the default quantum is 5000. + If --CC is specified without --cc, the default quantum is 5000. When _c_a_l_l_b_a_c_k is evaluated, it is supplied the index of the next array element to be assigned and the line to be assigned to that - element as additional arguments. _c_a_l_l_b_a_c_k is evaluated after + element as additional arguments. _c_a_l_l_b_a_c_k is evaluated after the line is read but before the array element is assigned. - If not supplied with an explicit origin, mmaappffiillee will clear _a_r_- + If not supplied with an explicit origin, mmaappffiillee will clear _a_r_- _r_a_y before assigning to it. - mmaappffiillee returns successfully unless an invalid option or option - argument is supplied, _a_r_r_a_y is invalid or unassignable, or if + mmaappffiillee returns successfully unless an invalid option or option + argument is supplied, _a_r_r_a_y is invalid or unassignable, or if _a_r_r_a_y is not an indexed array. ppooppdd [-nn] [+_n] [-_n] Removes entries from the directory stack. The elements are num- - bered from 0 starting at the first directory listed by ddiirrss. - With no arguments, ppooppdd removes the top directory from the + bered from 0 starting at the first directory listed by ddiirrss. + With no arguments, ppooppdd removes the top directory from the stack, and changes to the new top directory. Arguments, if sup- plied, have the following meanings: - --nn Suppresses the normal change of directory when removing + --nn Suppresses the normal change of directory when removing directories from the stack, so that only the stack is ma- nipulated. - ++_n Removes the _nth entry counting from the left of the list - shown by ddiirrss, starting with zero, from the stack. For - example: ``popd +0'' removes the first directory, ``popd + ++_n Removes the _nth entry counting from the left of the list + shown by ddiirrss, starting with zero, from the stack. For + example: ``popd +0'' removes the first directory, ``popd +1'' the second. --_n Removes the _nth entry counting from the right of the list - shown by ddiirrss, starting with zero. For example: ``popd - -0'' removes the last directory, ``popd -1'' the next to + shown by ddiirrss, starting with zero. For example: ``popd + -0'' removes the last directory, ``popd -1'' the next to last. - If the top element of the directory stack is modified, and the - _-_n option was not supplied, ppooppdd uses the ccdd builtin to change + If the top element of the directory stack is modified, and the + _-_n option was not supplied, ppooppdd uses the ccdd builtin to change to the directory at the top of the stack. If the ccdd fails, ppooppdd returns a non-zero value. - Otherwise, ppooppdd returns false if an invalid option is encoun- + Otherwise, ppooppdd returns false if an invalid option is encoun- tered, the directory stack is empty, or a non-existent directory stack entry is specified. - If the ppooppdd command is successful, bash runs ddiirrss to show the - final contents of the directory stack, and the return status is + If the ppooppdd command is successful, bash runs ddiirrss to show the + final contents of the directory stack, and the return status is 0. pprriinnttff [--vv _v_a_r] _f_o_r_m_a_t [_a_r_g_u_m_e_n_t_s] - Write the formatted _a_r_g_u_m_e_n_t_s to the standard output under the - control of the _f_o_r_m_a_t. The --vv option causes the output to be - assigned to the variable _v_a_r rather than being printed to the + Write the formatted _a_r_g_u_m_e_n_t_s to the standard output under the + control of the _f_o_r_m_a_t. The --vv option causes the output to be + assigned to the variable _v_a_r rather than being printed to the standard output. - The _f_o_r_m_a_t is a character string which contains three types of - objects: plain characters, which are simply copied to standard - output, character escape sequences, which are converted and - copied to the standard output, and format specifications, each - of which causes printing of the next successive _a_r_g_u_m_e_n_t. In + The _f_o_r_m_a_t is a character string which contains three types of + objects: plain characters, which are simply copied to standard + output, character escape sequences, which are converted and + copied to the standard output, and format specifications, each + of which causes printing of the next successive _a_r_g_u_m_e_n_t. In addition to the standard _p_r_i_n_t_f(1) format specifications, pprriinnttff interprets the following extensions: %%bb causes pprriinnttff to expand backslash escape sequences in the corresponding _a_r_g_u_m_e_n_t in the same way as eecchhoo --ee. - %%qq causes pprriinnttff to output the corresponding _a_r_g_u_m_e_n_t in a + %%qq causes pprriinnttff to output the corresponding _a_r_g_u_m_e_n_t in a format that can be reused as shell input. - %%QQ like %%qq, but applies any supplied precision to the _a_r_g_u_- + %%QQ like %%qq, but applies any supplied precision to the _a_r_g_u_- _m_e_n_t before quoting it. %%((_d_a_t_e_f_m_t))TT - causes pprriinnttff to output the date-time string resulting - from using _d_a_t_e_f_m_t as a format string for _s_t_r_f_t_i_m_e(3). + causes pprriinnttff to output the date-time string resulting + from using _d_a_t_e_f_m_t as a format string for _s_t_r_f_t_i_m_e(3). The corresponding _a_r_g_u_m_e_n_t is an integer representing the - number of seconds since the epoch. Two special argument - values may be used: -1 represents the current time, and - -2 represents the time the shell was invoked. If no ar- + number of seconds since the epoch. Two special argument + values may be used: -1 represents the current time, and + -2 represents the time the shell was invoked. If no ar- gument is specified, conversion behaves as if -1 had been - given. This is an exception to the usual pprriinnttff behav- + given. This is an exception to the usual pprriinnttff behav- ior. The %b, %q, and %T directives all use the field width and preci- @@ -5389,104 +5392,104 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS bytes from (or use that wide a field for) the expanded argument, which usually contains more characters than the original. - Arguments to non-string format specifiers are treated as C con- + Arguments to non-string format specifiers are treated as C con- stants, except that a leading plus or minus sign is allowed, and - if the leading character is a single or double quote, the value + if the leading character is a single or double quote, the value is the ASCII value of the following character. - The _f_o_r_m_a_t is reused as necessary to consume all of the _a_r_g_u_- + The _f_o_r_m_a_t is reused as necessary to consume all of the _a_r_g_u_- _m_e_n_t_s. If the _f_o_r_m_a_t requires more _a_r_g_u_m_e_n_t_s than are supplied, - the extra format specifications behave as if a zero value or - null string, as appropriate, had been supplied. The return + the extra format specifications behave as if a zero value or + null string, as appropriate, had been supplied. The return value is zero on success, non-zero on failure. ppuusshhdd [--nn] [+_n] [-_n] ppuusshhdd [--nn] [_d_i_r] - Adds a directory to the top of the directory stack, or rotates - the stack, making the new top of the stack the current working - directory. With no arguments, ppuusshhdd exchanges the top two ele- - ments of the directory stack. Arguments, if supplied, have the + Adds a directory to the top of the directory stack, or rotates + the stack, making the new top of the stack the current working + directory. With no arguments, ppuusshhdd exchanges the top two ele- + ments of the directory stack. Arguments, if supplied, have the following meanings: - --nn Suppresses the normal change of directory when rotating - or adding directories to the stack, so that only the + --nn Suppresses the normal change of directory when rotating + or adding directories to the stack, so that only the stack is manipulated. - ++_n Rotates the stack so that the _nth directory (counting - from the left of the list shown by ddiirrss, starting with + ++_n Rotates the stack so that the _nth directory (counting + from the left of the list shown by ddiirrss, starting with zero) is at the top. - --_n Rotates the stack so that the _nth directory (counting - from the right of the list shown by ddiirrss, starting with + --_n Rotates the stack so that the _nth directory (counting + from the right of the list shown by ddiirrss, starting with zero) is at the top. _d_i_r Adds _d_i_r to the directory stack at the top After the stack has been modified, if the --nn option was not sup- - plied, ppuusshhdd uses the ccdd builtin to change to the directory at + plied, ppuusshhdd uses the ccdd builtin to change to the directory at the top of the stack. If the ccdd fails, ppuusshhdd returns a non-zero value. - Otherwise, if no arguments are supplied, ppuusshhdd returns 0 unless - the directory stack is empty. When rotating the directory - stack, ppuusshhdd returns 0 unless the directory stack is empty or a + Otherwise, if no arguments are supplied, ppuusshhdd returns 0 unless + the directory stack is empty. When rotating the directory + stack, ppuusshhdd returns 0 unless the directory stack is empty or a non-existent directory stack element is specified. - If the ppuusshhdd command is successful, bash runs ddiirrss to show the + If the ppuusshhdd command is successful, bash runs ddiirrss to show the final contents of the directory stack. ppwwdd [--LLPP] - Print the absolute pathname of the current working directory. + Print the absolute pathname of the current working directory. The pathname printed contains no symbolic links if the --PP option is supplied or the --oo pphhyyssiiccaall option to the sseett builtin command - is enabled. If the --LL option is used, the pathname printed may - contain symbolic links. The return status is 0 unless an error + is enabled. If the --LL option is used, the pathname printed may + contain symbolic links. The return status is 0 unless an error occurs while reading the name of the current directory or an in- valid option is supplied. rreeaadd [--eerrss] [--aa _a_n_a_m_e] [--dd _d_e_l_i_m] [--ii _t_e_x_t] [--nn _n_c_h_a_r_s] [--NN _n_c_h_a_r_s] [--pp _p_r_o_m_p_t] [--tt _t_i_m_e_o_u_t] [--uu _f_d] [_n_a_m_e ...] - One line is read from the standard input, or from the file de- + One line is read from the standard input, or from the file de- scriptor _f_d supplied as an argument to the --uu option, split into - words as described above under WWoorrdd SSpplliittttiinngg, and the first - word is assigned to the first _n_a_m_e, the second word to the sec- - ond _n_a_m_e, and so on. If there are more words than names, the + words as described above under WWoorrdd SSpplliittttiinngg, and the first + word is assigned to the first _n_a_m_e, the second word to the sec- + ond _n_a_m_e, and so on. If there are more words than names, the remaining words and their intervening delimiters are assigned to - the last _n_a_m_e. If there are fewer words read from the input - stream than names, the remaining names are assigned empty val- - ues. The characters in IIFFSS are used to split the line into - words using the same rules the shell uses for expansion (de- - scribed above under WWoorrdd SSpplliittttiinngg). The backslash character + the last _n_a_m_e. If there are fewer words read from the input + stream than names, the remaining names are assigned empty val- + ues. The characters in IIFFSS are used to split the line into + words using the same rules the shell uses for expansion (de- + scribed above under WWoorrdd SSpplliittttiinngg). The backslash character (\\) may be used to remove any special meaning for the next char- - acter read and for line continuation. Options, if supplied, + acter read and for line continuation. Options, if supplied, have the following meanings: --aa _a_n_a_m_e The words are assigned to sequential indices of the array variable _a_n_a_m_e, starting at 0. _a_n_a_m_e is unset before any - new values are assigned. Other _n_a_m_e arguments are ig- + new values are assigned. Other _n_a_m_e arguments are ig- nored. --dd _d_e_l_i_m The first character of _d_e_l_i_m is used to terminate the in- - put line, rather than newline. If _d_e_l_i_m is the empty - string, rreeaadd will terminate a line when it reads a NUL + put line, rather than newline. If _d_e_l_i_m is the empty + string, rreeaadd will terminate a line when it reads a NUL character. --ee If the standard input is coming from a terminal, rreeaaddlliinnee - (see RREEAADDLLIINNEE above) is used to obtain the line. Read- - line uses the current (or default, if line editing was - not previously active) editing settings, but uses Read- + (see RREEAADDLLIINNEE above) is used to obtain the line. Read- + line uses the current (or default, if line editing was + not previously active) editing settings, but uses Read- line's default filename completion. --ii _t_e_x_t - If rreeaaddlliinnee is being used to read the line, _t_e_x_t is + If rreeaaddlliinnee is being used to read the line, _t_e_x_t is placed into the editing buffer before editing begins. --nn _n_c_h_a_r_s - rreeaadd returns after reading _n_c_h_a_r_s characters rather than + rreeaadd returns after reading _n_c_h_a_r_s characters rather than waiting for a complete line of input, but honors a delim- - iter if fewer than _n_c_h_a_r_s characters are read before the + iter if fewer than _n_c_h_a_r_s characters are read before the delimiter. --NN _n_c_h_a_r_s - rreeaadd returns after reading exactly _n_c_h_a_r_s characters - rather than waiting for a complete line of input, unless - EOF is encountered or rreeaadd times out. Delimiter charac- - ters encountered in the input are not treated specially - and do not cause rreeaadd to return until _n_c_h_a_r_s characters - are read. The result is not split on the characters in - IIFFSS; the intent is that the variable is assigned exactly + rreeaadd returns after reading exactly _n_c_h_a_r_s characters + rather than waiting for a complete line of input, unless + EOF is encountered or rreeaadd times out. Delimiter charac- + ters encountered in the input are not treated specially + and do not cause rreeaadd to return until _n_c_h_a_r_s characters + are read. The result is not split on the characters in + IIFFSS; the intent is that the variable is assigned exactly the characters read (with the exception of backslash; see the --rr option below). --pp _p_r_o_m_p_t @@ -5494,133 +5497,133 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS line, before attempting to read any input. The prompt is displayed only if input is coming from a terminal. --rr Backslash does not act as an escape character. The back- - slash is considered to be part of the line. In particu- - lar, a backslash-newline pair may not then be used as a + slash is considered to be part of the line. In particu- + lar, a backslash-newline pair may not then be used as a line continuation. --ss Silent mode. If input is coming from a terminal, charac- ters are not echoed. --tt _t_i_m_e_o_u_t - Cause rreeaadd to time out and return failure if a complete - line of input (or a specified number of characters) is - not read within _t_i_m_e_o_u_t seconds. _t_i_m_e_o_u_t may be a deci- - mal number with a fractional portion following the deci- - mal point. This option is only effective if rreeaadd is - reading input from a terminal, pipe, or other special - file; it has no effect when reading from regular files. + Cause rreeaadd to time out and return failure if a complete + line of input (or a specified number of characters) is + not read within _t_i_m_e_o_u_t seconds. _t_i_m_e_o_u_t may be a deci- + mal number with a fractional portion following the deci- + mal point. This option is only effective if rreeaadd is + reading input from a terminal, pipe, or other special + file; it has no effect when reading from regular files. If rreeaadd times out, rreeaadd saves any partial input read into - the specified variable _n_a_m_e. If _t_i_m_e_o_u_t is 0, rreeaadd re- - turns immediately, without trying to read any data. The - exit status is 0 if input is available on the specified - file descriptor, or the read will return EOF, non-zero - otherwise. The exit status is greater than 128 if the + the specified variable _n_a_m_e. If _t_i_m_e_o_u_t is 0, rreeaadd re- + turns immediately, without trying to read any data. The + exit status is 0 if input is available on the specified + file descriptor, or the read will return EOF, non-zero + otherwise. The exit status is greater than 128 if the timeout is exceeded. --uu _f_d Read input from file descriptor _f_d. - If no _n_a_m_e_s are supplied, the line read, without the ending de- - limiter but otherwise unmodified, is assigned to the variable - RREEPPLLYY. The exit status is zero, unless end-of-file is encoun- - tered, rreeaadd times out (in which case the status is greater than - 128), a variable assignment error (such as assigning to a read- + If no _n_a_m_e_s are supplied, the line read, without the ending de- + limiter but otherwise unmodified, is assigned to the variable + RREEPPLLYY. The exit status is zero, unless end-of-file is encoun- + tered, rreeaadd times out (in which case the status is greater than + 128), a variable assignment error (such as assigning to a read- only variable) occurs, or an invalid file descriptor is supplied as the argument to --uu. rreeaaddoonnllyy [--aaAAff] [--pp] [_n_a_m_e[=_w_o_r_d] ...] - The given _n_a_m_e_s are marked readonly; the values of these _n_a_m_e_s - may not be changed by subsequent assignment. If the --ff option - is supplied, the functions corresponding to the _n_a_m_e_s are so - marked. The --aa option restricts the variables to indexed ar- - rays; the --AA option restricts the variables to associative ar- + The given _n_a_m_e_s are marked readonly; the values of these _n_a_m_e_s + may not be changed by subsequent assignment. If the --ff option + is supplied, the functions corresponding to the _n_a_m_e_s are so + marked. The --aa option restricts the variables to indexed ar- + rays; the --AA option restricts the variables to associative ar- rays. If both options are supplied, --AA takes precedence. If no - _n_a_m_e arguments are given, or if the --pp option is supplied, a + _n_a_m_e arguments are given, or if the --pp option is supplied, a list of all readonly names is printed. The other options may be - used to restrict the output to a subset of the set of readonly - names. The --pp option causes output to be displayed in a format - that may be reused as input. If a variable name is followed by - =_w_o_r_d, the value of the variable is set to _w_o_r_d. The return - status is 0 unless an invalid option is encountered, one of the + used to restrict the output to a subset of the set of readonly + names. The --pp option causes output to be displayed in a format + that may be reused as input. If a variable name is followed by + =_w_o_r_d, the value of the variable is set to _w_o_r_d. The return + status is 0 unless an invalid option is encountered, one of the _n_a_m_e_s is not a valid shell variable name, or --ff is supplied with a _n_a_m_e that is not a function. rreettuurrnn [_n] - Causes a function to stop executing and return the value speci- - fied by _n to its caller. If _n is omitted, the return status is - that of the last command executed in the function body. If rree-- + Causes a function to stop executing and return the value speci- + fied by _n to its caller. If _n is omitted, the return status is + that of the last command executed in the function body. If rree-- ttuurrnn is executed by a trap handler, the last command used to de- - termine the status is the last command executed before the trap - handler. If rreettuurrnn is executed during a DDEEBBUUGG trap, the last - command used to determine the status is the last command exe- - cuted by the trap handler before rreettuurrnn was invoked. If rreettuurrnn - is used outside a function, but during execution of a script by - the .. (ssoouurrccee) command, it causes the shell to stop executing - that script and return either _n or the exit status of the last - command executed within the script as the exit status of the + termine the status is the last command executed before the trap + handler. If rreettuurrnn is executed during a DDEEBBUUGG trap, the last + command used to determine the status is the last command exe- + cuted by the trap handler before rreettuurrnn was invoked. If rreettuurrnn + is used outside a function, but during execution of a script by + the .. (ssoouurrccee) command, it causes the shell to stop executing + that script and return either _n or the exit status of the last + command executed within the script as the exit status of the script. If _n is supplied, the return value is its least signif- - icant 8 bits. The return status is non-zero if rreettuurrnn is sup- - plied a non-numeric argument, or is used outside a function and - not during execution of a script by .. or ssoouurrccee. Any command + icant 8 bits. The return status is non-zero if rreettuurrnn is sup- + plied a non-numeric argument, or is used outside a function and + not during execution of a script by .. or ssoouurrccee. Any command associated with the RREETTUURRNN trap is executed before execution re- sumes after the function or script. sseett [--aabbeeffhhkkmmnnppttuuvvxxBBCCEEHHPPTT] [--oo _o_p_t_i_o_n_-_n_a_m_e] [----] [--] [_a_r_g ...] sseett [++aabbeeffhhkkmmnnppttuuvvxxBBCCEEHHPPTT] [++oo _o_p_t_i_o_n_-_n_a_m_e] [----] [--] [_a_r_g ...] - Without options, display the name and value of each shell vari- - able in a format that can be reused as input for setting or re- + Without options, display the name and value of each shell vari- + able in a format that can be reused as input for setting or re- setting the currently-set variables. Read-only variables cannot - be reset. In _p_o_s_i_x _m_o_d_e, only shell variables are listed. The - output is sorted according to the current locale. When options - are specified, they set or unset shell attributes. Any argu- - ments remaining after option processing are treated as values + be reset. In _p_o_s_i_x _m_o_d_e, only shell variables are listed. The + output is sorted according to the current locale. When options + are specified, they set or unset shell attributes. Any argu- + ments remaining after option processing are treated as values for the positional parameters and are assigned, in order, to $$11, - $$22, ...... $$_n. Options, if specified, have the following mean- + $$22, ...... $$_n. Options, if specified, have the following mean- ings: --aa Each variable or function that is created or modified is - given the export attribute and marked for export to the + given the export attribute and marked for export to the environment of subsequent commands. - --bb Report the status of terminated background jobs immedi- + --bb Report the status of terminated background jobs immedi- ately, rather than before the next primary prompt. This is effective only when job control is enabled. - --ee Exit immediately if a _p_i_p_e_l_i_n_e (which may consist of a - single _s_i_m_p_l_e _c_o_m_m_a_n_d), a _l_i_s_t, or a _c_o_m_p_o_u_n_d _c_o_m_m_a_n_d + --ee Exit immediately if a _p_i_p_e_l_i_n_e (which may consist of a + single _s_i_m_p_l_e _c_o_m_m_a_n_d), a _l_i_s_t, or a _c_o_m_p_o_u_n_d _c_o_m_m_a_n_d (see SSHHEELLLL GGRRAAMMMMAARR above), exits with a non-zero status. - The shell does not exit if the command that fails is - part of the command list immediately following a wwhhiillee - or uunnttiill keyword, part of the test following the iiff or - eelliiff reserved words, part of any command executed in a - &&&& or |||| list except the command following the final &&&& + The shell does not exit if the command that fails is + part of the command list immediately following a wwhhiillee + or uunnttiill keyword, part of the test following the iiff or + eelliiff reserved words, part of any command executed in a + &&&& or |||| list except the command following the final &&&& or ||||, any command in a pipeline but the last, or if the - command's return value is being inverted with !!. If a - compound command other than a subshell returns a non- - zero status because a command failed while --ee was being - ignored, the shell does not exit. A trap on EERRRR, if - set, is executed before the shell exits. This option + command's return value is being inverted with !!. If a + compound command other than a subshell returns a non- + zero status because a command failed while --ee was being + ignored, the shell does not exit. A trap on EERRRR, if + set, is executed before the shell exits. This option applies to the shell environment and each subshell envi- - ronment separately (see CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT + ronment separately (see CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT above), and may cause subshells to exit before executing all the commands in the subshell. - If a compound command or shell function executes in a - context where --ee is being ignored, none of the commands - executed within the compound command or function body - will be affected by the --ee setting, even if --ee is set - and a command returns a failure status. If a compound - command or shell function sets --ee while executing in a - context where --ee is ignored, that setting will not have - any effect until the compound command or the command + If a compound command or shell function executes in a + context where --ee is being ignored, none of the commands + executed within the compound command or function body + will be affected by the --ee setting, even if --ee is set + and a command returns a failure status. If a compound + command or shell function sets --ee while executing in a + context where --ee is ignored, that setting will not have + any effect until the compound command or the command containing the function call completes. --ff Disable pathname expansion. - --hh Remember the location of commands as they are looked up + --hh Remember the location of commands as they are looked up for execution. This is enabled by default. - --kk All arguments in the form of assignment statements are - placed in the environment for a command, not just those + --kk All arguments in the form of assignment statements are + placed in the environment for a command, not just those that precede the command name. - --mm Monitor mode. Job control is enabled. This option is - on by default for interactive shells on systems that - support it (see JJOOBB CCOONNTTRROOLL above). All processes run + --mm Monitor mode. Job control is enabled. This option is + on by default for interactive shells on systems that + support it (see JJOOBB CCOONNTTRROOLL above). All processes run in a separate process group. When a background job com- pletes, the shell prints a line containing its exit sta- tus. --nn Read commands but do not execute them. This may be used - to check a shell script for syntax errors. This is ig- + to check a shell script for syntax errors. This is ig- nored by interactive shells. --oo _o_p_t_i_o_n_-_n_a_m_e The _o_p_t_i_o_n_-_n_a_m_e can be one of the following: @@ -5628,10 +5631,10 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Same as --aa. bbrraacceeeexxppaanndd Same as --BB. - eemmaaccss Use an emacs-style command line editing inter- + eemmaaccss Use an emacs-style command line editing inter- face. This is enabled by default when the shell is interactive, unless the shell is started with - the ----nnooeeddiittiinngg option. This also affects the + the ----nnooeeddiittiinngg option. This also affects the editing interface used for rreeaadd --ee. eerrrreexxiitt Same as --ee. eerrrrttrraaccee @@ -5645,8 +5648,8 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS HHIISSTTOORRYY. This option is on by default in inter- active shells. iiggnnoorreeeeooff - The effect is as if the shell command ``IG- - NOREEOF=10'' had been executed (see SShheellll VVaarrii-- + The effect is as if the shell command ``IG- + NOREEOF=10'' had been executed (see SShheellll VVaarrii-- aabblleess above). kkeeyywwoorrdd Same as --kk. mmoonniittoorr Same as --mm. @@ -5661,175 +5664,175 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS pphhyyssiiccaall Same as --PP. ppiippeeffaaiill - If set, the return value of a pipeline is the - value of the last (rightmost) command to exit - with a non-zero status, or zero if all commands - in the pipeline exit successfully. This option + If set, the return value of a pipeline is the + value of the last (rightmost) command to exit + with a non-zero status, or zero if all commands + in the pipeline exit successfully. This option is disabled by default. - ppoossiixx Change the behavior of bbaasshh where the default - operation differs from the POSIX standard to - match the standard (_p_o_s_i_x _m_o_d_e). See SSEEEE AALLSSOO + ppoossiixx Change the behavior of bbaasshh where the default + operation differs from the POSIX standard to + match the standard (_p_o_s_i_x _m_o_d_e). See SSEEEE AALLSSOO below for a reference to a document that details how posix mode affects bash's behavior. pprriivviilleeggeedd Same as --pp. vveerrbboossee Same as --vv. - vvii Use a vi-style command line editing interface. + vvii Use a vi-style command line editing interface. This also affects the editing interface used for rreeaadd --ee. xxttrraaccee Same as --xx. If --oo is supplied with no _o_p_t_i_o_n_-_n_a_m_e, the values of the - current options are printed. If ++oo is supplied with no - _o_p_t_i_o_n_-_n_a_m_e, a series of sseett commands to recreate the - current option settings is displayed on the standard + current options are printed. If ++oo is supplied with no + _o_p_t_i_o_n_-_n_a_m_e, a series of sseett commands to recreate the + current option settings is displayed on the standard output. - --pp Turn on _p_r_i_v_i_l_e_g_e_d mode. In this mode, the $$EENNVV and - $$BBAASSHH__EENNVV files are not processed, shell functions are - not inherited from the environment, and the SSHHEELLLLOOPPTTSS, - BBAASSHHOOPPTTSS, CCDDPPAATTHH, and GGLLOOBBIIGGNNOORREE variables, if they ap- - pear in the environment, are ignored. If the shell is - started with the effective user (group) id not equal to - the real user (group) id, and the --pp option is not sup- + --pp Turn on _p_r_i_v_i_l_e_g_e_d mode. In this mode, the $$EENNVV and + $$BBAASSHH__EENNVV files are not processed, shell functions are + not inherited from the environment, and the SSHHEELLLLOOPPTTSS, + BBAASSHHOOPPTTSS, CCDDPPAATTHH, and GGLLOOBBIIGGNNOORREE variables, if they ap- + pear in the environment, are ignored. If the shell is + started with the effective user (group) id not equal to + the real user (group) id, and the --pp option is not sup- plied, these actions are taken and the effective user id - is set to the real user id. If the --pp option is sup- - plied at startup, the effective user id is not reset. - Turning this option off causes the effective user and + is set to the real user id. If the --pp option is sup- + plied at startup, the effective user id is not reset. + Turning this option off causes the effective user and group ids to be set to the real user and group ids. --rr Enable restricted shell mode. This option cannot be un- set once it has been set. --tt Exit after reading and executing one command. --uu Treat unset variables and parameters other than the spe- - cial parameters "@" and "*", or array variables sub- - scripted with "@" or "*", as an error when performing - parameter expansion. If expansion is attempted on an - unset variable or parameter, the shell prints an error - message, and, if not interactive, exits with a non-zero + cial parameters "@" and "*", or array variables sub- + scripted with "@" or "*", as an error when performing + parameter expansion. If expansion is attempted on an + unset variable or parameter, the shell prints an error + message, and, if not interactive, exits with a non-zero status. --vv Print shell input lines as they are read. - --xx After expanding each _s_i_m_p_l_e _c_o_m_m_a_n_d, ffoorr command, ccaassee + --xx After expanding each _s_i_m_p_l_e _c_o_m_m_a_n_d, ffoorr command, ccaassee command, sseelleecctt command, or arithmetic ffoorr command, dis- - play the expanded value of PPSS44, followed by the command + play the expanded value of PPSS44, followed by the command and its expanded arguments or associated word list. - --BB The shell performs brace expansion (see BBrraaccee EExxppaannssiioonn + --BB The shell performs brace expansion (see BBrraaccee EExxppaannssiioonn above). This is on by default. - --CC If set, bbaasshh does not overwrite an existing file with - the >>, >>&&, and <<>> redirection operators. This may be + --CC If set, bbaasshh does not overwrite an existing file with + the >>, >>&&, and <<>> redirection operators. This may be overridden when creating output files by using the redi- rection operator >>|| instead of >>. --EE If set, any trap on EERRRR is inherited by shell functions, - command substitutions, and commands executed in a sub- - shell environment. The EERRRR trap is normally not inher- + command substitutions, and commands executed in a sub- + shell environment. The EERRRR trap is normally not inher- ited in such cases. --HH Enable !! style history substitution. This option is on by default when the shell is interactive. - --PP If set, the shell does not resolve symbolic links when - executing commands such as ccdd that change the current + --PP If set, the shell does not resolve symbolic links when + executing commands such as ccdd that change the current working directory. It uses the physical directory structure instead. By default, bbaasshh follows the logical - chain of directories when performing commands which + chain of directories when performing commands which change the current directory. - --TT If set, any traps on DDEEBBUUGG and RREETTUURRNN are inherited by + --TT If set, any traps on DDEEBBUUGG and RREETTUURRNN are inherited by shell functions, command substitutions, and commands ex- - ecuted in a subshell environment. The DDEEBBUUGG and RREETTUURRNN + ecuted in a subshell environment. The DDEEBBUUGG and RREETTUURRNN traps are normally not inherited in such cases. - ---- If no arguments follow this option, then the positional + ---- If no arguments follow this option, then the positional parameters are unset. Otherwise, the positional parame- - ters are set to the _a_r_gs, even if some of them begin + ters are set to the _a_r_gs, even if some of them begin with a --. - -- Signal the end of options, cause all remaining _a_r_gs to + -- Signal the end of options, cause all remaining _a_r_gs to be assigned to the positional parameters. The --xx and --vv options are turned off. If there are no _a_r_gs, the posi- tional parameters remain unchanged. - The options are off by default unless otherwise noted. Using + - rather than - causes these options to be turned off. The op- + The options are off by default unless otherwise noted. Using + + rather than - causes these options to be turned off. The op- tions can also be specified as arguments to an invocation of the - shell. The current set of options may be found in $$--. The re- - turn status is always true unless an invalid option is encoun- + shell. The current set of options may be found in $$--. The re- + turn status is always true unless an invalid option is encoun- tered. sshhiifftt [_n] - The positional parameters from _n+1 ... are renamed to $$11 ........ - Parameters represented by the numbers $$## down to $$##-_n+1 are un- - set. _n must be a non-negative number less than or equal to $$##. - If _n is 0, no parameters are changed. If _n is not given, it is + The positional parameters from _n+1 ... are renamed to $$11 ........ + Parameters represented by the numbers $$## down to $$##-_n+1 are un- + set. _n must be a non-negative number less than or equal to $$##. + If _n is 0, no parameters are changed. If _n is not given, it is assumed to be 1. If _n is greater than $$##, the positional param- - eters are not changed. The return status is greater than zero + eters are not changed. The return status is greater than zero if _n is greater than $$## or less than zero; otherwise 0. sshhoopptt [--ppqqssuu] [--oo] [_o_p_t_n_a_m_e ...] - Toggle the values of settings controlling optional shell behav- - ior. The settings can be either those listed below, or, if the + Toggle the values of settings controlling optional shell behav- + ior. The settings can be either those listed below, or, if the --oo option is used, those available with the --oo option to the sseett builtin command. With no options, or with the --pp option, a list - of all settable options is displayed, with an indication of + of all settable options is displayed, with an indication of whether or not each is set; if _o_p_t_n_a_m_e_s are supplied, the output - is restricted to those options. The --pp option causes output to - be displayed in a form that may be reused as input. Other op- + is restricted to those options. The --pp option causes output to + be displayed in a form that may be reused as input. Other op- tions have the following meanings: --ss Enable (set) each _o_p_t_n_a_m_e. --uu Disable (unset) each _o_p_t_n_a_m_e. - --qq Suppresses normal output (quiet mode); the return status + --qq Suppresses normal output (quiet mode); the return status indicates whether the _o_p_t_n_a_m_e is set or unset. If multi- - ple _o_p_t_n_a_m_e arguments are given with --qq, the return sta- - tus is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero other- + ple _o_p_t_n_a_m_e arguments are given with --qq, the return sta- + tus is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero other- wise. - --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for + --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for the --oo option to the sseett builtin. - If either --ss or --uu is used with no _o_p_t_n_a_m_e arguments, sshhoopptt - shows only those options which are set or unset, respectively. - Unless otherwise noted, the sshhoopptt options are disabled (unset) + If either --ss or --uu is used with no _o_p_t_n_a_m_e arguments, sshhoopptt + shows only those options which are set or unset, respectively. + Unless otherwise noted, the sshhoopptt options are disabled (unset) by default. - The return status when listing options is zero if all _o_p_t_n_a_m_e_s - are enabled, non-zero otherwise. When setting or unsetting op- - tions, the return status is zero unless an _o_p_t_n_a_m_e is not a + The return status when listing options is zero if all _o_p_t_n_a_m_e_s + are enabled, non-zero otherwise. When setting or unsetting op- + tions, the return status is zero unless an _o_p_t_n_a_m_e is not a valid shell option. The list of sshhoopptt options is: aassssoocc__eexxppaanndd__oonnccee - If set, the shell suppresses multiple evaluation of as- - sociative array subscripts during arithmetic expression - evaluation, while executing builtins that can perform - variable assignments, and while executing builtins that + If set, the shell suppresses multiple evaluation of as- + sociative array subscripts during arithmetic expression + evaluation, while executing builtins that can perform + variable assignments, and while executing builtins that perform array dereferencing. - aauuttooccdd If set, a command name that is the name of a directory - is executed as if it were the argument to the ccdd com- + aauuttooccdd If set, a command name that is the name of a directory + is executed as if it were the argument to the ccdd com- mand. This option is only used by interactive shells. ccddaabbllee__vvaarrss - If set, an argument to the ccdd builtin command that is - not a directory is assumed to be the name of a variable + If set, an argument to the ccdd builtin command that is + not a directory is assumed to be the name of a variable whose value is the directory to change to. ccddssppeellll If set, minor errors in the spelling of a directory com- - ponent in a ccdd command will be corrected. The errors + ponent in a ccdd command will be corrected. The errors checked for are transposed characters, a missing charac- - ter, and one character too many. If a correction is - found, the corrected filename is printed, and the com- - mand proceeds. This option is only used by interactive + ter, and one character too many. If a correction is + found, the corrected filename is printed, and the com- + mand proceeds. This option is only used by interactive shells. cchheecckkhhaasshh If set, bbaasshh checks that a command found in the hash ta- - ble exists before trying to execute it. If a hashed - command no longer exists, a normal path search is per- + ble exists before trying to execute it. If a hashed + command no longer exists, a normal path search is per- formed. cchheecckkjjoobbss If set, bbaasshh lists the status of any stopped and running - jobs before exiting an interactive shell. If any jobs + jobs before exiting an interactive shell. If any jobs are running, this causes the exit to be deferred until a - second exit is attempted without an intervening command + second exit is attempted without an intervening command (see JJOOBB CCOONNTTRROOLL above). The shell always postpones ex- iting if any jobs are stopped. cchheecckkwwiinnssiizzee - If set, bbaasshh checks the window size after each external - (non-builtin) command and, if necessary, updates the - values of LLIINNEESS and CCOOLLUUMMNNSS. This option is enabled by + If set, bbaasshh checks the window size after each external + (non-builtin) command and, if necessary, updates the + values of LLIINNEESS and CCOOLLUUMMNNSS. This option is enabled by default. - ccmmddhhiisstt If set, bbaasshh attempts to save all lines of a multiple- - line command in the same history entry. This allows - easy re-editing of multi-line commands. This option is - enabled by default, but only has an effect if command + ccmmddhhiisstt If set, bbaasshh attempts to save all lines of a multiple- + line command in the same history entry. This allows + easy re-editing of multi-line commands. This option is + enabled by default, but only has an effect if command history is enabled, as described above under HHIISSTTOORRYY. ccoommppaatt3311 ccoommppaatt3322 @@ -5839,122 +5842,122 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ccoommppaatt4433 ccoommppaatt4444 ccoommppaatt5500 - These control aspects of the shell's compatibility mode + These control aspects of the shell's compatibility mode (see SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE below). ccoommpplleettee__ffuullllqquuoottee - If set, bbaasshh quotes all shell metacharacters in file- - names and directory names when performing completion. + If set, bbaasshh quotes all shell metacharacters in file- + names and directory names when performing completion. If not set, bbaasshh removes metacharacters such as the dol- - lar sign from the set of characters that will be quoted - in completed filenames when these metacharacters appear - in shell variable references in words to be completed. - This means that dollar signs in variable names that ex- - pand to directories will not be quoted; however, any - dollar signs appearing in filenames will not be quoted, - either. This is active only when bash is using back- - slashes to quote completed filenames. This variable is - set by default, which is the default bash behavior in + lar sign from the set of characters that will be quoted + in completed filenames when these metacharacters appear + in shell variable references in words to be completed. + This means that dollar signs in variable names that ex- + pand to directories will not be quoted; however, any + dollar signs appearing in filenames will not be quoted, + either. This is active only when bash is using back- + slashes to quote completed filenames. This variable is + set by default, which is the default bash behavior in versions through 4.2. ddiirreexxppaanndd - If set, bbaasshh replaces directory names with the results - of word expansion when performing filename completion. - This changes the contents of the readline editing buf- - fer. If not set, bbaasshh attempts to preserve what the + If set, bbaasshh replaces directory names with the results + of word expansion when performing filename completion. + This changes the contents of the readline editing buf- + fer. If not set, bbaasshh attempts to preserve what the user typed. ddiirrssppeellll - If set, bbaasshh attempts spelling correction on directory - names during word completion if the directory name ini- + If set, bbaasshh attempts spelling correction on directory + names during word completion if the directory name ini- tially supplied does not exist. - ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in - the results of pathname expansion. The filenames ````..'''' - and ````....'''' must always be matched explicitly, even if + ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in + the results of pathname expansion. The filenames ````..'''' + and ````....'''' must always be matched explicitly, even if ddoottgglloobb is set. eexxeeccffaaiill If set, a non-interactive shell will not exit if it can- - not execute the file specified as an argument to the - eexxeecc builtin command. An interactive shell does not + not execute the file specified as an argument to the + eexxeecc builtin command. An interactive shell does not exit if eexxeecc fails. eexxppaanndd__aalliiaasseess - If set, aliases are expanded as described above under + If set, aliases are expanded as described above under AALLIIAASSEESS. This option is enabled by default for interac- tive shells. eexxttddeebbuugg - If set at shell invocation, or in a shell startup file, + If set at shell invocation, or in a shell startup file, arrange to execute the debugger profile before the shell - starts, identical to the ----ddeebbuuggggeerr option. If set af- - ter invocation, behavior intended for use by debuggers + starts, identical to the ----ddeebbuuggggeerr option. If set af- + ter invocation, behavior intended for use by debuggers is enabled: 11.. The --FF option to the ddeeccllaarree builtin displays the source file name and line number corresponding to each function name supplied as an argument. - 22.. If the command run by the DDEEBBUUGG trap returns a - non-zero value, the next command is skipped and + 22.. If the command run by the DDEEBBUUGG trap returns a + non-zero value, the next command is skipped and not executed. - 33.. If the command run by the DDEEBBUUGG trap returns a - value of 2, and the shell is executing in a sub- - routine (a shell function or a shell script exe- - cuted by the .. or ssoouurrccee builtins), the shell + 33.. If the command run by the DDEEBBUUGG trap returns a + value of 2, and the shell is executing in a sub- + routine (a shell function or a shell script exe- + cuted by the .. or ssoouurrccee builtins), the shell simulates a call to rreettuurrnn. - 44.. BBAASSHH__AARRGGCC and BBAASSHH__AARRGGVV are updated as described + 44.. BBAASSHH__AARRGGCC and BBAASSHH__AARRGGVV are updated as described in their descriptions above. - 55.. Function tracing is enabled: command substitu- + 55.. Function tracing is enabled: command substitu- tion, shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the DDEEBBUUGG and RREETTUURRNN traps. - 66.. Error tracing is enabled: command substitution, - shell functions, and subshells invoked with (( + 66.. Error tracing is enabled: command substitution, + shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the EERRRR trap. eexxttgglloobb If set, the extended pattern matching features described above under PPaatthhnnaammee EExxppaannssiioonn are enabled. eexxttqquuoottee - If set, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quoting is performed - within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double + If set, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quoting is performed + within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double quotes. This option is enabled by default. ffaaiillgglloobb - If set, patterns which fail to match filenames during + If set, patterns which fail to match filenames during pathname expansion result in an expansion error. ffoorrccee__ffiiggnnoorree - If set, the suffixes specified by the FFIIGGNNOORREE shell - variable cause words to be ignored when performing word + If set, the suffixes specified by the FFIIGGNNOORREE shell + variable cause words to be ignored when performing word completion even if the ignored words are the only possi- - ble completions. See SSHHEELLLL VVAARRIIAABBLLEESS above for a de- - scription of FFIIGGNNOORREE. This option is enabled by de- + ble completions. See SSHHEELLLL VVAARRIIAABBLLEESS above for a de- + scription of FFIIGGNNOORREE. This option is enabled by de- fault. gglloobbaasscciiiirraannggeess - If set, range expressions used in pattern matching - bracket expressions (see PPaatttteerrnn MMaattcchhiinngg above) behave - as if in the traditional C locale when performing com- - parisons. That is, the current locale's collating se- - quence is not taken into account, so bb will not collate - between AA and BB, and upper-case and lower-case ASCII + If set, range expressions used in pattern matching + bracket expressions (see PPaatttteerrnn MMaattcchhiinngg above) behave + as if in the traditional C locale when performing com- + parisons. That is, the current locale's collating se- + quence is not taken into account, so bb will not collate + between AA and BB, and upper-case and lower-case ASCII characters will collate together. gglloobbsskkiippddoottss - If set, pathname expansion will never match the file- + If set, pathname expansion will never match the file- names ````..'''' and ````....'''', even if the pattern begins with a ````..''''. This option is enabled by default. gglloobbssttaarr If set, the pattern **** used in a pathname expansion con- - text will match all files and zero or more directories - and subdirectories. If the pattern is followed by a //, + text will match all files and zero or more directories + and subdirectories. If the pattern is followed by a //, only directories and subdirectories match. ggnnuu__eerrrrffmmtt @@ -5962,25 +5965,25 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS GNU error message format. hhiissttaappppeenndd - If set, the history list is appended to the file named + If set, the history list is appended to the file named by the value of the HHIISSTTFFIILLEE variable when the shell ex- its, rather than overwriting the file. hhiissttrreeeeddiitt - If set, and rreeaaddlliinnee is being used, a user is given the + If set, and rreeaaddlliinnee is being used, a user is given the opportunity to re-edit a failed history substitution. hhiissttvveerriiffyy - If set, and rreeaaddlliinnee is being used, the results of his- - tory substitution are not immediately passed to the - shell parser. Instead, the resulting line is loaded + If set, and rreeaaddlliinnee is being used, the results of his- + tory substitution are not immediately passed to the + shell parser. Instead, the resulting line is loaded into the rreeaaddlliinnee editing buffer, allowing further modi- fication. hhoossttccoommpplleettee If set, and rreeaaddlliinnee is being used, bbaasshh will attempt to - perform hostname completion when a word containing a @@ - is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE + perform hostname completion when a word containing a @@ + is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE above). This is enabled by default. hhuuppoonneexxiitt @@ -5988,23 +5991,23 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS active login shell exits. iinnhheerriitt__eerrrreexxiitt - If set, command substitution inherits the value of the - eerrrreexxiitt option, instead of unsetting it in the subshell - environment. This option is enabled when _p_o_s_i_x _m_o_d_e is + If set, command substitution inherits the value of the + eerrrreexxiitt option, instead of unsetting it in the subshell + environment. This option is enabled when _p_o_s_i_x _m_o_d_e is enabled. iinntteerraaccttiivvee__ccoommmmeennttss If set, allow a word beginning with ## to cause that word - and all remaining characters on that line to be ignored - in an interactive shell (see CCOOMMMMEENNTTSS above). This op- + and all remaining characters on that line to be ignored + in an interactive shell (see CCOOMMMMEENNTTSS above). This op- tion is enabled by default. llaassttppiippee - If set, and job control is not active, the shell runs + If set, and job control is not active, the shell runs the last command of a pipeline not executed in the back- ground in the current shell environment. - lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line + lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line commands are saved to the history with embedded newlines rather than using semicolon separators where possible. @@ -6015,54 +6018,54 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS tribute is not inherited. llooccaallvvaarr__uunnsseett - If set, calling uunnsseett on local variables in previous - function scopes marks them so subsequent lookups find - them unset until that function returns. This is identi- - cal to the behavior of unsetting local variables at the + If set, calling uunnsseett on local variables in previous + function scopes marks them so subsequent lookups find + them unset until that function returns. This is identi- + cal to the behavior of unsetting local variables at the current function scope. llooggiinn__sshheellll - The shell sets this option if it is started as a login - shell (see IINNVVOOCCAATTIIOONN above). The value may not be + The shell sets this option if it is started as a login + shell (see IINNVVOOCCAATTIIOONN above). The value may not be changed. mmaaiillwwaarrnn - If set, and a file that bbaasshh is checking for mail has - been accessed since the last time it was checked, the - message ``The mail in _m_a_i_l_f_i_l_e has been read'' is dis- + If set, and a file that bbaasshh is checking for mail has + been accessed since the last time it was checked, the + message ``The mail in _m_a_i_l_f_i_l_e has been read'' is dis- played. nnoo__eemmppttyy__ccmmdd__ccoommpplleettiioonn - If set, and rreeaaddlliinnee is being used, bbaasshh will not at- - tempt to search the PPAATTHH for possible completions when + If set, and rreeaaddlliinnee is being used, bbaasshh will not at- + tempt to search the PPAATTHH for possible completions when completion is attempted on an empty line. nnooccaasseegglloobb - If set, bbaasshh matches filenames in a case-insensitive + If set, bbaasshh matches filenames in a case-insensitive fashion when performing pathname expansion (see PPaatthhnnaammee EExxppaannssiioonn above). nnooccaasseemmaattcchh - If set, bbaasshh matches patterns in a case-insensitive + If set, bbaasshh matches patterns in a case-insensitive fashion when performing matching while executing ccaassee or [[[[ conditional commands, when performing pattern substi- - tution word expansions, or when filtering possible com- + tution word expansions, or when filtering possible com- pletions as part of programmable completion. nnooeexxppaanndd__ttrraannssllaattiioonn - If set, bbaasshh encloses the translated results of $"..." - quoting in single quotes instead of double quotes. If + If set, bbaasshh encloses the translated results of $"..." + quoting in single quotes instead of double quotes. If the string is not translated, this has no effect. nnuullllgglloobb - If set, bbaasshh allows patterns which match no files (see - PPaatthhnnaammee EExxppaannssiioonn above) to expand to a null string, + If set, bbaasshh allows patterns which match no files (see + PPaatthhnnaammee EExxppaannssiioonn above) to expand to a null string, rather than themselves. ppaattssuubb__rreeppllaacceemmeenntt If set, bbaasshh expands occurrences of && in the replacement - string of pattern substitution to the text matched by - the pattern, as described under PPaarraammeetteerr EExxppaannssiioonn + string of pattern substitution to the text matched by + the pattern, as described under PPaarraammeetteerr EExxppaannssiioonn above. This option is enabled by default. pprrooggccoommpp @@ -6071,51 +6074,52 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS enabled by default. pprrooggccoommpp__aalliiaass - If set, and programmable completion is enabled, bbaasshh - treats a command name that doesn't have any completions - as a possible alias and attempts alias expansion. If it - has an alias, bbaasshh attempts programmable completion us- + If set, and programmable completion is enabled, bbaasshh + treats a command name that doesn't have any completions + as a possible alias and attempts alias expansion. If it + has an alias, bbaasshh attempts programmable completion us- ing the command word resulting from the expanded alias. pprroommppttvvaarrss If set, prompt strings undergo parameter expansion, com- - mand substitution, arithmetic expansion, and quote re- - moval after being expanded as described in PPRROOMMPPTTIINNGG + mand substitution, arithmetic expansion, and quote re- + moval after being expanded as described in PPRROOMMPPTTIINNGG above. This option is enabled by default. rreessttrriicctteedd__sshheellll - The shell sets this option if it is started in re- - stricted mode (see RREESSTTRRIICCTTEEDD SSHHEELLLL below). The value - may not be changed. This is not reset when the startup - files are executed, allowing the startup files to dis- + The shell sets this option if it is started in re- + stricted mode (see RREESSTTRRIICCTTEEDD SSHHEELLLL below). The value + may not be changed. This is not reset when the startup + files are executed, allowing the startup files to dis- cover whether or not a shell is restricted. sshhiifftt__vveerrbboossee - If set, the sshhiifftt builtin prints an error message when + If set, the sshhiifftt builtin prints an error message when the shift count exceeds the number of positional parame- ters. ssoouurrcceeppaatthh If set, the .. (ssoouurrccee) builtin uses the value of PPAATTHH to - find the directory containing the file supplied as an + find the directory containing the file supplied as an argument. This option is enabled by default. vvaarrrreeddiirr__cclloossee - If set, the shell automatically closes file descriptors + If set, the shell automatically closes file descriptors assigned using the _{_v_a_r_n_a_m_e_} redirection syntax (see RREE-- - DDIIRREECCTTIIOONN above) instead of leaving them open when the + DDIIRREECCTTIIOONN above) instead of leaving them open when the command completes. xxppgg__eecchhoo - If set, the eecchhoo builtin expands backslash-escape se- + If set, the eecchhoo builtin expands backslash-escape se- quences by default. ssuussppeenndd [--ff] - Suspend the execution of this shell until it receives a SSIIGGCCOONNTT - signal. A login shell cannot be suspended; the --ff option can be - used to override this and force the suspension. The return sta- - tus is 0 unless the shell is a login shell and --ff is not sup- - plied, or if job control is not enabled. + Suspend the execution of this shell until it receives a SSIIGGCCOONNTT + signal. A login shell, or a shell without job control enabled, + cannot be suspended; the --ff option can be used to override this + and force the suspension. The return status is 0 unless the + shell is a login shell or job control is not enabled and --ff is + not supplied. tteesstt _e_x_p_r [[ _e_x_p_r ]] @@ -6643,4 +6647,4 @@ BBUUGGSS -GNU Bash 5.2 2022 March 11 BASH(1) +GNU Bash 5.2 2022 June 3 BASH(1) diff --git a/doc/bash.1 b/doc/bash.1 index 1026fac7..ceb0b224 100644 --- a/doc/bash.1 +++ b/doc/bash.1 @@ -5,12 +5,12 @@ .\" Case Western Reserve University .\" chet.ramey@case.edu .\" -.\" Last Change: Fri Mar 11 10:16:50 EST 2022 +.\" Last Change: Fri Jun 3 10:47:26 EDT 2022 .\" .\" bash_builtins, strip all but Built-Ins section .if \n(zZ=1 .ig zZ .if \n(zY=1 .ig zY -.TH BASH 1 "2022 March 11" "GNU Bash 5.2" +.TH BASH 1 "2022 June 3" "GNU Bash 5.2" .\" .\" There's some problem with having a `@' .\" in a tagged paragraph with the BSD man macros. @@ -420,12 +420,14 @@ No other startup files are read. .PP .B Bash attempts to determine when it is being run with its standard input -connected to a network connection, as when executed by the remote shell -daemon, usually \fIrshd\fP, or the secure shell daemon \fIsshd\fP. +connected to a network connection, as when executed by +the historical remote shell daemon, usually \fIrshd\fP, +or the secure shell daemon \fIsshd\fP. If .B bash -determines it is being run in this fashion, it reads and executes -commands from \fI~/.bashrc\fP, if that file exists and is readable. +determines it is being run non-interactively in this fashion, +it reads and executes commands from \fI~/.bashrc\fP, +if that file exists and is readable. It will not do this if invoked as \fBsh\fP. The .B \-\-norc @@ -589,7 +591,9 @@ The variable may be used to specify the format of the time information. .PP -Each command in a pipeline is executed in a \fIsubshell\fP, which is a +Each command in a multi-command pipeline, +where pipes are created, +is executed in a \fIsubshell\fP, which is a separate process. See .SM @@ -787,6 +791,11 @@ indices. The element of .B BASH_REMATCH with index \fIn\fP is the portion of the string matching the \fIn\fPth parenthesized subexpression. +Bash sets +.SM +.B BASH_REMATCH +in the global scope; declaring it as a local variable will lead to +unexpected results. .if t .sp 0.5 .if n .sp 1 Expressions may be combined using the following operators, listed @@ -3874,7 +3883,9 @@ is a or a .B ^ then any character not enclosed is matched. -The sorting order of characters in range expressions is determined by +The sorting order of characters in range expressions, +and the characters included in the range, +are determined by the current locale and the values of the .SM .B LC_COLLATE @@ -10638,12 +10649,16 @@ by default. Suspend the execution of this shell until it receives a .SM .B SIGCONT -signal. A login shell cannot be suspended; the +signal. A login shell, +or a shell without job control enabled, +cannot be suspended; the .B \-f option can be used to override this and force the suspension. -The return status is 0 unless the shell is a login shell and +The return status is 0 unless the shell is a login shell +or job control is not enabled +and .B \-f -is not supplied, or if job control is not enabled. +is not supplied. .TP \fBtest\fP \fIexpr\fP .PD 0 diff --git a/doc/bash.html b/doc/bash.html index 06f042bd..1b946831 100644 --- a/doc/bash.html +++ b/doc/bash.html @@ -3,7 +3,7 @@ -
BASH(1)2022 March 11BASH(1) +BASH(1)2022 June 3BASH(1)

Index @@ -556,13 +556,15 @@ No other startup files are read. Bash attempts to determine when it is being run with its standard input -connected to a network connection, as when executed by the remote shell -daemon, usually rshd, or the secure shell daemon sshd. +connected to a network connection, as when executed by +the historical remote shell daemon, usually rshd, +or the secure shell daemon sshd. If bash -determines it is being run in this fashion, it reads and executes -commands from ~/.bashrc, if that file exists and is readable. +determines it is being run non-interactively in this fashion, +it reads and executes commands from ~/.bashrc, +if that file exists and is readable. It will not do this if invoked as sh. The --norc @@ -787,7 +789,9 @@ variable may be used to specify the format of the time information.

-Each command in a pipeline is executed in a subshell, which is a +Each command in a multi-command pipeline, +where pipes are created, +is executed in a subshell, which is a separate process. See COMMAND EXECUTION ENVIRONMENT @@ -1024,6 +1028,12 @@ indices. The element of with index n is the portion of the string matching the nth parenthesized subexpression. +Bash sets +BASH_REMATCH + + +in the global scope; declaring it as a local variable will lead to +unexpected results.

@@ -4856,7 +4866,9 @@ or a ^ then any character not enclosed is matched. -The sorting order of characters in range expressions is determined by +The sorting order of characters in range expressions, +and the characters included in the range, +are determined by the current locale and the values of the LC_COLLATE @@ -13396,14 +13408,18 @@ Suspend the execution of this shell until it receives a SIGCONT -signal. A login shell cannot be suspended; the +signal. A login shell, +or a shell without job control enabled, +cannot be suspended; the -f option can be used to override this and force the suspension. -The return status is 0 unless the shell is a login shell and +The return status is 0 unless the shell is a login shell +or job control is not enabled +and -f -is not supplied, or if job control is not enabled. +is not supplied.

test expr
[ expr ]
@@ -14677,7 +14693,7 @@ There may be only one active coprocess at a time.
-
GNU Bash 5.22022 March 11BASH(1) +GNU Bash 5.22022 June 3BASH(1)

@@ -14783,7 +14799,7 @@ There may be only one active coprocess at a time.
BUGS

-This document was created by man2html from bash.1.
-Time: 08 April 2022 15:46:17 EDT +This document was created by man2html from /usr/local/src/bash/bash-20220609/doc/bash.1.
+Time: 13 June 2022 11:04:39 EDT diff --git a/doc/bash.info b/doc/bash.info index d88eff3e..ad48774b 100644 --- a/doc/bash.info +++ b/doc/bash.info @@ -1,9 +1,9 @@ This is bash.info, produced by makeinfo version 6.8 from bashref.texi. This text is a brief description of the features that are present in the -Bash shell (version 5.2, 24 February 2022). +Bash shell (version 5.2, 3 June 2022). - This is Edition 5.2, last updated 24 February 2022, of 'The GNU Bash + This is Edition 5.2, last updated 3 June 2022, of 'The GNU Bash Reference Manual', for 'Bash', Version 5.2. Copyright (C) 1988-2022 Free Software Foundation, Inc. @@ -26,10 +26,10 @@ Bash Features ************* This text is a brief description of the features that are present in the -Bash shell (version 5.2, 24 February 2022). The Bash home page is +Bash shell (version 5.2, 3 June 2022). The Bash home page is . - This is Edition 5.2, last updated 24 February 2022, of 'The GNU Bash + This is Edition 5.2, last updated 3 June 2022, of 'The GNU Bash Reference Manual', for 'Bash', Version 5.2. Bash contains features that appear in other popular shells, and some @@ -704,11 +704,12 @@ information. If the pipeline is not executed asynchronously (*note Lists::), the shell waits for all commands in the pipeline to complete. - Each command in a pipeline is executed in its own "subshell", which -is a separate process (*note Command Execution Environment::). If the -'lastpipe' option is enabled using the 'shopt' builtin (*note The Shopt -Builtin::), the last element of a pipeline may be run by the shell -process when job control is not active. + Each command in a multi-command pipeline, where pipes are created, is +executed in its own "subshell", which is a separate process (*note +Command Execution Environment::). If the 'lastpipe' option is enabled +using the 'shopt' builtin (*note The Shopt Builtin::), the last element +of a pipeline may be run by the shell process when job control is not +active. The exit status of a pipeline is the exit status of the last command in the pipeline, unless the 'pipefail' option is enabled (*note The Set @@ -1143,6 +1144,9 @@ File: bash.info, Node: Conditional Constructs, Next: Command Grouping, Prev: is the portion of the string matching the Nth parenthesized subexpression. + Bash sets 'BASH_REMATCH' in the global scope; declaring it as a + local variable will lead to unexpected results. + Expressions may be combined using the following operators, listed in decreasing order of precedence: @@ -2431,9 +2435,10 @@ characters must be quoted if they are to be matched literally. character not enclosed is matched. A '-' may be matched by including it as the first or last character in the set. A ']' may be matched by including it as the first character in the set. The - sorting order of characters in range expressions is determined by - the current locale and the values of the 'LC_COLLATE' and 'LC_ALL' - shell variables, if set. + sorting order of characters in range expressions, and the + characters included in the range, are determined by the current + locale and the values of the 'LC_COLLATE' and 'LC_ALL' shell + variables, if set. For example, in the default C locale, '[a-dx-z]' is equivalent to '[abcdxyz]'. Many locales sort characters in dictionary order, and @@ -6146,14 +6151,15 @@ Invoked by remote shell daemon .............................. Bash attempts to determine when it is being run with its standard input -connected to a network connection, as when executed by the remote shell -daemon, usually 'rshd', or the secure shell daemon 'sshd'. If Bash -determines it is being run in this fashion, it reads and executes -commands from '~/.bashrc', if that file exists and is readable. It will -not do this if invoked as 'sh'. The '--norc' option may be used to -inhibit this behavior, and the '--rcfile' option may be used to force -another file to be read, but neither 'rshd' nor 'sshd' generally invoke -the shell with those options or allow them to be specified. +connected to a network connection, as when executed by the historical +remote shell daemon, usually 'rshd', or the secure shell daemon 'sshd'. +If Bash determines it is being run non-interactively in this fashion, it +reads and executes commands from '~/.bashrc', if that file exists and is +readable. It will not do this if invoked as 'sh'. The '--norc' option +may be used to inhibit this behavior, and the '--rcfile' option may be +used to force another file to be read, but neither 'rshd' nor 'sshd' +generally invoke the shell with those options or allow them to be +specified. Invoked with unequal effective and real UID/GIDs ................................................ @@ -7248,7 +7254,12 @@ startup files. 'read', the trap handler executes and 'read' returns an exit status greater than 128. - 60. Bash removes an exited background process's status from the list + 60. The 'printf' builting uses 'double' (via 'strtod') to convert + arguments corresponding to floating point conversion specifiers, + instead of 'long double' if it's available. The 'L' length + modifier forces 'printf' to use 'long double' if it's available. + + 61. Bash removes an exited background process's status from the list of such statuses after the 'wait' builtin is used to obtain it. There is other POSIX behavior that Bash does not implement by default @@ -7645,8 +7656,11 @@ File: bash.info, Node: Job Control Builtins, Next: Job Control Variables, Pre suspend [-f] Suspend the execution of this shell until it receives a 'SIGCONT' - signal. A login shell cannot be suspended; the '-f' option can be - used to override this and force the suspension. + signal. A login shell, or a shell without job control enabled, + cannot be suspended; the '-f' option can be used to override this + and force the suspension. The return status is 0 unless the shell + is a login shell or job control is not enabled and '-f' is not + supplied. When job control is not active, the 'kill' and 'wait' builtins do not accept JOBSPEC arguments. They must be supplied process IDs. @@ -12494,138 +12508,138 @@ D.5 Concept Index  Tag Table: -Node: Top894 -Node: Introduction2811 -Node: What is Bash?3024 -Node: What is a shell?4135 -Node: Definitions6670 -Node: Basic Shell Features9618 -Node: Shell Syntax10834 -Node: Shell Operation11857 -Node: Quoting13147 -Node: Escape Character14448 -Node: Single Quotes14930 -Node: Double Quotes15275 -Node: ANSI-C Quoting16550 -Node: Locale Translation17857 -Node: Creating Internationalized Scripts19165 -Node: Comments23279 -Node: Shell Commands23894 -Node: Reserved Words24829 -Node: Simple Commands25582 -Node: Pipelines26233 -Node: Lists29189 -Node: Compound Commands30981 -Node: Looping Constructs31990 -Node: Conditional Constructs34482 -Node: Command Grouping48823 -Node: Coprocesses50298 -Node: GNU Parallel52958 -Node: Shell Functions53872 -Node: Shell Parameters61754 -Node: Positional Parameters66139 -Node: Special Parameters67038 -Node: Shell Expansions70249 -Node: Brace Expansion72373 -Node: Tilde Expansion75104 -Node: Shell Parameter Expansion77722 -Node: Command Substitution96070 -Node: Arithmetic Expansion97422 -Node: Process Substitution98387 -Node: Word Splitting99504 -Node: Filename Expansion101445 -Node: Pattern Matching104191 -Node: Quote Removal108796 -Node: Redirections109088 -Node: Executing Commands118745 -Node: Simple Command Expansion119412 -Node: Command Search and Execution121519 -Node: Command Execution Environment123894 -Node: Environment126926 -Node: Exit Status128586 -Node: Signals130367 -Node: Shell Scripts133813 -Node: Shell Builtin Commands136837 -Node: Bourne Shell Builtins138872 -Node: Bash Builtins160330 -Node: Modifying Shell Behavior191183 -Node: The Set Builtin191525 -Node: The Shopt Builtin202123 -Node: Special Builtins218032 -Node: Shell Variables219008 -Node: Bourne Shell Variables219442 -Node: Bash Variables221543 -Node: Bash Features254356 -Node: Invoking Bash255366 -Node: Bash Startup Files261376 -Node: Interactive Shells266476 -Node: What is an Interactive Shell?266883 -Node: Is this Shell Interactive?267529 -Node: Interactive Shell Behavior268341 -Node: Bash Conditional Expressions271967 -Node: Shell Arithmetic276606 -Node: Aliases279547 -Node: Arrays282157 -Node: The Directory Stack288545 -Node: Directory Stack Builtins289326 -Node: Controlling the Prompt293583 -Node: The Restricted Shell296545 -Node: Bash POSIX Mode299152 -Node: Shell Compatibility Mode310799 -Node: Job Control318825 -Node: Job Control Basics319282 -Node: Job Control Builtins324281 -Node: Job Control Variables329678 -Node: Command Line Editing330831 -Node: Introduction and Notation332499 -Node: Readline Interaction334119 -Node: Readline Bare Essentials335307 -Node: Readline Movement Commands337087 -Node: Readline Killing Commands338044 -Node: Readline Arguments339959 -Node: Searching341000 -Node: Readline Init File343183 -Node: Readline Init File Syntax344441 -Node: Conditional Init Constructs367637 -Node: Sample Init File371830 -Node: Bindable Readline Commands374951 -Node: Commands For Moving376152 -Node: Commands For History378200 -Node: Commands For Text383191 -Node: Commands For Killing386837 -Node: Numeric Arguments389867 -Node: Commands For Completion391003 -Node: Keyboard Macros395191 -Node: Miscellaneous Commands395875 -Node: Readline vi Mode401811 -Node: Programmable Completion402715 -Node: Programmable Completion Builtins410492 -Node: A Programmable Completion Example421184 -Node: Using History Interactively426428 -Node: Bash History Facilities427109 -Node: Bash History Builtins430111 -Node: History Interaction435116 -Node: Event Designators438733 -Node: Word Designators440084 -Node: Modifiers441841 -Node: Installing Bash443649 -Node: Basic Installation444783 -Node: Compilers and Options448502 -Node: Compiling For Multiple Architectures449240 -Node: Installation Names450930 -Node: Specifying the System Type453036 -Node: Sharing Defaults453749 -Node: Operation Controls454419 -Node: Optional Features455374 -Node: Reporting Bugs466589 -Node: Major Differences From The Bourne Shell467861 -Node: GNU Free Documentation License484708 -Node: Indexes509882 -Node: Builtin Index510333 -Node: Reserved Word Index517157 -Node: Variable Index519602 -Node: Function Index536373 -Node: Concept Index550154 +Node: Top884 +Node: Introduction2791 +Node: What is Bash?3004 +Node: What is a shell?4115 +Node: Definitions6650 +Node: Basic Shell Features9598 +Node: Shell Syntax10814 +Node: Shell Operation11837 +Node: Quoting13127 +Node: Escape Character14428 +Node: Single Quotes14910 +Node: Double Quotes15255 +Node: ANSI-C Quoting16530 +Node: Locale Translation17837 +Node: Creating Internationalized Scripts19145 +Node: Comments23259 +Node: Shell Commands23874 +Node: Reserved Words24809 +Node: Simple Commands25562 +Node: Pipelines26213 +Node: Lists29209 +Node: Compound Commands31001 +Node: Looping Constructs32010 +Node: Conditional Constructs34502 +Node: Command Grouping48966 +Node: Coprocesses50441 +Node: GNU Parallel53101 +Node: Shell Functions54015 +Node: Shell Parameters61897 +Node: Positional Parameters66282 +Node: Special Parameters67181 +Node: Shell Expansions70392 +Node: Brace Expansion72516 +Node: Tilde Expansion75247 +Node: Shell Parameter Expansion77865 +Node: Command Substitution96213 +Node: Arithmetic Expansion97565 +Node: Process Substitution98530 +Node: Word Splitting99647 +Node: Filename Expansion101588 +Node: Pattern Matching104334 +Node: Quote Removal108988 +Node: Redirections109280 +Node: Executing Commands118937 +Node: Simple Command Expansion119604 +Node: Command Search and Execution121711 +Node: Command Execution Environment124086 +Node: Environment127118 +Node: Exit Status128778 +Node: Signals130559 +Node: Shell Scripts134005 +Node: Shell Builtin Commands137029 +Node: Bourne Shell Builtins139064 +Node: Bash Builtins160522 +Node: Modifying Shell Behavior191375 +Node: The Set Builtin191717 +Node: The Shopt Builtin202315 +Node: Special Builtins218224 +Node: Shell Variables219200 +Node: Bourne Shell Variables219634 +Node: Bash Variables221735 +Node: Bash Features254548 +Node: Invoking Bash255558 +Node: Bash Startup Files261568 +Node: Interactive Shells266696 +Node: What is an Interactive Shell?267103 +Node: Is this Shell Interactive?267749 +Node: Interactive Shell Behavior268561 +Node: Bash Conditional Expressions272187 +Node: Shell Arithmetic276826 +Node: Aliases279767 +Node: Arrays282377 +Node: The Directory Stack288765 +Node: Directory Stack Builtins289546 +Node: Controlling the Prompt293803 +Node: The Restricted Shell296765 +Node: Bash POSIX Mode299372 +Node: Shell Compatibility Mode311293 +Node: Job Control319319 +Node: Job Control Basics319776 +Node: Job Control Builtins324775 +Node: Job Control Variables330342 +Node: Command Line Editing331495 +Node: Introduction and Notation333163 +Node: Readline Interaction334783 +Node: Readline Bare Essentials335971 +Node: Readline Movement Commands337751 +Node: Readline Killing Commands338708 +Node: Readline Arguments340623 +Node: Searching341664 +Node: Readline Init File343847 +Node: Readline Init File Syntax345105 +Node: Conditional Init Constructs368301 +Node: Sample Init File372494 +Node: Bindable Readline Commands375615 +Node: Commands For Moving376816 +Node: Commands For History378864 +Node: Commands For Text383855 +Node: Commands For Killing387501 +Node: Numeric Arguments390531 +Node: Commands For Completion391667 +Node: Keyboard Macros395855 +Node: Miscellaneous Commands396539 +Node: Readline vi Mode402475 +Node: Programmable Completion403379 +Node: Programmable Completion Builtins411156 +Node: A Programmable Completion Example421848 +Node: Using History Interactively427092 +Node: Bash History Facilities427773 +Node: Bash History Builtins430775 +Node: History Interaction435780 +Node: Event Designators439397 +Node: Word Designators440748 +Node: Modifiers442505 +Node: Installing Bash444313 +Node: Basic Installation445447 +Node: Compilers and Options449166 +Node: Compiling For Multiple Architectures449904 +Node: Installation Names451594 +Node: Specifying the System Type453700 +Node: Sharing Defaults454413 +Node: Operation Controls455083 +Node: Optional Features456038 +Node: Reporting Bugs467253 +Node: Major Differences From The Bourne Shell468525 +Node: GNU Free Documentation License485372 +Node: Indexes510546 +Node: Builtin Index510997 +Node: Reserved Word Index517821 +Node: Variable Index520266 +Node: Function Index537037 +Node: Concept Index550818  End Tag Table diff --git a/doc/bash.pdf b/doc/bash.pdf index 50b5575c772632f52a711ab053f5aaca8acb4b23..76109d7a0184130f8d32e29dc04efbb72e2d6a87 100644 GIT binary patch delta 367183 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

R7#0HQFziQFRKI-(HoMIhZR&36^2%mq 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 SO-D1x6#ND)zGu6VH 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%0A3$VB)v$U_4L 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

Ib^e+695~rOa+v^sJTrp_R(lPdq~gEB8XA?L!Q7 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

FT% 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�eX%*t8;5R7aRUXT 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 delta 366845 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

3Ag(BG_grhX6#Z@uvpMINuLoTMvJ&` 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

s0RL+B3+|=@# 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

    P>K@fJRns>EEE&zrJUZ@= zD&~CqshQDj$5y$SR1o+~b7exmc@ul=$vhO2wKgk%;cbgJY<3^(@}fmV0S(2)aGH9` zEY&ddm79Xroz%&Wm`7#+5d%4FtD~0)`s_fx3PsB-Vu_`k(TzWwV_Cwco%D$e(q>C*zt9~@o3xGNqIQ3?vB5_9yu2ZAYFFLh1t$MfFp7vF5dKPL`2~SW( z9JdR9udB@@B@&P4Zop>*TWi*jj?ubS#R}GM`ruGK>FPoKz8%(*rRGynO|4mmHnNza zN4Gw6U-=|@xZo+R_0P?oVDQk@(oC`5d^9qyg9Yr9>~j0iJu{*5B^j46!O-~GcvVFj znRPZEOR2}SYkd7u2}R#-k6u2RE~I7Q4q{S&KDF;8O`sAT_1n}_uP<-*CmPG`p6A_U zJ=M!snh5*>ceba4;S~t3Y&NFP3_fktkj*ph-OAQURVS!QG-o{#p>bTiWW+?xnry>2 zNW@b;EXS@1_y=b%I%BpDiLIoj;N3{oHEf$hwI@wC=5U5*@L#rQJXEo(5L7gV=nzkT z!LjRAie-Wn1ohn;pmZB-85y$L=DFK0>xS<>U zH$J>fqyO+yi=UxcpPJuK3bSeTld{?mWp1_ZGG`)IJ0(tXK z7=;wT$K*59F`qEik@idDMwB~7~9ULe-f(`_3G3#AKIcSzf#eAVX*A3R7v0 z-P)(%I4cXu^h~B7q3WVeXUO|1$=wvjBFBQ3f-Z@VlG5D<(QVd&o2KY29H9WLpm1gGq=Z#>ohQj^wUHCBq3?bSTSpVG7?jba$Z|PXl3pUOXdl)htd}3?G*E#O`94G<(&tnEuPvDkOWL&+3n( zX30>5ml`D9Wa=7FUC@C{8TR8eD~IEzv%&{yOV@snzwB_ZR86RBthqVlR8{u%Pv7dy zE3_)q$hhJDb?XNs=Wcw|wd?=MzSB7Q*bKyGa+neH&Y0CUx^pAmtA^cw%s&7pWK*(* ziDEUY(6jZJ4(P2M@6EYVM$?*!i*2Q>W&IKxJH2>9w_8NC?TtJ}|5k&9s}|?JnoWff zX_po+X15D;XtG>HByAp*2B)|?B5J!Oo)8~MnTIC}u1S;alzWGp(mR@Ww^ArTt`)ga znMTfP>)Ev=b&8;;et5!vxi~nr;H?y~*YK0B_Hc-Z^JI!GR+<6U;!=}3`=*{Ra|e{O zvu|_ylmO1%Ws=+Q?dyMjzY;wBkLx&vnPukgj4E21StOZAT{Bvm`!XgfiLh|7h)N1& zH!_1Y*4=LXhaN3>le6oKqe{w|sTO=1M?u%+a}<%AOBJRHgU~jAEqFw;eF(PIAnl3a zg*>`jU4zKz3kHBY$4Z3Zy2jRKQbH%)x+TXp!wFkZ_cIu{Q13gzidZ|8-ZPk7sTfim zQ0*vEx+CYRO=0Mk*%Pd~+ip+&pokU3ZRYm@L=iFO!uk?+-iG^TiIijr8{njYzGvr||Aj@NSeM^sw&Q_T#I$Ot~&U~R~ZdAz#8D>K>~8H`lz%+NH}Y1BKkwMs-io+z}e&`7sYV*OxXH#Fni+>`-H) z<~;2^w%t4-JvM`-0R^L5Jl=d=n0u}2){+MeRLf&QnQyKtEE0&tSv1l554-bGC%3^r zwT$yhv^%wbsvD)5N8iig*y$RitHrYLq0Nlb>_tm3cR`L6vj7Ch)VCApPHz%V#6Wq7 zQi3kF>Gx7~MNr*Gs@;swOH4W^bTDNvnR$coJWkxSFpZPhj29Y?eX|`0KLF6|8HgN6 z@20Kg@{(p63NtV= zATS`8P)7tee_Lb=ae;lX6Cv>+c6PMNW&t@5R5x4VxSQ;d zY|C2APsm^Kf1Gpb&gyPilfk?V3?#Nl*5zEj^PP)+O)^504F8z_uXYz%a)0sb1yw&y z%>P!qxCFjY_f9@iE{c3UZS6Bt!qd5_ICE<;m zHTi_bGk9NWN>jW~jILKCL8SxqdTKFMZSRc6GNNlecwu&@Z_IFbZ!A z{r1@n?Kb91roLR}B_*OrmU*Gx`B=M;D?()@xj6&j_yL?_XzROeGbU4?)Z^H%+Iniu zl2k2Oe{#ZQM(uZ{`R-$r__b+43L(rpj8t~*p?(@k@@9iCf_y~0`CUIfB>jGB`)*9? zp-INWe!p#-^(B7sr|Zh^h2j4K_usuc{)bCuPCSt#8wMSg?#_ zStZk@T4|X}0fx7vOc@AarM~t3Vb^q%zVQ8A*aZbGSz&{W1MM-dy|lYb`XOmI$@I|7 zCB@;zB4bum`y)|hxv)>Q;FEUrVo&O1+m2JxZ<2buO@^jk_ucj>!OM^M=6-0qsaX?T zf0uDV3Tf^1Mjr((4dNE|))^6^Qnv zq%0Cnb~iTaJov=?b$%>$mb@qk&Ds1cfdNTUWTiYK7C1AglKV3=ePS)2RSl;cgHyq| z*X_99)=zNwwu4h{`e9e&;o(2#W<#Uye^!IkI`~c>5*#>iB?f<0MhV7OCm$CKw3G1) z3`zNe*pm6yoH5<>+ikBb9j@j;0qiK(AoK{E-#sP&rEls?8ojWP)?^?1VUa5% zFVeNzhrwce4uW9Rh#W?Cmy@%}l2nvuh2J^X*8xSrWjLuSLDPDBXsr6o6&ZI|e?;4B zP^hu%QC1OW@23tb^nT|LN^U~jEV+e`2h`1U7`kMf>gk}YI!g{6fFQUexI;HXRLUgD znDfXpc$#k8wXuFdcwPmjRD`w!djatD2k@Z*-L3Dea3Vd?To4PW3VOx}dn6Iglx|a4 zx9cZwMP&|xZ`aBA(106jZAigqf2M^PV#My;1mMFeH2u7Zz=M*~i#I@xi0=A zLw*c#oZCe|ok9NFbaj~8?j8(vZOzzw7A=jxjr(TR{-zM%$gx0X!s$4=QwaghMLfKN zR!X0=5Uy4b5t;!%5bDY5g6E{lU9=)^yu)S0#f42I)PgV?MAc^wfHv0e+G#R;V3`YW zWDy8iRE05{6Hcvc$so_Re}`4-#5q`n0fxeuuYY9})%Q3n$Cz&X}aAkc{EqEY-c^DrH zEei-Rbutb0K6wDa8tY)7LnVTuBvNLUm<53Y5S15FdO)73$8v&oe*+-7YXKou=nwSz ztUg(pzd)Zxjd#t`SeAt7%0l;57lgpBw~sGrT>!|AEG*A_)&)*zS@>6eA9Q)9cdX(( zpzU80!}>5NP??h^QGq7y-EPxwuU;=OD2rUAKYbUS27+_tw?k=N9xH05S;bvACxyL& z(L@Clr1XlAQoHy+e{Kj=2!I;)LPK~uQZpC_s{f4cFhC=r|HnKO7m7#=Bq}b~dsG^L zup@f4&1QZp?PBb}%WPi|Pex zN8H9lCmB~myPu2=#F=MCDwjBrd9;$CI!P_De4oxgow0}8bnHs0CB^U_{b==L73!4Iga9j=hz1&dG#gsVabPztVU=7 z5ouaX@nRwie+f3rtc@oDv^%5o}z3}3%_6EmX<5L;CIw5TAK z!bP2<&64(j{zQqF%^q3FmBTq1A=Omg2gGjMpg_m=f4*yfTh-l^$m9-wu8vGINH3W$ z+;E*;-kc&_UEeMLzZrlno9wzja7Z9ql`CjPn1l4$CEegC z5nQ1we`M8jm?QL!&tndG6@^g(=-^@7h^u=_0%$4;%>#LieuHVf?!BM}JuS{|cc`Ak<@u57&v{=5(^L6BpRuCx1@}+@gXvPE9 z%<2tromsA+^F;uyyzrD-7YT+CEyCbi1X=Fbe@szg&Iv8zB=%$!Nqd9wA`G!RctI%I=-Cg~{6>jQMwa@)g0fWrzjGt`*;Ak(%>MGBnU$WWf zGiP>W=Ov4rK8ppS`4Ry}2WzOBFP5dULZN5jEeuov zy?Su)C^DQiUKHI{A z8)0x(mx42B$^}}qAtHU#9n~mh3E5`Qqsele`0x9%{gmwbb)z#fk+Zo$afnXNH!u58 z$(ij#+@{#1a5dO@?OXSMu-k&|lx2~DV^OJ?m1#8~!RZH#NA+se4{IgqJ`{Gcf9+TG zwjrA2L4eA`DvdCq`satHn|IkvdGOLkT`*bA2`DRl**$$4!)sMO!ebj|NDdupT3@f8 zrlD2onglNAbIZ(}0m3Ti`&DOmQz5y)3WnA5Q#~V%6kOQ5*>E3F#lXl-DyaKuL$j;f zP8Bj#(Czn{hcGE-B?W4Vh8U*ze?z}&#!-EQrJkWtlmtv(TQIO`pP$e|Uj|)pRNjEP zKvTiB>TR;G2XI)}dsI$~D+12}VvVu}4+JIJ8d*^&fuqlr#fcgj=z&vbVEr8Y!DvBn zR!v{gC~jnSxtK;&V8}ra=_~fK4~6w$&EEj?lCR>h;JUjyaf#vA!sU$cbVW1Z?zR;@h0BU!wybJM>2?`2dBr2@d)L%xEaQJhO^_uO5F?!* z0cVP6r;!p6xKi8S6+*GH7szi4D*f|vhQVMkz6)SF9V=sT@C?vK746}tQCpaSH-Pdi zA{w8SWqG1CJcT}62$xsse|*{`hoANUEY@kUYfX89K8j}Rv+ByXZ;T{&_3&XqvlLE= z=8p-w{#Gw&(5dMbJWD^eL*JoiVzg3y++Pp)FH@}>Ni25|tdsfOX_;e}QTyO^qj&Tb zLCm*R!C1-ju3mk(ANm8h;a~eZh+w;2v&MWw2OI2jGVOpMlERXMf6F1j8D20-{k}Rd z)T)gQ+UsnVpyISrNd+byWC*r2BLUdUNRa!X1zA2J{_K$NFGZFC_O~jLZZ@uqw`ss! zTK69FpiM%A zHSY9CP+)nEi&7%A;lTy=%A8N$M5=zU74CaTCR{pQ+1|Lbe`Z{hno*^zAAU%_yMFcd z?W^l(MUahan%8&z43Gdvm@h`2n^U<}GPPB_(e#OZok%;bVJ{4@6C!ocf|0J&q&ddA zZ**r^Z6~uJJA${%N_&>FL|uBbeF25F8*E-w3>bagZuKlnJ-7y;eN|1rgjk`@X7_r2 z_yXb93}2k+f2IICFS(T%nDaI=eO8bvwSN)D!s&R%CF|8QF2 z=~0uLU`7fLFKqP{!fq%W;BHe8L2;1a(a`>*0Rl+03LEX)c!B^shfW43@95kXz#;y+ z44&Vn$nl4duD{Z(XAPER&cGx6^uc4`k@L|oA+>)Ef9uiTx^_gBnbHsSJ%y)LxE8pQ zeQ>f3#UXTi*n6hGY?!j^FGu#nu~}gK@$0W6*;HU$^qgQJe|AN|^lyKQ3(H()(q+EN z0W?vN8Tjq0*-tYM(RP5crT{9^Mj~Yq8r|}s7GKfQb?ATV^qgbh69t4Be&$X{OB^_# zxKqiCfBBtqxMl>)zWsGMr;!wAElX?q%$zbVYL;1P)l*U1o6urV`LqpU$=!lh+71ts z>rn(ldRBUWFl`^MlN`o!;w~|I?g6JOaz`Xooqd)egN#KmWcN&tT$q$aHv@pOpx?R? zCtuhs=j8I(K-0mNY9kd^036n7|3guKo7)6oe|=W0(p~agr&D?$!lme&I#7UAX}7zH zu9428VA6X&rl$o}sL;KMQTxym$C|k3vK0KEX=O&C2;`$0X0Vhq_XRcd7{UfhKq2=W z^;pIUWcIcI)tts=oI-PwvYp<7vJ;)&yBWaPpHo-y&|19j`oXq;e1tTm93*fu$azhw zf8xTYLJa9jGv+Y_Psq|uCgUN`f3J$`eHYmPxJTyT@#^~8Fzhn!ZQ>0whv1j(g5it^ zOE6f!DqJHo5x0D_aWD@A*@5ZBgI+bo1uNcgfYe|9zvh2YT_@Px|A# zw^#3Oq9h;>Qqq5hAEE#hu~(jFrJyF#gM_u6d{<_k4wYE7{PO%(!I_P(ik)pWe}&4G zz0LF7G(hapj(XXH>9#1y_Xms$l@_#`;EfqN!oSw2%lezeAHvBqMqK25=Hyjns4W`w zs3Q;Na60?OiQ!KZW_QC88_RNJYcpJ$;Sq4xU`EUYhkMh#%c_uzoB0xrIGvwc^>T_P z3Ls0B>?IQg^G^FIAs$WHEphsWf6{QuJTr*?*n+(80KqqIBocFIH{uhC2vT-hR^@pS zQO+DJ>uUF9+*vG0Ua@LbKx&h zD^tilgz!u=Gj;fOdl*#t#AqDM2}`#|s2~}s(-}0~(#5s5vf3)H1E(6i+ z`jcV%$Ti>=W5n@FaLw|p7&yr-AI5$3om6;^6$H-jkm^gbErEBzdnNwXhCEf#@yVd} zyxGaIp)TF<=LrR}$`zFhk=r?_Afn@djcKkZi^jMeRYLJMj-+(8l1i9gaZ$gSvsA!Y z7D#CwU~2N1b2W8iO>g7me^FqX;HQ6WG7H|5sFd@hf9e36KxDtL0&GGAe9%^*ZqskuQPo%X_4J@RW(FC{JpHtWN%_>3NtV>ATS_rVrmLBHaRy6Wo~3|VrmLA zFqaXY1QVBmS_CJ5S=(~kI1+vLSKw`^DhmUES4`DD#4c|xmBh2QW_GvieSj!PVnPub zg7Rhl$^WOmvZ_wH7 zWJ+)tqgj6P>s4x=%$6taEs9cx(kMc+%}H?fZZi7@Qs5ka4RIXu3{K1z@JEU%9JxOU zu0Pxc^mc;Y%SzUwH0LSLFbmyDVh^3G%|=uUjlPI#=MHrSFbbz*clxM8uf{z6^@_I^ zPs5brI6>1ev4@_%yXXE!5owLUF%7LD@5&O1+MHq`4l|bZ2kdojg4J##t45=uLd{yD zrK&ebEs@ZFx>!}_5z>ulq&p;PiMFN4<-(tr)g&UpT~RA{7~V%>^1s=qld0D@rL6Z% z?mTmfD%GHGJKca3r6v3?8nmq?h?Z7xdk|G(Bk{-$aL-m~@U%JR0vd65!!N2T8Zc|4 z79eQ~H^-dB!6!8bB~??a5)~RQBIc!BU~4-~2+p#9s27zvQL{CiRNJOdm3asLpFg67 zTuvy#gzzj7yVCifs2WI*yeXV7K!y#z5ghWw3yz%N;7%glCqj(DZM02haPZJ?#}&f_-eSqiyIy#Yx~t&C5XXXyO$>+H%L zju}pW!kD!NTz(#U7|a9r@%E{ht2Vpa3r3h_T^8TT?pEA>-nuk|(@yd21S3dNo1rO= zC_6B1TdQ1ZEj6lll}S5+wA_jslG18sQG(MX+H*_F_g_S-TJ5$rg^~y!X1#{gdH>&Q zX{63Y{@t8~r2A%bW3w$~BlW4xM{NQD8CqC>9H6qOq)i`DR7JG{XX}9Bm5zQsqX`qQlp?od#?5`4iV*2b6%JPr?|--rgrMA_aoe_R-jrSz^ka zmpq4fNze|t`3CK0Bkc@_os$j?fK=VTzTAjhA43tz9C`c!H3{5o&rWsoSoRgkLSHV5 z#^T#g)K*n1h~c;u1lPsL==yB;p2gHuqIhEfNLfVk=gOusLhwRtjh zKMgb7Rg0&mO0}LF24Kp7FXQf7;67K{EG&Be#n4i8JyMGXQEG+6a>AgjbCw26nK#bD zQH)HDrcq)d;<(9hkSC7J^@g2))nHEMt61GrV%DWOaO~3#3R&Akw~zJb;2BzP)M!W;6zn&!gc5+ArP$#O1EapI85KCYZg& zfVI$T;hK+E-F`h%4(LwEu@nFv%qU^K@&bCcw-Vupkp+O|zOWrwz%dDb2_0CV>c^uq zM3!0*URY}C=x^_>5Ev|V3_*JCy9rLkBqRV85(Ro;Q`>?EN-80t4~{gQz#L#WZXsi6 zCwSsZ9>6g56?~79QXHlpiq%5agC-X`o-9tiH6K1+&nEB!=P?g1uO=Z7MaGigza8l8 zOTf(}q~Xwa-YcLEW-mH_cFk}eaP4T!AYaMNFPb^n!33jbO`?HU+%E}^Q)L3Ttiez4FJ+z-2d)rAWPk8s#En89Eq z>Kd_RP*Se#t^S;FlduU)b#-ANphqr)HZvq0*S>BNG6Rr*ZCHY)Fm(c&d$#(%FM|8* ze!TBeO4W;zg`tu9ayI$?7Czg!G5ghIIvV7`eU_|_Qdyk!RCW_oDlgT%tMPMLAI;6} z&b*SwnDuL0Oc?i5!p=_10vQE%ge%;XaMw)^{*3vw6xyuM>SDESHcB_Q6I11;u1I?& zUBRSbTQF^h)F`M~X3NM43!u4olaWA`s-}O-TD7a5Q>1ES|At~J`ZC(>V!frK?FQ)l zZ1+jO{BWIrw9C!*Yq={+izU}uCHplA&-RzkNf)D=V7TU76nZe6QewLoJl->yJreDC zaI19j@O&7du5#);cD@$X%B_6oaxEqxgYz^A?h5cu*QIo&nm|>JeeIk>|2`VQBAgJ~ z-2NV6(XBlnO!ls8{cmS9c&tQUrF$|{Ys+qi5=@>7c@84n~48n z4eg|Jv;OsK<3P`Q@h}TU-ZO!mw)+$NT}?-Oka4W-8BE4aV$E=1+zG`@Gb>z~9g((c8 zbTrjjlYAn)WUXYET%FHfyH}brgJU4tq{Z?3uYaI3Kn8-kG=aGxf?16b!1)(Z10hir z3Lo+?ii0$=mR-zF{slk(2VkpN0+*^}1RMi2GdGvXWCTNhrCQr=@cE?5?iM zsZ&+`OAtpai0PmCf4M!2gS)d|&Y1c&F#j#L!R7VYB925FTrbZ)dnf71_4-VI#RAC# znIysW_AI=A{NnujUswh2F%hMr$nnPY3V+Cm;g!d;@Q1J8hwS}%@VaWMuH4Z3tjHrS z^qaAI>C1MzEt^#zd|Nhq{gM-aGrXPZw@+?px1pz>y(^5w3n5sPX2C*a>ZPZlE0>ji z$DS&Q?F!|#3d(-Ef=Hv(?)~9u`X!4aX&yyN;yfdNK^H7nzr9&cmntI3cwX4W+Sy_v zlBr-uDcDpf#ngS!?{~XRU9E!0dbkf7^BrU6!<=5`X4Q5#)NS*j!BOZn5yiC5*odi! zimb3wTntW~c_akSjR4_&6+9?Y$%rSyOU0E`?LAwqHytmwUUDXVM-n$RVt_pTt z-3--#N~wiqX(VN07M^QmA(8?+OQ?;j7e1XUCW*LYMlKe`l6|aVc$9IGpVCZ93%#Hj z?Frh`WK>9IpHy9~4nK301nz3>7xvXKJ4FhQ=l&2{k4x+JLmPC}va8CW8tYVf75RU{ zxmA!37=4@o`wVq+*9TC?s_u82@)`QT16rhiAFy`W;qU#h+Yix9@o;>r^A9@{amg&? zU2t6Qy*A<~%i@ExbPe{MnSf`J^d^8)Jk*=YY^Ai%;Tp`Y72Z{D6Y_~7w@$N~DiaSA zZtX#q)DmplRTTwqln@DwUnFcU1g|Rc2+NI1g3q(mIlg#X>78aaa!THtd5{aFl( z1onU|Hz7G&eb=-dq5UF7-iOFQd5u8IGYP7PvKuT?t3B5$AQ*X-JNmkU2U~csc1xMX zWZ;h8HGHUo5gvhRWQEI|fE#*$rLVf+eR$Wk`yI$fy;2cT{Q`19U`rwZZ8rvB5nj1J zTasz8*w5EE2n+*9NS#G)&8@L?n!g-w(Be!h&LB9HLz3BCrf{hT4;jVsQ2u;gL`4yE z5mt?r!K#pRs66o+)Q}+(+R6plOs#1oSj;k~)*?BsR_}Ylyh190GRdTW)iBm%u-A`t z%7;u@A^pc1u->c>mB$lg6PI<5D37J7^$)Kym-@>=`__JUVU2K zk;wutagy#hPrnJT8p1!a!O+!9f)$N3D*pq6;yAn>>33N+WU^Zvupx=sW(mj|g8Q<^ zkCh@(kx9=-1sRSD5?(!Fm2y4cP&nR->`I5LCh9K4nBhE)84mY<;2tjb#N!|vxSuA4 zbJZ}=a3|7!QXw7VYu#w0c$`I~6dHg)HjPFe&Jl%0Av2)4&MoR7yRrjY#_^y^*sy~k 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 diff --git a/doc/bash.ps b/doc/bash.ps index ac18a31e..88891024 100644 --- a/doc/bash.ps +++ b/doc/bash.ps @@ -1,6 +1,6 @@ %!PS-Adobe-3.0 %%Creator: groff version 1.22.4 -%%CreationDate: Fri Apr 8 15:46:03 2022 +%%CreationDate: Mon Jun 13 11:04:34 2022 %%DocumentNeededResources: font Times-Roman %%+ font Times-Bold %%+ font Times-Italic @@ -340,7 +340,7 @@ F .475(xtended deb)-.15 F(ug-)-.2 E (~/.bashr)3.598 E(c)-.37 E F0 1.598(if the)4.408 F(shell is interacti) 144 710.4 Q .3 -.15(ve \()-.25 H(see).15 E F4(INV)2.5 E(OCA)-.405 E (TION)-.855 E F0(belo)2.25 E(w\).)-.25 E(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(1)198.45 E 0 Cg EP +(2022 June 3)150.675 E(1)204.835 E 0 Cg EP %%Page: 2 2 %%BeginPageSetup BP @@ -463,7 +463,7 @@ F2(~/.bashr)108 691.2 Q(c)-.37 E F0 2.535(,i)C 2.535(ft)-2.535 G .035 Q F1(bash)5.306 E F0 2.806(is started non-interacti)5.306 F -.15(ve)-.25 G(ly).15 E 5.306(,t)-.65 G 5.306(or)-5.306 G 2.806 (un a shell script, for e)-5.306 F 2.805(xample, it looks for the v)-.15 -F(ariable)-.25 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(2)198.45 E +F(ariable)-.25 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(2)204.835 E 0 Cg EP %%Page: 3 3 %%BeginPageSetup @@ -527,24 +527,25 @@ F .341(xpand the)-.15 F F1(ENV)2.841 E F0 -.25(va)2.591 G .342 (cuted from the \214le whose name is the e).15 E(xpanded v)-.15 E 2.5 (alue. No)-.25 F(other startup \214les are read.)2.5 E F2(Bash)108 302.4 Q F0 .224(attempts to determine when it is being run with its standard \ -input connected to a netw)2.724 F .223(ork connection,)-.1 F .025 -(as when e)108 314.4 R -.15(xe)-.15 G .025 -(cuted by the remote shell daemon, usually).15 F F4 -.1(rs)2.525 G(hd).1 -E F0 2.525(,o)C 2.525(rt)-2.525 G .025(he secure shell daemon)-2.525 F -F4(sshd)2.525 E F0 5.025(.I)C(f)-5.025 E F2(bash)2.525 E F0(deter)2.525 -E(-)-.2 E .134(mines it is being run in this f)108 326.4 R .134 -(ashion, it reads and e)-.1 F -.15(xe)-.15 G .133(cutes commands from) -.15 F F4(~/.bashr)2.633 E(c)-.37 E F0 2.633(,i)C 2.633(ft)-2.633 G .133 -(hat \214le e)-2.633 F .133(xists and is)-.15 F 2.869(readable. It)108 -338.4 R .369(will not do this if in)2.869 F -.2(vo)-.4 G -.1(ke).2 G -2.869(da).1 G(s)-2.869 E F2(sh)2.869 E F0 5.369(.T)C(he)-5.369 E F2 -2.869 E(c)-.18 E F0 .369 -(option may be used to inhibit this beha)2.869 F(vior)-.2 E 2.869(,a)-.4 -G(nd)-2.869 E(the)108 350.4 Q F22.919 E(c\214le)-.18 E F0 .419 -(option may be used to force another \214le to be read, b)2.919 F .419 -(ut neither)-.2 F F4 -.1(rs)2.919 G(hd).1 E F0(nor)2.919 E F4(sshd)2.919 -E F0 .418(generally in)2.919 F -.2(vo)-.4 G -.1(ke).2 G -(the shell with those options or allo)108 362.4 Q 2.5(wt)-.25 G +input connected to a netw)2.724 F .223(ork connection,)-.1 F .521 +(as when e)108 314.4 R -.15(xe)-.15 G .521 +(cuted by the historical remote shell daemon, usually).15 F F4 -.1(rs) +3.021 G(hd).1 E F0 3.021(,o)C 3.021(rt)-3.021 G .521 +(he secure shell daemon)-3.021 F F4(sshd)3.022 E F0 5.522(.I)C(f)-5.522 +E F2(bash)108 326.4 Q F0 1.523(determines it is being run non-interacti) +4.023 F -.15(ve)-.25 G 1.523(ly in this f).15 F 1.522 +(ashion, it reads and e)-.1 F -.15(xe)-.15 G 1.522(cutes commands from) +.15 F F4(~/.bashr)108 338.4 Q(c)-.37 E F0 2.847(,i)C 2.847(ft)-2.847 G +.347(hat \214le e)-2.847 F .347(xists and is readable.)-.15 F .348 +(It will not do this if in)5.347 F -.2(vo)-.4 G -.1(ke).2 G 2.848(da).1 +G(s)-2.848 E F2(sh)2.848 E F0 5.348(.T)C(he)-5.348 E F22.848 +E(c)-.18 E F0 .348(option may be)2.848 F .61(used to inhibit this beha) +108 350.4 R(vior)-.2 E 3.11(,a)-.4 G .61(nd the)-3.11 F F23.11 E +(c\214le)-.18 E F0 .609 +(option may be used to force another \214le to be read, b)3.11 F .609 +(ut nei-)-.2 F(ther)108 362.4 Q F4 -.1(rs)2.5 G(hd).1 E F0(nor)2.5 E F4 +(sshd)2.5 E F0(generally in)2.5 E -.2(vo)-.4 G .2 -.1(ke t).2 H +(he shell with those options or allo).1 E 2.5(wt)-.25 G (hem to be speci\214ed.)-2.5 E .433(If the shell is started with the ef) 108 379.2 R(fecti)-.25 E .733 -.15(ve u)-.25 H .433 (ser \(group\) id not equal to the real user \(group\) id, and the).15 F @@ -594,7 +595,7 @@ F2(case)3.144 E F0(or)3.144 E F2(select)3.143 E F0 .643(command \(only) 669.6 R F6(SHELL GRAMMAR)72 686.4 Q F0 (This section describes the syntax of the v)108 698.4 Q (arious forms of shell commands.)-.25 E(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(3)198.45 E 0 Cg EP +(2022 June 3)150.675 E(3)204.835 E 0 Cg EP %%Page: 4 4 %%BeginPageSetup BP @@ -671,23 +672,23 @@ E(T)-.855 E F0 -.25(va)2.986 G .736 .243(tal user and system time consumed by the shell and its children.) 108 429.6 R(The)5.243 E F4(TIMEFORMA)2.743 E(T)-.855 E F0 -.25(va)2.493 G .243(riable may be used).25 F -(to specify the format of the time information.)108 441.6 Q .426 -(Each command in a pipeline is e)108 458.4 R -.15(xe)-.15 G .426 -(cuted in a).15 F F2(subshell)2.926 E F0 2.926(,w)C .426 -(hich is a separate process.)-2.926 F(See)5.426 E F4 .426(COMMAND EXE-) -2.926 F .153(CUTION ENVIR)108 470.4 R(ONMENT)-.27 E F0 .153 -(for a description of subshells and a subshell en)2.403 F 2.653 -(vironment. If)-.4 F(the)2.653 E F1(lastpipe)2.653 E F0(option)2.653 E -.648(is enabled using the)108 482.4 R F1(shopt)3.148 E F0 -.2(bu)3.147 G -.647(iltin \(see the description of).2 F F1(shopt)3.147 E F0(belo)3.147 -E .647(w\), the last element of a pipeline may)-.25 F -(be run by the shell process when job control is not acti)108 494.4 Q --.15(ve)-.25 G(.).15 E F1(Lists)87 511.2 Q F0(A)108 523.2 Q F2(list) -2.849 E F0 .349(is a sequence of one or more pipelines separated by one\ - of the operators)2.849 F F1(;)2.85 E F0(,)A F1(&)2.85 E F0(,)A F1(&&) -2.85 E F0 2.85(,o)C(r)-2.85 E F1(||)2.85 E F0 2.85(,a)C .35(nd option-) --2.85 F(ally terminated by one of)108 535.2 Q F1(;)2.5 E F0(,)A F1(&)2.5 -E F0 2.5(,o)C(r)-2.5 E F1()2.5 E F0(.)A .961 +(to specify the format of the time information.)108 441.6 Q .304(Each c\ +ommand in a multi-command pipeline, where pipes are created, is e)108 +458.4 R -.15(xe)-.15 G .303(cuted in a).15 F F2(subshell)2.803 E F0 +2.803(,w)C .303(hich is a)-2.803 F .207(separate process.)108 470.4 R +(See)5.207 E F4 .208(COMMAND EXECUTION ENVIR)2.708 F(ONMENT)-.27 E F0 +.208(for a description of subshells and a sub-)2.458 F .927(shell en)108 +482.4 R 3.427(vironment. If)-.4 F(the)3.427 E F1(lastpipe)3.427 E F0 +.927(option is enabled using the)3.427 F F1(shopt)3.427 E F0 -.2(bu) +3.427 G .927(iltin \(see the description of).2 F F1(shopt)3.426 E F0 +(belo)108 494.4 Q(w\), the last element of a pipeline may be run by the\ + shell process when job control is not acti)-.25 E -.15(ve)-.25 G(.).15 +E F1(Lists)87 511.2 Q F0(A)108 523.2 Q F2(list)2.849 E F0 .349(is a seq\ +uence of one or more pipelines separated by one of the operators)2.849 F +F1(;)2.85 E F0(,)A F1(&)2.85 E F0(,)A F1(&&)2.85 E F0 2.85(,o)C(r)-2.85 +E F1(||)2.85 E F0 2.85(,a)C .35(nd option-)-2.85 F +(ally terminated by one of)108 535.2 Q F1(;)2.5 E F0(,)A F1(&)2.5 E F0 +2.5(,o)C(r)-2.5 E F1()2.5 E F0(.)A .961 (Of these list operators,)108 552 R F1(&&)3.461 E F0(and)3.461 E F1(||) 3.461 E F0(ha)3.461 E 1.261 -.15(ve e)-.2 H .961(qual precedence, follo) .15 F .96(wed by)-.25 F F1(;)3.46 E F0(and)3.46 E F1(&)3.46 E F0 3.46 @@ -717,7 +718,7 @@ or more pipelines separated by the)108 650.4 R F1(&&)2.671 E F0(and) G(cuted if, and only if,).15 E F2(command1)2.7 E F0(returns an e)2.5 E (xit status of zero \(success\).)-.15 E(An OR list has the form)108 712.8 Q F2(command1)144 729.6 Q F1(||)2.5 E F2(command2)2.5 E F0 -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(4)198.45 E 0 Cg EP +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(4)204.835 E 0 Cg EP %%Page: 5 5 %%BeginPageSetup BP @@ -853,7 +854,7 @@ ormal quoting and pattern characters lose their meanings between brack) .583(with inde)144 720 R 3.083(x0)-.15 G .582 (contains the portion of the string matching the entire re)-.001 F .582 (gular e)-.15 F 3.082(xpression. Substrings)-.15 F(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(5)198.45 E 0 Cg EP +(2022 June 3)150.675 E(5)204.835 E 0 Cg EP %%Page: 6 6 %%BeginPageSetup BP @@ -866,260 +867,263 @@ BP /Times-Bold@0 SF -.27(BA)144 96 S(SH_REMA).27 E(TCH)-.855 E F0 1.13 (indices. The element of)3.38 F F1 -.27(BA)3.63 G(SH_REMA).27 E(TCH) -.855 E F0 1.13(with inde)3.38 F(x)-.15 E/F2 10/Times-Italic@0 SF(n)3.63 -E F0 1.13(is the portion of the)3.63 F(string matching the)144 108 Q F2 -(n)2.5 E F0(th parenthesized sube)A(xpression.)-.15 E .785 -(Expressions may be combined using the follo)144 126 R .786 +E F0 1.13(is the portion of the)3.63 F 1.125(string matching the)144 108 +R F2(n)3.625 E F0 1.125(th parenthesized sube)B 3.625(xpression. Bash) +-.15 F(sets)3.626 E F1 -.27(BA)3.626 G(SH_REMA).27 E(TCH)-.855 E F0 +1.126(in the global)3.376 F(scope; declaring it as a local v)144 120 Q +(ariable will lead to une)-.25 E(xpected results.)-.15 E .786 +(Expressions may be combined using the follo)144 138 R .785 (wing operators, listed in decreasing order of prece-)-.25 F(dence:)144 -138 Q/F3 10/Times-Bold@0 SF(\()144 156 Q F2 -.2(ex)2.5 G(pr).2 E(ession) --.37 E F3(\))2.5 E F0 .523(Returns the v)180 168 R .522(alue of)-.25 F +150 Q/F3 10/Times-Bold@0 SF(\()144 168 Q F2 -.2(ex)2.5 G(pr).2 E(ession) +-.37 E F3(\))2.5 E F0 .522(Returns the v)180 180 R .522(alue of)-.25 F F2 -.2(ex)3.022 G(pr).2 E(ession)-.37 E F0 5.522(.T)C .522 (his may be used to o)-5.522 F -.15(ve)-.15 G .522 -(rride the normal precedence of).15 F(operators.)180 180 Q F3(!)144 192 -Q F2 -.2(ex)2.5 G(pr).2 E(ession)-.37 E F0 -.35(Tr)180 204 S(ue if).35 E +(rride the normal precedence of).15 F(operators.)180 192 Q F3(!)144 204 +Q F2 -.2(ex)2.5 G(pr).2 E(ession)-.37 E F0 -.35(Tr)180 216 S(ue if).35 E F2 -.2(ex)2.5 G(pr).2 E(ession)-.37 E F0(is f)2.74 E(alse.)-.1 E F2 -.2 -(ex)144 216 S(pr).2 E(ession1)-.37 E F3(&&)2.5 E F2 -.2(ex)2.5 G(pr).2 E -(ession2)-.37 E F0 -.35(Tr)180 228 S(ue if both).35 E F2 -.2(ex)2.5 G +(ex)144 228 S(pr).2 E(ession1)-.37 E F3(&&)2.5 E F2 -.2(ex)2.5 G(pr).2 E +(ession2)-.37 E F0 -.35(Tr)180 240 S(ue if both).35 E F2 -.2(ex)2.5 G (pr).2 E(ession1)-.37 E F0(and)2.5 E F2 -.2(ex)2.5 G(pr).2 E(ession2) --.37 E F0(are true.)2.52 E F2 -.2(ex)144 240 S(pr).2 E(ession1)-.37 E F3 -(||)2.5 E F2 -.2(ex)2.5 G(pr).2 E(ession2)-.37 E F0 -.35(Tr)180 252 S +-.37 E F0(are true.)2.52 E F2 -.2(ex)144 252 S(pr).2 E(ession1)-.37 E F3 +(||)2.5 E F2 -.2(ex)2.5 G(pr).2 E(ession2)-.37 E F0 -.35(Tr)180 264 S (ue if either).35 E F2 -.2(ex)2.5 G(pr).2 E(ession1)-.37 E F0(or)2.5 E -F2 -.2(ex)2.5 G(pr).2 E(ession2)-.37 E F0(is true.)2.52 E(The)144 268.8 -Q F3(&&)2.675 E F0(and)2.675 E F3(||)2.675 E F0 .175(operators do not e) -2.675 F -.25(va)-.25 G(luate).25 E F2 -.2(ex)2.675 G(pr).2 E(ession2) --.37 E F0 .175(if the v)2.675 F .175(alue of)-.25 F F2 -.2(ex)2.676 G -(pr).2 E(ession1)-.37 E F0 .176(is suf)2.676 F .176(\214cient to de-) --.25 F(termine the return v)144 280.8 Q +F2 -.2(ex)2.5 G(pr).2 E(ession2)-.37 E F0(is true.)2.52 E(The)144 280.8 +Q F3(&&)2.676 E F0(and)2.676 E F3(||)2.676 E F0 .175(operators do not e) +2.676 F -.25(va)-.25 G(luate).25 E F2 -.2(ex)2.675 G(pr).2 E(ession2) +-.37 E F0 .175(if the v)2.675 F .175(alue of)-.25 F F2 -.2(ex)2.675 G +(pr).2 E(ession1)-.37 E F0 .175(is suf)2.675 F .175(\214cient to de-) +-.25 F(termine the return v)144 292.8 Q (alue of the entire conditional e)-.25 E(xpression.)-.15 E F3 -.25(fo) -108 297.6 S(r).25 E F2(name)2.5 E F0 2.5([[)2.5 G F3(in)A F0([)2.5 E F2 +108 309.6 S(r).25 E F2(name)2.5 E F0 2.5([[)2.5 G F3(in)A F0([)2.5 E F2 (wor)2.5 E 2.5(d.)-.37 G(..)-2.5 E F0 2.5(]];])2.5 G F3(do)A F2(list)2.5 -E F0(;)2.5 E F3(done)2.5 E F0 .424(The list of w)144 309.6 R .424 -(ords follo)-.1 F(wing)-.25 E F3(in)2.924 E F0 .423(is e)2.924 F .423 -(xpanded, generating a list of items.)-.15 F .423(The v)5.423 F(ariable) --.25 E F2(name)2.923 E F0 .423(is set to)2.923 F .653 -(each element of this list in turn, and)144 321.6 R F2(list)3.153 E F0 +E F0(;)2.5 E F3(done)2.5 E F0 .423(The list of w)144 321.6 R .423 +(ords follo)-.1 F(wing)-.25 E F3(in)2.923 E F0 .423(is e)2.923 F .423 +(xpanded, generating a list of items.)-.15 F .424(The v)5.424 F(ariable) +-.25 E F2(name)2.924 E F0 .424(is set to)2.924 F .653 +(each element of this list in turn, and)144 333.6 R F2(list)3.153 E F0 .653(is e)3.153 F -.15(xe)-.15 G .653(cuted each time.).15 F .653 (If the)5.653 F F3(in)3.153 E F2(wor)3.153 E(d)-.37 E F0 .653 -(is omitted, the)3.153 F F3 -.25(fo)3.153 G(r).25 E F0 .649(command e) -144 333.6 R -.15(xe)-.15 G(cutes).15 E F2(list)3.149 E F0 .648 +(is omitted, the)3.153 F F3 -.25(fo)3.153 G(r).25 E F0 .648(command e) +144 345.6 R -.15(xe)-.15 G(cutes).15 E F2(list)3.148 E F0 .648 (once for each positional parameter that is set \(see)3.148 F F1 -.666 -(PA)3.148 G(RAMETERS).666 E F0(belo)2.898 E(w\).)-.25 E .153 -(The return status is the e)144 345.6 R .153 -(xit status of the last command that e)-.15 F -.15(xe)-.15 G 2.654 -(cutes. If).15 F .154(the e)2.654 F .154(xpansion of the items)-.15 F -(follo)144 357.6 Q(wing)-.25 E F3(in)2.5 E F0 +(PA)3.149 G(RAMETERS).666 E F0(belo)2.899 E(w\).)-.25 E .154 +(The return status is the e)144 357.6 R .153 +(xit status of the last command that e)-.15 F -.15(xe)-.15 G 2.653 +(cutes. If).15 F .153(the e)2.653 F .153(xpansion of the items)-.15 F +(follo)144 369.6 Q(wing)-.25 E F3(in)2.5 E F0 (results in an empty list, no commands are e)2.5 E -.15(xe)-.15 G -(cuted, and the return status is 0.).15 E F3 -.25(fo)108 374.4 S(r).25 E +(cuted, and the return status is 0.).15 E F3 -.25(fo)108 386.4 S(r).25 E F0(\(\()2.5 E F2 -.2(ex)2.5 G(pr1).2 E F0(;)2.5 E F2 -.2(ex)2.5 G(pr2).2 E F0(;)2.5 E F2 -.2(ex)2.5 G(pr3).2 E F0(\)\) ;)2.5 E F3(do)2.5 E F2 -(list)2.5 E F0(;)2.5 E F3(done)2.5 E F0 1.236(First, the arithmetic e) -144 386.4 R(xpression)-.15 E F2 -.2(ex)3.736 G(pr1).2 E F0 1.235(is e) -3.736 F -.25(va)-.25 G 1.235 -(luated according to the rules described belo).25 F 3.735(wu)-.25 G -(nder)-3.735 E F1 .561(ARITHMETIC EV)144 398.4 R(ALU)-1.215 E -.855(AT) --.54 G(ION).855 E/F4 9/Times-Roman@0 SF(.)A F0 .561(The arithmetic e) -5.061 F(xpression)-.15 E F2 -.2(ex)3.061 G(pr2).2 E F0 .562(is then e) -3.062 F -.25(va)-.25 G .562(luated repeatedly until).25 F .592(it e)144 -410.4 R -.25(va)-.25 G .592(luates to zero.).25 F .592(Each time)5.592 F +(list)2.5 E F0(;)2.5 E F3(done)2.5 E F0 1.235(First, the arithmetic e) +144 398.4 R(xpression)-.15 E F2 -.2(ex)3.735 G(pr1).2 E F0 1.235(is e) +3.735 F -.25(va)-.25 G 1.236 +(luated according to the rules described belo).25 F 3.736(wu)-.25 G +(nder)-3.736 E F1 .562(ARITHMETIC EV)144 410.4 R(ALU)-1.215 E -.855(AT) +-.54 G(ION).855 E/F4 9/Times-Roman@0 SF(.)A F0 .562(The arithmetic e) +5.062 F(xpression)-.15 E F2 -.2(ex)3.062 G(pr2).2 E F0 .561(is then e) +3.061 F -.25(va)-.25 G .561(luated repeatedly until).25 F .591(it e)144 +422.4 R -.25(va)-.25 G .591(luates to zero.).25 F .592(Each time)5.591 F F2 -.2(ex)3.092 G(pr2).2 E F0 -.25(eva)3.092 G .592 -(luates to a non-zero v).25 F(alue,)-.25 E F2(list)3.092 E F0 .591(is e) -3.092 F -.15(xe)-.15 G .591(cuted and the arith-).15 F .228(metic e)144 -422.4 R(xpression)-.15 E F2 -.2(ex)2.728 G(pr3).2 E F0 .229(is e)2.728 F +(luates to a non-zero v).25 F(alue,)-.25 E F2(list)3.092 E F0 .592(is e) +3.092 F -.15(xe)-.15 G .592(cuted and the arith-).15 F .229(metic e)144 +434.4 R(xpression)-.15 E F2 -.2(ex)2.729 G(pr3).2 E F0 .229(is e)2.729 F -.25(va)-.25 G 2.729(luated. If).25 F(an)2.729 E 2.729(ye)-.15 G .229 (xpression is omitted, it beha)-2.879 F -.15(ve)-.2 G 2.729(sa).15 G -2.729(si)-2.729 G 2.729(fi)-2.729 G 2.729(te)-2.729 G -.25(va)-2.979 G -.229(luates to 1.).25 F .228(The return v)144 434.4 R .228 -(alue is the e)-.25 F .228(xit status of the last command in)-.15 F F2 -(list)2.728 E F0 .227(that is e)2.728 F -.15(xe)-.15 G .227(cuted, or f) -.15 F .227(alse if an)-.1 F 2.727(yo)-.15 G 2.727(ft)-2.727 G(he)-2.727 -E -.15(ex)144 446.4 S(pressions is in).15 E -.25(va)-.4 G(lid.).25 E F3 -(select)108 463.2 Q F2(name)2.5 E F0([)2.5 E F3(in)2.5 E F2(wor)2.5 E(d) +2.729(si)-2.729 G 2.729(fi)-2.729 G 2.728(te)-2.729 G -.25(va)-2.978 G +.228(luates to 1.).25 F .227(The return v)144 446.4 R .227 +(alue is the e)-.25 F .227(xit status of the last command in)-.15 F F2 +(list)2.728 E F0 .228(that is e)2.728 F -.15(xe)-.15 G .228(cuted, or f) +.15 F .228(alse if an)-.1 F 2.728(yo)-.15 G 2.728(ft)-2.728 G(he)-2.728 +E -.15(ex)144 458.4 S(pressions is in).15 E -.25(va)-.4 G(lid.).25 E F3 +(select)108 475.2 Q F2(name)2.5 E F0([)2.5 E F3(in)2.5 E F2(wor)2.5 E(d) -.37 E F0 2.5(];)2.5 G F3(do)A F2(list)2.5 E F0(;)2.5 E F3(done)2.5 E F0 -.432(The list of w)144 475.2 R .432(ords follo)-.1 F(wing)-.25 E F3(in) -2.932 E F0 .432(is e)2.932 F .432(xpanded, generating a list of items.) --.15 F .433(The set of e)5.433 F .433(xpanded w)-.15 F(ords)-.1 E .843 -(is printed on the standard error)144 487.2 R 3.342(,e)-.4 G .842 +.433(The list of w)144 487.2 R .433(ords follo)-.1 F(wing)-.25 E F3(in) +2.933 E F0 .432(is e)2.933 F .432(xpanded, generating a list of items.) +-.15 F .432(The set of e)5.432 F .432(xpanded w)-.15 F(ords)-.1 E .842 +(is printed on the standard error)144 499.2 R 3.342(,e)-.4 G .842 (ach preceded by a number)-3.342 F 5.842(.I)-.55 G 3.342(ft)-5.842 G(he) --3.342 E F3(in)3.342 E F2(wor)3.342 E(d)-.37 E F0 .842 -(is omitted, the posi-)3.342 F .201(tional parameters are printed \(see) -144 499.2 R F1 -.666(PA)2.701 G(RAMETERS).666 E F0(belo)2.451 E 2.701 +-3.342 E F3(in)3.342 E F2(wor)3.342 E(d)-.37 E F0 .843 +(is omitted, the posi-)3.343 F .201(tional parameters are printed \(see) +144 511.2 R F1 -.666(PA)2.701 G(RAMETERS).666 E F0(belo)2.451 E 2.701 (w\). The)-.25 F F1(PS3)2.701 E F0 .201(prompt is then displayed and a) -2.451 F .214(line read from the standard input.)144 511.2 R .213 -(If the line consists of a number corresponding to one of the dis-)5.214 -F 1.537(played w)144 523.2 R 1.537(ords, then the v)-.1 F 1.537(alue of) --.25 F F2(name)4.397 E F0 1.537(is set to that w)4.217 F 4.037(ord. If) --.1 F 1.538(the line is empty)4.038 F 4.038(,t)-.65 G 1.538(he w)-4.038 -F 1.538(ords and)-.1 F .066(prompt are displayed ag)144 535.2 R 2.566 -(ain. If)-.05 F .065(EOF is read, the command completes.)2.566 F(An) -5.065 E 2.565(yo)-.15 G .065(ther v)-2.565 F .065(alue read causes)-.25 -F F2(name)144.36 547.2 Q F0 .953(to be set to null.)3.633 F .953 -(The line read is sa)5.953 F -.15(ve)-.2 G 3.454(di).15 G 3.454(nt) --3.454 G .954(he v)-3.454 F(ariable)-.25 E F1(REPL)3.454 E(Y)-.828 E F4 -(.)A F0(The)5.454 E F2(list)3.544 E F0 .954(is e)4.134 F -.15(xe)-.15 G -.954(cuted after).15 F .072(each selection until a)144 559.2 R F3(br) +2.451 F .213(line read from the standard input.)144 523.2 R .213 +(If the line consists of a number corresponding to one of the dis-)5.213 +F 1.538(played w)144 535.2 R 1.538(ords, then the v)-.1 F 1.538(alue of) +-.25 F F2(name)4.398 E F0 1.537(is set to that w)4.218 F 4.037(ord. If) +-.1 F 1.537(the line is empty)4.037 F 4.037(,t)-.65 G 1.537(he w)-4.037 +F 1.537(ords and)-.1 F .065(prompt are displayed ag)144 547.2 R 2.565 +(ain. If)-.05 F .065(EOF is read, the command completes.)2.565 F(An) +5.066 E 2.566(yo)-.15 G .066(ther v)-2.566 F .066(alue read causes)-.25 +F F2(name)144.36 559.2 Q F0 .954(to be set to null.)3.634 F .954 +(The line read is sa)5.954 F -.15(ve)-.2 G 3.453(di).15 G 3.453(nt) +-3.453 G .953(he v)-3.453 F(ariable)-.25 E F1(REPL)3.453 E(Y)-.828 E F4 +(.)A F0(The)5.453 E F2(list)3.543 E F0 .953(is e)4.133 F -.15(xe)-.15 G +.953(cuted after).15 F .071(each selection until a)144 571.2 R F3(br) 2.571 E(eak)-.18 E F0 .071(command is e)2.571 F -.15(xe)-.15 G 2.571 (cuted. The).15 F -.15(ex)2.571 G .071(it status of).15 F F3(select) -2.571 E F0 .071(is the e)2.571 F .071(xit status of the)-.15 F -(last command e)144 571.2 Q -.15(xe)-.15 G(cuted in).15 E F2(list)2.59 E +2.571 E F0 .071(is the e)2.571 F .072(xit status of the)-.15 F +(last command e)144 583.2 Q -.15(xe)-.15 G(cuted in).15 E F2(list)2.59 E F0 2.5(,o).68 G 2.5(rz)-2.5 G(ero if no commands were e)-2.5 E -.15(xe) --.15 G(cuted.).15 E F3(case)108 588 Q F2(wor)2.5 E(d)-.37 E F3(in)2.5 E +-.15 G(cuted.).15 E F3(case)108 600 Q F2(wor)2.5 E(d)-.37 E F3(in)2.5 E F0 2.5([[)2.5 G(\(])-2.5 E F2(pattern)2.5 E F0([)2.5 E F3(|)2.5 E F2 (pattern)2.5 E F0 2.5(].)2.5 G(.. \))-2.5 E F2(list)2.5 E F0(;; ] ...) -2.5 E F3(esac)2.5 E F0(A)144 600 Q F3(case)3.264 E F0 .764 -(command \214rst e)3.264 F(xpands)-.15 E F2(wor)3.264 E(d)-.37 E F0 +2.5 E F3(esac)2.5 E F0(A)144 612 Q F3(case)3.265 E F0 .764 +(command \214rst e)3.265 F(xpands)-.15 E F2(wor)3.264 E(d)-.37 E F0 3.264(,a)C .764(nd tries to match it ag)-3.264 F .764(ainst each)-.05 F -F2(pattern)3.264 E F0 .765(in turn, using the)3.264 F .884 -(matching rules described under)144 612 R F3 -.1(Pa)3.384 G(tter).1 E +F2(pattern)3.264 E F0 .764(in turn, using the)3.264 F .883 +(matching rules described under)144 624 R F3 -.1(Pa)3.384 G(tter).1 E 3.384(nM)-.15 G(atching)-3.384 E F0(belo)3.384 E 4.684 -.65(w. T)-.25 H -(he).65 E F2(wor)3.384 E(d)-.37 E F0 .884(is e)3.384 F .883 +(he).65 E F2(wor)3.384 E(d)-.37 E F0 .884(is e)3.384 F .884 (xpanded using tilde e)-.15 F(x-)-.15 E .95(pansion, parameter and v)144 -624 R .95(ariable e)-.25 F .95(xpansion, arithmetic e)-.15 F .95 -(xpansion, command substitution, process)-.15 F .181 -(substitution and quote remo)144 636 R -.25(va)-.15 G 2.681(l. Each).25 +636 R .95(ariable e)-.25 F .95(xpansion, arithmetic e)-.15 F .95 +(xpansion, command substitution, process)-.15 F .18 +(substitution and quote remo)144 648 R -.25(va)-.15 G 2.681(l. Each).25 F F2(pattern)2.681 E F0 -.15(ex)2.681 G .181(amined is e).15 F .181 -(xpanded using tilde e)-.15 F .18(xpansion, param-)-.15 F .103 -(eter and v)144 648 R .103(ariable e)-.25 F .103(xpansion, arithmetic e) +(xpanded using tilde e)-.15 F .181(xpansion, param-)-.15 F .103 +(eter and v)144 660 R .103(ariable e)-.25 F .103(xpansion, arithmetic e) -.15 F .103(xpansion, command substitution, process substitution, and) --.15 F .139(quote remo)144 660 R -.25(va)-.15 G 2.639(l. If).25 F(the) -2.639 E F3(nocasematch)2.639 E F0 .138 -(shell option is enabled, the match is performed without re)2.639 F -.05 -(ga)-.15 G(rd).05 E .208(to the case of alphabetic characters.)144 672 R -.209(When a match is found, the corresponding)5.209 F F2(list)2.709 E F0 -.209(is e)2.709 F -.15(xe)-.15 G 2.709(cuted. If).15 F(the)144 684 Q F3 -(;;)3.35 E F0 .849(operator is used, no subsequent matches are attempte\ -d after the \214rst pattern match.)3.35 F(Using)5.849 E F3(;&)144 696 Q -F0 .253(in place of)2.753 F F3(;;)2.754 E F0 .254(causes e)2.754 F -.15 +-.15 F .138(quote remo)144 672 R -.25(va)-.15 G 2.638(l. If).25 F(the) +2.638 E F3(nocasematch)2.638 E F0 .139 +(shell option is enabled, the match is performed without re)2.638 F -.05 +(ga)-.15 G(rd).05 E .209(to the case of alphabetic characters.)144 684 R +.209(When a match is found, the corresponding)5.209 F F2(list)2.708 E F0 +.208(is e)2.708 F -.15(xe)-.15 G 2.708(cuted. If).15 F(the)144 696 Q F3 +(;;)3.349 E F0 .849(operator is used, no subsequent matches are attempt\ +ed after the \214rst pattern match.)3.349 F(Using)5.85 E F3(;&)144 708 Q +F0 .254(in place of)2.754 F F3(;;)2.754 E F0 .254(causes e)2.754 F -.15 (xe)-.15 G .254(cution to continue with the).15 F F2(list)2.754 E F0 -.254(associated with the ne)2.754 F .254(xt set of patterns.)-.15 F -(Using)144 708 Q F3(;;&)2.617 E F0 .117(in place of)2.617 F F3(;;)2.616 -E F0 .116(causes the shell to test the ne)2.616 F .116 -(xt pattern list in the statement, if an)-.15 F 1.416 -.65(y, a)-.15 H -.116(nd e).65 F(x-)-.15 E .768(ecute an)144 720 R 3.268(ya)-.15 G -(ssociated)-3.268 E F2(list)3.268 E F0 .768 -(on a successful match, continuing the case statement e)3.268 F -.15(xe) --.15 G .768(cution as if the).15 F(GNU Bash 5.2)72 768 Q(2022 March 11) -144.29 E(6)198.45 E 0 Cg EP +.254(associated with the ne)2.754 F .253(xt set of patterns.)-.15 F +(Using)144 720 Q F3(;;&)3.378 E F0 .878(in place of)3.378 F F3(;;)3.378 +E F0 .878(causes the shell to test the ne)3.378 F .878 +(xt pattern list in the statement, if an)-.15 F 2.178 -.65(y, a)-.15 H +(nd).65 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(6)204.835 E 0 Cg +EP %%Page: 7 7 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .183 -(pattern list had not matched.)144 84 R .183(The e)5.183 F .183 -(xit status is zero if no pattern matches.)-.15 F .182 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.15(exe)144 84 S +.159(cute an).15 F 2.659(ya)-.15 G(ssociated)-2.659 E/F1 10 +/Times-Italic@0 SF(list)2.659 E F0 .159 +(on a successful match, continuing the case statement e)2.659 F -.15(xe) +-.15 G .158(cution as if the).15 F .182(pattern list had not matched.) +144 96 R .183(The e)5.183 F .183 +(xit status is zero if no pattern matches.)-.15 F .183 (Otherwise, it is the e)5.183 F(xit)-.15 E(status of the last command e) -144 96 Q -.15(xe)-.15 G(cuted in).15 E/F1 10/Times-Italic@0 SF(list)2.5 -E F0(.)A/F2 10/Times-Bold@0 SF(if)108 112.8 Q F1(list)2.5 E F0(;)A F2 -(then)2.5 E F1(list)2.5 E F0 2.5(;[)C F2(elif)A F1(list)2.5 E F0(;)A F2 -(then)2.5 E F1(list)2.5 E F0 2.5(;].)C(.. [)-2.5 E F2(else)2.5 E F1 -(list)2.5 E F0 2.5(;])C F2<8c>A F0(The)144 124.8 Q F2(if)2.977 E F1 -(list)3.067 E F0 .478(is e)3.658 F -.15(xe)-.15 G 2.978(cuted. If).15 F -.478(its e)2.978 F .478(xit status is zero, the)-.15 F F2(then)2.978 E -F1(list)2.978 E F0 .478(is e)2.978 F -.15(xe)-.15 G 2.978 -(cuted. Otherwise,).15 F(each)2.978 E F2(elif)2.978 E F1(list)2.978 E F0 -1.088(is e)144 136.8 R -.15(xe)-.15 G 1.088(cuted in turn, and if its e) -.15 F 1.087(xit status is zero, the corresponding)-.15 F F2(then)3.587 E -F1(list)3.587 E F0 1.087(is e)3.587 F -.15(xe)-.15 G 1.087 -(cuted and the).15 F .103(command completes.)144 148.8 R .103 -(Otherwise, the)5.103 F F2(else)2.603 E F1(list)2.603 E F0 .103(is e) -2.603 F -.15(xe)-.15 G .103(cuted, if present.).15 F .103(The e)5.103 F -.103(xit status is the e)-.15 F .104(xit sta-)-.15 F -(tus of the last command e)144 160.8 Q -.15(xe)-.15 G -(cuted, or zero if no condition tested true.).15 E F2(while)108 177.6 Q -F1(list-1)2.5 E F0(;)A F2(do)2.5 E F1(list-2)2.5 E F0(;)A F2(done)2.5 E -(until)108 189.6 Q F1(list-1)2.5 E F0(;)A F2(do)2.5 E F1(list-2)2.5 E F0 -(;)A F2(done)2.5 E F0(The)144 201.6 Q F2(while)3.45 E F0 .95 -(command continuously e)3.45 F -.15(xe)-.15 G .95(cutes the list).15 F -F1(list-2)3.45 E F0 .95(as long as the last command in the list)3.45 F -F1(list-1)144 213.6 Q F0 .205(returns an e)2.705 F .205 +144 108 Q -.15(xe)-.15 G(cuted in).15 E F1(list)2.5 E F0(.)A/F2 10 +/Times-Bold@0 SF(if)108 124.8 Q F1(list)2.5 E F0(;)A F2(then)2.5 E F1 +(list)2.5 E F0 2.5(;[)C F2(elif)A F1(list)2.5 E F0(;)A F2(then)2.5 E F1 +(list)2.5 E F0 2.5(;].)C(.. [)-2.5 E F2(else)2.5 E F1(list)2.5 E F0 2.5 +(;])C F2<8c>A F0(The)144 136.8 Q F2(if)2.978 E F1(list)3.068 E F0 .478 +(is e)3.658 F -.15(xe)-.15 G 2.978(cuted. If).15 F .478(its e)2.978 F +.478(xit status is zero, the)-.15 F F2(then)2.978 E F1(list)2.978 E F0 +.478(is e)2.978 F -.15(xe)-.15 G 2.978(cuted. Otherwise,).15 F(each) +2.978 E F2(elif)2.977 E F1(list)2.977 E F0 1.087(is e)144 148.8 R -.15 +(xe)-.15 G 1.087(cuted in turn, and if its e).15 F 1.087 +(xit status is zero, the corresponding)-.15 F F2(then)3.587 E F1(list) +3.587 E F0 1.088(is e)3.588 F -.15(xe)-.15 G 1.088(cuted and the).15 F +.104(command completes.)144 160.8 R .103(Otherwise, the)5.104 F F2(else) +2.603 E F1(list)2.603 E F0 .103(is e)2.603 F -.15(xe)-.15 G .103 +(cuted, if present.).15 F .103(The e)5.103 F .103(xit status is the e) +-.15 F .103(xit sta-)-.15 F(tus of the last command e)144 172.8 Q -.15 +(xe)-.15 G(cuted, or zero if no condition tested true.).15 E F2(while) +108 189.6 Q F1(list-1)2.5 E F0(;)A F2(do)2.5 E F1(list-2)2.5 E F0(;)A F2 +(done)2.5 E(until)108 201.6 Q F1(list-1)2.5 E F0(;)A F2(do)2.5 E F1 +(list-2)2.5 E F0(;)A F2(done)2.5 E F0(The)144 213.6 Q F2(while)3.45 E F0 +.95(command continuously e)3.45 F -.15(xe)-.15 G .95(cutes the list).15 +F F1(list-2)3.45 E F0 .95(as long as the last command in the list)3.45 F +F1(list-1)144 225.6 Q F0 .205(returns an e)2.705 F .205 (xit status of zero.)-.15 F(The)5.205 E F2(until)2.705 E F0 .205 (command is identical to the)2.705 F F2(while)2.705 E F0 .205 -(command, e)2.705 F(xcept)-.15 E .6(that the test is ne)144 225.6 R -.05 -(ga)-.15 G(ted:).05 E F1(list-2)3.19 E F0 .6(is e)3.12 F -.15(xe)-.15 G -.599(cuted as long as the last command in).15 F F1(list-1)3.189 E F0 -.599(returns a non-zero)3.099 F -.15(ex)144 237.6 S .204(it status.).15 -F .204(The e)5.204 F .204(xit status of the)-.15 F F2(while)2.704 E F0 -(and)2.704 E F2(until)2.704 E F0 .205(commands is the e)2.704 F .205 -(xit status of the last command)-.15 F -.15(exe)144 249.6 S(cuted in).15 +(command, e)2.705 F(xcept)-.15 E .599(that the test is ne)144 237.6 R +-.05(ga)-.15 G(ted:).05 E F1(list-2)3.189 E F0 .599(is e)3.119 F -.15 +(xe)-.15 G .6(cuted as long as the last command in).15 F F1(list-1)3.19 +E F0 .6(returns a non-zero)3.1 F -.15(ex)144 249.6 S .205(it status.).15 +F .205(The e)5.205 F .205(xit status of the)-.15 F F2(while)2.705 E F0 +(and)2.705 E F2(until)2.704 E F0 .204(commands is the e)2.704 F .204 +(xit status of the last command)-.15 F -.15(exe)144 261.6 S(cuted in).15 E F1(list-2)2.5 E F0 2.5(,o)C 2.5(rz)-2.5 G(ero if none w)-2.5 E(as e) --.1 E -.15(xe)-.15 G(cuted.).15 E F2(Copr)87 266.4 Q(ocesses)-.18 E F0 -(A)108 278.4 Q F1(copr)3.713 E(ocess)-.45 E F0 1.213 -(is a shell command preceded by the)3.713 F F2(copr)3.712 E(oc)-.18 E F0 -(reserv)3.712 E 1.212(ed w)-.15 F 3.712(ord. A)-.1 F 1.212 -(coprocess is e)3.712 F -.15(xe)-.15 G 1.212(cuted asyn-).15 F .574(chr\ +-.1 E -.15(xe)-.15 G(cuted.).15 E F2(Copr)87 278.4 Q(ocesses)-.18 E F0 +(A)108 290.4 Q F1(copr)3.712 E(ocess)-.45 E F0 1.212 +(is a shell command preceded by the)3.712 F F2(copr)3.713 E(oc)-.18 E F0 +(reserv)3.713 E 1.213(ed w)-.15 F 3.713(ord. A)-.1 F 1.213 +(coprocess is e)3.713 F -.15(xe)-.15 G 1.213(cuted asyn-).15 F .575(chr\ onously in a subshell, as if the command had been terminated with the) -108 290.4 R F2(&)3.075 E F0 .575(control operator)3.075 F 3.075(,w)-.4 G -.575(ith a tw)-3.075 F(o-)-.1 E -.1(wa)108 302.4 S 2.5(yp).1 G +108 302.4 R F2(&)3.074 E F0 .574(control operator)3.074 F 3.074(,w)-.4 G +.574(ith a tw)-3.074 F(o-)-.1 E -.1(wa)108 314.4 S 2.5(yp).1 G (ipe established between the e)-2.5 E -.15(xe)-.15 G (cuting shell and the coprocess.).15 E(The syntax for a coprocess is:) -108 319.2 Q F2(copr)144 336 Q(oc)-.18 E F0([)2.5 E F1 -.27(NA)C(ME).27 E +108 331.2 Q F2(copr)144 348 Q(oc)-.18 E F0([)2.5 E F1 -.27(NA)C(ME).27 E F0(])A F1(command)2.5 E F0([)2.5 E F1 -.37(re)C(dir).37 E(ections)-.37 E -F0(])A .599(This creates a coprocess named)108 352.8 R F1 -.27(NA)3.099 +F0(])A .598(This creates a coprocess named)108 364.8 R F1 -.27(NA)3.099 G(ME).27 E F0(.)A F1(command)5.599 E F0 .599 (may be either a simple command or a compound com-)3.099 F 1.4 -(mand \(see abo)108 364.8 R -.15(ve)-.15 G(\).).15 E F1 -.27(NA)6.4 G +(mand \(see abo)108 376.8 R -.15(ve)-.15 G(\).).15 E F1 -.27(NA)6.4 G (ME).27 E F0 1.4(is a shell v)3.9 F 1.4(ariable name.)-.25 F(If)6.4 E F1 -.27(NA)3.9 G(ME).27 E F0 1.4(is not supplied, the def)3.9 F 1.4 -(ault name is)-.1 F F2(CO-)3.9 E(PR)108 376.8 Q(OC)-.3 E F0(.)A -(The recommended form to use for a coprocess is)108 393.6 Q F2(copr)144 -410.4 Q(oc)-.18 E F1 -.27(NA)2.5 G(ME).27 E F0({)2.5 E F1(command)2.5 E +(ault name is)-.1 F F2(CO-)3.9 E(PR)108 388.8 Q(OC)-.3 E F0(.)A +(The recommended form to use for a coprocess is)108 405.6 Q F2(copr)144 +422.4 Q(oc)-.18 E F1 -.27(NA)2.5 G(ME).27 E F0({)2.5 E F1(command)2.5 E F0([)2.5 E F1 -.37(re)C(dir).37 E(ections)-.37 E F0(]; })A 1.313(This f\ orm is recommended because simple commands result in the coprocess al) -108 427.2 R -.1(wa)-.1 G 1.313(ys being named).1 F F2(CO-)3.812 E(PR)108 -439.2 Q(OC)-.3 E F0 2.5(,a)C(nd it is simpler to use and more complete \ -than the other compound commands.)-2.5 E(If)108 456 Q F1(command)3.061 E -F0 .561(is a compound command,)3.061 F F1 -.27(NA)3.061 G(ME).27 E F0 -.562(is optional. The w)3.061 F .562(ord follo)-.1 F(wing)-.25 E F2 -(copr)3.062 E(oc)-.18 E F0 .562(determines whether)3.062 F .339(that w) -108 468 R .339(ord is interpreted as a v)-.1 F .339 +108 439.2 R -.1(wa)-.1 G 1.313(ys being named).1 F F2(CO-)3.813 E(PR)108 +451.2 Q(OC)-.3 E F0 2.5(,a)C(nd it is simpler to use and more complete \ +than the other compound commands.)-2.5 E(If)108 468 Q F1(command)3.062 E +F0 .562(is a compound command,)3.062 F F1 -.27(NA)3.062 G(ME).27 E F0 +.561(is optional. The w)3.061 F .561(ord follo)-.1 F(wing)-.25 E F2 +(copr)3.061 E(oc)-.18 E F0 .561(determines whether)3.061 F .338(that w) +108 480 R .338(ord is interpreted as a v)-.1 F .338 (ariable name: it is interpreted as)-.25 F F1 -.27(NA)2.839 G(ME).27 E -F0 .338(if it is not a reserv)2.838 F .338(ed w)-.15 F .338 -(ord that intro-)-.1 F 1.121(duces a compound command.)108 480 R(If) +F0 .339(if it is not a reserv)2.839 F .339(ed w)-.15 F .339 +(ord that intro-)-.1 F 1.122(duces a compound command.)108 492 R(If) 6.121 E F1(command)3.621 E F0 1.121(is a simple command,)3.621 F F1 -.27 -(NA)3.621 G(ME).27 E F0 1.121(is not allo)3.621 F 1.122 -(wed; this is to a)-.25 F -.2(vo)-.2 G(id).2 E(confusion between)108 492 +(NA)3.621 G(ME).27 E F0 1.121(is not allo)3.621 F 1.121 +(wed; this is to a)-.25 F -.2(vo)-.2 G(id).2 E(confusion between)108 504 Q F1 -.27(NA)2.5 G(ME).27 E F0(and the \214rst w)2.5 E -(ord of the simple command.)-.1 E .09(When the coprocess is e)108 508.8 +(ord of the simple command.)-.1 E .09(When the coprocess is e)108 520.8 R -.15(xe)-.15 G .09(cuted, the shell creates an array v).15 F .09 (ariable \(see)-.25 F F2(Arrays)2.59 E F0(belo)2.59 E .09(w\) named)-.25 -F F1 -.27(NA)2.59 G(ME).27 E F0 .09(in the)2.59 F(conte)108 520.8 Q .302 -(xt of the e)-.15 F -.15(xe)-.15 G .302(cuting shell.).15 F .302 +F F1 -.27(NA)2.59 G(ME).27 E F0 .09(in the)2.59 F(conte)108 532.8 Q .303 +(xt of the e)-.15 F -.15(xe)-.15 G .303(cuting shell.).15 F .302 (The standard output of)5.302 F F1(command)3.002 E F0 .302 -(is connected via a pipe to a \214le descriptor)3.572 F .588(in the e) -108 532.8 R -.15(xe)-.15 G .587 +(is connected via a pipe to a \214le descriptor)3.572 F .587(in the e) +108 544.8 R -.15(xe)-.15 G .587 (cuting shell, and that \214le descriptor is assigned to).15 F F1 -.27 (NA)3.087 G(ME).27 E F0 3.087([0]. The)B .587(standard input of)3.087 F -F1(command)3.287 E F0(is)3.857 E 2.029 -(connected via a pipe to a \214le descriptor in the e)108 544.8 R -.15 +F1(command)3.287 E F0(is)3.858 E 2.029 +(connected via a pipe to a \214le descriptor in the e)108 556.8 R -.15 (xe)-.15 G 2.029 (cuting shell, and that \214le descriptor is assigned to).15 F F1 -.27 -(NA)108 556.8 S(ME).27 E F0 2.879([1]. This)B .379 +(NA)108 568.8 S(ME).27 E F0 2.879([1]. This)B .379 (pipe is established before an)2.879 F 2.879(yr)-.15 G .379 (edirections speci\214ed by the command \(see)-2.879 F/F3 9/Times-Bold@0 -SF(REDIRECTION)2.879 E F0(belo)108 568.8 Q 3.425(w\). The)-.25 F .925 -(\214le descriptors can be utilized as ar)3.425 F .926 +SF(REDIRECTION)2.879 E F0(belo)108 580.8 Q 3.426(w\). The)-.25 F .926 +(\214le descriptors can be utilized as ar)3.426 F .925 (guments to shell commands and redirections using stan-)-.18 F .286 -(dard w)108 580.8 R .286(ord e)-.1 F 2.786(xpansions. Other)-.15 F .286 +(dard w)108 592.8 R .286(ord e)-.1 F 2.786(xpansions. Other)-.15 F .286 (than those created to e)2.786 F -.15(xe)-.15 G .286 (cute command and process substitutions, the \214le de-).15 F -(scriptors are not a)108 592.8 Q -.25(va)-.2 G(ilable in subshells.).25 -E 1.676(The process ID of the shell spa)108 609.6 R 1.676(wned to e)-.15 +(scriptors are not a)108 604.8 Q -.25(va)-.2 G(ilable in subshells.).25 +E 1.676(The process ID of the shell spa)108 621.6 R 1.676(wned to e)-.15 F -.15(xe)-.15 G 1.676(cute the coprocess is a).15 F -.25(va)-.2 G 1.676 -(ilable as the v).25 F 1.677(alue of the v)-.25 F(ariable)-.25 E F1 -.27 -(NA)108 621.6 S(ME).27 E F0 2.5(_PID. The)B F2(wait)2.5 E F0 -.2(bu)2.5 +(ilable as the v).25 F 1.676(alue of the v)-.25 F(ariable)-.25 E F1 -.27 +(NA)108 633.6 S(ME).27 E F0 2.5(_PID. The)B F2(wait)2.5 E F0 -.2(bu)2.5 G(iltin command may be used to w).2 E (ait for the coprocess to terminate.)-.1 E .336 (Since the coprocess is created as an asynchronous command, the)108 -638.4 R F2(copr)2.836 E(oc)-.18 E F0 .335(command al)2.835 F -.1(wa)-.1 -G .335(ys returns success.).1 F -(The return status of a coprocess is the e)108 650.4 Q(xit status of) --.15 E F1(command)2.5 E F0(.)A F2(Shell Function De\214nitions)87 667.2 -Q F0 2.697(As)108 679.2 S .198 -(hell function is an object that is called lik)-2.697 F 2.698(eas)-.1 G -.198(imple command and e)-2.698 F -.15(xe)-.15 G .198 -(cutes a compound command with).15 F 2.5(an)108 691.2 S .5 -.25(ew s) +650.4 R F2(copr)2.836 E(oc)-.18 E F0 .336(command al)2.836 F -.1(wa)-.1 +G .336(ys returns success.).1 F +(The return status of a coprocess is the e)108 662.4 Q(xit status of) +-.15 E F1(command)2.5 E F0(.)A F2(Shell Function De\214nitions)87 679.2 +Q F0 2.698(As)108 691.2 S .198 +(hell function is an object that is called lik)-2.698 F 2.698(eas)-.1 G +.198(imple command and e)-2.698 F -.15(xe)-.15 G .197 +(cutes a compound command with).15 F 2.5(an)108 703.2 S .5 -.25(ew s) -2.5 H(et of positional parameters.).25 E (Shell functions are declared as follo)5 E(ws:)-.25 E(GNU Bash 5.2)72 -768 Q(2022 March 11)144.29 E(7)198.45 E 0 Cg EP +768 Q(2022 June 3)150.675 E(7)204.835 E 0 Cg EP %%Page: 8 8 %%BeginPageSetup BP @@ -1130,10 +1134,10 @@ BP 2.5 E F0([)2.5 E F1 -.37(re)C(dir).37 E(ection)-.37 E F0(])A/F2 10 /Times-Bold@0 SF(function)108 96 Q F1(fname)2.5 E F0([\(\)])2.5 E F1 (compound\255command)2.5 E F0([)2.5 E F1 -.37(re)C(dir).37 E(ection)-.37 -E F0(])A .217(This de\214nes a function named)144 108 R F1(fname)2.717 E +E F0(])A .216(This de\214nes a function named)144 108 R F1(fname)2.716 E F0 5.217(.T)C .217(he reserv)-5.217 F .217(ed w)-.15 F(ord)-.1 E F2 -(function)2.717 E F0 .216(is optional.)2.717 F .216(If the)5.216 F F2 -(function)2.716 E F0(re-)2.716 E(serv)144 120 Q .68(ed w)-.15 F .68 +(function)2.717 E F0 .217(is optional.)2.717 F .217(If the)5.217 F F2 +(function)2.717 E F0(re-)2.717 E(serv)144 120 Q .68(ed w)-.15 F .68 (ord is supplied, the parentheses are optional.)-.1 F(The)5.68 E F1 (body)3.18 E F0 .68(of the function is the compound)3.18 F(command)144 132 Q F1(compound\255command)2.784 E F0(\(see)3.354 E F2 .084 @@ -1141,119 +1145,119 @@ F0 5.217(.T)C .217(he reserv)-5.217 F .217(ed w)-.15 F(ord)-.1 E F2 .15 F .084(command is usually a)2.584 F F1(list)144 144 Q F0 .044 (of commands between { and }, b)2.544 F .044(ut may be an)-.2 F 2.544 (yc)-.15 G .044(ommand listed under)-2.544 F F2 .044(Compound Commands) -2.544 F F0(abo)144 156 Q -.15(ve)-.15 G 5.532(.I).15 G 3.032(ft)-5.532 G -(he)-3.032 E F2(function)3.032 E F0(reserv)3.032 E .532(ed w)-.15 F .532 +2.544 F F0(abo)144 156 Q -.15(ve)-.15 G 5.531(.I).15 G 3.031(ft)-5.531 G +(he)-3.031 E F2(function)3.032 E F0(reserv)3.032 E .532(ed w)-.15 F .532 (ord is used, b)-.1 F .532 (ut the parentheses are not supplied, the braces are)-.2 F(recommended.) -144 168 Q F1(compound\255command)6.253 E F0 1.253(is e)3.753 F -.15(xe) --.15 G 1.253(cuted whene).15 F -.15(ve)-.25 G(r).15 E F1(fname)3.753 E -F0 1.254(is speci\214ed as the name of a)3.753 F 1.253(simple command.) -144 180 R 1.253(When in)6.253 F F1 1.253(posix mode)3.753 F F0(,)A F1 -(fname)3.753 E F0 1.252(must be a v)3.752 F 1.252(alid shell)-.25 F F1 -(name)3.752 E F0 1.252(and may not be the)3.752 F .088 +144 168 Q F1(compound\255command)6.254 E F0 1.254(is e)3.754 F -.15(xe) +-.15 G 1.254(cuted whene).15 F -.15(ve)-.25 G(r).15 E F1(fname)3.753 E +F0 1.253(is speci\214ed as the name of a)3.753 F 1.252(simple command.) +144 180 R 1.252(When in)6.252 F F1 1.252(posix mode)3.752 F F0(,)A F1 +(fname)3.752 E F0 1.252(must be a v)3.752 F 1.252(alid shell)-.25 F F1 +(name)3.753 E F0 1.253(and may not be the)3.753 F .089 (name of one of the POSIX)144 192 R F1 .089(special b)2.589 F(uiltins) -.2 E F0 5.089(.I)C 2.589(nd)-5.089 G(ef)-2.589 E .089 -(ault mode, a function name can be an)-.1 F 2.589(yu)-.15 G(nquoted) --2.589 E .165(shell w)144 204 R .165(ord that does not contain)-.1 F F2 +(ault mode, a function name can be an)-.1 F 2.588(yu)-.15 G(nquoted) +-2.588 E .164(shell w)144 204 R .164(ord that does not contain)-.1 F F2 ($)2.665 E F0 5.165(.A)C .465 -.15(ny r)-5.165 H .165(edirections \(see) -.15 F/F3 9/Times-Bold@0 SF(REDIRECTION)2.665 E F0(belo)2.415 E .164 -(w\) speci\214ed when a)-.25 F .06 +.15 F/F3 9/Times-Bold@0 SF(REDIRECTION)2.665 E F0(belo)2.415 E .165 +(w\) speci\214ed when a)-.25 F .061 (function is de\214ned are performed when the function is e)144 216 R --.15(xe)-.15 G 2.561(cuted. The).15 F -.15(ex)2.561 G .061 +-.15(xe)-.15 G 2.561(cuted. The).15 F -.15(ex)2.56 G .06 (it status of a function de\214-).15 F .579(nition is zero unless a syn\ tax error occurs or a readonly function with the same name already e)144 -228 R(x-)-.15 E 2.592(ists. When)144 240 R -.15(exe)2.592 G .092 +228 R(x-)-.15 E 2.593(ists. When)144 240 R -.15(exe)2.593 G .093 (cuted, the e).15 F .093(xit status of a function is the e)-.15 F .093 -(xit status of the last command e)-.15 F -.15(xe)-.15 G .093(cuted in) +(xit status of the last command e)-.15 F -.15(xe)-.15 G .092(cuted in) .15 F(the body)144 252 Q 5(.\()-.65 G(See)-5 E F3(FUNCTIONS)2.5 E F0 (belo)2.25 E -.65(w.)-.25 G(\)).65 E/F4 10.95/Times-Bold@0 SF(COMMENTS) 72 268.8 Q F0 .982(In a non-interacti)108 280.8 R 1.282 -.15(ve s)-.25 H .982(hell, or an interacti).15 F 1.282 -.15(ve s)-.25 H .982 (hell in which the).15 F F2(interacti)3.482 E -.1(ve)-.1 G(_comments).1 E F0 .982(option to the)3.482 F F2(shopt)3.482 E F0 -.2(bu)108 292.8 S -.951(iltin is enabled \(see).2 F F3 .952(SHELL B)3.451 F(UIL)-.09 E .952 +.952(iltin is enabled \(see).2 F F3 .952(SHELL B)3.452 F(UIL)-.09 E .952 (TIN COMMANDS)-.828 F F0(belo)3.202 E .952(w\), a w)-.25 F .952(ord be) --.1 F .952(ginning with)-.15 F F2(#)3.452 E F0 .952(causes that w)3.452 -F(ord)-.1 E .605 +-.1 F .952(ginning with)-.15 F F2(#)3.451 E F0 .951(causes that w)3.451 +F(ord)-.1 E .604 (and all remaining characters on that line to be ignored.)108 304.8 R -.604(An interacti)5.605 F .904 -.15(ve s)-.25 H .604(hell without the) -.15 F F2(interacti)3.104 E -.1(ve)-.1 G(_com-).1 E(ments)108 316.8 Q F0 +.605(An interacti)5.605 F .905 -.15(ve s)-.25 H .605(hell without the) +.15 F F2(interacti)3.105 E -.1(ve)-.1 G(_com-).1 E(ments)108 316.8 Q F0 .34(option enabled does not allo)2.84 F 2.84(wc)-.25 G 2.84 (omments. The)-2.84 F F2(interacti)2.84 E -.1(ve)-.1 G(_comments).1 E F0 .34(option is on by def)2.84 F .34(ault in in-)-.1 F(teracti)108 328.8 Q .3 -.15(ve s)-.25 H(hells.).15 E F4 -.11(QU)72 345.6 S -.438(OT).11 G -(ING).438 E F1(Quoting)108 357.6 Q F0 .478(is used to remo)2.978 F .777 +(ING).438 E F1(Quoting)108 357.6 Q F0 .477(is used to remo)2.977 F .777 -.15(ve t)-.15 H .477(he special meaning of certain characters or w).15 -F .477(ords to the shell.)-.1 F .477(Quoting can be)5.477 F .184 +F .477(ords to the shell.)-.1 F .478(Quoting can be)5.478 F .185 (used to disable special treatment for special characters, to pre)108 -369.6 R -.15(ve)-.25 G .185(nt reserv).15 F .185(ed w)-.15 F .185 +369.6 R -.15(ve)-.25 G .185(nt reserv).15 F .184(ed w)-.15 F .184 (ords from being recognized as)-.1 F(such, and to pre)108 381.6 Q -.15 -(ve)-.25 G(nt parameter e).15 E(xpansion.)-.15 E .289(Each of the)108 -398.4 R F1(metac)2.789 E(har)-.15 E(acter)-.15 E(s)-.1 E F0 .288 -(listed abo)2.789 F .588 -.15(ve u)-.15 H(nder).15 E F3(DEFINITIONS) +(ve)-.25 G(nt parameter e).15 E(xpansion.)-.15 E .288(Each of the)108 +398.4 R F1(metac)2.788 E(har)-.15 E(acter)-.15 E(s)-.1 E F0 .288 +(listed abo)2.788 F .588 -.15(ve u)-.15 H(nder).15 E F3(DEFINITIONS) 2.788 E F0 .288(has special meaning to the shell and must be)2.538 F -(quoted if it is to represent itself.)108 410.4 Q 1.344 +(quoted if it is to represent itself.)108 410.4 Q 1.345 (When the command history e)108 427.2 R 1.344(xpansion f)-.15 F 1.344 (acilities are being used \(see)-.1 F F3(HIST)3.844 E(OR)-.162 E 3.594 -(YE)-.315 G(XP)-3.594 E(ANSION)-.666 E F0(belo)3.595 E 1.345(w\), the) +(YE)-.315 G(XP)-3.594 E(ANSION)-.666 E F0(belo)3.594 E 1.344(w\), the) -.25 F F1(history e)108 439.2 Q(xpansion)-.2 E F0(character)2.5 E 2.5 (,u)-.4 G(sually)-2.5 E F2(!)2.5 E F0 2.5(,m)C(ust be quoted to pre)-2.5 E -.15(ve)-.25 G(nt history e).15 E(xpansion.)-.15 E (There are three quoting mechanisms: the)108 456 Q F1(escape c)2.69 E (har)-.15 E(acter)-.15 E F0 2.5(,s).73 G -(ingle quotes, and double quotes.)-2.5 E 2.963(An)108 472.8 S .463 -(on-quoted backslash \()-2.963 F F2(\\)A F0 2.963(\)i)C 2.963(st)-2.963 +(ingle quotes, and double quotes.)-2.5 E 2.962(An)108 472.8 S .463 +(on-quoted backslash \()-2.962 F F2(\\)A F0 2.963(\)i)C 2.963(st)-2.963 G(he)-2.963 E F1 .463(escape c)3.153 F(har)-.15 E(acter)-.15 E F0 5.463 (.I).73 G 2.963(tp)-5.463 G(reserv)-2.963 E .463(es the literal v)-.15 F .463(alue of the ne)-.25 F .463(xt character that)-.15 F(follo)108 484.8 -Q 1.553(ws, with the e)-.25 F 1.553(xception of . If)-.25 F(a)4.053 E F2(\\)4.053 E F0( pair appears, and the backslash is not itself)-.25 F .348 -(quoted, the)108 496.8 R F2(\\)2.848 E F0( pair appears, and the backslash is not itself)-.25 F .347 +(quoted, the)108 496.8 R F2(\\)2.847 E F0( is treated as a line continuation \(that is, it is remo)-.25 F --.15(ve)-.15 G 2.847(df).15 G .347(rom the input stream and ef-)-2.847 F +-.15(ve)-.15 G 2.848(df).15 G .348(rom the input stream and ef-)-2.848 F (fecti)108 508.8 Q -.15(ve)-.25 G(ly ignored\).).15 E .295 (Enclosing characters in single quotes preserv)108 525.6 R .295 (es the literal v)-.15 F .295(alue of each character within the quotes.) -.25 F 2.795(As)5.295 G(in-)-2.795 E (gle quote may not occur between single quotes, e)108 537.6 Q -.15(ve) --.25 G 2.5(nw).15 G(hen preceded by a backslash.)-2.5 E .034 +-.25 G 2.5(nw).15 G(hen preceded by a backslash.)-2.5 E .033 (Enclosing characters in double quotes preserv)108 554.4 R .034 (es the literal v)-.15 F .034 (alue of all characters within the quotes, with the)-.25 F -.15(ex)108 -566.4 S .107(ception of).15 F F2($)2.607 E F0(,)A F2<92>2.607 E F0(,)A -F2(\\)2.607 E F0 2.607(,a)C .107(nd, when history e)-2.607 F .107 +566.4 S .108(ception of).15 F F2($)2.608 E F0(,)A F2<92>2.608 E F0(,)A +F2(\\)2.608 E F0 2.608(,a)C .107(nd, when history e)-2.608 F .107 (xpansion is enabled,)-.15 F F2(!)2.607 E F0 5.107(.W)C .107 -(hen the shell is in)-5.107 F F1 .108(posix mode)2.608 F F0 2.608(,t)C -(he)-2.608 E F2(!)2.608 E F0 .108(has no)2.608 F .46 +(hen the shell is in)-5.107 F F1 .107(posix mode)2.607 F F0 2.607(,t)C +(he)-2.607 E F2(!)2.607 E F0 .107(has no)2.607 F .46 (special meaning within double quotes, e)108 578.4 R -.15(ve)-.25 G 2.96 (nw).15 G .46(hen history e)-2.96 F .46(xpansion is enabled.)-.15 F .46 (The characters)5.46 F F2($)2.96 E F0(and)2.96 E F2<92>2.96 E F0(re-) -2.96 E .562(tain their special meaning within double quotes.)108 590.4 R -.563(The backslash retains its special meaning only when fol-)5.563 F -(lo)108 602.4 Q .602(wed by one of the follo)-.25 F .602 +2.96 E .563(tain their special meaning within double quotes.)108 590.4 R +.562(The backslash retains its special meaning only when fol-)5.563 F +(lo)108 602.4 Q .601(wed by one of the follo)-.25 F .602 (wing characters:)-.25 F F2($)3.102 E F0(,)A F2<92>3.102 E F0(,)A F2(") 3.935 E F0(,).833 E F2(\\)3.102 E F0 3.102(,o)C(r)-3.102 E F2() -3.102 E F0 5.602(.A)C .601(double quote may be quoted within)-2.5 F .13 +3.102 E F0 5.602(.A)C .602(double quote may be quoted within)-2.5 F .131 (double quotes by preceding it with a backslash.)108 614.4 R .131 -(If enabled, history e)5.131 F .131 -(xpansion will be performed unless an)-.15 F F2(!)2.631 E F0 +(If enabled, history e)5.131 F .13(xpansion will be performed unless an) +-.15 F F2(!)2.63 E F0 (appearing in double quotes is escaped using a backslash.)108 626.4 Q (The backslash preceding the)5 E F2(!)2.5 E F0(is not remo)5 E -.15(ve) -.15 G(d.).15 E(The special parameters)108 643.2 Q F2(*)2.5 E F0(and)2.5 E F2(@)2.5 E F0(ha)2.5 E .3 -.15(ve s)-.2 H (pecial meaning when in double quotes \(see).15 E F3 -.666(PA)2.5 G -(RAMETERS).666 E F0(belo)2.25 E(w\).)-.25 E .149 +(RAMETERS).666 E F0(belo)2.25 E(w\).)-.25 E .148 (Character sequences of the form)108 660 R F2($)2.649 E F0<08>A F1 (string)A F0 2.649<0861>C .149(re treated as a special v)-2.649 F .149 -(ariant of single quotes.)-.25 F .148(The sequence e)5.148 F(x-)-.15 E -.527(pands to)108 672 R F1(string)3.027 E F0 3.027(,w)C .527 -(ith backslash-escaped characters in)-3.027 F F1(string)3.027 E F0 .528 +(ariant of single quotes.)-.25 F .149(The sequence e)5.149 F(x-)-.15 E +.528(pands to)108 672 R F1(string)3.028 E F0 3.028(,w)C .528 +(ith backslash-escaped characters in)-3.028 F F1(string)3.027 E F0 .527 (replaced as speci\214ed by the ANSI C standard.)3.027 F (Backslash escape sequences, if present, are decoded as follo)108 684 Q (ws:)-.25 E F2(\\a)144 696 Q F0(alert \(bell\))180 696 Q F2(\\b)144 708 -Q F0(backspace)180 708 Q(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(8) -198.45 E 0 Cg EP +Q F0(backspace)180 708 Q(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(8) +204.835 E 0 Cg EP %%Page: 9 9 %%BeginPageSetup BP @@ -1273,244 +1277,244 @@ SF(\\e)144 84 Q(\\E)144 96 Q F0(an escape character)180 96 Q F1(\\f)144 (the eight-bit character whose v)180 228 Q(alue is the he)-.25 E (xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0(\(one or tw)2.5 E 2.5(oh) -.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E F1(\\u)144 240 Q F2(HHHH)A F0 -1.507(the Unicode \(ISO/IEC 10646\) character whose v)180 252 R 1.506 -(alue is the he)-.25 F 1.506(xadecimal v)-.15 F(alue)-.25 E F2(HHHH) -4.006 E F0(\(one to four he)180 264 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 -(\\U)144 276 Q F2(HHHHHHHH)A F0 .547 +1.506(the Unicode \(ISO/IEC 10646\) character whose v)180 252 R 1.507 +(alue is the he)-.25 F 1.507(xadecimal v)-.15 F(alue)-.25 E F2(HHHH) +4.007 E F0(\(one to four he)180 264 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 +(\\U)144 276 Q F2(HHHHHHHH)A F0 .548 (the Unicode \(ISO/IEC 10646\) character whose v)180 288 R .547 -(alue is the he)-.25 F .548(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) -3.048 E(HHH)180 300 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) +(alue is the he)-.25 F .547(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) +3.047 E(HHH)180 300 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) -2.5 E F1(\\c)144 312 Q F2(x)A F0 2.5(ac)180 312 S(ontrol-)-2.5 E F2(x)A F0(character)2.5 E(The e)108 328.8 Q(xpanded result is single-quoted, a\ s if the dollar sign had not been present.)-.15 E 2.64(Ad)108 345.6 S .14(ouble-quoted string preceded by a dollar sign \()-2.64 F F1($)A F0 (")A F2(string)A F0 .14 -("\) will cause the string to be translated according)B .784 -(to the current locale.)108 357.6 R(The)5.784 E F2 -.1(ge)3.284 G(tte).1 +("\) will cause the string to be translated according)B .785 +(to the current locale.)108 357.6 R(The)5.785 E F2 -.1(ge)3.284 G(tte).1 E(xt)-.2 E F0 .784 (infrastructure performs the lookup and translation, using the)3.284 F -F1(LC_MES-)3.285 E(SA)108 369.6 Q(GES)-.55 E F0(,)A F1(TEXTDOMAINDIR) -2.761 E F0 2.761(,a)C(nd)-2.761 E F1(TEXTDOMAIN)2.761 E F0 .261(shell v) +F1(LC_MES-)3.284 E(SA)108 369.6 Q(GES)-.55 E F0(,)A F1(TEXTDOMAINDIR) +2.76 E F0 2.76(,a)C(nd)-2.76 E F1(TEXTDOMAIN)2.76 E F0 .261(shell v) 2.761 F 2.761(ariables. If)-.25 F .261(the current locale is)2.761 F F1 -(C)2.76 E F0(or)2.76 E F1(POSIX)2.76 E F0(,)A .791 -(if there are no translations a)108 381.6 R -.25(va)-.2 G .792(ilable, \ +(C)2.761 E F0(or)2.761 E F1(POSIX)2.761 E F0(,)A .792 +(if there are no translations a)108 381.6 R -.25(va)-.2 G .791(ilable, \ or if the string is not translated, the dollar sign is ignored.).25 F -.792(This is a)5.792 F .535 +.791(This is a)5.791 F .534 (form of double quoting, so the string remains double-quoted by def)108 -393.6 R .534(ault, whether or not it is translated and)-.1 F 2.797 -(replaced. If)108 405.6 R(the)2.797 E F1(noexpand_translation)2.797 E F0 +393.6 R .535(ault, whether or not it is translated and)-.1 F 2.798 +(replaced. If)108 405.6 R(the)2.798 E F1(noexpand_translation)2.797 E F0 .297(option is enabled using the)2.797 F F1(shopt)2.797 E F0 -.2(bu) -2.797 G .297(iltin, translated strings are sin-).2 F 2.045 +2.797 G .297(iltin, translated strings are sin-).2 F 2.044 (gle-quoted instead of double-quoted.)108 417.6 R 2.044 -(See the description of)7.045 F F1(shopt)4.544 E F0(belo)4.544 E 4.544 -(wu)-.25 G(nder)-4.544 E/F3 9/Times-Bold@0 SF(SHELL)4.544 E/F4 9 +(See the description of)7.044 F F1(shopt)4.545 E F0(belo)4.545 E 4.545 +(wu)-.25 G(nder)-4.545 E/F3 9/Times-Bold@0 SF(SHELL)4.545 E/F4 9 /Times-Roman@0 SF -.09(BU)C(IL).09 E(TIN)-.828 E F3(COM-)A(MANDS)108 429.6 Q F4(.)A/F5 10.95/Times-Bold@0 SF -.81(PA)72 446.4 S(RAMETERS).81 -E F0(A)108 458.4 Q F2(par)4.574 E(ameter)-.15 E F0 .824 -(is an entity that stores v)4.054 F 3.324(alues. It)-.25 F .824 -(can be a)3.324 F F2(name)3.685 E F0 3.325(,an).18 G(umber)-3.325 E -3.325(,o)-.4 G 3.325(ro)-3.325 G .825(ne of the special characters) --3.325 F .802(listed belo)108 470.4 R 3.302(wu)-.25 G(nder)-3.302 E F1 -.802(Special P)3.302 F(arameters)-.1 E F0 5.802(.A)C F2(variable)-2.21 E -F0 .802(is a parameter denoted by a)3.482 F F2(name)3.662 E F0 5.801(.A) -.18 G -.25(va)-2.5 G .801(riable has a).25 F F2(value)108 482.4 Q F0 -.368(and zero or more)2.868 F F2(attrib)2.868 E(utes)-.2 E F0 5.369(.A)C -(ttrib)-5.369 E .369(utes are assigned using the)-.2 F F1(declar)2.869 E -(e)-.18 E F0 -.2(bu)2.869 G .369(iltin command \(see).2 F F1(declar) -2.869 E(e)-.18 E F0(belo)108 494.4 Q 2.5(wi)-.25 G(n)-2.5 E F3(SHELL B) -2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F4(\).)A F0 2.755(Ap)108 511.2 S -.255(arameter is set if it has been assigned a v)-2.755 F 2.754 -(alue. The)-.25 F .254(null string is a v)2.754 F .254(alid v)-.25 F -2.754(alue. Once)-.25 F 2.754(av)2.754 G .254(ariable is set, it)-3.004 +E F0(A)108 458.4 Q F2(par)4.575 E(ameter)-.15 E F0 .825 +(is an entity that stores v)4.055 F 3.325(alues. It)-.25 F .825 +(can be a)3.325 F F2(name)3.684 E F0 3.324(,an).18 G(umber)-3.324 E +3.324(,o)-.4 G 3.324(ro)-3.324 G .824(ne of the special characters) +-3.324 F .801(listed belo)108 470.4 R 3.301(wu)-.25 G(nder)-3.301 E F1 +.801(Special P)3.301 F(arameters)-.1 E F0 5.802(.A)C F2(variable)-2.21 E +F0 .802(is a parameter denoted by a)3.482 F F2(name)3.662 E F0 5.802(.A) +.18 G -.25(va)-2.5 G .802(riable has a).25 F F2(value)108 482.4 Q F0 +.369(and zero or more)2.869 F F2(attrib)2.869 E(utes)-.2 E F0 5.369(.A)C +(ttrib)-5.369 E .369(utes are assigned using the)-.2 F F1(declar)2.868 E +(e)-.18 E F0 -.2(bu)2.868 G .368(iltin command \(see).2 F F1(declar) +2.868 E(e)-.18 E F0(belo)108 494.4 Q 2.5(wi)-.25 G(n)-2.5 E F3(SHELL B) +2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F4(\).)A F0 2.754(Ap)108 511.2 S +.254(arameter is set if it has been assigned a v)-2.754 F 2.754 +(alue. The)-.25 F .254(null string is a v)2.754 F .255(alid v)-.25 F +2.755(alue. Once)-.25 F 2.755(av)2.755 G .255(ariable is set, it)-3.005 F(may be unset only by using the)108 523.2 Q F1(unset)2.5 E F0 -.2(bu) 2.5 G(iltin command \(see).2 E F3(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS) -.828 E F0(belo)2.25 E(w\).)-.25 E(A)108 540 Q F2(variable)2.79 E F0 (may be assigned to by a statement of the form)2.68 E F2(name)144 556.8 -Q F0(=[)A F2(value)A F0(])A(If)108 573.6 Q F2(value)3.022 E F0 .232 -(is not gi)2.912 F -.15(ve)-.25 G .232(n, the v).15 F .232 -(ariable is assigned the null string.)-.25 F(All)5.233 E F2(values)3.023 -E F0(under)3.003 E .233(go tilde e)-.18 F .233(xpansion, parameter)-.15 +Q F0(=[)A F2(value)A F0(])A(If)108 573.6 Q F2(value)3.023 E F0 .233 +(is not gi)2.913 F -.15(ve)-.25 G .233(n, the v).15 F .232 +(ariable is assigned the null string.)-.25 F(All)5.232 E F2(values)3.022 +E F0(under)3.002 E .232(go tilde e)-.18 F .232(xpansion, parameter)-.15 F .515(and v)108 585.6 R .515(ariable e)-.25 F .515 (xpansion, command substitution, arithmetic e)-.15 F .515 (xpansion, and quote remo)-.15 F -.25(va)-.15 G 3.015(l\().25 G(see) --3.015 E F3(EXP)3.015 E(ANSION)-.666 E F0(belo)108 597.6 Q 2.698 -(w\). If)-.25 F .198(the v)2.698 F .198(ariable has its)-.25 F F1 +-3.015 E F3(EXP)3.015 E(ANSION)-.666 E F0(belo)108 597.6 Q 2.699 +(w\). If)-.25 F .199(the v)2.699 F .199(ariable has its)-.25 F F1 (integer)2.698 E F0(attrib)2.698 E .198(ute set, then)-.2 F F2(value) -2.988 E F0 .198(is e)2.878 F -.25(va)-.25 G .199 -(luated as an arithmetic e).25 F .199(xpression e)-.15 F -.15(ve)-.25 G -(n).15 E .746(if the $\(\(...\)\) e)108 609.6 R .746 +2.988 E F0 .198(is e)2.878 F -.25(va)-.25 G .198 +(luated as an arithmetic e).25 F .198(xpression e)-.15 F -.15(ve)-.25 G +(n).15 E .745(if the $\(\(...\)\) e)108 609.6 R .745 (xpansion is not used \(see)-.15 F F1 .745(Arithmetic Expansion)3.245 F -F0(belo)3.245 E 3.245(w\). W)-.25 F .745(ord splitting and pathname e) --.8 F(x-)-.15 E 1.363(pansion are not performed.)108 621.6 R 1.364 -(Assignment statements may also appear as ar)6.363 F 1.364 -(guments to the)-.18 F F1(alias)3.864 E F0(,)A F1(declar)3.864 E(e)-.18 -E F0(,)A F1(typeset)108 633.6 Q F0(,)A F1(export)3.965 E F0(,)A F1 -.18 -(re)3.965 G(adonly).18 E F0 3.964(,a)C(nd)-3.964 E F1(local)3.964 E F0 +F0(belo)3.245 E 3.246(w\). W)-.25 F .746(ord splitting and pathname e) +-.8 F(x-)-.15 E 1.364(pansion are not performed.)108 621.6 R 1.364 +(Assignment statements may also appear as ar)6.364 F 1.363 +(guments to the)-.18 F F1(alias)3.863 E F0(,)A F1(declar)3.863 E(e)-.18 +E F0(,)A F1(typeset)108 633.6 Q F0(,)A F1(export)3.964 E F0(,)A F1 -.18 +(re)3.964 G(adonly).18 E F0 3.964(,a)C(nd)-3.964 E F1(local)3.964 E F0 -.2(bu)3.964 G 1.464(iltin commands \().2 F F2(declar)A(ation)-.15 E F0 -3.964(commands\). When)3.964 F(in)3.964 E F2 1.464(posix mode)3.964 F F0 -(,)A 1.141(these b)108 645.6 R 1.142 +3.964(commands\). When)3.964 F(in)3.964 E F2 1.465(posix mode)3.965 F F0 +(,)A 1.142(these b)108 645.6 R 1.142 (uiltins may appear in a command after one or more instances of the)-.2 -F F1(command)3.642 E F0 -.2(bu)3.642 G 1.142(iltin and retain).2 F -(these assignment statement properties.)108 657.6 Q .377(In the conte) -108 674.4 R .377(xt where an assignment statement is assigning a v)-.15 -F .376(alue to a shell v)-.25 F .376(ariable or array inde)-.25 F .376 -(x, the +=)-.15 F 1.63 +F F1(command)3.641 E F0 -.2(bu)3.641 G 1.141(iltin and retain).2 F +(these assignment statement properties.)108 657.6 Q .376(In the conte) +108 674.4 R .376(xt where an assignment statement is assigning a v)-.15 +F .376(alue to a shell v)-.25 F .377(ariable or array inde)-.25 F .377 +(x, the +=)-.15 F 1.631 (operator can be used to append to or add to the v)108 686.4 R(ariable') --.25 E 4.131(sp)-.55 G(re)-4.131 E 1.631(vious v)-.25 F 4.131 -(alue. This)-.25 F 1.631(includes ar)4.131 F 1.631(guments to)-.18 F -.2 -(bu)108 698.4 S .164(iltin commands such as).2 F F1(declar)2.664 E(e) --.18 E F0 .164(that accept assignment statements \()2.664 F F2(declar)A -(ation)-.15 E F0 2.664(commands\). When)2.664 F .163(+= is)2.663 F .131 -(applied to a v)108 710.4 R .131(ariable for which the)-.25 F F1 +-.25 E 4.13(sp)-.55 G(re)-4.13 E 1.63(vious v)-.25 F 4.13(alue. This) +-.25 F 1.63(includes ar)4.13 F 1.63(guments to)-.18 F -.2(bu)108 698.4 S +.163(iltin commands such as).2 F F1(declar)2.664 E(e)-.18 E F0 .164 +(that accept assignment statements \()2.664 F F2(declar)A(ation)-.15 E +F0 2.664(commands\). When)2.664 F .164(+= is)2.664 F .132 +(applied to a v)108 710.4 R .132(ariable for which the)-.25 F F1 (integer)2.632 E F0(attrib)2.632 E .132(ute has been set,)-.2 F F2 -(value)2.632 E F0 .132(is e)2.632 F -.25(va)-.25 G .132 -(luated as an arithmetic e).25 F(xpres-)-.15 E 1.227 -(sion and added to the v)108 722.4 R(ariable')-.25 E 3.727(sc)-.55 G -1.227(urrent v)-3.727 F 1.227(alue, which is also e)-.25 F -.25(va)-.25 -G 3.727(luated. When).25 F 1.226(+= is applied to an array)3.726 F -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(9)198.45 E 0 Cg EP +(value)2.632 E F0 .131(is e)2.631 F -.25(va)-.25 G .131 +(luated as an arithmetic e).25 F(xpres-)-.15 E 1.226 +(sion and added to the v)108 722.4 R(ariable')-.25 E 3.726(sc)-.55 G +1.227(urrent v)-3.726 F 1.227(alue, which is also e)-.25 F -.25(va)-.25 +G 3.727(luated. When).25 F 1.227(+= is applied to an array)3.727 F +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(9)204.835 E 0 Cg EP %%Page: 10 10 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.25(va)108 84 S -.114(riable using compound assignment \(see).25 F/F1 10/Times-Bold@0 SF -(Arrays)2.614 E F0(belo)2.615 E .115(w\), the v)-.25 F(ariable')-.25 E -2.615(sv)-.55 G .115(alue is not unset \(as it is when us-)-2.865 F .388 -(ing =\), and ne)108 96 R 2.888(wv)-.25 G .388 -(alues are appended to the array be)-3.138 F .388 -(ginning at one greater than the array')-.15 F 2.887(sm)-.55 G .387 -(aximum inde)-2.887 F(x)-.15 E 1.596(\(for inde)108 108 R -.15(xe)-.15 G -4.096(da).15 G 1.596(rrays\) or added as additional k)-4.096 F -.15(ey) +.115(riable using compound assignment \(see).25 F/F1 10/Times-Bold@0 SF +(Arrays)2.615 E F0(belo)2.615 E .115(w\), the v)-.25 F(ariable')-.25 E +2.615(sv)-.55 G .114(alue is not unset \(as it is when us-)-2.865 F .387 +(ing =\), and ne)108 96 R 2.887(wv)-.25 G .388 +(alues are appended to the array be)-3.137 F .388 +(ginning at one greater than the array')-.15 F 2.888(sm)-.55 G .388 +(aximum inde)-2.888 F(x)-.15 E 1.597(\(for inde)108 108 R -.15(xe)-.15 G +4.097(da).15 G 1.596(rrays\) or added as additional k)-4.097 F -.15(ey) -.1 G.15 E 1.596(alue pairs in an associati)-.25 F 1.896 -.15 -(ve a)-.25 H(rray).15 E 6.597(.W)-.65 G 1.597(hen applied to a)-6.597 F +(ve a)-.25 H(rray).15 E 6.596(.W)-.65 G 1.596(hen applied to a)-6.596 F (string-v)108 120 Q(alued v)-.25 E(ariable,)-.25 E/F2 10/Times-Italic@0 SF(value)2.5 E F0(is e)2.5 E(xpanded and appended to the v)-.15 E -(ariable')-.25 E 2.5(sv)-.55 G(alue.)-2.75 E 3.383(Av)108 136.8 S .883 -(ariable can be assigned the)-3.633 F F2(namer)3.382 E(ef)-.37 E F0 +(ariable')-.25 E 2.5(sv)-.55 G(alue.)-2.75 E 3.382(Av)108 136.8 S .882 +(ariable can be assigned the)-3.632 F F2(namer)3.382 E(ef)-.37 E F0 (attrib)3.382 E .882(ute using the)-.2 F F13.382 E F0 .882 -(option to the)3.382 F F1(declar)3.382 E(e)-.18 E F0(or)3.382 E F1 -(local)3.382 E F0 -.2(bu)3.382 G .882(iltin com-).2 F .315 -(mands \(see the descriptions of)108 148.8 R F1(declar)2.815 E(e)-.18 E -F0(and)2.815 E F1(local)2.815 E F0(belo)2.815 E .316(w\) to create a) --.25 F F2(namer)2.816 E(ef)-.37 E F0 2.816(,o)C 2.816(rar)-2.816 G .316 -(eference to another v)-2.816 F(ari-)-.25 E 2.919(able. This)108 160.8 R -(allo)2.919 E .419(ws v)-.25 F .419 +(option to the)3.382 F F1(declar)3.382 E(e)-.18 E F0(or)3.383 E F1 +(local)3.383 E F0 -.2(bu)3.383 G .883(iltin com-).2 F .316 +(mands \(see the descriptions of)108 148.8 R F1(declar)2.816 E(e)-.18 E +F0(and)2.816 E F1(local)2.816 E F0(belo)2.816 E .316(w\) to create a) +-.25 F F2(namer)2.815 E(ef)-.37 E F0 2.815(,o)C 2.815(rar)-2.815 G .315 +(eference to another v)-2.815 F(ari-)-.25 E 2.918(able. This)108 160.8 R +(allo)2.918 E .418(ws v)-.25 F .418 (ariables to be manipulated indirectly)-.25 F 5.419(.W)-.65 G(hene) --5.419 E -.15(ve)-.25 G 2.918(rt).15 G .418(he nameref v)-2.918 F .418 -(ariable is referenced, as-)-.25 F .132 +-5.419 E -.15(ve)-.25 G 2.919(rt).15 G .419(he nameref v)-2.919 F .419 +(ariable is referenced, as-)-.25 F .133 (signed to, unset, or has its attrib)108 172.8 R .132 -(utes modi\214ed \(other than using or changing the)-.2 F F2(namer)2.633 -E(ef)-.37 E F0(attrib)2.633 E .133(ute itself\), the)-.2 F 1.357 +(utes modi\214ed \(other than using or changing the)-.2 F F2(namer)2.632 +E(ef)-.37 E F0(attrib)2.632 E .132(ute itself\), the)-.2 F 1.356 (operation is actually performed on the v)108 184.8 R 1.357 -(ariable speci\214ed by the nameref v)-.25 F(ariable')-.25 E 3.856(sv) --.55 G 3.856(alue. A)-4.106 F 1.356(nameref is)3.856 F .971 -(commonly used within shell functions to refer to a v)108 196.8 R .972 -(ariable whose name is passed as an ar)-.25 F .972(gument to the)-.18 F +(ariable speci\214ed by the nameref v)-.25 F(ariable')-.25 E 3.857(sv) +-.55 G 3.857(alue. A)-4.107 F 1.357(nameref is)3.857 F .972 +(commonly used within shell functions to refer to a v)108 196.8 R .971 +(ariable whose name is passed as an ar)-.25 F .971(gument to the)-.18 F 2.5(function. F)108 208.8 R(or instance, if a v)-.15 E (ariable name is passed to a shell function as its \214rst ar)-.25 E (gument, running)-.18 E/F3 10/Courier@0 SF(declare -n ref=$1)144 226.8 Q -F0 .303(inside the function creates a nameref v)108 244.8 R(ariable)-.25 +F0 .302(inside the function creates a nameref v)108 244.8 R(ariable)-.25 E F1 -.18(re)2.803 G(f).18 E F0 .303(whose v)2.803 F .303(alue is the v) --.25 F .302(ariable name passed as the \214rst ar)-.25 F(gu-)-.18 E +-.25 F .303(ariable name passed as the \214rst ar)-.25 F(gu-)-.18 E 3.592(ment. References)108 256.8 R 1.092(and assignments to)3.592 F F1 -.18(re)3.592 G(f).18 E F0 3.592(,a)C 1.092(nd changes to its attrib) --3.592 F 1.092(utes, are treated as references, assign-)-.2 F .144 +-3.592 F 1.092(utes, are treated as references, assign-)-.2 F .143 (ments, and attrib)108 268.8 R .144(ute modi\214cations to the v)-.2 F .144(ariable whose name w)-.25 F .144(as passed as)-.1 F F1($1)2.644 E -F0 5.144(.I)C 2.644(ft)-5.144 G .144(he control v)-2.644 F .143 -(ariable in a)-.25 F F1 -.25(fo)108 280.8 S(r).25 E F0 .867 -(loop has the nameref attrib)3.367 F .867(ute, the list of w)-.2 F .868 -(ords can be a list of shell v)-.1 F .868 +F0 5.144(.I)C 2.644(ft)-5.144 G .144(he control v)-2.644 F .144 +(ariable in a)-.25 F F1 -.25(fo)108 280.8 S(r).25 E F0 .868 +(loop has the nameref attrib)3.368 F .868(ute, the list of w)-.2 F .867 +(ords can be a list of shell v)-.1 F .867 (ariables, and a name reference)-.25 F .509 (will be established for each w)108 292.8 R .509 (ord in the list, in turn, when the loop is e)-.1 F -.15(xe)-.15 G 3.009 (cuted. Array).15 F -.25(va)3.009 G .509(riables cannot be).25 F(gi)108 -304.8 Q -.15(ve)-.25 G 3.031(nt).15 G(he)-3.031 E F1(namer)3.031 E(ef) --.18 E F0(attrib)3.031 E 3.031(ute. Ho)-.2 F(we)-.25 E -.15(ve)-.25 G -1.331 -.4(r, n).15 H .531(ameref v).4 F .532 -(ariables can reference array v)-.25 F .532(ariables and subscripted ar) --.25 F(-)-.2 E .534(ray v)108 316.8 R 3.034(ariables. Namerefs)-.25 F -.534(can be unset using the)3.034 F F13.033 E F0 .533 -(option to the)3.033 F F1(unset)3.033 E F0 -.2(bu)3.033 G 3.033 -(iltin. Otherwise,).2 F(if)3.033 E F1(unset)3.033 E F0 .533(is e)3.033 F --.15(xe)-.15 G(-).15 E .442(cuted with the name of a nameref v)108 328.8 -R .442(ariable as an ar)-.25 F .442(gument, the v)-.18 F .443 +304.8 Q -.15(ve)-.25 G 3.032(nt).15 G(he)-3.032 E F1(namer)3.032 E(ef) +-.18 E F0(attrib)3.032 E 3.032(ute. Ho)-.2 F(we)-.25 E -.15(ve)-.25 G +1.332 -.4(r, n).15 H .532(ameref v).4 F .531 +(ariables can reference array v)-.25 F .531(ariables and subscripted ar) +-.25 F(-)-.2 E .533(ray v)108 316.8 R 3.033(ariables. Namerefs)-.25 F +.533(can be unset using the)3.033 F F13.033 E F0 .533 +(option to the)3.033 F F1(unset)3.033 E F0 -.2(bu)3.034 G 3.034 +(iltin. Otherwise,).2 F(if)3.034 E F1(unset)3.034 E F0 .534(is e)3.034 F +-.15(xe)-.15 G(-).15 E .443(cuted with the name of a nameref v)108 328.8 +R .442(ariable as an ar)-.25 F .442(gument, the v)-.18 F .442 (ariable referenced by the nameref v)-.25 F(ariable)-.25 E (will be unset.)108 340.8 Q F1 -.2(Po)87 357.6 S(sitional P).2 E -(arameters)-.1 E F0(A)108 369.6 Q F2 .706(positional par)4.456 F(ameter) +(arameters)-.1 E F0(A)108 369.6 Q F2 .705(positional par)4.455 F(ameter) -.15 E F0 .706(is a parameter denoted by one or more digits, other than\ - the single digit 0.)3.936 F(Posi-)5.705 E .444 + the single digit 0.)3.935 F(Posi-)5.706 E .445 (tional parameters are assigned from the shell')108 381.6 R 2.944(sa) -.55 G -.18(rg)-2.944 G .444(uments when it is in).18 F -.2(vo)-.4 G -.1 -(ke).2 G .445(d, and may be reassigned using).1 F(the)108 393.6 Q F1 -(set)3.334 E F0 -.2(bu)3.334 G .834(iltin command.).2 F .833(Positional\ - parameters may not be assigned to with assignment statements.)5.834 F -(The)5.833 E(positional parameters are temporarily replaced when a shel\ +(ke).2 G .444(d, and may be reassigned using).1 F(the)108 393.6 Q F1 +(set)3.333 E F0 -.2(bu)3.333 G .833(iltin command.).2 F .834(Positional\ + parameters may not be assigned to with assignment statements.)5.833 F +(The)5.834 E(positional parameters are temporarily replaced when a shel\ l function is e)108 405.6 Q -.15(xe)-.15 G(cuted \(see).15 E/F4 9 -/Times-Bold@0 SF(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E 1.403(When \ +/Times-Bold@0 SF(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E 1.404(When \ a positional parameter consisting of more than a single digit is e)108 -422.4 R 1.404(xpanded, it must be enclosed in)-.15 F(braces \(see)108 +422.4 R 1.403(xpanded, it must be enclosed in)-.15 F(braces \(see)108 434.4 Q F4(EXP)2.5 E(ANSION)-.666 E F0(belo)2.25 E(w\).)-.25 E F1 -(Special P)87 451.2 Q(arameters)-.1 E F0 1.675(The shell treats se)108 -463.2 R -.15(ve)-.25 G 1.675(ral parameters specially).15 F 6.675(.T) --.65 G 1.674(hese parameters may only be referenced; assignment to) +(Special P)87 451.2 Q(arameters)-.1 E F0 1.674(The shell treats se)108 +463.2 R -.15(ve)-.25 G 1.674(ral parameters specially).15 F 6.675(.T) +-.65 G 1.675(hese parameters may only be referenced; assignment to) -6.675 F(them is not allo)108 475.2 Q(wed.)-.25 E F1(*)108 487.2 Q F0 -.223(Expands to the positional parameters, starting from one.)144 487.2 -R .224(When the e)5.224 F .224(xpansion is not within double)-.15 F .663 +.224(Expands to the positional parameters, starting from one.)144 487.2 +R .223(When the e)5.224 F .223(xpansion is not within double)-.15 F .662 (quotes, each positional parameter e)144 499.2 R .662 (xpands to a separate w)-.15 F 3.162(ord. In)-.1 F(conte)3.162 E .662 -(xts where it is performed,)-.15 F 1.081(those w)144 511.2 R 1.081 -(ords are subject to further w)-.1 F 1.082(ord splitting and pathname e) --.1 F 3.582(xpansion. When)-.15 F 1.082(the e)3.582 F(xpansion)-.15 E -.915(occurs within double quotes, it e)144 523.2 R .914 -(xpands to a single w)-.15 F .914(ord with the v)-.1 F .914 -(alue of each parameter sepa-)-.25 F .89 +(xts where it is performed,)-.15 F 1.082(those w)144 511.2 R 1.082 +(ords are subject to further w)-.1 F 1.081(ord splitting and pathname e) +-.1 F 3.581(xpansion. When)-.15 F 1.081(the e)3.581 F(xpansion)-.15 E +.914(occurs within double quotes, it e)144 523.2 R .914 +(xpands to a single w)-.15 F .915(ord with the v)-.1 F .915 +(alue of each parameter sepa-)-.25 F .891 (rated by the \214rst character of the)144 535.2 R F4(IFS)3.39 E F0 .89 -(special v)3.14 F 3.39(ariable. That)-.25 F .891(is, ")3.391 F F1($*)A -F0 3.391("i)C 3.391(se)-3.391 G(qui)-3.391 E -.25(va)-.25 G .891 -(lent to ").25 F F1($1)A F2(c)A F1($2)A F2(c)A F1(...)A F0(",)A(where) -144 547.2 Q F2(c)3.533 E F0 .832(is the \214rst character of the v)3.643 -F .832(alue of the)-.25 F F4(IFS)3.332 E F0 -.25(va)3.082 G 3.332 -(riable. If).25 F F4(IFS)3.332 E F0 .832(is unset, the parameters are) -3.082 F(separated by spaces.)144 559.2 Q(If)5 E F4(IFS)2.5 E F0 +(special v)3.14 F 3.39(ariable. That)-.25 F .89(is, ")3.39 F F1($*)A F0 +3.39("i)C 3.39(se)-3.39 G(qui)-3.39 E -.25(va)-.25 G .89(lent to ").25 F +F1($1)A F2(c)A F1($2)A F2(c)A F1(...)A F0(",)A(where)144 547.2 Q F2(c) +3.532 E F0 .832(is the \214rst character of the v)3.642 F .832 +(alue of the)-.25 F F4(IFS)3.332 E F0 -.25(va)3.082 G 3.332(riable. If) +.25 F F4(IFS)3.332 E F0 .833(is unset, the parameters are)3.082 F +(separated by spaces.)144 559.2 Q(If)5 E F4(IFS)2.5 E F0 (is null, the parameters are joined without interv)2.25 E (ening separators.)-.15 E F1(@)108 571.2 Q F0 .722 (Expands to the positional parameters, starting from one.)144 571.2 R -.722(In conte)5.722 F .722(xts where w)-.15 F .723(ord splitting is per) +.722(In conte)5.722 F .722(xts where w)-.15 F .722(ord splitting is per) -.1 F(-)-.2 E 1.165(formed, this e)144 583.2 R 1.165 (xpands each positional parameter to a separate w)-.15 F 1.165 -(ord; if not within double quotes,)-.1 F .654(these w)144 595.2 R .654 +(ord; if not within double quotes,)-.1 F .655(these w)144 595.2 R .655 (ords are subject to w)-.1 F .655(ord splitting.)-.1 F .655(In conte) -5.655 F .655(xts where w)-.15 F .655 +5.655 F .655(xts where w)-.15 F .654 (ord splitting is not performed, this)-.1 F -.15(ex)144 607.2 S .748 (pands to a single w).15 F .748 (ord with each positional parameter separated by a space.)-.1 F .748 -(When the e)5.748 F(xpan-)-.15 E 1.09 +(When the e)5.748 F(xpan-)-.15 E 1.091 (sion occurs within double quotes, each parameter e)144 619.2 R 1.091 -(xpands to a separate w)-.15 F 3.591(ord. That)-.1 F 1.091(is, ")3.591 F -F1($@)A F0 3.591("i)C(s)-3.591 E(equi)144 631.2 Q -.25(va)-.25 G .413 -(lent to ").25 F F1($1)A F0 2.913("")C F1($2)-2.913 E F0 2.913(".)C -2.913(.. If)-2.913 F .413(the double-quoted e)2.913 F .413 -(xpansion occurs within a w)-.15 F .412(ord, the e)-.1 F .412 -(xpansion of)-.15 F .379(the \214rst parameter is joined with the be)144 -643.2 R .379(ginning part of the original w)-.15 F .38(ord, and the e) --.1 F .38(xpansion of the)-.15 F .771 +(xpands to a separate w)-.15 F 3.59(ord. That)-.1 F 1.09(is, ")3.59 F F1 +($@)A F0 3.59("i)C(s)-3.59 E(equi)144 631.2 Q -.25(va)-.25 G .412 +(lent to ").25 F F1($1)A F0 2.912("")C F1($2)-2.912 E F0 2.912(".)C +2.912(.. If)-2.912 F .413(the double-quoted e)2.913 F .413 +(xpansion occurs within a w)-.15 F .413(ord, the e)-.1 F .413 +(xpansion of)-.15 F .38(the \214rst parameter is joined with the be)144 +643.2 R .379(ginning part of the original w)-.15 F .379(ord, and the e) +-.1 F .379(xpansion of the)-.15 F .771 (last parameter is joined with the last part of the original w)144 655.2 -R 3.271(ord. When)-.1 F .771(there are no positional pa-)3.271 F +R 3.271(ord. When)-.1 F .772(there are no positional pa-)3.271 F (rameters, ")144 667.2 Q F1($@)A F0 2.5("a)C(nd)-2.5 E F1($@)2.5 E F0 -.15(ex)2.5 G(pand to nothing \(i.e., the).15 E 2.5(ya)-.15 G(re remo) -2.5 E -.15(ve)-.15 G(d\).).15 E F1(#)108 679.2 Q F0 (Expands to the number of positional parameters in decimal.)144 679.2 Q F1(?)108 691.2 Q F0(Expands to the e)144 691.2 Q (xit status of the most recently e)-.15 E -.15(xe)-.15 G(cuted fore).15 -E(ground pipeline.)-.15 E F1108 703.2 Q F0 .881 +E(ground pipeline.)-.15 E F1108 703.2 Q F0 .882 (Expands to the current option \215ags as speci\214ed upon in)144 703.2 -R -.2(vo)-.4 G .881(cation, by the).2 F F1(set)3.382 E F0 -.2(bu)3.382 G -.882(iltin command, or).2 F(those set by the shell itself \(such as the) +R -.2(vo)-.4 G .881(cation, by the).2 F F1(set)3.381 E F0 -.2(bu)3.381 G +.881(iltin command, or).2 F(those set by the shell itself \(such as the) 144 715.2 Q F12.5 E F0(option\).)2.5 E(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(10)193.45 E 0 Cg EP +(2022 June 3)150.675 E(10)199.835 E 0 Cg EP %%Page: 11 11 %%BeginPageSetup BP @@ -1525,56 +1529,56 @@ e process ID of the job most recently placed into the background, wheth\ er e)144 108 R -.15(xe)-.15 G(cuted).15 E (as an asynchronous command or using the)144 120 Q F1(bg)2.5 E F0 -.2 (bu)2.5 G(iltin \(see).2 E/F2 9/Times-Bold@0 SF(JOB CONTR)2.5 E(OL)-.27 -E F0(belo)2.25 E(w\).)-.25 E F1(0)108 132 Q F0 .887 +E F0(belo)2.25 E(w\).)-.25 E F1(0)108 132 Q F0 .886 (Expands to the name of the shell or shell script.)144 132 R .886 -(This is set at shell initialization.)5.886 F(If)5.886 E F1(bash)3.386 E -F0 .886(is in-)3.386 F -.2(vo)144 144 S -.1(ke).2 G 2.667(dw).1 G .167 -(ith a \214le of commands,)-2.667 F F1($0)2.667 E F0 .167 +(This is set at shell initialization.)5.886 F(If)5.887 E F1(bash)3.387 E +F0 .887(is in-)3.387 F -.2(vo)144 144 S -.1(ke).2 G 2.668(dw).1 G .168 +(ith a \214le of commands,)-2.668 F F1($0)2.668 E F0 .167 (is set to the name of that \214le.)2.667 F(If)5.167 E F1(bash)2.667 E -F0 .168(is started with the)2.668 F F12.668 E F0(op-)2.668 E .896 -(tion, then)144 156 R F1($0)3.396 E F0 .895(is set to the \214rst ar) -3.396 F .895(gument after the string to be e)-.18 F -.15(xe)-.15 G .895 -(cuted, if one is present.).15 F(Other)5.895 E(-)-.2 E +F0 .167(is started with the)2.667 F F12.667 E F0(op-)2.667 E .895 +(tion, then)144 156 R F1($0)3.395 E F0 .895(is set to the \214rst ar) +3.395 F .895(gument after the string to be e)-.18 F -.15(xe)-.15 G .896 +(cuted, if one is present.).15 F(Other)5.896 E(-)-.2 E (wise, it is set to the \214lename used to in)144 168 Q -.2(vo)-.4 G -.1 (ke).2 G F1(bash)2.6 E F0 2.5(,a)C 2.5(sg)-2.5 G -2.15 -.25(iv e)-2.5 H 2.5(nb).25 G 2.5(ya)-2.5 G -.18(rg)-2.5 G(ument zero.).18 E F1(Shell V) 87 184.8 Q(ariables)-.92 E F0(The follo)108 196.8 Q(wing v)-.25 E -(ariables are set by the shell:)-.25 E F1(_)108 213.6 Q F0 1.525 +(ariables are set by the shell:)-.25 E F1(_)108 213.6 Q F0 1.526 (At shell startup, set to the pathname used to in)144 213.6 R -.2(vo)-.4 -G 1.725 -.1(ke t).2 H 1.526(he shell or shell script being e).1 F -.15 -(xe)-.15 G 1.526(cuted as).15 F .174(passed in the en)144 225.6 R .174 +G 1.725 -.1(ke t).2 H 1.525(he shell or shell script being e).1 F -.15 +(xe)-.15 G 1.525(cuted as).15 F .173(passed in the en)144 225.6 R .173 (vironment or ar)-.4 F .173(gument list.)-.18 F(Subsequently)5.173 E -2.673(,e)-.65 G .173(xpands to the last ar)-2.823 F .173 -(gument to the pre-)-.18 F .336(vious simple command e)144 237.6 R -.15 -(xe)-.15 G .336(cuted in the fore).15 F .336(ground, after e)-.15 F -2.837(xpansion. Also)-.15 F .337(set to the full pathname)2.837 F .366 -(used to in)144 249.6 R -.2(vo)-.4 G .566 -.1(ke e).2 H .366 +2.673(,e)-.65 G .173(xpands to the last ar)-2.823 F .174 +(gument to the pre-)-.18 F .337(vious simple command e)144 237.6 R -.15 +(xe)-.15 G .337(cuted in the fore).15 F .336(ground, after e)-.15 F +2.836(xpansion. Also)-.15 F .336(set to the full pathname)2.836 F .365 +(used to in)144 249.6 R -.2(vo)-.4 G .565 -.1(ke e).2 H .365 (ach command e).1 F -.15(xe)-.15 G .366(cuted and placed in the en).15 F -.365(vironment e)-.4 F .365(xported to that command.)-.15 F(When checki\ +.366(vironment e)-.4 F .366(xported to that command.)-.15 F(When checki\ ng mail, this parameter holds the name of the mail \214le currently bei\ ng check)144 261.6 Q(ed.)-.1 E F1 -.3(BA)108 273.6 S(SH).3 E F0 (Expands to the full \214lename used to in)144 273.6 Q -.2(vo)-.4 G .2 -.1(ke t).2 H(his instance of).1 E F1(bash)2.5 E F0(.)A F1 -.3(BA)108 -285.6 S(SHOPTS).3 E F0 2.548(Ac)144 297.6 S .049 -(olon-separated list of enabled shell options.)-2.548 F .049(Each w) +285.6 S(SHOPTS).3 E F0 2.549(Ac)144 297.6 S .049 +(olon-separated list of enabled shell options.)-2.549 F .049(Each w) 5.049 F .049(ord in the list is a v)-.1 F .049(alid ar)-.25 F .049 -(gument for the)-.18 F F12.549 E F0 .116(option to the)144 309.6 R +(gument for the)-.18 F F12.548 E F0 .115(option to the)144 309.6 R F1(shopt)2.616 E F0 -.2(bu)2.616 G .116(iltin command \(see).2 F F2 .116 (SHELL B)2.616 F(UIL)-.09 E .116(TIN COMMANDS)-.828 F F0(belo)2.366 E -2.616(w\). The)-.25 F .115(options ap-)2.615 F 1.066(pearing in)144 -321.6 R F2 -.27(BA)3.566 G(SHOPTS).27 E F0 1.066(are those reported as) -3.316 F/F3 10/Times-Italic@0 SF(on)3.796 E F0(by)3.807 E F1(shopt)3.567 -E F0 6.067(.I)C 3.567(ft)-6.067 G 1.067(his v)-3.567 F 1.067 +2.616(w\). The)-.25 F .116(options ap-)2.616 F 1.067(pearing in)144 +321.6 R F2 -.27(BA)3.567 G(SHOPTS).27 E F0 1.067(are those reported as) +3.317 F/F3 10/Times-Italic@0 SF(on)3.797 E F0(by)3.807 E F1(shopt)3.567 +E F0 6.066(.I)C 3.566(ft)-6.066 G 1.066(his v)-3.566 F 1.066 (ariable is in the en)-.25 F(vironment)-.4 E(when)144 333.6 Q F1(bash) -3.142 E F0 .642(starts up, each shell option in the list will be enable\ -d before reading an)3.142 F 3.141(ys)-.15 G .641(tartup \214les.)-3.141 +3.141 E F0 .642(starts up, each shell option in the list will be enable\ +d before reading an)3.141 F 3.142(ys)-.15 G .642(tartup \214les.)-3.142 F(This v)144 345.6 Q(ariable is read-only)-.25 E(.)-.65 E F1 -.3(BA)108 -357.6 S(SHPID).3 E F0 .187(Expands to the process ID of the current)144 -369.6 R F1(bash)2.687 E F0 2.688(process. This)2.688 F(dif)2.688 E .188 -(fers from)-.25 F F1($$)2.688 E F0 .188(under certain circum-)2.688 F +357.6 S(SHPID).3 E F0 .188(Expands to the process ID of the current)144 +369.6 R F1(bash)2.688 E F0 2.687(process. This)2.687 F(dif)2.687 E .187 +(fers from)-.25 F F1($$)2.687 E F0 .187(under certain circum-)2.687 F .548(stances, such as subshells that do not require)144 381.6 R F1(bash) -3.048 E F0 .548(to be re-initialized.)3.048 F .548(Assignments to)5.548 -F F2 -.27(BA)3.048 G(SHPID).27 E F0(ha)144 393.6 Q .3 -.15(ve n)-.2 H +3.048 E F0 .548(to be re-initialized.)3.048 F .549(Assignments to)5.549 +F F2 -.27(BA)3.049 G(SHPID).27 E F0(ha)144 393.6 Q .3 -.15(ve n)-.2 H 2.5(oe).15 G -.25(ff)-2.5 G 2.5(ect. If).25 F F1 -.3(BA)2.5 G(SHPID).3 E F0(is unset, it loses its special properties, e)2.5 E -.15(ve)-.25 G 2.5 (ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.) @@ -1587,95 +1591,95 @@ embers correspond to the internal list of aliases as main-)-.25 F .16 (ve)-.25 G .96 -.4(r, u).15 H(nsetting).4 E 4.503 (array elements currently does not cause aliases to be remo)144 441.6 R -.15(ve)-.15 G 7.003(df).15 G 4.503(rom the alias list.)-7.003 F(If) -9.503 E F1 -.3(BA)144 453.6 S(SH_ALIASES).3 E F0 +9.502 E F1 -.3(BA)144 453.6 S(SH_ALIASES).3 E F0 (is unset, it loses its special properties, e)2.5 E -.15(ve)-.25 G 2.5 (ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.) --2.5 E F1 -.3(BA)108 465.6 S(SH_ARGC).3 E F0 .935(An array v)144 477.6 R -.935(ariable whose v)-.25 F .934 +-2.5 E F1 -.3(BA)108 465.6 S(SH_ARGC).3 E F0 .934(An array v)144 477.6 R +.934(ariable whose v)-.25 F .934 (alues are the number of parameters in each frame of the current)-.25 F -F1(bash)3.434 E F0 -.15(exe)144 489.6 S .535(cution call stack.).15 F +F1(bash)3.435 E F0 -.15(exe)144 489.6 S .535(cution call stack.).15 F .535(The number of parameters to the current subroutine \(shell functio\ -n or script)5.535 F -.15(exe)144 501.6 S .142(cuted with).15 F F1(.) -2.642 E F0(or)2.642 E F1(sour)2.642 E(ce)-.18 E F0 2.642(\)i)C 2.642(sa) --2.642 G 2.642(tt)-2.642 G .142(he top of the stack.)-2.642 F .141 -(When a subroutine is e)5.141 F -.15(xe)-.15 G .141 +n or script)5.535 F -.15(exe)144 501.6 S .141(cuted with).15 F F1(.) +2.641 E F0(or)2.641 E F1(sour)2.641 E(ce)-.18 E F0 2.641(\)i)C 2.641(sa) +-2.641 G 2.641(tt)-2.641 G .142(he top of the stack.)-2.641 F .142 +(When a subroutine is e)5.142 F -.15(xe)-.15 G .142 (cuted, the number of).15 F 1.265(parameters passed is pushed onto)144 513.6 R F2 -.27(BA)3.765 G(SH_ARGC).27 E/F4 9/Times-Roman@0 SF(.)A F0 1.265(The shell sets)5.765 F F2 -.27(BA)3.765 G(SH_ARGC).27 E F0 1.265 -(only when in e)3.515 F(x-)-.15 E .948(tended deb)144 525.6 R .947 +(only when in e)3.515 F(x-)-.15 E .947(tended deb)144 525.6 R .947 (ugging mode \(see the description of the)-.2 F F1(extdeb)3.447 E(ug)-.2 -E F0 .947(option to the)3.447 F F1(shopt)3.447 E F0 -.2(bu)3.447 G .947 -(iltin belo).2 F(w\).)-.25 E(Setting)144 537.6 Q F1(extdeb)3.362 E(ug) --.2 E F0 .862(after the shell has started to e)3.362 F -.15(xe)-.15 G -.863(cute a script, or referencing this v).15 F .863(ariable when)-.25 F +E F0 .947(option to the)3.447 F F1(shopt)3.447 E F0 -.2(bu)3.448 G .948 +(iltin belo).2 F(w\).)-.25 E(Setting)144 537.6 Q F1(extdeb)3.363 E(ug) +-.2 E F0 .863(after the shell has started to e)3.363 F -.15(xe)-.15 G +.862(cute a script, or referencing this v).15 F .862(ariable when)-.25 F F1(extdeb)144 549.6 Q(ug)-.2 E F0 (is not set, may result in inconsistent v)2.5 E(alues.)-.25 E F1 -.3(BA) -108 561.6 S(SH_ARGV).3 E F0 .207(An array v)144 573.6 R .206 +108 561.6 S(SH_ARGV).3 E F0 .206(An array v)144 573.6 R .206 (ariable containing all of the parameters in the current)-.25 F F1(bash) -2.706 E F0 -.15(exe)2.706 G .206(cution call stack.).15 F .206 -(The \214-)5.206 F .567(nal parameter of the last subroutine call is at\ +2.706 E F0 -.15(exe)2.706 G .207(cution call stack.).15 F .207 +(The \214-)5.207 F .567(nal parameter of the last subroutine call is at\ the top of the stack; the \214rst parameter of the initial)144 585.6 R 1.424(call is at the bottom.)144 597.6 R 1.424(When a subroutine is e) 6.424 F -.15(xe)-.15 G 1.424 (cuted, the parameters supplied are pushed onto).15 F F2 -.27(BA)144 -609.6 S(SH_ARGV).27 E F4(.)A F0 .853(The shell sets)5.353 F F2 -.27(BA) -3.353 G(SH_ARGV).27 E F0 .853(only when in e)3.103 F .854(xtended deb) --.15 F .854(ugging mode \(see the de-)-.2 F .476(scription of the)144 -621.6 R F1(extdeb)2.976 E(ug)-.2 E F0 .476(option to the)2.976 F F1 +609.6 S(SH_ARGV).27 E F4(.)A F0 .854(The shell sets)5.354 F F2 -.27(BA) +3.354 G(SH_ARGV).27 E F0 .853(only when in e)3.104 F .853(xtended deb) +-.15 F .853(ugging mode \(see the de-)-.2 F .475(scription of the)144 +621.6 R F1(extdeb)2.975 E(ug)-.2 E F0 .475(option to the)2.975 F F1 (shopt)2.975 E F0 -.2(bu)2.975 G .475(iltin belo).2 F 2.975 -(w\). Setting)-.25 F F1(extdeb)2.975 E(ug)-.2 E F0 .475 -(after the shell has)2.975 F .45(started to e)144 633.6 R -.15(xe)-.15 G +(w\). Setting)-.25 F F1(extdeb)2.976 E(ug)-.2 E F0 .476 +(after the shell has)2.976 F .45(started to e)144 633.6 R -.15(xe)-.15 G .45(cute a script, or referencing this v).15 F .45(ariable when)-.25 F F1(extdeb)2.95 E(ug)-.2 E F0 .45(is not set, may result in in-)2.95 F (consistent v)144 645.6 Q(alues.)-.25 E F1 -.3(BA)108 657.6 S(SH_ARGV0) -.3 E F0 .251(When referenced, this v)144 669.6 R .251(ariable e)-.25 F +.3 E F0 .25(When referenced, this v)144 669.6 R .25(ariable e)-.25 F .251(xpands to the name of the shell or shell script \(identical to)-.15 -F F1($0)2.75 E F0 2.75(;s)C(ee)-2.75 E .04 +F F1($0)2.751 E F0 2.751(;s)C(ee)-2.751 E .041 (the description of special parameter 0 abo)144 681.6 R -.15(ve)-.15 G 2.541(\). Assignment).15 F(to)2.541 E F1 -.3(BA)2.541 G(SH_ARGV0).3 E F0 -.041(causes the v)2.541 F .041(alue as-)-.25 F .216 +.04(causes the v)2.541 F .04(alue as-)-.25 F .216 (signed to also be assigned to)144 693.6 R F1($0)2.716 E F0 5.216(.I)C (f)-5.216 E F1 -.3(BA)2.716 G(SH_ARGV0).3 E F0 .216 (is unset, it loses its special properties, e)2.716 F -.15(ve)-.25 G -2.715(ni).15 G(f)-2.715 E(it is subsequently reset.)144 705.6 Q -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(11)193.45 E 0 Cg EP +2.716(ni).15 G(f)-2.716 E(it is subsequently reset.)144 705.6 Q +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(11)199.835 E 0 Cg EP %%Page: 12 12 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF -.3(BA)108 84 S(SH_CMDS).3 E F0 .667(An associati)144 96 R .967 -.15 -(ve a)-.25 H .667(rray v).15 F .668(ariable whose members correspond to\ - the internal hash table of commands)-.25 F .196(as maintained by the) -144 108 R F1(hash)2.696 E F0 -.2(bu)2.696 G 2.696(iltin. Elements).2 F -.195(added to this array appear in the hash table; ho)2.696 F(we)-.25 E +SF -.3(BA)108 84 S(SH_CMDS).3 E F0 .668(An associati)144 96 R .968 -.15 +(ve a)-.25 H .668(rray v).15 F .668(ariable whose members correspond to\ + the internal hash table of commands)-.25 F .195(as maintained by the) +144 108 R F1(hash)2.695 E F0 -.2(bu)2.695 G 2.695(iltin. Elements).2 F +.196(added to this array appear in the hash table; ho)2.696 F(we)-.25 E -.15(ve)-.25 G -.4(r,).15 G .852(unsetting array elements currently doe\ s not cause command names to be remo)144 120 R -.15(ve)-.15 G 3.352(df) -.15 G .853(rom the hash)-3.352 F 2.5(table. If)144 132 R F1 -.3(BA)2.5 G +.15 G .852(rom the hash)-3.352 F 2.5(table. If)144 132 R F1 -.3(BA)2.5 G (SH_CMDS).3 E F0(is unset, it loses its special properties, e)2.5 E -.15 (ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G -(ubsequently reset.)-2.5 E F1 -.3(BA)108 144 S(SH_COMMAND).3 E F0 1.243 +(ubsequently reset.)-2.5 E F1 -.3(BA)108 144 S(SH_COMMAND).3 E F0 1.242 (The command currently being e)144 156 R -.15(xe)-.15 G 1.243 -(cuted or about to be e).15 F -.15(xe)-.15 G 1.242 -(cuted, unless the shell is e).15 F -.15(xe)-.15 G 1.242(cuting a).15 F -.262(command as the result of a trap, in which case it is the command e) -144 168 R -.15(xe)-.15 G .263(cuting at the time of the trap.).15 F(If) +(cuted or about to be e).15 F -.15(xe)-.15 G 1.243 +(cuted, unless the shell is e).15 F -.15(xe)-.15 G 1.243(cuting a).15 F +.263(command as the result of a trap, in which case it is the command e) +144 168 R -.15(xe)-.15 G .262(cuting at the time of the trap.).15 F(If) 144 180 Q F1 -.3(BA)2.5 G(SH_COMMAND).3 E F0 (is unset, it loses its special properties, e)2.5 E -.15(ve)-.25 G 2.5 (ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.) -2.5 E F1 -.3(BA)108 192 S(SH_EXECUTION_STRING).3 E F0(The command ar) 144 204 Q(gument to the)-.18 E F12.5 E F0(in)2.5 E -.2(vo)-.4 G -(cation option.).2 E F1 -.3(BA)108 216 S(SH_LINENO).3 E F0 .693 +(cation option.).2 E F1 -.3(BA)108 216 S(SH_LINENO).3 E F0 .692 (An array v)144 228 R .692(ariable whose members are the line numbers i\ -n source \214les where each corresponding)-.25 F .969(member of)144 240 -R/F2 9/Times-Bold@0 SF(FUNCN)3.469 E(AME)-.18 E F0 -.1(wa)3.219 G 3.469 -(si).1 G -1.9 -.4(nv o)-3.469 H -.1(ke).4 G(d.).1 E F1(${B)5.969 E -(ASH_LINENO[)-.3 E/F3 10/Times-Italic@0 SF($i)A F1(]})A F0 .97 -(is the line number in the source)3.469 F 14.672(\214le \()144 252 R F1 -(${B)A(ASH_SOURCE[)-.3 E F3($i+1)A F1(]})A F0 17.172(\)w)C(here)-17.172 +n source \214les where each corresponding)-.25 F .97(member of)144 240 R +/F2 9/Times-Bold@0 SF(FUNCN)3.47 E(AME)-.18 E F0 -.1(wa)3.22 G 3.47(si) +.1 G -1.9 -.4(nv o)-3.47 H -.1(ke).4 G(d.).1 E F1(${B)5.969 E +(ASH_LINENO[)-.3 E/F3 10/Times-Italic@0 SF($i)A F1(]})A F0 .969 +(is the line number in the source)3.469 F 14.671(\214le \()144 252 R F1 +(${B)A(ASH_SOURCE[)-.3 E F3($i+1)A F1(]})A F0 17.171(\)w)C(here)-17.171 E F1(${FUNCN)17.172 E(AME[)-.2 E F3($i)A F1(]})A F0 -.1(wa)17.172 G -17.171(sc).1 G 14.671(alled \(or)-17.171 F F1(${B)144 264 Q(ASH_LINENO[) +17.172(sc).1 G 14.672(alled \(or)-17.172 F F1(${B)144 264 Q(ASH_LINENO[) -.3 E F3($i-1)A F1(]})A F0 .115 (if referenced within another shell function\).)2.615 F(Use)5.115 E F2 (LINENO)2.615 E F0 .115(to obtain the)2.365 F(current line number)144 @@ -1683,35 +1687,34 @@ E F1(${FUNCN)17.172 E(AME[)-.2 E F3($i)A F1(]})A F0 -.1(wa)17.172 G -.95(AT)-.74 G(H).95 E F0 4.07(Ac)144 300 S 1.57(olon-separated list of\ directories in which the shell looks for dynamically loadable b)-4.07 F (uiltins)-.2 E(speci\214ed by the)144 312 Q F1(enable)2.5 E F0(command.) -2.5 E F1 -.3(BA)108 324 S(SH_REMA).3 E(TCH)-.95 E F0 .005(An array v)144 -336 R .005(ariable whose members are assigned by the)-.25 F F1(=~)2.506 -E F0 .006(binary operator to the)2.506 F F1([[)2.506 E F0 .006 -(conditional com-)2.506 F 2.507(mand. The)144 348 R .007 -(element with inde)2.507 F 2.507(x0i)-.15 G 2.507(st)-2.507 G .007 -(he portion of the string matching the entire re)-2.507 F .006(gular e) --.15 F(xpression.)-.15 E .997(The element with inde)144 360 R(x)-.15 E -F3(n)3.497 E F0 .997(is the portion of the string matching the)3.497 F -F3(n)3.498 E F0 .998(th parenthesized sube)B(xpres-)-.15 E(sion.)144 372 -Q F1 -.3(BA)108 384 S(SH_SOURCE).3 E F0 .126(An array v)144 396 R .125(\ +2.5 E F1 -.3(BA)108 324 S(SH_REMA).3 E(TCH)-.95 E F0 .006(An array v)144 +336 R .006(ariable whose members are assigned by the)-.25 F F1(=~)2.506 +E F0 .005(binary operator to the)2.506 F F1([[)2.505 E F0 .005 +(conditional com-)2.505 F 2.506(mand. The)144 348 R .007 +(element with inde)2.506 F 2.507(x0i)-.15 G 2.507(st)-2.507 G .007 +(he portion of the string matching the entire re)-2.507 F .007(gular e) +-.15 F(xpression.)-.15 E .998(The element with inde)144 360 R(x)-.15 E +F3(n)3.498 E F0 .997(is the portion of the string matching the)3.498 F +F3(n)3.497 E F0 .997(th parenthesized sube)B(xpres-)-.15 E(sion.)144 372 +Q F1 -.3(BA)108 384 S(SH_SOURCE).3 E F0 .125(An array v)144 396 R .125(\ ariable whose members are the source \214lenames where the correspondin\ -g shell function)-.25 F .78(names in the)144 408 R F2(FUNCN)3.28 E(AME) +g shell function)-.25 F .781(names in the)144 408 R F2(FUNCN)3.28 E(AME) -.18 E F0 .78(array v)3.03 F .78(ariable are de\214ned.)-.25 F .78 -(The shell function)5.78 F F1(${FUNCN)3.281 E(AME[)-.2 E F3($i)A F1(]})A -F0(is)3.281 E(de\214ned in the \214le)144 420 Q F1(${B)2.5 E -(ASH_SOURCE[)-.3 E F3($i)A F1(]})A F0(and called from)2.5 E F1(${B)2.5 E -(ASH_SOURCE[)-.3 E F3($i+1)A F1(]})A F0(.)A F1 -.3(BA)108 432 S -(SH_SUBSHELL).3 E F0 .296 -(Incremented by one within each subshell or subshell en)144 444 R .296 -(vironment when the shell be)-.4 F .296(gins e)-.15 F -.15(xe)-.15 G -(cuting).15 E 1.276(in that en)144 456 R 3.776(vironment. The)-.4 F -1.276(initial v)3.776 F 1.277(alue is 0.)-.25 F(If)6.277 E F1 -.3(BA) -3.777 G(SH_SUBSHELL).3 E F0 1.277(is unset, it loses its special)3.777 F +(The shell function)5.78 F F1(${FUNCN)3.28 E(AME[)-.2 E F3($i)A F1(]})A +F0(is)3.28 E(de\214ned in the \214le)144 420 Q F1(${B)2.5 E(ASH_SOURCE[) +-.3 E F3($i)A F1(]})A F0(and called from)2.5 E F1(${B)2.5 E(ASH_SOURCE[) +-.3 E F3($i+1)A F1(]})A F0(.)A F1 -.3(BA)108 432 S(SH_SUBSHELL).3 E F0 +.296(Incremented by one within each subshell or subshell en)144 444 R +.296(vironment when the shell be)-.4 F .297(gins e)-.15 F -.15(xe)-.15 G +(cuting).15 E 1.277(in that en)144 456 R 3.777(vironment. The)-.4 F +1.277(initial v)3.777 F 1.277(alue is 0.)-.25 F(If)6.277 E F1 -.3(BA) +3.777 G(SH_SUBSHELL).3 E F0 1.276(is unset, it loses its special)3.777 F (properties, e)144 468 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 G 2.5 (ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F1 -.3(BA)108 480 S -(SH_VERSINFO).3 E F0 2.645(Ar)144 492 S .145(eadonly array v)-2.645 F +(SH_VERSINFO).3 E F0 2.644(Ar)144 492 S .144(eadonly array v)-2.644 F .144(ariable whose members hold v)-.25 F .144 -(ersion information for this instance of)-.15 F F1(bash)2.644 E F0 5.144 -(.T)C(he)-5.144 E -.25(va)144 504 S +(ersion information for this instance of)-.15 F F1(bash)2.645 E F0 5.145 +(.T)C(he)-5.145 E -.25(va)144 504 S (lues assigned to the array members are as follo).25 E(ws:)-.25 E F1 -.3 (BA)144 522 S(SH_VERSINFO[).3 E F0(0)A F1(])A F0(The major v)264 522 Q (ersion number \(the)-.15 E F3 -.37(re)2.5 G(lease).37 E F0(\).)A F1 -.3 @@ -1726,211 +1729,211 @@ F3(beta1)2.5 E F0(\).)A F1 -.3(BA)144 582 S(SH_VERSINFO[).3 E F0(5)A F1 /Times-Roman@0 SF(.)A F1 -.3(BA)108 594 S(SH_VERSION).3 E F0 (Expands to a string describing the v)144 606 Q (ersion of this instance of)-.15 E F1(bash)2.5 E F0(.)A F1(COMP_CW)108 -618 Q(ORD)-.1 E F0 .396(An inde)144 630 R 2.896(xi)-.15 G(nto)-2.896 E +618 Q(ORD)-.1 E F0 .397(An inde)144 630 R 2.897(xi)-.15 G(nto)-2.897 E F1(${COMP_W)2.896 E(ORDS})-.1 E F0 .396(of the w)2.896 F .396 -(ord containing the current cursor position.)-.1 F .397(This v)5.397 F -(ari-)-.25 E 1.181(able is a)144 642 R -.25(va)-.2 G 1.181 +(ord containing the current cursor position.)-.1 F .396(This v)5.396 F +(ari-)-.25 E 1.18(able is a)144 642 R -.25(va)-.2 G 1.181 (ilable only in shell functions in).25 F -.2(vo)-.4 G -.1(ke).2 G 3.681 -(db).1 G 3.681(yt)-3.681 G 1.18(he programmable completion f)-3.681 F -1.18(acilities \(see)-.1 F F1(Pr)144 654 Q(ogrammable Completion)-.18 E +(db).1 G 3.681(yt)-3.681 G 1.181(he programmable completion f)-3.681 F +1.181(acilities \(see)-.1 F F1(Pr)144 654 Q(ogrammable Completion)-.18 E F0(belo)2.5 E(w\).)-.25 E F1(COMP_KEY)108 666 Q F0(The k)144 678 Q .3 -.15(ey \()-.1 H(or \214nal k).15 E .3 -.15(ey o)-.1 H 2.5(fak).15 G .3 -.15(ey s)-2.6 H(equence\) used to in).15 E -.2(vo)-.4 G .2 -.1(ke t).2 -H(he current completion function.).1 E F1(COMP_LINE)108 690 Q F0 1.207 +H(he current completion function.).1 E F1(COMP_LINE)108 690 Q F0 1.208 (The current command line.)144 702 R 1.208(This v)6.208 F 1.208 (ariable is a)-.25 F -.25(va)-.2 G 1.208 -(ilable only in shell functions and e).25 F 1.208(xternal com-)-.15 F +(ilable only in shell functions and e).25 F 1.207(xternal com-)-.15 F 1.037(mands in)144 714 R -.2(vo)-.4 G -.1(ke).2 G 3.537(db).1 G 3.537 (yt)-3.537 G 1.037(he programmable completion f)-3.537 F 1.037 (acilities \(see)-.1 F F1(Pr)3.537 E 1.037(ogrammable Completion)-.18 F F0(be-)3.537 E(lo)144 726 Q(w\).)-.25 E(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(12)193.45 E 0 Cg EP +(2022 June 3)150.675 E(12)199.835 E 0 Cg EP %%Page: 13 13 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(COMP_POINT)108 84 Q F0 .666(The inde)144 96 R 3.166(xo)-.15 G 3.166 -(ft)-3.166 G .666(he current cursor position relati)-3.166 F .966 -.15 +SF(COMP_POINT)108 84 Q F0 .667(The inde)144 96 R 3.167(xo)-.15 G 3.167 +(ft)-3.167 G .666(he current cursor position relati)-3.167 F .966 -.15 (ve t)-.25 H 3.166(ot).15 G .666(he be)-3.166 F .666 -(ginning of the current command.)-.15 F .667(If the)5.667 F .535 +(ginning of the current command.)-.15 F .666(If the)5.666 F .534 (current cursor position is at the end of the current command, the v)144 -108 R .534(alue of this v)-.25 F .534(ariable is equal to)-.25 F F1 -(${#COMP_LINE})144 120 Q F0 5.704(.T)C .704(his v)-5.704 F .704 +108 R .535(alue of this v)-.25 F .535(ariable is equal to)-.25 F F1 +(${#COMP_LINE})144 120 Q F0 5.705(.T)C .705(his v)-5.705 F .704 (ariable is a)-.25 F -.25(va)-.2 G .704 -(ilable only in shell functions and e).25 F .705(xternal commands in-) +(ilable only in shell functions and e).25 F .704(xternal commands in-) -.15 F -.2(vo)144 132 S -.1(ke).2 G 2.5(db).1 G 2.5(yt)-2.5 G (he programmable completion f)-2.5 E(acilities \(see)-.1 E F1(Pr)2.5 E (ogrammable Completion)-.18 E F0(belo)2.5 E(w\).)-.25 E F1(COMP_TYPE)108 -144 Q F0 .042(Set to an inte)144 156 R .042(ger v)-.15 F .041(alue corr\ +144 Q F0 .041(Set to an inte)144 156 R .041(ger v)-.15 F .041(alue corr\ esponding to the type of completion attempted that caused a completion) --.25 F .337(function to be called:)144 168 R/F2 10/Times-Italic@0 SF -.5 +-.25 F .338(function to be called:)144 168 R/F2 10/Times-Italic@0 SF -.5 (TA)2.837 G(B).5 E F0 2.837(,f)C .337(or normal completion,)-2.837 F F2 (?)2.837 E F0 2.837(,f)C .337(or listing completions after successi) --2.837 F .638 -.15(ve t)-.25 H(abs,).15 E F2(!)144 180 Q F0 3.068(,f)C -.567(or listing alternati)-3.068 F -.15(ve)-.25 G 3.067(so).15 G 3.067 +-2.837 F .637 -.15(ve t)-.25 H(abs,).15 E F2(!)144 180 Q F0 3.067(,f)C +.567(or listing alternati)-3.067 F -.15(ve)-.25 G 3.067(so).15 G 3.067 (np)-3.067 G .567(artial w)-3.067 F .567(ord completion,)-.1 F F2(@) 3.067 E F0 3.067(,t)C 3.067(ol)-3.067 G .567(ist completions if the w) --3.067 F .567(ord is not un-)-.1 F .417(modi\214ed, or)144 192 R F2(%) -2.917 E F0 2.917(,f)C .417(or menu completion.)-2.917 F .417(This v) -5.417 F .417(ariable is a)-.25 F -.25(va)-.2 G .418 +-3.067 F .567(ord is not un-)-.1 F .418(modi\214ed, or)144 192 R F2(%) +2.918 E F0 2.918(,f)C .418(or menu completion.)-2.918 F .417(This v) +5.417 F .417(ariable is a)-.25 F -.25(va)-.2 G .417 (ilable only in shell functions and e).25 F(xter)-.15 E(-)-.2 E .704 (nal commands in)144 204 R -.2(vo)-.4 G -.1(ke).2 G 3.204(db).1 G 3.204 (yt)-3.204 G .704(he programmable completion f)-3.204 F .704 (acilities \(see)-.1 F F1(Pr)3.204 E .704(ogrammable Comple-)-.18 F (tion)144 216 Q F0(belo)2.5 E(w\).)-.25 E F1(COMP_W)108 228 Q(ORDBREAKS) --.1 E F0 1.335(The set of characters that the)144 240 R F1 -.18(re)3.836 -G(adline).18 E F0 1.336(library treats as w)3.836 F 1.336 -(ord separators when performing w)-.1 F(ord)-.1 E 3.126(completion. If) -144 252 R/F3 9/Times-Bold@0 SF(COMP_W)3.126 E(ORDBREAKS)-.09 E F0 .626 -(is unset, it loses its special properties, e)2.876 F -.15(ve)-.25 G -3.125(ni).15 G 3.125(fi)-3.125 G 3.125(ti)-3.125 G 3.125(ss)-3.125 G -(ubse-)-3.125 E(quently reset.)144 264 Q F1(COMP_W)108 276 Q(ORDS)-.1 E -F0 .653(An array v)144 288 R .653(ariable \(see)-.25 F F1(Arrays)3.153 E -F0(belo)3.153 E .654(w\) consisting of the indi)-.25 F .654(vidual w) --.25 F .654(ords in the current command)-.1 F 3.192(line. The)144 300 R +-.1 E F0 1.336(The set of characters that the)144 240 R F1 -.18(re)3.836 +G(adline).18 E F0 1.336(library treats as w)3.836 F 1.335 +(ord separators when performing w)-.1 F(ord)-.1 E 3.125(completion. If) +144 252 R/F3 9/Times-Bold@0 SF(COMP_W)3.125 E(ORDBREAKS)-.09 E F0 .626 +(is unset, it loses its special properties, e)2.875 F -.15(ve)-.25 G +3.126(ni).15 G 3.126(fi)-3.126 G 3.126(ti)-3.126 G 3.126(ss)-3.126 G +(ubse-)-3.126 E(quently reset.)144 264 Q F1(COMP_W)108 276 Q(ORDS)-.1 E +F0 .654(An array v)144 288 R .654(ariable \(see)-.25 F F1(Arrays)3.154 E +F0(belo)3.154 E .654(w\) consisting of the indi)-.25 F .653(vidual w) +-.25 F .653(ords in the current command)-.1 F 3.191(line. The)144 300 R .692(line is split into w)3.192 F .692(ords as)-.1 F F1 -.18(re)3.192 G (adline).18 E F0 -.1(wo)3.192 G .692(uld split it, using).1 F F3(COMP_W) -3.192 E(ORDBREAKS)-.09 E F0 .691(as de-)2.942 F 1.557(scribed abo)144 -312 R -.15(ve)-.15 G 6.557(.T).15 G 1.557(his v)-6.557 F 1.557 +3.192 E(ORDBREAKS)-.09 E F0 .692(as de-)2.942 F 1.558(scribed abo)144 +312 R -.15(ve)-.15 G 6.558(.T).15 G 1.558(his v)-6.558 F 1.558 (ariable is a)-.25 F -.25(va)-.2 G 1.558 -(ilable only in shell functions in).25 F -.2(vo)-.4 G -.1(ke).2 G 4.058 -(db).1 G 4.058(yt)-4.058 G 1.558(he programmable)-4.058 F(completion f) +(ilable only in shell functions in).25 F -.2(vo)-.4 G -.1(ke).2 G 4.057 +(db).1 G 4.057(yt)-4.057 G 1.557(he programmable)-4.057 F(completion f) 144 324 Q(acilities \(see)-.1 E F1(Pr)2.5 E(ogrammable Completion)-.18 E -F0(belo)2.5 E(w\).)-.25 E F1(COPR)108 336 Q(OC)-.3 E F0 .169(An array v) -144 348 R .169(ariable \(see)-.25 F F1(Arrays)2.669 E F0(belo)2.669 E +F0(belo)2.5 E(w\).)-.25 E F1(COPR)108 336 Q(OC)-.3 E F0 .168(An array v) +144 348 R .168(ariable \(see)-.25 F F1(Arrays)2.668 E F0(belo)2.669 E .169 (w\) created to hold the \214le descriptors for output from and input) -.25 F(to an unnamed coprocess \(see)144 360 Q F1(Copr)2.5 E(ocesses) -.18 E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F1(DIRST)108 372 Q -.55(AC) --.9 G(K).55 E F0 .789(An array v)144 384 R .789(ariable \(see)-.25 F F1 -(Arrays)3.289 E F0(belo)3.289 E .789 +-.9 G(K).55 E F0 .79(An array v)144 384 R .79(ariable \(see)-.25 F F1 +(Arrays)3.29 E F0(belo)3.289 E .789 (w\) containing the current contents of the directory stack.)-.25 F(Di-) -5.79 E .099(rectories appear in the stack in the order the)144 396 R +5.789 E .099(rectories appear in the stack in the order the)144 396 R 2.599(ya)-.15 G .099(re displayed by the)-2.599 F F1(dirs)2.599 E F0 -.2 -(bu)2.599 G 2.598(iltin. Assigning).2 F .098(to mem-)2.598 F .84 +(bu)2.599 G 2.599(iltin. Assigning).2 F .099(to mem-)2.599 F .84 (bers of this array v)144 408 R .84 (ariable may be used to modify directories already in the stack, b)-.25 -F .84(ut the)-.2 F F1(pushd)3.34 E F0(and)144 420 Q F1(popd)3.451 E F0 --.2(bu)3.451 G .951(iltins must be used to add and remo).2 F 1.251 -.15 -(ve d)-.15 H 3.45(irectories. Assignment).15 F .95(to this v)3.45 F .95 -(ariable will)-.25 F .378(not change the current directory)144 432 R -5.378(.I)-.65 G(f)-5.378 E F3(DIRST)2.878 E -.495(AC)-.81 G(K).495 E F0 -.379(is unset, it loses its special properties, e)2.628 F -.15(ve)-.25 G -2.879(ni).15 G 2.879(fi)-2.879 G 2.879(ti)-2.879 G(s)-2.879 E +F .84(ut the)-.2 F F1(pushd)3.34 E F0(and)144 420 Q F1(popd)3.45 E F0 +-.2(bu)3.45 G .951(iltins must be used to add and remo).2 F 1.251 -.15 +(ve d)-.15 H 3.451(irectories. Assignment).15 F .951(to this v)3.451 F +.951(ariable will)-.25 F .379(not change the current directory)144 432 R +5.379(.I)-.65 G(f)-5.379 E F3(DIRST)2.879 E -.495(AC)-.81 G(K).495 E F0 +.378(is unset, it loses its special properties, e)2.629 F -.15(ve)-.25 G +2.878(ni).15 G 2.878(fi)-2.878 G 2.878(ti)-2.878 G(s)-2.878 E (subsequently reset.)144 444 Q F1(EPOCHREAL)108 456 Q(TIME)-.92 E F0 -.338(Each time this parameter is referenced, it e)144 468 R .337 +.337(Each time this parameter is referenced, it e)144 468 R .338 (xpands to the number of seconds since the Unix Epoch)-.15 F(\(see)144 -480 Q F2(time)2.916 E F0 .416(\(3\)\) as a \215oating point v)B .417 -(alue with micro-second granularity)-.25 F 5.417(.A)-.65 G .417 -(ssignments to)-5.417 F F3(EPOCHRE-)2.917 E(AL)144 492 Q(TIME)-.828 E F0 -1.091(are ignored.)3.341 F(If)6.091 E F3(EPOCHREAL)3.59 E(TIME)-.828 E -F0 1.09(is unset, it loses its special properties, e)3.34 F -.15(ve)-.25 -G 3.59(ni).15 G 3.59(fi)-3.59 G 3.59(ti)-3.59 G(s)-3.59 E -(subsequently reset.)144 504 Q F1(EPOCHSECONDS)108 516 Q F0 .337 -(Each time this parameter is referenced, it e)144 528 R .338 +480 Q F2(time)2.917 E F0 .417(\(3\)\) as a \215oating point v)B .416 +(alue with micro-second granularity)-.25 F 5.416(.A)-.65 G .416 +(ssignments to)-5.416 F F3(EPOCHRE-)2.916 E(AL)144 492 Q(TIME)-.828 E F0 +1.09(are ignored.)3.34 F(If)6.09 E F3(EPOCHREAL)3.59 E(TIME)-.828 E F0 +1.09(is unset, it loses its special properties, e)3.34 F -.15(ve)-.25 G +3.591(ni).15 G 3.591(fi)-3.591 G 3.591(ti)-3.591 G(s)-3.591 E +(subsequently reset.)144 504 Q F1(EPOCHSECONDS)108 516 Q F0 .338 +(Each time this parameter is referenced, it e)144 528 R .337 (xpands to the number of seconds since the Unix Epoch)-.15 F(\(see)144 -540 Q F2(time)4.042 E F0 4.042(\(3\)\). Assignments)B(to)4.042 E F3 -(EPOCHSECONDS)4.042 E F0 1.542(are ignored.)3.792 F(If)6.542 E F3 -(EPOCHSECONDS)4.041 E F0 1.541(is unset, it)3.791 F +540 Q F2(time)4.041 E F0 4.041(\(3\)\). Assignments)B(to)4.041 E F3 +(EPOCHSECONDS)4.041 E F0 1.542(are ignored.)3.792 F(If)6.542 E F3 +(EPOCHSECONDS)4.042 E F0 1.542(is unset, it)3.792 F (loses its special properties, e)144 552 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F1 -(EUID)108 564 Q F0 1.103(Expands to the ef)144 564 R(fecti)-.25 E 1.403 +(EUID)108 564 Q F0 1.104(Expands to the ef)144 564 R(fecti)-.25 E 1.403 -.15(ve u)-.25 H 1.103(ser ID of the current user).15 F 3.603(,i)-.4 G -1.103(nitialized at shell startup.)-3.603 F 1.104(This v)6.103 F 1.104 +1.103(nitialized at shell startup.)-3.603 F 1.103(This v)6.103 F 1.103 (ariable is)-.25 F(readonly)144 576 Q(.)-.65 E F1(FUNCN)108 588 Q(AME) --.2 E F0 .479(An array v)144 600 R .479 +-.2 E F0 .478(An array v)144 600 R .479 (ariable containing the names of all shell functions currently in the e) --.25 F -.15(xe)-.15 G .478(cution call stack.).15 F .276 -(The element with inde)144 612 R 2.776(x0i)-.15 G 2.776(st)-2.776 G .276 -(he name of an)-2.776 F 2.777(yc)-.15 G(urrently-e)-2.777 E -.15(xe)-.15 -G .277(cuting shell function.).15 F .277(The bottom-most)5.277 F .385 +-.25 F -.15(xe)-.15 G .479(cution call stack.).15 F .277 +(The element with inde)144 612 R 2.777(x0i)-.15 G 2.777(st)-2.777 G .276 +(he name of an)-2.777 F 2.776(yc)-.15 G(urrently-e)-2.776 E -.15(xe)-.15 +G .276(cuting shell function.).15 F .276(The bottom-most)5.276 F .384 (element \(the one with the highest inde)144 624 R .384(x\) is)-.15 F/F4 -10/Courier@0 SF("main")2.884 E F0 5.384(.T)C .384(his v)-5.384 F .384 -(ariable e)-.25 F .384(xists only when a shell func-)-.15 F .075 -(tion is e)144 636 R -.15(xe)-.15 G 2.575(cuting. Assignments).15 F(to) -2.575 E F3(FUNCN)2.575 E(AME)-.18 E F0(ha)2.325 E .376 -.15(ve n)-.2 H -2.576(oe).15 G -.25(ff)-2.576 G 2.576(ect. If).25 F F3(FUNCN)2.576 E -(AME)-.18 E F0 .076(is unset, it loses its)2.326 F +10/Courier@0 SF("main")2.884 E F0 5.384(.T)C .384(his v)-5.384 F .385 +(ariable e)-.25 F .385(xists only when a shell func-)-.15 F .076 +(tion is e)144 636 R -.15(xe)-.15 G 2.576(cuting. Assignments).15 F(to) +2.576 E F3(FUNCN)2.576 E(AME)-.18 E F0(ha)2.326 E .376 -.15(ve n)-.2 H +2.576(oe).15 G -.25(ff)-2.576 G 2.576(ect. If).25 F F3(FUNCN)2.575 E +(AME)-.18 E F0 .075(is unset, it loses its)2.325 F (special properties, e)144 648 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 -G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E .111(This v)144 +G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E .11(This v)144 666 R .111(ariable can be used with)-.25 F F1 -.3(BA)2.611 G(SH_LINENO) .3 E F0(and)2.611 E F1 -.3(BA)2.611 G(SH_SOURCE).3 E F0 5.111(.E)C .111 -(ach element of)-5.111 F F1(FUNC-)2.61 E -.2(NA)144 678 S(ME).2 E F0 +(ach element of)-5.111 F F1(FUNC-)2.611 E -.2(NA)144 678 S(ME).2 E F0 1.404(has corresponding elements in)3.904 F F1 -.3(BA)3.904 G(SH_LINENO) .3 E F0(and)3.904 E F1 -.3(BA)3.904 G(SH_SOURCE).3 E F0 1.404 (to describe the)3.904 F .012(call stack.)144 690 R -.15(Fo)5.012 G 2.512(ri).15 G(nstance,)-2.512 E F1(${FUNCN)2.512 E(AME[)-.2 E F2($i)A F1(]})A F0 -.1(wa)2.512 G 2.512(sc).1 G .012(alled from the \214le) --2.512 F F1(${B)2.512 E(ASH_SOURCE[)-.3 E F2($i+1)A F1(]})A F0 1.183 -(at line number)144 702 R F1(${B)3.683 E(ASH_LINENO[)-.3 E F2($i)A F1 -(]})A F0 6.183(.T)C(he)-6.183 E F1(caller)3.683 E F0 -.2(bu)3.683 G -1.184(iltin displays the current call stack using).2 F -(this information.)144 714 Q(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 -E(13)193.45 E 0 Cg EP +-2.512 F F1(${B)2.512 E(ASH_SOURCE[)-.3 E F2($i+1)A F1(]})A F0 1.184 +(at line number)144 702 R F1(${B)3.684 E(ASH_LINENO[)-.3 E F2($i)A F1 +(]})A F0 6.184(.T)C(he)-6.184 E F1(caller)3.683 E F0 -.2(bu)3.683 G +1.183(iltin displays the current call stack using).2 F +(this information.)144 714 Q(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E +(13)199.835 E 0 Cg EP %%Page: 14 14 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(GR)108 84 Q(OUPS)-.3 E F0 1.229(An array v)144 96 R 1.228(ariable co\ +SF(GR)108 84 Q(OUPS)-.3 E F0 1.228(An array v)144 96 R 1.228(ariable co\ ntaining the list of groups of which the current user is a member)-.25 F -6.228(.A)-.55 G(ssign-)-6.228 E .571(ments to)144 108 R/F2 9 -/Times-Bold@0 SF(GR)3.071 E(OUPS)-.27 E F0(ha)2.822 E .872 -.15(ve n)-.2 +6.229(.A)-.55 G(ssign-)-6.229 E .572(ments to)144 108 R/F2 9 +/Times-Bold@0 SF(GR)3.072 E(OUPS)-.27 E F0(ha)2.822 E .872 -.15(ve n)-.2 H 3.072(oe).15 G -.25(ff)-3.072 G 3.072(ect. If).25 F F2(GR)3.072 E (OUPS)-.27 E F0 .572(is unset, it loses its special properties, e)2.822 -F -.15(ve)-.25 G 3.072(ni).15 G 3.072(fi)-3.072 G 3.072(ti)-3.072 G(s) --3.072 E(subsequently reset.)144 120 Q F1(HISTCMD)108 132 Q F0 2.811 -(The history number)144 144 R 5.311(,o)-.4 G 5.311(ri)-5.311 G(nde) --5.311 E 5.311(xi)-.15 G 5.311(nt)-5.311 G 2.811 -(he history list, of the current command.)-5.311 F 2.81(Assignments to) -7.81 F F2(HISTCMD)144 156 Q F0 1.134(are ignored.)3.384 F(If)6.134 E F2 -(HISTCMD)3.634 E F0 1.135(is unset, it loses its special properties, e) -3.385 F -.15(ve)-.25 G 3.635(ni).15 G 3.635(fi)-3.635 G 3.635(ti)-3.635 -G 3.635(ss)-3.635 G(ubse-)-3.635 E(quently reset.)144 168 Q F1(HOSTN)108 +F -.15(ve)-.25 G 3.072(ni).15 G 3.071(fi)-3.072 G 3.071(ti)-3.071 G(s) +-3.071 E(subsequently reset.)144 120 Q F1(HISTCMD)108 132 Q F0 2.81 +(The history number)144 144 R 5.31(,o)-.4 G 5.31(ri)-5.31 G(nde)-5.31 E +5.311(xi)-.15 G 5.311(nt)-5.311 G 2.811 +(he history list, of the current command.)-5.311 F 2.811(Assignments to) +7.811 F F2(HISTCMD)144 156 Q F0 1.135(are ignored.)3.385 F(If)6.135 E F2 +(HISTCMD)3.635 E F0 1.135(is unset, it loses its special properties, e) +3.385 F -.15(ve)-.25 G 3.634(ni).15 G 3.634(fi)-3.634 G 3.634(ti)-3.634 +G 3.634(ss)-3.634 G(ubse-)-3.634 E(quently reset.)144 168 Q F1(HOSTN)108 180 Q(AME)-.2 E F0(Automatically set to the name of the current host.) -144 192 Q F1(HOSTTYPE)108 204 Q F0 .223(Automatically set to a string t\ +144 192 Q F1(HOSTTYPE)108 204 Q F0 .222(Automatically set to a string t\ hat uniquely describes the type of machine on which)144 216 R F1(bash) -2.722 E F0 .222(is e)2.722 F -.15(xe)-.15 G(cut-).15 E 2.5(ing. The)144 +2.723 E F0 .223(is e)2.723 F -.15(xe)-.15 G(cut-).15 E 2.5(ing. The)144 228 R(def)2.5 E(ault is system-dependent.)-.1 E F1(LINENO)108 240 Q F0 1.408(Each time this parameter is referenced, the shell substitutes a d\ ecimal number representing the)144 252 R .078(current sequential line n\ -umber \(starting with 1\) within a script or function.)144 264 R .078 -(When not in a script or)5.078 F .306(function, the v)144 276 R .306 -(alue substituted is not guaranteed to be meaningful.)-.25 F(If)5.307 E -F2(LINENO)2.807 E F0 .307(is unset, it loses its)2.557 F +umber \(starting with 1\) within a script or function.)144 264 R .079 +(When not in a script or)5.078 F .307(function, the v)144 276 R .307 +(alue substituted is not guaranteed to be meaningful.)-.25 F(If)5.306 E +F2(LINENO)2.806 E F0 .306(is unset, it loses its)2.556 F (special properties, e)144 288 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F1(MA)108 300 Q (CHTYPE)-.55 E F0 .898(Automatically set to a string that fully describ\ -es the system type on which)144 312 R F1(bash)3.398 E F0 .898(is e)3.398 -F -.15(xe)-.15 G .898(cuting, in).15 F(the standard GNU)144 324 Q/F3 10 +es the system type on which)144 312 R F1(bash)3.398 E F0 .899(is e)3.398 +F -.15(xe)-.15 G .899(cuting, in).15 F(the standard GNU)144 324 Q/F3 10 /Times-Italic@0 SF(cpu-company-system)2.5 E F0 2.5(format. The)2.5 F -(def)2.5 E(ault is system-dependent.)-.1 E F1(MAPFILE)108 336 Q F0 .293 -(An array v)144 348 R .293(ariable \(see)-.25 F F1(Arrays)2.793 E F0 -(belo)2.793 E .293(w\) created to hold the te)-.25 F .294 -(xt read by the)-.15 F F1(map\214le)2.794 E F0 -.2(bu)2.794 G .294 +(def)2.5 E(ault is system-dependent.)-.1 E F1(MAPFILE)108 336 Q F0 .294 +(An array v)144 348 R .294(ariable \(see)-.25 F F1(Arrays)2.794 E F0 +(belo)2.794 E .294(w\) created to hold the te)-.25 F .293 +(xt read by the)-.15 F F1(map\214le)2.793 E F0 -.2(bu)2.793 G .293 (iltin when no).2 F -.25(va)144 360 S(riable name is supplied.).25 E F1 (OLDPWD)108 372 Q F0(The pre)144 384 Q(vious w)-.25 E (orking directory as set by the)-.1 E F1(cd)2.5 E F0(command.)2.5 E F1 -(OPT)108 396 Q(ARG)-.9 E F0 1.627(The v)144 408 R 1.627 +(OPT)108 396 Q(ARG)-.9 E F0 1.626(The v)144 408 R 1.627 (alue of the last option ar)-.25 F 1.627(gument processed by the)-.18 F -F1(getopts)4.127 E F0 -.2(bu)4.127 G 1.626(iltin command \(see).2 F F2 -(SHELL)4.126 E -.09(BU)144 420 S(IL).09 E(TIN COMMANDS)-.828 E F0(belo) -2.25 E(w\).)-.25 E F1(OPTIND)108 432 Q F0 1.651(The inde)144 444 R 4.151 -(xo)-.15 G 4.151(ft)-4.151 G 1.651(he ne)-4.151 F 1.651(xt ar)-.15 F -1.652(gument to be processed by the)-.18 F F1(getopts)4.152 E F0 -.2(bu) -4.152 G 1.652(iltin command \(see).2 F F2(SHELL)4.152 E -.09(BU)144 456 +F1(getopts)4.127 E F0 -.2(bu)4.127 G 1.627(iltin command \(see).2 F F2 +(SHELL)4.127 E -.09(BU)144 420 S(IL).09 E(TIN COMMANDS)-.828 E F0(belo) +2.25 E(w\).)-.25 E F1(OPTIND)108 432 Q F0 1.652(The inde)144 444 R 4.152 +(xo)-.15 G 4.152(ft)-4.152 G 1.652(he ne)-4.152 F 1.652(xt ar)-.15 F +1.652(gument to be processed by the)-.18 F F1(getopts)4.151 E F0 -.2(bu) +4.151 G 1.651(iltin command \(see).2 F F2(SHELL)4.151 E -.09(BU)144 456 S(IL).09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F1(OSTYPE)108 468 Q F0 .329(Automatically set to a string that describes the operatin\ -g system on which)144 480 R F1(bash)2.829 E F0 .329(is e)2.829 F -.15 -(xe)-.15 G 2.829(cuting. The).15 F(def)144 492 Q -(ault is system-dependent.)-.1 E F1(PIPEST)108 504 Q -.95(AT)-.9 G(US) -.95 E F0 .61(An array v)144 516 R .61(ariable \(see)-.25 F F1(Arrays) -3.11 E F0(belo)3.11 E .61(w\) containing a list of e)-.25 F .61 -(xit status v)-.15 F .61(alues from the processes in)-.25 F -(the most-recently-e)144 528 Q -.15(xe)-.15 G(cuted fore).15 E +g system on which)144 480 R F1(bash)2.83 E F0 .33(is e)2.83 F -.15(xe) +-.15 G 2.83(cuting. The).15 F(def)144 492 Q(ault is system-dependent.) +-.1 E F1(PIPEST)108 504 Q -.95(AT)-.9 G(US).95 E F0 .61(An array v)144 +516 R .61(ariable \(see)-.25 F F1(Arrays)3.11 E F0(belo)3.11 E .61 +(w\) containing a list of e)-.25 F .61(xit status v)-.15 F .61 +(alues from the processes in)-.25 F(the most-recently-e)144 528 Q -.15 +(xe)-.15 G(cuted fore).15 E (ground pipeline \(which may contain only a single command\).)-.15 E F1 (PPID)108 540 Q F0(The process ID of the shell')144 540 Q 2.5(sp)-.55 G 2.5(arent. This)-2.5 F -.25(va)2.5 G(riable is readonly).25 E(.)-.65 E @@ -1938,155 +1941,154 @@ F1(PWD)108 552 Q F0(The current w)144 552 Q (orking directory as set by the)-.1 E F1(cd)2.5 E F0(command.)2.5 E F1 (RANDOM)108 564 Q F0 .417(Each time this parameter is referenced, it e) 144 576 R .417(xpands to a random inte)-.15 F .417 -(ger between 0 and 32767.)-.15 F(As-)5.416 E .55(signing a v)144 588 R -.55(alue to)-.25 F F2(RANDOM)3.05 E F0 .551 -(initializes \(seeds\) the sequence of random numbers.)2.801 F(If)5.551 -E F2(RANDOM)3.051 E F0(is)2.801 E -(unset, it loses its special properties, e)144 600 Q -.15(ve)-.25 G 2.5 -(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.) --2.5 E F1(READLINE_ARGUMENT)108 612 Q F0(An)144 624 Q 4.456(yn)-.15 G -1.956(umeric ar)-4.456 F 1.956(gument gi)-.18 F -.15(ve)-.25 G 4.456(nt) -.15 G 4.456(oaR)-4.456 G 1.956(eadline command that w)-4.456 F 1.956 -(as de\214ned using)-.1 F/F4 10/Courier@0 SF 1.955(bind -x)4.455 F F0 -(\(see)4.455 E F2(SHELL B)144 636 Q(UIL)-.09 E(TIN COMMANDS)-.828 E F0 -(belo)2.25 E(w\) when it w)-.25 E(as in)-.1 E -.2(vo)-.4 G -.1(ke).2 G -(d.).1 E F1(READLINE_LINE)108 648 Q F0 1.546(The contents of the)144 660 -R F1 -.18(re)4.047 G(adline).18 E F0 1.547(line b)4.047 F(uf)-.2 E(fer) --.25 E 4.047(,f)-.4 G 1.547(or use with)-4.047 F F4 1.547(bind -x)4.047 -F F0(\(see)4.047 E F2 1.547(SHELL B)4.047 F(UIL)-.09 E 1.547(TIN COM-) --.828 F(MANDS)144 672 Q F0(belo)2.25 E(w\).)-.25 E F1(READLINE_MARK)108 -684 Q F0 .107(The position of the mark \(sa)144 696 R -.15(ve)-.2 G -2.607(di).15 G .107(nsertion point\) in the)-2.607 F F1 -.18(re)2.606 G -(adline).18 E F0 .106(line b)2.606 F(uf)-.2 E(fer)-.25 E 2.606(,f)-.4 G -.106(or use with)-2.606 F F4 .106(bind -x)2.606 F F0(\(see)144 708 Q F2 -1.016(SHELL B)3.516 F(UIL)-.09 E 1.016(TIN COMMANDS)-.828 F F0(belo) -3.266 E 3.516(w\). The)-.25 F 1.017 -(characters between the insertion point and the)3.516 F -(mark are often called the)144 720 Q F3 -.37(re)2.5 G(gion)-.03 E F0(.)A -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(14)193.45 E 0 Cg EP +(ger between 0 and 32767.)-.15 F(As-)5.417 E .551(signing a v)144 588 R +.551(alue to)-.25 F F2(RANDOM)3.051 E F0 .551 +(initializes \(seeds\) the sequence of random numbers.)2.801 F(If)5.55 E +F2(RANDOM)3.05 E F0(is)2.8 E(unset, it loses its special properties, e) +144 600 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5 +(ss)-2.5 G(ubsequently reset.)-2.5 E F1(READLINE_ARGUMENT)108 612 Q F0 +(An)144 624 Q 4.455(yn)-.15 G 1.955(umeric ar)-4.455 F 1.955(gument gi) +-.18 F -.15(ve)-.25 G 4.455(nt).15 G 4.456(oaR)-4.455 G 1.956 +(eadline command that w)-4.456 F 1.956(as de\214ned using)-.1 F/F4 10 +/Courier@0 SF 1.956(bind -x)4.456 F F0(\(see)4.456 E F2(SHELL B)144 636 +Q(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\) when it w)-.25 E +(as in)-.1 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E F1(READLINE_LINE)108 648 Q +F0 1.547(The contents of the)144 660 R F1 -.18(re)4.047 G(adline).18 E +F0 1.547(line b)4.047 F(uf)-.2 E(fer)-.25 E 4.047(,f)-.4 G 1.547 +(or use with)-4.047 F F4 1.547(bind -x)4.047 F F0(\(see)4.047 E F2 1.546 +(SHELL B)4.047 F(UIL)-.09 E 1.546(TIN COM-)-.828 F(MANDS)144 672 Q F0 +(belo)2.25 E(w\).)-.25 E F1(READLINE_MARK)108 684 Q F0 .106 +(The position of the mark \(sa)144 696 R -.15(ve)-.2 G 2.606(di).15 G +.106(nsertion point\) in the)-2.606 F F1 -.18(re)2.607 G(adline).18 E F0 +.107(line b)2.607 F(uf)-.2 E(fer)-.25 E 2.607(,f)-.4 G .107(or use with) +-2.607 F F4 .107(bind -x)2.607 F F0(\(see)144 708 Q F2 1.017(SHELL B) +3.517 F(UIL)-.09 E 1.017(TIN COMMANDS)-.828 F F0(belo)3.267 E 3.516 +(w\). The)-.25 F 1.016(characters between the insertion point and the) +3.516 F(mark are often called the)144 720 Q F3 -.37(re)2.5 G(gion)-.03 E +F0(.)A(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(14)199.835 E 0 Cg EP %%Page: 15 15 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(READLINE_POINT)108 84 Q F0 .314 +SF(READLINE_POINT)108 84 Q F0 .313 (The position of the insertion point in the)144 96 R F1 -.18(re)2.813 G (adline).18 E F0 .313(line b)2.813 F(uf)-.2 E(fer)-.25 E 2.813(,f)-.4 G -.313(or use with)-2.813 F/F2 10/Courier@0 SF .313(bind -x)2.813 F F0 -(\(see)2.813 E/F3 9/Times-Bold@0 SF(SHELL)2.813 E -.09(BU)144 108 S(IL) +.313(or use with)-2.813 F/F2 10/Courier@0 SF .314(bind -x)2.814 F F0 +(\(see)2.814 E/F3 9/Times-Bold@0 SF(SHELL)2.814 E -.09(BU)144 108 S(IL) .09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F1(REPL)108 120 Q (Y)-.92 E F0(Set to the line of input read by the)144 132 Q F1 -.18(re) 2.5 G(ad).18 E F0 -.2(bu)2.5 G(iltin command when no ar).2 E -(guments are supplied.)-.18 E F1(SECONDS)108 144 Q F0 .177 -(Each time this parameter is referenced, it e)144 156 R .178 +(guments are supplied.)-.18 E F1(SECONDS)108 144 Q F0 .178 +(Each time this parameter is referenced, it e)144 156 R .177 (xpands to the number of seconds since shell in)-.15 F -.2(vo)-.4 G -(cation.).2 E .713(If a v)144 168 R .712(alue is assigned to)-.25 F F3 +(cation.).2 E .712(If a v)144 168 R .712(alue is assigned to)-.25 F F3 (SECONDS)3.212 E/F4 9/Times-Roman@0 SF(,)A F0 .712(the v)2.962 F .712 -(alue returned upon subsequent references is the number)-.25 F .627 +(alue returned upon subsequent references is the number)-.25 F .628 (of seconds since the assignment plus the v)144 180 R .627 -(alue assigned.)-.25 F .628(The number of seconds at shell in)5.627 F --.2(vo)-.4 G(ca-).2 E .112(tion and the current time are al)144 192 R +(alue assigned.)-.25 F .627(The number of seconds at shell in)5.627 F +-.2(vo)-.4 G(ca-).2 E .111(tion and the current time are al)144 192 R -.1(wa)-.1 G .111(ys determined by querying the system clock.).1 F(If) -5.111 E F3(SECONDS)2.611 E F0 .111(is un-)2.361 F +5.112 E F3(SECONDS)2.612 E F0 .112(is un-)2.362 F (set, it loses its special properties, e)144 204 Q -.15(ve)-.25 G 2.5 (ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.) --2.5 E F1(SHELLOPTS)108 216 Q F0 3.262(Ac)144 228 S .763 -(olon-separated list of enabled shell options.)-3.262 F .763(Each w) +-2.5 E F1(SHELLOPTS)108 216 Q F0 3.263(Ac)144 228 S .763 +(olon-separated list of enabled shell options.)-3.263 F .763(Each w) 5.763 F .763(ord in the list is a v)-.1 F .763(alid ar)-.25 F .763 -(gument for the)-.18 F F1144 240 Q F0 1.174(option to the)3.674 F -F1(set)3.674 E F0 -.2(bu)3.674 G 1.174(iltin command \(see).2 F F3 1.173 -(SHELL B)3.673 F(UIL)-.09 E 1.173(TIN COMMANDS)-.828 F F0(belo)3.423 E -3.673(w\). The)-.25 F(options)3.673 E .019(appearing in)144 252 R F3 -(SHELLOPTS)2.519 E F0 .019(are those reported as)2.269 F/F5 10 +(gument for the)-.18 F F1144 240 Q F0 1.173(option to the)3.673 F +F1(set)3.673 E F0 -.2(bu)3.673 G 1.173(iltin command \(see).2 F F3 1.174 +(SHELL B)3.674 F(UIL)-.09 E 1.174(TIN COMMANDS)-.828 F F0(belo)3.424 E +3.674(w\). The)-.25 F(options)3.674 E .02(appearing in)144 252 R F3 +(SHELLOPTS)2.52 E F0 .019(are those reported as)2.27 F/F5 10 /Times-Italic@0 SF(on)2.749 E F0(by)2.759 E F1 .019(set \255o)2.519 F F0 -5.019(.I)C 2.519(ft)-5.019 G .019(his v)-2.519 F .02 +5.019(.I)C 2.519(ft)-5.019 G .019(his v)-2.519 F .019 (ariable is in the en)-.25 F(vironment)-.4 E(when)144 264 Q F1(bash) -3.142 E F0 .642(starts up, each shell option in the list will be enable\ -d before reading an)3.142 F 3.141(ys)-.15 G .641(tartup \214les.)-3.141 +3.141 E F0 .642(starts up, each shell option in the list will be enable\ +d before reading an)3.141 F 3.142(ys)-.15 G .642(tartup \214les.)-3.142 F(This v)144 276 Q(ariable is read-only)-.25 E(.)-.65 E F1(SHL)108 288 Q (VL)-.92 E F0(Incremented by one each time an instance of)144 300 Q F1 -(bash)2.5 E F0(is started.)2.5 E F1(SRANDOM)108 312 Q F0 .76(This v)144 -324 R .76(ariable e)-.25 F .761(xpands to a 32-bit pseudo-random number\ - each time it is referenced. The random)-.15 F .565 +(bash)2.5 E F0(is started.)2.5 E F1(SRANDOM)108 312 Q F0 .761(This v)144 +324 R .761(ariable e)-.25 F .761(xpands to a 32-bit pseudo-random numbe\ +r each time it is referenced. The random)-.15 F .564 (number generator is not linear on systems that support)144 336 R F2 -(/dev/urandom)3.064 E F0(or)3.064 E F5(ar)3.064 E(c4r)-.37 E(andom)-.15 -E F0 3.064(,s)C 3.064(oe)-3.064 G(ach)-3.064 E .788 +(/dev/urandom)3.065 E F0(or)3.065 E F5(ar)3.065 E(c4r)-.37 E(andom)-.15 +E F0 3.065(,s)C 3.065(oe)-3.065 G(ach)-3.065 E .788 (returned number has no relationship to the numbers preceding it.)144 -348 R .788(The random number generator)5.788 F .088 +348 R .787(The random number generator)5.787 F .087 (cannot be seeded, so assignments to this v)144 360 R .087(ariable ha) --.25 F .387 -.15(ve n)-.2 H 2.587(oe).15 G -.25(ff)-2.587 G 2.587 -(ect. If).25 F F3(SRANDOM)2.587 E F0 .087(is unset, it loses its)2.337 F +-.25 F .387 -.15(ve n)-.2 H 2.587(oe).15 G -.25(ff)-2.587 G 2.588 +(ect. If).25 F F3(SRANDOM)2.588 E F0 .088(is unset, it loses its)2.338 F (special properties, e)144 372 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F1(UID)108 384 Q F0(Expands to the user ID of the current user)144 384 Q 2.5(,i)-.4 G (nitialized at shell startup.)-2.5 E(This v)5 E(ariable is readonly)-.25 -E(.)-.65 E .993(The follo)108 400.8 R .993(wing v)-.25 F .994 +E(.)-.65 E .994(The follo)108 400.8 R .994(wing v)-.25 F .994 (ariables are used by the shell.)-.25 F .994(In some cases,)5.994 F F1 -(bash)3.494 E F0 .994(assigns a def)3.494 F .994(ault v)-.1 F .994 +(bash)3.494 E F0 .994(assigns a def)3.494 F .994(ault v)-.1 F .993 (alue to a v)-.25 F(ariable;)-.25 E(these cases are noted belo)108 412.8 Q -.65(w.)-.25 G F1 -.3(BA)108 429.6 S(SH_COMP).3 E -.95(AT)-.74 G F0 -.503(The v)144 441.6 R .502(alue is used to set the shell')-.25 F 3.002 +.502(The v)144 441.6 R .502(alue is used to set the shell')-.25 F 3.002 (sc)-.55 G .502(ompatibility le)-3.002 F -.15(ve)-.25 G 3.002(l. See).15 -F F3 .502(SHELL COMP)3.002 F -.855(AT)-.666 G .502(IBILITY MODE).855 F -F0(be-)2.752 E(lo)144 453.6 Q 2.662(wf)-.25 G .162 -(or a description of the v)-2.662 F .162(arious compatibility le)-.25 F --.15(ve)-.25 G .162(ls and their ef).15 F 2.663(fects. The)-.25 F -.25 -(va)2.663 G .163(lue may be a dec-).25 F .33 +F F3 .503(SHELL COMP)3.002 F -.855(AT)-.666 G .503(IBILITY MODE).855 F +F0(be-)2.753 E(lo)144 453.6 Q 2.663(wf)-.25 G .163 +(or a description of the v)-2.663 F .162(arious compatibility le)-.25 F +-.15(ve)-.25 G .162(ls and their ef).15 F 2.662(fects. The)-.25 F -.25 +(va)2.662 G .162(lue may be a dec-).25 F .33 (imal number \(e.g., 4.2\) or an inte)144 465.6 R .33 (ger \(e.g., 42\) corresponding to the desired compatibility le)-.15 F -.15(ve)-.25 G 2.83(l. If).15 F F1 -.3(BA)144 477.6 S(SH_COMP).3 E -.95 -(AT)-.74 G F0 .86 -(is unset or set to the empty string, the compatibility le)4.31 F -.15 -(ve)-.25 G 3.361(li).15 G 3.361(ss)-3.361 G .861(et to the def)-3.361 F -(ault)-.1 E .39(for the current v)144 489.6 R 2.89(ersion. If)-.15 F F1 --.3(BA)2.89 G(SH_COMP).3 E -.95(AT)-.74 G F0 .39(is set to a v)3.84 F -.39(alue that is not one of the v)-.25 F .39(alid compati-)-.25 F .277 +(AT)-.74 G F0 .861 +(is unset or set to the empty string, the compatibility le)4.311 F -.15 +(ve)-.25 G 3.36(li).15 G 3.36(ss)-3.36 G .86(et to the def)-3.36 F(ault) +-.1 E .39(for the current v)144 489.6 R 2.89(ersion. If)-.15 F F1 -.3 +(BA)2.89 G(SH_COMP).3 E -.95(AT)-.74 G F0 .39(is set to a v)3.84 F .39 +(alue that is not one of the v)-.25 F .39(alid compati-)-.25 F .278 (bility le)144 501.6 R -.15(ve)-.25 G .278 (ls, the shell prints an error message and sets the compatibility le).15 -F -.15(ve)-.25 G 2.778(lt).15 G 2.778(ot)-2.778 G .278(he def)-2.778 F -.278(ault for the)-.1 F 1.401(current v)144 513.6 R 3.901(ersion. The) --.15 F -.25(va)3.901 G 1.401(lid v).25 F 1.401 +F -.15(ve)-.25 G 2.777(lt).15 G 2.777(ot)-2.777 G .277(he def)-2.777 F +.277(ault for the)-.1 F 1.4(current v)144 513.6 R 3.9(ersion. The)-.15 F +-.25(va)3.901 G 1.401(lid v).25 F 1.401 (alues correspond to the compatibility le)-.25 F -.15(ve)-.25 G 1.401 -(ls described belo).15 F 3.9(wu)-.25 G(nder)-3.9 E F3 .153(SHELL COMP) -144 525.6 R -.855(AT)-.666 G .153(IBILITY MODE).855 F F4(.)A F0 -.15(Fo) -4.653 G 2.653(re).15 G .154(xample, 4.2 and 42 are v)-2.803 F .154 -(alid v)-.25 F .154(alues that correspond to the)-.25 F F1 .774 +(ls described belo).15 F 3.901(wu)-.25 G(nder)-3.901 E F3 .154 +(SHELL COMP)144 525.6 R -.855(AT)-.666 G .154(IBILITY MODE).855 F F4(.)A +F0 -.15(Fo)4.654 G 2.654(re).15 G .154(xample, 4.2 and 42 are v)-2.804 F +.153(alid v)-.25 F .153(alues that correspond to the)-.25 F F1 .773 (compat42 shopt)144 537.6 R F0 .774(option and set the compatibility le) -3.274 F -.15(ve)-.25 G 3.274(lt).15 G 3.274(o4)-3.274 G 3.274(2. The) --3.274 F .774(current v)3.274 F .773(ersion is also a v)-.15 F(alid)-.25 +3.273 F -.15(ve)-.25 G 3.274(lt).15 G 3.274(o4)-3.274 G 3.274(2. The) +-3.274 F .774(current v)3.274 F .774(ersion is also a v)-.15 F(alid)-.25 E -.25(va)144 549.6 S(lue.).25 E F1 -.3(BA)108 561.6 S(SH_ENV).3 E F0 -.505(If this parameter is set when)144 573.6 R F1(bash)3.005 E F0 .505 -(is e)3.005 F -.15(xe)-.15 G .506(cuting a shell script, its v).15 F -.506(alue is interpreted as a \214lename)-.25 F .391 +.506(If this parameter is set when)144 573.6 R F1(bash)3.006 E F0 .506 +(is e)3.006 F -.15(xe)-.15 G .505(cuting a shell script, its v).15 F +.505(alue is interpreted as a \214lename)-.25 F .39 (containing commands to initialize the shell, as in)144 585.6 R F5 -(~/.bashr)2.39 E(c)-.37 E F0 5.39(.T).31 G .39(he v)-5.39 F .39(alue of) --.25 F F3 -.27(BA)2.89 G(SH_ENV).27 E F0 .39(is subjected)2.64 F .525 -(to parameter e)144 597.6 R .525 +(~/.bashr)2.39 E(c)-.37 E F0 5.39(.T).31 G .39(he v)-5.39 F .391 +(alue of)-.25 F F3 -.27(BA)2.891 G(SH_ENV).27 E F0 .391(is subjected) +2.641 F .525(to parameter e)144 597.6 R .525 (xpansion, command substitution, and arithmetic e)-.15 F .525 (xpansion before being interpreted)-.15 F(as a \214lename.)144 609.6 Q F3 -.666(PA)5 G(TH)-.189 E F0 (is not used to search for the resultant \214lename.)2.25 E F1 -.3(BA) -108 621.6 S(SH_XTRA).3 E(CEFD)-.55 E F0 .481(If set to an inte)144 633.6 -R .481(ger corresponding to a v)-.15 F .481(alid \214le descriptor)-.25 -F(,)-.4 E F1(bash)2.98 E F0 .48(will write the trace output gener)2.98 F -(-)-.2 E 3.114(ated when)144 645.6 R F2 3.114(set -x)5.614 F F0 3.114 +108 621.6 S(SH_XTRA).3 E(CEFD)-.55 E F0 .48(If set to an inte)144 633.6 +R .48(ger corresponding to a v)-.15 F .481(alid \214le descriptor)-.25 F +(,)-.4 E F1(bash)2.981 E F0 .481(will write the trace output gener)2.981 +F(-)-.2 E 3.114(ated when)144 645.6 R F2 3.114(set -x)5.614 F F0 3.114 (is enabled to that \214le descriptor)5.614 F 8.114(.T)-.55 G 3.114 (he \214le descriptor is closed when)-8.114 F F3 -.27(BA)144 657.6 S (SH_XTRA).27 E(CEFD)-.495 E F0 .138(is unset or assigned a ne)2.388 F 2.638(wv)-.25 G 2.638(alue. Unsetting)-2.888 F F3 -.27(BA)2.638 G (SH_XTRA).27 E(CEFD)-.495 E F0 .138(or assigning it)2.388 F 2.531(the e\ mpty string causes the trace output to be sent to the standard error)144 -669.6 R 7.531(.N)-.55 G 2.531(ote that setting)-7.531 F F3 -.27(BA)144 +669.6 R 7.53(.N)-.55 G 2.53(ote that setting)-7.53 F F3 -.27(BA)144 681.6 S(SH_XTRA).27 E(CEFD)-.495 E F0 .74(to 2 \(the standard error \ -\214le descriptor\) and then unsetting it will result in the)2.991 F +\214le descriptor\) and then unsetting it will result in the)2.99 F (standard error being closed.)144 693.6 Q F1(CDP)108 705.6 Q -.95(AT) --.74 G(H).95 E F0 1.247(The search path for the)144 717.6 R F1(cd)3.747 -E F0 3.747(command. This)3.747 F 1.248 -(is a colon-separated list of directories in which the)3.747 F 3.796 +-.74 G(H).95 E F0 1.248(The search path for the)144 717.6 R F1(cd)3.748 +E F0 3.748(command. This)3.748 F 1.247 +(is a colon-separated list of directories in which the)3.748 F 3.795 (shell looks for destination directories speci\214ed by the)144 729.6 R -F1(cd)6.295 E F0 6.295(command. A)6.295 F 3.795(sample v)6.295 F 3.795 -(alue is)-.25 F(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(15)193.45 E +F1(cd)6.295 E F0 6.296(command. A)6.296 F 3.796(sample v)6.296 F 3.796 +(alue is)-.25 F(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(15)199.835 E 0 Cg EP %%Page: 16 16 %%BeginPageSetup @@ -2097,50 +2099,50 @@ BP (".:~:/usr")144 84 Q F0(.)A/F2 10/Times-Bold@0 SF(CHILD_MAX)108 96 Q F0 .997(Set the number of e)144 108 R .997(xited child status v)-.15 F .997 (alues for the shell to remember)-.25 F 5.997(.B)-.55 G .997 -(ash will not allo)-5.997 F 3.498(wt)-.25 G(his)-3.498 E -.25(va)144 120 -S 1.078(lue to be decreased belo).25 F 3.577(waP)-.25 G 1.077 -(OSIX-mandated minimum, and there is a maximum v)-3.577 F 1.077 +(ash will not allo)-5.997 F 3.497(wt)-.25 G(his)-3.497 E -.25(va)144 120 +S 1.077(lue to be decreased belo).25 F 3.577(waP)-.25 G 1.077 +(OSIX-mandated minimum, and there is a maximum v)-3.577 F 1.078 (alue \(cur)-.25 F(-)-.2 E(rently 8192\) that this may not e)144 132 Q 2.5(xceed. The)-.15 F(minimum v)2.5 E(alue is system-dependent.)-.25 E -F2(COLUMNS)108 144 Q F0 .828(Used by the)144 156 R F2(select)3.328 E F0 -.829(compound command to determine the terminal width when printing sel\ -ection)3.328 F 3.466(lists. Automatically)144 168 R .966(set if the) +F2(COLUMNS)108 144 Q F0 .829(Used by the)144 156 R F2(select)3.329 E F0 +.828(compound command to determine the terminal width when printing sel\ +ection)3.329 F 3.466(lists. Automatically)144 168 R .966(set if the) 3.466 F F2(checkwinsize)3.466 E F0 .966 (option is enabled or in an interacti)3.466 F 1.266 -.15(ve s)-.25 H .966(hell upon re-).15 F(ceipt of a)144 180 Q/F3 9/Times-Bold@0 SF (SIGWINCH)2.5 E/F4 9/Times-Roman@0 SF(.)A F2(COMPREPL)108 192 Q(Y)-.92 E -F0 .847(An array v)144 204 R .848(ariable from which)-.25 F F2(bash) +F0 .848(An array v)144 204 R .848(ariable from which)-.25 F F2(bash) 3.348 E F0 .848 (reads the possible completions generated by a shell function)3.348 F (in)144 216 Q -.2(vo)-.4 G -.1(ke).2 G 2.785(db).1 G 2.785(yt)-2.785 G .285(he programmable completion f)-2.785 F .285(acility \(see)-.1 F F2 (Pr)2.785 E .285(ogrammable Completion)-.18 F F0(belo)2.785 E 2.785 (w\). Each)-.25 F(array element contains one possible completion.)144 -228 Q F2(EMA)108 240 Q(CS)-.55 E F0(If)144 252 Q F2(bash)2.535 E F0 .035 -(\214nds this v)2.535 F .035(ariable in the en)-.25 F .036 -(vironment when the shell starts with v)-.4 F(alue)-.25 E F1(t)2.536 E -F0 2.536(,i)C 2.536(ta)-2.536 G .036(ssumes that the)-2.536 F +228 Q F2(EMA)108 240 Q(CS)-.55 E F0(If)144 252 Q F2(bash)2.536 E F0 .036 +(\214nds this v)2.536 F .036(ariable in the en)-.25 F .036 +(vironment when the shell starts with v)-.4 F(alue)-.25 E F1(t)2.535 E +F0 2.535(,i)C 2.535(ta)-2.535 G .035(ssumes that the)-2.535 F (shell is running in an Emacs shell b)144 264 Q(uf)-.2 E -(fer and disables line editing.)-.25 E F2(ENV)108 276 Q F0 .671 -(Expanded and e)144 276 R -.15(xe)-.15 G .671(cuted similarly to).15 F -F3 -.27(BA)3.17 G(SH_ENV).27 E F0(\(see)2.92 E F2(INV)3.17 E(OCA)-.45 E -(TION)-.95 E F0(abo)3.17 E -.15(ve)-.15 G 3.17(\)w).15 G .67 -(hen an interacti)-3.17 F -.15(ve)-.25 G(shell is in)144 288 Q -.2(vo) +(fer and disables line editing.)-.25 E F2(ENV)108 276 Q F0 .67 +(Expanded and e)144 276 R -.15(xe)-.15 G .67(cuted similarly to).15 F F3 +-.27(BA)3.17 G(SH_ENV).27 E F0(\(see)2.92 E F2(INV)3.17 E(OCA)-.45 E +(TION)-.95 E F0(abo)3.171 E -.15(ve)-.15 G 3.171(\)w).15 G .671 +(hen an interacti)-3.171 F -.15(ve)-.25 G(shell is in)144 288 Q -.2(vo) -.4 G -.1(ke).2 G 2.5(di).1 G(n)-2.5 E/F5 10/Times-Italic@0 SF -(posix mode)2.5 E F0(.)A F2(EXECIGNORE)108 300 Q F0 2.716(Ac)144 312 S -.216(olon-separated list of shell patterns \(see)-2.716 F F2 -.1(Pa) -2.717 G(tter).1 E 2.717(nM)-.15 G(atching)-2.717 E F0 2.717(\)d)C .217 -(e\214ning the list of \214lenames to be)-2.717 F .117 -(ignored by command search using)144 324 R F2 -.74(PA)2.617 G(TH)-.21 E -F0 5.117(.F)C .116 -(iles whose full pathnames match one of these patterns)-5.117 F 1.432 +(posix mode)2.5 E F0(.)A F2(EXECIGNORE)108 300 Q F0 2.717(Ac)144 312 S +.217(olon-separated list of shell patterns \(see)-2.717 F F2 -.1(Pa) +2.717 G(tter).1 E 2.717(nM)-.15 G(atching)-2.717 E F0 2.717(\)d)C .216 +(e\214ning the list of \214lenames to be)-2.717 F .116 +(ignored by command search using)144 324 R F2 -.74(PA)2.616 G(TH)-.21 E +F0 5.116(.F)C .117 +(iles whose full pathnames match one of these patterns)-5.116 F 1.433 (are not considered e)144 336 R -.15(xe)-.15 G 1.432 (cutable \214les for the purposes of completion and command e).15 F -.15 -(xe)-.15 G 1.433(cution via).15 F F2 -.74(PA)144 348 S(TH)-.21 E F0 -2.909(lookup. This)2.909 F .408(does not af)2.908 F .408(fect the beha) +(xe)-.15 G 1.432(cution via).15 F F2 -.74(PA)144 348 S(TH)-.21 E F0 +2.908(lookup. This)2.908 F .408(does not af)2.908 F .408(fect the beha) -.25 F .408(vior of the)-.2 F F2([)2.908 E F0(,)A F2(test)2.908 E F0 -2.908(,a)C(nd)-2.908 E F2([[)2.908 E F0 2.908(commands. Full)2.908 F -(pathnames)2.908 E .364(in the command hash table are not subject to)144 +2.908(,a)C(nd)-2.908 E F2([[)2.908 E F0 2.909(commands. Full)2.908 F +(pathnames)2.909 E .364(in the command hash table are not subject to)144 360 R F2(EXECIGNORE)2.864 E F0 5.364(.U)C .364(se this v)-5.364 F .364 (ariable to ignore shared)-.25 F 1.37(library \214les that ha)144 372 R 1.67 -.15(ve t)-.2 H 1.37(he e).15 F -.15(xe)-.15 G 1.37 @@ -2149,90 +2151,90 @@ F0 5.117(.F)C .116 (honors the setting of the)144 384 Q F2(extglob)2.5 E F0(shell option.) 2.5 E F2(FCEDIT)108 396 Q F0(The def)144 408 Q(ault editor for the)-.1 E F2(fc)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E F2(FIGNORE)108 420 Q F0 -2.598(Ac)144 432 S .098(olon-separated list of suf)-2.598 F<8c78>-.25 E +2.599(Ac)144 432 S .098(olon-separated list of suf)-2.599 F<8c78>-.25 E .098(es to ignore when performing \214lename completion \(see)-.15 F F3 -(READLINE)2.599 E F0(belo)144 444 Q 2.705(w\). A)-.25 F .205 -(\214lename whose suf)2.705 F .205(\214x matches one of the entries in) --.25 F F3(FIGNORE)2.705 E F0 .205(is e)2.455 F .204 +(READLINE)2.598 E F0(belo)144 444 Q 2.704(w\). A)-.25 F .204 +(\214lename whose suf)2.704 F .205(\214x matches one of the entries in) +-.25 F F3(FIGNORE)2.705 E F0 .205(is e)2.455 F .205 (xcluded from the list)-.15 F(of matched \214lenames.)144 456 Q 2.5(As)5 G(ample v)-2.5 E(alue is)-.25 E F1(".o:~")2.5 E F0(.)A F2(FUNCNEST)108 -468 Q F0 .23(If set to a numeric v)144 480 R .231 +468 Q F0 .231(If set to a numeric v)144 480 R .231 (alue greater than 0, de\214nes a maximum function nesting le)-.25 F --.15(ve)-.25 G 2.731(l. Function).15 F(in)2.731 E -.2(vo)-.4 G(-).2 E +-.15(ve)-.25 G 2.73(l. Function).15 F(in)2.73 E -.2(vo)-.4 G(-).2 E (cations that e)144 492 Q(xceed this nesting le)-.15 E -.15(ve)-.25 G 2.5(lw).15 G(ill cause the current command to abort.)-2.5 E F2 -(GLOBIGNORE)108 504 Q F0 2.924(Ac)144 516 S .423(olon-separated list of\ +(GLOBIGNORE)108 504 Q F0 2.923(Ac)144 516 S .423(olon-separated list of\ patterns de\214ning the set of \214le names to be ignored by pathname \ -e)-2.924 F(xpan-)-.15 E 2.947(sion. If)144 528 R 2.947<618c>2.947 G .447 -(le name matched by a pathname e)-2.947 F .448 +e)-2.923 F(xpan-)-.15 E 2.948(sion. If)144 528 R 2.948<618c>2.948 G .448 +(le name matched by a pathname e)-2.948 F .447 (xpansion pattern also matches one of the patterns in)-.15 F F3 (GLOBIGNORE)144 540 Q F4(,)A F0(it is remo)2.25 E -.15(ve)-.15 G 2.5(df) .15 G(rom the list of matches.)-2.5 E F2(HISTCONTR)108 552 Q(OL)-.3 E F0 -2.654(Ac)144 564 S .153(olon-separated list of v)-2.654 F .153 +2.653(Ac)144 564 S .153(olon-separated list of v)-2.653 F .153 (alues controlling ho)-.25 F 2.653(wc)-.25 G .153(ommands are sa)-2.653 F -.15(ve)-.2 G 2.653(do).15 G 2.653(nt)-2.653 G .153(he history list.) --2.653 F .153(If the list)5.153 F .49(of v)144 576 R .49(alues includes) +-2.653 F .154(If the list)5.153 F .49(of v)144 576 R .49(alues includes) -.25 F F5(ignor)3 E(espace)-.37 E F0 2.99(,l).18 G .49(ines which be) -2.99 F .49(gin with a)-.15 F F2(space)2.99 E F0 .49 (character are not sa)2.99 F -.15(ve)-.2 G 2.99(di).15 G 2.99(nt)-2.99 G -.49(he his-)-2.99 F .558(tory list.)144 588 R 3.058(Av)5.558 G .558 -(alue of)-3.308 F F5(ignor)3.068 E(edups)-.37 E F0 .558 -(causes lines matching the pre)3.328 F .557 -(vious history entry to not be sa)-.25 F -.15(ve)-.2 G(d.).15 E 2.925 -(Av)144 600 S .425(alue of)-3.175 F F5(ignor)2.935 E(eboth)-.37 E F0 -.426(is shorthand for)3.205 F F5(ignor)2.926 E(espace)-.37 E F0(and) -2.926 E F5(ignor)2.926 E(edups)-.37 E F0 5.426(.A)C -.25(va)-2.5 G .426 -(lue of).25 F F5(er)3.116 E(asedups)-.15 E F0(causes)3.196 E .699 +.49(he his-)-2.99 F .557(tory list.)144 588 R 3.057(Av)5.557 G .557 +(alue of)-3.307 F F5(ignor)3.067 E(edups)-.37 E F0 .557 +(causes lines matching the pre)3.327 F .558 +(vious history entry to not be sa)-.25 F -.15(ve)-.2 G(d.).15 E 2.926 +(Av)144 600 S .426(alue of)-3.176 F F5(ignor)2.936 E(eboth)-.37 E F0 +.426(is shorthand for)3.206 F F5(ignor)2.926 E(espace)-.37 E F0(and) +2.926 E F5(ignor)2.926 E(edups)-.37 E F0 5.426(.A)C -.25(va)-2.501 G +.425(lue of).25 F F5(er)3.115 E(asedups)-.15 E F0(causes)3.195 E .698 (all pre)144 612 R .698 (vious lines matching the current line to be remo)-.25 F -.15(ve)-.15 G -3.198(df).15 G .698(rom the history list before that line is)-3.198 F -(sa)144 624 Q -.15(ve)-.2 G 2.763(d. An).15 F 2.763(yv)-.15 G .263 -(alue not in the abo)-3.013 F .563 -.15(ve l)-.15 H .263 -(ist is ignored.).15 F(If)5.263 E F3(HISTCONTR)2.763 E(OL)-.27 E F0 .264 -(is unset, or does not include)2.513 F 2.942(av)144 636 S .442(alid v) --3.192 F .442(alue, all lines read by the shell parser are sa)-.25 F --.15(ve)-.2 G 2.941(do).15 G 2.941(nt)-2.941 G .441 -(he history list, subject to the v)-2.941 F .441(alue of)-.25 F F3 +3.198(df).15 G .699(rom the history list before that line is)-3.198 F +(sa)144 624 Q -.15(ve)-.2 G 2.764(d. An).15 F 2.764(yv)-.15 G .264 +(alue not in the abo)-3.014 F .563 -.15(ve l)-.15 H .263 +(ist is ignored.).15 F(If)5.263 E F3(HISTCONTR)2.763 E(OL)-.27 E F0 .263 +(is unset, or does not include)2.513 F 2.941(av)144 636 S .441(alid v) +-3.191 F .441(alue, all lines read by the shell parser are sa)-.25 F +-.15(ve)-.2 G 2.942(do).15 G 2.942(nt)-2.942 G .442 +(he history list, subject to the v)-2.942 F .442(alue of)-.25 F F3 (HISTIGNORE)144 648 Q F4(.)A F0 1.981(The second and subsequent lines o\ -f a multi-line compound command are not)6.481 F +f a multi-line compound command are not)6.482 F (tested, and are added to the history re)144 660 Q -.05(ga)-.15 G (rdless of the v).05 E(alue of)-.25 E F3(HISTCONTR)2.5 E(OL)-.27 E F4(.) A F2(HISTFILE)108 672 Q F0 .181 (The name of the \214le in which command history is sa)144 684 R -.15 (ve)-.2 G 2.681(d\().15 G(see)-2.681 E F3(HIST)2.681 E(OR)-.162 E(Y) --.315 E F0(belo)2.431 E 2.681(w\). The)-.25 F(def)2.681 E .181(ault v) +-.315 E F0(belo)2.431 E 2.682(w\). The)-.25 F(def)2.682 E .182(ault v) -.1 F(alue)-.25 E(is)144 696 Q F5(~/.bash_history)2.5 E F0 5(.I)C 2.5 (fu)-5 G(nset, the command history is not sa)-2.5 E -.15(ve)-.2 G 2.5 (dw).15 G(hen a shell e)-2.5 E(xits.)-.15 E(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(16)193.45 E 0 Cg EP +(2022 June 3)150.675 E(16)199.835 E 0 Cg EP %%Page: 17 17 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(HISTFILESIZE)108 84 Q F0 1.622 +SF(HISTFILESIZE)108 84 Q F0 1.623 (The maximum number of lines contained in the history \214le.)144 96 R -1.623(When this v)6.623 F 1.623(ariable is assigned a)-.25 F -.25(va)144 -108 S .125(lue, the history \214le is truncated, if necessary).25 F -2.625(,t)-.65 G 2.624(oc)-2.625 G .124 +1.622(When this v)6.623 F 1.622(ariable is assigned a)-.25 F -.25(va)144 +108 S .124(lue, the history \214le is truncated, if necessary).25 F +2.624(,t)-.65 G 2.624(oc)-2.624 G .125 (ontain no more than that number of lines by re-)-2.624 F(mo)144 120 Q -.065(ving the oldest entries.)-.15 F .066(The history \214le is also tr\ -uncated to this size after writing it when a shell)5.065 F -.15(ex)144 -132 S 2.928(its. If).15 F .428(the v)2.928 F .428 -(alue is 0, the history \214le is truncated to zero size.)-.25 F .427 -(Non-numeric v)5.427 F .427(alues and numeric)-.25 F -.25(va)144 144 S +.066(ving the oldest entries.)-.15 F .065(The history \214le is also tr\ +uncated to this size after writing it when a shell)5.066 F -.15(ex)144 +132 S 2.927(its. If).15 F .427(the v)2.927 F .428 +(alue is 0, the history \214le is truncated to zero size.)-.25 F .428 +(Non-numeric v)5.428 F .428(alues and numeric)-.25 F -.25(va)144 144 S .152(lues less than zero inhibit truncation.).25 F .152 (The shell sets the def)5.152 F .152(ault v)-.1 F .152(alue to the v) --.25 F .152(alue of)-.25 F F1(HISTSIZE)2.652 E F0(after reading an)144 +-.25 F .151(alue of)-.25 F F1(HISTSIZE)2.651 E F0(after reading an)144 156 Q 2.5(ys)-.15 G(tartup \214les.)-2.5 E F1(HISTIGNORE)108 168 Q F0 -2.658(Ac)144 180 S .158(olon-separated list of patterns used to decide \ -which command lines should be sa)-2.658 F -.15(ve)-.2 G 2.657(do).15 G -2.657(nt)-2.657 G .157(he his-)-2.657 F .707(tory list.)144 192 R .707 -(Each pattern is anchored at the be)5.707 F .708 -(ginning of the line and must match the complete line)-.15 F .626 -(\(no implicit `)144 204 R F1(*)A F0 3.126('i)C 3.126(sa)-3.126 G 3.126 -(ppended\). Each)-3.126 F .626(pattern is tested ag)3.126 F .625 +2.657(Ac)144 180 S .157(olon-separated list of patterns used to decide \ +which command lines should be sa)-2.657 F -.15(ve)-.2 G 2.658(do).15 G +2.658(nt)-2.658 G .158(he his-)-2.658 F .708(tory list.)144 192 R .708 +(Each pattern is anchored at the be)5.708 F .707 +(ginning of the line and must match the complete line)-.15 F .625 +(\(no implicit `)144 204 R F1(*)A F0 3.125('i)C 3.125(sa)-3.125 G 3.125 +(ppended\). Each)-3.125 F .626(pattern is tested ag)3.125 F .626 (ainst the line after the checks speci\214ed by)-.05 F/F2 9/Times-Bold@0 SF(HISTCONTR)144 216 Q(OL)-.27 E F0 1.793(are applied.)4.043 F 1.793 (In addition to the normal shell pattern matching characters, `)6.793 F @@ -2243,29 +2245,29 @@ F1(&)A F0(')A 1.44(matches the pre)144 228 R 1.44(vious history line.) F 1.45(The second and subsequent lines of a multi-line compound)6.45 F 1.269(command are not tested, and are added to the history re)144 252 R -.05(ga)-.15 G 1.269(rdless of the v).05 F 1.269(alue of)-.25 F F2 -(HISTIGNORE)3.769 E/F3 9/Times-Roman@0 SF(.)A F0 +(HISTIGNORE)3.77 E/F3 9/Times-Roman@0 SF(.)A F0 (The pattern matching honors the setting of the)144 264 Q F1(extglob)2.5 E F0(shell option.)2.5 E F1(HISTSIZE)108 276 Q F0 1.387 (The number of commands to remember in the command history \(see)144 288 R F2(HIST)3.887 E(OR)-.162 E(Y)-.315 E F0(belo)3.637 E 3.887(w\). If) --.25 F(the)3.888 E -.25(va)144 300 S .413(lue is 0, commands are not sa) +-.25 F(the)3.887 E -.25(va)144 300 S .412(lue is 0, commands are not sa) .25 F -.15(ve)-.2 G 2.913(di).15 G 2.913(nt)-2.913 G .413 -(he history list.)-2.913 F .413(Numeric v)5.413 F .412 -(alues less than zero result in e)-.25 F(v-)-.25 E .343 -(ery command being sa)144 312 R -.15(ve)-.2 G 2.843(do).15 G 2.843(nt) --2.843 G .343(he history list \(there is no limit\).)-2.843 F .344 -(The shell sets the def)5.343 F .344(ault v)-.1 F .344(alue to)-.25 F +(he history list.)-2.913 F .413(Numeric v)5.413 F .413 +(alues less than zero result in e)-.25 F(v-)-.25 E .344 +(ery command being sa)144 312 R -.15(ve)-.2 G 2.844(do).15 G 2.844(nt) +-2.844 G .343(he history list \(there is no limit\).)-2.844 F .343 +(The shell sets the def)5.343 F .343(ault v)-.1 F .343(alue to)-.25 F (500 after reading an)144 324 Q 2.5(ys)-.15 G(tartup \214les.)-2.5 E F1 -(HISTTIMEFORMA)108 336 Q(T)-.95 E F0 .952(If this v)144 348 R .952 -(ariable is set and not null, its v)-.25 F .951 +(HISTTIMEFORMA)108 336 Q(T)-.95 E F0 .951(If this v)144 348 R .951 +(ariable is set and not null, its v)-.25 F .952 (alue is used as a format string for)-.25 F/F4 10/Times-Italic@0 SF -(strftime)3.451 E F0 .951(\(3\) to print the)B .672 +(strftime)3.452 E F0 .952(\(3\) to print the)B .673 (time stamp associated with each history entry displayed by the)144 360 -R F1(history)3.173 E F0 -.2(bu)3.173 G 3.173(iltin. If).2 F .673(this v) -3.173 F .673(ariable is)-.25 F .144 +R F1(history)3.173 E F0 -.2(bu)3.172 G 3.172(iltin. If).2 F .672(this v) +3.172 F .672(ariable is)-.25 F .144 (set, time stamps are written to the history \214le so the)144 372 R 2.644(ym)-.15 G .144(ay be preserv)-2.644 F .144 -(ed across shell sessions.)-.15 F(This)5.144 E(uses the history comment\ +(ed across shell sessions.)-.15 F(This)5.145 E(uses the history comment\ character to distinguish timestamps from other history lines.)144 384 Q F1(HOME)108 396 Q F0 1.27 (The home directory of the current user; the def)144 408 R 1.27(ault ar) @@ -2275,70 +2277,70 @@ F1(HOME)108 396 Q F0 1.27 (HOSTFILE)108 432 Q F0 1.015 (Contains the name of a \214le in the same format as)144 444 R F4 (/etc/hosts)5.181 E F0 1.015(that should be read when the shell)5.181 F -.55(needs to complete a hostname.)144 456 R .551 +.551(needs to complete a hostname.)144 456 R .551 (The list of possible hostname completions may be changed while)5.551 F -1.059(the shell is running; the ne)144 468 R 1.059 -(xt time hostname completion is attempted after the v)-.15 F 1.058 +1.058(the shell is running; the ne)144 468 R 1.059 +(xt time hostname completion is attempted after the v)-.15 F 1.059 (alue is changed,)-.25 F F1(bash)144 480 Q F0 .138 -(adds the contents of the ne)2.638 F 2.638<778c>-.25 G .138(le to the e) +(adds the contents of the ne)2.639 F 2.638<778c>-.25 G .138(le to the e) -2.638 F .138(xisting list.)-.15 F(If)5.138 E F2(HOSTFILE)2.638 E F0 -.138(is set, b)2.388 F .139(ut has no v)-.2 F .139(alue, or)-.25 F .518 -(does not name a readable \214le,)144 492 R F1(bash)3.018 E F0 .518 -(attempts to read)3.018 F F4(/etc/hosts)4.683 E F0 .517 -(to obtain the list of possible host-)4.683 F(name completions.)144 504 +.138(is set, b)2.388 F .138(ut has no v)-.2 F .138(alue, or)-.25 F .517 +(does not name a readable \214le,)144 492 R F1(bash)3.017 E F0 .517 +(attempts to read)3.017 F F4(/etc/hosts)4.684 E F0 .518 +(to obtain the list of possible host-)4.684 F(name completions.)144 504 Q(When)5 E F2(HOSTFILE)2.5 E F0(is unset, the hostname list is cleared.) -2.25 E F1(IFS)108 516 Q F0(The)144 516 Q F4 .555(Internal F)3.635 F .555 -(ield Separ)-.45 F(ator)-.15 E F0 .555(that is used for w)3.785 F .556 -(ord splitting after e)-.1 F .556(xpansion and to split lines into)-.15 +2.25 E F1(IFS)108 516 Q F0(The)144 516 Q F4 .556(Internal F)3.636 F .556 +(ield Separ)-.45 F(ator)-.15 E F0 .556(that is used for w)3.786 F .556 +(ord splitting after e)-.1 F .555(xpansion and to split lines into)-.15 F -.1(wo)144 528 S(rds with the).1 E F1 -.18(re)2.5 G(ad).18 E F0 -.2 (bu)2.5 G(iltin command.).2 E(The def)5 E(ault v)-.1 E(alue is `)-.25 E (`')-.25 E('.)-.74 E F1(IGNOREEOF)108 540 Q F0 .503(Controls the action of an interacti)144 552 R .803 -.15(ve s) -.25 H .503(hell on receipt of an).15 F F2(EOF)3.003 E F0 .503 -(character as the sole input.)2.753 F .503(If set,)5.503 F .426(the v) +(character as the sole input.)2.753 F .504(If set,)5.504 F .426(the v) 144 564 R .426(alue is the number of consecuti)-.25 F -.15(ve)-.25 G F2 (EOF)3.076 E F0 .426 -(characters which must be typed as the \214rst characters)2.676 F .303 +(characters which must be typed as the \214rst characters)2.676 F .302 (on an input line before)144 576 R F1(bash)2.802 E F0 -.15(ex)2.802 G 2.802(its. If).15 F .302(the v)2.802 F .302(ariable e)-.25 F .302 (xists b)-.15 F .302(ut does not ha)-.2 F .602 -.15(ve a n)-.2 H .302 -(umeric v).15 F .302(alue, or has)-.25 F(no v)144 588 Q(alue, the def) +(umeric v).15 F .303(alue, or has)-.25 F(no v)144 588 Q(alue, the def) -.25 E(ault v)-.1 E(alue is 10.)-.25 E(If it does not e)5 E(xist,)-.15 E F2(EOF)2.5 E F0(signi\214es the end of input to the shell.)2.25 E F1 -(INPUTRC)108 600 Q F0 .26(The \214lename for the)144 612 R F1 -.18(re) -2.76 G(adline).18 E F0 .26(startup \214le, o)2.76 F -.15(ve)-.15 G .26 -(rriding the def).15 F .261(ault of)-.1 F F4(~/.inputr)4.427 E(c)-.37 E -F0(\(see)4.427 E F2(READLINE)2.761 E F0(be-)2.511 E(lo)144 624 Q(w\).) --.25 E F1(INSIDE_EMA)108 636 Q(CS)-.55 E F0 .034(If this v)144 648 R -.034(ariable appears in the en)-.25 F .034 -(vironment when the shell starts,)-.4 F F1(bash)2.533 E F0 .033 -(assumes that it is running in-)2.533 F(side an Emacs shell b)144 660 Q +(INPUTRC)108 600 Q F0 .261(The \214lename for the)144 612 R F1 -.18(re) +2.761 G(adline).18 E F0 .261(startup \214le, o)2.761 F -.15(ve)-.15 G +.26(rriding the def).15 F .26(ault of)-.1 F F4(~/.inputr)4.426 E(c)-.37 +E F0(\(see)4.426 E F2(READLINE)2.76 E F0(be-)2.51 E(lo)144 624 Q(w\).) +-.25 E F1(INSIDE_EMA)108 636 Q(CS)-.55 E F0 .033(If this v)144 648 R +.033(ariable appears in the en)-.25 F .033 +(vironment when the shell starts,)-.4 F F1(bash)2.534 E F0 .034 +(assumes that it is running in-)2.534 F(side an Emacs shell b)144 660 Q (uf)-.2 E(fer and may disable line editing, depending on the v)-.25 E -(alue of)-.25 E F1(TERM)2.5 E F0(.)A F1(LANG)108 672 Q F0 1.239 +(alue of)-.25 E F1(TERM)2.5 E F0(.)A F1(LANG)108 672 Q F0 1.24 (Used to determine the locale cate)144 672 R 1.239(gory for an)-.15 F -3.739(yc)-.15 G(ate)-3.739 E 1.24 +3.739(yc)-.15 G(ate)-3.739 E 1.239 (gory not speci\214cally selected with a v)-.15 F(ariable)-.25 E -(starting with)144 684 Q F1(LC_)2.5 E F0(.)A F1(LC_ALL)108 696 Q F0 .974 -(This v)144 708 R .974(ariable o)-.25 F -.15(ve)-.15 G .974 +(starting with)144 684 Q F1(LC_)2.5 E F0(.)A F1(LC_ALL)108 696 Q F0 .973 +(This v)144 708 R .973(ariable o)-.25 F -.15(ve)-.15 G .973 (rrides the v).15 F .973(alue of)-.25 F F2(LANG)3.473 E F0 .973(and an) 3.223 F 3.473(yo)-.15 G(ther)-3.473 E F1(LC_)3.473 E F0 -.25(va)3.473 G -.973(riable specifying a locale cate-).25 F(gory)144 720 Q(.)-.65 E -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(17)193.45 E 0 Cg EP +.974(riable specifying a locale cate-).25 F(gory)144 720 Q(.)-.65 E +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(17)199.835 E 0 Cg EP %%Page: 18 18 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(LC_COLLA)108 84 Q(TE)-.95 E F0 .411(This v)144 96 R .412(ariable det\ +SF(LC_COLLA)108 84 Q(TE)-.95 E F0 .412(This v)144 96 R .412(ariable det\ ermines the collation order used when sorting the results of pathname e) --.25 F(xpansion,)-.15 E 1.465(and determines the beha)144 108 R 1.465 -(vior of range e)-.2 F 1.464(xpressions, equi)-.15 F -.25(va)-.25 G -1.464(lence classes, and collating sequences).25 F(within pathname e)144 +-.25 F(xpansion,)-.15 E 1.464(and determines the beha)144 108 R 1.464 +(vior of range e)-.2 F 1.465(xpressions, equi)-.15 F -.25(va)-.25 G +1.465(lence classes, and collating sequences).25 F(within pathname e)144 120 Q(xpansion and pattern matching.)-.15 E F1(LC_CTYPE)108 132 Q F0 -1.935(This v)144 144 R 1.936 +1.936(This v)144 144 R 1.936 (ariable determines the interpretation of characters and the beha)-.25 F -1.936(vior of character classes)-.2 F(within pathname e)144 156 Q +1.935(vior of character classes)-.2 F(within pathname e)144 156 Q (xpansion and pattern matching.)-.15 E F1(LC_MESSA)108 168 Q(GES)-.55 E F0(This v)144 180 Q(ariable determines the locale used to translate dou\ ble-quoted strings preceded by a)-.25 E F1($)2.5 E F0(.)A F1(LC_NUMERIC) @@ -2346,23 +2348,23 @@ ble-quoted strings preceded by a)-.25 E F1($)2.5 E F0(.)A F1(LC_NUMERIC) (gory used for number formatting.)-.15 E F1(LC_TIME)108 216 Q F0(This v) 144 228 Q(ariable determines the locale cate)-.25 E (gory used for data and time formatting.)-.15 E F1(LINES)108 240 Q F0 -.055(Used by the)144 240 R F1(select)2.555 E F0 .054(compound command t\ -o determine the column length for printing selection lists.)2.555 F .264 -(Automatically set if the)144 252 R F1(checkwinsize)2.764 E F0 .264 -(option is enabled or in an interacti)2.764 F .565 -.15(ve s)-.25 H .265 +.054(Used by the)144 240 R F1(select)2.554 E F0 .054(compound command t\ +o determine the column length for printing selection lists.)2.554 F .265 +(Automatically set if the)144 252 R F1(checkwinsize)2.765 E F0 .264 +(option is enabled or in an interacti)2.765 F .564 -.15(ve s)-.25 H .264 (hell upon receipt of a).15 F/F2 9/Times-Bold@0 SF(SIGWINCH)144 264 Q/F3 -9/Times-Roman@0 SF(.)A F1(MAIL)108 276 Q F0 .422 +9/Times-Roman@0 SF(.)A F1(MAIL)108 276 Q F0 .421 (If this parameter is set to a \214le or directory name and the)144 276 -R F2(MAILP)2.921 E -.855(AT)-.666 G(H).855 E F0 -.25(va)2.671 G .421 -(riable is not set,).25 F F1(bash)2.921 E F0(in-)2.921 E +R F2(MAILP)2.922 E -.855(AT)-.666 G(H).855 E F0 -.25(va)2.672 G .422 +(riable is not set,).25 F F1(bash)2.922 E F0(in-)2.922 E (forms the user of the arri)144 288 Q -.25(va)-.25 G 2.5(lo).25 G 2.5 (fm)-2.5 G(ail in the speci\214ed \214le or Maildir)-2.5 E -(-format directory)-.2 E(.)-.65 E F1(MAILCHECK)108 300 Q F0 .098 -(Speci\214es ho)144 312 R 2.598(wo)-.25 G .098(ften \(in seconds\)) --2.598 F F1(bash)2.598 E F0 .098(checks for mail.)2.598 F .098(The def) -5.098 F .098(ault is 60 seconds.)-.1 F .099(When it is time)5.099 F .224 +(-format directory)-.2 E(.)-.65 E F1(MAILCHECK)108 300 Q F0 .099 +(Speci\214es ho)144 312 R 2.599(wo)-.25 G .099(ften \(in seconds\)) +-2.599 F F1(bash)2.598 E F0 .098(checks for mail.)2.598 F .098(The def) +5.098 F .098(ault is 60 seconds.)-.1 F .098(When it is time)5.098 F .223 (to check for mail, the shell does so before displaying the primary pro\ -mpt.)144 324 R .223(If this v)5.223 F .223(ariable is unset,)-.25 F +mpt.)144 324 R .224(If this v)5.224 F .224(ariable is unset,)-.25 F (or set to a v)144 336 Q(alue that is not a number greater than or equa\ l to zero, the shell disables mail checking.)-.25 E F1(MAILP)108 348 Q -.95(AT)-.74 G(H).95 E F0 2.99(Ac)144 360 S .49 @@ -2380,37 +2382,37 @@ l to zero, the shell disables mail checking.)-.25 E F1(MAILP)108 348 Q (alue for this v)-.25 F .015(ariable \(there is no v)-.25 F .015 (alue by def)-.25 F .015(ault\), b)-.1 F(ut)-.2 E(the location of the u\ ser mail \214les that it uses is system dependent \(e.g., /v)144 420 Q -(ar/mail/)-.25 E F1($USER)A F0(\).)A F1(OPTERR)108 432 Q F0 .39 -(If set to the v)144 444 R .39(alue 1,)-.25 F F1(bash)2.89 E F0 .389 -(displays error messages generated by the)2.889 F F1(getopts)2.889 E F0 --.2(bu)2.889 G .389(iltin command \(see).2 F F2 .359(SHELL B)144 456 R -(UIL)-.09 E .359(TIN COMMANDS)-.828 F F0(belo)2.609 E(w\).)-.25 E F2 -(OPTERR)5.359 E F0 .36(is initialized to 1 each time the shell is in) -2.609 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E(or a shell script is e)144 468 Q --.15(xe)-.15 G(cuted.).15 E F1 -.74(PA)108 480 S(TH)-.21 E F0 .588 -(The search path for commands.)144 480 R .587 +(ar/mail/)-.25 E F1($USER)A F0(\).)A F1(OPTERR)108 432 Q F0 .389 +(If set to the v)144 444 R .389(alue 1,)-.25 F F1(bash)2.889 E F0 .389 +(displays error messages generated by the)2.889 F F1(getopts)2.89 E F0 +-.2(bu)2.89 G .39(iltin command \(see).2 F F2 .36(SHELL B)144 456 R(UIL) +-.09 E .36(TIN COMMANDS)-.828 F F0(belo)2.61 E(w\).)-.25 E F2(OPTERR) +5.36 E F0 .359(is initialized to 1 each time the shell is in)2.61 F -.2 +(vo)-.4 G -.1(ke).2 G(d).1 E(or a shell script is e)144 468 Q -.15(xe) +-.15 G(cuted.).15 E F1 -.74(PA)108 480 S(TH)-.21 E F0 .587 +(The search path for commands.)144 480 R .588 (It is a colon-separated list of directories in which the shell looks) -5.588 F .471(for commands \(see)144 492 R F2 .471(COMMAND EXECUTION) -2.971 F F0(belo)2.722 E 2.972(w\). A)-.25 F .472 +5.587 F .472(for commands \(see)144 492 R F2 .472(COMMAND EXECUTION) +2.972 F F0(belo)2.722 E 2.972(w\). A)-.25 F .471 (zero-length \(null\) directory name in the)2.972 F -.25(va)144 504 S -.536(lue of).25 F F2 -.666(PA)3.036 G(TH)-.189 E F0 .535 -(indicates the current directory)2.786 F 5.535(.A)-.65 G .535 -(null directory name may appear as tw)-2.5 F 3.035(oa)-.1 G(djacent) --3.035 E .867(colons, or as an initial or trailing colon.)144 516 R .868 -(The def)5.868 F .868(ault path is system-dependent, and is set by the) +.535(lue of).25 F F2 -.666(PA)3.035 G(TH)-.189 E F0 .535 +(indicates the current directory)2.785 F 5.535(.A)-.65 G .535 +(null directory name may appear as tw)-2.5 F 3.036(oa)-.1 G(djacent) +-3.036 E .868(colons, or as an initial or trailing colon.)144 516 R .868 +(The def)5.868 F .867(ault path is system-dependent, and is set by the) -.1 F(administrator who installs)144 528 Q F1(bash)2.5 E F0 5(.A)C (common v)-2.5 E(alue is)-.25 E/F4 10/Courier@0 SF (/usr/local/bin:/usr/lo-)2.5 E(cal/sbin:/usr/bin:/usr/sbin:/bin:/sbin) -144 540 Q F0(.)A F1(POSIXL)108 552 Q(Y_CORRECT)-.92 E F0 .471(If this v) -144 564 R .471(ariable is in the en)-.25 F .471(vironment when)-.4 F F1 +144 540 Q F0(.)A F1(POSIXL)108 552 Q(Y_CORRECT)-.92 E F0 .472(If this v) +144 564 R .472(ariable is in the en)-.25 F .471(vironment when)-.4 F F1 (bash)2.971 E F0 .471(starts, the shell enters)2.971 F/F5 10 -/Times-Italic@0 SF .472(posix mode)2.972 F F0 .472(before reading)2.972 +/Times-Italic@0 SF .471(posix mode)2.971 F F0 .471(before reading)2.971 F .011(the startup \214les, as if the)144 576 R F1(\255\255posix)2.511 E F0(in)2.511 E -.2(vo)-.4 G .011(cation option had been supplied.).2 F .011(If it is set while the shell is)5.011 F(running,)144 588 Q F1(bash) -4.497 E F0(enables)4.497 E F5 1.997(posix mode)4.497 F F0 4.497(,a)C +4.498 E F0(enables)4.498 E F5 1.997(posix mode)4.497 F F0 4.497(,a)C 4.497(si)-4.497 G 4.497(ft)-4.497 G 1.997(he command)-4.497 F F4 1.997 -(set -o posix)4.497 F F0 1.998(had been e)4.497 F -.15(xe)-.15 G(cuted.) +(set -o posix)4.497 F F0 1.997(had been e)4.497 F -.15(xe)-.15 G(cuted.) .15 E(When the shell enters)144 600 Q F5(posix mode)2.5 E F0 2.5(,i)C 2.5(ts)-2.5 G(ets this v)-2.5 E(ariable if it w)-.25 E (as not already set.)-.1 E F1(PR)108 612 Q(OMPT_COMMAND)-.3 E F0 .155 @@ -2432,49 +2434,49 @@ E F0(and)3.423 E F1(\\W)3.423 E F0 .923(prompt string escapes \(see) -.15 F F2(PR)3.674 E(OMPTING)-.27 E F0(belo)3.424 E 1.174 (w\) and displayed by interacti)-.25 F -.15(ve)-.25 G (shells after reading a command and before the command is e)144 720 Q --.15(xe)-.15 G(cuted.).15 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E -(18)193.45 E 0 Cg EP +-.15(xe)-.15 G(cuted.).15 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E +(18)199.835 E 0 Cg EP %%Page: 19 19 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(PS1)108 84 Q F0 .064(The v)144 84 R .065(alue of this parameter is e) +SF(PS1)108 84 Q F0 .065(The v)144 84 R .065(alue of this parameter is e) -.25 F .065(xpanded \(see)-.15 F/F2 9/Times-Bold@0 SF(PR)2.565 E (OMPTING)-.27 E F0(belo)2.315 E .065(w\) and used as the primary prompt) -.25 F 2.5(string. The)144 96 R(def)2.5 E(ault v)-.1 E(alue is `)-.25 E (`)-.74 E F1(\\s\255\\v\\$)A F0 -.74('')2.5 G(.).74 E F1(PS2)108 108 Q -F0 .118(The v)144 108 R .118(alue of this parameter is e)-.25 F .118 -(xpanded as with)-.15 F F2(PS1)2.617 E F0 .117 -(and used as the secondary prompt string.)2.367 F(The)5.117 E(def)144 +F0 .117(The v)144 108 R .117(alue of this parameter is e)-.25 F .117 +(xpanded as with)-.15 F F2(PS1)2.617 E F0 .118 +(and used as the secondary prompt string.)2.368 F(The)5.118 E(def)144 120 Q(ault is `)-.1 E(`)-.74 E F1(>)A F0 -.74('')2.5 G(.).74 E F1(PS3) -108 132 Q F0 1.115(The v)144 132 R 1.115 +108 132 Q F0 1.116(The v)144 132 R 1.115 (alue of this parameter is used as the prompt for the)-.25 F F1(select) -3.615 E F0 1.116(command \(see)3.616 F F2 1.116(SHELL GRAM-)3.616 F(MAR) -144 144 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E F1(PS4)108 156 Q F0 -.101(The v)144 156 R .101(alue of this parameter is e)-.25 F .101 -(xpanded as with)-.15 F F2(PS1)2.6 E F0 .1(and the v)2.35 F .1 -(alue is printed before each command)-.25 F F1(bash)144 168 Q F0 .334 -(displays during an e)2.834 F -.15(xe)-.15 G .335(cution trace.).15 F +3.615 E F0 1.115(command \(see)3.615 F F2 1.115(SHELL GRAM-)3.615 F(MAR) +144 144 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E F1(PS4)108 156 Q F0 .1 +(The v)144 156 R .1(alue of this parameter is e)-.25 F .1 +(xpanded as with)-.15 F F2(PS1)2.6 E F0 .101(and the v)2.35 F .101 +(alue is printed before each command)-.25 F F1(bash)144 168 Q F0 .335 +(displays during an e)2.835 F -.15(xe)-.15 G .335(cution trace.).15 F .335(The \214rst character of the e)5.335 F .335(xpanded v)-.15 F .335 -(alue of)-.25 F F2(PS4)2.835 E F0 .335(is repli-)2.585 F +(alue of)-.25 F F2(PS4)2.834 E F0 .334(is repli-)2.584 F (cated multiple times, as necessary)144 180 Q 2.5(,t)-.65 G 2.5(oi)-2.5 G(ndicate multiple le)-2.5 E -.15(ve)-.25 G(ls of indirection.).15 E (The def)5 E(ault is `)-.1 E(`)-.74 E F1(+)A F0 -.74('')2.5 G(.).74 E F1 -(SHELL)108 192 Q F0 .543(This v)144 204 R .543(ariable e)-.25 F .543 -(xpands to the full pathname to the shell.)-.15 F .542 -(If it is not set when the shell starts,)5.543 F F1(bash)3.042 E F0 +(SHELL)108 192 Q F0 .542(This v)144 204 R .542(ariable e)-.25 F .542 +(xpands to the full pathname to the shell.)-.15 F .543 +(If it is not set when the shell starts,)5.543 F F1(bash)3.043 E F0 (assigns to it the full pathname of the current user')144 216 Q 2.5(sl) --.55 G(ogin shell.)-2.5 E F1(TIMEFORMA)108 228 Q(T)-.95 E F0 .826(The v) +-.55 G(ogin shell.)-2.5 E F1(TIMEFORMA)108 228 Q(T)-.95 E F0 .827(The v) 144 240 R .826 (alue of this parameter is used as a format string specifying ho)-.25 F -3.327(wt)-.25 G .827(he timing information for)-3.327 F .649 -(pipelines pre\214x)144 252 R .649(ed with the)-.15 F F1(time)3.149 E F0 -(reserv)3.149 E .649(ed w)-.15 F .648(ord should be displayed.)-.1 F -(The)5.648 E F1(%)3.148 E F0 .648(character introduces)3.148 F .711 +3.326(wt)-.25 G .826(he timing information for)-3.326 F .648 +(pipelines pre\214x)144 252 R .648(ed with the)-.15 F F1(time)3.148 E F0 +(reserv)3.148 E .648(ed w)-.15 F .649(ord should be displayed.)-.1 F +(The)5.649 E F1(%)3.149 E F0 .649(character introduces)3.149 F .712 (an escape sequence that is e)144 264 R .711(xpanded to a time v)-.15 F -.712(alue or other information.)-.25 F .712(The escape sequences)5.712 F +.711(alue or other information.)-.25 F .711(The escape sequences)5.711 F (and their meanings are as follo)144 276 Q (ws; the braces denote optional portions.)-.25 E F1(%%)144 294 Q F0 2.5 (Al)194 294 S(iteral)-2.5 E F1(%)2.5 E F0(.)A F1(%[)144 306 Q/F3 10 @@ -2486,20 +2488,20 @@ F3(p)A F1(][l]S)A F0(The number of CPU seconds spent in system mode.)194 (The CPU percentage, computed as \(%U + %S\) / %R.)194 342 Q .87 (The optional)144 358.8 R F3(p)3.37 E F0 .87(is a digit specifying the) 3.37 F F3(pr)3.37 E(ecision)-.37 E F0 3.37(,t)C .87 -(he number of fractional digits after a decimal)-3.37 F 2.525(point. A) -144 370.8 R -.25(va)2.525 G .025 -(lue of 0 causes no decimal point or fraction to be output.).25 F .026 -(At most three places after the)5.025 F .538 -(decimal point may be speci\214ed; v)144 382.8 R .538(alues of)-.25 F F3 -(p)3.038 E F0 .537(greater than 3 are changed to 3.)3.037 F(If)5.537 E -F3(p)3.037 E F0 .537(is not speci\214ed,)3.037 F(the v)144 394.8 Q -(alue 3 is used.)-.25 E .667(The optional)144 411.6 R F1(l)3.167 E F0 +(he number of fractional digits after a decimal)-3.37 F 2.526(point. A) +144 370.8 R -.25(va)2.526 G .025 +(lue of 0 causes no decimal point or fraction to be output.).25 F .025 +(At most three places after the)5.025 F .537 +(decimal point may be speci\214ed; v)144 382.8 R .537(alues of)-.25 F F3 +(p)3.037 E F0 .537(greater than 3 are changed to 3.)3.037 F(If)5.538 E +F3(p)3.038 E F0 .538(is not speci\214ed,)3.038 F(the v)144 394.8 Q +(alue 3 is used.)-.25 E .668(The optional)144 411.6 R F1(l)3.168 E F0 .668(speci\214es a longer format, including minutes, of the form)3.168 F -F3(MM)3.168 E F0(m)A F3(SS)A F0(.)A F3(FF)A F0 3.168(s. The)B -.25(va) -3.168 G(lue).25 E(of)144 423.6 Q F3(p)2.5 E F0 -(determines whether or not the fraction is included.)2.5 E 13.365 -(If this v)144 440.4 R 13.365(ariable is not set,)-.25 F F1(bash)15.865 -E F0 13.364(acts as if it had the v)15.865 F(alue)-.25 E F1($\010\\nr) +F3(MM)3.168 E F0(m)A F3(SS)A F0(.)A F3(FF)A F0 3.167(s. The)B -.25(va) +3.167 G(lue).25 E(of)144 423.6 Q F3(p)2.5 E F0 +(determines whether or not the fraction is included.)2.5 E 13.364 +(If this v)144 440.4 R 13.364(ariable is not set,)-.25 F F1(bash)15.865 +E F0 13.365(acts as if it had the v)15.865 F(alue)-.25 E F1($\010\\nr) 144 452.4 Q(eal\\t%3lR\\nuser\\t%3lU\\nsys\\t%3lS\010)-.18 E F0 7.113 (.I)C 4.613(ft)-7.113 G 2.113(he v)-4.613 F 2.113 (alue is null, no timing information is dis-)-.25 F 2.5(played. A)144 @@ -2508,198 +2510,198 @@ E F0 13.364(acts as if it had the v)15.865 F(alue)-.25 E F1($\010\\nr) 476.4 Q F0 .941(If set to a v)144 488.4 R .941(alue greater than zero,) -.25 F F2(TMOUT)3.441 E F0 .941(is treated as the def)3.191 F .941 (ault timeout for the)-.1 F F1 -.18(re)3.441 G(ad).18 E F0 -.2(bu)3.441 -G(iltin.).2 E(The)144 500.4 Q F1(select)2.81 E F0 .31 -(command terminates if input does not arri)2.81 F .611 -.15(ve a)-.25 H -(fter).15 E F2(TMOUT)2.811 E F0 .311(seconds when input is com-)2.561 F -.886(ing from a terminal.)144 512.4 R .886(In an interacti)5.886 F 1.185 --.15(ve s)-.25 H .885(hell, the v).15 F .885 +G(iltin.).2 E(The)144 500.4 Q F1(select)2.811 E F0 .311 +(command terminates if input does not arri)2.811 F .61 -.15(ve a)-.25 H +(fter).15 E F2(TMOUT)2.81 E F0 .31(seconds when input is com-)2.56 F +.885(ing from a terminal.)144 512.4 R .885(In an interacti)5.885 F 1.185 +-.15(ve s)-.25 H .885(hell, the v).15 F .886 (alue is interpreted as the number of seconds to)-.25 F -.1(wa)144 524.4 S 1.05(it for a line of input after issuing the primary prompt.).1 F F1 (Bash)6.05 E F0 1.05(terminates after w)3.55 F 1.05(aiting for that)-.1 F(number of seconds if a complete line of input does not arri)144 536.4 -Q -.15(ve)-.25 G(.).15 E F1(TMPDIR)108 548.4 Q F0 .391(If set,)144 560.4 -R F1(bash)2.891 E F0 .391(uses its v)2.891 F .391 -(alue as the name of a directory in which)-.25 F F1(bash)2.89 E F0 .39 -(creates temporary \214les for the)2.89 F(shell')144 572.4 Q 2.5(su)-.55 -G(se.)-2.5 E F1(auto_r)108 584.4 Q(esume)-.18 E F0 .53(This v)144 596.4 -R .53(ariable controls ho)-.25 F 3.03(wt)-.25 G .531 -(he shell interacts with the user and job control.)-3.03 F .531 -(If this v)5.531 F .531(ariable is set,)-.25 F .539(single w)144 608.4 R +Q -.15(ve)-.25 G(.).15 E F1(TMPDIR)108 548.4 Q F0 .39(If set,)144 560.4 +R F1(bash)2.89 E F0 .39(uses its v)2.89 F .39 +(alue as the name of a directory in which)-.25 F F1(bash)2.891 E F0 .391 +(creates temporary \214les for the)2.891 F(shell')144 572.4 Q 2.5(su) +-.55 G(se.)-2.5 E F1(auto_r)108 584.4 Q(esume)-.18 E F0 .531(This v)144 +596.4 R .531(ariable controls ho)-.25 F 3.031(wt)-.25 G .531 +(he shell interacts with the user and job control.)-3.031 F .53 +(If this v)5.53 F .53(ariable is set,)-.25 F .538(single w)144 608.4 R .538(ord simple commands without redirections are treated as candidates\ - for resumption of an)-.1 F -.15(ex)144 620.4 S .366(isting stopped job) -.15 F 5.366(.T)-.4 G .366(here is no ambiguity allo)-5.366 F .366 -(wed; if there is more than one job be)-.25 F .367(ginning with)-.15 F -1.125(the string typed, the job most recently accessed is selected.)144 -632.4 R(The)6.125 E F3(name)3.985 E F0 1.124(of a stopped job, in this) -3.805 F(conte)144 644.4 Q 1.132 + for resumption of an)-.1 F -.15(ex)144 620.4 S .367(isting stopped job) +.15 F 5.367(.T)-.4 G .366(here is no ambiguity allo)-5.367 F .366 +(wed; if there is more than one job be)-.25 F .366(ginning with)-.15 F +1.124(the string typed, the job most recently accessed is selected.)144 +632.4 R(The)6.125 E F3(name)3.985 E F0 1.125(of a stopped job, in this) +3.805 F(conte)144 644.4 Q 1.133 (xt, is the command line used to start it.)-.15 F 1.133(If set to the v) -6.133 F(alue)-.25 E F3 -.2(ex)3.633 G(act).2 E F0 3.633(,t).68 G 1.133 -(he string supplied must)-3.633 F .606 +6.133 F(alue)-.25 E F3 -.2(ex)3.633 G(act).2 E F0 3.632(,t).68 G 1.132 +(he string supplied must)-3.632 F .605 (match the name of a stopped job e)144 656.4 R .606(xactly; if set to) --.15 F F3(substring)3.445 E F0 3.105(,t).22 G .605 -(he string supplied needs to match a)-3.105 F .884 +-.15 F F3(substring)3.446 E F0 3.106(,t).22 G .606 +(he string supplied needs to match a)-3.106 F .885 (substring of the name of a stopped job)144 668.4 R 5.884(.T)-.4 G(he) --5.884 E F3(substring)3.724 E F0 -.25(va)3.604 G .885(lue pro).25 F .885 -(vides functionality analogous to)-.15 F(the)144 680.4 Q F1(%?)3.334 E -F0 .834(job identi\214er \(see)5.834 F F2 .834(JOB CONTR)3.334 F(OL)-.27 +-5.884 E F3(substring)3.724 E F0 -.25(va)3.604 G .884(lue pro).25 F .884 +(vides functionality analogous to)-.15 F(the)144 680.4 Q F1(%?)3.333 E +F0 .833(job identi\214er \(see)5.833 F F2 .834(JOB CONTR)3.334 F(OL)-.27 E F0(belo)3.084 E 3.334(w\). If)-.25 F .834(set to an)3.334 F 3.334(yo) --.15 G .834(ther v)-3.334 F .833(alue, the supplied string)-.25 F .315 +-.15 G .834(ther v)-3.334 F .834(alue, the supplied string)-.25 F .316 (must be a pre\214x of a stopped job')144 692.4 R 2.816(sn)-.55 G .316 -(ame; this pro)-2.816 F .316(vides functionality analogous to the)-.15 F -F1(%)2.816 E F3(string)A F0(job)2.816 E(identi\214er)144 704.4 Q(.)-.55 -E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(19)193.45 E 0 Cg EP +(ame; this pro)-2.816 F .315(vides functionality analogous to the)-.15 F +F1(%)2.815 E F3(string)A F0(job)2.815 E(identi\214er)144 704.4 Q(.)-.55 +E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(19)199.835 E 0 Cg EP %%Page: 20 20 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(histchars)108 84 Q F0 .546(The tw)144 96 R 3.046(oo)-.1 G 3.046(rt) --3.046 G .546(hree characters which control history e)-3.046 F .545 -(xpansion and tok)-.15 F .545(enization \(see)-.1 F/F2 9/Times-Bold@0 SF -(HIST)3.045 E(OR)-.162 E 2.795(YE)-.315 G(X-)-2.795 E -.666(PA)144 108 S -(NSION).666 E F0(belo)2.987 E 3.237(w\). The)-.25 F .737 -(\214rst character is the)3.237 F/F3 10/Times-Italic@0 SF .737 -(history e)3.237 F(xpansion)-.2 E F0(character)3.238 E 3.238(,t)-.4 G -.738(he character which sig-)-3.238 F .761 -(nals the start of a history e)144 120 R .761(xpansion, normally `)-.15 -F F1(!)A F0 3.261('. The)B .76(second character is the)3.261 F F3(quic) -3.26 E 3.26(ks)-.2 G(ubstitution)-3.26 E F0(character)144 132 Q 3.476 -(,w)-.4 G .977(hich is used as shorthand for re-running the pre)-3.476 F -.977(vious command entered, substituting)-.25 F .131 -(one string for another in the command.)144 144 R .131(The def)5.131 F -.131(ault is `)-.1 F F1(^)A F0 2.63('. The)B .13 -(optional third character is the char)2.63 F(-)-.2 E .276(acter which i\ -ndicates that the remainder of the line is a comment when found as the \ -\214rst character)144 156 R .46(of a w)144 168 R .46(ord, normally `)-.1 -F F1(#)A F0 2.959('. The)B .459 +SF(histchars)108 84 Q F0 .545(The tw)144 96 R 3.045(oo)-.1 G 3.045(rt) +-3.045 G .545(hree characters which control history e)-3.045 F .546 +(xpansion and tok)-.15 F .546(enization \(see)-.1 F/F2 9/Times-Bold@0 SF +(HIST)3.046 E(OR)-.162 E 2.796(YE)-.315 G(X-)-2.796 E -.666(PA)144 108 S +(NSION).666 E F0(belo)2.988 E 3.238(w\). The)-.25 F .738 +(\214rst character is the)3.238 F/F3 10/Times-Italic@0 SF .737 +(history e)3.237 F(xpansion)-.2 E F0(character)3.237 E 3.237(,t)-.4 G +.737(he character which sig-)-3.237 F .76(nals the start of a history e) +144 120 R .761(xpansion, normally `)-.15 F F1(!)A F0 3.261('. The)B .761 +(second character is the)3.261 F F3(quic)3.261 E 3.261(ks)-.2 G +(ubstitution)-3.261 E F0(character)144 132 Q 3.477(,w)-.4 G .977 +(hich is used as shorthand for re-running the pre)-3.477 F .976 +(vious command entered, substituting)-.25 F .13 +(one string for another in the command.)144 144 R .131(The def)5.13 F +.131(ault is `)-.1 F F1(^)A F0 2.631('. The)B .131 +(optional third character is the char)2.631 F(-)-.2 E .276(acter which \ +indicates that the remainder of the line is a comment when found as the\ + \214rst character)144 156 R .459(of a w)144 168 R .459(ord, normally `) +-.1 F F1(#)A F0 2.959('. The)B .459 (history comment character causes history substitution to be skipped) -2.959 F .466(for the remaining w)144 180 R .466(ords on the line.)-.1 F -.467(It does not necessarily cause the shell parser to treat the rest) +2.959 F .467(for the remaining w)144 180 R .467(ords on the line.)-.1 F +.466(It does not necessarily cause the shell parser to treat the rest) 5.467 F(of the line as a comment.)144 192 Q F1(Arrays)87 208.8 Q(Bash) -108 220.8 Q F0(pro)3.391 E .891(vides one-dimensional inde)-.15 F -.15 -(xe)-.15 G 3.391(da).15 G .891(nd associati)-3.391 F 1.191 -.15(ve a) --.25 H .891(rray v).15 F 3.391(ariables. An)-.25 F 3.391(yv)-.15 G .89 +108 220.8 Q F0(pro)3.39 E .89(vides one-dimensional inde)-.15 F -.15(xe) +-.15 G 3.39(da).15 G .891(nd associati)-3.39 F 1.191 -.15(ve a)-.25 H +.891(rray v).15 F 3.391(ariables. An)-.25 F 3.391(yv)-.15 G .891 (ariable may be used as an)-3.641 F(inde)108 232.8 Q -.15(xe)-.15 G -2.573(da).15 G .073(rray; the)-2.573 F F1(declar)2.573 E(e)-.18 E F0 -.2 -(bu)2.573 G .073(iltin will e).2 F .073(xplicitly declare an array)-.15 -F 5.073(.T)-.65 G .074(here is no maximum limit on the size of)-5.073 F -.329(an array)108 244.8 R 2.829(,n)-.65 G .329(or an)-2.829 F 2.829(yr) --.15 G .329(equirement that members be inde)-2.829 F -.15(xe)-.15 G -2.829(do).15 G 2.829(ra)-2.829 G .328(ssigned contiguously)-2.829 F -5.328(.I)-.65 G(nde)-5.328 E -.15(xe)-.15 G 2.828(da).15 G .328 -(rrays are refer)-2.828 F(-)-.2 E 1.595(enced using inte)108 256.8 R +2.574(da).15 G .074(rray; the)-2.574 F F1(declar)2.574 E(e)-.18 E F0 -.2 +(bu)2.574 G .074(iltin will e).2 F .073(xplicitly declare an array)-.15 +F 5.073(.T)-.65 G .073(here is no maximum limit on the size of)-5.073 F +.328(an array)108 244.8 R 2.828(,n)-.65 G .328(or an)-2.828 F 2.828(yr) +-.15 G .329(equirement that members be inde)-2.828 F -.15(xe)-.15 G +2.829(do).15 G 2.829(ra)-2.829 G .329(ssigned contiguously)-2.829 F +5.329(.I)-.65 G(nde)-5.329 E -.15(xe)-.15 G 2.829(da).15 G .329 +(rrays are refer)-2.829 F(-)-.2 E 1.595(enced using inte)108 256.8 R 1.595(gers \(including arithmetic e)-.15 F 1.595 (xpressions\) and are zero-based; associati)-.15 F 1.895 -.15(ve a)-.25 H 1.595(rrays are refer).15 F(-)-.2 E(enced using arbitrary strings.)108 268.8 Q(Unless otherwise noted, inde)5 E -.15(xe)-.15 G 2.5(da).15 G (rray indices must be non-ne)-2.5 E -.05(ga)-.15 G(ti).05 E .3 -.15 -(ve i)-.25 H(nte).15 E(gers.)-.15 E 2.463(An inde)108 285.6 R -.15(xe) --.15 G 4.963(da).15 G 2.463(rray is created automatically if an)-4.963 F -4.963(yv)-.15 G 2.462(ariable is assigned to using the syntax)-5.213 F -F3(name)4.962 E F0([)A F3(sub-)A(script)108 297.6 Q F0(]=)A F3(value)A -F0 5.506(.T)C(he)-5.506 E F3(subscript)3.346 E F0 .507 +(ve i)-.25 H(nte).15 E(gers.)-.15 E 2.462(An inde)108 285.6 R -.15(xe) +-.15 G 4.962(da).15 G 2.462(rray is created automatically if an)-4.962 F +4.963(yv)-.15 G 2.463(ariable is assigned to using the syntax)-5.213 F +F3(name)4.963 E F0([)A F3(sub-)A(script)108 297.6 Q F0(]=)A F3(value)A +F0 5.507(.T)C(he)-5.507 E F3(subscript)3.347 E F0 .507 (is treated as an arithmetic e)3.687 F .507(xpression that must e)-.15 F --.25(va)-.25 G .507(luate to a number).25 F 5.507(.T)-.55 G 3.007(oe) --6.307 G(x-)-3.157 E 1.193(plicitly declare an inde)108 309.6 R -.15(xe) --.15 G 3.693(da).15 G(rray)-3.693 E 3.693(,u)-.65 G(se)-3.693 E F1 -(declar)3.693 E 3.693<65ad>-.18 G(a)-3.693 E F3(name)3.693 E F0(\(see) -3.692 E F2 1.192(SHELL B)3.692 F(UIL)-.09 E 1.192(TIN COMMANDS)-.828 F -F0(belo)3.442 E(w\).)-.25 E F1(de-)6.192 E(clar)108 321.6 Q 2.5<65ad> +-.25(va)-.25 G .507(luate to a number).25 F 5.506(.T)-.55 G 3.006(oe) +-6.306 G(x-)-3.156 E 1.192(plicitly declare an inde)108 309.6 R -.15(xe) +-.15 G 3.692(da).15 G(rray)-3.692 E 3.692(,u)-.65 G(se)-3.692 E F1 +(declar)3.692 E 3.693<65ad>-.18 G(a)-3.693 E F3(name)3.693 E F0(\(see) +3.693 E F2 1.193(SHELL B)3.693 F(UIL)-.09 E 1.193(TIN COMMANDS)-.828 F +F0(belo)3.443 E(w\).)-.25 E F1(de-)6.193 E(clar)108 321.6 Q 2.5<65ad> -.18 G(a)-2.5 E F3(name)2.5 E F1([)A F3(subscript)A F1(])A F0 (is also accepted; the)2.5 E F3(subscript)2.5 E F0(is ignored.)2.5 E (Associati)108 338.4 Q .3 -.15(ve a)-.25 H(rrays are created using).15 E F1(declar)2.5 E 2.5<65ad>-.18 G(A)-2.5 E F3(name)2.5 E F0(.)A(Attrib)108 -355.2 Q .94(utes may be speci\214ed for an array v)-.2 F .941 -(ariable using the)-.25 F F1(declar)3.441 E(e)-.18 E F0(and)3.441 E F1 --.18(re)3.441 G(adonly).18 E F0 -.2(bu)3.441 G 3.441(iltins. Each).2 F -(attrib)3.441 E(ute)-.2 E(applies to all members of an array)108 367.2 Q +355.2 Q .941(utes may be speci\214ed for an array v)-.2 F .941 +(ariable using the)-.25 F F1(declar)3.441 E(e)-.18 E F0(and)3.44 E F1 +-.18(re)3.44 G(adonly).18 E F0 -.2(bu)3.44 G 3.44(iltins. Each).2 F +(attrib)3.44 E(ute)-.2 E(applies to all members of an array)108 367.2 Q (.)-.65 E 1.647 (Arrays are assigned to using compound assignments of the form)108 384 R F3(name)4.147 E F0(=)A F1(\()A F0 -.25(va)C(lue).25 E F3(1)A F0 1.647 -(... v)4.147 F(alue)-.25 E F3(n)A F1(\))A F0 4.147(,w)C 1.647(here each) --4.147 F F3(value)108 396 Q F0 .211(may be of the form [)2.711 F F3 +(... v)4.147 F(alue)-.25 E F3(n)A F1(\))A F0 4.148(,w)C 1.648(here each) +-4.148 F F3(value)108 396 Q F0 .212(may be of the form [)2.712 F F3 (subscript)A F0(]=)A F3(string)A F0 5.211(.I)C(nde)-5.211 E -.15(xe)-.15 -G 2.711(da).15 G .212(rray assignments do not require an)-2.711 F .212 -(ything b)-.15 F(ut)-.2 E F3(string)2.712 E F0(.)A(Each)108 408 Q F3 -(value)2.53 E F0 .029(in the list is e)2.529 F .029 +G 2.711(da).15 G .211(rray assignments do not require an)-2.711 F .211 +(ything b)-.15 F(ut)-.2 E F3(string)2.711 E F0(.)A(Each)108 408 Q F3 +(value)2.529 E F0 .029(in the list is e)2.529 F .029 (xpanded using all the shell e)-.15 F .029(xpansions described belo)-.15 F 2.529(wu)-.25 G(nder)-2.529 E F2(EXP)2.529 E(ANSION)-.666 E/F4 9 -/Times-Roman@0 SF(.)A F0(When)4.529 E .995(assigning to inde)108 420 R --.15(xe)-.15 G 3.495(da).15 G .995(rrays, if the optional brack)-3.495 F -.996(ets and subscript are supplied, that inde)-.1 F 3.496(xi)-.15 G -3.496(sa)-3.496 G .996(ssigned to;)-3.496 F .417(otherwise the inde)108 -432 R 2.917(xo)-.15 G 2.917(ft)-2.917 G .417 -(he element assigned is the last inde)-2.917 F 2.917(xa)-.15 G .416 -(ssigned to by the statement plus one.)-2.917 F(Inde)5.416 E(x-)-.15 E +/Times-Roman@0 SF(.)A F0(When)4.53 E .996(assigning to inde)108 420 R +-.15(xe)-.15 G 3.496(da).15 G .996(rrays, if the optional brack)-3.496 F +.996(ets and subscript are supplied, that inde)-.1 F 3.495(xi)-.15 G +3.495(sa)-3.495 G .995(ssigned to;)-3.495 F .416(otherwise the inde)108 +432 R 2.916(xo)-.15 G 2.916(ft)-2.916 G .417 +(he element assigned is the last inde)-2.916 F 2.917(xa)-.15 G .417 +(ssigned to by the statement plus one.)-2.917 F(Inde)5.417 E(x-)-.15 E (ing starts at zero.)108 444 Q 1.288(When assigning to an associati)108 460.8 R 1.588 -.15(ve a)-.25 H(rray).15 E 3.788(,t)-.65 G 1.288(he w) -3.788 F 1.288(ords in a compound assignment may be either assignment) -.1 F .608 (statements, for which the subscript is required, or a list of w)108 472.8 R .608(ords that is interpreted as a sequence of alter)-.1 F(-)-.2 -E 1.956(nating k)108 484.8 R -.15(ey)-.1 G 4.456(sa).15 G 1.956(nd v) --4.456 F(alues:)-.25 E F3(name)4.456 E F0(=)A F1(\()A F3 -.1(ke)4.456 G +E 1.957(nating k)108 484.8 R -.15(ey)-.1 G 4.457(sa).15 G 1.957(nd v) +-4.457 F(alues:)-.25 E F3(name)4.457 E F0(=)A F1(\()A F3 -.1(ke)4.457 G 1.957(y1 value1 k)-.2 F -.3(ey)-.1 G 4.457(2v).3 G(alue2)-4.457 E F0 -(...)4.457 E F1(\))A F0 6.957(.T)C 1.957 -(hese are treated identically to)-6.957 F F3(name)4.457 E F0(=)A F1(\()A -F0([)108 496.8 Q F3 -.1(ke)C(y1)-.2 E F0(]=)A F3(value1)A F0([)3.133 E -F3 -.1(ke)C(y2)-.2 E F0(]=)A F3(value2)A F0(...)3.133 E F1(\))A F0 5.633 -(.T)C .633(he \214rst w)-5.633 F .633(ord in the list determines ho)-.1 -F 3.132(wt)-.25 G .632(he remaining w)-3.132 F .632(ords are inter)-.1 F -(-)-.2 E .153 +(...)4.457 E F1(\))A F0 6.957(.T)C 1.956 +(hese are treated identically to)-6.957 F F3(name)4.456 E F0(=)A F1(\()A +F0([)108 496.8 Q F3 -.1(ke)C(y1)-.2 E F0(]=)A F3(value1)A F0([)3.132 E +F3 -.1(ke)C(y2)-.2 E F0(]=)A F3(value2)A F0(...)3.132 E F1(\))A F0 5.632 +(.T)C .632(he \214rst w)-5.632 F .633(ord in the list determines ho)-.1 +F 3.133(wt)-.25 G .633(he remaining w)-3.133 F .633(ords are inter)-.1 F +(-)-.2 E .154 (preted; all assignments in a list must be of the same type.)108 508.8 R -.154(When using k)5.154 F -.15(ey)-.1 G(/v).15 E .154(alue pairs, the k) --.25 F -.15(ey)-.1 G 2.654(sm).15 G .154(ay not be)-2.654 F +.153(When using k)5.153 F -.15(ey)-.1 G(/v).15 E .153(alue pairs, the k) +-.25 F -.15(ey)-.1 G 2.653(sm).15 G .153(ay not be)-2.653 F (missing or empty; a \214nal missing v)108 520.8 Q(alue is treated lik) --.25 E 2.5(et)-.1 G(he empty string.)-2.5 E .24 -(This syntax is also accepted by the)108 537.6 R F1(declar)2.74 E(e)-.18 -E F0 -.2(bu)2.739 G 2.739(iltin. Indi).2 F .239 +-.25 E 2.5(et)-.1 G(he empty string.)-2.5 E .239 +(This syntax is also accepted by the)108 537.6 R F1(declar)2.739 E(e) +-.18 E F0 -.2(bu)2.739 G 2.739(iltin. Indi).2 F .24 (vidual array elements may be assigned to using the)-.25 F F3(name)108 549.6 Q F0([)A F3(subscript)A F0(]=)A F3(value)A F0 1.917 -(syntax introduced abo)4.416 F -.15(ve)-.15 G 6.917(.W).15 G 1.917 +(syntax introduced abo)4.417 F -.15(ve)-.15 G 6.917(.W).15 G 1.917 (hen assigning to an inde)-6.917 F -.15(xe)-.15 G 4.417(da).15 G(rray) --4.417 E 4.417(,i)-.65 G(f)-4.417 E F3(name)4.777 E F0 1.917(is sub-) -4.597 F .116(scripted by a ne)108 561.6 R -.05(ga)-.15 G(ti).05 E .416 --.15(ve n)-.25 H(umber).15 E 2.616(,t)-.4 G .115 -(hat number is interpreted as relati)-2.616 F .415 -.15(ve t)-.25 H -2.615(oo).15 G .115(ne greater than the maximum inde)-2.615 F(x)-.15 E -(of)108 573.6 Q F3(name)2.676 E F0 2.676(,s)C 2.676(on)-2.676 G -2.25 --.15(eg a)-2.676 H(ti).15 E .476 -.15(ve i)-.25 H .177 +-4.417 E 4.417(,i)-.65 G(f)-4.417 E F3(name)4.777 E F0 1.916(is sub-) +4.597 F .115(scripted by a ne)108 561.6 R -.05(ga)-.15 G(ti).05 E .415 +-.15(ve n)-.25 H(umber).15 E 2.615(,t)-.4 G .115 +(hat number is interpreted as relati)-2.615 F .415 -.15(ve t)-.25 H +2.615(oo).15 G .116(ne greater than the maximum inde)-2.615 F(x)-.15 E +(of)108 573.6 Q F3(name)2.677 E F0 2.677(,s)C 2.677(on)-2.677 G -2.25 +-.15(eg a)-2.677 H(ti).15 E .477 -.15(ve i)-.25 H .177 (ndices count back from the end of the array).15 F 2.677(,a)-.65 G .177 -(nd an inde)-2.677 F 2.677(xo)-.15 G 2.677<66ad>-2.677 G 2.677(1r)-2.677 -G .177(eferences the last el-)-2.677 F(ement.)108 585.6 Q .717 -(The += operator will append to an array v)108 602.4 R .716 +(nd an inde)-2.677 F 2.676(xo)-.15 G 2.676<66ad>-2.676 G 2.676(1r)-2.676 +G .176(eferences the last el-)-2.676 F(ement.)108 585.6 Q .716 +(The += operator will append to an array v)108 602.4 R .717 (ariable when assigning using the compound assignment syntax;)-.25 F (see)108 614.4 Q F2 -.666(PA)2.5 G(RAMETERS).666 E F0(abo)2.25 E -.15 -(ve)-.15 G(.).15 E(An)108 631.2 Q 3.575(ye)-.15 G 1.075 -(lement of an array may be referenced using ${)-3.575 F F3(name)A F0([)A -F3(subscript)A F0 3.575(]}. The)B 1.076(braces are required to a)3.576 F --.2(vo)-.2 G(id).2 E 1.542(con\215icts with pathname e)108 643.2 R 4.041 +(ve)-.15 G(.).15 E(An)108 631.2 Q 3.576(ye)-.15 G 1.076 +(lement of an array may be referenced using ${)-3.576 F F3(name)A F0([)A +F3(subscript)A F0 3.575(]}. The)B 1.075(braces are required to a)3.575 F +-.2(vo)-.2 G(id).2 E 1.541(con\215icts with pathname e)108 643.2 R 4.041 (xpansion. If)-.15 F F3(subscript)4.041 E F0(is)4.041 E F1(@)4.041 E F0 (or)4.041 E F1(*)4.041 E F0 4.041(,t)C 1.541(he w)-4.041 F 1.541(ord e) --.1 F 1.541(xpands to all members of)-.15 F F3(name)4.041 E F0(.)A 1.056 -(These subscripts dif)108 655.2 R 1.056(fer only when the w)-.25 F 1.057 -(ord appears within double quotes.)-.1 F 1.057(If the w)6.057 F 1.057 -(ord is double-quoted,)-.1 F(${)108 667.2 Q F3(name)A F0 .521([*]} e)B -.521(xpands to a single w)-.15 F .521(ord with the v)-.1 F .52 +-.1 F 1.541(xpands to all members of)-.15 F F3(name)4.042 E F0(.)A 1.057 +(These subscripts dif)108 655.2 R 1.057(fer only when the w)-.25 F 1.057 +(ord appears within double quotes.)-.1 F 1.056(If the w)6.056 F 1.056 +(ord is double-quoted,)-.1 F(${)108 667.2 Q F3(name)A F0 .52([*]} e)B +.52(xpands to a single w)-.15 F .52(ord with the v)-.1 F .521 (alue of each array member separated by the \214rst character)-.25 F -1.374(of the)108 679.2 R F2(IFS)3.874 E F0 1.374(special v)3.624 F 1.375 +1.375(of the)108 679.2 R F2(IFS)3.875 E F0 1.375(special v)3.625 F 1.375 (ariable, and ${)-.25 F F3(name)A F0 1.375([@]} e)B 1.375 -(xpands each element of)-.15 F F3(name)3.875 E F0 1.375(to a separate w) -3.875 F 3.875(ord. When)-.1 F 2.028(there are no array members, ${)108 +(xpands each element of)-.15 F F3(name)3.875 E F0 1.374(to a separate w) +3.875 F 3.874(ord. When)-.1 F 2.027(there are no array members, ${)108 691.2 R F3(name)A F0 2.028([@]} e)B 2.028(xpands to nothing.)-.15 F -2.027(If the double-quoted e)7.028 F 2.027(xpansion occurs)-.15 F .758 +2.028(If the double-quoted e)7.028 F 2.028(xpansion occurs)-.15 F .759 (within a w)108 703.2 R .759(ord, the e)-.1 F .759 (xpansion of the \214rst parameter is joined with the be)-.15 F .759 -(ginning part of the original w)-.15 F(ord,)-.1 E .516(and the e)108 +(ginning part of the original w)-.15 F(ord,)-.1 E .515(and the e)108 715.2 R .516(xpansion of the last parameter is joined with the last par\ -t of the original w)-.15 F 3.015(ord. This)-.1 F .515(is analogous)3.015 -F .227(to the e)108 727.2 R .228(xpansion of the special parameters)-.15 +t of the original w)-.15 F 3.016(ord. This)-.1 F .516(is analogous)3.016 +F .228(to the e)108 727.2 R .228(xpansion of the special parameters)-.15 F F1(*)2.728 E F0(and)2.728 E F1(@)2.728 E F0(\(see)2.728 E F1 .228 -(Special P)2.728 F(arameters)-.1 E F0(abo)2.728 E -.15(ve)-.15 G 2.728 +(Special P)2.728 F(arameters)-.1 E F0(abo)2.727 E -.15(ve)-.15 G 2.727 (\). ${#).15 F F3(name)A F0([)A F3(subscript)A F0(]})A(GNU Bash 5.2)72 -768 Q(2022 March 11)144.29 E(20)193.45 E 0 Cg EP +768 Q(2022 June 3)150.675 E(20)199.835 E 0 Cg EP %%Page: 21 21 %%BeginPageSetup BP @@ -2709,15 +2711,15 @@ BP .886(pands to the length of ${).15 F/F1 10/Times-Italic@0 SF(name)A F0 ([)A F1(subscript)A F0 3.386(]}. If)B F1(subscript)3.386 E F0(is)3.386 E /F2 10/Times-Bold@0 SF(*)3.386 E F0(or)3.386 E F2(@)3.386 E F0 3.386(,t) -C .886(he e)-3.386 F .886(xpansion is the number of ele-)-.15 F .294 -(ments in the array)108 96 R 5.294(.I)-.65 G 2.794(ft)-5.294 G(he)-2.794 +C .886(he e)-3.386 F .886(xpansion is the number of ele-)-.15 F .295 +(ments in the array)108 96 R 5.295(.I)-.65 G 2.795(ft)-5.295 G(he)-2.795 E F1(subscript)3.135 E F0 .295(used to reference an element of an inde) -3.475 F -.15(xe)-.15 G 2.795(da).15 G .295(rray e)-2.795 F -.25(va)-.25 -G .295(luates to a number).25 F .629 -(less than zero, it is interpreted as relati)108 108 R .929 -.15(ve t) --.25 H 3.128(oo).15 G .628(ne greater than the maximum inde)-3.128 F -3.128(xo)-.15 G 3.128(ft)-3.128 G .628(he array)-3.128 F 3.128(,s)-.65 G -3.128(on)-3.128 G -2.25 -.15(eg a)-3.128 H(ti).15 E -.15(ve)-.25 G +3.475 F -.15(xe)-.15 G 2.794(da).15 G .294(rray e)-2.794 F -.25(va)-.25 +G .294(luates to a number).25 F .628 +(less than zero, it is interpreted as relati)108 108 R .928 -.15(ve t) +-.25 H 3.128(oo).15 G .629(ne greater than the maximum inde)-3.128 F +3.129(xo)-.15 G 3.129(ft)-3.129 G .629(he array)-3.129 F 3.129(,s)-.65 G +3.129(on)-3.129 G -2.25 -.15(eg a)-3.129 H(ti).15 E -.15(ve)-.25 G (indices count back from the end of the array)108 120 Q 2.5(,a)-.65 G (nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 G 2.5(1r)-2.5 G (eferences the last element.)-2.5 E .595(Referencing an array v)108 @@ -2728,102 +2730,102 @@ E(alid subscript is le)-.25 E -.05(ga)-.15 G(l, and).05 E F2(bash)2.5 E F0(will create an array if necessary)2.5 E(.)-.65 E(An array v)108 165.6 Q(ariable is considered set if a subscript has been assigned a v)-.25 E 2.5(alue. The)-.25 F(null string is a v)2.5 E(alid v)-.25 E(alue.)-.25 E -.418(It is possible to obtain the k)108 182.4 R -.15(ey)-.1 G 2.918(s\() -.15 G .418(indices\) of an array as well as the v)-2.918 F 2.917 -(alues. ${)-.25 F F2(!)A F1(name)A F0([)A F1(@)A F0 .417(]} and ${)B F2 -(!)A F1(name)A F0([)A F1(*)A F0(]})A -.15(ex)108 194.4 S .749 +.417(It is possible to obtain the k)108 182.4 R -.15(ey)-.1 G 2.918(s\() +.15 G .418(indices\) of an array as well as the v)-2.918 F 2.918 +(alues. ${)-.25 F F2(!)A F1(name)A F0([)A F1(@)A F0 .418(]} and ${)B F2 +(!)A F1(name)A F0([)A F1(*)A F0(]})A -.15(ex)108 194.4 S .75 (pand to the indices assigned in array v).15 F(ariable)-.25 E F1(name) -3.249 E F0 5.749(.T)C .75 +3.249 E F0 5.749(.T)C .749 (he treatment when in double quotes is similar to)-5.749 F(the e)108 206.4 Q(xpansion of the special parameters)-.15 E F1(@)2.5 E F0(and)2.5 E F1(*)2.5 E F0(within double quotes.)2.5 E(The)108 223.2 Q F2(unset) -2.767 E F0 -.2(bu)2.767 G .267(iltin is used to destro).2 F 2.767(ya)-.1 +2.766 E F0 -.2(bu)2.766 G .267(iltin is used to destro).2 F 2.767(ya)-.1 G(rrays.)-2.767 E F2(unset)5.267 E F1(name)2.767 E F0([)A F1(subscript)A F0 2.767(]d)C(estro)-2.767 E .267(ys the array element at inde)-.1 F(x) --.15 E F1(sub-)2.766 E(script)108 235.2 Q F0 2.858(,f)C .358 +-.15 E F1(sub-)2.767 E(script)108 235.2 Q F0 2.858(,f)C .358 (or both inde)-2.858 F -.15(xe)-.15 G 2.858(da).15 G .358(nd associati) -2.858 F .658 -.15(ve a)-.25 H 2.858(rrays. Ne).15 F -.05(ga)-.15 G(ti) .05 E .658 -.15(ve s)-.25 H .358(ubscripts to inde).15 F -.15(xe)-.15 G -2.858(da).15 G .358(rrays are interpreted as de-)-2.858 F 1.205 -(scribed abo)108 247.2 R -.15(ve)-.15 G 6.205(.U).15 G 1.205 -(nsetting the last element of an array v)-6.205 F 1.204 -(ariable does not unset the v)-.25 F(ariable.)-.25 E F2(unset)6.204 E F1 -(name)3.704 E F0(,)A(where)108 259.2 Q F1(name)3.412 E F0 .912 -(is an array)3.412 F 3.412(,r)-.65 G(emo)-3.412 E -.15(ve)-.15 G 3.412 -(st).15 G .912(he entire array)-3.412 F(.)-.65 E F2(unset)5.912 E F1 +2.858(da).15 G .358(rrays are interpreted as de-)-2.858 F 1.204 +(scribed abo)108 247.2 R -.15(ve)-.15 G 6.204(.U).15 G 1.204 +(nsetting the last element of an array v)-6.204 F 1.205 +(ariable does not unset the v)-.25 F(ariable.)-.25 E F2(unset)6.205 E F1 +(name)3.705 E F0(,)A(where)108 259.2 Q F1(name)3.413 E F0 .913 +(is an array)3.413 F 3.413(,r)-.65 G(emo)-3.413 E -.15(ve)-.15 G 3.413 +(st).15 G .912(he entire array)-3.413 F(.)-.65 E F2(unset)5.912 E F1 (name)3.412 E F0([)A F1(subscript)A F0 .912(], where)B F1(subscript) -3.413 E F0(is)3.413 E F2(*)3.413 E F0(or)3.413 E F2(@)3.413 E F0 3.413 -(,b)C(e-)-3.413 E(ha)108 271.2 Q -.15(ve)-.2 G 3.126(sd).15 G(if)-3.126 -E .626(ferently depending on whether)-.25 F F1(name)3.126 E F0 .626 -(is an inde)3.126 F -.15(xe)-.15 G 3.126(do).15 G 3.126(ra)-3.126 G -(ssociati)-3.126 E .925 -.15(ve a)-.25 H(rray).15 E 5.625(.I)-.65 G(f) --5.625 E F1(name)3.125 E F0 .625(is an associati)3.125 F -.15(ve)-.25 G +3.412 E F0(is)3.412 E F2(*)3.412 E F0(or)3.412 E F2(@)3.412 E F0 3.412 +(,b)C(e-)-3.412 E(ha)108 271.2 Q -.15(ve)-.2 G 3.125(sd).15 G(if)-3.125 +E .625(ferently depending on whether)-.25 F F1(name)3.125 E F0 .626 +(is an inde)3.125 F -.15(xe)-.15 G 3.126(do).15 G 3.126(ra)-3.126 G +(ssociati)-3.126 E .926 -.15(ve a)-.25 H(rray).15 E 5.626(.I)-.65 G(f) +-5.626 E F1(name)3.126 E F0 .626(is an associati)3.126 F -.15(ve)-.25 G (array)108 283.2 Q 3.067(,t)-.65 G .567 (his unsets the element with subscript)-3.067 F F2(*)3.067 E F0(or)3.067 E F2(@)3.067 E F0 5.567(.I)C(f)-5.567 E F1(name)3.067 E F0 .567 (is an inde)3.067 F -.15(xe)-.15 G 3.067(da).15 G(rray)-3.067 E 3.067 (,u)-.65 G .567(nset remo)-3.067 F -.15(ve)-.15 G 3.067(sa).15 G .567 (ll of the)-3.067 F(elements b)108 295.2 Q(ut does not remo)-.2 E .3 --.15(ve t)-.15 H(he array itself.).15 E .029(When using a v)108 312 R -.029(ariable name with a subscript as an ar)-.25 F .028 -(gument to a command, such as with)-.18 F F2(unset)2.528 E F0 2.528(,w)C -.028(ithout us-)-2.528 F .937(ing the w)108 324 R .937(ord e)-.1 F .937 +-.15(ve t)-.15 H(he array itself.).15 E .028(When using a v)108 312 R +.028(ariable name with a subscript as an ar)-.25 F .029 +(gument to a command, such as with)-.18 F F2(unset)2.529 E F0 2.529(,w)C +.029(ithout us-)-2.529 F .938(ing the w)108 324 R .938(ord e)-.1 F .938 (xpansion syntax described abo)-.15 F -.15(ve)-.15 G 3.437(,t).15 G .937 -(he ar)-3.437 F .938(gument is subject to pathname e)-.18 F 3.438 -(xpansion. If)-.15 F(path-)3.438 E(name e)108 336 Q +(he ar)-3.437 F .937(gument is subject to pathname e)-.18 F 3.437 +(xpansion. If)-.15 F(path-)3.437 E(name e)108 336 Q (xpansion is not desired, the ar)-.15 E(gument should be quoted.)-.18 E -(The)108 352.8 Q F2(declar)2.684 E(e)-.18 E F0(,)A F2(local)2.684 E F0 -2.684(,a)C(nd)-2.684 E F2 -.18(re)2.684 G(adonly).18 E F0 -.2(bu)2.684 G +(The)108 352.8 Q F2(declar)2.683 E(e)-.18 E F0(,)A F2(local)2.683 E F0 +2.683(,a)C(nd)-2.683 E F2 -.18(re)2.683 G(adonly).18 E F0 -.2(bu)2.683 G .184(iltins each accept a).2 F F22.684 E F0 .184 -(option to specify an inde)2.684 F -.15(xe)-.15 G 2.683(da).15 G .183 -(rray and a)-2.683 F F22.683 E F0(op-)2.683 E .041 +(option to specify an inde)2.684 F -.15(xe)-.15 G 2.684(da).15 G .184 +(rray and a)-2.684 F F22.684 E F0(op-)2.684 E .042 (tion to specify an associati)108 364.8 R .341 -.15(ve a)-.25 H(rray).15 E 5.041(.I)-.65 G 2.541(fb)-5.041 G .041(oth options are supplied,) -2.541 F F22.541 E F0(tak)2.541 E .041(es precedence.)-.1 F(The) -5.041 E F2 -.18(re)2.542 G(ad).18 E F0 -.2(bu)2.542 G .042(iltin ac-).2 -F .864(cepts a)108 376.8 R F23.364 E F0 .864 -(option to assign a list of w)3.364 F .864 -(ords read from the standard input to an array)-.1 F 5.863(.T)-.65 G(he) --5.863 E F2(set)3.363 E F0(and)3.363 E F2(declar)3.363 E(e)-.18 E F0 -.2 +5.041 E F2 -.18(re)2.541 G(ad).18 E F0 -.2(bu)2.541 G .041(iltin ac-).2 +F .863(cepts a)108 376.8 R F23.363 E F0 .864 +(option to assign a list of w)3.363 F .864 +(ords read from the standard input to an array)-.1 F 5.864(.T)-.65 G(he) +-5.864 E F2(set)3.364 E F0(and)3.364 E F2(declar)3.364 E(e)-.18 E F0 -.2 (bu)108 388.8 S(iltins display array v).2 E(alues in a w)-.25 E (ay that allo)-.1 E(ws them to be reused as assignments.)-.25 E/F3 10.95 /Times-Bold@0 SF(EXP)72 405.6 Q(ANSION)-.81 E F0 .76(Expansion is perfo\ rmed on the command line after it has been split into w)108 417.6 R 3.26 (ords. There)-.1 F .76(are se)3.26 F -.15(ve)-.25 G 3.26(nk).15 G .76 -(inds of)-3.26 F -.15(ex)108 429.6 S .201(pansion performed:).15 F F1 -(br)2.971 E .201(ace e)-.15 F(xpansion)-.2 E F0(,).24 E F1 .201(tilde e) +(inds of)-3.26 F -.15(ex)108 429.6 S .2(pansion performed:).15 F F1(br) +2.971 E .201(ace e)-.15 F(xpansion)-.2 E F0(,).24 E F1 .201(tilde e) 2.831 F(xpansion)-.2 E F0(,).24 E F1(par)3.951 E .201 -(ameter and variable e)-.15 F(xpansion)-.2 E F0(,).24 E F1 .2 +(ameter and variable e)-.15 F(xpansion)-.2 E F0(,).24 E F1 .201 (command sub-)2.901 F(stitution)108 441.6 Q F0(,).24 E F1(arithmetic e) 2.83 E(xpansion)-.2 E F0(,).24 E F1(wor)2.84 E 2.5(ds)-.37 G(plitting) -2.5 E F0 2.5(,a).22 G(nd)-2.5 E F1(pathname e)3.75 E(xpansion)-.2 E F0 -(.).24 E .418(The order of e)108 458.4 R .418(xpansions is: brace e)-.15 -F .418(xpansion; tilde e)-.15 F .419(xpansion, parameter and v)-.15 F -.419(ariable e)-.25 F .419(xpansion, arithmetic)-.15 F -.15(ex)108 470.4 -S .196(pansion, and command substitution \(done in a left-to-right f).15 -F .195(ashion\); w)-.1 F .195(ord splitting; and pathname e)-.1 F(xpan-) +(.).24 E .419(The order of e)108 458.4 R .419(xpansions is: brace e)-.15 +F .418(xpansion; tilde e)-.15 F .418(xpansion, parameter and v)-.15 F +.418(ariable e)-.25 F .418(xpansion, arithmetic)-.15 F -.15(ex)108 470.4 +S .195(pansion, and command substitution \(done in a left-to-right f).15 +F .196(ashion\); w)-.1 F .196(ord splitting; and pathname e)-.1 F(xpan-) -.15 E(sion.)108 482.4 Q .257 (On systems that can support it, there is an additional e)108 499.2 R .257(xpansion a)-.15 F -.25(va)-.2 G(ilable:).25 E F1(pr)2.757 E .257 -(ocess substitution)-.45 F F0 5.257(.T)C .257(his is per)-5.257 F(-)-.2 +(ocess substitution)-.45 F F0 5.257(.T)C .256(his is per)-5.257 F(-)-.2 E(formed at the same time as tilde, parameter)108 511.2 Q 2.5(,v)-.4 G (ariable, and arithmetic e)-2.75 E(xpansion and command substitution.) --.15 E .003(After these e)108 528 R .003 +-.15 E .002(After these e)108 528 R .003 (xpansions are performed, quote characters present in the original w) --.15 F .002(ord are remo)-.1 F -.15(ve)-.15 G 2.502(du).15 G .002 -(nless the)-2.502 F(y)-.15 E(ha)108 540 Q .3 -.15(ve b)-.2 H +-.15 F .003(ord are remo)-.1 F -.15(ve)-.15 G 2.503(du).15 G .003 +(nless the)-2.503 F(y)-.15 E(ha)108 540 Q .3 -.15(ve b)-.2 H (een quoted themselv).15 E(es \()-.15 E F1(quote r)A(emo)-.37 E(val)-.1 -E F0(\).)A .171(Only brace e)108 556.8 R .171(xpansion, w)-.15 F .171 +E F0(\).)A .172(Only brace e)108 556.8 R .172(xpansion, w)-.15 F .171 (ord splitting, and pathname e)-.1 F .171 -(xpansion can increase the number of w)-.15 F .172(ords of the e)-.1 F -(x-)-.15 E .777(pansion; other e)108 568.8 R .776(xpansions e)-.15 F +(xpansion can increase the number of w)-.15 F .171(ords of the e)-.1 F +(x-)-.15 E .776(pansion; other e)108 568.8 R .776(xpansions e)-.15 F .776(xpand a single w)-.15 F .776(ord to a single w)-.1 F 3.276 (ord. The)-.1 F .776(only e)3.276 F .776(xceptions to this are the e) --.15 F(x-)-.15 E .695(pansions of ")108 580.8 R F2($@)A F0 3.195("a)C -.695(nd ")-3.195 F F2(${)A F1(name)A F2([@]})A F0 .696 +-.15 F(x-)-.15 E .696(pansions of ")108 580.8 R F2($@)A F0 3.196("a)C +.696(nd ")-3.196 F F2(${)A F1(name)A F2([@]})A F0 .696 (", and, in most cases,)B F2($*)3.196 E F0(and)3.196 E F2(${)3.196 E F1 -(name)A F2([*]})A F0 .696(as e)3.196 F .696(xplained abo)-.15 F .996 --.15(ve \()-.15 H(see).15 E/F4 9/Times-Bold@0 SF -.666(PA)3.196 G(-).666 +(name)A F2([*]})A F0 .695(as e)3.196 F .695(xplained abo)-.15 F .995 +-.15(ve \()-.15 H(see).15 E/F4 9/Times-Bold@0 SF -.666(PA)3.195 G(-).666 E(RAMETERS)108 592.8 Q/F5 9/Times-Roman@0 SF(\).)A F2(Brace Expansion)87 609.6 Q F1(Br)108.58 621.6 Q .606(ace e)-.15 F(xpansion)-.2 E F0 .606 (is a mechanism by which arbitrary strings may be generated.)3.346 F @@ -2831,25 +2833,25 @@ E(RAMETERS)108 592.8 Q/F5 9/Times-Roman@0 SF(\).)A F2(Brace Expansion)87 (pathname e)2.915 F(xpansion)-.2 E F0 2.915(,b)C .415 (ut the \214lenames generated need not e)-3.115 F 2.915(xist. P)-.15 F .415(atterns to be brace e)-.15 F .415(xpanded tak)-.15 F 2.915(et)-.1 G -(he)-2.915 E .074(form of an optional)108 645.6 R F1(pr)3.823 E(eamble) +(he)-2.915 E .073(form of an optional)108 645.6 R F1(pr)3.823 E(eamble) -.37 E F0 2.573(,f).18 G(ollo)-2.573 E .073 (wed by either a series of comma-separated strings or a sequence e)-.25 -F(xpres-)-.15 E .489(sion between a pair of braces, follo)108 657.6 R -.489(wed by an optional)-.25 F F1(postscript)4.239 E F0 5.49(.T).68 G -.49(he preamble is pre\214x)-5.49 F .49(ed to each string)-.15 F .659(c\ -ontained within the braces, and the postscript is then appended to each\ - resulting string, e)108 669.6 R .658(xpanding left to)-.15 F(right.)108 -681.6 Q .718(Brace e)108 698.4 R .719(xpansions may be nested.)-.15 F -.719(The results of each e)5.719 F .719 +F(xpres-)-.15 E .49(sion between a pair of braces, follo)108 657.6 R +.489(wed by an optional)-.25 F F1(postscript)4.239 E F0 5.489(.T).68 G +.489(he preamble is pre\214x)-5.489 F .489(ed to each string)-.15 F .659 +(contained within the braces, and the postscript is then appended to ea\ +ch resulting string, e)108 669.6 R .659(xpanding left to)-.15 F(right.) +108 681.6 Q .719(Brace e)108 698.4 R .719(xpansions may be nested.)-.15 +F .719(The results of each e)5.719 F .719 (xpanded string are not sorted; left to right order is)-.15 F(preserv) 108 710.4 Q 2.5(ed. F)-.15 F(or e)-.15 E(xample, a)-.15 E F2({)A F0 -(d,c,b)A F2(})A F0 2.5(ee)C(xpands into `ade ace abe'.)-2.65 E 3.149(As) -108 727.2 S .649(equence e)-3.149 F .649(xpression tak)-.15 F .649 +(d,c,b)A F2(})A F0 2.5(ee)C(xpands into `ade ace abe'.)-2.65 E 3.148(As) +108 727.2 S .648(equence e)-3.148 F .648(xpression tak)-.15 F .649 (es the form)-.1 F F2({)3.149 E F1(x)A F2(..)A F1(y)A F2([..)A F1(incr)A F2(]})A F0 3.149(,w)C(here)-3.149 E F1(x)3.149 E F0(and)3.149 E F1(y) -3.149 E F0 .649(are either inte)3.149 F .648 -(gers or single letters, and)-.15 F(GNU Bash 5.2)72 768 Q(2022 March 11) -144.29 E(21)193.45 E 0 Cg EP +3.149 E F0 .649(are either inte)3.149 F .649 +(gers or single letters, and)-.15 F(GNU Bash 5.2)72 768 Q(2022 June 3) +150.675 E(21)199.835 E 0 Cg EP %%Page: 22 22 %%BeginPageSetup BP @@ -2859,42 +2861,42 @@ BP /Times-Italic@0 SF(incr)108 84 Q F0 2.615(,a)C 2.615(no)-2.615 G .115 (ptional increment, is an inte)-2.615 F(ger)-.15 E 5.115(.W)-.55 G .115 (hen inte)-5.115 F .115(gers are supplied, the e)-.15 F .115 -(xpression e)-.15 F .115(xpands to each num-)-.15 F 1.014(ber between) -108 96 R F1(x)3.514 E F0(and)3.514 E F1(y)3.513 E F0 3.513(,i)C(nclusi) +(xpression e)-.15 F .115(xpands to each num-)-.15 F 1.013(ber between) +108 96 R F1(x)3.513 E F0(and)3.513 E F1(y)3.513 E F0 3.513(,i)C(nclusi) -3.513 E -.15(ve)-.25 G 6.013(.S).15 G 1.013(upplied inte)-6.013 F 1.013 (gers may be pre\214x)-.15 F 1.013(ed with)-.15 F F1(0)3.513 E F0 1.013 -(to force each term to ha)3.513 F 1.313 -.15(ve t)-.2 H(he).15 E .014 -(same width.)108 108 R .014(When either)5.014 F F1(x)2.514 E F0(or)2.514 -E F1(y)2.514 E F0(be)2.514 E .015(gins with a zero, the shell attempts \ -to force all generated terms to contain)-.15 F 1.131 +(to force each term to ha)3.513 F 1.314 -.15(ve t)-.2 H(he).15 E .015 +(same width.)108 108 R .015(When either)5.015 F F1(x)2.515 E F0(or)2.515 +E F1(y)2.515 E F0(be)2.515 E .014(gins with a zero, the shell attempts \ +to force all generated terms to contain)-.15 F 1.13 (the same number of digits, zero-padding where necessary)108 120 R 6.131 -(.W)-.65 G 1.13(hen letters are supplied, the e)-6.131 F 1.13 -(xpression e)-.15 F(x-)-.15 E .484(pands to each character le)108 132 R -.484(xicographically between)-.15 F F1(x)2.984 E F0(and)2.984 E F1(y) -2.984 E F0 2.984(,i)C(nclusi)-2.984 E -.15(ve)-.25 G 2.984(,u).15 G .485 -(sing the def)-2.984 F .485(ault C locale.)-.1 F .485(Note that)5.485 F -(both)108 144 Q F1(x)2.967 E F0(and)2.967 E F1(y)2.967 E F0 .467 -(must be of the same type \(inte)2.967 F .467(ger or letter\).)-.15 F +(.W)-.65 G 1.131(hen letters are supplied, the e)-6.131 F 1.131 +(xpression e)-.15 F(x-)-.15 E .485(pands to each character le)108 132 R +.485(xicographically between)-.15 F F1(x)2.985 E F0(and)2.984 E F1(y) +2.984 E F0 2.984(,i)C(nclusi)-2.984 E -.15(ve)-.25 G 2.984(,u).15 G .484 +(sing the def)-2.984 F .484(ault C locale.)-.1 F .484(Note that)5.484 F +(both)108 144 Q F1(x)2.966 E F0(and)2.966 E F1(y)2.966 E F0 .467 +(must be of the same type \(inte)2.966 F .467(ger or letter\).)-.15 F .467(When the increment is supplied, it is used as the)5.467 F(dif)108 156 Q(ference between each term.)-.25 E(The def)5 E -(ault increment is 1 or \2551 as appropriate.)-.1 E .581(Brace e)108 -172.8 R .581(xpansion is performed before an)-.15 F 3.081(yo)-.15 G .581 -(ther e)-3.081 F .581(xpansions, and an)-.15 F 3.082(yc)-.15 G .582 -(haracters special to other e)-3.082 F(xpansions)-.15 E .016 -(are preserv)108 184.8 R .016(ed in the result.)-.15 F .016 -(It is strictly te)5.016 F(xtual.)-.15 E/F2 10/Times-Bold@0 SF(Bash) -5.016 E F0 .015(does not apply an)2.516 F 2.515(ys)-.15 G .015 -(yntactic interpretation to the con-)-2.515 F(te)108 196.8 Q +(ault increment is 1 or \2551 as appropriate.)-.1 E .582(Brace e)108 +172.8 R .582(xpansion is performed before an)-.15 F 3.082(yo)-.15 G .581 +(ther e)-3.082 F .581(xpansions, and an)-.15 F 3.081(yc)-.15 G .581 +(haracters special to other e)-3.081 F(xpansions)-.15 E .015 +(are preserv)108 184.8 R .015(ed in the result.)-.15 F .015 +(It is strictly te)5.015 F(xtual.)-.15 E/F2 10/Times-Bold@0 SF(Bash) +5.016 E F0 .016(does not apply an)2.516 F 2.516(ys)-.15 G .016 +(yntactic interpretation to the con-)-2.516 F(te)108 196.8 Q (xt of the e)-.15 E(xpansion or the te)-.15 E(xt between the braces.) --.15 E 2.501(Ac)108 213.6 S .001(orrectly-formed brace e)-2.501 F .001(\ +-.15 E 2.502(Ac)108 213.6 S .002(orrectly-formed brace e)-2.502 F .001(\ xpansion must contain unquoted opening and closing braces, and at least\ - one un-)-.15 F .458(quoted comma or a v)108 225.6 R .458 + one un-)-.15 F .457(quoted comma or a v)108 225.6 R .458 (alid sequence e)-.25 F 2.958(xpression. An)-.15 F 2.958(yi)-.15 G .458 -(ncorrectly formed brace e)-2.958 F .457(xpansion is left unchanged.) --.15 F(A)108 237.6 Q F2({)2.521 E F0(or)2.521 E F2(,)2.521 E F0 .021 -(may be quoted with a backslash to pre)2.521 F -.15(ve)-.25 G .022 -(nt its being considered part of a brace e).15 F 2.522(xpression. T)-.15 -F 2.522(oa)-.8 G -.2(vo)-2.722 G(id).2 E .172 +(ncorrectly formed brace e)-2.958 F .458(xpansion is left unchanged.) +-.15 F(A)108 237.6 Q F2({)2.522 E F0(or)2.522 E F2(,)2.522 E F0 .022 +(may be quoted with a backslash to pre)2.522 F -.15(ve)-.25 G .021 +(nt its being considered part of a brace e).15 F 2.521(xpression. T)-.15 +F 2.521(oa)-.8 G -.2(vo)-2.721 G(id).2 E .172 (con\215icts with parameter e)108 249.6 R .172(xpansion, the string)-.15 F F2(${)2.672 E F0 .172(is not considered eligible for brace e)2.672 F .172(xpansion, and inhibits)-.15 F(brace e)108 261.6 Q @@ -2907,167 +2909,168 @@ gs to be generated is)108 278.4 R(longer than in the abo)108 290.4 Q .3 E(w_e)-.25 E(x}})-.15 E .618(Brace e)108 348 R .618 (xpansion introduces a slight incompatibility with historical v)-.15 F .618(ersions of)-.15 F F2(sh)3.118 E F0(.)A F2(sh)5.618 E F0 .618 -(does not treat open-)3.118 F .247 -(ing or closing braces specially when the)108 360 R 2.747(ya)-.15 G .247 -(ppear as part of a w)-2.747 F .248(ord, and preserv)-.1 F .248 -(es them in the output.)-.15 F F2(Bash)5.248 E F0(remo)108 372 Q -.15 +(does not treat open-)3.118 F .248 +(ing or closing braces specially when the)108 360 R 2.748(ya)-.15 G .247 +(ppear as part of a w)-2.748 F .247(ord, and preserv)-.1 F .247 +(es them in the output.)-.15 F F2(Bash)5.247 E F0(remo)108 372 Q -.15 (ve)-.15 G 3.53(sb).15 G 1.03(races from w)-3.53 F 1.03 (ords as a consequence of brace e)-.1 F 3.53(xpansion. F)-.15 F 1.03 (or e)-.15 F 1.03(xample, a w)-.15 F 1.03(ord entered to)-.1 F F2(sh) -3.53 E F0(as)3.53 E F1(\214le{1,2})108 384 Q F0 .514 -(appears identically in the output.)3.014 F .515(The same w)5.515 F .515 -(ord is output as)-.1 F F1 .515(\214le1 \214le2)4.925 F F0 .515(after e) -3.035 F .515(xpansion by)-.15 F F2(bash)3.015 E F0(.)A .437 +3.53 E F0(as)3.53 E F1(\214le{1,2})108 384 Q F0 .515 +(appears identically in the output.)3.015 F .515(The same w)5.515 F .515 +(ord is output as)-.1 F F1 .514(\214le1 \214le2)4.925 F F0 .514(after e) +3.034 F .514(xpansion by)-.15 F F2(bash)3.014 E F0(.)A .436 (If strict compatibility with)108 396 R F2(sh)2.936 E F0 .436 (is desired, start)2.936 F F2(bash)2.936 E F0 .436(with the)2.936 F F2 -(+B)2.936 E F0 .436(option or disable brace e)2.936 F .436 +(+B)2.936 E F0 .436(option or disable brace e)2.936 F .437 (xpansion with the)-.15 F F2(+B)108 408 Q F0(option to the)2.5 E F2(set) 2.5 E F0(command \(see)2.5 E/F3 9/Times-Bold@0 SF(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F2 -.18(Ti)87 424.8 S -(lde Expansion).18 E F0 1.086(If a w)108 436.8 R 1.086(ord be)-.1 F -1.086(gins with an unquoted tilde character \(`)-.15 F F2(~)A F0 1.087 +(lde Expansion).18 E F0 1.087(If a w)108 436.8 R 1.087(ord be)-.1 F +1.087(gins with an unquoted tilde character \(`)-.15 F F2(~)A F0 1.086 ('\), all of the characters preceding the \214rst unquoted)B .185(slash\ \(or all characters, if there is no unquoted slash\) are considered a) 108 448.8 R F1(tilde-pr)2.685 E(e\214x)-.37 E F0 5.185(.I)C 2.685(fn) --5.185 G .185(one of the characters)-2.685 F .725(in the tilde-pre\214x\ - are quoted, the characters in the tilde-pre\214x follo)108 460.8 R .726 -(wing the tilde are treated as a possible)-.25 F F1(lo)108 472.8 Q .523 -(gin name)-.1 F F0 5.523(.I)C 3.023(ft)-5.523 G .523 +-5.185 G .185(one of the characters)-2.685 F .726(in the tilde-pre\214x\ + are quoted, the characters in the tilde-pre\214x follo)108 460.8 R .725 +(wing the tilde are treated as a possible)-.25 F F1(lo)108 472.8 Q .522 +(gin name)-.1 F F0 5.522(.I)C 3.022(ft)-5.522 G .522 (his login name is the null string, the tilde is replaced with the v) --3.023 F .522(alue of the shell parameter)-.25 F F3(HOME)108 484.8 Q/F4 -9/Times-Roman@0 SF(.)A F0(If)4.786 E F3(HOME)2.786 E F0 .287 -(is unset, the home directory of the user e)2.536 F -.15(xe)-.15 G .287 -(cuting the shell is substituted instead.).15 F(Other)5.287 E(-)-.2 E(w\ +-3.022 F .523(alue of the shell parameter)-.25 F F3(HOME)108 484.8 Q/F4 +9/Times-Roman@0 SF(.)A F0(If)4.787 E F3(HOME)2.787 E F0 .287 +(is unset, the home directory of the user e)2.537 F -.15(xe)-.15 G .286 +(cuting the shell is substituted instead.).15 F(Other)5.286 E(-)-.2 E(w\ ise, the tilde-pre\214x is replaced with the home directory associated \ -with the speci\214ed login name.)108 496.8 Q .093 +with the speci\214ed login name.)108 496.8 Q .092 (If the tilde-pre\214x is a `~+', the v)108 513.6 R .092 (alue of the shell v)-.25 F(ariable)-.25 E F3(PWD)2.592 E F0 .092 -(replaces the tilde-pre\214x.)2.342 F .092(If the tilde-pre\214x is) -5.092 F 3.403(a`)108 525.6 S .903(~\255', the v)-3.403 F .903 +(replaces the tilde-pre\214x.)2.342 F .093(If the tilde-pre\214x is) +5.093 F 3.404(a`)108 525.6 S .904(~\255', the v)-3.404 F .904 (alue of the shell v)-.25 F(ariable)-.25 E F3(OLDPWD)3.404 E F4(,)A F0 -.904(if it is set, is substituted.)3.154 F .904(If the characters follo) -5.904 F .904(wing the)-.25 F .88 -(tilde in the tilde-pre\214x consist of a number)108 537.6 R F1(N)3.38 E -F0 3.38(,o)C .88(ptionally pre\214x)-3.38 F .879 +.904(if it is set, is substituted.)3.154 F .903(If the characters follo) +5.903 F .903(wing the)-.25 F .879 +(tilde in the tilde-pre\214x consist of a number)108 537.6 R F1(N)3.379 +E F0 3.379(,o)C .879(ptionally pre\214x)-3.379 F .88 (ed by a `+' or a `\255', the tilde-pre\214x is re-)-.15 F .138(placed \ with the corresponding element from the directory stack, as it w)108 -549.6 R .138(ould be displayed by the)-.1 F F2(dirs)2.639 E F0 -.2(bu) -2.639 G(iltin).2 E(in)108 561.6 Q -.2(vo)-.4 G -.1(ke).2 G 2.839(dw).1 G -.338(ith the tilde-pre\214x as an ar)-2.839 F 2.838(gument. If)-.18 F +549.6 R .138(ould be displayed by the)-.1 F F2(dirs)2.638 E F0 -.2(bu) +2.638 G(iltin).2 E(in)108 561.6 Q -.2(vo)-.4 G -.1(ke).2 G 2.838(dw).1 G +.338(ith the tilde-pre\214x as an ar)-2.838 F 2.838(gument. If)-.18 F .338(the characters follo)2.838 F .338 (wing the tilde in the tilde-pre\214x consist)-.25 F (of a number without a leading `+' or `\255', `+' is assumed.)108 573.6 Q(If the login name is in)108 590.4 Q -.25(va)-.4 G(lid, or the tilde e) -.25 E(xpansion f)-.15 E(ails, the w)-.1 E(ord is unchanged.)-.1 E .166 +.25 E(xpansion f)-.15 E(ails, the w)-.1 E(ord is unchanged.)-.1 E .167 (Each v)108 607.2 R .167(ariable assignment is check)-.25 F .167 (ed for unquoted tilde-pre\214x)-.1 F .167(es immediately follo)-.15 F .167(wing a)-.25 F F2(:)2.667 E F0 .167(or the \214rst)2.667 F F2(=) -2.667 E F0 5.167(.I)C(n)-5.167 E .468(these cases, tilde e)108 619.2 R -.468(xpansion is also performed.)-.15 F(Consequently)5.467 E 2.967(,o) --.65 G .467(ne may use \214lenames with tildes in assign-)-2.967 F +2.666 E F0 5.166(.I)C(n)-5.166 E .467(these cases, tilde e)108 619.2 R +.467(xpansion is also performed.)-.15 F(Consequently)5.467 E 2.967(,o) +-.65 G .468(ne may use \214lenames with tildes in assign-)-2.967 F (ments to)108 631.2 Q F3 -.666(PA)2.5 G(TH)-.189 E F4(,)A F3(MAILP)2.25 E -.855(AT)-.666 G(H).855 E F4(,)A F0(and)2.25 E F3(CDP)2.5 E -.855(AT) -.666 G(H).855 E F4(,)A F0(and the shell assigns the e)2.25 E(xpanded v) --.15 E(alue.)-.25 E .023(Bash also performs tilde e)108 648 R .023 -(xpansion on w)-.15 F .024(ords satisfying the conditions of v)-.1 F -.024(ariable assignments \(as described)-.25 F(abo)108 660 Q .77 -.15 -(ve u)-.15 H(nder).15 E F3 -.666(PA)2.97 G(RAMETERS).666 E F4(\))A F0 -.47(when the)2.72 F 2.969(ya)-.15 G .469(ppear as ar)-2.969 F .469 -(guments to simple commands.)-.18 F .469(Bash does not do this,)5.469 F +-.15 E(alue.)-.25 E .024(Bash also performs tilde e)108 648 R .024 +(xpansion on w)-.15 F .023(ords satisfying the conditions of v)-.1 F +.023(ariable assignments \(as described)-.25 F(abo)108 660 Q .769 -.15 +(ve u)-.15 H(nder).15 E F3 -.666(PA)2.969 G(RAMETERS).666 E F4(\))A F0 +.469(when the)2.719 F 2.969(ya)-.15 G .469(ppear as ar)-2.969 F .469 +(guments to simple commands.)-.18 F .47(Bash does not do this,)5.469 F -.15(ex)108 672 S(cept for the).15 E F1(declar)2.5 E(ation)-.15 E F0 (commands listed abo)2.5 E -.15(ve)-.15 G 2.5(,w).15 G(hen in)-2.5 E F1 (posix mode)2.5 E F0(.)A F2 -.1(Pa)87 688.8 S(rameter Expansion).1 E F0 -.199(The `)108 700.8 R F2($)A F0 2.699('c)C .199 -(haracter introduces parameter e)-2.699 F .199 -(xpansion, command substitution, or arithmetic e)-.15 F 2.7 -(xpansion. The)-.15 F(pa-)2.7 E .314(rameter name or symbol to be e)108 -712.8 R .314(xpanded may be enclosed in braces, which are optional b) --.15 F .314(ut serv)-.2 F 2.813(et)-.15 G 2.813(op)-2.813 G(rotect) --2.813 E .414(the v)108 724.8 R .414(ariable to be e)-.25 F .414 -(xpanded from characters immediately follo)-.15 F .415 +.2(The `)108 700.8 R F2($)A F0 2.7('c)C .199 +(haracter introduces parameter e)-2.7 F .199 +(xpansion, command substitution, or arithmetic e)-.15 F 2.699 +(xpansion. The)-.15 F(pa-)2.699 E .314(rameter name or symbol to be e) +108 712.8 R .314 +(xpanded may be enclosed in braces, which are optional b)-.15 F .314 +(ut serv)-.2 F 2.814(et)-.15 G 2.814(op)-2.814 G(rotect)-2.814 E .415 +(the v)108 724.8 R .415(ariable to be e)-.25 F .415 +(xpanded from characters immediately follo)-.15 F .414 (wing it which could be interpreted as part of)-.25 F(GNU Bash 5.2)72 -768 Q(2022 March 11)144.29 E(22)193.45 E 0 Cg EP +768 Q(2022 June 3)150.675 E(22)199.835 E 0 Cg EP %%Page: 23 23 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(the name.)108 84 Q -1.19(When braces are used, the matching ending brace is the \214rst `) -108 100.8 R/F1 10/Times-Bold@0 SF(})A F0 3.689('n)C 1.189 -(ot escaped by a backslash or within a)-3.689 F .821 -(quoted string, and not within an embedded arithmetic e)108 112.8 R .822 +1.189(When braces are used, the matching ending brace is the \214rst `) +108 100.8 R/F1 10/Times-Bold@0 SF(})A F0 3.69('n)C 1.19 +(ot escaped by a backslash or within a)-3.69 F .822 +(quoted string, and not within an embedded arithmetic e)108 112.8 R .821 (xpansion, command substitution, or parameter e)-.15 F(x-)-.15 E (pansion.)108 124.8 Q(${)108 141.6 Q/F2 10/Times-Italic@0 SF(par)A (ameter)-.15 E F0(})A .106(The v)144 153.6 R .106(alue of)-.25 F F2(par) 2.606 E(ameter)-.15 E F0 .106(is substituted.)2.606 F .106 (The braces are required when)5.106 F F2(par)3.856 E(ameter)-.15 E F0 -.106(is a positional pa-)3.336 F .11 -(rameter with more than one digit, or when)144 165.6 R F2(par)3.86 E -(ameter)-.15 E F0 .111(is follo)3.341 F .111 +.106(is a positional pa-)3.336 F .111 +(rameter with more than one digit, or when)144 165.6 R F2(par)3.861 E +(ameter)-.15 E F0 .111(is follo)3.341 F .11 (wed by a character which is not to be)-.25 F .208 (interpreted as part of its name.)144 177.6 R(The)5.208 E F2(par)2.708 E (ameter)-.15 E F0 .208(is a shell parameter as described abo)2.708 F -.15(ve)-.15 G F1 -.74(PA)2.858 G(RAME-).74 E(TERS)144 189.6 Q F0 2.5 (\)o)C 2.5(ra)-2.5 G 2.5(na)-2.5 G(rray reference \()-2.5 E F1(Arrays)A -F0(\).)A .346(If the \214rst character of)108 206.4 R F2(par)2.846 E +F0(\).)A .347(If the \214rst character of)108 206.4 R F2(par)2.846 E (ameter)-.15 E F0 .346(is an e)2.846 F .346(xclamation point \()-.15 F F1(!)A F0 .346(\), and)B F2(par)2.846 E(ameter)-.15 E F0 .346(is not a) -2.846 F F2(namer)2.846 E(ef)-.37 E F0 2.847(,i)C 2.847(ti)-2.847 G -(ntroduces)-2.847 E 2.907(al)108 218.4 S -2.15 -.25(ev e)-2.907 H 2.907 -(lo).25 G 2.906(fi)-2.907 G(ndirection.)-2.906 E F1(Bash)5.406 E F0 .406 +2.846 F F2(namer)2.846 E(ef)-.37 E F0 2.846(,i)C 2.846(ti)-2.846 G +(ntroduces)-2.846 E 2.906(al)108 218.4 S -2.15 -.25(ev e)-2.906 H 2.906 +(lo).25 G 2.906(fi)-2.906 G(ndirection.)-2.906 E F1(Bash)5.406 E F0 .406 (uses the v)2.906 F .406(alue formed by e)-.25 F .406 (xpanding the rest of)-.15 F F2(par)2.906 E(ameter)-.15 E F0 .406 -(as the ne)2.906 F(w)-.25 E F2(par)2.906 E(ame-)-.15 E(ter)108 230.4 Q -F0 2.578(;t)C .078(his is then e)-2.578 F .078(xpanded and that v)-.15 F -.079(alue is used in the rest of the e)-.25 F .079 -(xpansion, rather than the e)-.15 F .079(xpansion of the)-.15 F -(original)108 242.4 Q F2(par)2.543 E(ameter)-.15 E F0 5.043(.T)C .043 -(his is kno)-5.043 F .043(wn as)-.25 F F2(indir)2.543 E .043(ect e)-.37 -F(xpansion)-.2 E F0 5.043(.T)C .043(he v)-5.043 F .042 -(alue is subject to tilde e)-.25 F .042(xpansion, parameter)-.15 F -.15 -(ex)108 254.4 S .248(pansion, command substitution, and arithmetic e).15 -F 2.748(xpansion. If)-.15 F F2(par)2.749 E(ameter)-.15 E F0 .249 -(is a nameref, this e)2.749 F .249(xpands to the)-.15 F 1.51 +(as the ne)2.906 F(w)-.25 E F2(par)2.907 E(ame-)-.15 E(ter)108 230.4 Q +F0 2.579(;t)C .079(his is then e)-2.579 F .079(xpanded and that v)-.15 F +.079(alue is used in the rest of the e)-.25 F .078 +(xpansion, rather than the e)-.15 F .078(xpansion of the)-.15 F +(original)108 242.4 Q F2(par)2.542 E(ameter)-.15 E F0 5.042(.T)C .042 +(his is kno)-5.042 F .042(wn as)-.25 F F2(indir)2.543 E .043(ect e)-.37 +F(xpansion)-.2 E F0 5.043(.T)C .043(he v)-5.043 F .043 +(alue is subject to tilde e)-.25 F .043(xpansion, parameter)-.15 F -.15 +(ex)108 254.4 S .249(pansion, command substitution, and arithmetic e).15 +F 2.749(xpansion. If)-.15 F F2(par)2.749 E(ameter)-.15 E F0 .248 +(is a nameref, this e)2.749 F .248(xpands to the)-.15 F 1.51 (name of the parameter referenced by)108 266.4 R F2(par)4.01 E(ameter) -.15 E F0 1.51(instead of performing the complete indirect e)4.01 F -(xpansion.)-.15 E .387(The e)108 278.4 R .387 +(xpansion.)-.15 E .388(The e)108 278.4 R .387 (xceptions to this are the e)-.15 F .387(xpansions of ${)-.15 F F1(!)A F2(pr)A(e\214x)-.37 E F1(*)A F0 2.887(}a)C .387(nd ${)-2.887 F F1(!)A F2 -(name)A F0([)A F2(@)A F0 .387(]} described belo)B 4.188 -.65(w. T)-.25 H -.388(he e).65 F(xclama-)-.15 E(tion point must immediately follo)108 +(name)A F0([)A F2(@)A F0 .387(]} described belo)B 4.187 -.65(w. T)-.25 H +.387(he e).65 F(xclama-)-.15 E(tion point must immediately follo)108 290.4 Q 2.5(wt)-.25 G(he left brace in order to introduce indirection.) -2.5 E .334(In each of the cases belo)108 307.2 R -.65(w,)-.25 G F2(wor) 3.484 E(d)-.37 E F0 .334(is subject to tilde e)2.834 F .334 (xpansion, parameter e)-.15 F .334(xpansion, command substitution,)-.15 -F(and arithmetic e)108 319.2 Q(xpansion.)-.15 E .066 +F(and arithmetic e)108 319.2 Q(xpansion.)-.15 E .067 (When not performing substring e)108 336 R .067 (xpansion, using the forms documented belo)-.15 F 2.567(w\()-.25 G -(e.g.,)-2.567 E F1(:-)2.567 E F0(\),)A F1(bash)2.567 E F0 .067 +(e.g.,)-2.567 E F1(:-)2.567 E F0(\),)A F1(bash)2.567 E F0 .066 (tests for a pa-)2.567 F(rameter that is unset or null.)108 348 Q(Omitt\ ing the colon results in a test only for a parameter that is unset.)5 E (${)108 364.8 Q F2(par)A(ameter)-.15 E F1<3aad>A F2(wor)A(d)-.37 E F0(}) -A F1 .723(Use Default V)144 376.8 R(alues)-.92 E F0 5.723(.I)C(f)-5.723 -E F2(par)4.473 E(ameter)-.15 E F0 .723(is unset or null, the e)3.953 F -.722(xpansion of)-.15 F F2(wor)3.562 E(d)-.37 E F0 .722(is substituted.) -3.992 F(Other)5.722 E(-)-.2 E(wise, the v)144 388.8 Q(alue of)-.25 E F2 +A F1 .722(Use Default V)144 376.8 R(alues)-.92 E F0 5.722(.I)C(f)-5.722 +E F2(par)4.472 E(ameter)-.15 E F0 .723(is unset or null, the e)3.952 F +.723(xpansion of)-.15 F F2(wor)3.563 E(d)-.37 E F0 .723(is substituted.) +3.993 F(Other)5.723 E(-)-.2 E(wise, the v)144 388.8 Q(alue of)-.25 E F2 (par)3.75 E(ameter)-.15 E F0(is substituted.)3.23 E(${)108 400.8 Q F2 -(par)A(ameter)-.15 E F1(:=)A F2(wor)A(d)-.37 E F0(})A F1 .811 +(par)A(ameter)-.15 E F1(:=)A F2(wor)A(d)-.37 E F0(})A F1 .812 (Assign Default V)144 412.8 R(alues)-.92 E F0 5.812(.I)C(f)-5.812 E F2 (par)4.562 E(ameter)-.15 E F0 .812(is unset or null, the e)4.042 F .812 (xpansion of)-.15 F F2(wor)3.652 E(d)-.37 E F0 .812(is assigned to)4.082 -F F2(pa-)4.562 E -.15(ra)144 424.8 S(meter).15 E F0 5.742(.T).73 G .742 -(he v)-5.742 F .742(alue of)-.25 F F2(par)4.492 E(ameter)-.15 E F0 .742 -(is then substituted.)3.972 F .741 +F F2(pa-)4.561 E -.15(ra)144 424.8 S(meter).15 E F0 5.741(.T).73 G .741 +(he v)-5.741 F .741(alue of)-.25 F F2(par)4.491 E(ameter)-.15 E F0 .742 +(is then substituted.)3.972 F .742 (Positional parameters and special parame-)5.742 F (ters may not be assigned to in this w)144 436.8 Q(ay)-.1 E(.)-.65 E(${) 108 448.8 Q F2(par)A(ameter)-.15 E F1(:?)A F2(wor)A(d)-.37 E F0(})A F1 .535(Display Err)144 460.8 R .535(or if Null or Unset)-.18 F F0 5.535 (.I)C(f)-5.535 E F2(par)4.285 E(ameter)-.15 E F0 .535 (is null or unset, the e)3.765 F .535(xpansion of)-.15 F F2(wor)3.035 E -(d)-.37 E F0 .535(\(or a mes-)3.035 F .013(sage to that ef)144 472.8 R -.013(fect if)-.25 F F2(wor)2.853 E(d)-.37 E F0 .013(is not present\) is\ - written to the standard error and the shell, if it is not in-)3.283 F +(d)-.37 E F0 .535(\(or a mes-)3.035 F .012(sage to that ef)144 472.8 R +.012(fect if)-.25 F F2(wor)2.852 E(d)-.37 E F0 .013(is not present\) is\ + written to the standard error and the shell, if it is not in-)3.282 F (teracti)144 484.8 Q -.15(ve)-.25 G 2.5(,e).15 G 2.5(xits. Otherwise,) -2.65 F(the v)2.5 E(alue of)-.25 E F2(par)2.5 E(ameter)-.15 E F0 (is substituted.)2.5 E(${)108 496.8 Q F2(par)A(ameter)-.15 E F1(:+)A F2 @@ -3080,48 +3083,48 @@ F F2(pa-)4.562 E -.15(ra)144 424.8 S(meter).15 E F0 5.742(.T).73 G .742 (of)A(fset)-.18 E F1(:)A F2(length)A F0(})A F1 .002(Substring Expansion) 144 556.8 R F0 5.002(.E)C .002(xpands to up to)-5.002 F F2(length)2.502 E F0 .002(characters of the v)2.502 F .002(alue of)-.25 F F2(par)2.502 E -(ameter)-.15 E F0 .002(starting at the)2.502 F .003 -(character speci\214ed by)144 568.8 R F2(of)2.503 E(fset)-.18 E F0 5.003 +(ameter)-.15 E F0 .002(starting at the)2.502 F .004 +(character speci\214ed by)144 568.8 R F2(of)2.504 E(fset)-.18 E F0 5.003 (.I)C(f)-5.003 E F2(par)2.503 E(ameter)-.15 E F0(is)2.503 E F1(@)2.503 E F0(or)2.503 E F1(*)2.503 E F0 2.503(,a)C 2.503(ni)-2.503 G(nde)-2.503 E -.15(xe)-.15 G 2.503(da).15 G .003(rray subscripted by)-2.503 F F1(@) -2.503 E F0(or)2.503 E F1(*)2.504 E F0 2.504(,o)C 2.504(ra)-2.504 G(n) --2.504 E(associati)144 580.8 Q 1.022 -.15(ve a)-.25 H .722 +2.503 E F0(or)2.503 E F1(*)2.503 E F0 2.503(,o)C 2.503(ra)-2.503 G(n) +-2.503 E(associati)144 580.8 Q 1.022 -.15(ve a)-.25 H .722 (rray name, the results dif).15 F .722(fer as described belo)-.25 F 4.522 -.65(w. I)-.25 H(f).65 E F2(length)3.222 E F0 .722(is omitted, e) -3.222 F .722(xpands to the)-.15 F .042(substring of the v)144 592.8 R -.042(alue of)-.25 F F2(par)2.542 E(ameter)-.15 E F0 .043 -(starting at the character speci\214ed by)2.542 F F2(of)2.543 E(fset) --.18 E F0 .043(and e)2.543 F .043(xtending to the)-.15 F .847 +3.222 F .722(xpands to the)-.15 F .043(substring of the v)144 592.8 R +.043(alue of)-.25 F F2(par)2.543 E(ameter)-.15 E F0 .042 +(starting at the character speci\214ed by)2.543 F F2(of)2.542 E(fset) +-.18 E F0 .042(and e)2.542 F .042(xtending to the)-.15 F .846 (end of the v)144 604.8 R(alue.)-.25 E F2(length)5.846 E F0(and)3.346 E -F2(of)3.346 E(fset)-.18 E F0 .846(are arithmetic e)3.346 F .846 -(xpressions \(see)-.15 F/F3 9/Times-Bold@0 SF .846(ARITHMETIC EV)3.346 F +F2(of)3.346 E(fset)-.18 E F0 .846(are arithmetic e)3.346 F .847 +(xpressions \(see)-.15 F/F3 9/Times-Bold@0 SF .847(ARITHMETIC EV)3.347 F (ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(belo)144 616.8 Q(w\).)-.25 E -(If)144 640.8 Q F2(of)3.028 E(fset)-.18 E F0 -.25(eva)3.029 G .529 +(If)144 640.8 Q F2(of)3.029 E(fset)-.18 E F0 -.25(eva)3.029 G .529 (luates to a number less than zero, the v).25 F .529 (alue is used as an of)-.25 F .529(fset in characters from the)-.25 F -.046(end of the v)144 652.8 R .046(alue of)-.25 F F2(par)2.546 E(ameter) +.045(end of the v)144 652.8 R .045(alue of)-.25 F F2(par)2.546 E(ameter) -.15 E F0 5.046(.I)C(f)-5.046 E F2(length)2.546 E F0 -.25(eva)2.546 G .046(luates to a number less than zero, it is interpreted as an).25 F -(of)144 664.8 Q .202(fset in characters from the end of the v)-.25 F -.202(alue of)-.25 F F2(par)2.702 E(ameter)-.15 E F0 .203 -(rather than a number of characters, and)2.702 F .558(the e)144 676.8 R -.558(xpansion is the characters between)-.15 F F2(of)3.058 E(fset)-.18 E -F0 .558(and that result.)3.058 F .557(Note that a ne)5.557 F -.05(ga) --.15 G(ti).05 E .857 -.15(ve o)-.25 H -.25(ff).15 G .557(set must be).25 +(of)144 664.8 Q .203(fset in characters from the end of the v)-.25 F +.202(alue of)-.25 F F2(par)2.702 E(ameter)-.15 E F0 .202 +(rather than a number of characters, and)2.702 F .557(the e)144 676.8 R +.557(xpansion is the characters between)-.15 F F2(of)3.057 E(fset)-.18 E +F0 .557(and that result.)3.057 F .558(Note that a ne)5.558 F -.05(ga) +-.15 G(ti).05 E .858 -.15(ve o)-.25 H -.25(ff).15 G .558(set must be).25 F(separated from the colon by at least one space to a)144 688.8 Q -.2 (vo)-.2 G(id being confused with the).2 E F1(:-)2.5 E F0 -.15(ex)2.5 G -(pansion.).15 E(If)144 712.8 Q F2(par)3.283 E(ameter)-.15 E F0(is)3.283 -E F1(@)3.283 E F0(or)3.283 E F1(*)3.284 E F0 3.284(,t)C .784 +(pansion.).15 E(If)144 712.8 Q F2(par)3.284 E(ameter)-.15 E F0(is)3.284 +E F1(@)3.284 E F0(or)3.284 E F1(*)3.284 E F0 3.284(,t)C .784 (he result is)-3.284 F F2(length)3.284 E F0 .784 -(positional parameters be)3.284 F .784(ginning at)-.15 F F2(of)3.284 E -(fset)-.18 E F0 5.784(.A)C(ne)-2.5 E -.05(ga)-.15 G(ti).05 E -.15(ve) --.25 G F2(of)144 724.8 Q(fset)-.18 E F0 1.552(is tak)4.052 F 1.552 -(en relati)-.1 F 1.852 -.15(ve t)-.25 H 4.051(oo).15 G 1.551 +(positional parameters be)3.284 F .783(ginning at)-.15 F F2(of)3.283 E +(fset)-.18 E F0 5.783(.A)C(ne)-2.5 E -.05(ga)-.15 G(ti).05 E -.15(ve) +-.25 G F2(of)144 724.8 Q(fset)-.18 E F0 1.551(is tak)4.051 F 1.551 +(en relati)-.1 F 1.851 -.15(ve t)-.25 H 4.051(oo).15 G 1.551 (ne greater than the greatest positional parameter)-4.051 F 4.051(,s)-.4 -G 4.051(oa)-4.051 G 4.051(no)-4.051 G -.25(ff)-4.051 G 1.551 -(set of \2551).25 F(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(23) -193.45 E 0 Cg EP +G 4.052(oa)-4.051 G 4.052(no)-4.052 G -.25(ff)-4.052 G 1.552 +(set of \2551).25 F(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(23) +199.835 E 0 Cg EP %%Page: 24 24 %%BeginPageSetup BP @@ -3132,40 +3135,40 @@ BP (ti)-5.555 G 3.055(sa)-3.055 G 3.055(ne)-3.055 G .555(xpansion error if) -3.205 F/F1 10/Times-Italic@0 SF(length)3.055 E F0 -.25(eva)3.055 G .555 (luates to a number).25 F(less than zero.)144 96 Q(If)144 120 Q F1(par) -3.014 E(ameter)-.15 E F0 .514(is an inde)3.014 F -.15(xe)-.15 G 3.014 +3.013 E(ameter)-.15 E F0 .514(is an inde)3.013 F -.15(xe)-.15 G 3.014 (da).15 G .514(rray name subscripted by @ or *, the result is the)-3.014 -F F1(length)3.014 E F0 .513(members of)3.013 F 1.081(the array be)144 -132 R 1.081(ginning with ${)-.15 F F1(par)A(ameter)-.15 E F0([)A F1(of)A -(fset)-.18 E F0 3.581(]}. A)B(ne)3.581 E -.05(ga)-.15 G(ti).05 E -.15 -(ve)-.25 G F1(of)3.732 E(fset)-.18 E F0 1.082(is tak)3.582 F 1.082 -(en relati)-.1 F 1.382 -.15(ve t)-.25 H 3.582(oo).15 G 1.082(ne greater) --3.582 F 1.08(than the maximum inde)144 144 R 3.58(xo)-.15 G 3.58(ft) --3.58 G 1.08(he speci\214ed array)-3.58 F 6.079(.I)-.65 G 3.579(ti) --6.079 G 3.579(sa)-3.579 G 3.579(ne)-3.579 G 1.079(xpansion error if) --3.729 F F1(length)3.579 E F0 -.25(eva)3.579 G 1.079(luates to a).25 F +F F1(length)3.014 E F0 .514(members of)3.014 F 1.082(the array be)144 +132 R 1.082(ginning with ${)-.15 F F1(par)A(ameter)-.15 E F0([)A F1(of)A +(fset)-.18 E F0 3.582(]}. A)B(ne)3.582 E -.05(ga)-.15 G(ti).05 E -.15 +(ve)-.25 G F1(of)3.732 E(fset)-.18 E F0 1.081(is tak)3.581 F 1.081 +(en relati)-.1 F 1.381 -.15(ve t)-.25 H 3.581(oo).15 G 1.081(ne greater) +-3.581 F 1.079(than the maximum inde)144 144 R 3.579(xo)-.15 G 3.579(ft) +-3.579 G 1.079(he speci\214ed array)-3.579 F 6.079(.I)-.65 G 3.579(ti) +-6.079 G 3.579(sa)-3.579 G 3.58(ne)-3.579 G 1.08(xpansion error if)-3.73 +F F1(length)3.58 E F0 -.25(eva)3.58 G 1.08(luates to a).25 F (number less than zero.)144 156 Q(Substring e)144 180 Q (xpansion applied to an associati)-.15 E .3 -.15(ve a)-.25 H -(rray produces unde\214ned results.).15 E .82(Substring inde)144 204 R +(rray produces unde\214ned results.).15 E .821(Substring inde)144 204 R .821(xing is zero-based unless the positional parameters are used, in w\ hich case the in-)-.15 F(de)144 216 Q .159(xing starts at 1 by def)-.15 F 2.659(ault. If)-.1 F F1(of)2.659 E(fset)-.18 E F0 .159 (is 0, and the positional parameters are used,)2.659 F/F2 10 -/Times-Bold@0 SF($0)2.659 E F0 .159(is pre\214x)2.659 F .158(ed to)-.15 +/Times-Bold@0 SF($0)2.659 E F0 .159(is pre\214x)2.659 F .159(ed to)-.15 F(the list.)144 228 Q(${)108 244.8 Q F2(!)A F1(pr)A(e\214x)-.37 E F2(*)A -F0(})A(${)108 256.8 Q F2(!)A F1(pr)A(e\214x)-.37 E F2(@)A F0(})A F2 .084 -(Names matching pr)144 268.8 R(e\214x)-.18 E F0 5.084(.E)C .084 -(xpands to the names of v)-5.084 F .084(ariables whose names be)-.25 F -.085(gin with)-.15 F F1(pr)2.585 E(e\214x)-.37 E F0 2.585(,s)C(epa-) --2.585 E .258(rated by the \214rst character of the)144 280.8 R/F3 9 -/Times-Bold@0 SF(IFS)2.758 E F0 .257(special v)2.507 F 2.757 -(ariable. When)-.25 F F1(@)2.757 E F0 .257(is used and the e)2.757 F -.257(xpansion appears)-.15 F(within double quotes, each v)144 292.8 Q +F0(})A(${)108 256.8 Q F2(!)A F1(pr)A(e\214x)-.37 E F2(@)A F0(})A F2 .085 +(Names matching pr)144 268.8 R(e\214x)-.18 E F0 5.085(.E)C .084 +(xpands to the names of v)-5.085 F .084(ariables whose names be)-.25 F +.084(gin with)-.15 F F1(pr)2.584 E(e\214x)-.37 E F0 2.584(,s)C(epa-) +-2.584 E .257(rated by the \214rst character of the)144 280.8 R/F3 9 +/Times-Bold@0 SF(IFS)2.757 E F0 .257(special v)2.507 F 2.757 +(ariable. When)-.25 F F1(@)2.758 E F0 .258(is used and the e)2.758 F +.258(xpansion appears)-.15 F(within double quotes, each v)144 292.8 Q (ariable name e)-.25 E(xpands to a separate w)-.15 E(ord.)-.1 E(${)108 309.6 Q F2(!)A F1(name)A F0([)A F1(@)A F0(]})A(${)108 321.6 Q F2(!)A F1 -(name)A F0([)A F1(*)A F0(]})A F2 1.136(List of array k)144 333.6 R(eys) +(name)A F0([)A F1(*)A F0(]})A F2 1.137(List of array k)144 333.6 R(eys) -.1 E F0 6.136(.I)C(f)-6.136 E F1(name)3.636 E F0 1.136(is an array v) 3.636 F 1.136(ariable, e)-.25 F 1.136 -(xpands to the list of array indices \(k)-.15 F -.15(ey)-.1 G 1.137 +(xpands to the list of array indices \(k)-.15 F -.15(ey)-.1 G 1.136 (s\) as-).15 F .397(signed in)144 345.6 R F1(name)2.897 E F0 5.397(.I)C (f)-5.397 E F1(name)2.897 E F0 .397(is not an array)2.897 F 2.897(,e) -.65 G .397(xpands to 0 if)-3.047 F F1(name)2.897 E F0 .397 @@ -3173,25 +3176,25 @@ F0(})A(${)108 256.8 Q F2(!)A F1(pr)A(e\214x)-.37 E F2(@)A F0(})A F2 .084 (is used and the e)144 357.6 Q (xpansion appears within double quotes, each k)-.15 E .3 -.15(ey ex)-.1 H(pands to a separate w).15 E(ord.)-.1 E(${)108 374.4 Q F2(#)A F1(par)A -(ameter)-.15 E F0(})A F2 -.1(Pa)144 386.4 S .47(rameter length).1 F F0 -5.47(.T)C .471(he length in characters of the v)-5.47 F .471(alue of) --.25 F F1(par)2.971 E(ameter)-.15 E F0 .471(is substituted.)2.971 F(If) -5.471 E F1(par)4.221 E(ame-)-.15 E(ter)144 398.4 Q F0(is)3.627 E F2(*) -2.897 E F0(or)2.897 E F2(@)2.897 E F0 2.897(,t)C .397(he v)-2.897 F .397 +(ameter)-.15 E F0(})A F2 -.1(Pa)144 386.4 S .471(rameter length).1 F F0 +5.471(.T)C .471(he length in characters of the v)-5.471 F .471(alue of) +-.25 F F1(par)2.971 E(ameter)-.15 E F0 .47(is substituted.)2.97 F(If) +5.47 E F1(par)4.22 E(ame-)-.15 E(ter)144 398.4 Q F0(is)3.626 E F2(*) +2.896 E F0(or)2.896 E F2(@)2.896 E F0 2.896(,t)C .396(he v)-2.896 F .397 (alue substituted is the number of positional parameters.)-.25 F(If) -5.396 E F1(par)4.146 E(ameter)-.15 E F0 .396(is an ar)3.626 F(-)-.2 E -.78(ray name subscripted by)144 410.4 R F2(*)3.28 E F0(or)3.28 E F2(@) -3.28 E F0 3.28(,t)C .78(he v)-3.28 F .781 -(alue substituted is the number of elements in the array)-.25 F 5.781 -(.I)-.65 G(f)-5.781 E F1(par)145.25 422.4 Q(ameter)-.15 E F0 .456 -(is an inde)3.686 F -.15(xe)-.15 G 2.956(da).15 G .456 -(rray name subscripted by a ne)-2.956 F -.05(ga)-.15 G(ti).05 E .756 --.15(ve n)-.25 H(umber).15 E 2.955(,t)-.4 G .455 -(hat number is interpreted)-2.955 F .972(as relati)144 434.4 R 1.272 --.15(ve t)-.25 H 3.472(oo).15 G .973(ne greater than the maximum inde) --3.472 F 3.473(xo)-.15 G(f)-3.473 E F1(par)3.473 E(ameter)-.15 E F0 -3.473(,s)C 3.473(on)-3.473 G -2.25 -.15(eg a)-3.473 H(ti).15 E 1.273 --.15(ve i)-.25 H .973(ndices count back).15 F(from the end of the array) +5.397 E F1(par)4.147 E(ameter)-.15 E F0 .397(is an ar)3.627 F(-)-.2 E +.781(ray name subscripted by)144 410.4 R F2(*)3.281 E F0(or)3.281 E F2 +(@)3.281 E F0 3.281(,t)C .781(he v)-3.281 F .78 +(alue substituted is the number of elements in the array)-.25 F 5.78(.I) +-.65 G(f)-5.78 E F1(par)145.25 422.4 Q(ameter)-.15 E F0 .455(is an inde) +3.685 F -.15(xe)-.15 G 2.955(da).15 G .456 +(rray name subscripted by a ne)-2.955 F -.05(ga)-.15 G(ti).05 E .756 +-.15(ve n)-.25 H(umber).15 E 2.956(,t)-.4 G .456 +(hat number is interpreted)-2.956 F .973(as relati)144 434.4 R 1.273 +-.15(ve t)-.25 H 3.473(oo).15 G .973(ne greater than the maximum inde) +-3.473 F 3.473(xo)-.15 G(f)-3.473 E F1(par)3.473 E(ameter)-.15 E F0 +3.472(,s)C 3.472(on)-3.472 G -2.25 -.15(eg a)-3.472 H(ti).15 E 1.272 +-.15(ve i)-.25 H .972(ndices count back).15 F(from the end of the array) 144 446.4 Q 2.5(,a)-.65 G(nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 G 2.5(1r)-2.5 G(eferences the last element.)-2.5 E(${)108 463.2 Q F1 (par)A(ameter)-.15 E F2(#)A F1(wor)A(d)-.37 E F0(})A(${)108 475.2 Q F1 @@ -3199,59 +3202,58 @@ G 2.5(1r)-2.5 G(eferences the last element.)-2.5 E(${)108 463.2 Q F1 Q 1.396 -.1(ve m)-.1 H 1.196(atching pr).1 F 1.196(e\214x patter)-.18 F (n)-.15 E F0 6.196(.T)C(he)-6.196 E F1(wor)4.036 E(d)-.37 E F0 1.196 (is e)4.466 F 1.196(xpanded to produce a pattern just as in path-)-.15 F -.543(name e)144 499.2 R .544(xpansion, and matched ag)-.15 F .544 +.544(name e)144 499.2 R .544(xpansion, and matched ag)-.15 F .544 (ainst the e)-.05 F .544(xpanded v)-.15 F .544(alue of)-.25 F F1(par) -4.294 E(ameter)-.15 E F0 .544(using the rules described)3.774 F(under) -144 511.2 Q F2 -.1(Pa)3.133 G(tter).1 E 3.133(nM)-.15 G(atching)-3.133 E +4.294 E(ameter)-.15 E F0 .543(using the rules described)3.774 F(under) +144 511.2 Q F2 -.1(Pa)3.132 G(tter).1 E 3.132(nM)-.15 G(atching)-3.132 E F0(belo)3.132 E 4.432 -.65(w. I)-.25 H 3.132(ft).65 G .632 -(he pattern matches the be)-3.132 F .632(ginning of the v)-.15 F .632 -(alue of)-.25 F F1(par)4.382 E(ameter)-.15 E F0(,).73 E 1.151 +(he pattern matches the be)-3.132 F .632(ginning of the v)-.15 F .633 +(alue of)-.25 F F1(par)4.383 E(ameter)-.15 E F0(,).73 E 1.152 (then the result of the e)144 523.2 R 1.151(xpansion is the e)-.15 F -1.151(xpanded v)-.15 F 1.151(alue of)-.25 F F1(par)4.902 E(ameter)-.15 E -F0 1.152(with the shortest matching)4.382 F .184(pattern \(the `)144 -535.2 R(`)-.74 E F2(#)A F0 1.664 -.74('' c)D .184 +1.151(xpanded v)-.15 F 1.151(alue of)-.25 F F1(par)4.901 E(ameter)-.15 E +F0 1.151(with the shortest matching)4.381 F .183(pattern \(the `)144 +535.2 R(`)-.74 E F2(#)A F0 1.663 -.74('' c)D .184 (ase\) or the longest matching pattern \(the `).74 F(`)-.74 E F2(##)A F0 -1.664 -.74('' c)D .184(ase\) deleted.).74 F(If)5.183 E F1(par)3.933 E -(ameter)-.15 E F0(is)3.413 E F2(@)2.683 E F0(or)144 547.2 Q F2(*)3.018 E -F0 3.018(,t)C .518(he pattern remo)-3.018 F -.25(va)-.15 G 3.018(lo).25 +1.664 -.74('' c)D .184(ase\) deleted.).74 F(If)5.184 E F1(par)3.934 E +(ameter)-.15 E F0(is)3.414 E F2(@)2.684 E F0(or)144 547.2 Q F2(*)3.019 E +F0 3.019(,t)C .518(he pattern remo)-3.019 F -.25(va)-.15 G 3.018(lo).25 G .518 (peration is applied to each positional parameter in turn, and the e) --3.018 F(xpan-)-.15 E .304(sion is the resultant list.)144 559.2 R(If) -5.304 E F1(par)4.054 E(ameter)-.15 E F0 .303(is an array v)3.533 F .303 -(ariable subscripted with)-.25 F F2(@)2.803 E F0(or)2.803 E F2(*)2.803 E -F0 2.803(,t)C .303(he pattern re-)-2.803 F(mo)144 571.2 Q -.25(va)-.15 G -2.987(lo).25 G .487 +-3.018 F(xpan-)-.15 E .303(sion is the resultant list.)144 559.2 R(If) +5.303 E F1(par)4.053 E(ameter)-.15 E F0 .303(is an array v)3.533 F .303 +(ariable subscripted with)-.25 F F2(@)2.804 E F0(or)2.804 E F2(*)2.804 E +F0 2.804(,t)C .304(he pattern re-)-2.804 F(mo)144 571.2 Q -.25(va)-.15 G +2.988(lo).25 G .487 (peration is applied to each member of the array in turn, and the e) --2.987 F .487(xpansion is the resultant)-.15 F(list.)144 583.2 Q(${)108 +-2.988 F .487(xpansion is the resultant)-.15 F(list.)144 583.2 Q(${)108 600 Q F1(par)A(ameter)-.15 E F2(%)A F1(wor)A(d)-.37 E F0(})A(${)108 612 Q F1(par)A(ameter)-.15 E F2(%%)A F1(wor)A(d)-.37 E F0(})A F2(Remo)144 -624 Q .347 -.1(ve m)-.1 H .147(atching suf\214x patter).1 F(n)-.15 E F0 -5.147(.T)C(he)-5.147 E F1(wor)2.647 E(d)-.37 E F0 .147(is e)2.647 F .146 +624 Q .346 -.1(ve m)-.1 H .146(atching suf\214x patter).1 F(n)-.15 E F0 +5.146(.T)C(he)-5.146 E F1(wor)2.646 E(d)-.37 E F0 .147(is e)2.647 F .147 (xpanded to produce a pattern just as in pathname)-.15 F -.15(ex)144 636 -S .458(pansion, and matched ag).15 F .458(ainst the e)-.05 F .458 -(xpanded v)-.15 F .458(alue of)-.25 F F1(par)4.209 E(ameter)-.15 E F0 -.459(using the rules described under)3.689 F F2 -.1(Pa)144 648 S(tter).1 +S .459(pansion, and matched ag).15 F .459(ainst the e)-.05 F .459 +(xpanded v)-.15 F .458(alue of)-.25 F F1(par)4.208 E(ameter)-.15 E F0 +.458(using the rules described under)3.688 F F2 -.1(Pa)144 648 S(tter).1 E 3.314(nM)-.15 G(atching)-3.314 E F0(belo)3.314 E 4.614 -.65(w. I)-.25 H 3.314(ft).65 G .814(he pattern matches a trailing portion of the e) -3.314 F .814(xpanded v)-.15 F .814(alue of)-.25 F F1(pa-)4.564 E -.15 -(ra)144 660 S(meter).15 E F0 3.816(,t).73 G 1.316 -(hen the result of the e)-3.816 F 1.317(xpansion is the e)-.15 F 1.317 -(xpanded v)-.15 F 1.317(alue of)-.25 F F1(par)5.067 E(ameter)-.15 E F0 -1.317(with the shortest)4.547 F 1.085(matching pattern \(the `)144 672 R -(`)-.74 E F2(%)A F0 2.565 -.74('' c)D 1.084 +(ra)144 660 S(meter).15 E F0 3.817(,t).73 G 1.317 +(hen the result of the e)-3.817 F 1.317(xpansion is the e)-.15 F 1.317 +(xpanded v)-.15 F 1.316(alue of)-.25 F F1(par)5.066 E(ameter)-.15 E F0 +1.316(with the shortest)4.546 F 1.084(matching pattern \(the `)144 672 R +(`)-.74 E F2(%)A F0 2.564 -.74('' c)D 1.084 (ase\) or the longest matching pattern \(the `).74 F(`)-.74 E F2(%%)A F0 -2.564 -.74('' c)D 1.084(ase\) deleted.).74 F(If)6.084 E F1(par)145.25 -684 Q(ameter)-.15 E F0(is)3.389 E F2(@)2.659 E F0(or)2.659 E F2(*)2.659 -E F0 2.659(,t)C .159(he pattern remo)-2.659 F -.25(va)-.15 G 2.659(lo) -.25 G .16(peration is applied to each positional parameter in turn,) --2.659 F .51(and the e)144 696 R .51(xpansion is the resultant list.) --.15 F(If)5.51 E F1(par)4.259 E(ameter)-.15 E F0 .509(is an array v) -3.739 F .509(ariable subscripted with)-.25 F F2(@)3.009 E F0(or)3.009 E -F2(*)3.009 E F0(,)A .422(the pattern remo)144 708 R -.25(va)-.15 G 2.922 -(lo).25 G .422 +2.565 -.74('' c)D 1.085(ase\) deleted.).74 F(If)6.085 E F1(par)145.25 +684 Q(ameter)-.15 E F0(is)3.39 E F2(@)2.66 E F0(or)2.66 E F2(*)2.66 E F0 +2.66(,t)C .16(he pattern remo)-2.66 F -.25(va)-.15 G 2.659(lo).25 G .159 +(peration is applied to each positional parameter in turn,)-2.659 F .509 +(and the e)144 696 R .509(xpansion is the resultant list.)-.15 F(If) +5.509 E F1(par)4.259 E(ameter)-.15 E F0 .51(is an array v)3.739 F .51 +(ariable subscripted with)-.25 F F2(@)3.01 E F0(or)3.01 E F2(*)3.01 E F0 +(,)A .423(the pattern remo)144 708 R -.25(va)-.15 G 2.923(lo).25 G .422 (peration is applied to each member of the array in turn, and the e) --2.922 F .423(xpansion is)-.15 F(the resultant list.)144 720 Q -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(24)193.45 E 0 Cg EP +-2.923 F .422(xpansion is)-.15 F(the resultant list.)144 720 Q +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(24)199.835 E 0 Cg EP %%Page: 25 25 %%BeginPageSetup BP @@ -3263,281 +3265,279 @@ BP F2(//)A F1(pattern)A F2(/)A F1(string)A F0(})A(${)108 108 Q F1(par)A (ameter)-.15 E F2(/#)A F1(pattern)A F2(/)A F1(string)A F0(})A(${)108 120 Q F1(par)A(ameter)-.15 E F2(/%)A F1(pattern)A F2(/)A F1(string)A F0(})A -F2 -.1(Pa)144 132 S(tter).1 E 3.607(ns)-.15 G(ubstitution)-3.607 E F0 -6.107(.T)C(he)-6.107 E F1(pattern)3.607 E F0 1.107(is e)3.607 F 1.106 +F2 -.1(Pa)144 132 S(tter).1 E 3.606(ns)-.15 G(ubstitution)-3.606 E F0 +6.106(.T)C(he)-6.106 E F1(pattern)3.606 E F0 1.106(is e)3.606 F 1.107 (xpanded to produce a pattern just as in pathname e)-.15 F(xpan-)-.15 E -(sion.)144 144 Q F1 -.8(Pa)6.033 G -.15(ra).8 G(meter).15 E F0 1.033 -(is e)3.533 F 1.033(xpanded and the longest match of)-.15 F F1(pattern) -3.533 E F0(ag)3.533 E 1.034(ainst its v)-.05 F 1.034 +(sion.)144 144 Q F1 -.8(Pa)6.034 G -.15(ra).8 G(meter).15 E F0 1.034 +(is e)3.534 F 1.033(xpanded and the longest match of)-.15 F F1(pattern) +3.533 E F0(ag)3.533 E 1.033(ainst its v)-.05 F 1.033 (alue is replaced with)-.25 F F1(string)144 156 Q F0(.)A F1(string)5.499 E F0(under)2.999 E .499(goes tilde e)-.18 F .499 (xpansion, parameter and v)-.15 F .499(ariable e)-.25 F .499 (xpansion, arithmetic e)-.15 F(xpansion,)-.15 E 1.137 (command and process substitution, and quote remo)144 168 R -.25(va)-.15 G 3.637(l. The).25 F 1.137(match is performed using the rules)3.637 F -.076(described under)144 180 R F2 -.1(Pa)2.576 G(tter).1 E 2.576(nM)-.15 -G(atching)-2.576 E F0(belo)2.576 E 3.876 -.65(w. I)-.25 H 2.575(nt).65 G -.075(he \214rst form abo)-2.575 F -.15(ve)-.15 G 2.575(,o).15 G .075 +.075(described under)144 180 R F2 -.1(Pa)2.575 G(tter).1 E 2.575(nM)-.15 +G(atching)-2.575 E F0(belo)2.575 E 3.875 -.65(w. I)-.25 H 2.575(nt).65 G +.075(he \214rst form abo)-2.575 F -.15(ve)-.15 G 2.575(,o).15 G .076 (nly the \214rst match is replaced.)-2.575 F .48(If there are tw)144 192 R 2.98(os)-.1 G .48(lashes separating)-2.98 F F1(par)2.98 E(ameter)-.15 E F0(and)2.98 E F1(pattern)2.98 E F0 .48(\(the second form abo)2.98 F --.15(ve)-.15 G .48(\), all matches of).15 F F1(pattern)144 204 Q F0 .375 -(are replaced with)2.875 F F1(string)2.874 E F0 5.374(.I)C(f)-5.374 E F1 +-.15(ve)-.15 G .48(\), all matches of).15 F F1(pattern)144 204 Q F0 .374 +(are replaced with)2.874 F F1(string)2.874 E F0 5.374(.I)C(f)-5.374 E F1 (pattern)2.874 E F0 .374(is preceded by)2.874 F F2(#)2.874 E F0 .374 -(\(the third form abo)2.874 F -.15(ve)-.15 G .374(\), it must match).15 -F .088(at the be)144 216 R .088(ginning of the e)-.15 F .088(xpanded v) +(\(the third form abo)2.874 F -.15(ve)-.15 G .375(\), it must match).15 +F .089(at the be)144 216 R .089(ginning of the e)-.15 F .088(xpanded v) -.15 F .088(alue of)-.25 F F1(par)2.588 E(ameter)-.15 E F0 5.088(.I)C(f) --5.088 E F1(pattern)2.588 E F0 .088(is preceded by)2.588 F F2(%)2.589 E -F0 .089(\(the fourth form)2.589 F(abo)144 228 Q -.15(ve)-.15 G .315 +-5.088 E F1(pattern)2.588 E F0 .088(is preceded by)2.588 F F2(%)2.588 E +F0 .088(\(the fourth form)2.588 F(abo)144 228 Q -.15(ve)-.15 G .315 (\), it must match at the end of the e).15 F .315(xpanded v)-.15 F .315 (alue of)-.25 F F1(par)2.815 E(ameter)-.15 E F0 5.315(.I)C 2.815(ft) -5.315 G .315(he e)-2.815 F .315(xpansion of)-.15 F F1(string)2.815 E F0 -(is)2.815 E .398(null, matches of)144 240 R F1(pattern)2.898 E F0 .398 -(are deleted.)2.898 F(If)5.398 E F1(string)2.898 E F0 .398 -(is null, matches of)2.898 F F1(pattern)2.898 E F0 .399 -(are deleted and the)2.899 F F2(/)2.899 E F0(fol-)2.899 E(lo)144 252 Q +(is)2.815 E .399(null, matches of)144 240 R F1(pattern)2.899 E F0 .399 +(are deleted.)2.899 F(If)5.399 E F1(string)2.898 E F0 .398 +(is null, matches of)2.898 F F1(pattern)2.898 E F0 .398 +(are deleted and the)2.898 F F2(/)2.898 E F0(fol-)2.898 E(lo)144 252 Q (wing)-.25 E F1(pattern)2.5 E F0(may be omitted.)2.5 E .95(If the)144 276 R F2(patsub_r)3.45 E(eplacement)-.18 E F0 .95 (shell option is enabled using)3.45 F F2(shopt)3.45 E F0 3.45(,a)C 1.25 -.15(ny u)-3.45 H .95(nquoted instances of).15 F F2(&)3.45 E F0(in)3.45 E F1(string)144 288 Q F0(are replaced with the matching portion of)2.5 E -F1(pattern)2.5 E F0(.)A .749(Quoting an)144 312 R 3.249(yp)-.15 G .749 -(art of)-3.249 F F1(string)3.249 E F0 .749 -(inhibits replacement in the e)3.249 F .75 -(xpansion of the quoted portion, including)-.15 F .767 +F1(pattern)2.5 E F0(.)A .75(Quoting an)144 312 R 3.25(yp)-.15 G .75 +(art of)-3.25 F F1(string)3.25 E F0 .749(inhibits replacement in the e) +3.249 F .749(xpansion of the quoted portion, including)-.15 F .767 (replacement strings stored in shell v)144 324 R 3.267 (ariables. Backslash)-.25 F .767(will escape)3.267 F F2(&)3.267 E F0(in) -3.267 E F1(string)3.267 E F0 3.267(;t)C .767(he backslash is)-3.267 F -(remo)144 336 Q -.15(ve)-.15 G 2.668(di).15 G 2.668(no)-2.668 G .169 -(rder to permit a literal)-2.668 F F2(&)2.669 E F0 .169 +3.267 E F1(string)3.267 E F0 3.267(;t)C .768(he backslash is)-3.267 F +(remo)144 336 Q -.15(ve)-.15 G 2.669(di).15 G 2.669(no)-2.669 G .169 +(rder to permit a literal)-2.669 F F2(&)2.669 E F0 .169 (in the replacement string.)2.669 F .169 -(Backslash can also be used to es-)5.169 F 1.429(cape a backslash;)144 +(Backslash can also be used to es-)5.169 F 1.428(cape a backslash;)144 348 R F2(\\\\)3.928 E F0 1.428 (results in a literal backslash in the replacement.)3.928 F 1.428 -(Users should tak)6.428 F 3.928(ec)-.1 G 1.428(are if)-3.928 F F1 -(string)144 360 Q F0 .292(is double-quoted to a)2.791 F -.2(vo)-.2 G +(Users should tak)6.428 F 3.929(ec)-.1 G 1.429(are if)-3.929 F F1 +(string)144 360 Q F0 .292(is double-quoted to a)2.792 F -.2(vo)-.2 G .292(id unw).2 F .292 -(anted interactions between the backslash and double-quoting,)-.1 F .054 +(anted interactions between the backslash and double-quoting,)-.1 F .053 (since backslash has special meaning within double quotes.)144 372 R --.15(Pa)5.053 G .053(ttern substitution performs the check).15 F .069 -(for unquoted)144 384 R F2(&)2.569 E F0 .069(after e)2.569 F(xpanding) --.15 E F1(string)2.569 E F0 2.569(;s)C .069 -(hell programmers should quote an)-2.569 F 2.57(yo)-.15 G .07 -(ccurrences of)-2.57 F F2(&)2.57 E F0(the)2.57 E(y)-.15 E -.1(wa)144 396 -S 1.113(nt to be tak).1 F 1.112 +-.15(Pa)5.053 G .054(ttern substitution performs the check).15 F .07 +(for unquoted)144 384 R F2(&)2.57 E F0 .07(after e)2.57 F(xpanding)-.15 +E F1(string)2.569 E F0 2.569(;s)C .069(hell programmers should quote an) +-2.569 F 2.569(yo)-.15 G .069(ccurrences of)-2.569 F F2(&)2.569 E F0 +(the)2.569 E(y)-.15 E -.1(wa)144 396 S 1.112(nt to be tak).1 F 1.112 (en literally in the replacement and ensure an)-.1 F 3.612(yi)-.15 G -1.112(nstances of)-3.612 F F2(&)3.612 E F0(the)3.612 E 3.612(yw)-.15 G -1.112(ant to be re-)-3.712 F(placed are unquoted.)144 408 Q .686(If the) -144 432 R F2(nocasematch)3.186 E F0 .687 +1.112(nstances of)-3.612 F F2(&)3.612 E F0(the)3.612 E 3.613(yw)-.15 G +1.113(ant to be re-)-3.713 F(placed are unquoted.)144 408 Q .687(If the) +144 432 R F2(nocasematch)3.187 E F0 .687 (shell option is enabled, the match is performed without re)3.187 F -.05 (ga)-.15 G .687(rd to the case of).05 F .736(alphabetic characters.)144 444 R(If)5.736 E F1(par)4.486 E(ameter)-.15 E F0(is)3.966 E F2(@)3.236 E F0(or)3.236 E F2(*)3.236 E F0 3.236(,t)C .736 -(he substitution operation is applied to each posi-)-3.236 F .654 +(he substitution operation is applied to each posi-)-3.236 F .655 (tional parameter in turn, and the e)144 456 R .654 -(xpansion is the resultant list.)-.15 F(If)5.655 E F1(par)4.405 E -(ameter)-.15 E F0 .655(is an array v)3.885 F(ariable)-.25 E .348 -(subscripted with)144 468 R F2(@)2.848 E F0(or)2.848 E F2(*)2.848 E F0 -2.848(,t)C .348(he substitution operation is applied to each member of \ -the array in turn,)-2.848 F(and the e)144 480 Q +(xpansion is the resultant list.)-.15 F(If)5.654 E F1(par)4.404 E +(ameter)-.15 E F0 .654(is an array v)3.884 F(ariable)-.25 E .347 +(subscripted with)144 468 R F2(@)2.847 E F0(or)2.847 E F2(*)2.847 E F0 +2.847(,t)C .348(he substitution operation is applied to each member of \ +the array in turn,)-2.847 F(and the e)144 480 Q (xpansion is the resultant list.)-.15 E(${)108 496.8 Q F1(par)A(ameter) -.15 E F2(^)A F1(pattern)A F0(})A(${)108 508.8 Q F1(par)A(ameter)-.15 E F2(^^)A F1(pattern)A F0(})A(${)108 520.8 Q F1(par)A(ameter)-.15 E F2(,)A F1(pattern)A F0(})A(${)108 532.8 Q F1(par)A(ameter)-.15 E F2(,,)A F1 -(pattern)A F0(})A F2 .437(Case modi\214cation)144 544.8 R F0 5.437(.T)C -.437(his e)-5.437 F .438 +(pattern)A F0(})A F2 .438(Case modi\214cation)144 544.8 R F0 5.438(.T)C +.438(his e)-5.438 F .437 (xpansion modi\214es the case of alphabetic characters in)-.15 F F1(par) -2.938 E(ameter)-.15 E F0 5.438(.T)C(he)-5.438 E F1(pattern)144 556.8 Q -F0 .374(is e)2.874 F .374 +2.937 E(ameter)-.15 E F0 5.437(.T)C(he)-5.437 E F1(pattern)144 556.8 Q +F0 .373(is e)2.873 F .374 (xpanded to produce a pattern just as in pathname e)-.15 F 2.874 -(xpansion. Each)-.15 F .373(character in the e)2.873 F(x-)-.15 E .513 -(panded v)144 568.8 R .513(alue of)-.25 F F1(par)3.013 E(ameter)-.15 E -F0 .513(is tested ag)3.013 F(ainst)-.05 E F1(pattern)3.013 E F0 3.013 -(,a)C .514(nd, if it matches the pattern, its case is con-)-3.013 F -.15 -(ve)144 580.8 S 2.823(rted. The).15 F .323 -(pattern should not attempt to match more than one character)2.823 F -5.322(.T)-.55 G(he)-5.322 E F2(^)2.822 E F0 .322(operator con)2.822 F --.15(ve)-.4 G(rts).15 E(lo)144 592.8 Q .18(wercase letters matching)-.25 -F F1(pattern)2.681 E F0 .181(to uppercase; the)2.681 F F2(,)2.681 E F0 -.181(operator con)2.681 F -.15(ve)-.4 G .181 +(xpansion. Each)-.15 F .374(character in the e)2.874 F(x-)-.15 E .514 +(panded v)144 568.8 R .514(alue of)-.25 F F1(par)3.014 E(ameter)-.15 E +F0 .514(is tested ag)3.014 F(ainst)-.05 E F1(pattern)3.014 E F0 3.014 +(,a)C .513(nd, if it matches the pattern, its case is con-)-3.014 F -.15 +(ve)144 580.8 S 2.822(rted. The).15 F .323 +(pattern should not attempt to match more than one character)2.822 F +5.323(.T)-.55 G(he)-5.323 E F2(^)2.823 E F0 .323(operator con)2.823 F +-.15(ve)-.4 G(rts).15 E(lo)144 592.8 Q .181(wercase letters matching) +-.25 F F1(pattern)2.681 E F0 .181(to uppercase; the)2.681 F F2(,)2.681 E +F0 .181(operator con)2.681 F -.15(ve)-.4 G .18 (rts matching uppercase letters).15 F .085(to lo)144 604.8 R 2.585 (wercase. The)-.25 F F2(^^)2.585 E F0(and)2.585 E F2(,,)2.585 E F0 -.15 (ex)2.585 G .085(pansions con).15 F -.15(ve)-.4 G .085 (rt each matched character in the e).15 F .085(xpanded v)-.15 F .085 -(alue; the)-.25 F F2(^)2.585 E F0(and)144 616.8 Q F2(,)3.59 E F0 -.15 -(ex)3.59 G 1.09(pansions match and con).15 F -.15(ve)-.4 G 1.091 -(rt only the \214rst character in the e).15 F 1.091(xpanded v)-.15 F -3.591(alue. If)-.25 F F1(pattern)3.591 E F0(is)3.591 E 1.121 -(omitted, it is treated lik)144 628.8 R 3.621(ea)-.1 G F2(?)A F0 3.621 -(,w)C 1.121(hich matches e)-3.621 F -.15(ve)-.25 G 1.121(ry character) -.15 F 6.12(.I)-.55 G(f)-6.12 E F1(par)4.87 E(ameter)-.15 E F0(is)4.35 E -F2(@)3.62 E F0(or)3.62 E F2(*)3.62 E F0 3.62(,t)C 1.12(he case)-3.62 F -.339(modi\214cation operation is applied to each positional parameter i\ -n turn, and the e)144 640.8 R .34(xpansion is the re-)-.15 F .25 -(sultant list.)144 652.8 R(If)5.25 E F1(par)4 E(ameter)-.15 E F0 .25 -(is an array v)3.48 F .249(ariable subscripted with)-.25 F F2(@)2.749 E -F0(or)2.749 E F2(*)2.749 E F0 2.749(,t)C .249 -(he case modi\214cation oper)-2.749 F(-)-.2 E +(alue; the)-.25 F F2(^)2.585 E F0(and)144 616.8 Q F2(,)3.591 E F0 -.15 +(ex)3.591 G 1.091(pansions match and con).15 F -.15(ve)-.4 G 1.091 +(rt only the \214rst character in the e).15 F 1.09(xpanded v)-.15 F 3.59 +(alue. If)-.25 F F1(pattern)3.59 E F0(is)3.59 E 1.12 +(omitted, it is treated lik)144 628.8 R 3.62(ea)-.1 G F2(?)A F0 3.62(,w) +C 1.12(hich matches e)-3.62 F -.15(ve)-.25 G 1.121(ry character).15 F +6.121(.I)-.55 G(f)-6.121 E F1(par)4.871 E(ameter)-.15 E F0(is)4.351 E F2 +(@)3.621 E F0(or)3.621 E F2(*)3.621 E F0 3.621(,t)C 1.121(he case)-3.621 +F .339(modi\214cation operation is applied to each positional parameter\ + in turn, and the e)144 640.8 R .339(xpansion is the re-)-.15 F .249 +(sultant list.)144 652.8 R(If)5.249 E F1(par)3.999 E(ameter)-.15 E F0 +.249(is an array v)3.479 F .249(ariable subscripted with)-.25 F F2(@) +2.749 E F0(or)2.75 E F2(*)2.75 E F0 2.75(,t)C .25 +(he case modi\214cation oper)-2.75 F(-)-.2 E (ation is applied to each member of the array in turn, and the e)144 664.8 Q(xpansion is the resultant list.)-.15 E(${)108 681.6 Q F1(par)A (ameter)-.15 E F2(@)A F1(oper)A(ator)-.15 E F0(})A F2 -.1(Pa)144 693.6 S .86(rameter transf).1 F(ormation)-.25 E F0 5.86(.T)C .86(he e)-5.86 F .86(xpansion is either a transformation of the v)-.15 F .86(alue of)-.25 -F F1(par)3.36 E(ameter)-.15 E F0 .154(or information about)144 705.6 R -F1(par)2.654 E(ameter)-.15 E F0 .153(itself, depending on the v)2.654 F -.153(alue of)-.25 F F1(oper)2.653 E(ator)-.15 E F0 5.153(.E)C(ach)-5.153 -E F1(oper)2.653 E(ator)-.15 E F0 .153(is a sin-)2.653 F(gle letter:)144 -717.6 Q(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(25)193.45 E 0 Cg EP +F F1(par)3.36 E(ameter)-.15 E F0 .153(or information about)144 705.6 R +F1(par)2.653 E(ameter)-.15 E F0 .153(itself, depending on the v)2.653 F +.153(alue of)-.25 F F1(oper)2.653 E(ator)-.15 E F0 5.154(.E)C(ach)-5.154 +E F1(oper)2.654 E(ator)-.15 E F0 .154(is a sin-)2.654 F(gle letter:)144 +717.6 Q(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(25)199.835 E 0 Cg EP %%Page: 26 26 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(U)144 84 Q F0 .142(The e)180 84 R .142 +SF(U)144 84 Q F0 .143(The e)180 84 R .142 (xpansion is a string that is the v)-.15 F .142(alue of)-.25 F/F2 10 /Times-Italic@0 SF(par)2.642 E(ameter)-.15 E F0 .142(with lo)2.642 F -.143(wercase alphabetic charac-)-.25 F(ters con)180 96 Q -.15(ve)-.4 G -(rted to uppercase.).15 E F1(u)144 108 Q F0 .43(The e)180 108 R .43 +.142(wercase alphabetic charac-)-.25 F(ters con)180 96 Q -.15(ve)-.4 G +(rted to uppercase.).15 E F1(u)144 108 Q F0 .429(The e)180 108 R .429 (xpansion is a string that is the v)-.15 F .429(alue of)-.25 F F2(par) -2.929 E(ameter)-.15 E F0 .429(with the \214rst character con)2.929 F --.15(ve)-.4 G(rted).15 E(to uppercase, if it is alphabetic.)180 120 Q F1 -(L)144 132 Q F0 .124(The e)180 132 R .124 +2.929 E(ameter)-.15 E F0 .43(with the \214rst character con)2.93 F -.15 +(ve)-.4 G(rted).15 E(to uppercase, if it is alphabetic.)180 120 Q F1(L) +144 132 Q F0 .125(The e)180 132 R .124 (xpansion is a string that is the v)-.15 F .124(alue of)-.25 F F2(par) -2.624 E(ameter)-.15 E F0 .125(with uppercase alphabetic charac-)2.625 F +2.624 E(ameter)-.15 E F0 .124(with uppercase alphabetic charac-)2.624 F (ters con)180 144 Q -.15(ve)-.4 G(rted to lo).15 E(wercase.)-.25 E F1(Q) -144 156 Q F0 1.065(The e)180 156 R 1.065 +144 156 Q F0 1.064(The e)180 156 R 1.064 (xpansion is a string that is the v)-.15 F 1.065(alue of)-.25 F F2(par) -3.565 E(ameter)-.15 E F0 1.064(quoted in a format that can be)3.565 F -(reused as input.)180 168 Q F1(E)144 180 Q F0 .44(The e)180 180 R .441 +3.565 E(ameter)-.15 E F0 1.065(quoted in a format that can be)3.565 F +(reused as input.)180 168 Q F1(E)144 180 Q F0 .441(The e)180 180 R .441 (xpansion is a string that is the v)-.15 F .441(alue of)-.25 F F2(par) -2.941 E(ameter)-.15 E F0 .441(with backslash escape sequences)2.941 F --.15(ex)180 192 S(panded as with the).15 E F1($'...)2.5 E(')-.55 E F0 -(quoting mechanism.)2.5 E F1(P)144 204 Q F0 1.073(The e)180 204 R 1.073 +2.941 E(ameter)-.15 E F0 .44(with backslash escape sequences)2.94 F -.15 +(ex)180 192 S(panded as with the).15 E F1($'...)2.5 E(')-.55 E F0 +(quoting mechanism.)2.5 E F1(P)144 204 Q F0 1.072(The e)180 204 R 1.073 (xpansion is a string that is the result of e)-.15 F 1.073 (xpanding the v)-.15 F 1.073(alue of)-.25 F F2(par)3.573 E(ameter)-.15 E F0 1.073(as if it)3.573 F(were a prompt string \(see)180 216 Q F1(PR)2.5 -E(OMPTING)-.3 E F0(belo)2.5 E(w\).)-.25 E F1(A)144 228 Q F0 1.137(The e) +E(OMPTING)-.3 E F0(belo)2.5 E(w\).)-.25 E F1(A)144 228 Q F0 1.138(The e) 180 228 R 1.138 (xpansion is a string in the form of an assignment statement or)-.15 F -F1(declar)3.638 E(e)-.18 E F0(command)3.638 E(that, if e)180 240 Q -.25 +F1(declar)3.637 E(e)-.18 E F0(command)3.637 E(that, if e)180 240 Q -.25 (va)-.25 G(luated, will recreate).25 E F2(par)2.5 E(ameter)-.15 E F0 (with its attrib)2.5 E(utes and v)-.2 E(alue.)-.25 E F1(K)144 252 Q F0 -1.34(Produces a possibly-quoted v)180 252 R 1.339(ersion of the v)-.15 F -1.339(alue of)-.25 F F2(par)3.839 E(ameter)-.15 E F0 3.839(,e)C 1.339 -(xcept that it prints the)-3.989 F -.25(va)180 264 S .257(lues of inde) +1.339(Produces a possibly-quoted v)180 252 R 1.339(ersion of the v)-.15 +F 1.339(alue of)-.25 F F2(par)3.839 E(ameter)-.15 E F0 3.839(,e)C 1.34 +(xcept that it prints the)-3.989 F -.25(va)180 264 S .258(lues of inde) .25 F -.15(xe)-.15 G 2.757(da).15 G .257(nd associati)-2.757 F .557 -.15 (ve a)-.25 H .257(rrays as a sequence of quoted k).15 F -.15(ey)-.1 G -(-v).15 E .257(alue pairs \(see)-.25 F F1(Ar)2.758 E(-)-.37 E(rays)180 +(-v).15 E .257(alue pairs \(see)-.25 F F1(Ar)2.757 E(-)-.37 E(rays)180 276 Q F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F1(a)144 288 Q F0(The e)180 288 Q(xpansion is a string consisting of \215ag v)-.15 E (alues representing)-.25 E F2(par)2.5 E(ameter)-.15 E F0 1.1 -.55('s a)D -(ttrib).55 E(utes.)-.2 E F1(k)144 300 Q F0(Lik)180 300 Q 2.658(et)-.1 G -.157(he K transformation, b)-2.658 F .157(ut e)-.2 F .157(xpands the k) +(ttrib).55 E(utes.)-.2 E F1(k)144 300 Q F0(Lik)180 300 Q 2.657(et)-.1 G +.157(he K transformation, b)-2.657 F .157(ut e)-.2 F .157(xpands the k) -.15 F -.15(ey)-.1 G 2.657(sa).15 G .157(nd v)-2.657 F .157 -(alues of inde)-.25 F -.15(xe)-.15 G 2.657(da).15 G .157(nd associati) --2.657 F .457 -.15(ve a)-.25 H -.2(r-).15 G(rays to separate w)180 312 Q -(ords after w)-.1 E(ord splitting.)-.1 E(If)144 328.8 Q F2(par)4.402 E -(ameter)-.15 E F0(is)3.882 E F1(@)3.152 E F0(or)3.152 E F1(*)3.153 E F0 +(alues of inde)-.25 F -.15(xe)-.15 G 2.657(da).15 G .158(nd associati) +-2.657 F .458 -.15(ve a)-.25 H -.2(r-).15 G(rays to separate w)180 312 Q +(ords after w)-.1 E(ord splitting.)-.1 E(If)144 328.8 Q F2(par)4.403 E +(ameter)-.15 E F0(is)3.883 E F1(@)3.153 E F0(or)3.153 E F1(*)3.153 E F0 3.153(,t)C .653(he operation is applied to each positional parameter in\ turn, and the e)-3.153 F(x-)-.15 E .403(pansion is the resultant list.) 144 340.8 R(If)5.403 E F2(par)4.153 E(ameter)-.15 E F0 .403 (is an array v)3.633 F .403(ariable subscripted with)-.25 F F1(@)2.903 E -F0(or)2.903 E F1(*)2.903 E F0 2.903(,t)C .402(he opera-)-2.903 F +F0(or)2.903 E F1(*)2.903 E F0 2.903(,t)C .403(he opera-)-2.903 F (tion is applied to each member of the array in turn, and the e)144 352.8 Q(xpansion is the resultant list.)-.15 E .708(The result of the e) 144 376.8 R .708(xpansion is subject to w)-.15 F .708 (ord splitting and pathname e)-.1 F .708(xpansion as described be-)-.15 F(lo)144 388.8 Q -.65(w.)-.25 G F1(Command Substitution)87 405.6 Q F2 -1.698(Command substitution)108 417.6 R F0(allo)4.198 E 1.697 -(ws the output of a command to replace the command name.)-.25 F 1.697 -(There are tw)6.697 F(o)-.1 E(forms:)108 429.6 Q F1($\()144 446.4 Q F2 +1.697(Command substitution)108 417.6 R F0(allo)4.197 E 1.697 +(ws the output of a command to replace the command name.)-.25 F 1.698 +(There are tw)6.698 F(o)-.1 E(forms:)108 429.6 Q F1($\()144 446.4 Q F2 (command)A F1(\))1.666 E F0(or)108 458.4 Q F1<92>144 470.4 Q F2(command) -A F1<92>A(Bash)108 487.2 Q F0 .088(performs the e)2.588 F .088 -(xpansion by e)-.15 F -.15(xe)-.15 G(cuting).15 E F2(command)2.588 E F0 -.089(in a subshell en)2.589 F .089(vironment and replacing the command) +A F1<92>A(Bash)108 487.2 Q F0 .089(performs the e)2.589 F .089 +(xpansion by e)-.15 F -.15(xe)-.15 G(cuting).15 E F2(command)2.589 E F0 +.088(in a subshell en)2.589 F .088(vironment and replacing the command) -.4 F .41(substitution with the standard output of the command, with an) 108 499.2 R 2.91(yt)-.15 G .41(railing ne)-2.91 F .41(wlines deleted.) --.25 F .41(Embedded ne)5.41 F(w-)-.25 E .191(lines are not deleted, b) +-.25 F .41(Embedded ne)5.41 F(w-)-.25 E .192(lines are not deleted, b) 108 511.2 R .192(ut the)-.2 F 2.692(ym)-.15 G .192(ay be remo)-2.692 F -.15(ve)-.15 G 2.692(dd).15 G .192(uring w)-2.692 F .192(ord splitting.) --.1 F .192(The command substitution)5.192 F F1($\(cat)2.692 E F2(\214le) -2.692 E F1(\))A F0(can be replaced by the equi)108 523.2 Q -.25(va)-.25 +-.1 F .192(The command substitution)5.192 F F1($\(cat)2.691 E F2(\214le) +2.691 E F1(\))A F0(can be replaced by the equi)108 523.2 Q -.25(va)-.25 G(lent b).25 E(ut f)-.2 E(aster)-.1 E F1($\(<)2.5 E F2(\214le)2.5 E F1 (\))A F0(.)A 1.724(When the old-style backquote form of substitution is\ used, backslash retains its literal meaning e)108 540 R(xcept)-.15 E -.314(when follo)108 552 R .314(wed by)-.25 F F1($)2.814 E F0(,)A F1<92> -2.814 E F0 2.814(,o)C(r)-2.814 E F1(\\)2.814 E F0 5.314(.T)C .315(he \ +.315(when follo)108 552 R .315(wed by)-.25 F F1($)2.815 E F0(,)A F1<92> +2.815 E F0 2.815(,o)C(r)-2.815 E F1(\\)2.815 E F0 5.315(.T)C .314(he \ \214rst backquote not preceded by a backslash terminates the command su\ -b-)-5.314 F 3.887(stitution. When)108 564 R 1.387(using the $\()3.887 F -F2(command).833 E F0 3.887(\)f)1.666 G 1.386 -(orm, all characters between the parentheses mak)-3.887 F 3.886(eu)-.1 G -3.886(pt)-3.886 G 1.386(he com-)-3.886 F +b-)-5.315 F 3.886(stitution. When)108 564 R 1.386(using the $\()3.886 F +F2(command).833 E F0 3.886(\)f)1.666 G 1.387 +(orm, all characters between the parentheses mak)-3.886 F 3.887(eu)-.1 G +3.887(pt)-3.887 G 1.387(he com-)-3.887 F (mand; none are treated specially)108 576 Q(.)-.65 E .894 (Command substitutions may be nested.)108 592.8 R 2.494 -.8(To n)5.894 H .894(est when using the backquoted form, escape the inner back-).8 F (quotes with backslashes.)108 604.8 Q .422 (If the substitution appears within double quotes, w)108 621.6 R .422 -(ord splitting and pathname e)-.1 F .422(xpansion are not performed)-.15 +(ord splitting and pathname e)-.1 F .423(xpansion are not performed)-.15 F(on the results.)108 633.6 Q F1(Arithmetic Expansion)87 650.4 Q F0 -1.034(Arithmetic e)108 662.4 R 1.034(xpansion allo)-.15 F 1.034 +1.035(Arithmetic e)108 662.4 R 1.035(xpansion allo)-.15 F 1.035 (ws the e)-.25 F -.25(va)-.25 G 1.034(luation of an arithmetic e).25 F -1.035(xpression and the substitution of the result.)-.15 F +1.034(xpression and the substitution of the result.)-.15 F (The format for arithmetic e)108 674.4 Q(xpansion is:)-.15 E F1($\(\() 144 691.2 Q F2 -.2(ex)C(pr).2 E(ession)-.37 E F1(\)\))A F0(The)108 708 Q -F2 -.2(ex)2.736 G(pr).2 E(ession)-.37 E F0(under)2.976 E .236 +F2 -.2(ex)2.735 G(pr).2 E(ession)-.37 E F0(under)2.975 E .235 (goes the same e)-.18 F .236 -(xpansions as if it were within double quotes, b)-.15 F .235 -(ut double quote charac-)-.2 F 2.799(ters in)108 720 R F2 -.2(ex)5.299 G -(pr).2 E(ession)-.37 E F0 2.799(are not treated specially and are remo) -5.299 F -.15(ve)-.15 G 5.299(d. All).15 F(tok)5.3 E 2.8(ens in the e)-.1 -F 2.8(xpression under)-.15 F(go)-.18 E(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(26)193.45 E 0 Cg EP +(xpansions as if it were within double quotes, b)-.15 F .236 +(ut double quote charac-)-.2 F 2.8(ters in)108 720 R F2 -.2(ex)5.3 G(pr) +.2 E(ession)-.37 E F0 2.799(are not treated specially and are remo)5.3 F +-.15(ve)-.15 G 5.299(d. All).15 F(tok)5.299 E 2.799(ens in the e)-.1 F +2.799(xpression under)-.15 F(go)-.18 E(GNU Bash 5.2)72 768 Q +(2022 June 3)150.675 E(26)199.835 E 0 Cg EP %%Page: 27 27 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .92 -(parameter and v)108 84 R .92(ariable e)-.25 F .919 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .919 +(parameter and v)108 84 R .919(ariable e)-.25 F .919 (xpansion, command substitution, and quote remo)-.15 F -.25(va)-.15 G -3.419(l. The).25 F .919(result is treated as the)3.419 F(arithmetic e) -108 96 Q(xpression to be e)-.15 E -.25(va)-.25 G 2.5(luated. Arithmetic) -.25 F -.15(ex)2.5 G(pansions may be nested.).15 E 1.378(The e)108 112.8 -R -.25(va)-.25 G 1.378 +3.419(l. The).25 F .92(result is treated as the)3.419 F(arithmetic e)108 +96 Q(xpression to be e)-.15 E -.25(va)-.25 G 2.5(luated. Arithmetic).25 +F -.15(ex)2.5 G(pansions may be nested.).15 E 1.379(The e)108 112.8 R +-.25(va)-.25 G 1.378 (luation is performed according to the rules listed belo).25 F 3.878(wu) -.25 G(nder)-3.878 E/F1 9/Times-Bold@0 SF 1.378(ARITHMETIC EV)3.878 F (ALU)-1.215 E -.855(AT)-.54 G(ION).855 E/F2 9/Times-Roman@0 SF(.)A F0 -(If)5.879 E/F3 10/Times-Italic@0 SF -.2(ex)108 124.8 S(pr).2 E(ession) +(If)5.878 E/F3 10/Times-Italic@0 SF -.2(ex)108 124.8 S(pr).2 E(ession) -.37 E F0(is in)2.74 E -.25(va)-.4 G(lid,).25 E/F4 10/Times-Bold@0 SF (bash)2.5 E F0(prints a message indicating f)2.5 E (ailure and no substitution occurs.)-.1 E F4(Pr)87 141.6 Q (ocess Substitution)-.18 E F3(Pr)108 153.6 Q .405(ocess substitution) -.45 F F0(allo)2.905 E .405(ws a process')-.25 F 2.905(si)-.55 G .405 (nput or output to be referred to using a \214lename.)-2.905 F .405 -(It tak)5.405 F .405(es the form)-.1 F(of)108 165.6 Q F4(<\()3.25 E F3 -(list)A F4(\)).833 E F0(or)3.25 E F4(>\()3.25 E F3(list)A F4(\)).833 E -F0 5.75(.T)C .751(he process)-5.75 F F3(list)3.251 E F0 .751 +(It tak)5.405 F .405(es the form)-.1 F(of)108 165.6 Q F4(<\()3.251 E F3 +(list)A F4(\)).833 E F0(or)3.251 E F4(>\()3.251 E F3(list)A F4(\)).833 E +F0 5.751(.T)C .751(he process)-5.751 F F3(list)3.251 E F0 .751 (is run asynchronously)3.251 F 3.251(,a)-.65 G .751 -(nd its input or output appears as a \214lename.)-3.251 F .148 +(nd its input or output appears as a \214lename.)-3.251 F .147 (This \214lename is passed as an ar)108 177.6 R .148 -(gument to the current command as the result of the e)-.18 F 2.647 -(xpansion. If)-.15 F(the)2.647 E F4(>\()2.647 E F3(list)A F4(\)).833 E -F0 .559(form is used, writing to the \214le will pro)108 189.6 R .559 +(gument to the current command as the result of the e)-.18 F 2.648 +(xpansion. If)-.15 F(the)2.648 E F4(>\()2.648 E F3(list)A F4(\)).833 E +F0 .56(form is used, writing to the \214le will pro)108 189.6 R .56 (vide input for)-.15 F F3(list)3.059 E F0 5.559(.I)C 3.059(ft)-5.559 G -(he)-3.059 E F4(<\()3.06 E F3(list)A F4(\)).833 E F0 .56 -(form is used, the \214le passed as an)3.06 F(ar)108 201.6 Q .309 +(he)-3.059 E F4(<\()3.059 E F3(list)A F4(\)).833 E F0 .559 +(form is used, the \214le passed as an)3.059 F(ar)108 201.6 Q .308 (gument should be read to obtain the output of)-.18 F F3(list)2.808 E F0 -5.308(.P)C .308(rocess substitution is supported on systems that sup-) +5.308(.P)C .309(rocess substitution is supported on systems that sup-) -5.308 F(port named pipes \()108 213.6 Q F3(FIFOs)A F0 2.5(\)o)C 2.5(rt) -2.5 G(he)-2.5 E F4(/de)2.5 E(v/fd)-.15 E F0 -(method of naming open \214les.)2.5 E .896(When a)108 230.4 R -.25(va) +(method of naming open \214les.)2.5 E .897(When a)108 230.4 R -.25(va) -.2 G .896(ilable, process substitution is performed simultaneously wit\ -h parameter and v).25 F .897(ariable e)-.25 F(xpansion,)-.15 E +h parameter and v).25 F .896(ariable e)-.25 F(xpansion,)-.15 E (command substitution, and arithmetic e)108 242.4 Q(xpansion.)-.15 E F4 --.75(Wo)87 259.2 S(rd Splitting).75 E F0 1.143 -(The shell scans the results of parameter e)108 271.2 R 1.142 -(xpansion, command substitution, and arithmetic e)-.15 F 1.142 +-.75(Wo)87 259.2 S(rd Splitting).75 E F0 1.142 +(The shell scans the results of parameter e)108 271.2 R 1.143 +(xpansion, command substitution, and arithmetic e)-.15 F 1.143 (xpansion that)-.15 F(did not occur within double quotes for)108 283.2 Q F3(wor)2.84 E 2.5(ds)-.37 G(plitting)-2.5 E F0(.).22 E .063 (The shell treats each character of)108 300 R F1(IFS)2.563 E F0 .063 @@ -3545,153 +3545,153 @@ F3(wor)2.84 E 2.5(ds)-.37 G(plitting)-2.5 E F0(.).22 E .063 (nd splits the results of the other e)-2.563 F .063(xpansions into w) -.15 F(ords)-.1 E .207(using these characters as \214eld terminators.) 108 312 R(If)5.207 E F1(IFS)2.707 E F0 .207(is unset, or its v)2.457 F -.207(alue is e)-.25 F(xactly)-.15 E F4()2.707 E F0 -(,)A .836(the def)108 324 R .836(ault, then sequences of)-.1 F F4 -()3.336 E F0(,)A F4()3.336 E F0 3.336(,a)C(nd)-3.336 E F4 -()3.336 E F0 .837(at the be)3.336 F .837 -(ginning and end of the results of)-.15 F .346(the pre)108 336 R .345 +.207(alue is e)-.25 F(xactly)-.15 E F4()2.708 E F0 +(,)A .837(the def)108 324 R .837(ault, then sequences of)-.1 F F4 +()3.337 E F0(,)A F4()3.337 E F0 3.337(,a)C(nd)-3.337 E F4 +()3.337 E F0 .836(at the be)3.336 F .836 +(ginning and end of the results of)-.15 F .345(the pre)108 336 R .345 (vious e)-.25 F .345(xpansions are ignored, and an)-.15 F 2.845(ys)-.15 G .345(equence of)-2.845 F F1(IFS)2.845 E F0 .345 (characters not at the be)2.595 F .345(ginning or end serv)-.15 F(es) --.15 E 1.236(to delimit w)108 348 R 3.736(ords. If)-.1 F F1(IFS)3.736 E -F0 1.236(has a v)3.486 F 1.236(alue other than the def)-.25 F 1.237 +-.15 E 1.237(to delimit w)108 348 R 3.737(ords. If)-.1 F F1(IFS)3.737 E +F0 1.236(has a v)3.486 F 1.236(alue other than the def)-.25 F 1.236 (ault, then sequences of the whitespace characters)-.1 F F4(space)108 -360 Q F0(,)A F4(tab)2.507 E F0 2.507(,a)C(nd)-2.507 E F4(newline)2.507 E -F0 .007(are ignored at the be)2.507 F .006(ginning and end of the w)-.15 -F .006(ord, as long as the whitespace charac-)-.1 F .92(ter is in the v) -108 372 R .92(alue of)-.25 F F1(IFS)3.42 E F0(\(an)3.17 E F1(IFS)3.42 E -F0 .92(whitespace character\).)3.17 F(An)5.92 E 3.42(yc)-.15 G .92 -(haracter in)-3.42 F F1(IFS)3.42 E F0 .921(that is not)3.17 F F1(IFS) -3.421 E F0(whitespace,)3.171 E .429(along with an)108 384 R 2.928(ya) --.15 G(djacent)-2.928 E F1(IFS)2.928 E F0 .428 +360 Q F0(,)A F4(tab)2.506 E F0 2.506(,a)C(nd)-2.506 E F4(newline)2.506 E +F0 .006(are ignored at the be)2.506 F .006(ginning and end of the w)-.15 +F .007(ord, as long as the whitespace charac-)-.1 F .921 +(ter is in the v)108 372 R .92(alue of)-.25 F F1(IFS)3.42 E F0(\(an)3.17 +E F1(IFS)3.42 E F0 .92(whitespace character\).)3.17 F(An)5.92 E 3.42(yc) +-.15 G .92(haracter in)-3.42 F F1(IFS)3.42 E F0 .92(that is not)3.17 F +F1(IFS)3.42 E F0(whitespace,)3.17 E .428(along with an)108 384 R 2.928 +(ya)-.15 G(djacent)-2.928 E F1(IFS)2.928 E F0 .428 (whitespace characters, delimits a \214eld.)2.678 F 2.928(As)5.428 G -.428(equence of)-2.928 F F1(IFS)2.928 E F0 .428(whitespace charac-)2.678 +.428(equence of)-2.928 F F1(IFS)2.928 E F0 .429(whitespace charac-)2.679 F(ters is also treated as a delimiter)108 396 Q 5(.I)-.55 G 2.5(ft)-5 G (he v)-2.5 E(alue of)-.25 E F1(IFS)2.5 E F0(is null, no w)2.25 E -(ord splitting occurs.)-.1 E .782(Explicit null ar)108 412.8 R .782 +(ord splitting occurs.)-.1 E .783(Explicit null ar)108 412.8 R .783 (guments \()-.18 F F4 .833("").833 G F0(or)2.449 E F4 .833<0808>4.115 G F0 3.282(\)a)C .782 -(re retained and passed to commands as empty strings.)-3.282 F .783 -(Unquoted im-)5.783 F .179(plicit null ar)108 424.8 R .179 +(re retained and passed to commands as empty strings.)-3.282 F .782 +(Unquoted im-)5.782 F .178(plicit null ar)108 424.8 R .179 (guments, resulting from the e)-.18 F .179 (xpansion of parameters that ha)-.15 F .479 -.15(ve n)-.2 H 2.679(ov).15 -G .179(alues, are remo)-2.929 F -.15(ve)-.15 G 2.678(d. If).15 F 2.678 -(ap)2.678 G(a-)-2.678 E .318(rameter with no v)108 436.8 R .319 +G .179(alues, are remo)-2.929 F -.15(ve)-.15 G 2.679(d. If).15 F 2.679 +(ap)2.679 G(a-)-2.679 E .319(rameter with no v)108 436.8 R .319 (alue is e)-.25 F .319(xpanded within double quotes, a null ar)-.15 F -.319(gument results and is retained and passed)-.18 F .001 -(to a command as an empty string.)108 448.8 R .001 -(When a quoted null ar)5.001 F(gument appears as part of a w)-.18 E -(ord whose e)-.1 E(xpansion)-.15 E .983(is non-null, the null ar)108 -460.8 R .983(gument is remo)-.18 F -.15(ve)-.15 G 3.483(d. That).15 F -.983(is, the w)3.483 F(ord)-.1 E/F5 10/Courier@0 SF -5.167 -3.483 F F0(becomes)3.484 E F53.484 E F0 .984(after w)3.484 F .984 +.319(gument results and is retained and passed)-.18 F +(to a command as an empty string.)108 448.8 Q(When a quoted null ar)5 E +.001(gument appears as part of a w)-.18 F .001(ord whose e)-.1 F +(xpansion)-.15 E .984(is non-null, the null ar)108 460.8 R .984 +(gument is remo)-.18 F -.15(ve)-.15 G 3.483(d. That).15 F .983 +(is, the w)3.483 F(ord)-.1 E/F5 10/Courier@0 SF -5.1673.483 +F F0(becomes)3.483 E F53.483 E F0 .983(after w)3.483 F .983 (ord splitting and)-.1 F(null ar)108 472.8 Q(gument remo)-.18 E -.25(va) -.15 G(l.).25 E(Note that if no e)108 489.6 Q (xpansion occurs, no splitting is performed.)-.15 E F4 -.1(Pa)87 506.4 S -(thname Expansion).1 E F0 .371(After w)108 518.4 R .371 -(ord splitting, unless the)-.1 F F42.871 E F0 .371 -(option has been set,)2.871 F F4(bash)2.871 E F0 .37(scans each w)2.87 F -.37(ord for the characters)-.1 F F4(*)2.87 E F0(,)A F4(?)2.87 E F0 2.87 -(,a)C(nd)-2.87 E F4([)2.87 E F0(.)A .633 +(thname Expansion).1 E F0 .37(After w)108 518.4 R .37 +(ord splitting, unless the)-.1 F F42.87 E F0 .37 +(option has been set,)2.87 F F4(bash)2.87 E F0 .371(scans each w)2.871 F +.371(ord for the characters)-.1 F F4(*)2.871 E F0(,)A F4(?)2.871 E F0 +2.871(,a)C(nd)-2.871 E F4([)2.871 E F0(.)A .634 (If one of these characters appears, and is not quoted, then the w)108 -530.4 R .634(ord is re)-.1 F -.05(ga)-.15 G .634(rded as a).05 F F3 -(pattern)4.384 E F0 3.134(,a).24 G .634(nd replaced)-3.134 F 1.34(with \ +530.4 R .634(ord is re)-.1 F -.05(ga)-.15 G .633(rded as a).05 F F3 +(pattern)4.383 E F0 3.133(,a).24 G .633(nd replaced)-3.133 F 1.34(with \ an alphabetically sorted list of \214lenames matching the pattern \(see) 108 542.4 R F1 -.09(Pa)3.84 G(tter).09 E 3.59(nM)-.135 G(atching)-3.59 E -F0(belo)3.589 E 3.839(w\). If)-.25 F(no)3.839 E .534 +F0(belo)3.59 E 3.84(w\). If)-.25 F(no)3.84 E .534 (matching \214lenames are found, and the shell option)108 554.4 R F4 (nullglob)3.034 E F0 .534(is not enabled, the w)3.034 F .534 -(ord is left unchanged.)-.1 F(If)5.535 E(the)108 566.4 Q F4(nullglob) -3.285 E F0 .785(option is set, and no matches are found, the w)3.285 F -.785(ord is remo)-.1 F -.15(ve)-.15 G 3.285(d. If).15 F(the)3.284 E F4 -(failglob)3.284 E F0 .784(shell option is)3.284 F .754(set, and no matc\ +(ord is left unchanged.)-.1 F(If)5.534 E(the)108 566.4 Q F4(nullglob) +3.284 E F0 .785(option is set, and no matches are found, the w)3.284 F +.785(ord is remo)-.1 F -.15(ve)-.15 G 3.285(d. If).15 F(the)3.285 E F4 +(failglob)3.285 E F0 .785(shell option is)3.285 F .754(set, and no matc\ hes are found, an error message is printed and the command is not e)108 -578.4 R -.15(xe)-.15 G 3.255(cuted. If).15 F .755(the shell)3.255 F -(option)108 590.4 Q F4(nocaseglob)3.264 E F0 .763 -(is enabled, the match is performed without re)3.264 F -.05(ga)-.15 G -.763(rd to the case of alphabetic characters.).05 F .039 +578.4 R -.15(xe)-.15 G 3.254(cuted. If).15 F .754(the shell)3.254 F +(option)108 590.4 Q F4(nocaseglob)3.263 E F0 .763 +(is enabled, the match is performed without re)3.263 F -.05(ga)-.15 G +.764(rd to the case of alphabetic characters.).05 F .039 (When a pattern is used for pathname e)108 602.4 R .039 (xpansion, the character)-.15 F F4 -.63(``)2.539 G -.55(.').63 G(')-.08 E F0 .039(at the start of a name or immediately fol-)5.039 F(lo)108 -614.4 Q .191(wing a slash must be matched e)-.25 F(xplicitly)-.15 E -2.691(,u)-.65 G .191(nless the shell option)-2.691 F F4(dotglob)2.69 E -F0 .19(is set.)2.69 F .19(In order to match the \214le-)5.19 F(names)108 -626.4 Q F4 -.63(``)3.644 G -.55(.').63 G(')-.08 E F0(and)6.144 E F4 -.63 -(``)3.644 G(..).63 E -.63('')-.55 G F0 3.644(,t).63 G 1.145 -(he pattern must be)-3.644 F 1.145(gin with `)-.15 F(`.)-.74 E 2.625 +614.4 Q .19(wing a slash must be matched e)-.25 F(xplicitly)-.15 E 2.69 +(,u)-.65 G .19(nless the shell option)-2.69 F F4(dotglob)2.691 E F0 .191 +(is set.)2.691 F .191(In order to match the \214le-)5.191 F(names)108 +626.4 Q F4 -.63(``)3.645 G -.55(.').63 G(')-.08 E F0(and)6.145 E F4 -.63 +(``)3.645 G(..).63 E -.63('')-.55 G F0 3.645(,t).63 G 1.145 +(he pattern must be)-3.645 F 1.145(gin with `)-.15 F(`.)-.74 E 2.625 -.74('' \()-.7 H 1.145(for e).74 F 1.145(xample, `)-.15 F(`.?')-.74 E 1.145('\), e)-.74 F -.15(ve)-.25 G 3.645(ni).15 G(f)-3.645 E F4(dotglob) -3.645 E F0 1.145(is set.)3.645 F 1.145(If the)6.145 F F4(globskipdots) -108 638.4 Q F0 .154(shell option is enabled, the \214lenames)2.654 F F4 --.63(``)2.654 G -.55(.').63 G(')-.08 E F0(and)5.154 E F4 -.63(``)2.654 G -(..).63 E -.63('')-.55 G F0 .153(are ne)5.783 F -.15(ve)-.25 G 2.653(rm) -.15 G .153(atched, e)-2.653 F -.15(ve)-.25 G 2.653(ni).15 G 2.653(ft) --2.653 G .153(he pattern be-)-2.653 F .12(gins with a)108 650.4 R F4 +3.644 E F0 1.144(is set.)3.644 F 1.144(If the)6.144 F F4(globskipdots) +108 638.4 Q F0 .153(shell option is enabled, the \214lenames)2.653 F F4 +-.63(``)2.653 G -.55(.').63 G(')-.08 E F0(and)5.153 E F4 -.63(``)2.654 G +(..).63 E -.63('')-.55 G F0 .154(are ne)5.784 F -.15(ve)-.25 G 2.654(rm) +.15 G .154(atched, e)-2.654 F -.15(ve)-.25 G 2.654(ni).15 G 2.654(ft) +-2.654 G .154(he pattern be-)-2.654 F .12(gins with a)108 650.4 R F4 -.63(``)2.62 G -.55(.').63 G(')-.08 E F0 5.12(.W)C .12 (hen not matching pathnames, the)-5.12 F F4 -.63(``)2.62 G -.55(.').63 G (')-.08 E F0 .12(character is not treated specially)5.12 F 5.12(.W)-.65 -G .12(hen matching)-5.12 F 3.541(ap)108 662.4 S 1.041 -(athname, the slash character must al)-3.541 F -.1(wa)-.1 G 1.041 -(ys be matched e).1 F 1.04(xplicitly by a slash in the pattern, b)-.15 F -1.04(ut in other)-.2 F .131(matching conte)108 674.4 R .132 +G .12(hen matching)-5.12 F 3.54(ap)108 662.4 S 1.04 +(athname, the slash character must al)-3.54 F -.1(wa)-.1 G 1.04 +(ys be matched e).1 F 1.041(xplicitly by a slash in the pattern, b)-.15 +F 1.041(ut in other)-.2 F .132(matching conte)108 674.4 R .132 (xts it can be matched by a special pattern character as described belo) --.15 F 2.632(wu)-.25 G(nder)-2.632 E F1 -.09(Pa)2.632 G(tter).09 E 2.382 -(nM)-.135 G(atch-)-2.382 E(ing)108 686.4 Q F2(.)A F0 .606 -(See the description of)5.106 F F4(shopt)3.106 E F0(belo)3.106 E 3.106 +-.15 F 2.631(wu)-.25 G(nder)-2.631 E F1 -.09(Pa)2.631 G(tter).09 E 2.381 +(nM)-.135 G(atch-)-2.381 E(ing)108 686.4 Q F2(.)A F0 .605 +(See the description of)5.105 F F4(shopt)3.105 E F0(belo)3.105 E 3.106 (wu)-.25 G(nder)-3.106 E F1 .606(SHELL B)3.106 F(UIL)-.09 E .606 -(TIN COMMANDS)-.828 F F0 .605(for a description of the)2.855 F F4(no-) -3.105 E(caseglob)108 698.4 Q F0(,)A F4(nullglob)2.5 E F0(,)A F4 +(TIN COMMANDS)-.828 F F0 .606(for a description of the)2.856 F F4(no-) +3.106 E(caseglob)108 698.4 Q F0(,)A F4(nullglob)2.5 E F0(,)A F4 (globskipdots)2.5 E F0(,)A F4(failglob)2.5 E F0 2.5(,a)C(nd)-2.5 E F4 (dotglob)2.5 E F0(shell options.)2.5 E(The)108 715.2 Q F1(GLOBIGNORE) -2.561 E F0 .061(shell v)2.311 F .061 +2.562 E F0 .062(shell v)2.312 F .061 (ariable may be used to restrict the set of \214le names matching a)-.25 -F F3(pattern)3.812 E F0 5.062(.I).24 G(f)-5.062 E F1(GLO-)2.562 E +F F3(pattern)3.811 E F0 5.061(.I).24 G(f)-5.061 E F1(GLO-)2.561 E (BIGNORE)108 727.2 Q F0 2.015(is set, each matching \214le name that al\ -so matches one of the patterns in)4.265 F F1(GLOBIGNORE)4.515 E F0(is) -4.264 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(27)193.45 E 0 Cg EP +so matches one of the patterns in)4.264 F F1(GLOBIGNORE)4.515 E F0(is) +4.265 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(27)199.835 E 0 Cg EP %%Page: 28 28 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(remo)108 84 Q -.15 -(ve)-.15 G 3.914(df).15 G 1.414(rom the list of matches.)-3.914 F 1.415 +(ve)-.15 G 3.915(df).15 G 1.415(rom the list of matches.)-3.915 F 1.415 (If the)6.415 F/F1 10/Times-Bold@0 SF(nocaseglob)3.915 E F0 1.415 -(option is set, the matching ag)3.915 F 1.415(ainst the patterns in)-.05 -F/F2 9/Times-Bold@0 SF(GLOBIGNORE)108 96 Q F0 .147 -(is performed without re)2.397 F -.05(ga)-.15 G .147(rd to case.).05 F +(option is set, the matching ag)3.915 F 1.414(ainst the patterns in)-.05 +F/F2 9/Times-Bold@0 SF(GLOBIGNORE)108 96 Q F0 .146 +(is performed without re)2.396 F -.05(ga)-.15 G .146(rd to case.).05 F .146(The \214lenames)5.146 F F1 -.63(``)2.646 G -.55(.').63 G(')-.08 E -F0(and)5.146 E F1 -.63(``)2.646 G(..).63 E -.63('')-.55 G F0 .146 -(are al)5.776 F -.1(wa)-.1 G .146(ys ignored when).1 F F2(GLOBIGNORE)108 +F0(and)5.147 E F1 -.63(``)2.647 G(..).63 E -.63('')-.55 G F0 .147 +(are al)5.777 F -.1(wa)-.1 G .147(ys ignored when).1 F F2(GLOBIGNORE)108 108 Q F0 .827(is set and not null.)3.077 F(Ho)5.827 E(we)-.25 E -.15(ve) -.25 G 1.627 -.4(r, s).15 H(etting).4 E F2(GLOBIGNORE)3.327 E F0 .827 (to a non-null v)3.077 F .827(alue has the ef)-.25 F .827(fect of)-.25 F -.683(enabling the)108 120 R F1(dotglob)3.183 E F0 .682 -(shell option, so all other \214lenames be)3.183 F .682(ginning with a) +.682(enabling the)108 120 R F1(dotglob)3.182 E F0 .682 +(shell option, so all other \214lenames be)3.182 F .682(ginning with a) -.15 F F1 -.63(``)3.182 G -.55(.').63 G(')-.08 E F0 .682(will match.) -5.682 F 2.282 -.8(To g)5.682 H .682(et the old).8 F(beha)108 132 Q 1.184 -(vior of ignoring \214lenames be)-.2 F 1.184(ginning with a)-.15 F F1 +5.682 F 2.283 -.8(To g)5.683 H .683(et the old).8 F(beha)108 132 Q 1.185 +(vior of ignoring \214lenames be)-.2 F 1.185(ginning with a)-.15 F F1 -.63(``)3.684 G -.55(.').63 G(')-.08 E F0 3.684(,m)C(ak)-3.684 E(e)-.1 E -F1 -.63(``)3.684 G(.*').63 E(')-.63 E F0 1.185(one of the patterns in) -6.185 F F2(GLOBIGNORE)3.685 E/F3 9/Times-Roman@0 SF(.)A F0(The)108 144 Q -F1(dotglob)3.132 E F0 .632(option is disabled when)3.132 F F2 -(GLOBIGNORE)3.132 E F0 .632(is unset.)2.882 F .631 +F1 -.63(``)3.684 G(.*').63 E(')-.63 E F0 1.184(one of the patterns in) +6.184 F F2(GLOBIGNORE)3.684 E/F3 9/Times-Roman@0 SF(.)A F0(The)108 144 Q +F1(dotglob)3.131 E F0 .631(option is disabled when)3.131 F F2 +(GLOBIGNORE)3.132 E F0 .632(is unset.)2.882 F .632 (The pattern matching honors the setting of)5.632 F(the)108 156 Q F1 (extglob)2.5 E F0(shell option.)2.5 E F1 -.1(Pa)108 172.8 S(tter).1 E 2.5(nM)-.15 G(atching)-2.5 E F0(An)108 189.6 Q 3.138(yc)-.15 G .638(har\ acter that appears in a pattern, other than the special pattern charact\ -ers described belo)-3.138 F 1.938 -.65(w, m)-.25 H(atches).65 E 2.722 +ers described belo)-3.138 F 1.938 -.65(w, m)-.25 H(atches).65 E 2.721 (itself. The)108 201.6 R .221(NUL character may not occur in a pattern.) -2.722 F 2.721(Ab)5.221 G .221(ackslash escapes the follo)-2.721 F .221 +2.721 F 2.721(Ab)5.221 G .221(ackslash escapes the follo)-2.721 F .222 (wing character; the es-)-.25 F .418 (caping backslash is discarded when matching.)108 213.6 R .418 -(The special pattern characters must be quoted if the)5.418 F 2.919(ya) --.15 G .419(re to)-2.919 F(be matched literally)108 225.6 Q(.)-.65 E +(The special pattern characters must be quoted if the)5.418 F 2.918(ya) +-.15 G .418(re to)-2.918 F(be matched literally)108 225.6 Q(.)-.65 E (The special pattern characters ha)108 242.4 Q .3 -.15(ve t)-.2 H -(he follo).15 E(wing meanings:)-.25 E F1(*)144 259.2 Q F0 .377 -(Matches an)180 259.2 R 2.877(ys)-.15 G .376 -(tring, including the null string.)-2.877 F .376(When the)5.376 F F1 -(globstar)2.876 E F0 .376(shell option is enabled,)2.876 F(and)180 271.2 +(he follo).15 E(wing meanings:)-.25 E F1(*)144 259.2 Q F0 .376 +(Matches an)180 259.2 R 2.876(ys)-.15 G .376 +(tring, including the null string.)-2.876 F .376(When the)5.376 F F1 +(globstar)2.876 E F0 .377(shell option is enabled,)2.876 F(and)180 271.2 Q F1(*)3.275 E F0 .775(is used in a pathname e)3.275 F .775 (xpansion conte)-.15 F .775(xt, tw)-.15 F 3.275(oa)-.1 G(djacent)-3.275 E F1(*)3.275 E F0 3.275(su)C .775(sed as a single pattern)-3.275 F 1.058 @@ -3700,6744 +3700,6746 @@ E F1(*)3.275 E F0 3.275(su)C .775(sed as a single pattern)-3.275 F 1.058 F0(,)A(tw)180 295.2 Q 2.5(oa)-.1 G(djacent)-2.5 E F1(*)2.5 E F0 2.5(sw)C (ill match only directories and subdirectories.)-2.5 E F1(?)144 307.2 Q F0(Matches an)180 307.2 Q 2.5(ys)-.15 G(ingle character)-2.5 E(.)-.55 E -F1([...])144 319.2 Q F0 .578(Matches an)180 319.2 R 3.078(yo)-.15 G .578 -(ne of the enclosed characters.)-3.078 F 3.079(Ap)5.579 G .579 -(air of characters separated by a h)-3.079 F(yphen)-.05 E .685 -(denotes a)180 331.2 R/F4 10/Times-Italic@0 SF -.15(ra)3.185 G(ng).15 E +F1([...])144 319.2 Q F0 .579(Matches an)180 319.2 R 3.079(yo)-.15 G .579 +(ne of the enclosed characters.)-3.079 F 3.079(Ap)5.579 G .578 +(air of characters separated by a h)-3.079 F(yphen)-.05 E .684 +(denotes a)180 331.2 R/F4 10/Times-Italic@0 SF -.15(ra)3.184 G(ng).15 E 3.184(ee)-.1 G(xpr)-3.384 E(ession)-.37 E F0 3.184(;a)C .984 -.15(ny c) -3.184 H .684(haracter that f).15 F .684(alls between those tw)-.1 F -3.184(oc)-.1 G .684(haracters, inclu-)-3.184 F(si)180 343.2 Q -.15(ve) --.25 G 3.712(,u).15 G 1.212(sing the current locale')-3.712 F 3.712(sc) +3.185(oc)-.1 G .685(haracters, inclu-)-3.185 F(si)180 343.2 Q -.15(ve) +-.25 G 3.713(,u).15 G 1.213(sing the current locale')-3.713 F 3.712(sc) -.55 G 1.212(ollating sequence and character set, is matched.)-3.712 F -1.213(If the)6.213 F 1.124(\214rst character follo)180 355.2 R 1.124 -(wing the)-.25 F F1([)3.624 E F0 1.124(is a)3.624 F F1(!)3.624 E F0 -1.124(or a)6.124 F F1(^)3.623 E F0 1.123(then an)3.623 F 3.623(yc)-.15 G -1.123(haracter not enclosed is matched.)-3.623 F .894 -(The sorting order of characters in range e)180 367.2 R .895 -(xpressions is determined by the current locale)-.15 F .376(and the v) -180 379.2 R .376(alues of the)-.25 F F2(LC_COLLA)2.875 E(TE)-.855 E F0 -(or)2.625 E F2(LC_ALL)2.875 E F0 .375(shell v)2.625 F .375 -(ariables, if set.)-.25 F 1.975 -.8(To o)5.375 H .375(btain the tra-).8 -F .067(ditional interpretation of range e)180 391.2 R .067 -(xpressions, where)-.15 F F1([a\255d])2.567 E F0 .068(is equi)2.568 F --.25(va)-.25 G .068(lent to).25 F F1([abcd])2.568 E F0 2.568(,s)C .068 -(et v)-2.568 F(alue)-.25 E .157(of the)180 403.2 R F1(LC_ALL)2.657 E F0 -.157(shell v)2.657 F .157(ariable to)-.25 F F1(C)2.657 E F0 2.657(,o)C -2.657(re)-2.657 G .157(nable the)-2.657 F F1(globasciiranges)2.657 E F0 -.156(shell option.)2.656 F(A)5.156 E F12.656 E F0(may)2.656 E .193(\ -be matched by including it as the \214rst or last character in the set.) -180 415.2 R(A)5.193 E F1(])2.693 E F0 .194(may be matched by)2.693 F -(including it as the \214rst character in the set.)180 427.2 Q -.4(Wi) -180 445.2 S(thin).4 E F1([)3.071 E F0(and)3.071 E F1(])3.071 E F0(,)A F4 --.15(ch)3.071 G(ar).15 E .571(acter classes)-.15 F F0 .571 -(can be speci\214ed using the syntax)3.071 F F1([:)3.07 E F4(class)A F1 -(:])A F0 3.07(,w)C(here)-3.07 E F4(class)3.07 E F0(is one of the follo) -180 457.2 Q(wing classes de\214ned in the POSIX standard:)-.25 E F1 -5.889(alnum alpha ascii blank cntrl digit graph lo)180 469.2 R 5.889 -(wer print punct space up-)-.1 F 5(per w)180 481.2 R 5(ord xdigit)-.1 F -F0 4.29(Ac)180 493.2 S 1.789(haracter class matches an)-4.29 F 4.289(yc) +1.212(If the)6.212 F 1.123(\214rst character follo)180 355.2 R 1.123 +(wing the)-.25 F F1([)3.623 E F0 1.123(is a)3.623 F F1(!)3.623 E F0 +1.124(or a)6.123 F F1(^)3.624 E F0 1.124(then an)3.624 F 3.624(yc)-.15 G +1.124(haracter not enclosed is matched.)-3.624 F 1.045 +(The sorting order of characters in range e)180 367.2 R 1.044 +(xpressions, and the characters included in the)-.15 F 2.34 +(range, are determined by the current locale and the v)180 379.2 R 2.341 +(alues of the)-.25 F F2(LC_COLLA)4.841 E(TE)-.855 E F0(or)4.591 E F2 +(LC_ALL)180 391.2 Q F0 1.079(shell v)3.329 F 1.079(ariables, if set.) +-.25 F 2.679 -.8(To o)6.079 H 1.079 +(btain the traditional interpretation of range e).8 F(xpres-)-.15 E .392 +(sions, where)180 403.2 R F1([a\255d])2.892 E F0 .392(is equi)2.892 F +-.25(va)-.25 G .392(lent to).25 F F1([abcd])2.893 E F0 2.893(,s)C .393 +(et v)-2.893 F .393(alue of the)-.25 F F1(LC_ALL)2.893 E F0 .393 +(shell v)2.893 F .393(ariable to)-.25 F F1(C)2.893 E F0(,)A .9 +(or enable the)180 415.2 R F1(globasciiranges)3.4 E F0 .9(shell option.) +3.4 F(A)5.899 E F13.399 E F0 .899 +(may be matched by including it as the)3.399 F .405 +(\214rst or last character in the set.)180 427.2 R(A)5.405 E F1(])2.905 +E F0 .405(may be matched by including it as the \214rst character)2.905 +F(in the set.)180 439.2 Q -.4(Wi)180 457.2 S(thin).4 E F1([)3.071 E F0 +(and)3.071 E F1(])3.071 E F0(,)A F4 -.15(ch)3.071 G(ar).15 E .571 +(acter classes)-.15 F F0 .571(can be speci\214ed using the syntax)3.071 +F F1([:)3.07 E F4(class)A F1(:])A F0 3.07(,w)C(here)-3.07 E F4(class) +3.07 E F0(is one of the follo)180 469.2 Q +(wing classes de\214ned in the POSIX standard:)-.25 E F1 5.889 +(alnum alpha ascii blank cntrl digit graph lo)180 481.2 R 5.889 +(wer print punct space up-)-.1 F 5(per w)180 493.2 R 5(ord xdigit)-.1 F +F0 4.29(Ac)180 505.2 S 1.789(haracter class matches an)-4.29 F 4.289(yc) -.15 G 1.789(haracter belonging to that class.)-4.289 F(The)6.789 E F1 -.1(wo)4.289 G(rd).1 E F0(character)4.289 E -(class matches letters, digits, and the character _.)180 505.2 Q -.4(Wi) -180 523.2 S(thin).4 E F1([)4.536 E F0(and)4.536 E F1(])4.536 E F0 4.536 +(class matches letters, digits, and the character _.)180 517.2 Q -.4(Wi) +180 535.2 S(thin).4 E F1([)4.536 E F0(and)4.536 E F1(])4.536 E F0 4.536 (,a)C(n)-4.536 E F4 2.036(equivalence class)4.536 F F0 2.037 (can be speci\214ed using the syntax)4.536 F F1([=)4.537 E F4(c)A F1(=]) A F0 4.537(,w)C(hich)-4.537 E .125(matches all characters with the same\ - collation weight \(as de\214ned by the current locale\) as)180 535.2 R -(the character)180 547.2 Q F4(c)2.5 E F0(.)A -.4(Wi)180 565.2 S(thin).4 + collation weight \(as de\214ned by the current locale\) as)180 547.2 R +(the character)180 559.2 Q F4(c)2.5 E F0(.)A -.4(Wi)180 577.2 S(thin).4 E F1([)2.5 E F0(and)2.5 E F1(])2.5 E F0 2.5(,t)C(he syntax)-2.5 E F1([.) 2.5 E F4(symbol)A F1(.])A F0(matches the collating symbol)2.5 E F4 -(symbol)2.5 E F0(.)A .539(If the)108 582 R F1(extglob)3.039 E F0 .539 +(symbol)2.5 E F0(.)A .539(If the)108 594 R F1(extglob)3.039 E F0 .539 (shell option is enabled using the)3.039 F F1(shopt)3.039 E F0 -.2(bu) 3.039 G .54(iltin, the shell recognizes se).2 F -.15(ve)-.25 G .54 -(ral e).15 F .54(xtended pattern)-.15 F .038(matching operators.)108 594 +(ral e).15 F .54(xtended pattern)-.15 F .038(matching operators.)108 606 R .038(In the follo)5.038 F .038(wing description, a)-.25 F F4 (pattern-list)2.538 E F0 .037 -(is a list of one or more patterns separated by)2.538 F(a)108 606 Q F1 +(is a list of one or more patterns separated by)2.538 F(a)108 618 Q F1 (|)2.5 E F0 5(.C)C (omposite patterns may be formed using one or more of the follo)-5 E -(wing sub-patterns:)-.25 E F1(?\()144 630 Q F4(pattern-list).833 E F1 -(\)).833 E F0(Matches zero or one occurrence of the gi)180 642 Q -.15 -(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(*\()144 654 Q F4(pattern-list) +(wing sub-patterns:)-.25 E F1(?\()144 642 Q F4(pattern-list).833 E F1 +(\)).833 E F0(Matches zero or one occurrence of the gi)180 654 Q -.15 +(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(*\()144 666 Q F4(pattern-list) .833 E F1(\)).833 E F0(Matches zero or more occurrences of the gi)180 -666 Q -.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(+\()144 678 Q F4 +678 Q -.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(+\()144 690 Q F4 (pattern-list).833 E F1(\)).833 E F0 -(Matches one or more occurrences of the gi)180 690 Q -.15(ve)-.25 G 2.5 -(np).15 G(atterns)-2.5 E F1(@\()144 702 Q F4(pattern-list).833 E F1(\)) -.833 E F0(Matches one of the gi)180 714 Q -.15(ve)-.25 G 2.5(np).15 G -(atterns)-2.5 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(28)193.45 E -0 Cg EP +(Matches one or more occurrences of the gi)180 702 Q -.15(ve)-.25 G 2.5 +(np).15 G(atterns)-2.5 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(28) +199.835 E 0 Cg EP %%Page: 29 29 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(!\()144 84 Q/F2 10/Times-Italic@0 SF(pattern-list).833 E F1(\)).833 E -F0(Matches an)180 96 Q(ything e)-.15 E(xcept one of the gi)-.15 E -.15 +SF(@\()144 84 Q/F2 10/Times-Italic@0 SF(pattern-list).833 E F1(\)).833 E +F0(Matches one of the gi)180 96 Q -.15(ve)-.25 G 2.5(np).15 G(atterns) +-2.5 E F1(!\()144 108 Q F2(pattern-list).833 E F1(\)).833 E F0 +(Matches an)180 120 Q(ything e)-.15 E(xcept one of the gi)-.15 E -.15 (ve)-.25 G 2.5(np).15 G(atterns)-2.5 E .988 -(When matching \214lenames, the)108 112.8 R F1(dotglob)3.488 E F0 .988 +(When matching \214lenames, the)108 136.8 R F1(dotglob)3.488 E F0 .988 (shell option determines the set of \214lenames that are tested: when) -3.488 F F1(dotglob)108 124.8 Q F0 1.392 +3.488 F F1(dotglob)108 148.8 Q F0 1.392 (is enabled, the set of \214lenames includes all \214les be)3.892 F 1.392(ginning with `)-.15 F(`.)-.74 E -.74('')-.7 G 3.891(,b).74 G 1.391 (ut `)-4.091 F(`.)-.74 E 2.871 -.74('' a)-.7 H 1.391(nd `).74 F(`..)-.74 E 2.871 -.74('' m)-.7 H 1.391(ust be).74 F .298 -(matched by a pattern or sub-pattern that be)108 136.8 R .298 +(matched by a pattern or sub-pattern that be)108 160.8 R .298 (gins with a dot; when it is disabled, the set does not include an)-.15 -F(y)-.15 E .328(\214lenames be)108 148.8 R .328(ginning with `)-.15 F +F(y)-.15 E .328(\214lenames be)108 172.8 R .328(ginning with `)-.15 F (`.)-.74 E 1.808 -.74('' u)-.7 H .327 (nless the pattern or sub-pattern be).74 F .327(gins with a `)-.15 F(`.) -.74 E -.74('')-.7 G 5.327(.A).74 G 2.827(sa)-5.327 G(bo)-2.827 E -.15 (ve)-.15 G 2.827(,`).15 G(`.)-3.567 E 1.807 -.74('' o)-.7 H .327 -(nly has a).74 F(special meaning when matching \214lenames.)108 160.8 Q -.968(Complicated e)108 177.6 R .968(xtended pattern matching ag)-.15 F +(nly has a).74 F(special meaning when matching \214lenames.)108 184.8 Q +.968(Complicated e)108 201.6 R .968(xtended pattern matching ag)-.15 F .968(ainst long strings is slo)-.05 F 2.269 -.65(w, e)-.25 H .969 (specially when the patterns contain).65 F .091 -(alternations and the strings contain multiple matches.)108 189.6 R .091 +(alternations and the strings contain multiple matches.)108 213.6 R .091 (Using separate matches ag)5.091 F .09(ainst shorter strings, or us-) -.05 F(ing arrays of strings instead of a single long string, may be f) -108 201.6 Q(aster)-.1 E(.)-.55 E F1(Quote Remo)87 218.4 Q -.1(va)-.1 G -(l).1 E F0 1.112(After the preceding e)108 230.4 R 1.112 +108 225.6 Q(aster)-.1 E(.)-.55 E F1(Quote Remo)87 242.4 Q -.1(va)-.1 G +(l).1 E F0 1.112(After the preceding e)108 254.4 R 1.112 (xpansions, all unquoted occurrences of the characters)-.15 F F1(\\) 3.613 E F0(,)A F1<08>3.613 E F0 3.613(,a)C(nd)-3.613 E F1(")4.446 E F0 -1.113(that did not result)4.446 F(from one of the abo)108 242.4 Q .3 +1.113(that did not result)4.446 F(from one of the abo)108 266.4 Q .3 -.15(ve ex)-.15 H(pansions are remo).15 E -.15(ve)-.15 G(d.).15 E/F3 -10.95/Times-Bold@0 SF(REDIRECTION)72 259.2 Q F0 .545 -(Before a command is e)108 271.2 R -.15(xe)-.15 G .545 +10.95/Times-Bold@0 SF(REDIRECTION)72 283.2 Q F0 .545 +(Before a command is e)108 295.2 R -.15(xe)-.15 G .545 (cuted, its input and output may be).15 F F2 -.37(re)3.045 G(dir).37 E (ected)-.37 E F0 .545(using a special notation interpreted)3.815 F .428 -(by the shell.)108 283.2 R F2(Redir)5.428 E(ection)-.37 E F0(allo)2.928 +(by the shell.)108 307.2 R F2(Redir)5.428 E(ection)-.37 E F0(allo)2.928 E .428(ws commands' \214le handles to be duplicated, opened, closed, ma\ -de to refer to)-.25 F(dif)108 295.2 Q 1.02(ferent \214les, and can chan\ +de to refer to)-.25 F(dif)108 319.2 Q 1.02(ferent \214les, and can chan\ ge the \214les the command reads from and writes to.)-.25 F 1.019 (Redirection may also be)6.019 F .215 -(used to modify \214le handles in the current shell e)108 307.2 R -.15 +(used to modify \214le handles in the current shell e)108 331.2 R -.15 (xe)-.15 G .215(cution en).15 F 2.715(vironment. The)-.4 F(follo)2.715 E .215(wing redirection operators)-.25 F .862(may precede or appear an)108 -319.2 R .862(ywhere within a)-.15 F F2 .862(simple command)3.702 F F0 +343.2 R .862(ywhere within a)-.15 F F2 .862(simple command)3.702 F F0 .862(or may follo)4.132 F 3.362(wa)-.25 G F2(command).2 E F0 5.862(.R) -.77 G .862(edirections are)-5.862 F(processed in the order the)108 331.2 +.77 G .862(edirections are)-5.862 F(processed in the order the)108 355.2 Q 2.5(ya)-.15 G(ppear)-2.5 E 2.5(,f)-.4 G(rom left to right.)-2.5 E .771 (Each redirection that may be preceded by a \214le descriptor number ma\ -y instead be preceded by a w)108 348 R .772(ord of)-.1 F .293 -(the form {)108 360 R F2(varname)A F0 2.793(}. In)B .293 +y instead be preceded by a w)108 372 R .772(ord of)-.1 F .293 +(the form {)108 384 R F2(varname)A F0 2.793(}. In)B .293 (this case, for each redirection operator e)2.793 F .293 -(xcept >&- and <&-, the shell will allocate)-.15 F 3.179<618c>108 372 S +(xcept >&- and <&-, the shell will allocate)-.15 F 3.179<618c>108 396 S .679(le descriptor greater than or equal to 10 and assign it to)-3.179 F F2(varname)3.179 E F0 5.679(.I)C 3.179(f>)-5.679 G .679 -(&- or <&- is preceded by {)-3.179 F F2(var)A(-)-.2 E(name)108 384 Q F0 +(&- or <&- is preceded by {)-3.179 F F2(var)A(-)-.2 E(name)108 408 Q F0 .6(}, the v)B .6(alue of)-.25 F F2(varname)3.1 E F0 .599 (de\214nes the \214le descriptor to close.)3.1 F .599(If {)5.599 F F2 (varname)A F0 3.099(}i)C 3.099(ss)-3.099 G .599 -(upplied, the redirection)-3.099 F .793(persists be)108 396 R .793 +(upplied, the redirection)-3.099 F .793(persists be)108 420 R .793 (yond the scope of the command, allo)-.15 F .794 (wing the shell programmer to manage the \214le descriptor')-.25 F(s) --.55 E(lifetime manually)108 408 Q 5(.T)-.65 G(he)-5 E F1 -.1(va)2.5 G +-.55 E(lifetime manually)108 432 Q 5(.T)-.65 G(he)-5 E F1 -.1(va)2.5 G (rr).1 E(edir_close)-.18 E F0(shell option manages this beha)2.5 E(vior) --.2 E(.)-.55 E .284(In the follo)108 424.8 R .283(wing descriptions, if\ +-.2 E(.)-.55 E .284(In the follo)108 448.8 R .283(wing descriptions, if\ the \214le descriptor number is omitted, and the \214rst character of \ -the redirect-)-.25 F .512(ion operator is)108 436.8 R F1(<)3.012 E F0 +the redirect-)-.25 F .512(ion operator is)108 460.8 R F1(<)3.012 E F0 3.012(,t)C .512 (he redirection refers to the standard input \(\214le descriptor 0\).) -3.012 F .512(If the \214rst character of the)5.512 F -(redirection operator is)108 448.8 Q F1(>)2.5 E F0 2.5(,t)C +(redirection operator is)108 472.8 Q F1(>)2.5 E F0 2.5(,t)C (he redirection refers to the standard output \(\214le descriptor 1\).) --2.5 E .825(The w)108 465.6 R .825(ord follo)-.1 F .824 +-2.5 E .825(The w)108 489.6 R .825(ord follo)-.1 F .824 (wing the redirection operator in the follo)-.25 F .824 (wing descriptions, unless otherwise noted, is sub-)-.25 F .462 -(jected to brace e)108 477.6 R .462(xpansion, tilde e)-.15 F .463 +(jected to brace e)108 501.6 R .462(xpansion, tilde e)-.15 F .463 (xpansion, parameter and v)-.15 F .463(ariable e)-.25 F .463 -(xpansion, command substitution, arith-)-.15 F .867(metic e)108 489.6 R +(xpansion, command substitution, arith-)-.15 F .867(metic e)108 513.6 R .867(xpansion, quote remo)-.15 F -.25(va)-.15 G .867(l, pathname e).25 F .867(xpansion, and w)-.15 F .867(ord splitting.)-.1 F .867(If it e)5.867 -F .866(xpands to more than one)-.15 F -.1(wo)108 501.6 S(rd,).1 E F1 +F .866(xpands to more than one)-.15 F -.1(wo)108 525.6 S(rd,).1 E F1 (bash)2.5 E F0(reports an error)2.5 E(.)-.55 E -(Note that the order of redirections is signi\214cant.)108 518.4 Q -.15 -(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 535.2 Q F1(>)2.5 +(Note that the order of redirections is signi\214cant.)108 542.4 Q -.15 +(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 559.2 Q F1(>)2.5 E F0(dirlist 2)2.5 E F1(>&)A F0(1)A -(directs both standard output and standard error to the \214le)108 552 Q -F2(dirlist)2.85 E F0 2.5(,w).68 G(hile the command)-2.5 E(ls 2)144 568.8 +(directs both standard output and standard error to the \214le)108 576 Q +F2(dirlist)2.85 E F0 2.5(,w).68 G(hile the command)-2.5 E(ls 2)144 592.8 Q F1(>&)A F0(1)A F1(>)2.5 E F0(dirlist)2.5 E .505 -(directs only the standard output to \214le)108 585.6 R F2(dirlist)3.355 +(directs only the standard output to \214le)108 609.6 R F2(dirlist)3.355 E F0 3.005(,b).68 G .505(ecause the standard error w)-3.005 F .505 (as duplicated from the standard)-.1 F -(output before the standard output w)108 597.6 Q(as redirected to)-.1 E -F2(dirlist)2.85 E F0(.).68 E F1(Bash)108 614.4 Q F0 .599(handles se) +(output before the standard output w)108 621.6 Q(as redirected to)-.1 E +F2(dirlist)2.85 E F0(.).68 E F1(Bash)108 638.4 Q F0 .599(handles se) 3.099 F -.15(ve)-.25 G .599(ral \214lenames specially when the).15 F 3.099(ya)-.15 G .598(re used in redirections, as described in the follo) --3.099 F(wing)-.25 E 3.477(table. If)108 626.4 R .977 +-3.099 F(wing)-.25 E 3.477(table. If)108 650.4 R .977 (the operating system on which)3.477 F F1(bash)3.478 E F0 .978 (is running pro)3.478 F .978 (vides these special \214les, bash will use them;)-.15 F -(otherwise it will emulate them internally with the beha)108 638.4 Q -(vior described belo)-.2 E -.65(w.)-.25 G F1(/de)144 655.2 Q(v/fd/)-.15 -E F2(fd)A F0(If)180 667.2 Q F2(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E +(otherwise it will emulate them internally with the beha)108 662.4 Q +(vior described belo)-.2 E -.65(w.)-.25 G F1(/de)144 679.2 Q(v/fd/)-.15 +E F2(fd)A F0(If)180 691.2 Q F2(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E (ger)-.15 E 2.5<2c8c>-.4 G(le descriptor)-2.5 E F2(fd)2.5 E F0 -(is duplicated.)2.5 E F1(/de)144 679.2 Q(v/stdin)-.15 E F0 -(File descriptor 0 is duplicated.)180 691.2 Q F1(/de)144 703.2 Q -(v/stdout)-.15 E F0(File descriptor 1 is duplicated.)180 715.2 Q -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(29)193.45 E 0 Cg EP +(is duplicated.)2.5 E F1(/de)144 703.2 Q(v/stdin)-.15 E F0 +(File descriptor 0 is duplicated.)180 715.2 Q(GNU Bash 5.2)72 768 Q +(2022 June 3)150.675 E(29)199.835 E 0 Cg EP %%Page: 30 30 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(/de)144 84 Q(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180 -96 Q F1(/de)144 108 Q(v/tcp/)-.15 E/F2 10/Times-Italic@0 SF(host)A F1(/) -A F2(port)A F0(If)180 120 Q F2(host)2.997 E F0 .497(is a v)2.997 F .497 +SF(/de)144 84 Q(v/stdout)-.15 E F0(File descriptor 1 is duplicated.)180 +96 Q F1(/de)144 108 Q(v/stderr)-.15 E F0 +(File descriptor 2 is duplicated.)180 120 Q F1(/de)144 132 Q(v/tcp/)-.15 +E/F2 10/Times-Italic@0 SF(host)A F1(/)A F2(port)A F0(If)180 144 Q F2 +(host)2.997 E F0 .497(is a v)2.997 F .497 (alid hostname or Internet address, and)-.25 F F2(port)2.996 E F0 .496 (is an inte)2.996 F .496(ger port number or ser)-.15 F(-)-.2 E -(vice name,)180 132 Q F1(bash)2.5 E F0 +(vice name,)180 156 Q F1(bash)2.5 E F0 (attempts to open the corresponding TCP sock)2.5 E(et.)-.1 E F1(/de)144 -144 Q(v/udp/)-.15 E F2(host)A F1(/)A F2(port)A F0(If)180 156 Q F2(host) +168 Q(v/udp/)-.15 E F2(host)A F1(/)A F2(port)A F0(If)180 180 Q F2(host) 2.996 E F0 .496(is a v)2.996 F .496 (alid hostname or Internet address, and)-.25 F F2(port)2.997 E F0 .497 (is an inte)2.997 F .497(ger port number or ser)-.15 F(-)-.2 E -(vice name,)180 168 Q F1(bash)2.5 E F0 +(vice name,)180 192 Q F1(bash)2.5 E F0 (attempts to open the corresponding UDP sock)2.5 E(et.)-.1 E 2.5(Af)108 -184.8 S(ailure to open or create a \214le causes the redirection to f) +208.8 S(ailure to open or create a \214le causes the redirection to f) -2.6 E(ail.)-.1 E .046(Redirections using \214le descriptors greater th\ -an 9 should be used with care, as the)108 201.6 R 2.545(ym)-.15 G .045 +an 9 should be used with care, as the)108 225.6 R 2.545(ym)-.15 G .045 (ay con\215ict with \214le de-)-2.545 F -(scriptors the shell uses internally)108 213.6 Q(.)-.65 E F1(Redir)87 -230.4 Q(ecting Input)-.18 E F0 .391 +(scriptors the shell uses internally)108 237.6 Q(.)-.65 E F1(Redir)87 +254.4 Q(ecting Input)-.18 E F0 .391 (Redirection of input causes the \214le whose name results from the e) -108 242.4 R .391(xpansion of)-.15 F F2(wor)3.231 E(d)-.37 E F0 .391 -(to be opened for read-)3.661 F(ing on \214le descriptor)108 254.4 Q F2 +108 266.4 R .391(xpansion of)-.15 F F2(wor)3.231 E(d)-.37 E F0 .391 +(to be opened for read-)3.661 F(ing on \214le descriptor)108 278.4 Q F2 (n)2.86 E F0 2.5(,o).24 G 2.5(rt)-2.5 G (he standard input \(\214le descriptor 0\) if)-2.5 E F2(n)2.86 E F0 (is not speci\214ed.)2.74 E -(The general format for redirecting input is:)108 271.2 Q([)144 288 Q F2 -(n)A F0(])A F1(<)A F2(wor)A(d)-.37 E F1(Redir)87 304.8 Q(ecting Output) +(The general format for redirecting input is:)108 295.2 Q([)144 312 Q F2 +(n)A F0(])A F1(<)A F2(wor)A(d)-.37 E F1(Redir)87 328.8 Q(ecting Output) -.18 E F0 .175 (Redirection of output causes the \214le whose name results from the e) -108 316.8 R .174(xpansion of)-.15 F F2(wor)3.014 E(d)-.37 E F0 .174 -(to be opened for writ-)3.444 F .083(ing on \214le descriptor)108 328.8 +108 340.8 R .174(xpansion of)-.15 F F2(wor)3.014 E(d)-.37 E F0 .174 +(to be opened for writ-)3.444 F .083(ing on \214le descriptor)108 352.8 R F2(n)2.943 E F0 2.583(,o).24 G 2.583(rt)-2.583 G .083 (he standard output \(\214le descriptor 1\) if)-2.583 F F2(n)2.943 E F0 .083(is not speci\214ed.)2.823 F .084(If the \214le does not e)5.083 F -(x-)-.15 E(ist it is created; if it does e)108 340.8 Q +(x-)-.15 E(ist it is created; if it does e)108 364.8 Q (xist it is truncated to zero size.)-.15 E -(The general format for redirecting output is:)108 357.6 Q([)144 374.4 Q +(The general format for redirecting output is:)108 381.6 Q([)144 398.4 Q F2(n)A F0(])A F1(>)A F2(wor)A(d)-.37 E F0 .155 -(If the redirection operator is)108 391.2 R F1(>)2.655 E F0 2.655(,a)C +(If the redirection operator is)108 415.2 R F1(>)2.655 E F0 2.655(,a)C .155(nd the)-2.655 F F1(noclob)2.655 E(ber)-.1 E F0 .154(option to the) 2.654 F F1(set)2.654 E F0 -.2(bu)2.654 G .154 -(iltin has been enabled, the redirection).2 F .657(will f)108 403.2 R +(iltin has been enabled, the redirection).2 F .657(will f)108 427.2 R .657(ail if the \214le whose name results from the e)-.1 F .658 (xpansion of)-.15 F F2(wor)3.158 E(d)-.37 E F0 -.15(ex)3.158 G .658 (ists and is a re).15 F .658(gular \214le.)-.15 F .658(If the redi-) -5.658 F .409(rection operator is)108 415.2 R F1(>|)2.909 E F0 2.909(,o)C +5.658 F .409(rection operator is)108 439.2 R F1(>|)2.909 E F0 2.909(,o)C 2.909(rt)-2.909 G .409(he redirection operator is)-2.909 F F1(>)2.909 E F0 .409(and the)2.909 F F1(noclob)2.909 E(ber)-.1 E F0 .409 (option to the)2.909 F F1(set)2.909 E F0 -.2(bu)2.908 G .408 (iltin command).2 F(is not enabled, the redirection is attempted e)108 -427.2 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214le named by) +451.2 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214le named by) -2.5 E F2(wor)2.5 E(d)-.37 E F0 -.15(ex)2.5 G(ists.).15 E F1 -.25(Ap)87 -444 S(pending Redir).25 E(ected Output)-.18 E F0 .641 -(Redirection of output in this f)108 456 R .642 +468 S(pending Redir).25 E(ected Output)-.18 E F0 .641 +(Redirection of output in this f)108 480 R .642 (ashion causes the \214le whose name results from the e)-.1 F .642 (xpansion of)-.15 F F2(wor)3.482 E(d)-.37 E F0 .642(to be)3.912 F .455 -(opened for appending on \214le descriptor)108 468 R F2(n)3.315 E F0 +(opened for appending on \214le descriptor)108 492 R F2(n)3.315 E F0 2.955(,o).24 G 2.955(rt)-2.955 G .455 (he standard output \(\214le descriptor 1\) if)-2.955 F F2(n)3.314 E F0 .454(is not speci\214ed.)3.194 F(If)5.454 E(the \214le does not e)108 -480 Q(xist it is created.)-.15 E -(The general format for appending output is:)108 496.8 Q([)144 513.6 Q -F2(n)A F0(])A F1(>>)A F2(wor)A(d)-.37 E F1(Redir)87 530.4 Q +504 Q(xist it is created.)-.15 E +(The general format for appending output is:)108 520.8 Q([)144 537.6 Q +F2(n)A F0(])A F1(>>)A F2(wor)A(d)-.37 E F1(Redir)87 554.4 Q (ecting Standard Output and Standard Err)-.18 E(or)-.18 E F0 .248 -(This construct allo)108 542.4 R .249(ws both the standard output \(\ +(This construct allo)108 566.4 R .249(ws both the standard output \(\ \214le descriptor 1\) and the standard error output \(\214le descrip-) -.25 F(tor 2\) to be redirected to the \214le whose name is the e)108 -554.4 Q(xpansion of)-.15 E F2(wor)2.84 E(d)-.37 E F0(.).77 E -(There are tw)108 571.2 Q 2.5(of)-.1 G +578.4 Q(xpansion of)-.15 E F2(wor)2.84 E(d)-.37 E F0(.).77 E +(There are tw)108 595.2 Q 2.5(of)-.1 G (ormats for redirecting standard output and standard error:)-2.5 E F1 -(&>)144 588 Q F2(wor)A(d)-.37 E F0(and)108 600 Q F1(>&)144 612 Q F2(wor) -A(d)-.37 E F0(Of the tw)108 628.8 Q 2.5(of)-.1 G +(&>)144 612 Q F2(wor)A(d)-.37 E F0(and)108 624 Q F1(>&)144 636 Q F2(wor) +A(d)-.37 E F0(Of the tw)108 652.8 Q 2.5(of)-.1 G (orms, the \214rst is preferred.)-2.5 E(This is semantically equi)5 E --.25(va)-.25 G(lent to).25 E F1(>)144 645.6 Q F2(wor)A(d)-.37 E F0(2)2.5 -E F1(>&)A F0(1)A .115(When using the second form,)108 662.4 R F2(wor) +-.25(va)-.25 G(lent to).25 E F1(>)144 669.6 Q F2(wor)A(d)-.37 E F0(2)2.5 +E F1(>&)A F0(1)A .115(When using the second form,)108 686.4 R F2(wor) 2.614 E(d)-.37 E F0 .114(may not e)2.614 F .114(xpand to a number or) -.15 F F12.614 E F0 5.114(.I)C 2.614(fi)-5.114 G 2.614(td)-2.614 G -.114(oes, other redirection operators)-2.614 F(apply \(see)108 674.4 Q +.114(oes, other redirection operators)-2.614 F(apply \(see)108 698.4 Q F1(Duplicating File Descriptors)2.5 E F0(belo)2.5 E -(w\) for compatibility reasons.)-.25 E F1 -.25(Ap)87 691.2 S -(pending Standard Output and Standard Err).25 E(or)-.18 E F0 .248 -(This construct allo)108 703.2 R .249(ws both the standard output \(\ -\214le descriptor 1\) and the standard error output \(\214le descrip-) --.25 F(tor 2\) to be appended to the \214le whose name is the e)108 -715.2 Q(xpansion of)-.15 E F2(wor)2.84 E(d)-.37 E F0(.).77 E -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(30)193.45 E 0 Cg EP +(w\) for compatibility reasons.)-.25 E(GNU Bash 5.2)72 768 Q +(2022 June 3)150.675 E(30)199.835 E 0 Cg EP %%Page: 31 31 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(The format for appending standard output and standard error is:)108 84 -Q/F1 10/Times-Bold@0 SF(&>>)144 100.8 Q/F2 10/Times-Italic@0 SF(wor)A(d) --.37 E F0(This is semantically equi)108 117.6 Q -.25(va)-.25 G(lent to) -.25 E F1(>>)144 134.4 Q F2(wor)A(d)-.37 E F0(2)2.5 E F1(>&)A F0(1)A -(\(see)108 151.2 Q F1(Duplicating File Descriptors)2.5 E F0(belo)2.5 E -(w\).)-.25 E F1(Her)87 168 Q 2.5(eD)-.18 G(ocuments)-2.5 E F0 .33(This \ -type of redirection instructs the shell to read input from the current \ -source until a line containing only)108 180 R F2(delimiter)108.35 192 Q -F0 .614(\(with no trailing blanks\) is seen.)3.844 F .615 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF -.25(Ap)87 84 S(pending Standard Output and Standard Err).25 E(or) +-.18 E F0 .248(This construct allo)108 96 R .249(ws both the standard o\ +utput \(\214le descriptor 1\) and the standard error output \(\214le de\ +scrip-)-.25 F(tor 2\) to be appended to the \214le whose name is the e) +108 108 Q(xpansion of)-.15 E/F2 10/Times-Italic@0 SF(wor)2.84 E(d)-.37 E +F0(.).77 E +(The format for appending standard output and standard error is:)108 +124.8 Q F1(&>>)144 141.6 Q F2(wor)A(d)-.37 E F0 +(This is semantically equi)108 158.4 Q -.25(va)-.25 G(lent to).25 E F1 +(>>)144 175.2 Q F2(wor)A(d)-.37 E F0(2)2.5 E F1(>&)A F0(1)A(\(see)108 +192 Q F1(Duplicating File Descriptors)2.5 E F0(belo)2.5 E(w\).)-.25 E F1 +(Her)87 208.8 Q 2.5(eD)-.18 G(ocuments)-2.5 E F0 .33(This type of redir\ +ection instructs the shell to read input from the current source until \ +a line containing only)108 220.8 R F2(delimiter)108.35 232.8 Q F0 .614 +(\(with no trailing blanks\) is seen.)3.844 F .615 (All of the lines read up to that point are then used as the stan-)5.615 -F(dard input \(or \214le descriptor)108 204 Q F2(n)2.5 E F0(if)2.5 E F2 -(n)2.5 E F0(is speci\214ed\) for a command.)2.5 E -(The format of here-documents is:)108 220.8 Q([)144 237.6 Q F2(n)A F0(]) -A F1(<<)A F0([)A F1A F0(])A F2(wor)A(d)-.37 E(her)164 249.6 Q -(e-document)-.37 E(delimiter)144 261.6 Q F0 .302(No parameter and v)108 -278.4 R .302(ariable e)-.25 F .302 +F(dard input \(or \214le descriptor)108 244.8 Q F2(n)2.5 E F0(if)2.5 E +F2(n)2.5 E F0(is speci\214ed\) for a command.)2.5 E +(The format of here-documents is:)108 261.6 Q([)144 278.4 Q F2(n)A F0(]) +A F1(<<)A F0([)A F1A F0(])A F2(wor)A(d)-.37 E(her)164 290.4 Q +(e-document)-.37 E(delimiter)144 302.4 Q F0 .302(No parameter and v)108 +319.2 R .302(ariable e)-.25 F .302 (xpansion, command substitution, arithmetic e)-.15 F .301 (xpansion, or pathname e)-.15 F(xpansion)-.15 E .381(is performed on)108 -290.4 R F2(wor)3.221 E(d)-.37 E F0 5.381(.I).77 G 2.881(fa)-5.381 G .681 +331.2 R F2(wor)3.221 E(d)-.37 E F0 5.381(.I).77 G 2.881(fa)-5.381 G .681 -.15(ny p)-2.881 H .381(art of).15 F F2(wor)3.221 E(d)-.37 E F0 .381 (is quoted, the)3.651 F F2(delimiter)3.231 E F0 .381 (is the result of quote remo)3.611 F -.25(va)-.15 G 2.881(lo).25 G(n) -2.881 E F2(wor)3.221 E(d)-.37 E F0(,).77 E .774 -(and the lines in the here-document are not e)108 302.4 R 3.274 +(and the lines in the here-document are not e)108 343.2 R 3.274 (xpanded. If)-.15 F F2(wor)3.273 E(d)-.37 E F0 .773 (is unquoted, all lines of the here-document)3.273 F 1.194 -(are subjected to parameter e)108 314.4 R 1.194 +(are subjected to parameter e)108 355.2 R 1.194 (xpansion, command substitution, and arithmetic e)-.15 F 1.195 -(xpansion, the character se-)-.15 F(quence)108 326.4 Q F1(\\) +(xpansion, the character se-)-.15 F(quence)108 367.2 Q F1(\\) 2.5 E F0(is ignored, and)2.5 E F1(\\)2.5 E F0 (must be used to quote the characters)2.5 E F1(\\)2.5 E F0(,)A F1($)2.5 E F0 2.5(,a)C(nd)-2.5 E F1<92>2.5 E F0(.)A .602 -(If the redirection operator is)108 343.2 R F1(<<\255)3.101 E F0 3.101 -(,t)C .601(hen all leading tab characters are stripped from input lines\ - and the line)-3.101 F(containing)108 355.2 Q F2(delimiter)2.85 E F0 5 -(.T).73 G(his allo)-5 E +(If the redirection operator is)108 384 R F1(<<\255)3.101 E F0 3.101(,t) +C .601(hen all leading tab characters are stripped from input lines and\ + the line)-3.101 F(containing)108 396 Q F2(delimiter)2.85 E F0 5(.T).73 +G(his allo)-5 E (ws here-documents within shell scripts to be indented in a natural f) --.25 E(ashion.)-.1 E F1(Her)87 372 Q 2.5(eS)-.18 G(trings)-2.5 E F0 2.5 -(Av)108 384 S(ariant of here documents, the format is:)-2.75 E([)144 -400.8 Q F2(n)A F0(])A F1(<<<)A F2(wor)A(d)-.37 E F0(The)108 417.6 Q F2 -(wor)3.291 E(d)-.37 E F0(under)3.291 E .792(goes tilde e)-.18 F .792 +-.25 E(ashion.)-.1 E F1(Her)87 412.8 Q 2.5(eS)-.18 G(trings)-2.5 E F0 +2.5(Av)108 424.8 S(ariant of here documents, the format is:)-2.75 E([) +144 441.6 Q F2(n)A F0(])A F1(<<<)A F2(wor)A(d)-.37 E F0(The)108 458.4 Q +F2(wor)3.291 E(d)-.37 E F0(under)3.291 E .792(goes tilde e)-.18 F .792 (xpansion, parameter and v)-.15 F .792(ariable e)-.25 F .792 -(xpansion, command substitution, arithmetic)-.15 F -.15(ex)108 429.6 S +(xpansion, command substitution, arithmetic)-.15 F -.15(ex)108 470.4 S 1.188(pansion, and quote remo).15 F -.25(va)-.15 G 3.687(l. P).25 F 1.187(athname e)-.15 F 1.187(xpansion and w)-.15 F 1.187 (ord splitting are not performed.)-.1 F 1.187(The result is)6.187 F .374 -(supplied as a single string, with a ne)108 441.6 R .375(wline appended\ +(supplied as a single string, with a ne)108 482.4 R .375(wline appended\ , to the command on its standard input \(or \214le descrip-)-.25 F(tor) -108 453.6 Q F2(n)2.5 E F0(if)2.5 E F2(n)2.5 E F0(is speci\214ed\).)2.5 E -F1(Duplicating File Descriptors)87 470.4 Q F0(The redirection operator) -108 482.4 Q([)144 499.2 Q F2(n)A F0(])A F1(<&)A F2(wor)A(d)-.37 E F0 -.127(is used to duplicate input \214le descriptors.)108 516 R(If)5.127 E +108 494.4 Q F2(n)2.5 E F0(if)2.5 E F2(n)2.5 E F0(is speci\214ed\).)2.5 E +F1(Duplicating File Descriptors)87 511.2 Q F0(The redirection operator) +108 523.2 Q([)144 540 Q F2(n)A F0(])A F1(<&)A F2(wor)A(d)-.37 E F0 .127 +(is used to duplicate input \214le descriptors.)108 556.8 R(If)5.127 E F2(wor)2.967 E(d)-.37 E F0 -.15(ex)3.397 G .126 (pands to one or more digits, the \214le descriptor denoted).15 F(by)108 -528 Q F2(n)3.317 E F0 .457(is made to be a cop)3.197 F 2.957(yo)-.1 G +568.8 Q F2(n)3.317 E F0 .457(is made to be a cop)3.197 F 2.957(yo)-.1 G 2.957(ft)-2.957 G .457(hat \214le descriptor)-2.957 F 5.457(.I)-.55 G 2.957(ft)-5.457 G .457(he digits in)-2.957 F F2(wor)3.298 E(d)-.37 E F0 .458(do not specify a \214le descriptor open)3.728 F .15 -(for input, a redirection error occurs.)108 540 R(If)5.15 E F2(wor)2.99 -E(d)-.37 E F0 -.25(eva)3.42 G .15(luates to).25 F F12.65 E F0 2.649 -<2c8c>C .149(le descriptor)-2.649 F F2(n)3.009 E F0 .149(is closed.) -2.889 F(If)5.149 E F2(n)3.009 E F0 .149(is not speci\214ed,)2.889 F -(the standard input \(\214le descriptor 0\) is used.)108 552 Q -(The operator)108 568.8 Q([)144 585.6 Q F2(n)A F0(])A F1(>&)A F2(wor)A +(for input, a redirection error occurs.)108 580.8 R(If)5.15 E F2(wor) +2.99 E(d)-.37 E F0 -.25(eva)3.42 G .15(luates to).25 F F12.65 E F0 +2.649<2c8c>C .149(le descriptor)-2.649 F F2(n)3.009 E F0 .149 +(is closed.)2.889 F(If)5.149 E F2(n)3.009 E F0 .149(is not speci\214ed,) +2.889 F(the standard input \(\214le descriptor 0\) is used.)108 592.8 Q +(The operator)108 609.6 Q([)144 626.4 Q F2(n)A F0(])A F1(>&)A F2(wor)A (d)-.37 E F0 .443 -(is used similarly to duplicate output \214le descriptors.)108 602.4 R +(is used similarly to duplicate output \214le descriptors.)108 643.2 R (If)5.443 E F2(n)3.304 E F0 .444 (is not speci\214ed, the standard output \(\214le descrip-)3.184 F .566 -(tor 1\) is used.)108 614.4 R .566(If the digits in)5.566 F F2(wor)3.406 +(tor 1\) is used.)108 655.2 R .566(If the digits in)5.566 F F2(wor)3.406 E(d)-.37 E F0 .566(do not specify a \214le descriptor open for output, \ -a redirection error oc-)3.836 F 3.203(curs. If)108 626.4 R F2(wor)3.543 +a redirection error oc-)3.836 F 3.203(curs. If)108 667.2 R F2(wor)3.543 E(d)-.37 E F0 -.25(eva)3.973 G .703(luates to).25 F F13.203 E F0 3.203<2c8c>C .703(le descriptor)-3.203 F F2(n)3.563 E F0 .703 (is closed.)3.443 F .703(As a special case, if)5.703 F F2(n)3.204 E F0 .704(is omitted, and)3.204 F F2(wor)3.204 E(d)-.37 E F0(does)3.204 E -.966(not e)108 638.4 R .966(xpand to one or more digits or)-.15 F F1 +.966(not e)108 679.2 R .966(xpand to one or more digits or)-.15 F F1 3.466 E F0 3.466(,t)C .965 (he standard output and standard error are redirected as described) --3.466 F(pre)108 650.4 Q(viously)-.25 E(.)-.65 E F1(Mo)87 667.2 Q -(ving File Descriptors)-.1 E F0(The redirection operator)108 679.2 Q([) -144 696 Q F2(n)A F0(])A F1(<&)A F2(digit)A F1A F0(mo)108 712.8 Q --.15(ve)-.15 G 3.017(st).15 G .517(he \214le descriptor)-3.017 F F2 -(digit)3.017 E F0 .517(to \214le descriptor)3.017 F F2(n)3.377 E F0 -3.017(,o).24 G 3.017(rt)-3.017 G .518 -(he standard input \(\214le descriptor 0\) if)-3.017 F F2(n)3.018 E F0 -.518(is not speci-)3.018 F(\214ed.)108 724.8 Q F2(digit)5 E F0 -(is closed after being duplicated to)2.5 E F2(n)2.5 E F0(.)A -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(31)193.45 E 0 Cg EP +-3.466 F(pre)108 691.2 Q(viously)-.25 E(.)-.65 E(GNU Bash 5.2)72 768 Q +(2022 June 3)150.675 E(31)199.835 E 0 Cg EP %%Page: 32 32 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(Similarly)108 84 Q -2.5(,t)-.65 G(he redirection operator)-2.5 E([)144 100.8 Q/F1 10 -/Times-Italic@0 SF(n)A F0(])A/F2 10/Times-Bold@0 SF(>&)A F1(digit)A F2 -A F0(mo)108 117.6 Q -.15(ve)-.15 G 2.768(st).15 G .268 -(he \214le descriptor)-2.768 F F1(digit)2.768 E F0 .268 -(to \214le descriptor)2.768 F F1(n)3.128 E F0 2.768(,o).24 G 2.768(rt) --2.768 G .267(he standard output \(\214le descriptor 1\) if)-2.768 F F1 -(n)2.767 E F0 .267(is not speci-)2.767 F(\214ed.)108 129.6 Q F2 -(Opening File Descriptors f)87 146.4 Q(or Reading and Writing)-.25 E F0 -(The redirection operator)108 158.4 Q([)144 175.2 Q F1(n)A F0(])A F2(<>) -A F1(wor)A(d)-.37 E F0 .518(causes the \214le whose name is the e)108 -192 R .518(xpansion of)-.15 F F1(wor)3.358 E(d)-.37 E F0 .518 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(Mo)87 84 Q(ving File Descriptors)-.1 E F0(The redirection operator) +108 96 Q([)144 112.8 Q/F2 10/Times-Italic@0 SF(n)A F0(])A F1(<&)A F2 +(digit)A F1A F0(mo)108 129.6 Q -.15(ve)-.15 G 3.017(st).15 G .517 +(he \214le descriptor)-3.017 F F2(digit)3.017 E F0 .517 +(to \214le descriptor)3.017 F F2(n)3.377 E F0 3.017(,o).24 G 3.017(rt) +-3.017 G .518(he standard input \(\214le descriptor 0\) if)-3.017 F F2 +(n)3.018 E F0 .518(is not speci-)3.018 F(\214ed.)108 141.6 Q F2(digit)5 +E F0(is closed after being duplicated to)2.5 E F2(n)2.5 E F0(.)A +(Similarly)108 158.4 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E([) +144 175.2 Q F2(n)A F0(])A F1(>&)A F2(digit)A F1A F0(mo)108 192 Q +-.15(ve)-.15 G 2.768(st).15 G .268(he \214le descriptor)-2.768 F F2 +(digit)2.768 E F0 .268(to \214le descriptor)2.768 F F2(n)3.128 E F0 +2.768(,o).24 G 2.768(rt)-2.768 G .267 +(he standard output \(\214le descriptor 1\) if)-2.768 F F2(n)2.767 E F0 +.267(is not speci-)2.767 F(\214ed.)108 204 Q F1 +(Opening File Descriptors f)87 220.8 Q(or Reading and Writing)-.25 E F0 +(The redirection operator)108 232.8 Q([)144 249.6 Q F2(n)A F0(])A F1(<>) +A F2(wor)A(d)-.37 E F0 .518(causes the \214le whose name is the e)108 +266.4 R .518(xpansion of)-.15 F F2(wor)3.358 E(d)-.37 E F0 .518 (to be opened for both reading and writing on \214le de-)3.788 F -(scriptor)108 204 Q F1(n)2.86 E F0 2.5(,o).24 G 2.5(ro)-2.5 G 2.5<6e8c> --2.5 G(le descriptor 0 if)-2.5 E F1(n)2.86 E F0(is not speci\214ed.)2.74 -E(If the \214le does not e)5 E(xist, it is created.)-.15 E/F3 10.95 -/Times-Bold@0 SF(ALIASES)72 220.8 Q F1(Aliases)108 232.8 Q F0(allo)3.174 -E 3.174(was)-.25 G .674(tring to be substituted for a w)-3.174 F .674 +(scriptor)108 278.4 Q F2(n)2.86 E F0 2.5(,o).24 G 2.5(ro)-2.5 G 2.5 +<6e8c>-2.5 G(le descriptor 0 if)-2.5 E F2(n)2.86 E F0 +(is not speci\214ed.)2.74 E(If the \214le does not e)5 E +(xist, it is created.)-.15 E/F3 10.95/Times-Bold@0 SF(ALIASES)72 295.2 Q +F2(Aliases)108 307.2 Q F0(allo)3.174 E 3.174(was)-.25 G .674 +(tring to be substituted for a w)-3.174 F .674 (ord when it is used as the \214rst w)-.1 F .673 (ord of a simple command.)-.1 F .394(The shell maintains a list of alia\ -ses that may be set and unset with the)108 244.8 R F2(alias)2.894 E F0 -(and)2.894 E F2(unalias)2.894 E F0 -.2(bu)2.894 G .394(iltin commands).2 -F(\(see)108 256.8 Q/F4 9/Times-Bold@0 SF 1.98(SHELL B)4.48 F(UIL)-.09 E +ses that may be set and unset with the)108 319.2 R F1(alias)2.894 E F0 +(and)2.894 E F1(unalias)2.894 E F0 -.2(bu)2.894 G .394(iltin commands).2 +F(\(see)108 331.2 Q/F4 9/Times-Bold@0 SF 1.98(SHELL B)4.48 F(UIL)-.09 E 1.98(TIN COMMANDS)-.828 F F0(belo)4.23 E 4.48(w\). The)-.25 F 1.98 (\214rst w)4.48 F 1.979(ord of each simple command, if unquoted, is)-.1 -F(check)108 268.8 Q .472(ed to see if it has an alias.)-.1 F .472 +F(check)108 343.2 Q .472(ed to see if it has an alias.)-.1 F .472 (If so, that w)5.472 F .473(ord is replaced by the te)-.1 F .473 -(xt of the alias.)-.15 F .473(The characters)5.473 F F2(/)2.973 E F0(,)A -F2($)2.973 E F0(,)A F2<92>2.973 E F0(,)A(and)108 280.8 Q F2(=)3.612 E F0 +(xt of the alias.)-.15 F .473(The characters)5.473 F F1(/)2.973 E F0(,)A +F1($)2.973 E F0(,)A F1<92>2.973 E F0(,)A(and)108 355.2 Q F1(=)3.612 E F0 1.112(and an)3.612 F 3.612(yo)-.15 G 3.612(ft)-3.612 G 1.112(he shell) --3.612 F F1(metac)3.612 E(har)-.15 E(acter)-.15 E(s)-.1 E F0 1.112 +-3.612 F F2(metac)3.612 E(har)-.15 E(acter)-.15 E(s)-.1 E F0 1.112 (or quoting characters listed abo)3.612 F 1.411 -.15(ve m)-.15 H 1.111 -(ay not appear in an alias).15 F 3.619(name. The)108 292.8 R 1.119 +(ay not appear in an alias).15 F 3.619(name. The)108 367.2 R 1.119 (replacement te)3.619 F 1.119(xt may contain an)-.15 F 3.619(yv)-.15 G 1.119(alid shell input, including shell metacharacters.)-3.869 F 1.12 -(The \214rst)6.12 F -.1(wo)108 304.8 S .514(rd of the replacement te).1 +(The \214rst)6.12 F -.1(wo)108 379.2 S .514(rd of the replacement te).1 F .514(xt is tested for aliases, b)-.15 F .514(ut a w)-.2 F .513 (ord that is identical to an alias being e)-.1 F .513(xpanded is)-.15 F -.295(not e)108 316.8 R .295(xpanded a second time.)-.15 F .296 -(This means that one may alias)5.295 F F2(ls)2.796 E F0(to)2.796 E F2 -.296(ls \255F)2.796 F F0 2.796(,f)C .296(or instance, and)-2.796 F F2 -(bash)2.796 E F0 .296(does not try)2.796 F .529(to recursi)108 328.8 R +.295(not e)108 391.2 R .295(xpanded a second time.)-.15 F .296 +(This means that one may alias)5.295 F F1(ls)2.796 E F0(to)2.796 E F1 +.296(ls \255F)2.796 F F0 2.796(,f)C .296(or instance, and)-2.796 F F1 +(bash)2.796 E F0 .296(does not try)2.796 F .529(to recursi)108 403.2 R -.15(ve)-.25 G .529(ly e).15 F .529(xpand the replacement te)-.15 F 3.029(xt. If)-.15 F .528(the last character of the alias v)3.029 F .528 -(alue is a)-.25 F F1(blank)3.298 E F0 3.028(,t).67 G .528(hen the ne) --3.028 F(xt)-.15 E(command w)108 340.8 Q(ord follo)-.1 E +(alue is a)-.25 F F2(blank)3.298 E F0 3.028(,t).67 G .528(hen the ne) +-3.028 F(xt)-.15 E(command w)108 415.2 Q(ord follo)-.1 E (wing the alias is also check)-.25 E(ed for alias e)-.1 E(xpansion.)-.15 -E(Aliases are created and listed with the)108 357.6 Q F2(alias)2.5 E F0 -(command, and remo)2.5 E -.15(ve)-.15 G 2.5(dw).15 G(ith the)-2.5 E F2 +E(Aliases are created and listed with the)108 432 Q F1(alias)2.5 E F0 +(command, and remo)2.5 E -.15(ve)-.15 G 2.5(dw).15 G(ith the)-2.5 E F1 (unalias)2.5 E F0(command.)2.5 E .741 -(There is no mechanism for using ar)108 374.4 R .741 +(There is no mechanism for using ar)108 448.8 R .741 (guments in the replacement te)-.18 F 3.241(xt. If)-.15 F(ar)3.241 E -.742(guments are needed, use a shell)-.18 F(function \(see)108 386.4 Q +.742(guments are needed, use a shell)-.18 F(function \(see)108 460.8 Q F4(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E .283(Aliases are not e)108 -403.2 R .283(xpanded when the shell is not interacti)-.15 F -.15(ve)-.25 -G 2.782(,u).15 G .282(nless the)-2.782 F F2(expand_aliases)2.782 E F0 -.282(shell option is set us-)2.782 F(ing)108 415.2 Q F2(shopt)2.5 E F0 -(\(see the description of)2.5 E F2(shopt)2.5 E F0(under)2.5 E F4 +477.6 R .283(xpanded when the shell is not interacti)-.15 F -.15(ve)-.25 +G 2.782(,u).15 G .282(nless the)-2.782 F F1(expand_aliases)2.782 E F0 +.282(shell option is set us-)2.782 F(ing)108 489.6 Q F1(shopt)2.5 E F0 +(\(see the description of)2.5 E F1(shopt)2.5 E F0(under)2.5 E F4 (SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E .435 (The rules concerning the de\214nition and use of aliases are some)108 -432 R .436(what confusing.)-.25 F F2(Bash)5.436 E F0(al)2.936 E -.1(wa) --.1 G .436(ys reads at least).1 F .67 -(one complete line of input, and all lines that mak)108 444 R 3.17(eu) +506.4 R .436(what confusing.)-.25 F F1(Bash)5.436 E F0(al)2.936 E -.1 +(wa)-.1 G .436(ys reads at least).1 F .67 +(one complete line of input, and all lines that mak)108 518.4 R 3.17(eu) -.1 G 3.17(pac)-3.17 G .67(ompound command, before e)-3.17 F -.15(xe) -.15 G .67(cuting an).15 F 3.17(yo)-.15 G 3.17(ft)-3.17 G(he)-3.17 E -1.058(commands on that line or the compound command.)108 456 R 1.059 +1.058(commands on that line or the compound command.)108 530.4 R 1.059 (Aliases are e)6.059 F 1.059(xpanded when a command is read, not)-.15 F -.075(when it is e)108 468 R -.15(xe)-.15 G 2.575(cuted. Therefore,).15 F -.075(an alias de\214nition appearing on the same line as another comman\ -d does not)2.575 F(tak)108 480 Q 2.837(ee)-.1 G -.25(ff)-2.837 G .337 -(ect until the ne).25 F .337(xt line of input is read.)-.15 F .337 +.075(when it is e)108 542.4 R -.15(xe)-.15 G 2.575(cuted. Therefore,).15 +F .075(an alias de\214nition appearing on the same line as another comm\ +and does not)2.575 F(tak)108 554.4 Q 2.837(ee)-.1 G -.25(ff)-2.837 G +.337(ect until the ne).25 F .337(xt line of input is read.)-.15 F .337 (The commands follo)5.337 F .338 -(wing the alias de\214nition on that line are)-.25 F .552(not af)108 492 -R .551(fected by the ne)-.25 F 3.051(wa)-.25 G 3.051(lias. This)-3.051 F -(beha)3.051 E .551(vior is also an issue when functions are e)-.2 F -.15 -(xe)-.15 G 3.051(cuted. Aliases).15 F .551(are e)3.051 F(x-)-.15 E .425 -(panded when a function de\214nition is read, not when the function is \ -e)108 504 R -.15(xe)-.15 G .426(cuted, because a function de\214nition) -.15 F .404(is itself a command.)108 516 R .403 +(wing the alias de\214nition on that line are)-.25 F .552(not af)108 +566.4 R .551(fected by the ne)-.25 F 3.051(wa)-.25 G 3.051(lias. This) +-3.051 F(beha)3.051 E .551(vior is also an issue when functions are e) +-.2 F -.15(xe)-.15 G 3.051(cuted. Aliases).15 F .551(are e)3.051 F(x-) +-.15 E .425(panded when a function de\214nition is read, not when the f\ +unction is e)108 578.4 R -.15(xe)-.15 G .426 +(cuted, because a function de\214nition).15 F .404(is itself a command.) +108 590.4 R .403 (As a consequence, aliases de\214ned in a function are not a)5.404 F -.25(va)-.2 G .403(ilable until after that func-).25 F .862(tion is e) -108 528 R -.15(xe)-.15 G 3.362(cuted. T).15 F 3.362(ob)-.8 G 3.362(es) +108 602.4 R -.15(xe)-.15 G 3.362(cuted. T).15 F 3.362(ob)-.8 G 3.362(es) -3.362 G .862(afe, al)-3.362 F -.1(wa)-.1 G .862 -(ys put alias de\214nitions on a separate line, and do not use).1 F F2 -(alias)3.362 E F0 .862(in com-)3.362 F(pound commands.)108 540 Q -.15 -(Fo)108 556.8 S 2.5(ra).15 G(lmost e)-2.5 E -.15(ve)-.25 G +(ys put alias de\214nitions on a separate line, and do not use).1 F F1 +(alias)3.362 E F0 .862(in com-)3.362 F(pound commands.)108 614.4 Q -.15 +(Fo)108 631.2 S 2.5(ra).15 G(lmost e)-2.5 E -.15(ve)-.25 G (ry purpose, aliases are superseded by shell functions.).15 E F3 -(FUNCTIONS)72 573.6 Q F0 3.468(As)108 585.6 S .968 +(FUNCTIONS)72 648 Q F0 3.468(As)108 660 S .968 (hell function, de\214ned as described abo)-3.468 F 1.267 -.15(ve u)-.15 H(nder).15 E F4 .967(SHELL GRAMMAR)3.467 F/F5 9/Times-Roman@0 SF(,)A F0 -.967(stores a series of commands for)3.217 F 1.001(later e)108 597.6 R +.967(stores a series of commands for)3.217 F 1.001(later e)108 672 R -.15(xe)-.15 G 3.501(cution. When).15 F 1.002(the name of a shell funct\ ion is used as a simple command name, the list of com-)3.501 F .316 -(mands associated with that function name is e)108 609.6 R -.15(xe)-.15 -G 2.816(cuted. Functions).15 F .316(are e)2.816 F -.15(xe)-.15 G .315 +(mands associated with that function name is e)108 684 R -.15(xe)-.15 G +2.816(cuted. Functions).15 F .316(are e)2.816 F -.15(xe)-.15 G .315 (cuted in the conte).15 F .315(xt of the current)-.15 F .035 -(shell; no ne)108 621.6 R 2.535(wp)-.25 G .036 +(shell; no ne)108 696 R 2.535(wp)-.25 G .036 (rocess is created to interpret them \(contrast this with the e)-2.535 F -.15(xe)-.15 G .036(cution of a shell script\).).15 F .036(When a)5.036 -F .64(function is e)108 633.6 R -.15(xe)-.15 G .64(cuted, the ar).15 F +F .64(function is e)108 708 R -.15(xe)-.15 G .64(cuted, the ar).15 F .639 (guments to the function become the positional parameters during its e) --.18 F -.15(xe)-.15 G(cution.).15 E .532(The special parameter)108 645.6 -R F2(#)3.032 E F0 .532(is updated to re\215ect the change.)3.032 F .532 -(Special parameter)5.532 F F2(0)3.033 E F0 .533(is unchanged.)3.033 F -.533(The \214rst ele-)5.533 F(ment of the)108 657.6 Q F4(FUNCN)2.5 E -(AME)-.18 E F0 -.25(va)2.25 G -(riable is set to the name of the function while the function is e).25 E --.15(xe)-.15 G(cuting.).15 E 1.25(All other aspects of the shell e)108 -674.4 R -.15(xe)-.15 G 1.25(cution en).15 F 1.25 -(vironment are identical between a function and its caller with)-.4 F -1.214(these e)108 686.4 R 1.214(xceptions: the)-.15 F F4(DEB)3.714 E(UG) --.09 E F0(and)3.464 E F2(RETURN)3.715 E F0 1.215 -(traps \(see the description of the)3.715 F F2(trap)3.715 E F0 -.2(bu) -3.715 G 1.215(iltin under).2 F F4(SHELL)3.715 E -.09(BU)108 698.4 S(IL) -.09 E .479(TIN COMMANDS)-.828 F F0(belo)2.729 E .479 -(w\) are not inherited unless the function has been gi)-.25 F -.15(ve) --.25 G 2.978(nt).15 G(he)-2.978 E F2(trace)2.978 E F0(attrib)2.978 E -.478(ute \(see)-.2 F .42(the description of the)108 710.4 R F4(declar) -2.92 E(e)-.162 E F0 -.2(bu)2.67 G .42(iltin belo).2 F .42(w\) or the) --.25 F F2 .42(\255o functrace)2.92 F F0 .42 -(shell option has been enabled with the)2.92 F F2(set)2.921 E F0 -.2(bu) -108 722.4 S 1.616(iltin \(in which case all functions inherit the).2 F -F2(DEB)4.116 E(UG)-.1 E F0(and)4.116 E F2(RETURN)4.116 E F0 1.616 -(traps\), and the)4.116 F F4(ERR)4.116 E F0 1.616(trap is not)3.866 F -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(32)193.45 E 0 Cg EP +-.18 F -.15(xe)-.15 G(cution.).15 E 1.658(The special parameter)108 720 +R F1(#)4.158 E F0 1.659(is updated to re\215ect the change.)4.158 F +1.659(Special parameter)6.659 F F1(0)4.159 E F0 1.659(is unchanged.) +4.159 F 1.659(The \214rst)6.659 F(GNU Bash 5.2)72 768 Q(2022 June 3) +150.675 E(32)199.835 E 0 Cg EP %%Page: 33 33 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(inherited unless the)108 84 Q/F1 10/Times-Bold@0 SF(\255o errtrace)2.5 -E F0(shell option has been enabled.)2.5 E -1.11(Va)108 100.8 S .368 -(riables local to the function may be declared with the)1.11 F F1(local) -2.868 E F0 -.2(bu)2.868 G .368(iltin command \().2 F/F2 10 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(element of the)108 +84 Q/F1 9/Times-Bold@0 SF(FUNCN)2.5 E(AME)-.18 E F0 -.25(va)2.25 G +(riable is set to the name of the function while the function is e).25 E +-.15(xe)-.15 G(cuting.).15 E 1.25(All other aspects of the shell e)108 +100.8 R -.15(xe)-.15 G 1.25(cution en).15 F 1.25 +(vironment are identical between a function and its caller with)-.4 F +1.214(these e)108 112.8 R 1.214(xceptions: the)-.15 F F1(DEB)3.714 E(UG) +-.09 E F0(and)3.464 E/F2 10/Times-Bold@0 SF(RETURN)3.715 E F0 1.215 +(traps \(see the description of the)3.715 F F2(trap)3.715 E F0 -.2(bu) +3.715 G 1.215(iltin under).2 F F1(SHELL)3.715 E -.09(BU)108 124.8 S(IL) +.09 E .479(TIN COMMANDS)-.828 F F0(belo)2.729 E .479 +(w\) are not inherited unless the function has been gi)-.25 F -.15(ve) +-.25 G 2.978(nt).15 G(he)-2.978 E F2(trace)2.978 E F0(attrib)2.978 E +.478(ute \(see)-.2 F .42(the description of the)108 136.8 R F1(declar) +2.92 E(e)-.162 E F0 -.2(bu)2.67 G .42(iltin belo).2 F .42(w\) or the) +-.25 F F2 .42(\255o functrace)2.92 F F0 .42 +(shell option has been enabled with the)2.92 F F2(set)2.921 E F0 -.2(bu) +108 148.8 S .072(iltin \(in which case all functions inherit the).2 F F2 +(DEB)2.572 E(UG)-.1 E F0(and)2.572 E F2(RETURN)2.572 E F0 .072 +(traps\), and the)2.572 F F1(ERR)2.571 E F0 .071(trap is not inher)2.321 +F(-)-.2 E(ited unless the)108 160.8 Q F2(\255o errtrace)2.5 E F0 +(shell option has been enabled.)2.5 E -1.11(Va)108 177.6 S .368 +(riables local to the function may be declared with the)1.11 F F2(local) +2.868 E F0 -.2(bu)2.868 G .368(iltin command \().2 F/F3 10 /Times-Italic@0 SF .368(local variables)B F0 2.868(\). Ordinar)B(-)-.2 E -(ily)108 112.8 Q 2.88(,v)-.65 G .38(ariables and their v)-3.13 F .38 +(ily)108 189.6 Q 2.88(,v)-.65 G .38(ariables and their v)-3.13 F .38 (alues are shared between the function and its caller)-.25 F 5.38(.I) --.55 G 2.88(fav)-5.38 G .38(ariable is declared)-3.13 F F1(local)2.88 E -F0(,)A(the v)108 124.8 Q(ariable')-.25 E 2.5(sv)-.55 G(isible scope is \ +-.55 G 2.88(fav)-5.38 G .38(ariable is declared)-3.13 F F2(local)2.88 E +F0(,)A(the v)108 201.6 Q(ariable')-.25 E 2.5(sv)-.55 G(isible scope is \ restricted to that function and its children \(including the functions \ -it calls\).)-2.5 E .726(In the follo)108 141.6 R .726 -(wing description, the)-.25 F F2(curr)3.226 E .726(ent scope)-.37 F F0 +it calls\).)-2.5 E .726(In the follo)108 218.4 R .726 +(wing description, the)-.25 F F3(curr)3.226 E .726(ent scope)-.37 F F0 .727(is a currently- e)3.226 F -.15(xe)-.15 G .727(cuting function.).15 F(Pre)5.727 E .727(vious scopes consist)-.25 F 1.004(of that function') -108 153.6 R 3.504(sc)-.55 G 1.004 +108 230.4 R 3.504(sc)-.55 G 1.004 (aller and so on, back to the "global" scope, where the shell is not e) -3.504 F -.15(xe)-.15 G 1.003(cuting an).15 F 3.503(ys)-.15 G(hell) --3.503 E 3.409(function. Consequently)108 165.6 R 3.409(,al)-.65 G .909 +-3.503 E 3.409(function. Consequently)108 242.4 R 3.409(,al)-.65 G .909 (ocal v)-3.409 F .909(ariable at the current scope is a v)-.25 F .91 -(ariable declared using the)-.25 F F1(local)3.41 E F0(or)3.41 E F1(de-) -3.41 E(clar)108 177.6 Q(e)-.18 E F0 -.2(bu)2.5 G +(ariable declared using the)-.25 F F2(local)3.41 E F0(or)3.41 E F2(de-) +3.41 E(clar)108 254.4 Q(e)-.18 E F0 -.2(bu)2.5 G (iltins in the function that is currently e).2 E -.15(xe)-.15 G(cuting.) -.15 E .636(Local v)108 194.4 R .636(ariables "shado)-.25 F .636(w" v) +.15 E .636(Local v)108 271.2 R .636(ariables "shado)-.25 F .636(w" v) -.25 F .635(ariables with the same name declared at pre)-.25 F .635 (vious scopes.)-.25 F -.15(Fo)5.635 G 3.135(ri).15 G .635 -(nstance, a local)-3.135 F -.25(va)108 206.4 S .58 +(nstance, a local)-3.135 F -.25(va)108 283.2 S .58 (riable declared in a function hides a global v).25 F .581 (ariable of the same name: references and assignments refer)-.25 F .183 -(to the local v)108 218.4 R .183(ariable, lea)-.25 F .183 +(to the local v)108 295.2 R .183(ariable, lea)-.25 F .183 (ving the global v)-.2 F .183(ariable unmodi\214ed.)-.25 F .182 (When the function returns, the global v)5.183 F(ariable)-.25 E -(is once ag)108 230.4 Q(ain visible.)-.05 E .726(The shell uses)108 -247.2 R F2 .726(dynamic scoping)3.226 F F0 .726(to control a v)3.226 F +(is once ag)108 307.2 Q(ain visible.)-.05 E .726(The shell uses)108 324 +R F3 .726(dynamic scoping)3.226 F F0 .726(to control a v)3.226 F (ariable')-.25 E 3.227(sv)-.55 G .727(isibility within functions.)-3.227 -F -.4(Wi)5.727 G .727(th dynamic scoping,).4 F .008(visible v)108 259.2 -R .008(ariables and their v)-.25 F .007 +F -.4(Wi)5.727 G .727(th dynamic scoping,).4 F .008(visible v)108 336 R +.008(ariables and their v)-.25 F .007 (alues are a result of the sequence of function calls that caused e)-.25 F -.15(xe)-.15 G .007(cution to reach).15 F .813(the current function.) -108 271.2 R .813(The v)5.813 F .813(alue of a v)-.25 F .813 +108 348 R .813(The v)5.813 F .813(alue of a v)-.25 F .813 (ariable that a function sees depends on its v)-.25 F .814 -(alue within its caller)-.25 F 3.314(,i)-.4 G(f)-3.314 E(an)108 283.2 Q +(alue within its caller)-.25 F 3.314(,i)-.4 G(f)-3.314 E(an)108 360 Q 2.117 -.65(y, w)-.15 H .817 (hether that caller is the "global" scope or another shell function.).65 F .816(This is also the v)5.816 F .816(alue that a local)-.25 F -.25(va) -108 295.2 S(riable declaration "shado).25 E(ws", and the v)-.25 E -(alue that is restored when the function returns.)-.25 E -.15(Fo)108 312 -S 2.723(re).15 G .223(xample, if a v)-2.873 F(ariable)-.25 E F2(var) -2.723 E F0 .223(is declared as local in function)2.723 F F2(func1)2.723 -E F0 2.724(,a)C(nd)-2.724 E F2(func1)2.724 E F0 .224 -(calls another function)2.724 F F2(func2)2.724 E F0(,)A .464 -(references to)108 324 R F2(var)2.964 E F0 .464(made from within)2.964 F -F2(func2)2.964 E F0 .464(will resolv)2.964 F 2.964(et)-.15 G 2.963(ot) --2.964 G .463(he local v)-2.963 F(ariable)-.25 E F2(var)2.963 E F0(from) -2.963 E F2(func1)2.963 E F0 2.963(,s)C(hado)-2.963 E .463(wing an)-.25 F -(y)-.15 E(global v)108 336 Q(ariable named)-.25 E F2(var)2.5 E F0(.)A -(The)108 352.8 Q F1(unset)2.982 E F0 -.2(bu)2.982 G .482 +108 372 S(riable declaration "shado).25 E(ws", and the v)-.25 E +(alue that is restored when the function returns.)-.25 E -.15(Fo)108 +388.8 S 2.723(re).15 G .223(xample, if a v)-2.873 F(ariable)-.25 E F3 +(var)2.723 E F0 .223(is declared as local in function)2.723 F F3(func1) +2.723 E F0 2.724(,a)C(nd)-2.724 E F3(func1)2.724 E F0 .224 +(calls another function)2.724 F F3(func2)2.724 E F0(,)A .464 +(references to)108 400.8 R F3(var)2.964 E F0 .464(made from within)2.964 +F F3(func2)2.964 E F0 .464(will resolv)2.964 F 2.964(et)-.15 G 2.963(ot) +-2.964 G .463(he local v)-2.963 F(ariable)-.25 E F3(var)2.963 E F0(from) +2.963 E F3(func1)2.963 E F0 2.963(,s)C(hado)-2.963 E .463(wing an)-.25 F +(y)-.15 E(global v)108 412.8 Q(ariable named)-.25 E F3(var)2.5 E F0(.)A +(The)108 429.6 Q F2(unset)2.982 E F0 -.2(bu)2.982 G .482 (iltin also acts using the same dynamic scope: if a v).2 F .483 -(ariable is local to the current scope,)-.25 F F1(unset)2.983 E F0 .19 -(will unset it; otherwise the unset will refer to the v)108 364.8 R .19 +(ariable is local to the current scope,)-.25 F F2(unset)2.983 E F0 .19 +(will unset it; otherwise the unset will refer to the v)108 441.6 R .19 (ariable found in an)-.25 F 2.69(yc)-.15 G .19 (alling scope as described abo)-2.69 F -.15(ve)-.15 G 5.19(.I).15 G(f) --5.19 E 3.324(av)108 376.8 S .824(ariable at the current local scope is\ +-5.19 E 3.324(av)108 453.6 S .824(ariable at the current local scope is\ unset, it will remain so \(appearing as unset\) until it is reset in t\ -hat)-3.574 F 1.142(scope or until the function returns.)108 388.8 R +hat)-3.574 F 1.142(scope or until the function returns.)108 465.6 R 1.141(Once the function returns, an)6.141 F 3.641(yi)-.15 G 1.141 (nstance of the v)-3.641 F 1.141(ariable at a pre)-.25 F(vious)-.25 E -.976(scope will become visible.)108 400.8 R .976 +.976(scope will become visible.)108 477.6 R .976 (If the unset acts on a v)5.976 F .976(ariable at a pre)-.25 F .977 (vious scope, an)-.25 F 3.477(yi)-.15 G .977(nstance of a v)-3.477 F -(ariable)-.25 E .008(with that name that had been shado)108 412.8 R .007 +(ariable)-.25 E .008(with that name that had been shado)108 489.6 R .007 (wed will become visible \(see belo)-.25 F 2.507(wh)-.25 G .507 -.25 -(ow t)-2.507 H(he).25 E F1(localv)2.507 E(ar_unset)-.1 E F0 .007 -(shell option)2.507 F(changes this beha)108 424.8 Q(vior\).)-.2 E(The) -108 441.6 Q F1(FUNCNEST)3.528 E F0 -.25(va)3.528 G 1.028 +(ow t)-2.507 H(he).25 E F2(localv)2.507 E(ar_unset)-.1 E F0 .007 +(shell option)2.507 F(changes this beha)108 501.6 Q(vior\).)-.2 E(The) +108 518.4 Q F2(FUNCNEST)3.528 E F0 -.25(va)3.528 G 1.028 (riable, if set to a numeric v).25 F 1.028 (alue greater than 0, de\214nes a maximum function nesting)-.25 F(le)108 -453.6 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G +530.4 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G (cations that e).2 E(xceed the limit cause the entire command to abort.) --.15 E .044(If the b)108 470.4 R .043(uiltin command)-.2 F F1 -.18(re) +-.15 E .044(If the b)108 547.2 R .043(uiltin command)-.2 F F2 -.18(re) 2.543 G(tur).18 E(n)-.15 E F0 .043(is e)2.543 F -.15(xe)-.15 G .043 (cuted in a function, the function completes and e).15 F -.15(xe)-.15 G -.043(cution resumes with).15 F 1.011(the ne)108 482.4 R 1.011 +.043(cution resumes with).15 F 1.011(the ne)108 559.2 R 1.011 (xt command after the function call.)-.15 F(An)6.011 E 3.511(yc)-.15 G -1.011(ommand associated with the)-3.511 F F1(RETURN)3.512 E F0 1.012 -(trap is e)3.512 F -.15(xe)-.15 G(cuted).15 E .214(before e)108 494.4 R +1.011(ommand associated with the)-3.511 F F2(RETURN)3.512 E F0 1.012 +(trap is e)3.512 F -.15(xe)-.15 G(cuted).15 E .214(before e)108 571.2 R -.15(xe)-.15 G .214(cution resumes.).15 F .213 (When a function completes, the v)5.214 F .213 (alues of the positional parameters and the spe-)-.25 F(cial parameter) -108 506.4 Q F1(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E +108 583.2 Q F2(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E 2.5(yh)-.15 G(ad prior to the function')-2.5 E 2.5(se)-.55 G -.15(xe) -2.65 G(cution.).15 E 1.358 -(Function names and de\214nitions may be listed with the)108 523.2 R F1 -3.858 E F0 1.358(option to the)3.858 F F1(declar)3.858 E(e)-.18 E -F0(or)3.859 E F1(typeset)3.859 E F0 -.2(bu)3.859 G 1.359(iltin com-).2 F -3.39(mands. The)108 535.2 R F13.39 E F0 .89(option to)3.39 F F1 -(declar)3.39 E(e)-.18 E F0(or)3.39 E F1(typeset)3.39 E F0 .89 +(Function names and de\214nitions may be listed with the)108 600 R F2 +3.858 E F0 1.358(option to the)3.858 F F2(declar)3.858 E(e)-.18 E +F0(or)3.859 E F2(typeset)3.859 E F0 -.2(bu)3.859 G 1.359(iltin com-).2 F +3.39(mands. The)108 612 R F23.39 E F0 .89(option to)3.39 F F2 +(declar)3.39 E(e)-.18 E F0(or)3.39 E F2(typeset)3.39 E F0 .89 (will list the function names only \(and optionally the source)3.39 F -.046(\214le and line number)108 547.2 R 2.546(,i)-.4 G 2.546(ft)-2.546 G -(he)-2.546 E F1(extdeb)2.546 E(ug)-.2 E F0 .046 +.046(\214le and line number)108 624 R 2.546(,i)-.4 G 2.546(ft)-2.546 G +(he)-2.546 E F2(extdeb)2.546 E(ug)-.2 E F0 .046 (shell option is enabled\).)2.546 F .046(Functions may be e)5.046 F .046 (xported so that child shell)-.15 F .493 -(processes \(those created when e)108 559.2 R -.15(xe)-.15 G .492 +(processes \(those created when e)108 636 R -.15(xe)-.15 G .492 (cuting a separate shell in).15 F -.2(vo)-.4 G .492 (cation\) automatically ha).2 F .792 -.15(ve t)-.2 H .492 -(hem de\214ned with).15 F(the)108 571.2 Q F13.2 E F0 .7 -(option to the)3.2 F F1(export)3.2 E F0 -.2(bu)3.2 G 3.2(iltin. A).2 F -.701(function de\214nition may be deleted using the)3.2 F F13.201 -E F0 .701(option to the)3.201 F F1(unset)3.201 E F0 -.2(bu)108 583.2 S -(iltin.).2 E .372(Functions may be recursi)108 600 R -.15(ve)-.25 G -5.371(.T).15 G(he)-5.371 E F1(FUNCNEST)2.871 E F0 -.25(va)2.871 G .371 +(hem de\214ned with).15 F(the)108 648 Q F23.2 E F0 .7 +(option to the)3.2 F F2(export)3.2 E F0 -.2(bu)3.2 G 3.2(iltin. A).2 F +.701(function de\214nition may be deleted using the)3.2 F F23.201 +E F0 .701(option to the)3.201 F F2(unset)3.201 E F0 -.2(bu)108 660 S +(iltin.).2 E .372(Functions may be recursi)108 676.8 R -.15(ve)-.25 G +5.371(.T).15 G(he)-5.371 E F2(FUNCNEST)2.871 E F0 -.25(va)2.871 G .371 (riable may be used to limit the depth of the function call).25 F .322 -(stack and restrict the number of function in)108 612 R -.2(vo)-.4 G +(stack and restrict the number of function in)108 688.8 R -.2(vo)-.4 G 2.822(cations. By).2 F(def)2.822 E .322 -(ault, no limit is imposed on the number of re-)-.1 F(cursi)108 624 Q .3 --.15(ve c)-.25 H(alls.).15 E/F3 10.95/Times-Bold@0 SF(ARITHMETIC EV)72 -640.8 Q(ALU)-1.478 E -1.04(AT)-.657 G(ION)1.04 E F0 1.089 -(The shell allo)108 652.8 R 1.089(ws arithmetic e)-.25 F 1.089 -(xpressions to be e)-.15 F -.25(va)-.25 G 1.089 -(luated, under certain circumstances \(see the).25 F F1(let)3.588 E F0 -(and)3.588 E F1(de-)3.588 E(clar)108 664.8 Q(e)-.18 E F0 -.2(bu)3.452 G -.952(iltin commands, the).2 F F1(\(\()3.452 E F0 .952 -(compound command, and)3.452 F F1 .952(Arithmetic Expansion)3.452 F F0 -3.453(\). Ev)B .953(aluation is done in)-.25 F<8c78>108 676.8 Q 1.058 -(ed-width inte)-.15 F 1.057(gers with no check for o)-.15 F -.15(ve)-.15 -G(r\215o).15 E 2.357 -.65(w, t)-.25 H 1.057(hough di).65 F 1.057 -(vision by 0 is trapped and \215agged as an error)-.25 F(.)-.55 E .828 -(The operators and their precedence, associati)108 688.8 R(vity)-.25 E -3.329(,a)-.65 G .829(nd v)-3.329 F .829 -(alues are the same as in the C language.)-.25 F .829(The fol-)5.829 F -(lo)108 700.8 Q .44(wing list of operators is grouped into le)-.25 F --.15(ve)-.25 G .439(ls of equal-precedence operators.).15 F .439(The le) -5.439 F -.15(ve)-.25 G .439(ls are listed in order).15 F -(of decreasing precedence.)108 712.8 Q(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(33)193.45 E 0 Cg EP +(ault, no limit is imposed on the number of re-)-.1 F(cursi)108 700.8 Q +.3 -.15(ve c)-.25 H(alls.).15 E(GNU Bash 5.2)72 768 Q(2022 June 3) +150.675 E(33)199.835 E 0 Cg EP %%Page: 34 34 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 -/Times-Italic@0 SF(id)108 84 Q/F2 10/Times-Bold@0 SF(++)A F1(id)2.5 E F2 -A F0 -.25(va)144 96 S(riable post-increment and post-decrement).25 -E F2 2.5108 108 S F0(unary minus and plus)144 108 Q F2(++)108 120 -Q F1(id)A F22.5 E F1(id)A F0 -.25(va)144 132 S -(riable pre-increment and pre-decrement).25 E F2 2.5(!~)108 144 S F0 -(logical and bitwise ne)144 144 Q -.05(ga)-.15 G(tion).05 E F2(**)108 -156 Q F0 -.15(ex)144 156 S(ponentiation).15 E F2 2.5(*/%)108 168 S F0 -(multiplication, di)144 168 Q(vision, remainder)-.25 E F2 2.5<2bad>108 -180 S F0(addition, subtraction)144 180 Q F2(<< >>)108 192 Q F0 -(left and right bitwise shifts)144 192 Q F2(<= >= < >)108 204 Q F0 -(comparison)144 216 Q F2(== !=)108 228 Q F0(equality and inequality)144 -228 Q F2(&)108 240 Q F0(bitwise AND)144 240 Q F2(^)108 252 Q F0 -(bitwise e)144 252 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F2(|)108 -264 Q F0(bitwise OR)144 264 Q F2(&&)108 276 Q F0(logical AND)144 276 Q -F2(||)108 288 Q F0(logical OR)144 288 Q F1 -.2(ex)108 300 S(pr).2 E F2 -(?)A F1 -.2(ex)C(pr).2 E F2(:)A F1 -.2(ex)C(pr).2 E F0 -(conditional operator)144 312 Q F2 2.5(=*)108 324 S 2.5(=/)-2.5 G 2.5 -(=%)-2.5 G 2.5(=+)-2.5 G 2.5<3dad>-2.5 G 2.5(=<)-2.5 G(<= >>= &= ^= |=) --2.5 E F0(assignment)144 336 Q F1 -.2(ex)108 348 S(pr1).2 E F2(,)2.5 E -F1 -.2(ex)2.5 G(pr2).2 E F0(comma)144 360 Q .68(Shell v)108 376.8 R .68 -(ariables are allo)-.25 F .68(wed as operands; parameter e)-.25 F .68 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10.95 +/Times-Bold@0 SF(ARITHMETIC EV)72 84 Q(ALU)-1.478 E -1.04(AT)-.657 G +(ION)1.04 E F0 1.089(The shell allo)108 96 R 1.089(ws arithmetic e)-.25 +F 1.089(xpressions to be e)-.15 F -.25(va)-.25 G 1.089 +(luated, under certain circumstances \(see the).25 F/F2 10/Times-Bold@0 +SF(let)3.588 E F0(and)3.588 E F2(de-)3.588 E(clar)108 108 Q(e)-.18 E F0 +-.2(bu)3.452 G .952(iltin commands, the).2 F F2(\(\()3.452 E F0 .952 +(compound command, and)3.452 F F2 .952(Arithmetic Expansion)3.452 F F0 +3.453(\). Ev)B .953(aluation is done in)-.25 F<8c78>108 120 Q 1.058 +(ed-width inte)-.15 F 1.057(gers with no check for o)-.15 F -.15(ve)-.15 +G(r\215o).15 E 2.357 -.65(w, t)-.25 H 1.057(hough di).65 F 1.057 +(vision by 0 is trapped and \215agged as an error)-.25 F(.)-.55 E .828 +(The operators and their precedence, associati)108 132 R(vity)-.25 E +3.329(,a)-.65 G .829(nd v)-3.329 F .829 +(alues are the same as in the C language.)-.25 F .829(The fol-)5.829 F +(lo)108 144 Q .44(wing list of operators is grouped into le)-.25 F -.15 +(ve)-.25 G .439(ls of equal-precedence operators.).15 F .439(The le) +5.439 F -.15(ve)-.25 G .439(ls are listed in order).15 F +(of decreasing precedence.)108 156 Q/F3 10/Times-Italic@0 SF(id)108 +172.8 Q F2(++)A F3(id)2.5 E F2A F0 -.25(va)144 184.8 S +(riable post-increment and post-decrement).25 E F2 2.5108 196.8 S +F0(unary minus and plus)144 196.8 Q F2(++)108 208.8 Q F3(id)A F2 +2.5 E F3(id)A F0 -.25(va)144 220.8 S +(riable pre-increment and pre-decrement).25 E F2 2.5(!~)108 232.8 S F0 +(logical and bitwise ne)144 232.8 Q -.05(ga)-.15 G(tion).05 E F2(**)108 +244.8 Q F0 -.15(ex)144 244.8 S(ponentiation).15 E F2 2.5(*/%)108 256.8 S +F0(multiplication, di)144 256.8 Q(vision, remainder)-.25 E F2 2.5<2bad> +108 268.8 S F0(addition, subtraction)144 268.8 Q F2(<< >>)108 280.8 Q F0 +(left and right bitwise shifts)144 280.8 Q F2(<= >= < >)108 292.8 Q F0 +(comparison)144 304.8 Q F2(== !=)108 316.8 Q F0(equality and inequality) +144 316.8 Q F2(&)108 328.8 Q F0(bitwise AND)144 328.8 Q F2(^)108 340.8 Q +F0(bitwise e)144 340.8 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F2(|) +108 352.8 Q F0(bitwise OR)144 352.8 Q F2(&&)108 364.8 Q F0(logical AND) +144 364.8 Q F2(||)108 376.8 Q F0(logical OR)144 376.8 Q F3 -.2(ex)108 +388.8 S(pr).2 E F2(?)A F3 -.2(ex)C(pr).2 E F2(:)A F3 -.2(ex)C(pr).2 E F0 +(conditional operator)144 400.8 Q F2 2.5(=*)108 412.8 S 2.5(=/)-2.5 G +2.5(=%)-2.5 G 2.5(=+)-2.5 G 2.5<3dad>-2.5 G 2.5(=<)-2.5 G +(<= >>= &= ^= |=)-2.5 E F0(assignment)144 424.8 Q F3 -.2(ex)108 436.8 S +(pr1).2 E F2(,)2.5 E F3 -.2(ex)2.5 G(pr2).2 E F0(comma)144 448.8 Q .68 +(Shell v)108 465.6 R .68(ariables are allo)-.25 F .68 +(wed as operands; parameter e)-.25 F .68 (xpansion is performed before the e)-.15 F .68(xpression is e)-.15 F --.25(va)-.25 G(lu-).25 E 3.508(ated. W)108 388.8 R 1.008(ithin an e)-.4 +-.25(va)-.25 G(lu-).25 E 3.508(ated. W)108 477.6 R 1.008(ithin an e)-.4 F 1.008(xpression, shell v)-.15 F 1.007 (ariables may also be referenced by name without using the parameter) --.25 F -.15(ex)108 400.8 S .165(pansion syntax.).15 F 2.665(As)5.165 G +-.25 F -.15(ex)108 489.6 S .165(pansion syntax.).15 F 2.665(As)5.165 G .165(hell v)-2.665 F .165(ariable that is null or unset e)-.25 F -.25 (va)-.25 G .165(luates to 0 when referenced by name without us-).25 F -.421(ing the parameter e)108 412.8 R .421(xpansion syntax.)-.15 F .421 +.421(ing the parameter e)108 501.6 R .421(xpansion syntax.)-.15 F .421 (The v)5.421 F .421(alue of a v)-.25 F .421(ariable is e)-.25 F -.25(va) -.25 G .42(luated as an arithmetic e).25 F .42(xpression when)-.15 F -.153(it is referenced, or when a v)108 424.8 R .154 +.153(it is referenced, or when a v)108 513.6 R .154 (ariable which has been gi)-.25 F -.15(ve)-.25 G 2.654(nt).15 G(he) --2.654 E F1(inte)2.654 E -.1(ge)-.4 G(r).1 E F0(attrib)2.654 E .154 +-2.654 E F3(inte)2.654 E -.1(ge)-.4 G(r).1 E F0(attrib)2.654 E .154 (ute using)-.2 F F2(declar)2.654 E 2.654<65ad>-.18 G(i)-2.654 E F0 .154 -(is assigned a)2.654 F -.25(va)108 436.8 S 2.857(lue. A).25 F .357 +(is assigned a)2.654 F -.25(va)108 525.6 S 2.857(lue. A).25 F .357 (null v)2.857 F .357(alue e)-.25 F -.25(va)-.25 G .357(luates to 0.).25 F 2.857(As)5.357 G .357(hell v)-2.857 F .357(ariable need not ha)-.25 F -.657 -.15(ve i)-.2 H(ts).15 E F1(inte)2.857 E -.1(ge)-.4 G(r).1 E F0 -(attrib)2.857 E .357(ute turned on to be used)-.2 F(in an e)108 448.8 Q -(xpression.)-.15 E(Inte)108 465.6 Q .517(ger constants follo)-.15 F +.657 -.15(ve i)-.2 H(ts).15 E F3(inte)2.857 E -.1(ge)-.4 G(r).1 E F0 +(attrib)2.857 E .357(ute turned on to be used)-.2 F(in an e)108 537.6 Q +(xpression.)-.15 E(Inte)108 554.4 Q .517(ger constants follo)-.15 F 3.017(wt)-.25 G .518(he C language de\214nition, without suf)-3.017 F <8c78>-.25 E .518(es or character constants.)-.15 F .518(Constants with) -5.518 F 3.283(al)108 477.6 S .783 +5.518 F 3.283(al)108 566.4 S .783 (eading 0 are interpreted as octal numbers.)-3.283 F 3.282(Al)5.783 G .782(eading 0x or 0X denotes he)-3.282 F 3.282(xadecimal. Otherwise,) --.15 F(num-)3.282 E .815(bers tak)108 489.6 R 3.315(et)-.1 G .815 -(he form [)-3.315 F F1(base#)A F0 .815(]n, where the optional)B F1(base) +-.15 F(num-)3.282 E .815(bers tak)108 578.4 R 3.315(et)-.1 G .815 +(he form [)-3.315 F F3(base#)A F0 .815(]n, where the optional)B F3(base) 3.315 E F0 .816(is a decimal number between 2 and 64 representing)3.315 -F .35(the arithmetic base, and)108 501.6 R F1(n)2.85 E F0 .35 -(is a number in that base.)2.85 F(If)5.35 E F1(base#)2.849 E F0 .349 +F .35(the arithmetic base, and)108 590.4 R F3(n)2.85 E F0 .35 +(is a number in that base.)2.85 F(If)5.35 E F3(base#)2.849 E F0 .349 (is omitted, then base 10 is used.)2.849 F .349(When speci-)5.349 F -(fying)108 513.6 Q F1(n)2.974 E F0 2.974(,i)C 2.974(fan)-2.974 G .474(o\ +(fying)108 602.4 Q F3(n)2.974 E F0 2.974(,i)C 2.974(fan)-2.974 G .474(o\ n-digit is required, the digits greater than 9 are represented by the l\ o)-2.974 F .475(wercase letters, the up-)-.25 F .518 -(percase letters, @, and _, in that order)108 525.6 R 5.518(.I)-.55 G(f) --5.518 E F1(base)3.018 E F0 .518(is less than or equal to 36, lo)3.018 F +(percase letters, @, and _, in that order)108 614.4 R 5.518(.I)-.55 G(f) +-5.518 E F3(base)3.018 E F0 .518(is less than or equal to 36, lo)3.018 F .518(wercase and uppercase letters)-.25 F (may be used interchangeably to represent numbers between 10 and 35.)108 -537.6 Q .234(Operators are e)108 554.4 R -.25(va)-.25 G .234 +626.4 Q .234(Operators are e)108 643.2 R -.25(va)-.25 G .234 (luated in order of precedence.).25 F(Sub-e)5.234 E .234 (xpressions in parentheses are e)-.15 F -.25(va)-.25 G .235 -(luated \214rst and may).25 F -.15(ove)108 566.4 S -(rride the precedence rules abo).15 E -.15(ve)-.15 G(.).15 E/F3 10.95 -/Times-Bold@0 SF(CONDITION)72 583.2 Q(AL EXPRESSIONS)-.219 E F0 .256 -(Conditional e)108 595.2 R .256(xpressions are used by the)-.15 F F2([[) -2.755 E F0 .255(compound command and the)2.755 F F2(test)2.755 E F0(and) -2.755 E F2([)2.755 E F0 -.2(bu)2.755 G .255(iltin commands to test).2 F -.133(\214le attrib)108 607.2 R .133 +(luated \214rst and may).25 F -.15(ove)108 655.2 S +(rride the precedence rules abo).15 E -.15(ve)-.15 G(.).15 E F1 +(CONDITION)72 672 Q(AL EXPRESSIONS)-.219 E F0 .256(Conditional e)108 684 +R .256(xpressions are used by the)-.15 F F2([[)2.755 E F0 .255 +(compound command and the)2.755 F F2(test)2.755 E F0(and)2.755 E F2([) +2.755 E F0 -.2(bu)2.755 G .255(iltin commands to test).2 F .133 +(\214le attrib)108 696 R .133 (utes and perform string and arithmetic comparisons.)-.2 F(The)5.133 E F2(test)2.633 E F0(and)2.633 E F2([)2.634 E F0 .134 -(commands determine their be-)2.634 F(ha)108 619.2 Q .198 +(commands determine their be-)2.634 F(ha)108 708 Q .198 (vior based on the number of ar)-.2 F .197 (guments; see the descriptions of those commands for an)-.18 F 2.697(yo) --.15 G .197(ther command-)-2.697 F(speci\214c actions.)108 631.2 Q .234 -(Expressions are formed from the follo)108 648 R .234 -(wing unary or binary primaries.)-.25 F F2(Bash)5.234 E F0 .235 -(handles se)2.735 F -.15(ve)-.25 G .235(ral \214lenames spe-).15 F .425 -(cially when the)108 660 R 2.925(ya)-.15 G .425(re used in e)-2.925 F -2.925(xpressions. If)-.15 F .425(the operating system on which)2.925 F -F2(bash)2.924 E F0 .424(is running pro)2.924 F .424(vides these)-.15 F -.344(special \214les, bash will use them; otherwise it will emulate the\ -m internally with this beha)108 672 R .345(vior: If an)-.2 F(y)-.15 E F1 -(\214le)2.845 E F0(ar)2.845 E(-)-.2 E .806 -(gument to one of the primaries is of the form)108 684 R F1(/de)3.306 E -(v/fd/n)-.15 E F0 3.305(,t)C .805(hen \214le descriptor)-3.305 F F1(n) -3.305 E F0 .805(is check)3.305 F 3.305(ed. If)-.1 F(the)3.305 E F1 -(\214le)3.305 E F0(ar)3.305 E(gu-)-.18 E .029 -(ment to one of the primaries is one of)108 696 R F1(/de)2.529 E -(v/stdin)-.15 E F0(,)A F1(/de)2.529 E(v/stdout)-.15 E F0 2.53(,o)C(r) --2.53 E F1(/de)2.53 E(v/stderr)-.15 E F0 2.53<2c8c>C .03 -(le descriptor 0, 1, or 2, respec-)-2.53 F(ti)108 708 Q -.15(ve)-.25 G -(ly).15 E 2.5(,i)-.65 G 2.5(sc)-2.5 G(heck)-2.5 E(ed.)-.1 E .722 -(Unless otherwise speci\214ed, primaries that operate on \214les follo) -108 724.8 R 3.221(ws)-.25 G .721(ymbolic links and operate on the tar) --3.221 F(get)-.18 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(34) -193.45 E 0 Cg EP +-.15 G .197(ther command-)-2.697 F(speci\214c actions.)108 720 Q +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(34)199.835 E 0 Cg EP %%Page: 35 35 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(of the link, rather than the link itself.)108 84 Q 1.095 -(When used with)108 102 R/F1 10/Times-Bold@0 SF([[)3.595 E F0 3.595(,t)C -(he)-3.595 E F1(<)3.595 E F0(and)3.595 E F1(>)3.595 E F0 1.095 -(operators sort le)3.595 F 1.095 -(xicographically using the current locale.)-.15 F(The)6.096 E F1(test) -3.596 E F0(com-)3.596 E(mand sorts using ASCII ordering.)108 114 Q F1 -108 138 Q/F2 10/Times-Italic@0 SF(\214le)2.5 E F0 -.35(Tr)144 138 -S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F1108 -150 Q F2(\214le)2.5 E F0 -.35(Tr)144 150 S(ue if).35 E F2(\214le)2.5 E -F0 -.15(ex)2.5 G(ists and is a block special \214le.).15 E F1108 -162 Q F2(\214le)2.5 E F0 -.35(Tr)144 162 S(ue if).35 E F2(\214le)2.5 E -F0 -.15(ex)2.5 G(ists and is a character special \214le.).15 E F1 -108 174 Q F2(\214le)2.5 E F0 -.35(Tr)144 174 S(ue if).35 E F2(\214le)2.5 -E F0 -.15(ex)2.5 G(ists and is a directory).15 E(.)-.65 E F1108 -186 Q F2(\214le)2.5 E F0 -.35(Tr)144 186 S(ue if).35 E F2(\214le)2.5 E -F0 -.15(ex)2.5 G(ists.).15 E F1108 198 Q F2(\214le)2.5 E F0 -.35 -(Tr)144 198 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a re).15 E(gular \214le.)-.15 E F1108 210 Q F2 -(\214le)2.5 E F0 -.35(Tr)144 210 S(ue if).35 E F2(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists and is set-group-id.).15 E F1108 222 Q F2(\214le) -2.5 E F0 -.35(Tr)144 222 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a symbolic link.).15 E F1108 234 Q F2(\214le)2.5 E F0 --.35(Tr)144 234 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and its `).15 E(`stick)-.74 E(y')-.15 E 2.5('b)-.74 G(it is set.) --2.5 E F1108 246 Q F2(\214le)2.5 E F0 -.35(Tr)144 246 S(ue if).35 -E F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is a named pipe \(FIFO\).) -.15 E F1108 258 Q F2(\214le)2.5 E F0 -.35(Tr)144 258 S(ue if).35 E -F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is readable.).15 E F1108 -270 Q F2(\214le)2.5 E F0 -.35(Tr)144 270 S(ue if).35 E F2(\214le)2.5 E -F0 -.15(ex)2.5 G(ists and has a size greater than zero.).15 E F1 -108 282 Q F2(fd)2.5 E F0 -.35(Tr)144 282 S(ue if \214le descriptor).35 E -F2(fd)4.47 E F0(is open and refers to a terminal.)3.27 E F1108 294 -Q F2(\214le)2.5 E F0 -.35(Tr)144 294 S(ue if).35 E F2(\214le)2.5 E F0 --.15(ex)2.5 G(ists and its set-user).15 E(-id bit is set.)-.2 E F1 -108 306 Q F2(\214le)2.5 E F0 -.35(Tr)144 306 S(ue if).35 E F2(\214le)2.5 -E F0 -.15(ex)2.5 G(ists and is writable.).15 E F1108 318 Q F2 -(\214le)2.5 E F0 -.35(Tr)144 318 S(ue if).35 E F2(\214le)2.5 E F0 -.15 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .234 +(Expressions are formed from the follo)108 84 R .234 +(wing unary or binary primaries.)-.25 F/F1 10/Times-Bold@0 SF(Bash)5.234 +E F0 .235(handles se)2.735 F -.15(ve)-.25 G .235(ral \214lenames spe-) +.15 F .425(cially when the)108 96 R 2.925(ya)-.15 G .425(re used in e) +-2.925 F 2.925(xpressions. If)-.15 F .425(the operating system on which) +2.925 F F1(bash)2.924 E F0 .424(is running pro)2.924 F .424(vides these) +-.15 F .344(special \214les, bash will use them; otherwise it will emul\ +ate them internally with this beha)108 108 R .345(vior: If an)-.2 F(y) +-.15 E/F2 10/Times-Italic@0 SF(\214le)2.845 E F0(ar)2.845 E(-)-.2 E .806 +(gument to one of the primaries is of the form)108 120 R F2(/de)3.306 E +(v/fd/n)-.15 E F0 3.305(,t)C .805(hen \214le descriptor)-3.305 F F2(n) +3.305 E F0 .805(is check)3.305 F 3.305(ed. If)-.1 F(the)3.305 E F2 +(\214le)3.305 E F0(ar)3.305 E(gu-)-.18 E .029 +(ment to one of the primaries is one of)108 132 R F2(/de)2.529 E +(v/stdin)-.15 E F0(,)A F2(/de)2.529 E(v/stdout)-.15 E F0 2.53(,o)C(r) +-2.53 E F2(/de)2.53 E(v/stderr)-.15 E F0 2.53<2c8c>C .03 +(le descriptor 0, 1, or 2, respec-)-2.53 F(ti)108 144 Q -.15(ve)-.25 G +(ly).15 E 2.5(,i)-.65 G 2.5(sc)-2.5 G(heck)-2.5 E(ed.)-.1 E .722 +(Unless otherwise speci\214ed, primaries that operate on \214les follo) +108 160.8 R 3.221(ws)-.25 G .721(ymbolic links and operate on the tar) +-3.221 F(get)-.18 E(of the link, rather than the link itself.)108 172.8 +Q 1.095(When used with)108 190.8 R F1([[)3.595 E F0 3.595(,t)C(he)-3.595 +E F1(<)3.595 E F0(and)3.595 E F1(>)3.595 E F0 1.095(operators sort le) +3.595 F 1.095(xicographically using the current locale.)-.15 F(The)6.096 +E F1(test)3.596 E F0(com-)3.596 E(mand sorts using ASCII ordering.)108 +202.8 Q F1108 226.8 Q F2(\214le)2.5 E F0 -.35(Tr)144 226.8 S +(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F1108 +238.8 Q F2(\214le)2.5 E F0 -.35(Tr)144 238.8 S(ue if).35 E F2(\214le)2.5 +E F0 -.15(ex)2.5 G(ists and is a block special \214le.).15 E F1108 +250.8 Q F2(\214le)2.5 E F0 -.35(Tr)144 250.8 S(ue if).35 E F2(\214le)2.5 +E F0 -.15(ex)2.5 G(ists and is a character special \214le.).15 E F1 +108 262.8 Q F2(\214le)2.5 E F0 -.35(Tr)144 262.8 S(ue if).35 E F2 +(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is a directory).15 E(.)-.65 E F1 +108 274.8 Q F2(\214le)2.5 E F0 -.35(Tr)144 274.8 S(ue if).35 E F2 +(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F1108 286.8 Q F2 +(\214le)2.5 E F0 -.35(Tr)144 286.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and is a re).15 E(gular \214le.)-.15 E F1108 298.8 +Q F2(\214le)2.5 E F0 -.35(Tr)144 298.8 S(ue if).35 E F2(\214le)2.5 E F0 +-.15(ex)2.5 G(ists and is set-group-id.).15 E F1108 310.8 Q F2 +(\214le)2.5 E F0 -.35(Tr)144 310.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and is a symbolic link.).15 E F1108 322.8 Q F2 +(\214le)2.5 E F0 -.35(Tr)144 322.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and its `).15 E(`stick)-.74 E(y')-.15 E 2.5('b)-.74 G +(it is set.)-2.5 E F1108 334.8 Q F2(\214le)2.5 E F0 -.35(Tr)144 +334.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and is a named pipe \(FIFO\).).15 E F1108 346.8 Q F2(\214le) +2.5 E F0 -.35(Tr)144 346.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 +G(ists and is readable.).15 E F1108 358.8 Q F2(\214le)2.5 E F0 +-.35(Tr)144 358.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and has a size greater than zero.).15 E F1108 370.8 Q F2(fd) +2.5 E F0 -.35(Tr)144 370.8 S(ue if \214le descriptor).35 E F2(fd)4.47 E +F0(is open and refers to a terminal.)3.27 E F1108 382.8 Q F2 +(\214le)2.5 E F0 -.35(Tr)144 382.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and its set-user).15 E(-id bit is set.)-.2 E F1108 +394.8 Q F2(\214le)2.5 E F0 -.35(Tr)144 394.8 S(ue if).35 E F2(\214le)2.5 +E F0 -.15(ex)2.5 G(ists and is writable.).15 E F1108 406.8 Q F2 +(\214le)2.5 E F0 -.35(Tr)144 406.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15 (ex)2.5 G(ists and is e).15 E -.15(xe)-.15 G(cutable.).15 E F1108 -330 Q F2(\214le)2.5 E F0 -.35(Tr)144 330 S(ue if).35 E F2(\214le)2.5 E -F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E(fecti)-.25 E -.3 -.15(ve g)-.25 H(roup id.).15 E F1108 342 Q F2(\214le)2.5 E F0 --.35(Tr)144 342 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a symbolic link.).15 E F1108 354 Q F2(\214le)2.5 E F0 --.35(Tr)144 354 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G +418.8 Q F2(\214le)2.5 E F0 -.35(Tr)144 418.8 S(ue if).35 E F2(\214le)2.5 +E F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E(fecti)-.25 +E .3 -.15(ve g)-.25 H(roup id.).15 E F1108 430.8 Q F2(\214le)2.5 E +F0 -.35(Tr)144 430.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and is a symbolic link.).15 E F1108 442.8 Q F2(\214le)2.5 E +F0 -.35(Tr)144 442.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G (ists and has been modi\214ed since it w).15 E(as last read.)-.1 E F1 -108 366 Q F2(\214le)2.5 E F0 -.35(Tr)144 366 S(ue if).35 E F2 +108 454.8 Q F2(\214le)2.5 E F0 -.35(Tr)144 454.8 S(ue if).35 E F2 (\214le)2.5 E F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E -(fecti)-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F1108 378 Q F2 -(\214le)2.5 E F0 -.35(Tr)144 378 S(ue if).35 E F2(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists and is a sock).15 E(et.)-.1 E F2(\214le1)108 390 Q F1 -(\255ef)2.5 E F2(\214le2)2.5 E F0 -.35(Tr)144 402 S(ue if).35 E F2 +(fecti)-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F1108 466.8 Q F2 +(\214le)2.5 E F0 -.35(Tr)144 466.8 S(ue if).35 E F2(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and is a sock).15 E(et.)-.1 E F2(\214le1)108 478.8 Q F1 +(\255ef)2.5 E F2(\214le2)2.5 E F0 -.35(Tr)144 490.8 S(ue if).35 E F2 (\214le1)2.5 E F0(and)2.5 E F2(\214le2)2.5 E F0(refer to the same de)2.5 -E(vice and inode numbers.)-.25 E F2(\214le1)108 414 Q F02.5 E F1(nt) -A F2(\214le2)2.5 E F0 -.35(Tr)144 426 S(ue if).35 E F2(\214le1)2.5 E F0 -(is ne)2.5 E(wer \(according to modi\214cation date\) than)-.25 E F2 +E(vice and inode numbers.)-.25 E F2(\214le1)108 502.8 Q F02.5 E F1 +(nt)A F2(\214le2)2.5 E F0 -.35(Tr)144 514.8 S(ue if).35 E F2(\214le1)2.5 +E F0(is ne)2.5 E(wer \(according to modi\214cation date\) than)-.25 E F2 (\214le2)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F2(\214le1)2.5 E F0 -.15(ex)2.5 G(ists and).15 E F2(\214le2)2.5 E F0(does not.)2.5 E F2 -(\214le1)108 438 Q F02.5 E F1(ot)A F2(\214le2)2.5 E F0 -.35(Tr)144 -450 S(ue if).35 E F2(\214le1)2.5 E F0(is older than)2.5 E F2(\214le2)2.5 -E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F2(\214le2)2.5 E F0 -.15(ex)2.5 G -(ists and).15 E F2(\214le1)2.5 E F0(does not.)2.5 E F1108 462 Q F2 -(optname)2.5 E F0 -.35(Tr)144 474 S .263(ue if the shell option).35 F F2 -(optname)2.992 E F0 .262(is enabled.)2.942 F .262 +(\214le1)108 526.8 Q F02.5 E F1(ot)A F2(\214le2)2.5 E F0 -.35(Tr)144 +538.8 S(ue if).35 E F2(\214le1)2.5 E F0(is older than)2.5 E F2(\214le2) +2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F2(\214le2)2.5 E F0 -.15(ex)2.5 +G(ists and).15 E F2(\214le1)2.5 E F0(does not.)2.5 E F1108 550.8 Q +F2(optname)2.5 E F0 -.35(Tr)144 562.8 S .263(ue if the shell option).35 +F F2(optname)2.992 E F0 .262(is enabled.)2.942 F .262 (See the list of options under the description of the)5.262 F F1 -2.762 E F0(option to the)144 486 Q F1(set)2.5 E F0 -.2(bu)2.5 G -(iltin belo).2 E -.65(w.)-.25 G F1108 498 Q F2(varname)2.5 E F0 --.35(Tr)144 510 S(ue if the shell v).35 E(ariable)-.25 E F2(varname)2.79 -E F0(is set \(has been assigned a v)2.68 E(alue\).)-.25 E F1108 -522 Q F2(varname)2.5 E F0 -.35(Tr)144 534 S(ue if the shell v).35 E -(ariable)-.25 E F2(varname)2.79 E F0(is set and is a name reference.) -2.68 E F1108 546 Q F2(string)2.5 E F0 -.35(Tr)144 558 S -(ue if the length of).35 E F2(string)2.5 E F0(is zero.)2.5 E F2(string) -108 570 Q F1108 582 Q F2(string)2.5 E F0 -.35(Tr)144 594 S -(ue if the length of).35 E F2(string)2.84 E F0(is non-zero.)2.72 E F2 -(string1)108 610.8 Q F1(==)2.5 E F2(string2)2.5 E(string1)108 622.8 Q F1 -(=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 634.8 S .861 -(ue if the strings are equal.).35 F F1(=)5.861 E F0 .861 -(should be used with the)3.361 F F1(test)3.361 E F0 .862 -(command for POSIX conformance.)3.362 F .447(When used with the)144 -646.8 R F1([[)2.946 E F0 .446 -(command, this performs pattern matching as described abo)2.946 F .746 --.15(ve \()-.15 H F1(Compound).15 E(Commands)144 658.8 Q F0(\).)A F2 -(string1)108 675.6 Q F1(!=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 687.6 S -(ue if the strings are not equal.).35 E F2(string1)108 704.4 Q F1(<)2.5 -E F2(string2)2.5 E F0 -.35(Tr)144 716.4 S(ue if).35 E F2(string1)2.5 E -F0(sorts before)2.5 E F2(string2)2.5 E F0(le)2.5 E(xicographically)-.15 -E(.)-.65 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(35)193.45 E 0 Cg -EP +2.762 E F0(option to the)144 574.8 Q F1(set)2.5 E F0 -.2(bu)2.5 G +(iltin belo).2 E -.65(w.)-.25 G F1108 586.8 Q F2(varname)2.5 E F0 +-.35(Tr)144 598.8 S(ue if the shell v).35 E(ariable)-.25 E F2(varname) +2.79 E F0(is set \(has been assigned a v)2.68 E(alue\).)-.25 E F1 +108 610.8 Q F2(varname)2.5 E F0 -.35(Tr)144 622.8 S(ue if the shell v) +.35 E(ariable)-.25 E F2(varname)2.79 E F0 +(is set and is a name reference.)2.68 E F1108 634.8 Q F2(string) +2.5 E F0 -.35(Tr)144 646.8 S(ue if the length of).35 E F2(string)2.5 E +F0(is zero.)2.5 E F2(string)108 658.8 Q F1108 670.8 Q F2(string) +2.5 E F0 -.35(Tr)144 682.8 S(ue if the length of).35 E F2(string)2.84 E +F0(is non-zero.)2.72 E F2(string1)108 699.6 Q F1(==)2.5 E F2(string2)2.5 +E F0(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(35)199.835 E 0 Cg EP %%Page: 36 36 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 -/Times-Italic@0 SF(string1)108 84 Q/F2 10/Times-Bold@0 SF(>)2.5 E F1 -(string2)2.5 E F0 -.35(Tr)144 96 S(ue if).35 E F1(string1)2.5 E F0 -(sorts after)2.5 E F1(string2)2.5 E F0(le)2.5 E(xicographically)-.15 E -(.)-.65 E F1(ar)108.33 112.8 Q(g1)-.37 E F2(OP)2.5 E F1(ar)2.5 E(g2)-.37 -E/F3 9/Times-Bold@0 SF(OP)144 124.8 Q F0 .385(is one of)2.634 F F2 -(\255eq)2.885 E F0(,)A F2(\255ne)2.885 E F0(,)A F2(\255lt)2.885 E F0(,)A -F2(\255le)2.885 E F0(,)A F2(\255gt)2.885 E F0 2.885(,o)C(r)-2.885 E F2 -(\255ge)2.885 E F0 5.385(.T)C .385 -(hese arithmetic binary operators return true if)-5.385 F F1(ar)2.885 E -(g1)-.37 E F0 .845(is equal to, not equal to, less than, less than or e\ -qual to, greater than, or greater than or equal to)144 136.8 R F1(ar)144 -148.8 Q(g2)-.37 E F0 3.589(,r)C(especti)-3.589 E -.15(ve)-.25 G(ly).15 E -(.)-.65 E F1(Ar)7.099 E(g1)-.37 E F0(and)3.589 E F1(ar)3.919 E(g2)-.37 E -F0 1.089(may be positi)3.609 F 1.389 -.15(ve o)-.25 H 3.589(rn).15 G --2.25 -.15(eg a)-3.589 H(ti).15 E 1.389 -.15(ve i)-.25 H(nte).15 E 3.59 -(gers. When)-.15 F 1.09(used with the)3.59 F F2([[)3.59 E F0(command,) -144 160.8 Q F1(Ar)4.447 E(g1)-.37 E F0(and)3.437 E F1(Ar)4.447 E(g2)-.37 -E F0 .937(are e)3.457 F -.25(va)-.25 G .937(luated as arithmetic e).25 F -.937(xpressions \(see)-.15 F F3 .937(ARITHMETIC EV)3.437 F(ALU)-1.215 E -(A-)-.54 E(TION)144 172.8 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E/F4 -10.95/Times-Bold@0 SF(SIMPLE COMMAND EXP)72 189.6 Q(ANSION)-.81 E F0 -.613(When a simple command is e)108 201.6 R -.15(xe)-.15 G .614 +/Times-Italic@0 SF(string1)108 84 Q/F2 10/Times-Bold@0 SF(=)2.5 E F1 +(string2)2.5 E F0 -.35(Tr)144 96 S .861(ue if the strings are equal.).35 +F F2(=)5.861 E F0 .861(should be used with the)3.361 F F2(test)3.361 E +F0 .862(command for POSIX conformance.)3.362 F .447(When used with the) +144 108 R F2([[)2.946 E F0 .446 +(command, this performs pattern matching as described abo)2.946 F .746 +-.15(ve \()-.15 H F2(Compound).15 E(Commands)144 120 Q F0(\).)A F1 +(string1)108 136.8 Q F2(!=)2.5 E F1(string2)2.5 E F0 -.35(Tr)144 148.8 S +(ue if the strings are not equal.).35 E F1(string1)108 165.6 Q F2(<)2.5 +E F1(string2)2.5 E F0 -.35(Tr)144 177.6 S(ue if).35 E F1(string1)2.5 E +F0(sorts before)2.5 E F1(string2)2.5 E F0(le)2.5 E(xicographically)-.15 +E(.)-.65 E F1(string1)108 194.4 Q F2(>)2.5 E F1(string2)2.5 E F0 -.35 +(Tr)144 206.4 S(ue if).35 E F1(string1)2.5 E F0(sorts after)2.5 E F1 +(string2)2.5 E F0(le)2.5 E(xicographically)-.15 E(.)-.65 E F1(ar)108.33 +223.2 Q(g1)-.37 E F2(OP)2.5 E F1(ar)2.5 E(g2)-.37 E/F3 9/Times-Bold@0 SF +(OP)144 235.2 Q F0 .385(is one of)2.634 F F2(\255eq)2.885 E F0(,)A F2 +(\255ne)2.885 E F0(,)A F2(\255lt)2.885 E F0(,)A F2(\255le)2.885 E F0(,)A +F2(\255gt)2.885 E F0 2.885(,o)C(r)-2.885 E F2(\255ge)2.885 E F0 5.385 +(.T)C .385(hese arithmetic binary operators return true if)-5.385 F F1 +(ar)2.885 E(g1)-.37 E F0 .845(is equal to, not equal to, less than, les\ +s than or equal to, greater than, or greater than or equal to)144 247.2 +R F1(ar)144 259.2 Q(g2)-.37 E F0 3.589(,r)C(especti)-3.589 E -.15(ve) +-.25 G(ly).15 E(.)-.65 E F1(Ar)7.099 E(g1)-.37 E F0(and)3.589 E F1(ar) +3.919 E(g2)-.37 E F0 1.089(may be positi)3.609 F 1.389 -.15(ve o)-.25 H +3.589(rn).15 G -2.25 -.15(eg a)-3.589 H(ti).15 E 1.389 -.15(ve i)-.25 H +(nte).15 E 3.59(gers. When)-.15 F 1.09(used with the)3.59 F F2([[)3.59 E +F0(command,)144 271.2 Q F1(Ar)4.447 E(g1)-.37 E F0(and)3.437 E F1(Ar) +4.447 E(g2)-.37 E F0 .937(are e)3.457 F -.25(va)-.25 G .937 +(luated as arithmetic e).25 F .937(xpressions \(see)-.15 F F3 .937 +(ARITHMETIC EV)3.437 F(ALU)-1.215 E(A-)-.54 E(TION)144 283.2 Q F0(abo) +2.25 E -.15(ve)-.15 G(\).).15 E/F4 10.95/Times-Bold@0 SF +(SIMPLE COMMAND EXP)72 300 Q(ANSION)-.81 E F0 .613 +(When a simple command is e)108 312 R -.15(xe)-.15 G .614 (cuted, the shell performs the follo).15 F .614(wing e)-.25 F .614 (xpansions, assignments, and redi-)-.15 F -(rections, from left to right, in the follo)108 213.6 Q(wing order)-.25 -E(.)-.55 E(1.)108 230.4 Q 1.849(The w)144 230.4 R 1.849 +(rections, from left to right, in the follo)108 324 Q(wing order)-.25 E +(.)-.55 E(1.)108 340.8 Q 1.849(The w)144 340.8 R 1.849 (ords that the parser has mark)-.1 F 1.848(ed as v)-.1 F 1.848 (ariable assignments \(those preceding the command)-.25 F -(name\) and redirections are sa)144 242.4 Q -.15(ve)-.2 G 2.5(df).15 G -(or later processing.)-2.5 E(2.)108 259.2 Q .179(The w)144 259.2 R .179 +(name\) and redirections are sa)144 352.8 Q -.15(ve)-.2 G 2.5(df).15 G +(or later processing.)-2.5 E(2.)108 369.6 Q .179(The w)144 369.6 R .179 (ords that are not v)-.1 F .179 (ariable assignments or redirections are e)-.25 F 2.68(xpanded. If)-.15 F(an)2.68 E 2.68(yw)-.15 G .18(ords remain af-)-2.78 F .347(ter e)144 -271.2 R .347(xpansion, the \214rst w)-.15 F .347(ord is tak)-.1 F .347 +381.6 R .347(xpansion, the \214rst w)-.15 F .347(ord is tak)-.1 F .347 (en to be the name of the command and the remaining w)-.1 F .346 -(ords are)-.1 F(the ar)144 283.2 Q(guments.)-.18 E(3.)108 300 Q -(Redirections are performed as described abo)144 300 Q .3 -.15(ve u)-.15 -H(nder).15 E F3(REDIRECTION)2.5 E/F5 9/Times-Roman@0 SF(.)A F0(4.)108 -316.8 Q .716(The te)144 316.8 R .717(xt after the)-.15 F F2(=)3.217 E F0 -.717(in each v)3.217 F .717(ariable assignment under)-.25 F .717 +(ords are)-.1 F(the ar)144 393.6 Q(guments.)-.18 E(3.)108 410.4 Q +(Redirections are performed as described abo)144 410.4 Q .3 -.15(ve u) +-.15 H(nder).15 E F3(REDIRECTION)2.5 E/F5 9/Times-Roman@0 SF(.)A F0(4.) +108 427.2 Q .716(The te)144 427.2 R .717(xt after the)-.15 F F2(=)3.217 +E F0 .717(in each v)3.217 F .717(ariable assignment under)-.25 F .717 (goes tilde e)-.18 F .717(xpansion, parameter e)-.15 F(xpansion,)-.15 E -.34(command substitution, arithmetic e)144 328.8 R .339 +.34(command substitution, arithmetic e)144 439.2 R .339 (xpansion, and quote remo)-.15 F -.25(va)-.15 G 2.839(lb).25 G .339 -(efore being assigned to the v)-2.839 F(ari-)-.25 E(able.)144 340.8 Q -.586(If no command name results, the v)108 357.6 R .586 +(efore being assigned to the v)-2.839 F(ari-)-.25 E(able.)144 451.2 Q +.586(If no command name results, the v)108 468 R .586 (ariable assignments af)-.25 F .586(fect the current shell en)-.25 F 3.087(vironment. In)-.4 F .587(the case of)3.087 F .371(such a command \ \(one that consists only of assignment statements and redirections\), a\ -ssignment statements)108 369.6 R .835 -(are performed before redirections.)108 381.6 R .835(Otherwise, the v) -5.835 F .835(ariables are added to the en)-.25 F .835 -(vironment of the e)-.4 F -.15(xe)-.15 G(cuted).15 E .839 -(command and do not af)108 393.6 R .838(fect the current shell en)-.25 F -3.338(vironment. If)-.4 F(an)3.338 E 3.338(yo)-.15 G 3.338(ft)-3.338 G -.838(he assignments attempts to assign a)-3.338 F -.25(va)108 405.6 S +ssignment statements)108 480 R .835(are performed before redirections.) +108 492 R .835(Otherwise, the v)5.835 F .835 +(ariables are added to the en)-.25 F .835(vironment of the e)-.4 F -.15 +(xe)-.15 G(cuted).15 E .839(command and do not af)108 504 R .838 +(fect the current shell en)-.25 F 3.338(vironment. If)-.4 F(an)3.338 E +3.338(yo)-.15 G 3.338(ft)-3.338 G .838 +(he assignments attempts to assign a)-3.338 F -.25(va)108 516 S (lue to a readonly v).25 E(ariable, an error occurs, and the command e) -.25 E(xits with a non-zero status.)-.15 E .149 -(If no command name results, redirections are performed, b)108 422.4 R +(If no command name results, redirections are performed, b)108 532.8 R .149(ut do not af)-.2 F .15(fect the current shell en)-.25 F 2.65 -(vironment. A)-.4 F(redirection error causes the command to e)108 434.4 +(vironment. A)-.4 F(redirection error causes the command to e)108 544.8 Q(xit with a non-zero status.)-.15 E 1.064 -(If there is a command name left after e)108 451.2 R 1.064(xpansion, e) +(If there is a command name left after e)108 561.6 R 1.064(xpansion, e) -.15 F -.15(xe)-.15 G 1.064(cution proceeds as described belo).15 F 4.864 -.65(w. O)-.25 H 1.064(therwise, the).65 F .068(command e)108 -463.2 R 2.568(xits. If)-.15 F .069(one of the e)2.568 F .069 +573.6 R 2.568(xits. If)-.15 F .069(one of the e)2.568 F .069 (xpansions contained a command substitution, the e)-.15 F .069 -(xit status of the command)-.15 F .467(is the e)108 475.2 R .466 +(xit status of the command)-.15 F .467(is the e)108 585.6 R .466 (xit status of the last command substitution performed.)-.15 F .466 -(If there were no command substitutions, the)5.466 F(command e)108 487.2 -Q(xits with a status of zero.)-.15 E F4(COMMAND EXECUTION)72 504 Q F0 -.546(After a command has been split into w)108 516 R .547 +(If there were no command substitutions, the)5.466 F(command e)108 597.6 +Q(xits with a status of zero.)-.15 E F4(COMMAND EXECUTION)72 614.4 Q F0 +.546(After a command has been split into w)108 626.4 R .547 (ords, if it results in a simple command and an optional list of ar)-.1 -F(gu-)-.18 E(ments, the follo)108 528 Q(wing actions are tak)-.25 E(en.) --.1 E .379(If the command name contains no slashes, the shell attempts \ -to locate it.)108 544.8 R .379(If there e)5.379 F .379 +F(gu-)-.18 E(ments, the follo)108 638.4 Q(wing actions are tak)-.25 E +(en.)-.1 E .379(If the command name contains no slashes, the shell atte\ +mpts to locate it.)108 655.2 R .379(If there e)5.379 F .379 (xists a shell function by)-.15 F .246(that name, that function is in) -108 556.8 R -.2(vo)-.4 G -.1(ke).2 G 2.746(da).1 G 2.746(sd)-2.746 G +108 667.2 R -.2(vo)-.4 G -.1(ke).2 G 2.746(da).1 G 2.746(sd)-2.746 G .246(escribed abo)-2.746 F .546 -.15(ve i)-.15 H(n).15 E F3(FUNCTIONS) 2.746 E F5(.)A F0 .246(If the name does not match a func-)4.746 F -(tion, the shell searches for it in the list of shell b)108 568.8 Q 2.5 +(tion, the shell searches for it in the list of shell b)108 679.2 Q 2.5 (uiltins. If)-.2 F 2.5(am)2.5 G(atch is found, that b)-2.5 E (uiltin is in)-.2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E .31 -(If the name is neither a shell function nor a b)108 585.6 R .309 +(If the name is neither a shell function nor a b)108 696 R .309 (uiltin, and contains no slashes,)-.2 F F2(bash)2.809 E F0 .309 -(searches each element of)2.809 F(the)108 597.6 Q F3 -.666(PA)3.162 G -(TH)-.189 E F0 .662(for a directory containing an e)2.912 F -.15(xe)-.15 -G .662(cutable \214le by that name.).15 F F2(Bash)5.662 E F0 .663 +(searches each element of)2.809 F(the)108 708 Q F3 -.666(PA)3.162 G(TH) +-.189 E F0 .662(for a directory containing an e)2.912 F -.15(xe)-.15 G +.662(cutable \214le by that name.).15 F F2(Bash)5.662 E F0 .663 (uses a hash table to remember)3.162 F 1.915(the full pathnames of e)108 -609.6 R -.15(xe)-.15 G 1.915(cutable \214les \(see).15 F F2(hash)4.415 E +720 R -.15(xe)-.15 G 1.915(cutable \214les \(see).15 F F2(hash)4.415 E F0(under)4.415 E F3 1.915(SHELL B)4.415 F(UIL)-.09 E 1.914(TIN COMMANDS) --.828 F F0(belo)4.164 E 4.414(w\). A)-.25 F(full)4.414 E .719 -(search of the directories in)108 621.6 R F3 -.666(PA)3.219 G(TH)-.189 E -F0 .72(is performed only if the command is not found in the hash table.) -2.969 F .72(If the)5.72 F .956(search is unsuccessful, the shell search\ -es for a de\214ned shell function named)108 633.6 R F2(command_not_f) -3.455 E(ound_han-)-.25 E(dle)108 645.6 Q F0 6.005(.I)C 3.505(ft)-6.005 G -1.005(hat function e)-3.505 F 1.005(xists, it is in)-.15 F -.2(vo)-.4 G --.1(ke).2 G 3.506(di).1 G 3.506(nas)-3.506 G 1.006(eparate e)-3.506 F --.15(xe)-.15 G 1.006(cution en).15 F 1.006 -(vironment with the original command)-.4 F .256 -(and the original command')108 657.6 R 2.756(sa)-.55 G -.18(rg)-2.756 G -.256(uments as its ar).18 F .256(guments, and the function')-.18 F 2.755 -(se)-.55 G .255(xit status becomes the e)-2.905 F .255(xit sta-)-.15 F -.263(tus of that subshell.)108 669.6 R .263(If that function is not de\ -\214ned, the shell prints an error message and returns an e)5.263 F .263 -(xit sta-)-.15 F(tus of 127.)108 681.6 Q 1.089(If the search is success\ -ful, or if the command name contains one or more slashes, the shell e) -108 698.4 R -.15(xe)-.15 G 1.089(cutes the).15 F .197 -(named program in a separate e)108 710.4 R -.15(xe)-.15 G .197 -(cution en).15 F 2.698(vironment. Ar)-.4 F .198 -(gument 0 is set to the name gi)-.18 F -.15(ve)-.25 G .198 -(n, and the remain-).15 F(ing ar)108 722.4 Q -(guments to the command are set to the ar)-.18 E(guments gi)-.18 E -.15 -(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(36)193.45 E 0 Cg EP +-.828 F F0(belo)4.164 E 4.414(w\). A)-.25 F(full)4.414 E(GNU Bash 5.2)72 +768 Q(2022 June 3)150.675 E(36)199.835 E 0 Cg EP %%Page: 37 37 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.049(If this e) -108 84 R -.15(xe)-.15 G 1.049(cution f).15 F 1.049 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .719 +(search of the directories in)108 84 R/F1 9/Times-Bold@0 SF -.666(PA) +3.219 G(TH)-.189 E F0 .72 +(is performed only if the command is not found in the hash table.)2.969 +F .72(If the)5.72 F .956(search is unsuccessful, the shell searches for\ + a de\214ned shell function named)108 96 R/F2 10/Times-Bold@0 SF +(command_not_f)3.455 E(ound_han-)-.25 E(dle)108 108 Q F0 6.005(.I)C +3.505(ft)-6.005 G 1.005(hat function e)-3.505 F 1.005(xists, it is in) +-.15 F -.2(vo)-.4 G -.1(ke).2 G 3.506(di).1 G 3.506(nas)-3.506 G 1.006 +(eparate e)-3.506 F -.15(xe)-.15 G 1.006(cution en).15 F 1.006 +(vironment with the original command)-.4 F .256 +(and the original command')108 120 R 2.756(sa)-.55 G -.18(rg)-2.756 G +.256(uments as its ar).18 F .256(guments, and the function')-.18 F 2.755 +(se)-.55 G .255(xit status becomes the e)-2.905 F .255(xit sta-)-.15 F +.263(tus of that subshell.)108 132 R .263(If that function is not de\ +\214ned, the shell prints an error message and returns an e)5.263 F .263 +(xit sta-)-.15 F(tus of 127.)108 144 Q 1.089(If the search is successfu\ +l, or if the command name contains one or more slashes, the shell e)108 +160.8 R -.15(xe)-.15 G 1.089(cutes the).15 F .197 +(named program in a separate e)108 172.8 R -.15(xe)-.15 G .197 +(cution en).15 F 2.698(vironment. Ar)-.4 F .198 +(gument 0 is set to the name gi)-.18 F -.15(ve)-.25 G .198 +(n, and the remain-).15 F(ing ar)108 184.8 Q +(guments to the command are set to the ar)-.18 E(guments gi)-.18 E -.15 +(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.049(If this e)108 201.6 R +-.15(xe)-.15 G 1.049(cution f).15 F 1.049 (ails because the \214le is not in e)-.1 F -.15(xe)-.15 G 1.048 (cutable format, and the \214le is not a directory).15 F 3.548(,i)-.65 G 3.548(ti)-3.548 G 3.548(sa)-3.548 G(s-)-3.548 E .143(sumed to be a)108 -96 R/F1 10/Times-Italic@0 SF .143(shell script)2.643 F F0 2.643(,a\214)C -.143(le containing shell commands, and the shell creates a ne)-2.643 F -2.643(wi)-.25 G .143(nstance of itself to)-2.643 F -.15(exe)108 108 S -.137(cute it.).15 F .137 +213.6 R/F3 10/Times-Italic@0 SF .143(shell script)2.643 F F0 2.643 +(,a\214)C .143(le containing shell commands, and the shell creates a ne) +-2.643 F 2.643(wi)-.25 G .143(nstance of itself to)-2.643 F -.15(exe)108 +225.6 S .137(cute it.).15 F .137 (This subshell reinitializes itself, so that the ef)5.137 F .136 (fect is as if a ne)-.25 F 2.636(ws)-.25 G .136(hell had been in)-2.636 F -.2(vo)-.4 G -.1(ke).2 G 2.636(dt).1 G 2.636(oh)-2.636 G(andle)-2.636 -E .865(the script, with the e)108 120 R .866 +E .865(the script, with the e)108 237.6 R .866 (xception that the locations of commands remembered by the parent \(see) --.15 F/F2 10/Times-Bold@0 SF(hash)3.366 E F0(belo)3.366 E(w)-.25 E -(under)108 132 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E(UIL)-.09 E -(TIN COMMANDS)-.828 E/F4 9/Times-Roman@0 SF(\))A F0 -(are retained by the child.)2.25 E .348(If the program is a \214le be) -108 148.8 R .348(ginning with)-.15 F F2(#!)2.848 E F0 2.848(,t)C .347(h\ -e remainder of the \214rst line speci\214es an interpreter for the pro-) --2.848 F 3.178(gram. The)108 160.8 R .678(shell e)3.178 F -.15(xe)-.15 G -.678(cutes the speci\214ed interpreter on operating systems that do not\ - handle this e).15 F -.15(xe)-.15 G(cutable).15 E .206(format themselv) -108 172.8 R 2.706(es. The)-.15 F(ar)2.706 E .206 -(guments to the interpreter consist of a single optional ar)-.18 F .206 -(gument follo)-.18 F .206(wing the in-)-.25 F .267 -(terpreter name on the \214rst line of the program, follo)108 184.8 R +-.15 F F2(hash)3.366 E F0(belo)3.366 E(w)-.25 E(under)108 249.6 Q F1 +(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E/F4 9/Times-Roman@0 SF(\)) +A F0(are retained by the child.)2.25 E .348 +(If the program is a \214le be)108 266.4 R .348(ginning with)-.15 F F2 +(#!)2.848 E F0 2.848(,t)C .347(he remainder of the \214rst line speci\ +\214es an interpreter for the pro-)-2.848 F 3.178(gram. The)108 278.4 R +.678(shell e)3.178 F -.15(xe)-.15 G .678(cutes the speci\214ed interpre\ +ter on operating systems that do not handle this e).15 F -.15(xe)-.15 G +(cutable).15 E .206(format themselv)108 290.4 R 2.706(es. The)-.15 F(ar) +2.706 E .206(guments to the interpreter consist of a single optional ar) +-.18 F .206(gument follo)-.18 F .206(wing the in-)-.25 F .267 +(terpreter name on the \214rst line of the program, follo)108 302.4 R .268(wed by the name of the program, follo)-.25 F .268(wed by the com-) --.25 F(mand ar)108 196.8 Q(guments, if an)-.18 E -.65(y.)-.15 G/F5 10.95 -/Times-Bold@0 SF(COMMAND EXECUTION ENVIR)72 213.6 Q(ONMENT)-.329 E F0 -(The shell has an)108 225.6 Q F1 -.2(ex)2.5 G(ecution en).2 E(vir)-.4 E +-.25 F(mand ar)108 314.4 Q(guments, if an)-.18 E -.65(y.)-.15 G/F5 10.95 +/Times-Bold@0 SF(COMMAND EXECUTION ENVIR)72 331.2 Q(ONMENT)-.329 E F0 +(The shell has an)108 343.2 Q F3 -.2(ex)2.5 G(ecution en).2 E(vir)-.4 E (onment)-.45 E F0 2.5(,w)C(hich consists of the follo)-2.5 E(wing:)-.25 -E<83>108 242.4 Q 1.406(open \214les inherited by the shell at in)144 -242.4 R -.2(vo)-.4 G 1.405 +E<83>108 360 Q 1.406(open \214les inherited by the shell at in)144 360 R +-.2(vo)-.4 G 1.405 (cation, as modi\214ed by redirections supplied to the).2 F F2(exec) -3.905 E F0 -.2(bu)144 254.4 S(iltin).2 E<83>108 271.2 Q(the current w) -144 271.2 Q(orking directory as set by)-.1 E F2(cd)2.5 E F0(,)A F2 -(pushd)2.5 E F0 2.5(,o)C(r)-2.5 E F2(popd)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 -G(nherited by the shell at in)-2.5 E -.2(vo)-.4 G(cation).2 E<83>108 288 -Q(the \214le creation mode mask as set by)144 288 Q F2(umask)2.5 E F0 -(or inherited from the shell')2.5 E 2.5(sp)-.55 G(arent)-2.5 E<83>108 -304.8 Q(current traps set by)144 304.8 Q F2(trap)2.5 E F0<83>108 321.6 Q -.256(shell parameters that are set by v)144 321.6 R .256 +3.905 E F0 -.2(bu)144 372 S(iltin).2 E<83>108 388.8 Q(the current w)144 +388.8 Q(orking directory as set by)-.1 E F2(cd)2.5 E F0(,)A F2(pushd)2.5 +E F0 2.5(,o)C(r)-2.5 E F2(popd)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G +(nherited by the shell at in)-2.5 E -.2(vo)-.4 G(cation).2 E<83>108 +405.6 Q(the \214le creation mode mask as set by)144 405.6 Q F2(umask)2.5 +E F0(or inherited from the shell')2.5 E 2.5(sp)-.55 G(arent)-2.5 E<83> +108 422.4 Q(current traps set by)144 422.4 Q F2(trap)2.5 E F0<83>108 +439.2 Q .256(shell parameters that are set by v)144 439.2 R .256 (ariable assignment or with)-.25 F F2(set)2.756 E F0 .257 (or inherited from the shell')2.756 F 2.757(sp)-.55 G(arent)-2.757 E -(in the en)144 333.6 Q(vironment)-.4 E<83>108 350.4 Q -(shell functions de\214ned during e)144 350.4 Q -.15(xe)-.15 G +(in the en)144 451.2 Q(vironment)-.4 E<83>108 468 Q +(shell functions de\214ned during e)144 468 Q -.15(xe)-.15 G (cution or inherited from the shell').15 E 2.5(sp)-.55 G -(arent in the en)-2.5 E(vironment)-.4 E<83>108 367.2 Q -(options enabled at in)144 367.2 Q -.2(vo)-.4 G(cation \(either by def) +(arent in the en)-2.5 E(vironment)-.4 E<83>108 484.8 Q +(options enabled at in)144 484.8 Q -.2(vo)-.4 G(cation \(either by def) .2 E(ault or with command-line ar)-.1 E(guments\) or by)-.18 E F2(set) -2.5 E F0<83>108 384 Q(options enabled by)144 384 Q F2(shopt)2.5 E F0<83> -108 400.8 Q(shell aliases de\214ned with)144 400.8 Q F2(alias)2.5 E F0 -<83>108 417.6 Q -.25(va)144 417.6 S +2.5 E F0<83>108 501.6 Q(options enabled by)144 501.6 Q F2(shopt)2.5 E F0 +<83>108 518.4 Q(shell aliases de\214ned with)144 518.4 Q F2(alias)2.5 E +F0<83>108 535.2 Q -.25(va)144 535.2 S (rious process IDs, including those of background jobs, the v).25 E (alue of)-.25 E F2($$)2.5 E F0 2.5(,a)C(nd the v)-2.5 E(alue of)-.25 E -F3(PPID)2.5 E F0 .427(When a simple command other than a b)108 434.4 R +F1(PPID)2.5 E F0 .427(When a simple command other than a b)108 552 R .426(uiltin or shell function is to be e)-.2 F -.15(xe)-.15 G .426 (cuted, it is in).15 F -.2(vo)-.4 G -.1(ke).2 G 2.926(di).1 G 2.926(nas) --2.926 G(eparate)-2.926 E -.15(exe)108 446.4 S .133(cution en).15 F .133 +-2.926 G(eparate)-2.926 E -.15(exe)108 564 S .133(cution en).15 F .133 (vironment that consists of the follo)-.4 F 2.634(wing. Unless)-.25 F .134(otherwise noted, the v)2.634 F .134(alues are inherited from)-.25 F -(the shell.)108 458.4 Q<83>108 475.2 Q 1.056(the shell')144 475.2 R -3.556(so)-.55 G 1.056(pen \214les, plus an)-3.556 F 3.556(ym)-.15 G -1.056 +(the shell.)108 576 Q<83>108 592.8 Q 1.056(the shell')144 592.8 R 3.556 +(so)-.55 G 1.056(pen \214les, plus an)-3.556 F 3.556(ym)-.15 G 1.056 (odi\214cations and additions speci\214ed by redirections to the com-) --3.556 F(mand)144 487.2 Q<83>108 504 Q(the current w)144 504 Q -(orking directory)-.1 E<83>108 520.8 Q(the \214le creation mode mask)144 -520.8 Q<83>108 537.6 Q .856(shell v)144 537.6 R .857 +-3.556 F(mand)144 604.8 Q<83>108 621.6 Q(the current w)144 621.6 Q +(orking directory)-.1 E<83>108 638.4 Q(the \214le creation mode mask)144 +638.4 Q<83>108 655.2 Q .856(shell v)144 655.2 R .857 (ariables and functions mark)-.25 F .857(ed for e)-.1 F .857 (xport, along with v)-.15 F .857(ariables e)-.25 F .857 -(xported for the command,)-.15 F(passed in the en)144 549.6 Q(vironment) --.4 E<83>108 566.4 Q .307(traps caught by the shell are reset to the v) -144 566.4 R .306(alues inherited from the shell')-.25 F 2.806(sp)-.55 G -.306(arent, and traps ignored)-2.806 F(by the shell are ignored)144 -578.4 Q 2.5(Ac)108 595.2 S(ommand in)-2.5 E -.2(vo)-.4 G -.1(ke).2 G 2.5 -(di).1 G 2.5(nt)-2.5 G(his separate en)-2.5 E(vironment cannot af)-.4 E +(xported for the command,)-.15 F(passed in the en)144 667.2 Q(vironment) +-.4 E<83>108 684 Q .307(traps caught by the shell are reset to the v)144 +684 R .306(alues inherited from the shell')-.25 F 2.806(sp)-.55 G .306 +(arent, and traps ignored)-2.806 F(by the shell are ignored)144 696 Q +2.5(Ac)108 712.8 S(ommand in)-2.5 E -.2(vo)-.4 G -.1(ke).2 G 2.5(di).1 G +2.5(nt)-2.5 G(his separate en)-2.5 E(vironment cannot af)-.4 E (fect the shell')-.25 E 2.5(se)-.55 G -.15(xe)-2.65 G(cution en).15 E -(vironment.)-.4 E(A)108 612 Q F1(subshell)2.5 E F0(is a cop)2.5 E 2.5 -(yo)-.1 G 2.5(ft)-2.5 G(he shell process.)-2.5 E .577(Command substitut\ -ion, commands grouped with parentheses, and asynchronous commands are i\ -n)108 628.8 R -.2(vo)-.4 G -.1(ke).2 G 3.078(di).1 G(n)-3.078 E 2.745 -(as)108 640.8 S .245(ubshell en)-2.745 F .245 -(vironment that is a duplicate of the shell en)-.4 F .244(vironment, e) --.4 F .244(xcept that traps caught by the shell are)-.15 F .358 -(reset to the v)108 652.8 R .358 -(alues that the shell inherited from its parent at in)-.25 F -.2(vo)-.4 -G 2.858(cation. Builtin).2 F .359(commands that are in)2.859 F -.2(vo) --.4 G -.1(ke).2 G(d).1 E .857(as part of a pipeline are also e)108 664.8 -R -.15(xe)-.15 G .856(cuted in a subshell en).15 F 3.356 -(vironment. Changes)-.4 F .856(made to the subshell en)3.356 F(viron-) --.4 E(ment cannot af)108 676.8 Q(fect the shell')-.25 E 2.5(se)-.55 G --.15(xe)-2.65 G(cution en).15 E(vironment.)-.4 E 1.376(Subshells spa)108 -693.6 R 1.376(wned to e)-.15 F -.15(xe)-.15 G 1.377 -(cute command substitutions inherit the v).15 F 1.377(alue of the)-.25 F -F23.877 E F0 1.377(option from the parent)3.877 F 2.5(shell. When) -108 705.6 R(not in)2.5 E F1(posix mode)2.5 E F0(,)A F2(bash)2.5 E F0 -(clears the)2.5 E F22.5 E F0(option in such subshells.)2.5 E .405 -(If a command is follo)108 722.4 R .405(wed by a)-.25 F F2(&)2.905 E F0 -.404(and job control is not acti)2.905 F -.15(ve)-.25 G 2.904(,t).15 G -.404(he def)-2.904 F .404(ault standard input for the command)-.1 F -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(37)193.45 E 0 Cg EP +(vironment.)-.4 E(A)108 729.6 Q F3(subshell)2.5 E F0(is a cop)2.5 E 2.5 +(yo)-.1 G 2.5(ft)-2.5 G(he shell process.)-2.5 E(GNU Bash 5.2)72 768 Q +(2022 June 3)150.675 E(37)199.835 E 0 Cg EP %%Page: 38 38 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .197 -(is the empty \214le)108 84 R/F1 10/Times-Italic@0 SF(/de)2.697 E -(v/null)-.15 E F0 5.197(.O)C .197(therwise, the in)-5.197 F -.2(vo)-.4 G --.1(ke).2 G 2.697(dc).1 G .198 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .577(Command subs\ +titution, commands grouped with parentheses, and asynchronous commands \ +are in)108 84 R -.2(vo)-.4 G -.1(ke).2 G 3.078(di).1 G(n)-3.078 E 2.745 +(as)108 96 S .245(ubshell en)-2.745 F .245 +(vironment that is a duplicate of the shell en)-.4 F .244(vironment, e) +-.4 F .244(xcept that traps caught by the shell are)-.15 F .358 +(reset to the v)108 108 R .358 +(alues that the shell inherited from its parent at in)-.25 F -.2(vo)-.4 +G 2.858(cation. Builtin).2 F .359(commands that are in)2.859 F -.2(vo) +-.4 G -.1(ke).2 G(d).1 E .857(as part of a pipeline are also e)108 120 R +-.15(xe)-.15 G .856(cuted in a subshell en).15 F 3.356 +(vironment. Changes)-.4 F .856(made to the subshell en)3.356 F(viron-) +-.4 E(ment cannot af)108 132 Q(fect the shell')-.25 E 2.5(se)-.55 G -.15 +(xe)-2.65 G(cution en).15 E(vironment.)-.4 E 1.376(Subshells spa)108 +148.8 R 1.376(wned to e)-.15 F -.15(xe)-.15 G 1.377 +(cute command substitutions inherit the v).15 F 1.377(alue of the)-.25 F +/F1 10/Times-Bold@0 SF3.877 E F0 1.377(option from the parent) +3.877 F 2.5(shell. When)108 160.8 R(not in)2.5 E/F2 10/Times-Italic@0 SF +(posix mode)2.5 E F0(,)A F1(bash)2.5 E F0(clears the)2.5 E F12.5 E +F0(option in such subshells.)2.5 E .405(If a command is follo)108 177.6 +R .405(wed by a)-.25 F F1(&)2.905 E F0 .404(and job control is not acti) +2.905 F -.15(ve)-.25 G 2.904(,t).15 G .404(he def)-2.904 F .404 +(ault standard input for the command)-.1 F .197(is the empty \214le)108 +189.6 R F2(/de)2.697 E(v/null)-.15 E F0 5.197(.O)C .197 +(therwise, the in)-5.197 F -.2(vo)-.4 G -.1(ke).2 G 2.697(dc).1 G .198 (ommand inherits the \214le descriptors of the calling shell)-2.697 F -(as modi\214ed by redirections.)108 96 Q/F2 10.95/Times-Bold@0 SF(ENVIR) -72 112.8 Q(ONMENT)-.329 E F0 2.344(When a program is in)108 124.8 R -.2 -(vo)-.4 G -.1(ke).2 G 4.843(di).1 G 4.843(ti)-4.843 G 4.843(sg)-4.843 G --2.15 -.25(iv e)-4.843 H 4.843(na).25 G 4.843(na)-4.843 G 2.343 -(rray of strings called the)-4.843 F F1(en)5.033 E(vir)-.4 E(onment)-.45 -E F0 7.343(.T).68 G 2.343(his is a list of)-7.343 F F1(name)108 136.8 Q -F0A F1(value)A F0(pairs, of the form)2.5 E F1(name)2.86 E F0(=)A F1 -(value)A F0(.).18 E .438(The shell pro)108 153.6 R .438(vides se)-.15 F +(as modi\214ed by redirections.)108 201.6 Q/F3 10.95/Times-Bold@0 SF +(ENVIR)72 218.4 Q(ONMENT)-.329 E F0 2.344(When a program is in)108 230.4 +R -.2(vo)-.4 G -.1(ke).2 G 4.843(di).1 G 4.843(ti)-4.843 G 4.843(sg) +-4.843 G -2.15 -.25(iv e)-4.843 H 4.843(na).25 G 4.843(na)-4.843 G 2.343 +(rray of strings called the)-4.843 F F2(en)5.033 E(vir)-.4 E(onment)-.45 +E F0 7.343(.T).68 G 2.343(his is a list of)-7.343 F F2(name)108 242.4 Q +F0A F2(value)A F0(pairs, of the form)2.5 E F2(name)2.86 E F0(=)A F2 +(value)A F0(.).18 E .438(The shell pro)108 259.2 R .438(vides se)-.15 F -.15(ve)-.25 G .438(ral w).15 F .438(ays to manipulate the en)-.1 F 2.938(vironment. On)-.4 F(in)2.938 E -.2(vo)-.4 G .438 (cation, the shell scans its o).2 F .439(wn en-)-.25 F .709(vironment a\ nd creates a parameter for each name found, automatically marking it fo\ -r)108 165.6 R F1 -.2(ex)3.208 G(port).2 E F0 .708(to child pro-)3.888 F -2.703(cesses. Ex)108 177.6 R .203(ecuted commands inherit the en)-.15 F -2.703(vironment. The)-.4 F/F3 10/Times-Bold@0 SF(export)2.703 E F0(and) -2.703 E F3(declar)2.703 E 2.703<65ad>-.18 G(x)-2.703 E F0 .203 -(commands allo)2.703 F 2.704(wp)-.25 G(aram-)-2.704 E .332 -(eters and functions to be added to and deleted from the en)108 189.6 R +r)108 271.2 R F2 -.2(ex)3.208 G(port).2 E F0 .708(to child pro-)3.888 F +2.703(cesses. Ex)108 283.2 R .203(ecuted commands inherit the en)-.15 F +2.703(vironment. The)-.4 F F1(export)2.703 E F0(and)2.703 E F1(declar) +2.703 E 2.703<65ad>-.18 G(x)-2.703 E F0 .203(commands allo)2.703 F 2.704 +(wp)-.25 G(aram-)-2.704 E .332 +(eters and functions to be added to and deleted from the en)108 295.2 R 2.832(vironment. If)-.4 F .332(the v)2.832 F .332 (alue of a parameter in the en-)-.25 F .131 -(vironment is modi\214ed, the ne)108 201.6 R 2.631(wv)-.25 G .131 +(vironment is modi\214ed, the ne)108 307.2 R 2.631(wv)-.25 G .131 (alue becomes part of the en)-2.881 F .132 (vironment, replacing the old.)-.4 F .132(The en)5.132 F(vironment)-.4 E -.321(inherited by an)108 213.6 R 2.821(ye)-.15 G -.15(xe)-2.971 G .321 +.321(inherited by an)108 319.2 R 2.821(ye)-.15 G -.15(xe)-2.971 G .321 (cuted command consists of the shell').15 F 2.821(si)-.55 G .321 (nitial en)-2.821 F .32(vironment, whose v)-.4 F .32(alues may be modi-) --.25 F .533(\214ed in the shell, less an)108 225.6 R 3.033(yp)-.15 G +-.25 F .533(\214ed in the shell, less an)108 331.2 R 3.033(yp)-.15 G .534(airs remo)-3.033 F -.15(ve)-.15 G 3.034(db).15 G 3.034(yt)-3.034 G -(he)-3.034 E F3(unset)3.034 E F0 .534(command, plus an)3.034 F 3.034(ya) --.15 G .534(dditions via the)-3.034 F F3(export)3.034 E F0(and)3.034 E -F3(de-)3.034 E(clar)108 237.6 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.) -2.5 E .563(The en)108 254.4 R .563(vironment for an)-.4 F(y)-.15 E F1 -.563(simple command)3.403 F F0 .562 +(he)-3.034 E F1(unset)3.034 E F0 .534(command, plus an)3.034 F 3.034(ya) +-.15 G .534(dditions via the)-3.034 F F1(export)3.034 E F0(and)3.034 E +F1(de-)3.034 E(clar)108 343.2 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.) +2.5 E .563(The en)108 360 R .563(vironment for an)-.4 F(y)-.15 E F2 .563 +(simple command)3.403 F F0 .562 (or function may be augmented temporarily by pre\214xing it with)3.833 F -.202(parameter assignments, as described abo)108 266.4 R .502 -.15(ve i) +.202(parameter assignments, as described abo)108 372 R .502 -.15(ve i) -.15 H(n).15 E/F4 9/Times-Bold@0 SF -.666(PA)2.702 G(RAMETERS).666 E/F5 9/Times-Roman@0 SF(.)A F0 .202(These assignment statements af)4.702 F -.203(fect only the)-.25 F(en)108 278.4 Q -(vironment seen by that command.)-.4 E .81(If the)108 295.2 R F3 -3.31 E F0 .81(option is set \(see the)3.31 F F3(set)3.31 E F0 -.2(bu) -3.31 G .81(iltin command belo).2 F .81(w\), then)-.25 F F1(all)3.64 E F0 -.81(parameter assignments are placed in)3.82 F(the en)108 307.2 Q +.203(fect only the)-.25 F(en)108 384 Q(vironment seen by that command.) +-.4 E .81(If the)108 400.8 R F13.31 E F0 .81 +(option is set \(see the)3.31 F F1(set)3.31 E F0 -.2(bu)3.31 G .81 +(iltin command belo).2 F .81(w\), then)-.25 F F2(all)3.64 E F0 .81 +(parameter assignments are placed in)3.82 F(the en)108 412.8 Q (vironment for a command, not just those that precede the command name.) --.4 E(When)108 324 Q F3(bash)3.585 E F0(in)3.585 E -.2(vo)-.4 G -.1(ke) -.2 G 3.585(sa).1 G 3.585(ne)-3.585 G 1.085(xternal command, the v)-3.735 -F(ariable)-.25 E F3(_)3.585 E F0 1.086 +-.4 E(When)108 429.6 Q F1(bash)3.585 E F0(in)3.585 E -.2(vo)-.4 G -.1 +(ke).2 G 3.585(sa).1 G 3.585(ne)-3.585 G 1.085(xternal command, the v) +-3.735 F(ariable)-.25 E F1(_)3.585 E F0 1.086 (is set to the full \214lename of the command and)3.586 F -(passed to that command in its en)108 336 Q(vironment.)-.4 E F2(EXIT ST) -72 352.8 Q -1.04(AT)-.986 G(US)1.04 E F0 .151(The e)108 364.8 R .151 -(xit status of an e)-.15 F -.15(xe)-.15 G .151(cuted command is the v) -.15 F .15(alue returned by the)-.25 F F1(waitpid)2.65 E F0 .15 -(system call or equi)2.65 F -.25(va)-.25 G .15(lent func-).25 F 2.847 -(tion. Exit)108 376.8 R .347(statuses f)2.847 F .347 -(all between 0 and 255, though, as e)-.1 F .347(xplained belo)-.15 F +(passed to that command in its en)108 441.6 Q(vironment.)-.4 E F3 +(EXIT ST)72 458.4 Q -1.04(AT)-.986 G(US)1.04 E F0 .151(The e)108 470.4 R +.151(xit status of an e)-.15 F -.15(xe)-.15 G .151 +(cuted command is the v).15 F .15(alue returned by the)-.25 F F2 +(waitpid)2.65 E F0 .15(system call or equi)2.65 F -.25(va)-.25 G .15 +(lent func-).25 F 2.847(tion. Exit)108 482.4 R .347(statuses f)2.847 F +.347(all between 0 and 255, though, as e)-.1 F .347(xplained belo)-.15 F 1.647 -.65(w, t)-.25 H .347(he shell may use v).65 F .348(alues abo)-.25 -F .648 -.15(ve 1)-.15 H(25).15 E(specially)108 388.8 Q 5.507(.E)-.65 G +F .648 -.15(ve 1)-.15 H(25).15 E(specially)108 494.4 Q 5.507(.E)-.65 G .507(xit statuses from shell b)-5.507 F .507 (uiltins and compound commands are also limited to this range.)-.2 F (Under)5.506 E(certain circumstances, the shell will use special v)108 -400.8 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -.15 -(Fo)108 417.6 S 3.372(rt).15 G .872(he shell')-3.372 F 3.372(sp)-.55 G +506.4 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -.15 +(Fo)108 523.2 S 3.372(rt).15 G .872(he shell')-3.372 F 3.372(sp)-.55 G .873(urposes, a command which e)-3.372 F .873(xits with a zero e)-.15 F .873(xit status has succeeded.)-.15 F .873(An e)5.873 F .873 -(xit status of)-.15 F .049(zero indicates success.)108 429.6 R 2.549(An) +(xit status of)-.15 F .049(zero indicates success.)108 535.2 R 2.549(An) 5.049 G .049(on-zero e)-2.549 F .049(xit status indicates f)-.15 F 2.549 (ailure. When)-.1 F 2.549(ac)2.549 G .048(ommand terminates on a f) --2.549 F .048(atal sig-)-.1 F(nal)108 441.6 Q F1(N)2.5 E F0(,)A F3(bash) -2.5 E F0(uses the v)2.5 E(alue of 128+)-.25 E F1(N)A F0(as the e)2.5 E +-2.549 F .048(atal sig-)-.1 F(nal)108 547.2 Q F2(N)2.5 E F0(,)A F1(bash) +2.5 E F0(uses the v)2.5 E(alue of 128+)-.25 E F2(N)A F0(as the e)2.5 E (xit status.)-.15 E .404 -(If a command is not found, the child process created to e)108 458.4 R +(If a command is not found, the child process created to e)108 564 R -.15(xe)-.15 G .404(cute it returns a status of 127.).15 F .405 -(If a command is)5.405 F(found b)108 470.4 Q(ut is not e)-.2 E -.15(xe) --.15 G(cutable, the return status is 126.).15 E(If a command f)108 487.2 +(If a command is)5.405 F(found b)108 576 Q(ut is not e)-.2 E -.15(xe) +-.15 G(cutable, the return status is 126.).15 E(If a command f)108 592.8 Q(ails because of an error during e)-.1 E (xpansion or redirection, the e)-.15 E(xit status is greater than zero.) --.15 E .081(Shell b)108 504 R .081 -(uiltin commands return a status of 0 \()-.2 F F1(true)A F0 2.581(\)i)C -2.581(fs)-2.581 G .08(uccessful, and non-zero \()-2.581 F F1(false)A F0 +-.15 E .081(Shell b)108 609.6 R .081 +(uiltin commands return a status of 0 \()-.2 F F2(true)A F0 2.581(\)i)C +2.581(fs)-2.581 G .08(uccessful, and non-zero \()-2.581 F F2(false)A F0 2.58(\)i)C 2.58(fa)-2.58 G 2.58(ne)-2.58 G .08(rror occurs while)-2.58 F -(the)108 516 Q 2.967(ye)-.15 G -.15(xe)-3.117 G 2.967(cute. All).15 F +(the)108 621.6 Q 2.967(ye)-.15 G -.15(xe)-3.117 G 2.967(cute. All).15 F -.2(bu)2.967 G .467(iltins return an e).2 F .468 (xit status of 2 to indicate incorrect usage, generally in)-.15 F -.25 -(va)-.4 G .468(lid options or).25 F(missing ar)108 528 Q(guments.)-.18 E -(The e)108 544.8 Q(xit status of the last command is a)-.15 E -.25(va) --.2 G(ilable in the special parameter $?.).25 E F3(Bash)108 561.6 Q F0 +(va)-.4 G .468(lid options or).25 F(missing ar)108 633.6 Q(guments.)-.18 +E(The e)108 650.4 Q(xit status of the last command is a)-.15 E -.25(va) +-.2 G(ilable in the special parameter $?.).25 E F1(Bash)108 667.2 Q F0 .202(itself returns the e)2.702 F .202(xit status of the last command e) -.15 F -.15(xe)-.15 G .201 -(cuted, unless a syntax error occurs, in which case).15 F(it e)108 573.6 -Q(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F3 -(exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G F2 -(SIGN)72 590.4 Q(ALS)-.219 E F0(When)108 602.4 Q F3(bash)2.502 E F0 .002 +(cuted, unless a syntax error occurs, in which case).15 F(it e)108 679.2 +Q(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F1 +(exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G F3 +(SIGN)72 696 Q(ALS)-.219 E F0(When)108 708 Q F1(bash)2.502 E F0 .002 (is interacti)2.502 F -.15(ve)-.25 G 2.502(,i).15 G 2.502(nt)-2.502 G .002(he absence of an)-2.502 F 2.502(yt)-.15 G .002(raps, it ignores) --2.502 F F4(SIGTERM)2.502 E F0 .002(\(so that)2.252 F F3 .002(kill 0) -2.502 F F0 .002(does not kill an in-)2.502 F(teracti)108 614.4 Q 1.216 +-2.502 F F4(SIGTERM)2.502 E F0 .002(\(so that)2.252 F F1 .002(kill 0) +2.502 F F0 .002(does not kill an in-)2.502 F(teracti)108 720 Q 1.216 -.15(ve s)-.25 H .916(hell\), and).15 F F4(SIGINT)3.416 E F0 .915 -(is caught and handled \(so that the)3.166 F F3(wait)3.415 E F0 -.2(bu) +(is caught and handled \(so that the)3.166 F F1(wait)3.415 E F0 -.2(bu) 3.415 G .915(iltin is interruptible\).).2 F .915(In all cases,)5.915 F -F3(bash)108 626.4 Q F0(ignores)2.5 E F4(SIGQ)2.5 E(UIT)-.09 E F5(.)A F0 -(If job control is in ef)4.5 E(fect,)-.25 E F3(bash)2.5 E F0(ignores)2.5 -E F4(SIGTTIN)2.5 E F5(,)A F4(SIGTT)2.25 E(OU)-.162 E F5(,)A F0(and)2.25 -E F4(SIGTSTP)2.5 E F5(.)A F0(Non-b)108 643.2 Q 1.064 -(uiltin commands run by)-.2 F F3(bash)3.564 E F0(ha)3.564 E 1.365 -.15 -(ve s)-.2 H 1.065(ignal handlers set to the v).15 F 1.065 -(alues inherited by the shell from its)-.25 F 3.248(parent. When)108 -655.2 R .748(job control is not in ef)3.248 F .747 -(fect, asynchronous commands ignore)-.25 F F4(SIGINT)3.247 E F0(and) -2.997 E F4(SIGQ)3.247 E(UIT)-.09 E F0 .747(in addi-)2.997 F .652 -(tion to these inherited handlers.)108 667.2 R .653 -(Commands run as a result of command substitution ignore the k)5.652 F --.15(ey)-.1 G(board-).15 E(generated job control signals)108 679.2 Q F4 -(SIGTTIN)2.5 E F5(,)A F4(SIGTT)2.25 E(OU)-.162 E F5(,)A F0(and)2.25 E F4 -(SIGTSTP)2.5 E F5(.)A F0 2.046(The shell e)108 696 R 2.046(xits by def) --.15 F 2.045(ault upon receipt of a)-.1 F F4(SIGHUP)4.545 E F5(.)A F0 -2.045(Before e)6.545 F 2.045(xiting, an interacti)-.15 F 2.345 -.15 -(ve s)-.25 H 2.045(hell resends the).15 F F4(SIGHUP)108 708 Q F0 1.004 -(to all jobs, running or stopped.)3.254 F 1.004(Stopped jobs are sent) -6.004 F F4(SIGCONT)3.505 E F0 1.005(to ensure that the)3.255 F 3.505(yr) --.15 G(ecei)-3.505 E 1.305 -.15(ve t)-.25 H(he).15 E F4(SIGHUP)108 720 Q -F5(.)A F0 2.53 -.8(To p)5.43 H(re).8 E -.15(ve)-.25 G .93(nt the shell \ -from sending the signal to a particular job, it should be remo).15 F --.15(ve)-.15 G 3.429(df).15 G .929(rom the)-3.429 F(GNU Bash 5.2)72 768 -Q(2022 March 11)144.29 E(38)193.45 E 0 Cg EP +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(38)199.835 E 0 Cg EP %%Page: 39 39 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.356 -(jobs table with the)108 84 R/F1 10/Times-Bold@0 SF(diso)3.856 E(wn)-.1 -E F0 -.2(bu)3.856 G 1.356(iltin \(see).2 F/F2 9/Times-Bold@0 SF 1.356 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(bash)108 84 Q F0(ignores)2.5 E/F2 9/Times-Bold@0 SF(SIGQ)2.5 E(UIT) +-.09 E/F3 9/Times-Roman@0 SF(.)A F0(If job control is in ef)4.5 E(fect,) +-.25 E F1(bash)2.5 E F0(ignores)2.5 E F2(SIGTTIN)2.5 E F3(,)A F2(SIGTT) +2.25 E(OU)-.162 E F3(,)A F0(and)2.25 E F2(SIGTSTP)2.5 E F3(.)A F0(Non-b) +108 100.8 Q 1.064(uiltin commands run by)-.2 F F1(bash)3.564 E F0(ha) +3.564 E 1.365 -.15(ve s)-.2 H 1.065(ignal handlers set to the v).15 F +1.065(alues inherited by the shell from its)-.25 F 3.248(parent. When) +108 112.8 R .748(job control is not in ef)3.248 F .747 +(fect, asynchronous commands ignore)-.25 F F2(SIGINT)3.247 E F0(and) +2.997 E F2(SIGQ)3.247 E(UIT)-.09 E F0 .747(in addi-)2.997 F .652 +(tion to these inherited handlers.)108 124.8 R .653 +(Commands run as a result of command substitution ignore the k)5.652 F +-.15(ey)-.1 G(board-).15 E(generated job control signals)108 136.8 Q F2 +(SIGTTIN)2.5 E F3(,)A F2(SIGTT)2.25 E(OU)-.162 E F3(,)A F0(and)2.25 E F2 +(SIGTSTP)2.5 E F3(.)A F0 2.046(The shell e)108 153.6 R 2.046 +(xits by def)-.15 F 2.045(ault upon receipt of a)-.1 F F2(SIGHUP)4.545 E +F3(.)A F0 2.045(Before e)6.545 F 2.045(xiting, an interacti)-.15 F 2.345 +-.15(ve s)-.25 H 2.045(hell resends the).15 F F2(SIGHUP)108 165.6 Q F0 +1.004(to all jobs, running or stopped.)3.254 F 1.004 +(Stopped jobs are sent)6.004 F F2(SIGCONT)3.505 E F0 1.005 +(to ensure that the)3.255 F 3.505(yr)-.15 G(ecei)-3.505 E 1.305 -.15 +(ve t)-.25 H(he).15 E F2(SIGHUP)108 177.6 Q F3(.)A F0 2.53 -.8(To p)5.43 +H(re).8 E -.15(ve)-.25 G .93(nt the shell from sending the signal to a \ +particular job, it should be remo).15 F -.15(ve)-.15 G 3.429(df).15 G +.929(rom the)-3.429 F 1.356(jobs table with the)108 189.6 R F1(diso) +3.856 E(wn)-.1 E F0 -.2(bu)3.856 G 1.356(iltin \(see).2 F F2 1.356 (SHELL B)3.856 F(UIL)-.09 E 1.356(TIN COMMANDS)-.828 F F0(belo)3.607 E 1.357(w\) or mark)-.25 F 1.357(ed to not recei)-.1 F -.15(ve)-.25 G F2 -(SIGHUP)108 96 Q F0(using)2.25 E F1(diso)2.5 E(wn \255h)-.1 E F0(.)A -.166(If the)108 112.8 R F1(huponexit)2.666 E F0 .166 +(SIGHUP)108 201.6 Q F0(using)2.25 E F1(diso)2.5 E(wn \255h)-.1 E F0(.)A +.166(If the)108 218.4 R F1(huponexit)2.666 E F0 .166 (shell option has been set with)2.666 F F1(shopt)2.666 E F0(,)A F1(bash) 2.666 E F0 .166(sends a)2.666 F F2(SIGHUP)2.666 E F0 .166 (to all jobs when an interacti)2.416 F -.15(ve)-.25 G(login shell e)108 -124.8 Q(xits.)-.15 E(If)108 141.6 Q F1(bash)3.046 E F0 .546(is w)3.046 F +230.4 Q(xits.)-.15 E(If)108 247.2 Q F1(bash)3.046 E F0 .546(is w)3.046 F .546(aiting for a command to complete and recei)-.1 F -.15(ve)-.25 G 3.046(sas).15 G .546(ignal for which a trap has been set, the trap) --3.046 F .663(will not be e)108 153.6 R -.15(xe)-.15 G .663 +-3.046 F .663(will not be e)108 259.2 R -.15(xe)-.15 G .663 (cuted until the command completes.).15 F(When)5.663 E F1(bash)3.163 E F0 .662(is w)3.163 F .662(aiting for an asynchronous command)-.1 F .326 -(via the)108 165.6 R F1(wait)2.826 E F0 -.2(bu)2.826 G .327(iltin, the \ +(via the)108 271.2 R F1(wait)2.826 E F0 -.2(bu)2.826 G .327(iltin, the \ reception of a signal for which a trap has been set will cause the).2 F F1(wait)2.827 E F0 -.2(bu)2.827 G .327(iltin to re-).2 F -(turn immediately with an e)108 177.6 Q +(turn immediately with an e)108 283.2 Q (xit status greater than 128, immediately after which the trap is e)-.15 E -.15(xe)-.15 G(cuted.).15 E .499(When job control is not enabled, and) -108 194.4 R F1(bash)2.998 E F0 .498(is w)2.998 F .498(aiting for a fore) --.1 F .498(ground command to complete, the shell re-)-.15 F(cei)108 -206.4 Q -.15(ve)-.25 G 2.605(sk).15 G -.15(ey)-2.705 G .105 +108 300 R F1(bash)2.998 E F0 .498(is w)2.998 F .498(aiting for a fore) +-.1 F .498(ground command to complete, the shell re-)-.15 F(cei)108 312 +Q -.15(ve)-.25 G 2.605(sk).15 G -.15(ey)-2.705 G .105 (board-generated signals such as).15 F F2(SIGINT)2.605 E F0 .105 (\(usually generated by)2.355 F F1(^C)2.605 E F0 2.605(\)t)C .105 (hat users commonly intend to)-2.605 F .424(send to that command.)108 -218.4 R .424(This happens because the shell and the command are in the \ -same process group as)5.424 F(the terminal, and)108 230.4 Q F1(^C)2.5 E -F0(sends)2.5 E F2(SIGINT)2.5 E F0 -(to all processes in that process group.)2.25 E(When)108 247.2 Q F1 -(bash)3.8 E F0 1.3(is running without job control enabled and recei)3.8 -F -.15(ve)-.25 G(s).15 E F2(SIGINT)3.8 E F0 1.3(while w)3.55 F 1.3 -(aiting for a fore)-.1 F(ground)-.15 E .81(command, it w)108 259.2 R .81 -(aits until that fore)-.1 F .81 +324 R .424(This happens because the shell and the command are in the sa\ +me process group as)5.424 F(the terminal, and)108 336 Q F1(^C)2.5 E F0 +(sends)2.5 E F2(SIGINT)2.5 E F0(to all processes in that process group.) +2.25 E(When)108 352.8 Q F1(bash)3.8 E F0 1.3 +(is running without job control enabled and recei)3.8 F -.15(ve)-.25 G +(s).15 E F2(SIGINT)3.8 E F0 1.3(while w)3.55 F 1.3(aiting for a fore)-.1 +F(ground)-.15 E .81(command, it w)108 364.8 R .81(aits until that fore) +-.1 F .81 (ground command terminates and then decides what to do about the)-.15 F -F2(SIG-)3.309 E(INT)108 271.2 Q/F3 9/Times-Roman@0 SF(:)A F0(1.)108 288 -Q .002(If the command terminates due to the)144 288 R F2(SIGINT)2.502 E -F3(,)A F1(bash)2.252 E F0 .003 +F2(SIG-)3.309 E(INT)108 376.8 Q F3(:)A F0(1.)108 393.6 Q .002 +(If the command terminates due to the)144 393.6 R F2(SIGINT)2.502 E F3 +(,)A F1(bash)2.252 E F0 .003 (concludes that the user meant to end the entire)2.502 F -(script, and acts on the)144 300 Q F2(SIGINT)2.5 E F0 +(script, and acts on the)144 405.6 Q F2(SIGINT)2.5 E F0 (\(e.g., by running a)2.25 E F2(SIGINT)2.5 E F0(trap or e)2.25 E -(xiting itself\);)-.15 E(2.)108 316.8 Q .289 -(If the command does not terminate due to)144 316.8 R F2(SIGINT)2.788 E +(xiting itself\);)-.15 E(2.)108 422.4 Q .289 +(If the command does not terminate due to)144 422.4 R F2(SIGINT)2.788 E F3(,)A F0 .288(the program handled the)2.538 F F2(SIGINT)2.788 E F0 .288 -(itself and did)2.538 F .728(not treat it as a f)144 328.8 R .728 +(itself and did)2.538 F .728(not treat it as a f)144 434.4 R .728 (atal signal.)-.1 F .728(In that case,)5.728 F F1(bash)3.228 E F0 .728 (does not treat)3.228 F F2(SIGINT)3.228 E F0 .728(as a f)2.978 F .728 (atal signal, either)-.1 F 3.229(,i)-.4 G(n-)-3.229 E .772 -(stead assuming that the)144 340.8 R F2(SIGINT)3.272 E F0 -.1(wa)3.022 G +(stead assuming that the)144 446.4 R F2(SIGINT)3.272 E F0 -.1(wa)3.022 G 3.272(su).1 G .771(sed as part of the program')-3.272 F 3.271(sn)-.55 G .771(ormal operation \(e.g., emacs)-3.271 F .409 (uses it to abort editing commands\) or deliberately discarded.)144 -352.8 R(Ho)5.409 E(we)-.25 E -.15(ve)-.25 G -.4(r,).15 G F1(bash)3.309 E +458.4 R(Ho)5.409 E(we)-.25 E -.15(ve)-.25 G -.4(r,).15 G F1(bash)3.309 E F0 .41(will run an)2.91 F 2.91(yt)-.15 G .41(rap set)-2.91 F(on)144 -364.8 Q F2(SIGINT)3.789 E F3(,)A F0 1.289(as it does with an)3.539 F +470.4 Q F2(SIGINT)3.789 E F3(,)A F0 1.289(as it does with an)3.539 F 3.789(yo)-.15 G 1.288(ther trapped signal it recei)-3.789 F -.15(ve)-.25 G 3.788(sw).15 G 1.288(hile it is w)-3.788 F 1.288(aiting for the fore-) --.1 F(ground command to complete, for compatibility)144 376.8 Q(.)-.65 E -/F4 10.95/Times-Bold@0 SF(JOB CONTR)72 393.6 Q(OL)-.329 E/F5 10 -/Times-Italic@0 SF -.25(Jo)108 405.6 S 3.368(bc).25 G(ontr)-3.368 E(ol) +-.1 F(ground command to complete, for compatibility)144 482.4 Q(.)-.65 E +/F4 10.95/Times-Bold@0 SF(JOB CONTR)72 499.2 Q(OL)-.329 E/F5 10 +/Times-Italic@0 SF -.25(Jo)108 511.2 S 3.368(bc).25 G(ontr)-3.368 E(ol) -.45 E F0 .868(refers to the ability to selecti)3.878 F -.15(ve)-.25 G .868(ly stop \().15 F F5(suspend)A F0 3.368(\)t)C .868(he e)-3.368 F -.15(xe)-.15 G .868(cution of processes and continue \().15 F F5 -.37 -(re)C(-).37 E(sume)108 417.6 Q F0 2.665(\)t)C .165(heir e)-2.665 F -.15 +(re)C(-).37 E(sume)108 523.2 Q F0 2.665(\)t)C .165(heir e)-2.665 F -.15 (xe)-.15 G .165(cution at a later point.).15 F 2.665(Au)5.165 G .165 (ser typically emplo)-2.665 F .165(ys this f)-.1 F .164 (acility via an interacti)-.1 F .464 -.15(ve i)-.25 H(nterf).15 E .164 -(ace sup-)-.1 F(plied jointly by the operating system k)108 429.6 Q +(ace sup-)-.1 F(plied jointly by the operating system k)108 535.2 Q (ernel')-.1 E 2.5(st)-.55 G(erminal dri)-2.5 E -.15(ve)-.25 G 2.5(ra).15 -G(nd)-2.5 E F1(bash)2.5 E F0(.)A .784(The shell associates a)108 446.4 R +G(nd)-2.5 E F1(bash)2.5 E F0(.)A .784(The shell associates a)108 552 R F5(job)5.024 E F0 .784(with each pipeline.)3.514 F .784(It k)5.784 F .785(eeps a table of currently e)-.1 F -.15(xe)-.15 G .785 -(cuting jobs, which may be).15 F .325(listed with the)108 458.4 R F1 -(jobs)2.825 E F0 2.825(command. When)2.825 F F1(bash)2.825 E F0 .325 +(cuting jobs, which may be).15 F .325(listed with the)108 564 R F1(jobs) +2.825 E F0 2.825(command. When)2.825 F F1(bash)2.825 E F0 .325 (starts a job asynchronously \(in the)2.825 F F5(bac)3.094 E(kgr)-.2 E -(ound)-.45 E F0 .324(\), it prints a line).77 F(that looks lik)108 470.4 -Q(e:)-.1 E([1] 25647)144 487.2 Q .241(indicating that this job is job n\ -umber 1 and that the process ID of the last process in the pipeline ass\ -ociated)108 504 R .733(with this job is 25647.)108 516 R .732 +(ound)-.45 E F0 .324(\), it prints a line).77 F(that looks lik)108 576 Q +(e:)-.1 E([1] 25647)144 592.8 Q .241(indicating that this job is job nu\ +mber 1 and that the process ID of the last process in the pipeline asso\ +ciated)108 609.6 R .733(with this job is 25647.)108 621.6 R .732 (All of the processes in a single pipeline are members of the same job) -5.733 F(.)-.4 E F1(Bash)5.732 E F0(uses)3.232 E(the)108 528 Q F5(job) +5.733 F(.)-.4 E F1(Bash)5.732 E F0(uses)3.232 E(the)108 633.6 Q F5(job) 4.24 E F0(abstraction as the basis for job control.)2.73 E 1.981 -.8 -(To f)108 544.8 T .382(acilitate the implementation of the user interf) +(To f)108 650.4 T .382(acilitate the implementation of the user interf) .7 F .382(ace to job control, the operating system maintains the no-)-.1 -F 1.538(tion of a)108 556.8 R F5(curr)4.038 E 1.538(ent terminal pr)-.37 +F 1.538(tion of a)108 662.4 R F5(curr)4.038 E 1.538(ent terminal pr)-.37 F 1.537(ocess gr)-.45 F 1.537(oup ID)-.45 F F0 6.537(.M)C 1.537 (embers of this process group \(processes whose process)-6.537 F .023 (group ID is equal to the current terminal process group ID\) recei)108 -568.8 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023 -(board-generated signals such as).15 F F2(SIG-)2.523 E(INT)108 580.8 Q +674.4 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023 +(board-generated signals such as).15 F F2(SIG-)2.523 E(INT)108 686.4 Q F3(.)A F0 1.215(These processes are said to be in the)5.716 F F5(for) 5.685 E -.4(eg)-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F5(Bac)6.795 E (kgr)-.2 E(ound)-.45 E F0 1.215(processes are those whose process)4.485 -F .145(group ID dif)108 592.8 R .145(fers from the terminal')-.25 F .146 +F .145(group ID dif)108 698.4 R .145(fers from the terminal')-.25 F .146 (s; such processes are immune to k)-.55 F -.15(ey)-.1 G .146 (board-generated signals.).15 F .146(Only fore-)5.146 F .16 -(ground processes are allo)108 604.8 R .16(wed to read from or)-.25 F +(ground processes are allo)108 710.4 R .16(wed to read from or)-.25 F 2.66(,i)-.4 G 2.66(ft)-2.66 G .16(he user so speci\214es with)-2.66 F/F6 10/Courier@0 SF .16(stty tostop)2.66 F F0 2.66(,w)C .16(rite to the ter) --2.66 F(-)-.2 E 3.051(minal. Background)108 616.8 R .551 +-2.66 F(-)-.2 E 3.051(minal. Background)108 722.4 R .551 (processes which attempt to read from \(write to when)3.051 F F6 .551 (stty tostop)3.051 F F0 .552(is in ef)3.052 F .552(fect\) the)-.25 F -.718(terminal are sent a)108 628.8 R F2 .718(SIGTTIN \(SIGTT)3.218 F -(OU\))-.162 E F0 .718(signal by the k)2.968 F(ernel')-.1 E 3.217(st)-.55 -G .717(erminal dri)-3.217 F -.15(ve)-.25 G 1.517 -.4(r, w).15 H .717 -(hich, unless caught, sus-).4 F(pends the process.)108 640.8 Q 1.087 -(If the operating system on which)108 657.6 R F1(bash)3.587 E F0 1.088 -(is running supports job control,)3.588 F F1(bash)3.588 E F0 1.088 -(contains f)3.588 F 1.088(acilities to use it.)-.1 F -.8(Ty)108 669.6 S -.302(ping the).8 F F5(suspend)3.142 E F0 .302(character \(typically) -3.572 F F1(^Z)2.801 E F0 2.801(,C)C .301 -(ontrol-Z\) while a process is running causes that process to be)-2.801 -F 2.142(stopped and returns control to)108 681.6 R F1(bash)4.642 E F0 -7.142(.T)C 2.142(yping the)-7.942 F F5 2.142(delayed suspend)4.992 F F0 -2.143(character \(typically)5.413 F F1(^Y)4.643 E F0 4.643(,C)C -(ontrol-Y\))-4.643 E .021(causes the process to be stopped when it atte\ -mpts to read input from the terminal, and control to be returned)108 -693.6 R(to)108 705.6 Q F1(bash)3.392 E F0 5.892(.T)C .892 -(he user may then manipulate the state of this job, using the)-5.892 F -F1(bg)3.392 E F0 .892(command to continue it in the)3.392 F .17 -(background, the)108 717.6 R F1(fg)2.67 E F0 .17 -(command to continue it in the fore)2.67 F .17(ground, or the)-.15 F F1 -(kill)2.67 E F0 .17(command to kill it.)2.67 F(A)5.17 E F1(^Z)2.67 E F0 -(tak)2.67 E .17(es ef-)-.1 F 2.679(fect immediately)108 729.6 R 5.179 -(,a)-.65 G 2.679(nd has the additional side ef)-5.179 F 2.68 -(fect of causing pending output and typeahead to be)-.25 F(GNU Bash 5.2) -72 768 Q(2022 March 11)144.29 E(39)193.45 E 0 Cg EP +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(39)199.835 E 0 Cg EP %%Page: 40 40 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(discarded.)108 84 -Q .777(There are a number of w)108 100.8 R .777 -(ays to refer to a job in the shell.)-.1 F .777(The character)5.777 F/F1 -10/Times-Bold@0 SF(%)3.277 E F0 .777(introduces a job speci\214cation) -3.277 F(\()108 112.8 Q/F2 10/Times-Italic@0 SF(jobspec)A F0 3.457 -(\). Job)B(number)3.457 E F2(n)3.817 E F0 .957(may be referred to as) -3.697 F F1(%n)3.457 E F0 5.957(.A)C .957 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .718 +(terminal are sent a)108 84 R/F1 9/Times-Bold@0 SF .718(SIGTTIN \(SIGTT) +3.218 F(OU\))-.162 E F0 .718(signal by the k)2.968 F(ernel')-.1 E 3.217 +(st)-.55 G .717(erminal dri)-3.217 F -.15(ve)-.25 G 1.517 -.4(r, w).15 H +.717(hich, unless caught, sus-).4 F(pends the process.)108 96 Q 1.087 +(If the operating system on which)108 112.8 R/F2 10/Times-Bold@0 SF +(bash)3.587 E F0 1.088(is running supports job control,)3.588 F F2(bash) +3.588 E F0 1.088(contains f)3.588 F 1.088(acilities to use it.)-.1 F -.8 +(Ty)108 124.8 S .302(ping the).8 F/F3 10/Times-Italic@0 SF(suspend)3.142 +E F0 .302(character \(typically)3.572 F F2(^Z)2.801 E F0 2.801(,C)C .301 +(ontrol-Z\) while a process is running causes that process to be)-2.801 +F 2.142(stopped and returns control to)108 136.8 R F2(bash)4.642 E F0 +7.142(.T)C 2.142(yping the)-7.942 F F3 2.142(delayed suspend)4.992 F F0 +2.143(character \(typically)5.413 F F2(^Y)4.643 E F0 4.643(,C)C +(ontrol-Y\))-4.643 E .021(causes the process to be stopped when it atte\ +mpts to read input from the terminal, and control to be returned)108 +148.8 R(to)108 160.8 Q F2(bash)3.392 E F0 5.892(.T)C .892 +(he user may then manipulate the state of this job, using the)-5.892 F +F2(bg)3.392 E F0 .892(command to continue it in the)3.392 F .17 +(background, the)108 172.8 R F2(fg)2.67 E F0 .17 +(command to continue it in the fore)2.67 F .17(ground, or the)-.15 F F2 +(kill)2.67 E F0 .17(command to kill it.)2.67 F(A)5.17 E F2(^Z)2.67 E F0 +(tak)2.67 E .17(es ef-)-.1 F 1.418(fect immediately)108 184.8 R 3.918 +(,a)-.65 G 1.418(nd has the additional side ef)-3.918 F 1.418 +(fect of causing pending output and typeahead to be dis-)-.25 F(carded.) +108 196.8 Q .777(There are a number of w)108 213.6 R .777 +(ays to refer to a job in the shell.)-.1 F .777(The character)5.777 F F2 +(%)3.277 E F0 .777(introduces a job speci\214cation)3.277 F(\()108 225.6 +Q F3(jobspec)A F0 3.457(\). Job)B(number)3.457 E F3(n)3.817 E F0 .957 +(may be referred to as)3.697 F F2(%n)3.457 E F0 5.957(.A)C .957 (job may also be referred to using a pre\214x of the)-2.5 F .59(name us\ ed to start it, or using a substring that appears in its command line.) -108 124.8 R -.15(Fo)5.59 G 3.09(re).15 G(xample,)-3.24 E F1(%ce)3.09 E +108 237.6 R -.15(Fo)5.59 G 3.09(re).15 G(xample,)-3.24 E F2(%ce)3.09 E F0 .59(refers to a)3.09 F .385(stopped job whose command name be)108 -136.8 R .385(gins with)-.15 F F1(ce)2.885 E F0 5.385(.I)C 2.885(fap) --5.385 G .385(re\214x matches more than one job,)-2.885 F F1(bash)2.885 -E F0 .385(reports an)2.885 F(error)108 148.8 Q 5.194(.U)-.55 G(sing) --5.194 E F1(%?ce)2.694 E F0 2.694(,o)C 2.694(nt)-2.694 G .194 +249.6 R .385(gins with)-.15 F F2(ce)2.885 E F0 5.385(.I)C 2.885(fap) +-5.385 G .385(re\214x matches more than one job,)-2.885 F F2(bash)2.885 +E F0 .385(reports an)2.885 F(error)108 261.6 Q 5.194(.U)-.55 G(sing) +-5.194 E F2(%?ce)2.694 E F0 2.694(,o)C 2.694(nt)-2.694 G .194 (he other hand, refers to an)-2.694 F 2.694(yj)-.15 G .194 -(ob containing the string)-2.694 F F1(ce)2.694 E F0 .194 +(ob containing the string)-2.694 F F2(ce)2.694 E F0 .194 (in its command line.)2.694 F .194(If the)5.194 F .306 -(substring matches more than one job,)108 160.8 R F1(bash)2.806 E F0 +(substring matches more than one job,)108 273.6 R F2(bash)2.806 E F0 .306(reports an error)2.806 F 5.306(.T)-.55 G .306(he symbols)-5.306 F -F1(%%)2.806 E F0(and)2.806 E F1(%+)2.806 E F0 .307(refer to the shell') -2.806 F(s)-.55 E .133(notion of the)108 172.8 R F2(curr)2.833 E .133 +F2(%%)2.806 E F0(and)2.806 E F2(%+)2.806 E F0 .307(refer to the shell') +2.806 F(s)-.55 E .133(notion of the)108 285.6 R F3(curr)2.833 E .133 (ent job)-.37 F F0 2.633(,w).23 G .133 (hich is the last job stopped while it w)-2.633 F .133(as in the fore) -.1 F .132(ground or started in the back-)-.15 F 2.575(ground. The)108 -184.8 R F2(pr)3.825 E -.15(ev)-.37 G .075(ious job).15 F F0 .075 -(may be referenced using)2.805 F F1<25ad>2.575 E F0 5.075(.I)C 2.575(ft) --5.075 G .076(here is only a single job,)-2.575 F F1(%+)2.576 E F0(and) -2.576 E F1<25ad>2.576 E F0 .076(can both)2.576 F .317 -(be used to refer to that job)108 196.8 R 5.317(.I)-.4 G 2.817(no)-5.317 -G .317(utput pertaining to jobs \(e.g., the output of the)-2.817 F F1 +297.6 R F3(pr)3.825 E -.15(ev)-.37 G .075(ious job).15 F F0 .075 +(may be referenced using)2.805 F F2<25ad>2.575 E F0 5.075(.I)C 2.575(ft) +-5.075 G .076(here is only a single job,)-2.575 F F2(%+)2.576 E F0(and) +2.576 E F2<25ad>2.576 E F0 .076(can both)2.576 F .317 +(be used to refer to that job)108 309.6 R 5.317(.I)-.4 G 2.817(no)-5.317 +G .317(utput pertaining to jobs \(e.g., the output of the)-2.817 F F2 (jobs)2.817 E F0 .317(command\), the current)2.817 F .032(job is al)108 -208.8 R -.1(wa)-.1 G .033(ys \215agged with a).1 F F1(+)2.533 E F0 2.533 -(,a)C .033(nd the pre)-2.533 F .033(vious job with a)-.25 F F12.533 +321.6 R -.1(wa)-.1 G .033(ys \215agged with a).1 F F2(+)2.533 E F0 2.533 +(,a)C .033(nd the pre)-2.533 F .033(vious job with a)-.25 F F22.533 E F0 5.033(.A)C .033(single % \(with no accompan)-2.5 F .033 (ying job speci-)-.15 F(\214cation\) also refers to the current job)108 -220.8 Q(.)-.4 E .444 -(Simply naming a job can be used to bring it into the fore)108 237.6 R -(ground:)-.15 E F1(%1)2.943 E F0 .443(is a synon)2.943 F .443(ym for) --.15 F F1 -.63(``)2.943 G .443(fg %1').63 F(')-.63 E F0 2.943(,b)C +333.6 Q(.)-.4 E .444 +(Simply naming a job can be used to bring it into the fore)108 350.4 R +(ground:)-.15 E F2(%1)2.943 E F0 .443(is a synon)2.943 F .443(ym for) +-.15 F F2 -.63(``)2.943 G .443(fg %1').63 F(')-.63 E F0 2.943(,b)C (ringing)-2.943 E 1.472(job 1 from the background into the fore)108 -249.6 R 3.972(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.973 G 1.473 +362.4 R 3.972(ground. Similarly)-.15 F(,)-.65 E F2 -.63(``)3.973 G 1.473 (%1 &').63 F(')-.63 E F0 1.473(resumes job 1 in the background,)3.973 F -(equi)108 261.6 Q -.25(va)-.25 G(lent to).25 E F1 -.63(``)2.5 G(bg %1') -.63 E(')-.63 E F0(.)A .131(The shell learns immediately whene)108 278.4 +(equi)108 374.4 Q -.25(va)-.25 G(lent to).25 E F2 -.63(``)2.5 G(bg %1') +.63 E(')-.63 E F0(.)A .131(The shell learns immediately whene)108 391.2 R -.15(ve)-.25 G 2.631(raj).15 G .131(ob changes state.)-2.631 F -(Normally)5.131 E(,)-.65 E F1(bash)2.631 E F0 -.1(wa)2.63 G .13 +(Normally)5.131 E(,)-.65 E F2(bash)2.631 E F0 -.1(wa)2.63 G .13 (its until it is about to print a).1 F .157 -(prompt before reporting changes in a job')108 290.4 R 2.657(ss)-.55 G +(prompt before reporting changes in a job')108 403.2 R 2.657(ss)-.55 G .157(tatus so as to not interrupt an)-2.657 F 2.658(yo)-.15 G .158 -(ther output.)-2.658 F .158(If the)5.158 F F12.658 E F0 .158 -(option to)2.658 F(the)108 302.4 Q F1(set)2.648 E F0 -.2(bu)2.648 G .148 -(iltin command is enabled,).2 F F1(bash)2.648 E F0 .148 +(ther output.)-2.658 F .158(If the)5.158 F F22.658 E F0 .158 +(option to)2.658 F(the)108 415.2 Q F2(set)2.648 E F0 -.2(bu)2.648 G .148 +(iltin command is enabled,).2 F F2(bash)2.648 E F0 .148 (reports such changes immediately)2.648 F 5.147(.A)-.65 G .447 -.15 -(ny t)-5.147 H .147(rap on).15 F/F3 9/Times-Bold@0 SF(SIGCHLD)2.647 E F0 -.147(is e)2.397 F -.15(xe)-.15 G(-).15 E(cuted for each child that e)108 -314.4 Q(xits.)-.15 E .032(If an attempt to e)108 331.2 R(xit)-.15 E F1 -(bash)2.532 E F0 .032(is made while jobs are stopped \(or)2.532 F 2.533 -(,i)-.4 G 2.533(ft)-2.533 G(he)-2.533 E F1(checkjobs)2.533 E F0 .033 -(shell option has been enabled)2.533 F 1.003(using the)108 343.2 R F1 +(ny t)-5.147 H .147(rap on).15 F F1(SIGCHLD)2.647 E F0 .147(is e)2.397 F +-.15(xe)-.15 G(-).15 E(cuted for each child that e)108 427.2 Q(xits.) +-.15 E .032(If an attempt to e)108 444 R(xit)-.15 E F2(bash)2.532 E F0 +.032(is made while jobs are stopped \(or)2.532 F 2.533(,i)-.4 G 2.533 +(ft)-2.533 G(he)-2.533 E F2(checkjobs)2.533 E F0 .033 +(shell option has been enabled)2.533 F 1.003(using the)108 456 R F2 (shopt)3.503 E F0 -.2(bu)3.503 G 1.003 (iltin, running\), the shell prints a w).2 F 1.002 -(arning message, and, if the)-.1 F F1(checkjobs)3.502 E F0 1.002 +(arning message, and, if the)-.1 F F2(checkjobs)3.502 E F0 1.002 (option is en-)3.502 F .955(abled, lists the jobs and their statuses.) -108 355.2 R(The)5.955 E F1(jobs)3.455 E F0 .955 +108 468 R(The)5.955 E F2(jobs)3.455 E F0 .955 (command may then be used to inspect their status.)3.455 F .956(If a) -5.956 F .604(second attempt to e)108 367.2 R .604 +5.956 F .604(second attempt to e)108 480 R .604 (xit is made without an interv)-.15 F .604 (ening command, the shell does not print another w)-.15 F(arning,)-.1 E -(and an)108 379.2 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E -.644(When the shell is w)108 396 R .644 -(aiting for a job or process using the)-.1 F F1(wait)3.145 E F0 -.2(bu) -3.145 G .645(iltin, and job control is enabled,).2 F F1(wait)3.145 E F0 -(will)3.145 E .282(return when the job changes state. The)108 408 R F1 -2.782 E F0 .282(option causes)2.782 F F1(wait)2.782 E F0 .282 +(and an)108 492 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E .644 +(When the shell is w)108 508.8 R .644 +(aiting for a job or process using the)-.1 F F2(wait)3.145 E F0 -.2(bu) +3.145 G .645(iltin, and job control is enabled,).2 F F2(wait)3.145 E F0 +(will)3.145 E .282(return when the job changes state. The)108 520.8 R F2 +2.782 E F0 .282(option causes)2.782 F F2(wait)2.782 E F0 .282 (to w)2.782 F .282(ait until the job or process terminates be-)-.1 F -(fore returning.)108 420 Q/F4 10.95/Times-Bold@0 SF(PR)72 436.8 Q -(OMPTING)-.329 E F0 .644(When e)108 448.8 R -.15(xe)-.15 G .644 -(cuting interacti).15 F -.15(ve)-.25 G(ly).15 E(,)-.65 E F1(bash)3.144 E -F0 .645(displays the primary prompt)3.145 F F3(PS1)3.145 E F0 .645 +(fore returning.)108 532.8 Q/F4 10.95/Times-Bold@0 SF(PR)72 549.6 Q +(OMPTING)-.329 E F0 .644(When e)108 561.6 R -.15(xe)-.15 G .644 +(cuting interacti).15 F -.15(ve)-.25 G(ly).15 E(,)-.65 E F2(bash)3.144 E +F0 .645(displays the primary prompt)3.145 F F1(PS1)3.145 E F0 .645 (when it is ready to read a command,)2.895 F .428 -(and the secondary prompt)108 460.8 R F3(PS2)2.928 E F0 .427 -(when it needs more input to complete a command.)2.678 F F1(Bash)5.427 E -F0(displays)2.927 E F3(PS0)2.927 E F0(after)2.677 E .037 -(it reads a command b)108 472.8 R .037(ut before e)-.2 F -.15(xe)-.15 G -.037(cuting it.).15 F F1(Bash)5.037 E F0(displays)2.537 E F3(PS4)2.538 E +(and the secondary prompt)108 573.6 R F1(PS2)2.928 E F0 .427 +(when it needs more input to complete a command.)2.678 F F2(Bash)5.427 E +F0(displays)2.927 E F1(PS0)2.927 E F0(after)2.677 E .037 +(it reads a command b)108 585.6 R .037(ut before e)-.2 F -.15(xe)-.15 G +.037(cuting it.).15 F F2(Bash)5.037 E F0(displays)2.537 E F1(PS4)2.538 E F0 .038(as described abo)2.288 F .338 -.15(ve b)-.15 H .038 -(efore tracing each com-).15 F 1.122(mand when the)108 484.8 R F1 -3.622 E F0 1.122(option is enabled.)3.622 F F1(Bash)6.122 E F0(allo) +(efore tracing each com-).15 F 1.122(mand when the)108 597.6 R F2 +3.622 E F0 1.122(option is enabled.)3.622 F F2(Bash)6.122 E F0(allo) 3.622 E 1.122(ws these prompt strings to be customized by inserting a) -.25 F(number of backslash-escaped special characters that are decoded \ -as follo)108 496.8 Q(ws:)-.25 E F1(\\a)144 508.8 Q F0 -(an ASCII bell character \(07\))180 508.8 Q F1(\\d)144 520.8 Q F0 -(the date in "W)180 520.8 Q(eekday Month Date" format \(e.g., "T)-.8 E -(ue May 26"\))-.45 E F1(\\D{)144 532.8 Q F2(format)A F1(})A F0(the)180 -544.8 Q F2(format)3.926 E F0 1.426(is passed to)3.926 F F2(strftime) +as follo)108 609.6 Q(ws:)-.25 E F2(\\a)144 621.6 Q F0 +(an ASCII bell character \(07\))180 621.6 Q F2(\\d)144 633.6 Q F0 +(the date in "W)180 633.6 Q(eekday Month Date" format \(e.g., "T)-.8 E +(ue May 26"\))-.45 E F2(\\D{)144 645.6 Q F3(format)A F2(})A F0(the)180 +657.6 Q F3(format)3.926 E F0 1.426(is passed to)3.926 F F3(strftime) 3.926 E F0 1.427 (\(3\) and the result is inserted into the prompt string; an)B(empty)180 -556.8 Q F2(format)2.5 E F0 +669.6 Q F3(format)2.5 E F0 (results in a locale-speci\214c time representation.)2.5 E -(The braces are required)5 E F1(\\e)144 568.8 Q F0 -(an ASCII escape character \(033\))180 568.8 Q F1(\\h)144 580.8 Q F0 -(the hostname up to the \214rst `.)180 580.8 Q(')-.7 E F1(\\H)144 592.8 -Q F0(the hostname)180 592.8 Q F1(\\j)144 604.8 Q F0 -(the number of jobs currently managed by the shell)180 604.8 Q F1(\\l) -144 616.8 Q F0(the basename of the shell')180 616.8 Q 2.5(st)-.55 G -(erminal de)-2.5 E(vice name)-.25 E F1(\\n)144 628.8 Q F0(ne)180 628.8 Q -(wline)-.25 E F1(\\r)144 640.8 Q F0(carriage return)180 640.8 Q F1(\\s) -144 652.8 Q F0(the name of the shell, the basename of)180 652.8 Q F1($0) -2.5 E F0(\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E F1 -(\\t)144 664.8 Q F0(the current time in 24-hour HH:MM:SS format)180 -664.8 Q F1(\\T)144 676.8 Q F0 -(the current time in 12-hour HH:MM:SS format)180 676.8 Q F1(\\@)144 -688.8 Q F0(the current time in 12-hour am/pm format)180 688.8 Q F1(\\A) -144 700.8 Q F0(the current time in 24-hour HH:MM format)180 700.8 Q F1 -(\\u)144 712.8 Q F0(the username of the current user)180 712.8 Q -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(40)193.45 E 0 Cg EP +(The braces are required)5 E F2(\\e)144 681.6 Q F0 +(an ASCII escape character \(033\))180 681.6 Q F2(\\h)144 693.6 Q F0 +(the hostname up to the \214rst `.)180 693.6 Q(')-.7 E F2(\\H)144 705.6 +Q F0(the hostname)180 705.6 Q F2(\\j)144 717.6 Q F0 +(the number of jobs currently managed by the shell)180 717.6 Q +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(40)199.835 E 0 Cg EP %%Page: 41 41 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(\\v)144 84 Q F0(the v)180 84 Q(ersion of)-.15 E F1(bash)2.5 E F0 -(\(e.g., 2.00\))2.5 E F1(\\V)144 96 Q F0(the release of)180 96 Q F1 +SF(\\l)144 84 Q F0(the basename of the shell')180 84 Q 2.5(st)-.55 G +(erminal de)-2.5 E(vice name)-.25 E F1(\\n)144 96 Q F0(ne)180 96 Q +(wline)-.25 E F1(\\r)144 108 Q F0(carriage return)180 108 Q F1(\\s)144 +120 Q F0(the name of the shell, the basename of)180 120 Q F1($0)2.5 E F0 +(\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E F1(\\t)144 +132 Q F0(the current time in 24-hour HH:MM:SS format)180 132 Q F1(\\T) +144 144 Q F0(the current time in 12-hour HH:MM:SS format)180 144 Q F1 +(\\@)144 156 Q F0(the current time in 12-hour am/pm format)180 156 Q F1 +(\\A)144 168 Q F0(the current time in 24-hour HH:MM format)180 168 Q F1 +(\\u)144 180 Q F0(the username of the current user)180 180 Q F1(\\v)144 +192 Q F0(the v)180 192 Q(ersion of)-.15 E F1(bash)2.5 E F0 +(\(e.g., 2.00\))2.5 E F1(\\V)144 204 Q F0(the release of)180 204 Q F1 (bash)2.5 E F0 2.5(,v)C(ersion + patch le)-2.65 E -.15(ve)-.25 G 2.5 -(l\().15 G(e.g., 2.00.0\))-2.5 E F1(\\w)144 108 Q F0 .12(the v)180 108 R +(l\().15 G(e.g., 2.00.0\))-2.5 E F1(\\w)144 216 Q F0 .12(the v)180 216 R .119(alue of the)-.25 F F1(PWD)2.619 E F0 .119(shell v)2.619 F .119 (ariable \()-.25 F F1($PWD)A F0 .119(\), with)B/F2 9/Times-Bold@0 SF ($HOME)2.619 E F0(abbre)2.369 E .119(viated with a tilde \(uses)-.25 F -(the v)180 120 Q(alue of the)-.25 E F2(PR)2.5 E(OMPT_DIR)-.27 E(TRIM) --.36 E F0 -.25(va)2.25 G(riable\)).25 E F1(\\W)144 132 Q F0 -(the basename of)180 132 Q F1($PWD)2.5 E F0 2.5(,w)C(ith)-2.5 E F2 -($HOME)2.5 E F0(abbre)2.25 E(viated with a tilde)-.25 E F1(\\!)144 144 Q -F0(the history number of this command)180 144 Q F1(\\#)144 156 Q F0 -(the command number of this command)180 156 Q F1(\\$)144 168 Q F0 -(if the ef)180 168 Q(fecti)-.25 E .3 -.15(ve U)-.25 H(ID is 0, a).15 E -F1(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F1($)2.5 E(\\)144 180 Q/F3 10 +(the v)180 228 Q(alue of the)-.25 E F2(PR)2.5 E(OMPT_DIR)-.27 E(TRIM) +-.36 E F0 -.25(va)2.25 G(riable\)).25 E F1(\\W)144 240 Q F0 +(the basename of)180 240 Q F1($PWD)2.5 E F0 2.5(,w)C(ith)-2.5 E F2 +($HOME)2.5 E F0(abbre)2.25 E(viated with a tilde)-.25 E F1(\\!)144 252 Q +F0(the history number of this command)180 252 Q F1(\\#)144 264 Q F0 +(the command number of this command)180 264 Q F1(\\$)144 276 Q F0 +(if the ef)180 276 Q(fecti)-.25 E .3 -.15(ve U)-.25 H(ID is 0, a).15 E +F1(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F1($)2.5 E(\\)144 288 Q/F3 10 /Times-Italic@0 SF(nnn)A F0 -(the character corresponding to the octal number)180 180 Q F3(nnn)2.5 E -F1(\\\\)144 192 Q F0 2.5(ab)180 192 S(ackslash)-2.5 E F1(\\[)144 204 Q -F0(be)180 204 Q 1.257(gin a sequence of non-printing characters, which \ +(the character corresponding to the octal number)180 288 Q F3(nnn)2.5 E +F1(\\\\)144 300 Q F0 2.5(ab)180 300 S(ackslash)-2.5 E F1(\\[)144 312 Q +F0(be)180 312 Q 1.257(gin a sequence of non-printing characters, which \ could be used to embed a terminal)-.15 F -(control sequence into the prompt)180 216 Q F1(\\])144 228 Q F0 -(end a sequence of non-printing characters)180 228 Q .12 -(The command number and the history number are usually dif)108 244.8 R +(control sequence into the prompt)180 324 Q F1(\\])144 336 Q F0 +(end a sequence of non-printing characters)180 336 Q .12 +(The command number and the history number are usually dif)108 352.8 R .119(ferent: the history number of a command is its)-.25 F .547(positio\ n in the history list, which may include commands restored from the his\ -tory \214le \(see)108 256.8 R F2(HIST)3.047 E(OR)-.162 E(Y)-.315 E F0 -(be-)2.797 E(lo)108 268.8 Q .354(w\), while the command number is the p\ +tory \214le \(see)108 364.8 R F2(HIST)3.047 E(OR)-.162 E(Y)-.315 E F0 +(be-)2.797 E(lo)108 376.8 Q .354(w\), while the command number is the p\ osition in the sequence of commands e)-.25 F -.15(xe)-.15 G .354 -(cuted during the current).15 F .822(shell session.)108 280.8 R .822 +(cuted during the current).15 F .822(shell session.)108 388.8 R .822 (After the string is decoded, it is e)5.822 F .822 (xpanded via parameter e)-.15 F .823(xpansion, command substitution,) --.15 F .683(arithmetic e)108 292.8 R .683(xpansion, and quote remo)-.15 +-.15 F .683(arithmetic e)108 400.8 R .683(xpansion, and quote remo)-.15 F -.25(va)-.15 G .683(l, subject to the v).25 F .682(alue of the)-.25 F F1(pr)3.182 E(omptv)-.18 E(ars)-.1 E F0 .682(shell option \(see the de-) -3.182 F 1.197(scription of the)108 304.8 R F1(shopt)3.697 E F0 1.197 +3.182 F 1.197(scription of the)108 412.8 R F1(shopt)3.697 E F0 1.197 (command under)3.697 F F2 1.197(SHELL B)3.697 F(UIL)-.09 E 1.197 (TIN COMMANDS)-.828 F F0(belo)3.448 E 3.698(w\). This)-.25 F 1.198 (can ha)3.698 F 1.498 -.15(ve u)-.2 H(nw).15 E(anted)-.1 E .322(side ef) -108 316.8 R .322(fects if escaped portions of the string appear within \ +108 424.8 R .322(fects if escaped portions of the string appear within \ command substitution or contain characters spe-)-.25 F(cial to w)108 -328.8 Q(ord e)-.1 E(xpansion.)-.15 E/F4 10.95/Times-Bold@0 SF(READLINE) -72 345.6 Q F0 .15 +436.8 Q(ord e)-.1 E(xpansion.)-.15 E/F4 10.95/Times-Bold@0 SF(READLINE) +72 453.6 Q F0 .15 (This is the library that handles reading input when using an interacti) -108 357.6 R .451 -.15(ve s)-.25 H .151(hell, unless the).15 F F1 -(\255\255noediting)2.651 E F0(option)2.651 E .385(is gi)108 369.6 R -.15 +108 465.6 R .451 -.15(ve s)-.25 H .151(hell, unless the).15 F F1 +(\255\255noediting)2.651 E F0(option)2.651 E .385(is gi)108 477.6 R -.15 (ve)-.25 G 2.885(na).15 G 2.885(ts)-2.885 G .385(hell in)-2.885 F -.2 (vo)-.4 G 2.885(cation. Line).2 F .385 (editing is also used when using the)2.885 F F12.884 E F0 .384 (option to the)2.884 F F1 -.18(re)2.884 G(ad).18 E F0 -.2(bu)2.884 G -2.884(iltin. By).2 F(de-)2.884 E -.1(fa)108 381.6 S 1.406 +2.884(iltin. By).2 F(de-)2.884 E -.1(fa)108 489.6 S 1.406 (ult, the line editing commands are similar to those of Emacs.).1 F 3.907(Av)6.407 G 1.407(i-style line editing interf)-3.907 F 1.407 -(ace is also)-.1 F -.2(av)108 393.6 S 3.35(ailable. Line)-.05 F .85 +(ace is also)-.1 F -.2(av)108 501.6 S 3.35(ailable. Line)-.05 F .85 (editing can be enabled at an)3.35 F 3.35(yt)-.15 G .85(ime using the) -3.35 F F1 .85(\255o emacs)3.35 F F0(or)3.35 E F1 .85(\255o vi)3.35 F F0 .85(options to the)3.35 F F1(set)3.35 E F0 -.2(bu)3.35 G(iltin).2 E -(\(see)108 405.6 Q F2 .762(SHELL B)3.262 F(UIL)-.09 E .762(TIN COMMANDS) +(\(see)108 513.6 Q F2 .762(SHELL B)3.262 F(UIL)-.09 E .762(TIN COMMANDS) -.828 F F0(belo)3.012 E 3.262(w\). T)-.25 F 3.263(ot)-.8 G .763(urn of) -3.263 F 3.263(fl)-.25 G .763 (ine editing after the shell is running, use the)-3.263 F F1(+o)3.263 E -(emacs)108 417.6 Q F0(or)2.5 E F1(+o vi)2.5 E F0(options to the)2.5 E F1 -(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(Readline Notation)87 434.4 Q +(emacs)108 525.6 Q F0(or)2.5 E F1(+o vi)2.5 E F0(options to the)2.5 E F1 +(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(Readline Notation)87 542.4 Q F0 .463(In this section, the Emacs-style notation is used to denote k) -108 446.4 R -.15(ey)-.1 G(strok).15 E 2.963(es. Control)-.1 F -.1(ke) +108 554.4 R -.15(ey)-.1 G(strok).15 E 2.963(es. Control)-.1 F -.1(ke) 2.963 G .463(ys are denoted by C\255)-.05 F F3 -.1(ke)C(y)-.2 E F0(,)A -1.152(e.g., C\255n means Control\255N.)108 458.4 R(Similarly)6.152 E(,) +1.152(e.g., C\255n means Control\255N.)108 566.4 R(Similarly)6.152 E(,) -.65 E F3(meta)4.032 E F0 -.1(ke)3.913 G 1.153(ys are denoted by M\255) -.05 F F3 -.1(ke)C(y)-.2 E F0 3.653(,s)C 3.653(oM)-3.653 G 1.153 -(\255x means Meta\255X.)-3.653 F(\(On)6.153 E -.1(ke)108 470.4 S .831 +(\255x means Meta\255X.)-3.653 F(\(On)6.153 E -.1(ke)108 578.4 S .831 (yboards without a)-.05 F F3(meta)3.711 E F0 -.1(ke)3.591 G 2.131 -.65 (y, M)-.05 H.65 E F3(x)A F0 .831(means ESC)3.331 F F3(x)3.331 E F0 3.331(,i)C .83(.e., press the Escape k)-3.331 F 1.13 -.15(ey t)-.1 H .83 (hen the).15 F F3(x)4.1 E F0 -.1(ke)3.86 G 4.63 -.65(y. T)-.05 H .83 -(his mak).65 F(es)-.1 E .599(ESC the)108 482.4 R F3 .599(meta pr)3.099 F +(his mak).65 F(es)-.1 E .599(ESC the)108 590.4 R F3 .599(meta pr)3.099 F (e\214x)-.37 E F0 5.599(.T)C .599(he combination M\255C\255)-5.599 F F3 (x)A F0 .599(means ESC\255Control\255)3.099 F F3(x)A F0 3.099(,o)C 3.099 (rp)-3.099 G .6(ress the Escape k)-3.099 F .9 -.15(ey t)-.1 H .6 -(hen hold).15 F(the Control k)108 494.4 Q .3 -.15(ey w)-.1 H +(hen hold).15 F(the Control k)108 602.4 Q .3 -.15(ey w)-.1 H (hile pressing the).15 E F3(x)3.27 E F0 -.1(ke)3.03 G -.65(y.)-.05 G(\)) -.65 E .596(Readline commands may be gi)108 511.2 R -.15(ve)-.25 G 3.096 +.65 E .596(Readline commands may be gi)108 619.2 R -.15(ve)-.25 G 3.096 (nn).15 G(umeric)-3.096 E F3(ar)3.426 E(guments)-.37 E F0 3.096(,w).27 G .596(hich normally act as a repeat count.)-3.096 F(Sometimes,)5.595 E -(ho)108 523.2 Q(we)-.25 E -.15(ve)-.25 G 1.418 -.4(r, i).15 H 3.118(ti) +(ho)108 631.2 Q(we)-.25 E -.15(ve)-.25 G 1.418 -.4(r, i).15 H 3.118(ti) .4 G 3.119(st)-3.118 G .619(he sign of the ar)-3.119 F .619 (gument that is signi\214cant.)-.18 F -.15(Pa)5.619 G .619(ssing a ne) .15 F -.05(ga)-.15 G(ti).05 E .919 -.15(ve a)-.25 H -.18(rg).15 G .619 -(ument to a command that).18 F 1.019(acts in the forw)108 535.2 R 1.018 +(ument to a command that).18 F 1.019(acts in the forw)108 643.2 R 1.018 (ard direction \(e.g.,)-.1 F F1(kill\255line)3.518 E F0 3.518(\)c)C 1.018(auses that command to act in a backw)-3.518 F 1.018 -(ard direction.)-.1 F(Com-)6.018 E(mands whose beha)108 547.2 Q +(ard direction.)-.1 F(Com-)6.018 E(mands whose beha)108 655.2 Q (vior with ar)-.2 E(guments de)-.18 E(viates from this are noted belo) --.25 E -.65(w.)-.25 G .811(When a command is described as)108 564 R F3 +-.25 E -.65(w.)-.25 G .811(When a command is described as)108 672 R F3 (killing)3.311 E F0(te)3.311 E .811(xt, the te)-.15 F .811 (xt deleted is sa)-.15 F -.15(ve)-.2 G 3.311(df).15 G .812 (or possible future retrie)-3.311 F -.25(va)-.25 G 3.312(l\().25 G F3 -(yank-)-3.312 E(ing)108 576 Q F0 2.529(\). The)B .029(killed te)2.529 F +(yank-)-3.312 E(ing)108 684 Q F0 2.529(\). The)B .029(killed te)2.529 F .029(xt is sa)-.15 F -.15(ve)-.2 G 2.529(di).15 G 2.529(na)-2.529 G F3 .029(kill ring)B F0 5.029(.C)C(onsecuti)-5.029 E .329 -.15(ve k)-.25 H .029(ills cause the te).15 F .029(xt to be accumulated into one unit,) --.15 F .567(which can be yank)108 588 R .567(ed all at once.)-.1 F .567 +-.15 F .567(which can be yank)108 696 R .567(ed all at once.)-.1 F .567 (Commands which do not kill te)5.567 F .567 (xt separate the chunks of te)-.15 F .567(xt on the kill)-.15 F(ring.) -108 600 Q F1(Readline Initialization)87 616.8 Q F0 .091(Readline is cus\ -tomized by putting commands in an initialization \214le \(the)108 628.8 -R F3(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 F .091 -(name of this \214le)2.591 F .572(is tak)108 640.8 R .573(en from the v) --.1 F .573(alue of the)-.25 F F2(INPUTRC)3.073 E F0 -.25(va)2.823 G -3.073(riable. If).25 F .573(that v)3.073 F .573 -(ariable is unset, the def)-.25 F .573(ault is)-.1 F F3(~/.inputr)2.573 -E(c)-.37 E F0 5.573(.I).31 G 3.073(ft)-5.573 G(hat)-3.073 E 3.062 -(\214le does)108 652.8 R .562(not e)3.062 F .562 -(xist or cannot be read, the ultimate def)-.15 F .562(ault is)-.1 F F3 -(/etc/inputr)4.212 E(c)-.37 E F0 5.561(.W).31 G .561 -(hen a program which uses the)-5.561 F .174(readline library starts up,\ - the initialization \214le is read, and the k)108 664.8 R .475 -.15 -(ey b)-.1 H .175(indings and v).15 F .175(ariables are set.)-.25 F .175 -(There are)5.175 F .239(only a fe)108 676.8 R 2.739(wb)-.25 G .239 -(asic constructs allo)-2.739 F .239 -(wed in the readline initialization \214le.)-.25 F .238 -(Blank lines are ignored.)5.239 F .238(Lines be)5.238 F(gin-)-.15 E .553 -(ning with a)108 688.8 R F1(#)3.053 E F0 .554(are comments.)3.053 F .554 -(Lines be)5.554 F .554(ginning with a)-.15 F F1($)3.054 E F0 .554 -(indicate conditional constructs.)3.054 F .554(Other lines denote)5.554 -F -.1(ke)108 700.8 S 2.5(yb)-.05 G(indings and v)-2.5 E -(ariable settings.)-.25 E .987(The def)108 717.6 R .987(ault k)-.1 F --.15(ey)-.1 G .987(-bindings may be changed with an).15 F F3(inputr) -3.497 E(c)-.37 E F0 3.487(\214le. Other)3.797 F .987 -(programs that use this library may)3.487 F(add their o)108 729.6 Q -(wn commands and bindings.)-.25 E(GNU Bash 5.2)72 768 Q(2022 March 11) -144.29 E(41)193.45 E 0 Cg EP +108 708 Q(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(41)199.835 E 0 Cg +EP %%Page: 42 42 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.15(Fo)108 84 S -2.5(re).15 G(xample, placing)-2.65 E(M\255Control\255u: uni)144 100.8 Q --.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(or)108 112.8 Q -(C\255Meta\255u: uni)144 124.8 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument) --.18 E(into the)108 136.8 Q/F1 10/Times-Italic@0 SF(inputr)2.51 E(c)-.37 -E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G(\255C\255u e)-2.5 E -.15 -(xe)-.15 G(cute the readline command).15 E F1(univer)2.58 E(sal\255ar) --.1 E(gument)-.37 E F0(.).68 E 1.01(The follo)108 153.6 R 1.011 -(wing symbolic character names are recognized:)-.25 F F1 -.4(RU)3.511 G -(BOUT).4 E F0(,)1.27 E F1(DEL)4.091 E F0(,).53 E F1(ESC)4.021 E F0(,).72 -E F1(LFD)4.091 E F0(,).28 E F1(NEWLINE)4.211 E F0(,).73 E F1(RET)4.141 E -F0(,)1.27 E F1(RETURN)108.63 165.6 Q F0(,)1.1 E F1(SPC)2.83 E F0(,).72 E -F1(SP)2.83 E -.3(AC)-.9 G(E).3 E F0 2.5(,a).73 G(nd)-2.5 E F1 -.5(TA)2.5 -G(B).5 E F0(.).27 E .209(In addition to command names, readline allo)108 -182.4 R .209(ws k)-.25 F -.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G -2.709(eb)-2.709 G .209(ound to a string that is inserted when the k) --2.709 F .509 -.15(ey i)-.1 H(s).15 E(pressed \(a)108 194.4 Q F1(macr) -2.5 E(o)-.45 E F0(\).)A/F2 10/Times-Bold@0 SF(Readline K)87 211.2 Q -(ey Bindings)-.25 E F0 .366(The syntax for controlling k)108 223.2 R -.666 -.15(ey b)-.1 H .366(indings in the).15 F F1(inputr)2.876 E(c)-.37 -E F0 .366(\214le is simple.)3.176 F .366 -(All that is required is the name of the)5.366 F .264(command or the te) -108 235.2 R .264(xt of a macro and a k)-.15 F .564 -.15(ey s)-.1 H .264 -(equence to which it should be bound.).15 F .263(The name may be speci-) -5.264 F .138(\214ed in one of tw)108 247.2 R 2.638(ow)-.1 G .138 -(ays: as a symbolic k)-2.738 F .438 -.15(ey n)-.1 H .138 -(ame, possibly with).15 F F1(Meta\255)2.638 E F0(or)2.638 E F1(Contr) -2.638 E(ol\255)-.45 E F0(pre\214x)2.638 E .138(es, or as a k)-.15 F .439 --.15(ey s)-.1 H(e-).15 E(quence.)108 259.2 Q .161(When using the form) -108 276 R F2 -.1(ke)2.661 G(yname).1 E F0(:)A F1(function\255name).833 E -F0(or)2.661 E F1(macr)2.661 E(o)-.45 E F0(,)A F1 -.1(ke)2.661 G(yname) --.2 E F0 .16(is the name of a k)2.84 F .46 -.15(ey s)-.1 H .16 -(pelled out in Eng-).15 F 2.5(lish. F)108 288 R(or e)-.15 E(xample:)-.15 -E(Control-u: uni)144 312 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E -(Meta-Rubout: backw)144 324 Q(ard-kill-w)-.1 E(ord)-.1 E -(Control-o: "> output")144 336 Q .698(In the abo)108 352.8 R .998 -.15 -(ve ex)-.15 H(ample,).15 E F1(C\255u)3.038 E F0 .698 -(is bound to the function)3.448 F F2(uni)3.198 E -.1(ve)-.1 G -(rsal\255ar).1 E(gument)-.1 E F0(,)A F1(M\255DEL)3.878 E F0 .698 -(is bound to the func-)3.728 F(tion)108 364.8 Q F2 -(backward\255kill\255w)2.759 E(ord)-.1 E F0 2.759(,a)C(nd)-2.759 E F1 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(Readline Initialization)87 84 Q F0 .091(Readline is customized by pu\ +tting commands in an initialization \214le \(the)108 96 R/F2 10 +/Times-Italic@0 SF(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 +F .091(name of this \214le)2.591 F .572(is tak)108 108 R .573 +(en from the v)-.1 F .573(alue of the)-.25 F/F3 9/Times-Bold@0 SF +(INPUTRC)3.073 E F0 -.25(va)2.823 G 3.073(riable. If).25 F .573(that v) +3.073 F .573(ariable is unset, the def)-.25 F .573(ault is)-.1 F F2 +(~/.inputr)2.573 E(c)-.37 E F0 5.573(.I).31 G 3.073(ft)-5.573 G(hat) +-3.073 E 3.062(\214le does)108 120 R .562(not e)3.062 F .562 +(xist or cannot be read, the ultimate def)-.15 F .562(ault is)-.1 F F2 +(/etc/inputr)4.212 E(c)-.37 E F0 5.561(.W).31 G .561 +(hen a program which uses the)-5.561 F .174(readline library starts up,\ + the initialization \214le is read, and the k)108 132 R .475 -.15(ey b) +-.1 H .175(indings and v).15 F .175(ariables are set.)-.25 F .175 +(There are)5.175 F .239(only a fe)108 144 R 2.739(wb)-.25 G .239 +(asic constructs allo)-2.739 F .239 +(wed in the readline initialization \214le.)-.25 F .238 +(Blank lines are ignored.)5.239 F .238(Lines be)5.238 F(gin-)-.15 E .553 +(ning with a)108 156 R F1(#)3.053 E F0 .554(are comments.)3.053 F .554 +(Lines be)5.554 F .554(ginning with a)-.15 F F1($)3.054 E F0 .554 +(indicate conditional constructs.)3.054 F .554(Other lines denote)5.554 +F -.1(ke)108 168 S 2.5(yb)-.05 G(indings and v)-2.5 E(ariable settings.) +-.25 E .987(The def)108 184.8 R .987(ault k)-.1 F -.15(ey)-.1 G .987 +(-bindings may be changed with an).15 F F2(inputr)3.497 E(c)-.37 E F0 +3.487(\214le. Other)3.797 F .987(programs that use this library may) +3.487 F(add their o)108 196.8 Q(wn commands and bindings.)-.25 E -.15 +(Fo)108 213.6 S 2.5(re).15 G(xample, placing)-2.65 E +(M\255Control\255u: uni)144 230.4 Q -.15(ve)-.25 G(rsal\255ar).15 E +(gument)-.18 E(or)108 242.4 Q(C\255Meta\255u: uni)144 254.4 Q -.15(ve) +-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 266.4 Q F2(inputr) +2.51 E(c)-.37 E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G(\255C\255u e) +-2.5 E -.15(xe)-.15 G(cute the readline command).15 E F2(univer)2.58 E +(sal\255ar)-.1 E(gument)-.37 E F0(.).68 E 1.01(The follo)108 283.2 R +1.011(wing symbolic character names are recognized:)-.25 F F2 -.4(RU) +3.511 G(BOUT).4 E F0(,)1.27 E F2(DEL)4.091 E F0(,).53 E F2(ESC)4.021 E +F0(,).72 E F2(LFD)4.091 E F0(,).28 E F2(NEWLINE)4.211 E F0(,).73 E F2 +(RET)4.141 E F0(,)1.27 E F2(RETURN)108.63 295.2 Q F0(,)1.1 E F2(SPC)2.83 +E F0(,).72 E F2(SP)2.83 E -.3(AC)-.9 G(E).3 E F0 2.5(,a).73 G(nd)-2.5 E +F2 -.5(TA)2.5 G(B).5 E F0(.).27 E .209 +(In addition to command names, readline allo)108 312 R .209(ws k)-.25 F +-.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G 2.709(eb)-2.709 G .209 +(ound to a string that is inserted when the k)-2.709 F .509 -.15(ey i) +-.1 H(s).15 E(pressed \(a)108 324 Q F2(macr)2.5 E(o)-.45 E F0(\).)A F1 +(Readline K)87 340.8 Q(ey Bindings)-.25 E F0 .366 +(The syntax for controlling k)108 352.8 R .666 -.15(ey b)-.1 H .366 +(indings in the).15 F F2(inputr)2.876 E(c)-.37 E F0 .366 +(\214le is simple.)3.176 F .366(All that is required is the name of the) +5.366 F .264(command or the te)108 364.8 R .264(xt of a macro and a k) +-.15 F .564 -.15(ey s)-.1 H .264(equence to which it should be bound.) +.15 F .263(The name may be speci-)5.264 F .138(\214ed in one of tw)108 +376.8 R 2.638(ow)-.1 G .138(ays: as a symbolic k)-2.738 F .438 -.15 +(ey n)-.1 H .138(ame, possibly with).15 F F2(Meta\255)2.638 E F0(or) +2.638 E F2(Contr)2.638 E(ol\255)-.45 E F0(pre\214x)2.638 E .138 +(es, or as a k)-.15 F .439 -.15(ey s)-.1 H(e-).15 E(quence.)108 388.8 Q +.161(When using the form)108 405.6 R F1 -.1(ke)2.661 G(yname).1 E F0(:)A +F2(function\255name).833 E F0(or)2.661 E F2(macr)2.661 E(o)-.45 E F0(,)A +F2 -.1(ke)2.661 G(yname)-.2 E F0 .16(is the name of a k)2.84 F .46 -.15 +(ey s)-.1 H .16(pelled out in Eng-).15 F 2.5(lish. F)108 417.6 R(or e) +-.15 E(xample:)-.15 E(Control-u: uni)144 441.6 Q -.15(ve)-.25 G +(rsal\255ar).15 E(gument)-.18 E(Meta-Rubout: backw)144 453.6 Q +(ard-kill-w)-.1 E(ord)-.1 E(Control-o: "> output")144 465.6 Q .698 +(In the abo)108 482.4 R .998 -.15(ve ex)-.15 H(ample,).15 E F2(C\255u) +3.038 E F0 .698(is bound to the function)3.448 F F1(uni)3.198 E -.1(ve) +-.1 G(rsal\255ar).1 E(gument)-.1 E F0(,)A F2(M\255DEL)3.878 E F0 .698 +(is bound to the func-)3.728 F(tion)108 494.4 Q F1 +(backward\255kill\255w)2.759 E(ord)-.1 E F0 2.759(,a)C(nd)-2.759 E F2 (C\255o)2.599 E F0 .258(is bound to run the macro e)2.939 F .258 (xpressed on the right hand side \(that is, to)-.15 F(insert the te)108 -376.8 Q(xt)-.15 E/F3 10/Courier@0 SF 6(>o)2.5 G(utput)-6 E F0 -(into the line\).)2.5 E .055(In the second form,)108 393.6 R F2("k)2.555 -E(eyseq")-.1 E F0(:)A F1(function\255name).833 E F0(or)2.555 E F1(macr) -2.555 E(o)-.45 E F0(,)A F2 -.1(ke)2.555 G(yseq).1 E F0(dif)2.556 E .056 -(fers from)-.25 F F2 -.1(ke)2.556 G(yname).1 E F0(abo)2.556 E .356 -.15 +506.4 Q(xt)-.15 E/F4 10/Courier@0 SF 6(>o)2.5 G(utput)-6 E F0 +(into the line\).)2.5 E .055(In the second form,)108 523.2 R F1("k)2.555 +E(eyseq")-.1 E F0(:)A F2(function\255name).833 E F0(or)2.555 E F2(macr) +2.555 E(o)-.45 E F0(,)A F1 -.1(ke)2.555 G(yseq).1 E F0(dif)2.556 E .056 +(fers from)-.25 F F1 -.1(ke)2.556 G(yname).1 E F0(abo)2.556 E .356 -.15 (ve i)-.15 H 2.556(nt).15 G .056(hat strings)-2.556 F 1.284 -(denoting an entire k)108 405.6 R 1.584 -.15(ey s)-.1 H 1.284(equence m\ +(denoting an entire k)108 535.2 R 1.584 -.15(ey s)-.1 H 1.284(equence m\ ay be speci\214ed by placing the sequence within double quotes.).15 F -(Some)6.284 E .385(GNU Emacs style k)108 417.6 R .685 -.15(ey e)-.1 H +(Some)6.284 E .385(GNU Emacs style k)108 547.2 R .685 -.15(ey e)-.1 H .385(scapes can be used, as in the follo).15 F .385(wing e)-.25 F .386 (xample, b)-.15 F .386(ut the symbolic character names)-.2 F -(are not recognized.)108 429.6 Q("\\C\255u": uni)144 453.6 Q -.15(ve) +(are not recognized.)108 559.2 Q("\\C\255u": uni)144 583.2 Q -.15(ve) -.25 G(rsal\255ar).15 E(gument)-.18 E -("\\C\255x\\C\255r": re\255read\255init\255\214le)144 465.6 Q -("\\e[11~": "Function K)144 477.6 Q .3 -.15(ey 1)-.25 H(").15 E .315 -(In this e)108 494.4 R(xample,)-.15 E F1(C\255u)2.655 E F0 .315(is ag) -3.065 F .315(ain bound to the function)-.05 F F2(uni)2.815 E -.1(ve)-.1 -G(rsal\255ar).1 E(gument)-.1 E F0(.)A F1 .315(C\255x C\255r)5.155 F F0 -.314(is bound to the func-)3.544 F(tion)108 506.4 Q F2 -.18(re)2.5 G -.18 E(ead\255init\255\214le)-.18 E F0 2.5(,a)C(nd)-2.5 E F1 -(ESC [ 1 1 ~)3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F3 -(Function Key 1)2.5 E F0(.)A -(The full set of GNU Emacs style escape sequences is)108 523.2 Q F2 -<5c43ad>144 535.2 Q F0(control pre\214x)180 535.2 Q F2<5c4dad>144 547.2 -Q F0(meta pre\214x)180 547.2 Q F2(\\e)144 559.2 Q F0 -(an escape character)180 559.2 Q F2(\\\\)144 571.2 Q F0(backslash)180 -571.2 Q F2(\\")144 583.2 Q F0(literal ")180 583.2 Q F2<5c08>144 595.2 Q -F0(literal \010)180 595.2 Q(In addition to the GNU Emacs style escape s\ -equences, a second set of backslash escapes is a)108 612 Q -.25(va)-.2 G -(ilable:).25 E F2(\\a)144 624 Q F0(alert \(bell\))180 624 Q F2(\\b)144 -636 Q F0(backspace)180 636 Q F2(\\d)144 648 Q F0(delete)180 648 Q F2 -(\\f)144 660 Q F0(form feed)180 660 Q F2(\\n)144 672 Q F0(ne)180 672 Q -(wline)-.25 E F2(\\r)144 684 Q F0(carriage return)180 684 Q F2(\\t)144 -696 Q F0(horizontal tab)180 696 Q F2(\\v)144 708 Q F0 -.15(ve)180 708 S -(rtical tab).15 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(42)193.45 -E 0 Cg EP +("\\C\255x\\C\255r": re\255read\255init\255\214le)144 595.2 Q +("\\e[11~": "Function K)144 607.2 Q .3 -.15(ey 1)-.25 H(").15 E .315 +(In this e)108 624 R(xample,)-.15 E F2(C\255u)2.655 E F0 .315(is ag) +3.065 F .315(ain bound to the function)-.05 F F1(uni)2.815 E -.1(ve)-.1 +G(rsal\255ar).1 E(gument)-.1 E F0(.)A F2 .315(C\255x C\255r)5.155 F F0 +.314(is bound to the func-)3.544 F(tion)108 636 Q F1 -.18(re)2.5 G +.18 E(ead\255init\255\214le)-.18 E F0 2.5(,a)C(nd)-2.5 E F2(ESC [ 1 1 ~) +3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F4(Function Key 1) +2.5 E F0(.)A(The full set of GNU Emacs style escape sequences is)108 +652.8 Q F1<5c43ad>144 664.8 Q F0(control pre\214x)180 664.8 Q F1<5c4dad> +144 676.8 Q F0(meta pre\214x)180 676.8 Q F1(\\e)144 688.8 Q F0 +(an escape character)180 688.8 Q F1(\\\\)144 700.8 Q F0(backslash)180 +700.8 Q F1(\\")144 712.8 Q F0(literal ")180 712.8 Q(GNU Bash 5.2)72 768 +Q(2022 June 3)150.675 E(42)199.835 E 0 Cg EP %%Page: 43 43 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(\\)144 84 Q/F2 10/Times-Italic@0 SF(nnn)A F0 -(the eight-bit character whose v)180 84 Q(alue is the octal v)-.25 E -(alue)-.25 E F2(nnn)2.5 E F0(\(one to three digits\))2.5 E F1(\\x)144 96 -Q F2(HH)A F0(the eight-bit character whose v)180 96 Q(alue is the he) --.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0(\(one or tw)2.5 E -2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E 1.141 -(When entering the te)108 112.8 R 1.141(xt of a macro, single or double\ +SF<5c08>144 84 Q F0(literal \010)180 84 Q(In addition to the GNU Emacs \ +style escape sequences, a second set of backslash escapes is a)108 100.8 +Q -.25(va)-.2 G(ilable:).25 E F1(\\a)144 112.8 Q F0(alert \(bell\))180 +112.8 Q F1(\\b)144 124.8 Q F0(backspace)180 124.8 Q F1(\\d)144 136.8 Q +F0(delete)180 136.8 Q F1(\\f)144 148.8 Q F0(form feed)180 148.8 Q F1 +(\\n)144 160.8 Q F0(ne)180 160.8 Q(wline)-.25 E F1(\\r)144 172.8 Q F0 +(carriage return)180 172.8 Q F1(\\t)144 184.8 Q F0(horizontal tab)180 +184.8 Q F1(\\v)144 196.8 Q F0 -.15(ve)180 196.8 S(rtical tab).15 E F1 +(\\)144 208.8 Q/F2 10/Times-Italic@0 SF(nnn)A F0 +(the eight-bit character whose v)180 208.8 Q(alue is the octal v)-.25 E +(alue)-.25 E F2(nnn)2.5 E F0(\(one to three digits\))2.5 E F1(\\x)144 +220.8 Q F2(HH)A F0(the eight-bit character whose v)180 220.8 Q +(alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0 +(\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E 1.141 +(When entering the te)108 237.6 R 1.141(xt of a macro, single or double\ quotes must be used to indicate a macro de\214nition.)-.15 F .09 -(Unquoted te)108 124.8 R .09(xt is assumed to be a function name.)-.15 F +(Unquoted te)108 249.6 R .09(xt is assumed to be a function name.)-.15 F .089(In the macro body)5.089 F 2.589(,t)-.65 G .089 (he backslash escapes described abo)-2.589 F -.15(ve)-.15 G(are e)108 -136.8 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G +261.6 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G (ther character in the macro te)-2.5 E(xt, including " and \010.)-.15 E -F1(Bash)108 153.6 Q F0(allo)2.929 E .429(ws the current readline k)-.25 +F1(Bash)108 278.4 Q F0(allo)2.929 E .429(ws the current readline k)-.25 F .729 -.15(ey b)-.1 H .429 (indings to be displayed or modi\214ed with the).15 F F1(bind)2.93 E F0 -.2(bu)2.93 G .43(iltin command.).2 F .046 -(The editing mode may be switched during interacti)108 165.6 R .346 -.15 +(The editing mode may be switched during interacti)108 290.4 R .346 -.15 (ve u)-.25 H .046(se by using the).15 F F12.545 E F0 .045 (option to the)2.545 F F1(set)2.545 E F0 -.2(bu)2.545 G .045 -(iltin command).2 F(\(see)108 177.6 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E +(iltin command).2 F(\(see)108 302.4 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E (UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F1 -(Readline V)87 194.4 Q(ariables)-.92 E F0 .043(Readline has v)108 206.4 +(Readline V)87 319.2 Q(ariables)-.92 E F0 .043(Readline has v)108 331.2 R .043(ariables that can be used to further customize its beha)-.25 F (vior)-.2 E 5.043(.A)-.55 G -.25(va)-2.5 G .043 -(riable may be set in the).25 F F2(inpu-)2.554 E(tr)108 218.4 Q(c)-.37 E -F0(\214le with a statement of the form)2.81 E F1(set)144 235.2 Q F2 -(variable\255name value)2.5 E F0(or using the)108 247.2 Q F1(bind)2.5 E -F0 -.2(bu)2.5 G(iltin command \(see).2 E F3(SHELL B)2.5 E(UIL)-.09 E +(riable may be set in the).25 F F2(inpu-)2.554 E(tr)108 343.2 Q(c)-.37 E +F0(\214le with a statement of the form)2.81 E F1(set)144 360 Q F2 +(variable\255name value)2.5 E F0(or using the)108 372 Q F1(bind)2.5 E F0 +-.2(bu)2.5 G(iltin command \(see).2 E F3(SHELL B)2.5 E(UIL)-.09 E (TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E .79 -(Except where noted, readline v)108 264 R .79(ariables can tak)-.25 F +(Except where noted, readline v)108 388.8 R .79(ariables can tak)-.25 F 3.29(et)-.1 G .79(he v)-3.29 F(alues)-.25 E F1(On)3.29 E F0(or)3.29 E F1 (Off)3.29 E F0 .79(\(without re)3.29 F -.05(ga)-.15 G .79(rd to case\).) -.05 F(Unrecog-)5.79 E .448(nized v)108 276 R .448 +.05 F(Unrecog-)5.79 E .448(nized v)108 400.8 R .448 (ariable names are ignored.)-.25 F .448(When a v)5.448 F .448(ariable v) -.25 F .448(alue is read, empty or null v)-.25 F .449 -(alues, "on" \(case-insensi-)-.25 F(ti)108 288 Q -.15(ve)-.25 G .468 +(alues, "on" \(case-insensi-)-.25 F(ti)108 412.8 Q -.15(ve)-.25 G .468 (\), and "1" are equi).15 F -.25(va)-.25 G .468(lent to).25 F F1(On) 2.968 E F0 5.468(.A)C .468(ll other v)-5.468 F .468(alues are equi)-.25 F -.25(va)-.25 G .468(lent to).25 F F1(Off)2.968 E F0 5.468(.T)C .467 (he v)-5.468 F .467(ariables and their def)-.25 F(ault)-.1 E -.25(va)108 -300 S(lues are:).25 E F1(acti)108 316.8 Q -.1(ve)-.1 G.1 E -(egion\255start\255color)-.18 E F0 2.729(As)144 328.8 S .229(tring v) +424.8 S(lues are:).25 E F1(acti)108 441.6 Q -.1(ve)-.1 G.1 E +(egion\255start\255color)-.18 E F0 2.729(As)144 453.6 S .229(tring v) -2.729 F .229(ariable that controls the te)-.25 F .229 (xt color and background when displaying the te)-.15 F .23 -(xt in the acti)-.15 F -.15(ve)-.25 G(re)144 340.8 Q 1.527 +(xt in the acti)-.15 F -.15(ve)-.25 G(re)144 465.6 Q 1.527 (gion \(see the description of)-.15 F F1(enable\255acti)4.026 E -.1(ve) -.1 G.1 E(egion)-.18 E F0(belo)4.026 E 4.026(w\). This)-.25 F 1.526(string must not tak)4.026 F 4.026(eu)-.1 G 4.026(pa)-4.026 G -.15 -(ny)-4.026 G(ph)144 352.8 Q .283 +(ny)-4.026 G(ph)144 477.6 Q .283 (ysical character positions on the display)-.05 F 2.783(,s)-.65 G 2.784 (oi)-2.783 G 2.784(ts)-2.784 G .284 (hould consist only of terminal escape sequences.)-2.784 F .45 -(It is output to the terminal before displaying the te)144 364.8 R .45 +(It is output to the terminal before displaying the te)144 489.6 R .45 (xt in the acti)-.15 F .75 -.15(ve r)-.25 H -.15(eg).15 G 2.95 (ion. This).15 F -.25(va)2.95 G .45(riable is reset to).25 F .378 -(the def)144 376.8 R .378(ault v)-.1 F .378(alue whene)-.25 F -.15(ve) +(the def)144 501.6 R .378(ault v)-.1 F .378(alue whene)-.25 F -.15(ve) -.25 G 2.878(rt).15 G .379(he terminal type changes.)-2.878 F .379 (The def)5.379 F .379(ault v)-.1 F .379 (alue is the string that puts the)-.25 F .655 -(terminal in standout mode, as obtained from the terminal')144 388.8 R +(terminal in standout mode, as obtained from the terminal')144 513.6 R 3.154(st)-.55 G .654(erminfo description.)-3.154 F 3.154(As)5.654 G .654 -(ample v)-3.154 F(alue)-.25 E(might be)144 400.8 Q/F4 10/Courier@0 SF -("\\e[01;33m")2.5 E F0(.)A F1(acti)108 412.8 Q -.1(ve)-.1 G.1 E -(egion\255end\255color)-.18 E F0 3.908(As)144 424.8 S 1.408(tring v) +(ample v)-3.154 F(alue)-.25 E(might be)144 525.6 Q/F4 10/Courier@0 SF +("\\e[01;33m")2.5 E F0(.)A F1(acti)108 537.6 Q -.1(ve)-.1 G.1 E +(egion\255end\255color)-.18 E F0 3.908(As)144 549.6 S 1.408(tring v) -3.908 F 1.408(ariable that "undoes" the ef)-.25 F 1.408(fects of)-.25 F F1(acti)3.908 E -.1(ve)-.1 G.1 E(egion\255start\255color)-.18 E F0 1.409(and restores "normal")3.908 F .216 -(terminal display appearance after displaying te)144 436.8 R .216 +(terminal display appearance after displaying te)144 561.6 R .216 (xt in the acti)-.15 F .516 -.15(ve r)-.25 H -.15(eg).15 G 2.716 (ion. This).15 F .216(string must not tak)2.716 F 2.716(eu)-.1 G(p) --2.716 E(an)144 448.8 Q 3.737(yp)-.15 G -.05(hy)-3.737 G 1.237 +-2.716 E(an)144 573.6 Q 3.737(yp)-.15 G -.05(hy)-3.737 G 1.237 (sical character positions on the display).05 F 3.737(,s)-.65 G 3.737 (oi)-3.737 G 3.737(ts)-3.737 G 1.238 (hould consist only of terminal escape se-)-3.737 F 2.928(quences. It) -144 460.8 R .428(is output to the terminal after displaying the te)2.928 +144 585.6 R .428(is output to the terminal after displaying the te)2.928 F .427(xt in the acti)-.15 F .727 -.15(ve r)-.25 H -.15(eg).15 G 2.927 (ion. This).15 F -.25(va)2.927 G .427(riable is).25 F .518 -(reset to the def)144 472.8 R .518(ault v)-.1 F .518(alue whene)-.25 F +(reset to the def)144 597.6 R .518(ault v)-.1 F .518(alue whene)-.25 F -.15(ve)-.25 G 3.018(rt).15 G .518(he terminal type changes.)-3.018 F .518(The def)5.518 F .518(ault v)-.1 F .518(alue is the string that)-.25 F .252(restores the terminal from standout mode, as obtained from the t\ -erminal')144 484.8 R 2.751(st)-.55 G .251(erminfo description.)-2.751 F -(A)5.251 E(sample v)144 496.8 Q(alue might be)-.25 E F4("\\e[0m")2.5 E -F0(.)A F1(bell\255style \(audible\))108 508.8 Q F0 .01 -(Controls what happens when readline w)144 520.8 R .011 +erminal')144 609.6 R 2.751(st)-.55 G .251(erminfo description.)-2.751 F +(A)5.251 E(sample v)144 621.6 Q(alue might be)-.25 E F4("\\e[0m")2.5 E +F0(.)A F1(bell\255style \(audible\))108 633.6 Q F0 .01 +(Controls what happens when readline w)144 645.6 R .011 (ants to ring the terminal bell.)-.1 F .011(If set to)5.011 F F1(none) 2.511 E F0 2.511(,r)C .011(eadline ne)-2.511 F -.15(ve)-.25 G(r).15 E -.94(rings the bell.)144 532.8 R .94(If set to)5.94 F F1(visible)3.44 E +.94(rings the bell.)144 657.6 R .94(If set to)5.94 F F1(visible)3.44 E F0 3.44(,r)C .94(eadline uses a visible bell if one is a)-3.44 F -.25 (va)-.2 G 3.44(ilable. If).25 F .94(set to)3.44 F F1(audible)3.44 E F0 -(,)A(readline attempts to ring the terminal')144 544.8 Q 2.5(sb)-.55 G -(ell.)-2.5 E F1(bind\255tty\255special\255chars \(On\))108 556.8 Q F0 -.055(If set to)144 568.8 R F1(On)2.555 E F0 2.555(,r)C .056(eadline att\ +(,)A(readline attempts to ring the terminal')144 669.6 Q 2.5(sb)-.55 G +(ell.)-2.5 E F1(bind\255tty\255special\255chars \(On\))108 681.6 Q F0 +.055(If set to)144 693.6 R F1(On)2.555 E F0 2.555(,r)C .056(eadline att\ empts to bind the control characters treated specially by the k)-2.555 F -(ernel')-.1 E 2.556(st)-.55 G(ermi-)-2.556 E(nal dri)144 580.8 Q -.15 +(ernel')-.1 E 2.556(st)-.55 G(ermi-)-2.556 E(nal dri)144 705.6 Q -.15 (ve)-.25 G 2.5(rt).15 G 2.5(ot)-2.5 G(heir readline equi)-2.5 E -.25(va) --.25 G(lents.).25 E F1(blink\255matching\255par)108 592.8 Q(en \(Off\)) --.18 E F0 .21(If set to)144 604.8 R F1(On)2.71 E F0 2.71(,r)C .21 -(eadline attempts to brie\215y mo)-2.71 F .51 -.15(ve t)-.15 H .21 -(he cursor to an opening parenthesis when a closing).15 F -(parenthesis is inserted.)144 616.8 Q F1(color)108 628.8 Q -(ed\255completion\255pr)-.18 E(e\214x \(Off\))-.18 E F0 .515(If set to) -144 640.8 R F1(On)3.015 E F0 3.015(,w)C .515(hen listing completions, r\ -eadline displays the common pre\214x of the set of possible)-3.015 F -2.936(completions using a dif)144 652.8 R 2.936(ferent color)-.25 F -7.936(.T)-.55 G 2.936(he color de\214nitions are tak)-7.936 F 2.935 -(en from the v)-.1 F 2.935(alue of the)-.25 F F1(LS_COLORS)144 664.8 Q -F0(en)3.076 E .577(vironment v)-.4 F 3.077(ariable. If)-.25 F .577 -(there is a color de\214nition in)3.077 F F1($LS_COLORS)3.077 E F0 .577 -(for the cus-)3.077 F .135(tom suf)144 676.8 R .135(\214x "readline-col\ -ored-completion-pre\214x", readline uses this color for the common pre\ -\214x in-)-.25 F(stead of its def)144 688.8 Q(ault.)-.1 E F1(color)108 -700.8 Q(ed\255stats \(Off\))-.18 E F0 1.579(If set to)144 712.8 R F1(On) -4.079 E F0 4.079(,r)C 1.579 -(eadline displays possible completions using dif)-4.079 F 1.58 -(ferent colors to indicate their \214le)-.25 F 2.5(type. The)144 724.8 R -(color de\214nitions are tak)2.5 E(en from the v)-.1 E(alue of the)-.25 -E F1(LS_COLORS)2.5 E F0(en)2.5 E(vironment v)-.4 E(ariable.)-.25 E -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(43)193.45 E 0 Cg EP +-.25 G(lents.).25 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(43) +199.835 E 0 Cg EP %%Page: 44 44 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(comment\255begin \(`)108 84 Q(`#')-.63 E('\))-.63 E F0 .885 -(The string that is inserted when the readline)144 96 R F1 +SF(blink\255matching\255par)108 84 Q(en \(Off\))-.18 E F0 .21(If set to) +144 96 R F1(On)2.71 E F0 2.71(,r)C .21(eadline attempts to brie\215y mo) +-2.71 F .51 -.15(ve t)-.15 H .21 +(he cursor to an opening parenthesis when a closing).15 F +(parenthesis is inserted.)144 108 Q F1(color)108 120 Q +(ed\255completion\255pr)-.18 E(e\214x \(Off\))-.18 E F0 .515(If set to) +144 132 R F1(On)3.015 E F0 3.015(,w)C .515(hen listing completions, rea\ +dline displays the common pre\214x of the set of possible)-3.015 F 2.936 +(completions using a dif)144 144 R 2.936(ferent color)-.25 F 7.936(.T) +-.55 G 2.936(he color de\214nitions are tak)-7.936 F 2.935 +(en from the v)-.1 F 2.935(alue of the)-.25 F F1(LS_COLORS)144 156 Q F0 +(en)3.076 E .577(vironment v)-.4 F 3.077(ariable. If)-.25 F .577 +(there is a color de\214nition in)3.077 F F1($LS_COLORS)3.077 E F0 .577 +(for the cus-)3.077 F .135(tom suf)144 168 R .135(\214x "readline-color\ +ed-completion-pre\214x", readline uses this color for the common pre\ +\214x in-)-.25 F(stead of its def)144 180 Q(ault.)-.1 E F1(color)108 192 +Q(ed\255stats \(Off\))-.18 E F0 1.579(If set to)144 204 R F1(On)4.079 E +F0 4.079(,r)C 1.579(eadline displays possible completions using dif) +-4.079 F 1.58(ferent colors to indicate their \214le)-.25 F 2.5 +(type. The)144 216 R(color de\214nitions are tak)2.5 E(en from the v)-.1 +E(alue of the)-.25 E F1(LS_COLORS)2.5 E F0(en)2.5 E(vironment v)-.4 E +(ariable.)-.25 E F1(comment\255begin \(`)108 228 Q(`#')-.63 E('\))-.63 E +F0 .885(The string that is inserted when the readline)144 240 R F1 (insert\255comment)3.385 E F0 .884(command is e)3.384 F -.15(xe)-.15 G -3.384(cuted. This).15 F(com-)3.384 E(mand is bound to)144 108 Q F1 +3.384(cuted. This).15 F(com-)3.384 E(mand is bound to)144 252 Q F1 (M\255#)2.5 E F0(in emacs mode and to)2.5 E F1(#)2.5 E F0 (in vi command mode.)2.5 E F1(completion\255display\255width \(\2551\)) -108 120 Q F0 1.453(The number of screen columns used to display possibl\ -e matches when performing completion.)144 132 R .194(The v)144 144 R +108 264 Q F0 1.453(The number of screen columns used to display possibl\ +e matches when performing completion.)144 276 R .194(The v)144 288 R .193(alue is ignored if it is less than 0 or greater than the terminal \ screen width.)-.25 F 2.693(Av)5.193 G .193(alue of 0 will)-2.943 F -(cause matches to be displayed one per line.)144 156 Q(The def)5 E -(ault v)-.1 E(alue is \2551.)-.25 E F1(completion\255ignor)108 168 Q -(e\255case \(Off\))-.18 E F0(If set to)144 180 Q F1(On)2.5 E F0 2.5(,r)C +(cause matches to be displayed one per line.)144 300 Q(The def)5 E +(ault v)-.1 E(alue is \2551.)-.25 E F1(completion\255ignor)108 312 Q +(e\255case \(Off\))-.18 E F0(If set to)144 324 Q F1(On)2.5 E F0 2.5(,r)C (eadline performs \214lename matching and completion in a case\255insen\ siti)-2.5 E .3 -.15(ve f)-.25 H(ashion.).05 E F1 -(completion\255map\255case \(Off\))108 192 Q F0 .093(If set to)144 204 R +(completion\255map\255case \(Off\))108 336 Q F0 .093(If set to)144 348 R F1(On)2.593 E F0 2.593(,a)C(nd)-2.593 E F1(completion\255ignor)2.593 E (e\255case)-.18 E F0 .093(is enabled, readline treats h)2.593 F .093 (yphens \()-.05 F/F2 10/Times-Italic@0 SFA F0 2.593(\)a)C .094 -(nd underscores)-2.593 F(\()144 216 Q F2(_)A F0 2.5(\)a)C 2.5(se)-2.5 G +(nd underscores)-2.593 F(\()144 360 Q F2(_)A F0 2.5(\)a)C 2.5(se)-2.5 G (qui)-2.5 E -.25(va)-.25 G(lent when performing case\255insensiti).25 E .3 -.15(ve \214)-.25 H(lename matching and completion.).15 E F1 -(completion\255pr)108 228 Q(e\214x\255display\255length \(0\))-.18 E F0 +(completion\255pr)108 372 Q(e\214x\255display\255length \(0\))-.18 E F0 .829(The length in characters of the common pre\214x of a list of possi\ -ble completions that is displayed)144 240 R 1.274 -(without modi\214cation.)144 252 R 1.274(When set to a v)6.274 F 1.274 +ble completions that is displayed)144 384 R 1.274 +(without modi\214cation.)144 396 R 1.274(When set to a v)6.274 F 1.274 (alue greater than zero, common pre\214x)-.25 F 1.275 -(es longer than this)-.15 F -.25(va)144 264 S(lue are replaced with an \ +(es longer than this)-.15 F -.25(va)144 408 S(lue are replaced with an \ ellipsis when displaying possible completions.).25 E F1 -(completion\255query\255items \(100\))108 276 Q F0 .53 -(This determines when the user is queried about vie)144 288 R .529 +(completion\255query\255items \(100\))108 420 Q F0 .53 +(This determines when the user is queried about vie)144 432 R .529 (wing the number of possible completions gen-)-.25 F .56(erated by the) -144 300 R F1(possible\255completions)3.06 E F0 3.06(command. It)3.06 F +144 444 R F1(possible\255completions)3.06 E F0 3.06(command. It)3.06 F .561(may be set to an)3.061 F 3.061(yi)-.15 G(nte)-3.061 E .561(ger v) --.15 F .561(alue greater than or)-.25 F .783(equal to zero.)144 312 R +-.15 F .561(alue greater than or)-.25 F .783(equal to zero.)144 456 R .783(If the number of possible completions is greater than or equal to \ -the v)5.783 F .782(alue of this)-.25 F -.25(va)144 324 S .367 +the v)5.783 F .782(alue of this)-.25 F -.25(va)144 468 S .367 (riable, readline will ask whether or not the user wishes to vie).25 F 2.868(wt)-.25 G .368(hem; otherwise the)-2.868 F 2.868(ya)-.15 G .368 -(re simply)-2.868 F .673(listed on the terminal.)144 336 R 3.173(Az) +(re simply)-2.868 F .673(listed on the terminal.)144 480 R 3.173(Az) 5.673 G .673(ero v)-3.173 F .673(alue means readline should ne)-.25 F -.15(ve)-.25 G 3.172(ra).15 G .672(sk; ne)-3.172 F -.05(ga)-.15 G(ti).05 -E .972 -.15(ve v)-.25 H .672(alues are treated)-.1 F(as zero.)144 348 Q -F1(con)108 360 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to) -144 372 R F1(On)3.112 E F0 3.112(,r)C .613(eadline will con)-3.112 F +E .972 -.15(ve v)-.25 H .672(alues are treated)-.1 F(as zero.)144 492 Q +F1(con)108 504 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to) +144 516 R F1(On)3.112 E F0 3.112(,r)C .613(eadline will con)-3.112 F -.15(ve)-.4 G .613(rt characters with the eighth bit set to an ASCII k) .15 F .913 -.15(ey s)-.1 H .613(equence by).15 F .541 (stripping the eighth bit and pre\214xing an escape character \(in ef) -144 384 R .541(fect, using escape as the)-.25 F F2 .541(meta pr)3.041 F -(e-)-.37 E<8c78>144 396 Q F0 2.5(\). The)B(def)2.5 E(ault is)-.1 E F2 +144 528 R .541(fect, using escape as the)-.25 F F2 .541(meta pr)3.041 F +(e-)-.37 E<8c78>144 540 Q F0 2.5(\). The)B(def)2.5 E(ault is)-.1 E F2 (On)2.5 E F0 2.5(,b)C(ut readline will set it to)-2.7 E F2(Of)2.5 E(f) -.18 E F0(if the locale contains eight-bit characters.)2.5 E F1 -(disable\255completion \(Off\))108 408 Q F0 .038(If set to)144 420 R F1 +(disable\255completion \(Off\))108 552 Q F0 .038(If set to)144 564 R F1 (On)2.538 E F0 2.538(,r)C .038(eadline will inhibit w)-2.538 F .038 (ord completion.)-.1 F .038 (Completion characters will be inserted into the)5.038 F(line as if the) -144 432 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E F0 -(.)A F1(echo\255contr)108 444 Q(ol\255characters \(On\))-.18 E F0 1.211 -(When set to)144 456 R F1(On)3.711 E F0 3.711(,o)C 3.711(no)-3.711 G +144 576 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E F0 +(.)A F1(echo\255contr)108 588 Q(ol\255characters \(On\))-.18 E F0 1.211 +(When set to)144 600 R F1(On)3.711 E F0 3.711(,o)C 3.711(no)-3.711 G 1.211(perating systems that indicate the)-3.711 F 3.711(ys)-.15 G 1.21 (upport it, readline echoes a character)-3.711 F -(corresponding to a signal generated from the k)144 468 Q -.15(ey)-.1 G -(board.).15 E F1(editing\255mode \(emacs\))108 480 Q F0 .141 -(Controls whether readline be)144 492 R .141(gins with a set of k)-.15 F +(corresponding to a signal generated from the k)144 612 Q -.15(ey)-.1 G +(board.).15 E F1(editing\255mode \(emacs\))108 624 Q F0 .141 +(Controls whether readline be)144 636 R .141(gins with a set of k)-.15 F .441 -.15(ey b)-.1 H .141(indings similar to).15 F F2(Emacs)2.642 E F0 (or)2.642 E F2(vi)2.642 E F0(.)A F1(editing\255mode)5.142 E F0 -(can be set to either)144 504 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E -F0(.)A F1(emacs\255mode\255string \(@\))108 516 Q F0 .518(If the)144 528 +(can be set to either)144 648 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E +F0(.)A F1(emacs\255mode\255string \(@\))108 660 Q F0 .518(If the)144 672 R F2(show\255mode\255in\255pr)3.018 E(ompt)-.45 E F0 -.25(va)3.018 G .517(riable is enabled, this string is displayed immediately before the) .25 F .622 -(last line of the primary prompt when emacs editing mode is acti)144 540 +(last line of the primary prompt when emacs editing mode is acti)144 684 R -.15(ve)-.25 G 5.622(.T).15 G .622(he v)-5.622 F .622(alue is e)-.25 F -.622(xpanded lik)-.15 F 3.122(ea)-.1 G -.1(ke)144 552 S 3.34(yb)-.05 G +.622(xpanded lik)-.15 F 3.122(ea)-.1 G -.1(ke)144 696 S 3.34(yb)-.05 G .839(inding, so the standard set of meta- and control pre\214x)-3.34 F -.839(es and backslash escape sequences is)-.15 F -.2(av)144 564 S 2.798 +.839(es and backslash escape sequences is)-.15 F -.2(av)144 708 S 2.798 (ailable. Use)-.05 F .298(the \\1 and \\2 escapes to be)2.798 F .298 (gin and end sequences of non-printing characters, which)-.15 F (can be used to embed a terminal control sequence into the mode string.) -144 576 Q F1(enable\255acti)108 588 Q -.1(ve)-.1 G.1 E -(egion \(On\))-.18 E F0(The)144 600 Q F2(point)3.246 E F0 .746 -(is the current cursor position, and)3.246 F F2(mark)3.246 E F0 .746 -(refers to a sa)3.246 F -.15(ve)-.2 G 3.246(dc).15 G .746 -(ursor position.)-3.246 F .745(The te)5.746 F .745(xt be-)-.15 F .344 -(tween the point and mark is referred to as the)144 612 R F2 -.37(re) -2.844 G(gion)-.03 E F0 5.344(.W)C .344(hen this v)-5.344 F .344 -(ariable is set to)-.25 F F2(On)2.845 E F0 2.845(,r)C .345(eadline al-) --2.845 F(lo)144 624 Q .098(ws certain commands to designate the re)-.25 -F .098(gion as)-.15 F F2(active)2.598 E F0 5.098(.W)C .098(hen the re) --5.098 F .098(gion is acti)-.15 F -.15(ve)-.25 G 2.598(,r).15 G .098 -(eadline high-)-2.598 F .97(lights the te)144 636 R .97(xt in the re) --.15 F .971(gion using the v)-.15 F .971(alue of the)-.25 F F1(acti) -3.471 E -.1(ve)-.1 G.1 E(egion\255start\255color)-.18 E F0 3.471 -(,w)C .971(hich def)-3.471 F .971(aults to)-.1 F .485 -(the string that enables the terminal')144 648 R 2.985(ss)-.55 G .485 -(tandout mode.)-2.985 F .485(The acti)5.485 F .785 -.15(ve r)-.25 H -.15 -(eg).15 G .484(ion sho).15 F .484(ws the te)-.25 F .484(xt inserted by) --.15 F(brack)144 660 Q(eted-paste and an)-.1 E 2.5(ym)-.15 G(atching te) --2.5 E(xt found by incremental and non-incremental history searches.) --.15 E F1(enable\255brack)108 672 Q(eted\255paste \(On\))-.1 E F0 .84 -(When set to)144 684 R F1(On)3.34 E F0 3.34(,r)C .841(eadline con\214gu\ -res the terminal to insert each paste into the editing b)-3.34 F(uf)-.2 -E .841(fer as a)-.25 F .799(single string of characters, instead of tre\ -ating each character as if it had been read from the k)144 696 R -.15 -(ey)-.1 G(-).15 E 3.158(board. This)144 708 R(pre)3.158 E -.15(ve)-.25 G -.658(nts readline from e).15 F -.15(xe)-.15 G .658(cuting an).15 F 3.158 -(ye)-.15 G .659(diting commands bound to k)-3.158 F .959 -.15(ey s)-.1 H -.659(equences ap-).15 F(pearing in the pasted te)144 720 Q(xt.)-.15 E -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(44)193.45 E 0 Cg EP +144 720 Q(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(44)199.835 E 0 Cg +EP %%Page: 45 45 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(enable\255k)108 84 Q(eypad \(Off\))-.1 E F0 .893(When set to)144 96 R +SF(enable\255acti)108 84 Q -.1(ve)-.1 G.1 E(egion \(On\))-.18 E F0 +(The)144 96 Q/F2 10/Times-Italic@0 SF(point)3.246 E F0 .746 +(is the current cursor position, and)3.246 F F2(mark)3.246 E F0 .746 +(refers to a sa)3.246 F -.15(ve)-.2 G 3.246(dc).15 G .746 +(ursor position.)-3.246 F .745(The te)5.746 F .745(xt be-)-.15 F .344 +(tween the point and mark is referred to as the)144 108 R F2 -.37(re) +2.844 G(gion)-.03 E F0 5.344(.W)C .344(hen this v)-5.344 F .344 +(ariable is set to)-.25 F F2(On)2.845 E F0 2.845(,r)C .345(eadline al-) +-2.845 F(lo)144 120 Q .098(ws certain commands to designate the re)-.25 +F .098(gion as)-.15 F F2(active)2.598 E F0 5.098(.W)C .098(hen the re) +-5.098 F .098(gion is acti)-.15 F -.15(ve)-.25 G 2.598(,r).15 G .098 +(eadline high-)-2.598 F .97(lights the te)144 132 R .97(xt in the re) +-.15 F .971(gion using the v)-.15 F .971(alue of the)-.25 F F1(acti) +3.471 E -.1(ve)-.1 G.1 E(egion\255start\255color)-.18 E F0 3.471 +(,w)C .971(hich def)-3.471 F .971(aults to)-.1 F .485 +(the string that enables the terminal')144 144 R 2.985(ss)-.55 G .485 +(tandout mode.)-2.985 F .485(The acti)5.485 F .785 -.15(ve r)-.25 H -.15 +(eg).15 G .484(ion sho).15 F .484(ws the te)-.25 F .484(xt inserted by) +-.15 F(brack)144 156 Q(eted-paste and an)-.1 E 2.5(ym)-.15 G(atching te) +-2.5 E(xt found by incremental and non-incremental history searches.) +-.15 E F1(enable\255brack)108 168 Q(eted\255paste \(On\))-.1 E F0 .84 +(When set to)144 180 R F1(On)3.34 E F0 3.34(,r)C .841(eadline con\214gu\ +res the terminal to insert each paste into the editing b)-3.34 F(uf)-.2 +E .841(fer as a)-.25 F .799(single string of characters, instead of tre\ +ating each character as if it had been read from the k)144 192 R -.15 +(ey)-.1 G(-).15 E 3.158(board. This)144 204 R(pre)3.158 E -.15(ve)-.25 G +.658(nts readline from e).15 F -.15(xe)-.15 G .658(cuting an).15 F 3.158 +(ye)-.15 G .659(diting commands bound to k)-3.158 F .959 -.15(ey s)-.1 H +.659(equences ap-).15 F(pearing in the pasted te)144 216 Q(xt.)-.15 E F1 +(enable\255k)108 228 Q(eypad \(Off\))-.1 E F0 .893(When set to)144 240 R F1(On)3.393 E F0 3.393(,r)C .893 (eadline will try to enable the application k)-3.393 F -.15(ey)-.1 G .893(pad when it is called.).15 F .892(Some sys-)5.893 F -(tems need this to enable the arro)144 108 Q 2.5(wk)-.25 G -.15(ey)-2.6 -G(s.).15 E F1(enable\255meta\255k)108 120 Q(ey \(On\))-.1 E F0 .64 -(When set to)144 132 R F1(On)3.14 E F0 3.14(,r)C .64 +(tems need this to enable the arro)144 252 Q 2.5(wk)-.25 G -.15(ey)-2.6 +G(s.).15 E F1(enable\255meta\255k)108 264 Q(ey \(On\))-.1 E F0 .64 +(When set to)144 276 R F1(On)3.14 E F0 3.14(,r)C .64 (eadline will try to enable an)-3.14 F 3.14(ym)-.15 G .64 (eta modi\214er k)-3.14 F .94 -.15(ey t)-.1 H .64 -(he terminal claims to support).15 F(when it is called.)144 144 Q +(he terminal claims to support).15 F(when it is called.)144 288 Q (On man)5 E 2.5(yt)-.15 G(erminals, the meta k)-2.5 E .3 -.15(ey i)-.1 H 2.5(su).15 G(sed to send eight-bit characters.)-2.5 E F1 -(expand\255tilde \(Off\))108 156 Q F0(If set to)144 168 Q F1(On)2.5 E F0 +(expand\255tilde \(Off\))108 300 Q F0(If set to)144 312 Q F1(On)2.5 E F0 2.5(,t)C(ilde e)-2.5 E(xpansion is performed when readline attempts w) --.15 E(ord completion.)-.1 E F1(history\255pr)108 180 Q(eser)-.18 E -.1 -(ve)-.1 G(\255point \(Off\)).1 E F0 .553(If set to)144 192 R F1(On)3.052 +-.15 E(ord completion.)-.1 E F1(history\255pr)108 324 Q(eser)-.18 E -.1 +(ve)-.1 G(\255point \(Off\)).1 E F0 .553(If set to)144 336 R F1(On)3.052 E F0 3.052(,t)C .552(he history code attempts to place point at the sam\ -e location on each history line re-)-3.052 F(trie)144 204 Q -.15(ve)-.25 +e location on each history line re-)-3.052 F(trie)144 348 Q -.15(ve)-.25 G 2.5(dw).15 G(ith)-2.5 E F1(pr)2.5 E -.15(ev)-.18 G(ious-history).15 E F0(or)2.5 E F1(next-history)2.5 E F0(.)A F1(history\255size \(unset\)) -108 216 Q F0 .948(Set the maximum number of history entries sa)144 228 R +108 360 Q F0 .948(Set the maximum number of history entries sa)144 372 R -.15(ve)-.2 G 3.448(di).15 G 3.448(nt)-3.448 G .948(he history list.) -3.448 F .949(If set to zero, an)5.948 F 3.449(ye)-.15 G(xisting)-3.599 -E .483(history entries are deleted and no ne)144 240 R 2.983(we)-.25 G +E .483(history entries are deleted and no ne)144 384 R 2.983(we)-.25 G .483(ntries are sa)-2.983 F -.15(ve)-.2 G 2.983(d. If).15 F .482 (set to a v)2.983 F .482(alue less than zero, the num-)-.25 F .277 -(ber of history entries is not limited.)144 252 R .277(By def)5.277 F +(ber of history entries is not limited.)144 396 R .277(By def)5.277 F .278(ault, the number of history entries is set to the v)-.1 F .278 -(alue of)-.25 F(the)144 264 Q F1(HISTSIZE)3.411 E F0 .911(shell v)3.411 -F 3.411(ariable. If)-.25 F .911(an attempt is made to set)3.411 F/F2 10 -/Times-Italic@0 SF(history\255size)3.41 E F0 .91(to a non-numeric v)3.41 -F(alue,)-.25 E -(the maximum number of history entries will be set to 500.)144 276 Q F1 -(horizontal\255scr)108 288 Q(oll\255mode \(Off\))-.18 E F0 .448 -(When set to)144 300 R F1(On)2.948 E F0 2.948(,m)C(ak)-2.948 E .448 +(alue of)-.25 F(the)144 408 Q F1(HISTSIZE)3.411 E F0 .911(shell v)3.411 +F 3.411(ariable. If)-.25 F .911(an attempt is made to set)3.411 F F2 +(history\255size)3.41 E F0 .91(to a non-numeric v)3.41 F(alue,)-.25 E +(the maximum number of history entries will be set to 500.)144 420 Q F1 +(horizontal\255scr)108 432 Q(oll\255mode \(Off\))-.18 E F0 .448 +(When set to)144 444 R F1(On)2.948 E F0 2.948(,m)C(ak)-2.948 E .448 (es readline use a single line for display)-.1 F 2.948(,s)-.65 G .449 (crolling the input horizontally on a)-2.948 F 1.194(single screen line\ when it becomes longer than the screen width rather than wrapping to a\ - ne)144 312 R(w)-.25 E 2.5(line. This)144 324 R + ne)144 456 R(w)-.25 E 2.5(line. This)144 468 R (setting is automatically enabled for terminals of height 1.)2.5 E F1 -(input\255meta \(Off\))108 336 Q F0 1.061(If set to)144 348 R F1(On) +(input\255meta \(Off\))108 480 Q F0 1.061(If set to)144 492 R F1(On) 3.561 E F0 3.561(,r)C 1.062(eadline will enable eight-bit input \(that \ is, it will not strip the eighth bit from the)-3.561 F .336 -(characters it reads\), re)144 360 R -.05(ga)-.15 G .335 +(characters it reads\), re)144 504 R -.05(ga)-.15 G .335 (rdless of what the terminal claims it can support.).05 F .335(The name) -5.335 F F1(meta\255\215ag)2.835 E F0(is)2.835 E 2.864(as)144 372 S(ynon) +5.335 F F1(meta\255\215ag)2.835 E F0(is)2.835 E 2.864(as)144 516 S(ynon) -2.864 E .364(ym for this v)-.15 F 2.864(ariable. The)-.25 F(def)2.864 E .364(ault is)-.1 F F2(Of)2.864 E(f)-.18 E F0 2.864(,b)C .364 (ut readline will set it to)-3.064 F F2(On)2.864 E F0 .365 -(if the locale contains)2.865 F(eight-bit characters.)144 384 Q F1 -(isear)108 396 Q(ch\255terminators \(`)-.18 E(`C\255[C\255J')-.63 E('\)) +(if the locale contains)2.865 F(eight-bit characters.)144 528 Q F1 +(isear)108 540 Q(ch\255terminators \(`)-.18 E(`C\255[C\255J')-.63 E('\)) -.63 E F0 .439(The string of characters that should terminate an increm\ -ental search without subsequently e)144 408 R -.15(xe)-.15 G(cut-).15 E -.934(ing the character as a command.)144 420 R .935(If this v)5.935 F +ental search without subsequently e)144 552 R -.15(xe)-.15 G(cut-).15 E +.934(ing the character as a command.)144 564 R .935(If this v)5.935 F .935(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.435(nav).15 G .935 -(alue, the characters)-3.685 F F2(ESC)3.435 E F0(and)144 432 Q F2 +(alue, the characters)-3.685 F F2(ESC)3.435 E F0(and)144 576 Q F2 (C\255J)2.5 E F0(will terminate an incremental search.)2.5 E F1 -.1(ke) -108 444 S(ymap \(emacs\)).1 E F0 2.021(Set the current readline k)144 -456 R -.15(ey)-.1 G 4.521(map. The).15 F 2.021(set of v)4.521 F 2.021 +108 588 S(ymap \(emacs\)).1 E F0 2.021(Set the current readline k)144 +600 R -.15(ey)-.1 G 4.521(map. The).15 F 2.021(set of v)4.521 F 2.021 (alid k)-.25 F -.15(ey)-.1 G 2.021(map names is).15 F F2 2.02 (emacs, emacs\255standar)4.52 F(d,)-.37 E .041 -(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 468 R F0 2.542(,a)C +(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 612 R F0 2.542(,a)C (nd)-2.542 E F2(vi\255insert)2.832 E F0(.).68 E F2(vi)5.042 E F0 .042 (is equi)2.542 F -.25(va)-.25 G .042(lent to).25 F F2(vi\255command) -2.542 E F0(;)A F2(emacs)2.542 E F0 .449(is equi)144 480 R -.25(va)-.25 G +2.542 E F0(;)A F2(emacs)2.542 E F0 .449(is equi)144 624 R -.25(va)-.25 G .449(lent to).25 F F2(emacs\255standar)2.949 E(d)-.37 E F0 5.449(.T)C .449(he def)-5.449 F .449(ault v)-.1 F .449(alue is)-.25 F F2(emacs) 3.139 E F0 2.948(;t).27 G .448(he v)-2.948 F .448(alue of)-.25 F F1 -(editing\255mode)2.948 E F0 .448(also af-)2.948 F(fects the def)144 492 -Q(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1 -.1(ke)108 504 S -(yseq\255timeout \(500\)).1 E F0 .367(Speci\214es the duration)144 516 R +(editing\255mode)2.948 E F0 .448(also af-)2.948 F(fects the def)144 636 +Q(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1 -.1(ke)108 648 S +(yseq\255timeout \(500\)).1 E F0 .367(Speci\214es the duration)144 660 R F2 -.37(re)2.867 G(adline).37 E F0 .367(will w)2.867 F .367 (ait for a character when reading an ambiguous k)-.1 F .668 -.15(ey s) --.1 H(equence).15 E .525(\(one that can form a complete k)144 528 R .825 +-.1 H(equence).15 E .525(\(one that can form a complete k)144 672 R .825 -.15(ey s)-.1 H .524(equence using the input read so f).15 F(ar)-.1 E 3.024(,o)-.4 G 3.024(rc)-3.024 G .524(an tak)-3.024 F 3.024(ea)-.1 G -.524(dditional in-)-3.024 F .806(put to complete a longer k)144 540 R +.524(dditional in-)-3.024 F .806(put to complete a longer k)144 684 R 1.106 -.15(ey s)-.1 H 3.306(equence\). If).15 F .806(no input is recei) 3.306 F -.15(ve)-.25 G 3.306(dw).15 G .807(ithin the timeout,)-3.306 F F2 -.37(re)3.307 G(adline).37 E F0(will)3.307 E .907(use the shorter b) -144 552 R .907(ut complete k)-.2 F 1.207 -.15(ey s)-.1 H 3.407 +144 696 R .907(ut complete k)-.2 F 1.207 -.15(ey s)-.1 H 3.407 (equence. The).15 F -.25(va)3.407 G .907 (lue is speci\214ed in milliseconds, so a v).25 F .906(alue of)-.25 F -.05(1000 means that)144 564 R F2 -.37(re)2.55 G(adline).37 E F0 .05 +.05(1000 means that)144 708 R F2 -.37(re)2.55 G(adline).37 E F0 .05 (will w)2.55 F .05(ait one second for additional input.)-.1 F .05 (If this v)5.05 F .05(ariable is set to a v)-.25 F(alue)-.25 E .051 -(less than or equal to zero, or to a non-numeric v)144 576 R(alue,)-.25 +(less than or equal to zero, or to a non-numeric v)144 720 R(alue,)-.25 E F2 -.37(re)2.551 G(adline).37 E F0 .051(will w)2.551 F .051 (ait until another k)-.1 F .351 -.15(ey i)-.1 H 2.551(sp).15 G(ressed) --2.551 E(to decide which k)144 588 Q .3 -.15(ey s)-.1 H -(equence to complete.).15 E F1(mark\255dir)108 600 Q(ectories \(On\)) --.18 E F0(If set to)144 612 Q F1(On)2.5 E F0 2.5(,c)C -(ompleted directory names ha)-2.5 E .3 -.15(ve a s)-.2 H(lash appended.) -.15 E F1(mark\255modi\214ed\255lines \(Off\))108 624 Q F0(If set to)144 -636 Q F1(On)2.5 E F0 2.5(,h)C(istory lines that ha)-2.5 E .3 -.15(ve b) --.2 H(een modi\214ed are displayed with a preceding asterisk \().15 E F1 -(*)A F0(\).)A F1(mark\255symlink)108 648 Q(ed\255dir)-.1 E -(ectories \(Off\))-.18 E F0 .175(If set to)144 660 R F1(On)2.675 E F0 -2.675(,c)C .175 -(ompleted names which are symbolic links to directories ha)-2.675 F .475 --.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 672 -Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A F1 -(match\255hidden\255\214les \(On\))108 684 Q F0 .193(This v)144 696 R -.193(ariable, when set to)-.25 F F1(On)2.693 E F0 2.693(,c)C .192 -(auses readline to match \214les whose names be)-2.693 F .192 -(gin with a `.)-.15 F 2.692('\()-.7 G(hidden)-2.692 E .456 -(\214les\) when performing \214lename completion.)144 708 R .456 -(If set to)5.456 F F1(Off)2.956 E F0 2.956(,t)C .456(he leading `.) --2.956 F 2.956('m)-.7 G .457(ust be supplied by the)-2.956 F -(user in the \214lename to be completed.)144 720 Q(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(45)193.45 E 0 Cg EP +-2.551 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(45)199.835 E 0 Cg +EP %%Page: 46 46 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(menu\255complete\255display\255pr)108 84 Q(e\214x \(Off\))-.18 E F0 -1.586(If set to)144 96 R F1(On)4.086 E F0 4.086(,m)C 1.585(enu completi\ -on displays the common pre\214x of the list of possible completions) --4.086 F(\(which may be empty\) before c)144 108 Q -(ycling through the list.)-.15 E F1(output\255meta \(Off\))108 120 Q F0 -.506(If set to)144 132 R F1(On)3.006 E F0 3.006(,r)C .507(eadline will \ +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(to decide which k) +144 84 Q .3 -.15(ey s)-.1 H(equence to complete.).15 E/F1 10 +/Times-Bold@0 SF(mark\255dir)108 96 Q(ectories \(On\))-.18 E F0 +(If set to)144 108 Q F1(On)2.5 E F0 2.5(,c)C +(ompleted directory names ha)-2.5 E .3 -.15(ve a s)-.2 H(lash appended.) +.15 E F1(mark\255modi\214ed\255lines \(Off\))108 120 Q F0(If set to)144 +132 Q F1(On)2.5 E F0 2.5(,h)C(istory lines that ha)-2.5 E .3 -.15(ve b) +-.2 H(een modi\214ed are displayed with a preceding asterisk \().15 E F1 +(*)A F0(\).)A F1(mark\255symlink)108 144 Q(ed\255dir)-.1 E +(ectories \(Off\))-.18 E F0 .175(If set to)144 156 R F1(On)2.675 E F0 +2.675(,c)C .175 +(ompleted names which are symbolic links to directories ha)-2.675 F .475 +-.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 168 +Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A F1 +(match\255hidden\255\214les \(On\))108 180 Q F0 .193(This v)144 192 R +.193(ariable, when set to)-.25 F F1(On)2.693 E F0 2.693(,c)C .192 +(auses readline to match \214les whose names be)-2.693 F .192 +(gin with a `.)-.15 F 2.692('\()-.7 G(hidden)-2.692 E .456 +(\214les\) when performing \214lename completion.)144 204 R .456 +(If set to)5.456 F F1(Off)2.956 E F0 2.956(,t)C .456(he leading `.) +-2.956 F 2.956('m)-.7 G .457(ust be supplied by the)-2.956 F +(user in the \214lename to be completed.)144 216 Q F1 +(menu\255complete\255display\255pr)108 228 Q(e\214x \(Off\))-.18 E F0 +1.586(If set to)144 240 R F1(On)4.086 E F0 4.086(,m)C 1.585(enu complet\ +ion displays the common pre\214x of the list of possible completions) +-4.086 F(\(which may be empty\) before c)144 252 Q +(ycling through the list.)-.15 E F1(output\255meta \(Off\))108 264 Q F0 +.506(If set to)144 276 R F1(On)3.006 E F0 3.006(,r)C .507(eadline will \ display characters with the eighth bit set directly rather than as a me\ -ta-)-3.006 F(pre\214x)144 144 Q .885(ed escape sequence.)-.15 F .884 +ta-)-3.006 F(pre\214x)144 288 Q .885(ed escape sequence.)-.15 F .884 (The def)5.884 F .884(ault is)-.1 F/F2 10/Times-Italic@0 SF(Of)3.384 E (f)-.18 E F0 3.384(,b)C .884(ut readline will set it to)-3.584 F F2(On) 3.384 E F0 .884(if the locale contains)3.384 F(eight-bit characters.)144 -156 Q F1(page\255completions \(On\))108 168 Q F0 .808(If set to)144 180 +300 Q F1(page\255completions \(On\))108 312 Q F0 .808(If set to)144 324 R F1(On)3.308 E F0 3.308(,r)C .808(eadline uses an internal)-3.308 F F2 (mor)3.308 E(e)-.37 E F0(-lik)A 3.308(ep)-.1 G .808 (ager to display a screenful of possible comple-)-3.308 F -(tions at a time.)144 192 Q F1 -(print\255completions\255horizontally \(Off\))108 204 Q F0 .228 -(If set to)144 216 R F1(On)2.727 E F0 2.727(,r)C .227(eadline will disp\ +(tions at a time.)144 336 Q F1 +(print\255completions\255horizontally \(Off\))108 348 Q F0 .228 +(If set to)144 360 R F1(On)2.727 E F0 2.727(,r)C .227(eadline will disp\ lay completions with matches sorted horizontally in alphabetical or) --2.727 F(-)-.2 E(der)144 228 Q 2.5(,r)-.4 G(ather than do)-2.5 E -(wn the screen.)-.25 E F1 -2.29 -.18(re v)108 240 T -(ert\255all\255at\255newline \(Off\)).08 E F0 .698(If set to)144 252 R +-2.727 F(-)-.2 E(der)144 372 Q 2.5(,r)-.4 G(ather than do)-2.5 E +(wn the screen.)-.25 E F1 -2.29 -.18(re v)108 384 T +(ert\255all\255at\255newline \(Off\)).08 E F0 .698(If set to)144 396 R F1(On)3.198 E F0 3.198(,r)C .699 (eadline will undo all changes to history lines before returning when) --3.198 F F1(accept\255line)3.199 E F0(is)3.199 E -.15(exe)144 264 S +-3.198 F F1(accept\255line)3.199 E F0(is)3.199 E -.15(exe)144 408 S 2.686(cuted. By).15 F(def)2.686 E .186 (ault, history lines may be modi\214ed and retain indi)-.1 F .186 -(vidual undo lists across calls to)-.25 F F1 -.18(re)144 276 S(adline) -.18 E F0(.)A F1(sho)108 288 Q(w\255all\255if\255ambiguous \(Off\))-.1 E -F0 .303(This alters the def)144 300 R .303(ault beha)-.1 F .304 +(vidual undo lists across calls to)-.25 F F1 -.18(re)144 420 S(adline) +.18 E F0(.)A F1(sho)108 432 Q(w\255all\255if\255ambiguous \(Off\))-.1 E +F0 .303(This alters the def)144 444 R .303(ault beha)-.1 F .304 (vior of the completion functions.)-.2 F .304(If set to)5.304 F F1(On) 2.804 E F0 2.804(,w)C .304(ords which ha)-2.904 F .604 -.15(ve m)-.2 H (ore).15 E 1.264(than one possible completion cause the matches to be l\ -isted immediately instead of ringing the)144 312 R(bell.)144 324 Q F1 -(sho)108 336 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.345 -(This alters the def)144 348 R 5.345(ault beha)-.1 F 5.345 +isted immediately instead of ringing the)144 456 R(bell.)144 468 Q F1 +(sho)108 480 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.345 +(This alters the def)144 492 R 5.345(ault beha)-.1 F 5.345 (vior of the completion functions in a f)-.2 F 5.346(ashion similar to) --.1 F F1(sho)144 360 Q(w\255all\255if\255ambiguous)-.1 E F0 6.691(.I)C +-.1 F F1(sho)144 504 Q(w\255all\255if\255ambiguous)-.1 E F0 6.691(.I)C 4.191(fs)-6.691 G 1.691(et to)-4.191 F F1(On)4.191 E F0 4.191(,w)C 1.691 (ords which ha)-4.291 F 1.991 -.15(ve m)-.2 H 1.691 -(ore than one possible completion).15 F 1.039(without an)144 372 R 3.539 +(ore than one possible completion).15 F 1.039(without an)144 516 R 3.539 (yp)-.15 G 1.039 (ossible partial completion \(the possible completions don')-3.539 F 3.539(ts)-.18 G 1.04(hare a common pre\214x\))-3.539 F(cause the matche\ -s to be listed immediately instead of ringing the bell.)144 384 Q F1 -(sho)108 396 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.022 -(If set to)144 408 R F1(On)3.522 E F0 3.522(,a)C 1.022 +s to be listed immediately instead of ringing the bell.)144 528 Q F1 +(sho)108 540 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.022 +(If set to)144 552 R F1(On)3.522 E F0 3.522(,a)C 1.022 (dd a string to the be)-3.522 F 1.021 (ginning of the prompt indicating the editing mode: emacs, vi)-.15 F -(command, or vi insertion.)144 420 Q(The mode strings are user)5 E +(command, or vi insertion.)144 564 Q(The mode strings are user)5 E (-settable \(e.g.,)-.2 E F2(emacs\255mode\255string)2.5 E F0(\).)A F1 -(skip\255completed\255text \(Off\))108 432 Q F0 .094(If set to)144 444 R +(skip\255completed\255text \(Off\))108 576 Q F0 .094(If set to)144 588 R F1(On)2.594 E F0 2.594(,t)C .095(his alters the def)-2.594 F .095 (ault completion beha)-.1 F .095 -(vior when inserting a single match into the line.)-.2 F(It')144 456 Q +(vior when inserting a single match into the line.)-.2 F(It')144 600 Q 2.546(so)-.55 G .046(nly acti)-2.546 F .346 -.15(ve w)-.25 H .046 (hen performing completion in the middle of a w).15 F 2.545(ord. If)-.1 F .045(enabled, readline does not)2.545 F 1.394(insert characters from \ -the completion that match characters after point in the w)144 468 R -1.395(ord being com-)-.1 F(pleted, so portions of the w)144 480 Q +the completion that match characters after point in the w)144 612 R +1.395(ord being com-)-.1 F(pleted, so portions of the w)144 624 Q (ord follo)-.1 E(wing the cursor are not duplicated.)-.25 E F1 -(vi\255cmd\255mode\255string \(\(cmd\)\))108 492 Q F0 .518(If the)144 -504 R F2(show\255mode\255in\255pr)3.018 E(ompt)-.45 E F0 -.25(va)3.018 G +(vi\255cmd\255mode\255string \(\(cmd\)\))108 636 Q F0 .518(If the)144 +648 R F2(show\255mode\255in\255pr)3.018 E(ompt)-.45 E F0 -.25(va)3.018 G .517(riable is enabled, this string is displayed immediately before the) .25 F .475(last line of the primary prompt when vi editing mode is acti) -144 516 R .775 -.15(ve a)-.25 H .476(nd in command mode.).15 F .476 -(The v)5.476 F(alue)-.25 E .33(is e)144 528 R .33(xpanded lik)-.15 F +144 660 R .775 -.15(ve a)-.25 H .476(nd in command mode.).15 F .476 +(The v)5.476 F(alue)-.25 E .33(is e)144 672 R .33(xpanded lik)-.15 F 2.83(eak)-.1 G .63 -.15(ey b)-2.93 H .33 (inding, so the standard set of meta- and control pre\214x).15 F .33 -(es and backslash es-)-.15 F .244(cape sequences is a)144 540 R -.25(va) +(es and backslash es-)-.15 F .244(cape sequences is a)144 684 R -.25(va) -.2 G 2.744(ilable. Use).25 F .244(the \\1 and \\2 escapes to be)2.744 F .245(gin and end sequences of non-printing)-.15 F(characters, which can\ be used to embed a terminal control sequence into the mode string.)144 -552 Q F1(vi\255ins\255mode\255string \(\(ins\)\))108 564 Q F0 .518 -(If the)144 576 R F2(show\255mode\255in\255pr)3.018 E(ompt)-.45 E F0 --.25(va)3.018 G .517 -(riable is enabled, this string is displayed immediately before the).25 -F .186(last line of the primary prompt when vi editing mode is acti)144 -588 R .486 -.15(ve a)-.25 H .186(nd in insertion mode.).15 F .187(The v) -5.186 F .187(alue is)-.25 F -.15(ex)144 600 S .924(panded lik).15 F -3.424(eak)-.1 G 1.224 -.15(ey b)-3.524 H .924 -(inding, so the standard set of meta- and control pre\214x).15 F .923 -(es and backslash es-)-.15 F .244(cape sequences is a)144 612 R -.25(va) --.2 G 2.744(ilable. Use).25 F .244(the \\1 and \\2 escapes to be)2.744 F -.245(gin and end sequences of non-printing)-.15 F(characters, which can\ - be used to embed a terminal control sequence into the mode string.)144 -624 Q F1(visible\255stats \(Off\))108 636 Q F0 .847(If set to)144 648 R -F1(On)3.346 E F0 3.346(,ac)C .846(haracter denoting a \214le')-3.346 F -3.346(st)-.55 G .846(ype as reported by)-3.346 F F2(stat)3.346 E F0 .846 -(\(2\) is appended to the \214lename)B -(when listing possible completions.)144 660 Q F1 -(Readline Conditional Constructs)87 676.8 Q F0 .05 -(Readline implements a f)108 688.8 R .05(acility similar in spirit to t\ -he conditional compilation features of the C preprocessor)-.1 F .097 -(which allo)108 700.8 R .097(ws k)-.25 F .396 -.15(ey b)-.1 H .096 -(indings and v).15 F .096 -(ariable settings to be performed as the result of tests.)-.25 F .096 -(There are four parser)5.096 F(directi)108 712.8 Q -.15(ve)-.25 G 2.5 -(su).15 G(sed.)-2.5 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(46) -193.45 E 0 Cg EP +696 Q(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(46)199.835 E 0 Cg EP %%Page: 47 47 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF($if)108 84 Q F0(The)144 84 Q F1($if)2.962 E F0 .462(construct allo) -2.962 F .463(ws bindings to be made based on the editing mode, the term\ -inal being used,)-.25 F(or the application using readline.)144 96 Q -(The te)5 E(xt of the test, after an)-.15 E 2.5(yc)-.15 G -(omparison operator)-2.5 E(,)-.4 E -.15(ex)146.5 108 S(tends to the end\ - of the line; unless otherwise noted, no characters are required to iso\ -late it.).15 E F1(mode)144 124.8 Q F0(The)180 124.8 Q F1(mode=)3.712 E -F0 1.212(form of the)3.712 F F1($if)3.711 E F0(directi)3.711 E 1.511 --.15(ve i)-.25 H 3.711(su).15 G 1.211 -(sed to test whether readline is in emacs or vi)-3.711 F 3.065 -(mode. This)180 136.8 R .565(may be used in conjunction with the)3.065 F -F1 .565(set k)3.065 F(eymap)-.1 E F0 .565(command, for instance, to) -3.065 F .735(set bindings in the)180 148.8 R/F2 10/Times-Italic@0 SF -(emacs\255standar)3.235 E(d)-.37 E F0(and)3.235 E F2(emacs\255ctlx)3.235 -E F0 -.1(ke)3.235 G .735(ymaps only if readline is starting)-.05 F -(out in emacs mode.)180 160.8 Q F1(term)144 177.6 Q F0(The)180 177.6 Q +SF(vi\255ins\255mode\255string \(\(ins\)\))108 84 Q F0 .518(If the)144 +96 R/F2 10/Times-Italic@0 SF(show\255mode\255in\255pr)3.018 E(ompt)-.45 +E F0 -.25(va)3.018 G .517 +(riable is enabled, this string is displayed immediately before the).25 +F .186(last line of the primary prompt when vi editing mode is acti)144 +108 R .486 -.15(ve a)-.25 H .186(nd in insertion mode.).15 F .187(The v) +5.186 F .187(alue is)-.25 F -.15(ex)144 120 S .924(panded lik).15 F +3.424(eak)-.1 G 1.224 -.15(ey b)-3.524 H .924 +(inding, so the standard set of meta- and control pre\214x).15 F .923 +(es and backslash es-)-.15 F .244(cape sequences is a)144 132 R -.25(va) +-.2 G 2.744(ilable. Use).25 F .244(the \\1 and \\2 escapes to be)2.744 F +.245(gin and end sequences of non-printing)-.15 F(characters, which can\ + be used to embed a terminal control sequence into the mode string.)144 +144 Q F1(visible\255stats \(Off\))108 156 Q F0 .847(If set to)144 168 R +F1(On)3.346 E F0 3.346(,ac)C .846(haracter denoting a \214le')-3.346 F +3.346(st)-.55 G .846(ype as reported by)-3.346 F F2(stat)3.346 E F0 .846 +(\(2\) is appended to the \214lename)B +(when listing possible completions.)144 180 Q F1 +(Readline Conditional Constructs)87 196.8 Q F0 .05 +(Readline implements a f)108 208.8 R .05(acility similar in spirit to t\ +he conditional compilation features of the C preprocessor)-.1 F .097 +(which allo)108 220.8 R .097(ws k)-.25 F .396 -.15(ey b)-.1 H .096 +(indings and v).15 F .096 +(ariable settings to be performed as the result of tests.)-.25 F .096 +(There are four parser)5.096 F(directi)108 232.8 Q -.15(ve)-.25 G 2.5 +(su).15 G(sed.)-2.5 E F1($if)108 249.6 Q F0(The)144 249.6 Q F1($if)2.962 +E F0 .462(construct allo)2.962 F .463(ws bindings to be made based on t\ +he editing mode, the terminal being used,)-.25 F +(or the application using readline.)144 261.6 Q(The te)5 E +(xt of the test, after an)-.15 E 2.5(yc)-.15 G(omparison operator)-2.5 E +(,)-.4 E -.15(ex)146.5 273.6 S(tends to the end of the line; unless oth\ +erwise noted, no characters are required to isolate it.).15 E F1(mode) +144 290.4 Q F0(The)180 290.4 Q F1(mode=)3.712 E F0 1.212(form of the) +3.712 F F1($if)3.711 E F0(directi)3.711 E 1.511 -.15(ve i)-.25 H 3.711 +(su).15 G 1.211(sed to test whether readline is in emacs or vi)-3.711 F +3.065(mode. This)180 302.4 R .565(may be used in conjunction with the) +3.065 F F1 .565(set k)3.065 F(eymap)-.1 E F0 .565 +(command, for instance, to)3.065 F .735(set bindings in the)180 314.4 R +F2(emacs\255standar)3.235 E(d)-.37 E F0(and)3.235 E F2(emacs\255ctlx) +3.235 E F0 -.1(ke)3.235 G .735(ymaps only if readline is starting)-.05 F +(out in emacs mode.)180 326.4 Q F1(term)144 343.2 Q F0(The)180 343.2 Q F1(term=)3.196 E F0 .696 (form may be used to include terminal-speci\214c k)3.196 F .996 -.15 -(ey b)-.1 H .697(indings, perhaps to bind).15 F .654(the k)180 189.6 R +(ey b)-.1 H .697(indings, perhaps to bind).15 F .654(the k)180 355.2 R .954 -.15(ey s)-.1 H .654(equences output by the terminal').15 F 3.154 (sf)-.55 G .654(unction k)-3.154 F -.15(ey)-.1 G 3.154(s. The).15 F -.1 -(wo)3.154 G .654(rd on the right side of).1 F(the)180 201.6 Q F1(=)3.231 +(wo)3.154 G .654(rd on the right side of).1 F(the)180 367.2 Q F1(=)3.231 E F0 .731(is tested ag)3.231 F .732(ainst both the full name of the ter\ minal and the portion of the terminal)-.05 F(name before the \214rst)180 -213.6 Q F12.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0 +379.2 Q F12.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0 (to match both)2.74 E F2(sun)2.84 E F0(and)2.74 E F2(sun\255cmd)2.84 E -F0 2.5(,f).77 G(or instance.)-2.5 E F1 -.1(ve)144 230.4 S(rsion).1 E F0 -(The)180 242.4 Q F1 -.1(ve)3.109 G(rsion).1 E F0 .608 +F0 2.5(,f).77 G(or instance.)-2.5 E F1 -.1(ve)144 396 S(rsion).1 E F0 +(The)180 408 Q F1 -.1(ve)3.109 G(rsion).1 E F0 .608 (test may be used to perform comparisons ag)3.109 F .608 -(ainst speci\214c readline v)-.05 F(ersions.)-.15 E(The)180 254.4 Q F1 --.1(ve)2.771 G(rsion).1 E F0 -.15(ex)2.771 G .271 +(ainst speci\214c readline v)-.05 F(ersions.)-.15 E(The)180 420 Q F1 -.1 +(ve)2.771 G(rsion).1 E F0 -.15(ex)2.771 G .271 (pands to the current readline v).15 F 2.772(ersion. The)-.15 F .272 -(set of comparison operators in-)2.772 F(cludes)180 266.4 Q F1(=)3.064 E +(set of comparison operators in-)2.772 F(cludes)180 432 Q F1(=)3.064 E F0 3.064(,\()C(and)-3.064 E F1(==)3.064 E F0(\),)A F1(!=)3.064 E F0(,)A F1(<=)3.064 E F0(,)A F1(>=)3.064 E F0(,)A F1(<)3.064 E F0 3.064(,a)C(nd) -3.064 E F1(>)3.064 E F0 5.563(.T)C .563(he v)-5.563 F .563 (ersion number supplied on the right side)-.15 F .318 -(of the operator consists of a major v)180 278.4 R .318(ersion number) --.15 F 2.818(,a)-.4 G 2.818(no)-2.818 G .318 -(ptional decimal point, and an op-)-2.818 F .101(tional minor v)180 -290.4 R .101(ersion \(e.g.,)-.15 F F1(7.1)2.601 E F0 .101 -(\). If the minor v)B .1(ersion is omitted, it is assumed to be)-.15 F -F1(0)2.6 E F0 5.1(.T)C(he)-5.1 E .06 -(operator may be separated from the string)180 302.4 R F1 -.1(ve)2.56 G -(rsion).1 E F0 .06(and from the v)2.56 F .06(ersion number ar)-.15 F -(gument)-.18 E(by whitespace.)180 314.4 Q F1(application)144 331.2 Q F0 -(The)180 343.2 Q F1(application)3.003 E F0 .503 -(construct is used to include application-speci\214c settings.)3.003 F -.503(Each program)5.503 F .114(using the readline library sets the)180 -355.2 R F2 .114(application name)2.614 F F0 2.614(,a)C .114 +(of the operator consists of a major v)180 444 R .318(ersion number)-.15 +F 2.818(,a)-.4 G 2.818(no)-2.818 G .318 +(ptional decimal point, and an op-)-2.818 F .101(tional minor v)180 456 +R .101(ersion \(e.g.,)-.15 F F1(7.1)2.601 E F0 .101(\). If the minor v)B +.1(ersion is omitted, it is assumed to be)-.15 F F1(0)2.6 E F0 5.1(.T)C +(he)-5.1 E .06(operator may be separated from the string)180 468 R F1 +-.1(ve)2.56 G(rsion).1 E F0 .06(and from the v)2.56 F .06 +(ersion number ar)-.15 F(gument)-.18 E(by whitespace.)180 480 Q F1 +(application)144 496.8 Q F0(The)180 508.8 Q F1(application)3.003 E F0 +.503(construct is used to include application-speci\214c settings.)3.003 +F .503(Each program)5.503 F .114(using the readline library sets the)180 +520.8 R F2 .114(application name)2.614 F F0 2.614(,a)C .114 (nd an initialization \214le can test for a)-2.614 F .501(particular v) -180 367.2 R 3.001(alue. This)-.25 F .501(could be used to bind k)3.001 F +180 532.8 R 3.001(alue. This)-.25 F .501(could be used to bind k)3.001 F .801 -.15(ey s)-.1 H .5(equences to functions useful for a spe-).15 F -.396(ci\214c program.)180 379.2 R -.15(Fo)5.396 G 2.896(ri).15 G .396 +.396(ci\214c program.)180 544.8 R -.15(Fo)5.396 G 2.896(ri).15 G .396 (nstance, the follo)-2.896 F .396(wing command adds a k)-.25 F .696 -.15 -(ey s)-.1 H .397(equence that quotes the).15 F(current or pre)180 391.2 -Q(vious w)-.25 E(ord in)-.1 E F1(bash)2.5 E F0(:)A F1($if)180 415.2 Q F0 -(Bash)2.5 E 2.5(#Q)180 427.2 S(uote the current or pre)-2.5 E(vious w) --.25 E(ord)-.1 E("\\C\255xq": "\\eb\\"\\ef\\"")180 439.2 Q F1($endif)180 -451.2 Q F2(variable)144 468 Q F0(The)180 480 Q F2(variable)3.777 E F0 -1.277(construct pro)3.777 F 1.276 +(ey s)-.1 H .397(equence that quotes the).15 F(current or pre)180 556.8 +Q(vious w)-.25 E(ord in)-.1 E F1(bash)2.5 E F0(:)A F1($if)180 580.8 Q F0 +(Bash)2.5 E 2.5(#Q)180 592.8 S(uote the current or pre)-2.5 E(vious w) +-.25 E(ord)-.1 E("\\C\255xq": "\\eb\\"\\ef\\"")180 604.8 Q F1($endif)180 +616.8 Q F2(variable)144 633.6 Q F0(The)180 645.6 Q F2(variable)3.777 E +F0 1.277(construct pro)3.777 F 1.276 (vides simple equality tests for readline v)-.15 F 1.276(ariables and v) --.25 F(alues.)-.25 E .079(The permitted comparison operators are)180 492 -R F2(=)2.579 E F0(,)A F2(==)2.579 E F0 2.579(,a)C(nd)-2.579 E F2(!=) -2.579 E F0 5.079(.T)C .079(he v)-5.079 F .08(ariable name must be sepa-) --.25 F .98(rated from the comparison operator by whitespace; the operat\ -or may be separated from)180 504 R .129(the v)180 516 R .129 -(alue on the right hand side by whitespace.)-.25 F .13 -(Both string and boolean v)5.129 F .13(ariables may be)-.25 F -(tested. Boolean v)180 528 Q(ariables must be tested ag)-.25 E +-.25 F(alues.)-.25 E .079(The permitted comparison operators are)180 +657.6 R F2(=)2.579 E F0(,)A F2(==)2.579 E F0 2.579(,a)C(nd)-2.579 E F2 +(!=)2.579 E F0 5.079(.T)C .079(he v)-5.079 F .08 +(ariable name must be sepa-)-.25 F .98(rated from the comparison operat\ +or by whitespace; the operator may be separated from)180 669.6 R .129 +(the v)180 681.6 R .129(alue on the right hand side by whitespace.)-.25 +F .13(Both string and boolean v)5.129 F .13(ariables may be)-.25 F +(tested. Boolean v)180 693.6 Q(ariables must be tested ag)-.25 E (ainst the v)-.05 E(alues)-.25 E F2(on)2.5 E F0(and)2.5 E F2(of)2.5 E(f) --.18 E F0(.)A F1($endif)108 544.8 Q F0(This command, as seen in the pre) -144 544.8 Q(vious e)-.25 E(xample, terminates an)-.15 E F1($if)2.5 E F0 -(command.)2.5 E F1($else)108 561.6 Q F0(Commands in this branch of the) -144 561.6 Q F1($if)2.5 E F0(directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E --.15(xe)-.15 G(cuted if the test f).15 E(ails.)-.1 E F1($include)108 -578.4 Q F0 .357(This directi)144 590.4 R .657 -.15(ve t)-.25 H(ak).15 E -.357(es a single \214lename as an ar)-.1 F .356 -(gument and reads commands and bindings from that)-.18 F 2.5(\214le. F) -144 602.4 R(or e)-.15 E(xample, the follo)-.15 E(wing directi)-.25 E .3 --.15(ve w)-.25 H(ould read).05 E F2(/etc/inputr)2.5 E(c)-.37 E F0(:)A F1 -($include)144 626.4 Q F2(/etc/inputr)5.833 E(c)-.37 E F1(Sear)87 643.2 Q -(ching)-.18 E F0 .834(Readline pro)108 655.2 R .834 -(vides commands for searching through the command history \(see)-.15 F -/F3 9/Times-Bold@0 SF(HIST)3.335 E(OR)-.162 E(Y)-.315 E F0(belo)3.085 E -.835(w\) for lines)-.25 F(containing a speci\214ed string.)108 667.2 Q -(There are tw)5 E 2.5(os)-.1 G(earch modes:)-2.5 E F2(incr)2.51 E -(emental)-.37 E F0(and)3.01 E F2(non-incr)2.86 E(emental)-.37 E F0(.).51 -E .698(Incremental searches be)108 684 R .698 -(gin before the user has \214nished typing the search string.)-.15 F -.697(As each character of the)5.697 F .112 -(search string is typed, readline displays the ne)108 696 R .112 -(xt entry from the history matching the string typed so f)-.15 F(ar)-.1 -E 5.113(.A)-.55 G(n)-5.113 E .542 -(incremental search requires only as man)108 708 R 3.042(yc)-.15 G .542 -(haracters as needed to \214nd the desired history entry)-3.042 F 5.541 -(.T)-.65 G .541(he char)-5.541 F(-)-.2 E .224(acters present in the v) -108 720 R .224(alue of the)-.25 F F1(isear)2.724 E(ch-terminators)-.18 E -F0 -.25(va)2.724 G .224 -(riable are used to terminate an incremental search.).25 F(GNU Bash 5.2) -72 768 Q(2022 March 11)144.29 E(47)193.45 E 0 Cg EP +-.18 E F0(.)A F1($endif)108 710.4 Q F0(This command, as seen in the pre) +144 710.4 Q(vious e)-.25 E(xample, terminates an)-.15 E F1($if)2.5 E F0 +(command.)2.5 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(47)199.835 E +0 Cg EP %%Page: 48 48 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .66(If that v)108 -84 R .66(ariable has not been assigned a v)-.25 F .66 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF($else)108 84 Q F0(Commands in this branch of the)144 84 Q F1($if)2.5 +E F0(directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E -.15(xe)-.15 G +(cuted if the test f).15 E(ails.)-.1 E F1($include)108 100.8 Q F0 .357 +(This directi)144 112.8 R .657 -.15(ve t)-.25 H(ak).15 E .357 +(es a single \214lename as an ar)-.1 F .356 +(gument and reads commands and bindings from that)-.18 F 2.5(\214le. F) +144 124.8 R(or e)-.15 E(xample, the follo)-.15 E(wing directi)-.25 E .3 +-.15(ve w)-.25 H(ould read).05 E/F2 10/Times-Italic@0 SF(/etc/inputr)2.5 +E(c)-.37 E F0(:)A F1($include)144 148.8 Q F2(/etc/inputr)5.833 E(c)-.37 +E F1(Sear)87 165.6 Q(ching)-.18 E F0 .834(Readline pro)108 177.6 R .834 +(vides commands for searching through the command history \(see)-.15 F +/F3 9/Times-Bold@0 SF(HIST)3.335 E(OR)-.162 E(Y)-.315 E F0(belo)3.085 E +.835(w\) for lines)-.25 F(containing a speci\214ed string.)108 189.6 Q +(There are tw)5 E 2.5(os)-.1 G(earch modes:)-2.5 E F2(incr)2.51 E +(emental)-.37 E F0(and)3.01 E F2(non-incr)2.86 E(emental)-.37 E F0(.).51 +E .698(Incremental searches be)108 206.4 R .698 +(gin before the user has \214nished typing the search string.)-.15 F +.697(As each character of the)5.697 F .112 +(search string is typed, readline displays the ne)108 218.4 R .112 +(xt entry from the history matching the string typed so f)-.15 F(ar)-.1 +E 5.113(.A)-.55 G(n)-5.113 E .542 +(incremental search requires only as man)108 230.4 R 3.042(yc)-.15 G +.542(haracters as needed to \214nd the desired history entry)-3.042 F +5.541(.T)-.65 G .541(he char)-5.541 F(-)-.2 E .224 +(acters present in the v)108 242.4 R .224(alue of the)-.25 F F1(isear) +2.724 E(ch-terminators)-.18 E F0 -.25(va)2.724 G .224 +(riable are used to terminate an incremental search.).25 F .66 +(If that v)108 254.4 R .66(ariable has not been assigned a v)-.25 F .66 (alue the Escape and Control-J characters will terminate an incre-)-.25 -F .096(mental search.)108 96 R .096(Control-G will abort an incremental\ - search and restore the original line.)5.096 F .097(When the search is) -5.097 F(terminated, the history entry containing the search string beco\ -mes the current line.)108 108 Q 2.939 -.8(To \214)108 124.8 T 1.339(nd \ -other matching entries in the history list, type Control-S or Control-R\ - as appropriate.).8 F 1.338(This will)6.338 F .674(search backw)108 -136.8 R .674(ard or forw)-.1 F .674(ard in the history for the ne)-.1 F -.675(xt entry matching the search string typed so f)-.15 F(ar)-.1 E -5.675(.A)-.55 G -.15(ny)-5.675 G .175(other k)108 148.8 R .475 -.15 -(ey s)-.1 H .174 +F .096(mental search.)108 266.4 R .096(Control-G will abort an incremen\ +tal search and restore the original line.)5.096 F .097 +(When the search is)5.097 F(terminated, the history entry containing th\ +e search string becomes the current line.)108 278.4 Q 2.939 -.8(To \214) +108 295.2 T 1.339(nd other matching entries in the history list, type C\ +ontrol-S or Control-R as appropriate.).8 F 1.338(This will)6.338 F .674 +(search backw)108 307.2 R .674(ard or forw)-.1 F .674 +(ard in the history for the ne)-.1 F .675 +(xt entry matching the search string typed so f)-.15 F(ar)-.1 E 5.675 +(.A)-.55 G -.15(ny)-5.675 G .175(other k)108 319.2 R .475 -.15(ey s)-.1 +H .174 (equence bound to a readline command will terminate the search and e).15 F -.15(xe)-.15 G .174(cute that command.).15 F -.15(Fo)5.174 G(r).15 E -.54(instance, a)108 160.8 R/F1 10/Times-Italic@0 SF(ne)3.04 E(wline)-.15 -E F0 .541(will terminate the search and accept the line, thereby e)3.04 -F -.15(xe)-.15 G .541(cuting the command from the).15 F(history list.) -108 172.8 Q .653(Readline remembers the last incremental search string.) -108 189.6 R .653(If tw)5.653 F 3.153(oC)-.1 G .653 +.54(instance, a)108 331.2 R F2(ne)3.04 E(wline)-.15 E F0 .541 +(will terminate the search and accept the line, thereby e)3.04 F -.15 +(xe)-.15 G .541(cuting the command from the).15 F(history list.)108 +343.2 Q .653(Readline remembers the last incremental search string.)108 +360 R .653(If tw)5.653 F 3.153(oC)-.1 G .653 (ontrol-Rs are typed without an)-3.153 F 3.152(yi)-.15 G(nterv)-3.152 E -(en-)-.15 E(ing characters de\214ning a ne)108 201.6 Q 2.5(ws)-.25 G +(en-)-.15 E(ing characters de\214ning a ne)108 372 Q 2.5(ws)-.25 G (earch string, an)-2.5 E 2.5(yr)-.15 G(emembered search string is used.) -2.5 E .567(Non-incremental searches read the entire search string befo\ -re starting to search for matching history lines.)108 218.4 R(The searc\ +re starting to search for matching history lines.)108 388.8 R(The searc\ h string may be typed by the user or be part of the contents of the cur\ -rent line.)108 230.4 Q/F2 10/Times-Bold@0 SF(Readline Command Names)87 -247.2 Q F0 1.392(The follo)108 259.2 R 1.391 +rent line.)108 400.8 Q F1(Readline Command Names)87 417.6 Q F0 1.392 +(The follo)108 429.6 R 1.391 (wing is a list of the names of the commands and the def)-.25 F 1.391 (ault k)-.1 F 1.691 -.15(ey s)-.1 H 1.391(equences to which the).15 F -3.891(ya)-.15 G(re)-3.891 E 2.621(bound. Command)108 271.2 R .121 +3.891(ya)-.15 G(re)-3.891 E 2.621(bound. Command)108 441.6 R .121 (names without an accompan)2.621 F .121(ying k)-.15 F .421 -.15(ey s)-.1 H .122(equence are unbound by def).15 F 2.622(ault. In)-.1 F .122 -(the follo)2.622 F(wing)-.25 E(descriptions,)108 283.2 Q F1(point)3.411 -E F0 .911(refers to the current cursor position, and)3.411 F F1(mark) +(the follo)2.622 F(wing)-.25 E(descriptions,)108 453.6 Q F2(point)3.411 +E F0 .911(refers to the current cursor position, and)3.411 F F2(mark) 3.411 E F0 .91(refers to a cursor position sa)3.411 F -.15(ve)-.2 G 3.41 -(db).15 G 3.41(yt)-3.41 G(he)-3.41 E F2(set\255mark)108 295.2 Q F0 2.5 +(db).15 G 3.41(yt)-3.41 G(he)-3.41 E F1(set\255mark)108 465.6 Q F0 2.5 (command. The)2.5 F(te)2.5 E -(xt between the point and mark is referred to as the)-.15 E F1 -.37(re) -2.5 G(gion)-.03 E F0(.)A F2(Commands f)87 312 Q(or Mo)-.25 E(ving)-.1 E -(beginning\255of\255line \(C\255a\))108 324 Q F0(Mo)144 336 Q .3 -.15 -(ve t)-.15 H 2.5(ot).15 G(he start of the current line.)-2.5 E F2 -(end\255of\255line \(C\255e\))108 348 Q F0(Mo)144 360 Q .3 -.15(ve t) --.15 H 2.5(ot).15 G(he end of the line.)-2.5 E F2 -.25(fo)108 372 S -(rward\255char \(C\255f\)).25 E F0(Mo)144 384 Q .3 -.15(ve f)-.15 H(orw) -.15 E(ard a character)-.1 E(.)-.55 E F2(backward\255char \(C\255b\))108 -396 Q F0(Mo)144 408 Q .3 -.15(ve b)-.15 H(ack a character).15 E(.)-.55 E -F2 -.25(fo)108 420 S(rward\255w).25 E(ord \(M\255f\))-.1 E F0(Mo)144 432 -Q .822 -.15(ve f)-.15 H(orw).15 E .522(ard to the end of the ne)-.1 F -.523(xt w)-.15 F 3.023(ord. W)-.1 F .523 -(ords are composed of alphanumeric characters \(let-)-.8 F -(ters and digits\).)144 444 Q F2(backward\255w)108 456 Q(ord \(M\255b\)) --.1 E F0(Mo)144 468 Q 1.71 -.15(ve b)-.15 H 1.41 +(xt between the point and mark is referred to as the)-.15 E F2 -.37(re) +2.5 G(gion)-.03 E F0(.)A F1(Commands f)87 482.4 Q(or Mo)-.25 E(ving)-.1 +E(beginning\255of\255line \(C\255a\))108 494.4 Q F0(Mo)144 506.4 Q .3 +-.15(ve t)-.15 H 2.5(ot).15 G(he start of the current line.)-2.5 E F1 +(end\255of\255line \(C\255e\))108 518.4 Q F0(Mo)144 530.4 Q .3 -.15 +(ve t)-.15 H 2.5(ot).15 G(he end of the line.)-2.5 E F1 -.25(fo)108 +542.4 S(rward\255char \(C\255f\)).25 E F0(Mo)144 554.4 Q .3 -.15(ve f) +-.15 H(orw).15 E(ard a character)-.1 E(.)-.55 E F1 +(backward\255char \(C\255b\))108 566.4 Q F0(Mo)144 578.4 Q .3 -.15(ve b) +-.15 H(ack a character).15 E(.)-.55 E F1 -.25(fo)108 590.4 S(rward\255w) +.25 E(ord \(M\255f\))-.1 E F0(Mo)144 602.4 Q .822 -.15(ve f)-.15 H(orw) +.15 E .522(ard to the end of the ne)-.1 F .523(xt w)-.15 F 3.023(ord. W) +-.1 F .523(ords are composed of alphanumeric characters \(let-)-.8 F +(ters and digits\).)144 614.4 Q F1(backward\255w)108 626.4 Q +(ord \(M\255b\))-.1 E F0(Mo)144 638.4 Q 1.71 -.15(ve b)-.15 H 1.41 (ack to the start of the current or pre).15 F 1.41(vious w)-.25 F 3.91 (ord. W)-.1 F 1.41(ords are composed of alphanumeric)-.8 F -(characters \(letters and digits\).)144 480 Q F2(shell\255f)108 492 Q -(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 504 Q .784 -.15(ve f)-.15 H(orw) -.15 E .484(ard to the end of the ne)-.1 F .484(xt w)-.15 F 2.984(ord. W) --.1 F .484(ords are delimited by non-quoted shell metacharac-)-.8 F -(ters.)144 516 Q F2(shell\255backward\255w)108 528 Q(ord)-.1 E F0(Mo)144 -540 Q .909 -.15(ve b)-.15 H .609(ack to the start of the current or pre) -.15 F .609(vious w)-.25 F 3.109(ord. W)-.1 F .608 -(ords are delimited by non-quoted shell)-.8 F(metacharacters.)144 552 Q -F2(pr)108 564 Q -.15(ev)-.18 G(ious\255scr).15 E(een\255line)-.18 E F0 -.89(Attempt to mo)144 576 R 1.19 -.15(ve p)-.15 H .89 -(oint to the same ph).15 F .891(ysical screen column on the pre)-.05 F -.891(vious ph)-.25 F .891(ysical screen line.)-.05 F .87 -(This will not ha)144 588 R 1.17 -.15(ve t)-.2 H .87(he desired ef).15 F -.87(fect if the current Readline line does not tak)-.25 F 3.37(eu)-.1 G -3.37(pm)-3.37 G .87(ore than one)-3.37 F(ph)144 600 Q(ysical line or if\ - point is not greater than the length of the prompt plus the screen wid\ -th.)-.05 E F2(next\255scr)108 612 Q(een\255line)-.18 E F0 .637 -(Attempt to mo)144 624 R .937 -.15(ve p)-.15 H .637(oint to the same ph) -.15 F .638(ysical screen column on the ne)-.05 F .638(xt ph)-.15 F .638 -(ysical screen line. This)-.05 F .009(will not ha)144 636 R .309 -.15 -(ve t)-.2 H .009(he desired ef).15 F .009 -(fect if the current Readline line does not tak)-.25 F 2.509(eu)-.1 G -2.509(pm)-2.509 G .008(ore than one ph)-2.509 F(ysical)-.05 E .772(line\ - or if the length of the current Readline line is not greater than the \ -length of the prompt plus)144 648 R(the screen width.)144 660 Q F2 -(clear\255display \(M\255C\255l\))108 672 Q F0 1.499 -(Clear the screen and, if possible, the terminal')144 684 R 3.999(ss) --.55 G 1.498(crollback b)-3.999 F(uf)-.2 E(fer)-.25 E 3.998(,t)-.4 G -1.498(hen redra)-3.998 F 3.998(wt)-.15 G 1.498(he current line,)-3.998 F -(lea)144 696 Q(ving the current line at the top of the screen.)-.2 E -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(48)193.45 E 0 Cg EP +(characters \(letters and digits\).)144 650.4 Q F1(shell\255f)108 662.4 +Q(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 674.4 Q .784 -.15(ve f)-.15 H +(orw).15 E .484(ard to the end of the ne)-.1 F .484(xt w)-.15 F 2.984 +(ord. W)-.1 F .484(ords are delimited by non-quoted shell metacharac-) +-.8 F(ters.)144 686.4 Q F1(shell\255backward\255w)108 698.4 Q(ord)-.1 E +F0(Mo)144 710.4 Q .909 -.15(ve b)-.15 H .609 +(ack to the start of the current or pre).15 F .609(vious w)-.25 F 3.109 +(ord. W)-.1 F .608(ords are delimited by non-quoted shell)-.8 F +(metacharacters.)144 722.4 Q(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E +(48)199.835 E 0 Cg EP %%Page: 49 49 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(clear\255scr)108 84 Q(een \(C\255l\))-.18 E F0 1.36 -(Clear the screen, then redra)144 96 R 3.86(wt)-.15 G 1.36 +SF(pr)108 84 Q -.15(ev)-.18 G(ious\255scr).15 E(een\255line)-.18 E F0 +.89(Attempt to mo)144 96 R 1.19 -.15(ve p)-.15 H .89 +(oint to the same ph).15 F .891(ysical screen column on the pre)-.05 F +.891(vious ph)-.25 F .891(ysical screen line.)-.05 F .87 +(This will not ha)144 108 R 1.17 -.15(ve t)-.2 H .87(he desired ef).15 F +.87(fect if the current Readline line does not tak)-.25 F 3.37(eu)-.1 G +3.37(pm)-3.37 G .87(ore than one)-3.37 F(ph)144 120 Q(ysical line or if\ + point is not greater than the length of the prompt plus the screen wid\ +th.)-.05 E F1(next\255scr)108 132 Q(een\255line)-.18 E F0 .637 +(Attempt to mo)144 144 R .937 -.15(ve p)-.15 H .637(oint to the same ph) +.15 F .638(ysical screen column on the ne)-.05 F .638(xt ph)-.15 F .638 +(ysical screen line. This)-.05 F .009(will not ha)144 156 R .309 -.15 +(ve t)-.2 H .009(he desired ef).15 F .009 +(fect if the current Readline line does not tak)-.25 F 2.509(eu)-.1 G +2.509(pm)-2.509 G .008(ore than one ph)-2.509 F(ysical)-.05 E .772(line\ + or if the length of the current Readline line is not greater than the \ +length of the prompt plus)144 168 R(the screen width.)144 180 Q F1 +(clear\255display \(M\255C\255l\))108 192 Q F0 1.499 +(Clear the screen and, if possible, the terminal')144 204 R 3.999(ss) +-.55 G 1.498(crollback b)-3.999 F(uf)-.2 E(fer)-.25 E 3.998(,t)-.4 G +1.498(hen redra)-3.998 F 3.998(wt)-.15 G 1.498(he current line,)-3.998 F +(lea)144 216 Q(ving the current line at the top of the screen.)-.2 E F1 +(clear\255scr)108 228 Q(een \(C\255l\))-.18 E F0 1.36 +(Clear the screen, then redra)144 240 R 3.86(wt)-.15 G 1.36 (he current line, lea)-3.86 F 1.36 -(ving the current line at the top of the screen.)-.2 F -.4(Wi)144 108 S +(ving the current line at the top of the screen.)-.2 F -.4(Wi)144 252 S (th an ar).4 E (gument, refresh the current line without clearing the screen.)-.18 E F1 --.18(re)108 120 S(draw\255curr).18 E(ent\255line)-.18 E F0 -(Refresh the current line.)144 132 Q F1(Commands f)87 148.8 Q +-.18(re)108 264 S(draw\255curr).18 E(ent\255line)-.18 E F0 +(Refresh the current line.)144 276 Q F1(Commands f)87 292.8 Q (or Manipulating the History)-.25 E(accept\255line \(Newline, Retur)108 -160.8 Q(n\))-.15 E F0 .159(Accept the line re)144 172.8 R -.05(ga)-.15 G +304.8 Q(n\))-.15 E F0 .159(Accept the line re)144 316.8 R -.05(ga)-.15 G .159(rdless of where the cursor is.).05 F .158 (If this line is non-empty)5.158 F 2.658(,a)-.65 G .158 (dd it to the history list)-2.658 F .699(according to the state of the) -144 184.8 R/F2 9/Times-Bold@0 SF(HISTCONTR)3.199 E(OL)-.27 E F0 -.25(va) +144 328.8 R/F2 9/Times-Bold@0 SF(HISTCONTR)3.199 E(OL)-.27 E F0 -.25(va) 2.949 G 3.199(riable. If).25 F .699 (the line is a modi\214ed history line, then)3.199 F -(restore the history line to its original state.)144 196.8 Q F1(pr)108 -208.8 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0 -(Fetch the pre)144 220.8 Q(vious command from the history list, mo)-.25 -E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 232.8 -Q F0(Fetch the ne)144 244.8 Q(xt command from the history list, mo)-.15 +(restore the history line to its original state.)144 340.8 Q F1(pr)108 +352.8 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0 +(Fetch the pre)144 364.8 Q(vious command from the history list, mo)-.25 +E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 376.8 +Q F0(Fetch the ne)144 388.8 Q(xt command from the history list, mo)-.15 E(ving forw)-.15 E(ard in the list.)-.1 E F1 -(beginning\255of\255history \(M\255<\))108 256.8 Q F0(Mo)144 268.8 Q .3 +(beginning\255of\255history \(M\255<\))108 400.8 Q F0(Mo)144 412.8 Q .3 -.15(ve t)-.15 H 2.5(ot).15 G(he \214rst line in the history)-2.5 E(.) --.65 E F1(end\255of\255history \(M\255>\))108 280.8 Q F0(Mo)144 292.8 Q +-.65 E F1(end\255of\255history \(M\255>\))108 424.8 Q F0(Mo)144 436.8 Q .3 -.15(ve t)-.15 H 2.5(ot).15 G(he end of the input history)-2.5 E 2.5 (,i)-.65 G(.e., the line currently being entered.)-2.5 E F1 -(operate\255and\255get\255next \(C\255o\))108 304.8 Q F0 .948 -(Accept the current line for e)144 316.8 R -.15(xe)-.15 G .948 +(operate\255and\255get\255next \(C\255o\))108 448.8 Q F0 .948 +(Accept the current line for e)144 460.8 R -.15(xe)-.15 G .948 (cution and fetch the ne).15 F .948(xt line relati)-.15 F 1.247 -.15 (ve t)-.25 H 3.447(ot).15 G .947(he current line from the)-3.447 F .729 -(history for editing.)144 328.8 R 3.229(An)5.729 G .729(umeric ar)-3.229 +(history for editing.)144 472.8 R 3.229(An)5.729 G .729(umeric ar)-3.229 F .729 (gument, if supplied, speci\214es the history entry to use instead of) --.18 F(the current line.)144 340.8 Q F1(fetch\255history)108 352.8 Q F0 --.4(Wi)144 364.8 S .257(th a numeric ar).4 F .257 +-.18 F(the current line.)144 484.8 Q F1(fetch\255history)108 496.8 Q F0 +-.4(Wi)144 508.8 S .257(th a numeric ar).4 F .257 (gument, fetch that entry from the history list and mak)-.18 F 2.756(ei) -.1 G 2.756(tt)-2.756 G .256(he current line.)-2.756 F -.4(Wi)5.256 G -(th-).4 E(out an ar)144 376.8 Q(gument, mo)-.18 E .3 -.15(ve b)-.15 H +(th-).4 E(out an ar)144 520.8 Q(gument, mo)-.18 E .3 -.15(ve b)-.15 H (ack to the \214rst entry in the history list.).15 E F1 -2.29 -.18(re v) -108 388.8 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 1.47 -(Search backw)144 400.8 R 1.471(ard starting at the current line and mo) +108 532.8 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 1.47 +(Search backw)144 544.8 R 1.471(ard starting at the current line and mo) -.1 F 1.471(ving `up' through the history as necessary)-.15 F(.)-.65 E -(This is an incremental search.)144 412.8 Q F1 -.25(fo)108 424.8 S +(This is an incremental search.)144 556.8 Q F1 -.25(fo)108 568.8 S (rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.132 -(Search forw)144 436.8 R 1.132(ard starting at the current line and mo) +(Search forw)144 580.8 R 1.132(ard starting at the current line and mo) -.1 F 1.131(ving `do)-.15 F 1.131(wn' through the history as necessary) --.25 F(.)-.65 E(This is an incremental search.)144 448.8 Q F1 -(non\255incr)108 460.8 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H +-.25 F(.)-.65 E(This is an incremental search.)144 592.8 Q F1 +(non\255incr)108 604.8 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H (rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .164(Search backw) -144 472.8 R .164(ard through the history starting at the current line u\ -sing a non-incremental search for)-.1 F 2.5(as)144 484.8 S -(tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 496.8 Q +144 616.8 R .164(ard through the history starting at the current line u\ +sing a non-incremental search for)-.1 F 2.5(as)144 628.8 S +(tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 640.8 Q (emental\255f)-.18 E(orward\255sear)-.25 E(ch\255history \(M\255n\))-.18 -E F0 1.354(Search forw)144 508.8 R 1.354(ard through the history using \ +E F0 1.354(Search forw)144 652.8 R 1.354(ard through the history using \ a non-incremental search for a string supplied by the)-.1 F(user)144 -520.8 Q(.)-.55 E F1(history\255sear)108 532.8 Q(ch\255f)-.18 E(orward) --.25 E F0 .248(Search forw)144 544.8 R .249(ard through the history for\ +664.8 Q(.)-.55 E F1(history\255sear)108 676.8 Q(ch\255f)-.18 E(orward) +-.25 E F0 .248(Search forw)144 688.8 R .249(ard through the history for\ the string of characters between the start of the current line)-.1 F -(and the point.)144 556.8 Q(This is a non-incremental search.)5 E F1 -(history\255sear)108 568.8 Q(ch\255backward)-.18 E F0 .951(Search backw) -144 580.8 R .951(ard through the history for the string of characters b\ -etween the start of the current)-.1 F(line and the point.)144 592.8 Q -(This is a non-incremental search.)5 E F1(history\255substring\255sear) -108 604.8 Q(ch\255backward)-.18 E F0 .95(Search backw)144 616.8 R .951(\ -ard through the history for the string of characters between the start \ -of the current)-.1 F .007(line and the current cursor position \(the)144 -628.8 R/F3 10/Times-Italic@0 SF(point)2.507 E F0 2.507(\). The)B .007 -(search string may match an)2.507 F .006(ywhere in a history)-.15 F 2.5 -(line. This)144 640.8 R(is a non-incremental search.)2.5 E F1 -(history\255substring\255sear)108 652.8 Q(ch\255f)-.18 E(orward)-.25 E -F0 .248(Search forw)144 664.8 R .249(ard through the history for the st\ -ring of characters between the start of the current line)-.1 F .319 -(and the point.)144 676.8 R .319(The search string may match an)5.319 F -.319(ywhere in a history line.)-.15 F .318(This is a non-incremental) -5.318 F(search.)144 688.8 Q F1(yank\255nth\255ar)108 700.8 Q 2.5(g\()-.1 -G<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 712.8 R .622 -(gument to the pre)-.18 F .622(vious command \(usually the second w)-.25 -F .622(ord on the pre)-.1 F .622(vious line\))-.25 F .773(at point.)144 -724.8 R -.4(Wi)5.773 G .773(th an ar).4 F(gument)-.18 E F3(n)3.633 E F0 -3.273(,i).24 G .773(nsert the)-3.273 F F3(n)3.273 E F0 .773(th w)B .773 -(ord from the pre)-.1 F .773(vious command \(the w)-.25 F .773 -(ords in the)-.1 F(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(49) -193.45 E 0 Cg EP +(and the point.)144 700.8 Q(This is a non-incremental search.)5 E +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(49)199.835 E 0 Cg EP %%Page: 50 50 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(pre)144 84 Q .291 -(vious command be)-.25 F .291(gin with w)-.15 F .291(ord 0\).)-.1 F -2.791(An)5.291 G -2.25 -.15(eg a)-2.791 H(ti).15 E .591 -.15(ve a)-.25 H --.18(rg).15 G .291(ument inserts the).18 F/F1 10/Times-Italic@0 SF(n) -2.791 E F0 .291(th w)B .292(ord from the end of)-.1 F .282(the pre)144 -96 R .282(vious command.)-.25 F .282(Once the ar)5.282 F(gument)-.18 E -F1(n)2.781 E F0 .281(is computed, the ar)2.781 F .281(gument is e)-.18 F -.281(xtracted as if the "!)-.15 F F1(n)A F0(")A(history e)144 108 Q -(xpansion had been speci\214ed.)-.15 E/F2 10/Times-Bold@0 SF -(yank\255last\255ar)108 120 Q 2.5(g\()-.1 G -1.667(M\255. ,)-2.5 F --1.667(M\255_ \))2.5 F F0 1.307(Insert the last ar)144 132 R 1.307 -(gument to the pre)-.18 F 1.307(vious command \(the last w)-.25 F 1.308 -(ord of the pre)-.1 F 1.308(vious history entry\).)-.25 F -.4(Wi)144 144 -S .204(th a numeric ar).4 F .204(gument, beha)-.18 F .504 -.15(ve ex)-.2 -H .204(actly lik).15 F(e)-.1 E F2(yank\255nth\255ar)2.704 E(g)-.1 E F0 -5.203(.S)C(uccessi)-5.203 E .503 -.15(ve c)-.25 H .203(alls to).15 F F2 -(yank\255last\255ar)2.703 E(g)-.1 E F0(mo)144 156 Q .806 -.15(ve b)-.15 -H .507(ack through the history list, inserting the last w).15 F .507 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(history\255sear)108 84 Q(ch\255backward)-.18 E F0 .951(Search backw) +144 96 R .951(ard through the history for the string of characters betw\ +een the start of the current)-.1 F(line and the point.)144 108 Q +(This is a non-incremental search.)5 E F1(history\255substring\255sear) +108 120 Q(ch\255backward)-.18 E F0 .95(Search backw)144 132 R .951(ard \ +through the history for the string of characters between the start of t\ +he current)-.1 F .007(line and the current cursor position \(the)144 144 +R/F2 10/Times-Italic@0 SF(point)2.507 E F0 2.507(\). The)B .007 +(search string may match an)2.507 F .006(ywhere in a history)-.15 F 2.5 +(line. This)144 156 R(is a non-incremental search.)2.5 E F1 +(history\255substring\255sear)108 168 Q(ch\255f)-.18 E(orward)-.25 E F0 +.248(Search forw)144 180 R .249(ard through the history for the string \ +of characters between the start of the current line)-.1 F .319 +(and the point.)144 192 R .319(The search string may match an)5.319 F +.319(ywhere in a history line.)-.15 F .318(This is a non-incremental) +5.318 F(search.)144 204 Q F1(yank\255nth\255ar)108 216 Q 2.5(g\()-.1 G +<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 228 R .622 +(gument to the pre)-.18 F .622(vious command \(usually the second w)-.25 +F .622(ord on the pre)-.1 F .622(vious line\))-.25 F .773(at point.)144 +240 R -.4(Wi)5.773 G .773(th an ar).4 F(gument)-.18 E F2(n)3.633 E F0 +3.273(,i).24 G .773(nsert the)-3.273 F F2(n)3.273 E F0 .773(th w)B .773 +(ord from the pre)-.1 F .773(vious command \(the w)-.25 F .773 +(ords in the)-.1 F(pre)144 252 Q .291(vious command be)-.25 F .291 +(gin with w)-.15 F .291(ord 0\).)-.1 F 2.791(An)5.291 G -2.25 -.15(eg a) +-2.791 H(ti).15 E .591 -.15(ve a)-.25 H -.18(rg).15 G .291 +(ument inserts the).18 F F2(n)2.791 E F0 .291(th w)B .292 +(ord from the end of)-.1 F .282(the pre)144 264 R .282(vious command.) +-.25 F .282(Once the ar)5.282 F(gument)-.18 E F2(n)2.781 E F0 .281 +(is computed, the ar)2.781 F .281(gument is e)-.18 F .281 +(xtracted as if the "!)-.15 F F2(n)A F0(")A(history e)144 276 Q +(xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 288 Q +2.5(g\()-.1 G -1.667(M\255. ,)-2.5 F -1.667(M\255_ \))2.5 F F0 1.307 +(Insert the last ar)144 300 R 1.307(gument to the pre)-.18 F 1.307 +(vious command \(the last w)-.25 F 1.308(ord of the pre)-.1 F 1.308 +(vious history entry\).)-.25 F -.4(Wi)144 312 S .204(th a numeric ar).4 +F .204(gument, beha)-.18 F .504 -.15(ve ex)-.2 H .204(actly lik).15 F(e) +-.1 E F1(yank\255nth\255ar)2.704 E(g)-.1 E F0 5.203(.S)C(uccessi)-5.203 +E .503 -.15(ve c)-.25 H .203(alls to).15 F F1(yank\255last\255ar)2.703 E +(g)-.1 E F0(mo)144 324 Q .806 -.15(ve b)-.15 H .507 +(ack through the history list, inserting the last w).15 F .507 (ord \(or the w)-.1 F .507(ord speci\214ed by the ar)-.1 F(gument)-.18 E -.416(to the \214rst call\) of each line in turn.)144 168 R(An)5.416 E +.416(to the \214rst call\) of each line in turn.)144 336 R(An)5.416 E 2.916(yn)-.15 G .416(umeric ar)-2.916 F .416 (gument supplied to these successi)-.18 F .715 -.15(ve c)-.25 H .415 -(alls de-).15 F 1.217(termines the direction to mo)144 180 R 1.518 -.15 +(alls de-).15 F 1.217(termines the direction to mo)144 348 R 1.518 -.15 (ve t)-.15 H 1.218(hrough the history).15 F 6.218(.A)-.65 G(ne)-2.5 E -.05(ga)-.15 G(ti).05 E 1.518 -.15(ve a)-.25 H -.18(rg).15 G 1.218 (ument switches the direction).18 F .494 -(through the history \(back or forw)144 192 R 2.994(ard\). The)-.1 F +(through the history \(back or forw)144 360 R 2.994(ard\). The)-.1 F .494(history e)2.994 F .494(xpansion f)-.15 F .494 (acilities are used to e)-.1 F .494(xtract the last)-.15 F -.1(wo)144 -204 S(rd, as if the "!$" history e).1 E(xpansion had been speci\214ed.) --.15 E F2(shell\255expand\255line \(M\255C\255e\))108 216 Q F0 .622 -(Expand the line as the shell does.)144 228 R .622 +372 S(rd, as if the "!$" history e).1 E(xpansion had been speci\214ed.) +-.15 E F1(shell\255expand\255line \(M\255C\255e\))108 384 Q F0 .622 +(Expand the line as the shell does.)144 396 R .622 (This performs alias and history e)5.622 F .623 -(xpansion as well as all of the)-.15 F(shell w)144 240 Q(ord e)-.1 E 2.5 +(xpansion as well as all of the)-.15 F(shell w)144 408 Q(ord e)-.1 E 2.5 (xpansions. See)-.15 F/F3 9/Times-Bold@0 SF(HIST)2.5 E(OR)-.162 E 2.25 (YE)-.315 G(XP)-2.25 E(ANSION)-.666 E F0(belo)2.25 E 2.5(wf)-.25 G -(or a description of history e)-2.5 E(xpansion.)-.15 E F2 -(history\255expand\255line \(M\255^\))108 252 Q F0 .939 -(Perform history e)144 264 R .939(xpansion on the current line.)-.15 F +(or a description of history e)-2.5 E(xpansion.)-.15 E F1 +(history\255expand\255line \(M\255^\))108 420 Q F0 .939 +(Perform history e)144 432 R .939(xpansion on the current line.)-.15 F (See)5.939 E F3(HIST)3.439 E(OR)-.162 E 3.189(YE)-.315 G(XP)-3.189 E (ANSION)-.666 E F0(belo)3.189 E 3.438(wf)-.25 G .938(or a descrip-) --3.438 F(tion of history e)144 276 Q(xpansion.)-.15 E F2(magic\255space) -108 288 Q F0 .437(Perform history e)144 300 R .437 +-3.438 F(tion of history e)144 444 Q(xpansion.)-.15 E F1(magic\255space) +108 456 Q F0 .437(Perform history e)144 468 R .437 (xpansion on the current line and insert a space.)-.15 F(See)5.438 E F3 (HIST)2.938 E(OR)-.162 E 2.688(YE)-.315 G(XP)-2.688 E(ANSION)-.666 E F0 -(be-)2.688 E(lo)144 312 Q 2.5(wf)-.25 G(or a description of history e) --2.5 E(xpansion.)-.15 E F2(alias\255expand\255line)108 324 Q F0 .395 -(Perform alias e)144 336 R .395(xpansion on the current line.)-.15 F +(be-)2.688 E(lo)144 480 Q 2.5(wf)-.25 G(or a description of history e) +-2.5 E(xpansion.)-.15 E F1(alias\255expand\255line)108 492 Q F0 .395 +(Perform alias e)144 504 R .395(xpansion on the current line.)-.15 F (See)5.395 E F3(ALIASES)2.895 E F0(abo)2.645 E .694 -.15(ve f)-.15 H -.394(or a description of alias e).15 F(xpan-)-.15 E(sion.)144 348 Q F2 -(history\255and\255alias\255expand\255line)108 360 Q F0 -(Perform history and alias e)144 372 Q(xpansion on the current line.) --.15 E F2(insert\255last\255ar)108 384 Q(gument \(M\255.)-.1 E 2.5(,M) -.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 396 S(ynon)-2.5 E(ym for) --.15 E F2(yank\255last\255ar)2.5 E(g)-.1 E F0(.)A F2 -(edit\255and\255execute\255command \(C\255x C\255e\))108 408 Q F0(In)144 -420 Q -.2(vo)-.4 G .346 -.1(ke a).2 H 2.646(ne).1 G .146 +.394(or a description of alias e).15 F(xpan-)-.15 E(sion.)144 516 Q F1 +(history\255and\255alias\255expand\255line)108 528 Q F0 +(Perform history and alias e)144 540 Q(xpansion on the current line.) +-.15 E F1(insert\255last\255ar)108 552 Q(gument \(M\255.)-.1 E 2.5(,M) +.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 564 S(ynon)-2.5 E(ym for) +-.15 E F1(yank\255last\255ar)2.5 E(g)-.1 E F0(.)A F1 +(edit\255and\255execute\255command \(C\255x C\255e\))108 576 Q F0(In)144 +588 Q -.2(vo)-.4 G .346 -.1(ke a).2 H 2.646(ne).1 G .146 (ditor on the current command line, and e)-2.646 F -.15(xe)-.15 G .146 -(cute the result as shell commands.).15 F F2(Bash)5.147 E F0(at-)2.647 E -(tempts to in)144 432 Q -.2(vo)-.4 G -.1(ke).2 G F3($VISU)2.6 E(AL)-.54 +(cute the result as shell commands.).15 F F1(Bash)5.147 E F0(at-)2.647 E +(tempts to in)144 600 Q -.2(vo)-.4 G -.1(ke).2 G F3($VISU)2.6 E(AL)-.54 E/F4 9/Times-Roman@0 SF(,)A F3($EDIT)2.25 E(OR)-.162 E F4(,)A F0(and) -2.25 E F1(emacs)2.5 E F0(as the editor)2.5 E 2.5(,i)-.4 G 2.5(nt)-2.5 G -(hat order)-2.5 E(.)-.55 E F2(Commands f)87 448.8 Q(or Changing T)-.25 E -(ext)-.92 E F1(end\255of\255\214le)108 460.8 Q F2(\(usually C\255d\))2.5 -E F0 .799(The character indicating end-of-\214le as set, for e)144 472.8 +2.25 E F2(emacs)2.5 E F0(as the editor)2.5 E 2.5(,i)-.4 G 2.5(nt)-2.5 G +(hat order)-2.5 E(.)-.55 E F1(Commands f)87 616.8 Q(or Changing T)-.25 E +(ext)-.92 E F2(end\255of\255\214le)108 628.8 Q F1(\(usually C\255d\))2.5 +E F0 .799(The character indicating end-of-\214le as set, for e)144 640.8 R .799(xample, by)-.15 F/F5 10/Courier@0 SF(stty)3.299 E F0 5.799(.I)C 3.298(ft)-5.799 G .798(his character is read when)-3.298 F .592 -(there are no characters on the line, and point is at the be)144 484.8 R +(there are no characters on the line, and point is at the be)144 652.8 R .593(ginning of the line, Readline interprets it)-.15 F -(as the end of input and returns)144 496.8 Q F3(EOF)2.5 E F4(.)A F2 -(delete\255char \(C\255d\))108 508.8 Q F0 .442 -(Delete the character at point.)144 520.8 R .442 -(If this function is bound to the same character as the tty)5.442 F F2 -(EOF)2.941 E F0(char)2.941 E(-)-.2 E(acter)144 532.8 Q 2.5(,a)-.4 G(s) --2.5 E F2(C\255d)2.5 E F0(commonly is, see abo)2.5 E .3 -.15(ve f)-.15 H -(or the ef).15 E(fects.)-.25 E F2(backward\255delete\255char \(Rubout\)) -108 544.8 Q F0 .552(Delete the character behind the cursor)144 556.8 R -5.553(.W)-.55 G .553(hen gi)-5.553 F -.15(ve)-.25 G 3.053(nan).15 G .553 -(umeric ar)-3.053 F .553(gument, sa)-.18 F .853 -.15(ve t)-.2 H .553 -(he deleted te).15 F .553(xt on)-.15 F(the kill ring.)144 568.8 Q F2 --.25(fo)108 580.8 S(rward\255backward\255delete\255char).25 E F0 .474 -(Delete the character under the cursor)144 592.8 R 2.974(,u)-.4 G .474 -(nless the cursor is at the end of the line, in which case the)-2.974 F -(character behind the cursor is deleted.)144 604.8 Q F2 -(quoted\255insert \(C\255q, C\255v\))108 616.8 Q F0 .778(Add the ne)144 -628.8 R .779(xt character typed to the line v)-.15 F 3.279 -(erbatim. This)-.15 F .779(is ho)3.279 F 3.279(wt)-.25 G 3.279(oi)-3.279 -G .779(nsert characters lik)-3.279 F(e)-.1 E F2(C\255q)3.279 E F0 3.279 -(,f)C(or)-3.279 E -.15(ex)144 640.8 S(ample.).15 E F2 -(tab\255insert \(C\255v T)108 652.8 Q(AB\))-.9 E F0 -(Insert a tab character)144 664.8 Q(.)-.55 E F2 -(self\255insert \(a, b, A, 1, !, ...\))108 676.8 Q F0 -(Insert the character typed.)144 688.8 Q F2 -(transpose\255chars \(C\255t\))108 700.8 Q F0 .322 -(Drag the character before point forw)144 712.8 R .321(ard o)-.1 F -.15 -(ve)-.15 G 2.821(rt).15 G .321(he character at point, mo)-2.821 F .321 -(ving point forw)-.15 F .321(ard as well.)-.1 F 1.182 -(If point is at the end of the line, then this transposes the tw)144 -724.8 R 3.683(oc)-.1 G 1.183(haracters before point.)-3.683 F(Ne)6.183 E --.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(50)193.45 E 0 Cg EP +(as the end of input and returns)144 664.8 Q F3(EOF)2.5 E F4(.)A F1 +(delete\255char \(C\255d\))108 676.8 Q F0 .442 +(Delete the character at point.)144 688.8 R .442 +(If this function is bound to the same character as the tty)5.442 F F1 +(EOF)2.941 E F0(char)2.941 E(-)-.2 E(acter)144 700.8 Q 2.5(,a)-.4 G(s) +-2.5 E F1(C\255d)2.5 E F0(commonly is, see abo)2.5 E .3 -.15(ve f)-.15 H +(or the ef).15 E(fects.)-.25 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 +E(50)199.835 E 0 Cg EP %%Page: 51 51 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(ar)144 84 Q -(guments ha)-.18 E .3 -.15(ve n)-.2 H 2.5(oe).15 G -.25(ff)-2.5 G(ect.) -.25 E/F1 10/Times-Bold@0 SF(transpose\255w)108 96 Q(ords \(M\255t\))-.1 -E F0 .024(Drag the w)144 108 R .024(ord before point past the w)-.1 F -.023(ord after point, mo)-.1 F .023(ving point o)-.15 F -.15(ve)-.15 G -2.523(rt).15 G .023(hat w)-2.523 F .023(ord as well.)-.1 F .023 -(If point)5.023 F -(is at the end of the line, this transposes the last tw)144 120 Q 2.5 -(ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 132 Q -(ord \(M\255u\))-.1 E F0 1.698(Uppercase the current \(or follo)144 144 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(backward\255delete\255char \(Rubout\))108 84 Q F0 .552 +(Delete the character behind the cursor)144 96 R 5.553(.W)-.55 G .553 +(hen gi)-5.553 F -.15(ve)-.25 G 3.053(nan).15 G .553(umeric ar)-3.053 F +.553(gument, sa)-.18 F .853 -.15(ve t)-.2 H .553(he deleted te).15 F +.553(xt on)-.15 F(the kill ring.)144 108 Q F1 -.25(fo)108 120 S +(rward\255backward\255delete\255char).25 E F0 .474 +(Delete the character under the cursor)144 132 R 2.974(,u)-.4 G .474 +(nless the cursor is at the end of the line, in which case the)-2.974 F +(character behind the cursor is deleted.)144 144 Q F1 +(quoted\255insert \(C\255q, C\255v\))108 156 Q F0 .778(Add the ne)144 +168 R .779(xt character typed to the line v)-.15 F 3.279(erbatim. This) +-.15 F .779(is ho)3.279 F 3.279(wt)-.25 G 3.279(oi)-3.279 G .779 +(nsert characters lik)-3.279 F(e)-.1 E F1(C\255q)3.279 E F0 3.279(,f)C +(or)-3.279 E -.15(ex)144 180 S(ample.).15 E F1(tab\255insert \(C\255v T) +108 192 Q(AB\))-.9 E F0(Insert a tab character)144 204 Q(.)-.55 E F1 +(self\255insert \(a, b, A, 1, !, ...\))108 216 Q F0 +(Insert the character typed.)144 228 Q F1(transpose\255chars \(C\255t\)) +108 240 Q F0 .322(Drag the character before point forw)144 252 R .321 +(ard o)-.1 F -.15(ve)-.15 G 2.821(rt).15 G .321 +(he character at point, mo)-2.821 F .321(ving point forw)-.15 F .321 +(ard as well.)-.1 F .372 +(If point is at the end of the line, then this transposes the tw)144 264 +R 2.872(oc)-.1 G .373(haracters before point.)-2.872 F(Ne)5.373 E -.05 +(ga)-.15 G(ti).05 E .673 -.15(ve a)-.25 H -.2(r-).15 G(guments ha)144 +276 Q .3 -.15(ve n)-.2 H 2.5(oe).15 G -.25(ff)-2.5 G(ect.).25 E F1 +(transpose\255w)108 288 Q(ords \(M\255t\))-.1 E F0 .024(Drag the w)144 +300 R .024(ord before point past the w)-.1 F .023(ord after point, mo) +-.1 F .023(ving point o)-.15 F -.15(ve)-.15 G 2.523(rt).15 G .023(hat w) +-2.523 F .023(ord as well.)-.1 F .023(If point)5.023 F +(is at the end of the line, this transposes the last tw)144 312 Q 2.5 +(ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 324 Q +(ord \(M\255u\))-.1 E F0 1.698(Uppercase the current \(or follo)144 336 R 1.698(wing\) w)-.25 F 4.198(ord. W)-.1 F 1.698(ith a ne)-.4 F -.05(ga) -.15 G(ti).05 E 1.999 -.15(ve a)-.25 H -.18(rg).15 G 1.699 -(ument, uppercase the pre).18 F(vious)-.25 E -.1(wo)144 156 S(rd, b).1 E -(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 168 Q -(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 180 Q 1.648 +(ument, uppercase the pre).18 F(vious)-.25 E -.1(wo)144 348 S(rd, b).1 E +(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 360 Q +(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 372 Q 1.648 (wercase the current \(or follo)-.25 F 1.648(wing\) w)-.25 F 4.148 (ord. W)-.1 F 1.647(ith a ne)-.4 F -.05(ga)-.15 G(ti).05 E 1.947 -.15 (ve a)-.25 H -.18(rg).15 G 1.647(ument, lo).18 F 1.647(wercase the pre) --.25 F(vious)-.25 E -.1(wo)144 192 S(rd, b).1 E(ut do not mo)-.2 E .3 --.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 204 Q -(ord \(M\255c\))-.1 E F0 1.974(Capitalize the current \(or follo)144 216 +-.25 F(vious)-.25 E -.1(wo)144 384 S(rd, b).1 E(ut do not mo)-.2 E .3 +-.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 396 Q +(ord \(M\255c\))-.1 E F0 1.974(Capitalize the current \(or follo)144 408 R 1.974(wing\) w)-.25 F 4.474(ord. W)-.1 F 1.974(ith a ne)-.4 F -.05(ga) -.15 G(ti).05 E 2.274 -.15(ve a)-.25 H -.18(rg).15 G 1.975 -(ument, capitalize the pre).18 F(vious)-.25 E -.1(wo)144 228 S(rd, b).1 -E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 240 -S(rwrite\255mode).1 E F0 -.8(To)144 252 S .438(ggle o).8 F -.15(ve)-.15 +(ument, capitalize the pre).18 F(vious)-.25 E -.1(wo)144 420 S(rd, b).1 +E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 432 +S(rwrite\255mode).1 E F0 -.8(To)144 444 S .438(ggle o).8 F -.15(ve)-.15 G .438(rwrite mode.).15 F -.4(Wi)5.438 G .438(th an e).4 F .438 (xplicit positi)-.15 F .737 -.15(ve n)-.25 H .437(umeric ar).15 F .437 (gument, switches to o)-.18 F -.15(ve)-.15 G .437(rwrite mode.).15 F -.4 -(Wi)144 264 S .78(th an e).4 F .781(xplicit non-positi)-.15 F 1.081 -.15 +(Wi)144 456 S .78(th an e).4 F .781(xplicit non-positi)-.15 F 1.081 -.15 (ve n)-.25 H .781(umeric ar).15 F .781(gument, switches to insert mode.) --.18 F .781(This command af)5.781 F(fects)-.25 E(only)144 276 Q F1 +-.18 F .781(This command af)5.781 F(fects)-.25 E(only)144 468 Q F1 (emacs)4.395 E F0(mode;)4.395 E F1(vi)4.395 E F0 1.894(mode does o)4.395 F -.15(ve)-.15 G 1.894(rwrite dif).15 F(ferently)-.25 E 6.894(.E)-.65 G 1.894(ach call to)-6.894 F/F2 10/Times-Italic@0 SF -.37(re)4.394 G (adline\(\)).37 E F0 1.894(starts in insert)4.394 F 3.968(mode. In)144 -288 R -.15(ove)3.968 G 1.468(rwrite mode, characters bound to).15 F F1 +480 R -.15(ove)3.968 G 1.468(rwrite mode, characters bound to).15 F F1 (self\255insert)3.969 E F0 1.469(replace the te)3.969 F 1.469 -(xt at point rather than)-.15 F .958(pushing the te)144 300 R .958 +(xt at point rather than)-.15 F .958(pushing the te)144 492 R .958 (xt to the right.)-.15 F .957(Characters bound to)5.958 F F1 (backward\255delete\255char)3.457 E F0 .957(replace the character)3.457 -F(before point with a space.)144 312 Q(By def)5 E -(ault, this command is unbound.)-.1 E F1(Killing and Y)87 328.8 Q -(anking)-.85 E(kill\255line \(C\255k\))108 340.8 Q F0(Kill the te)144 -352.8 Q(xt from point to the end of the line.)-.15 E F1 -(backward\255kill\255line \(C\255x Rubout\))108 364.8 Q F0(Kill backw) -144 376.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1 -(unix\255line\255discard \(C\255u\))108 388.8 Q F0(Kill backw)144 400.8 +F(before point with a space.)144 504 Q(By def)5 E +(ault, this command is unbound.)-.1 E F1(Killing and Y)87 520.8 Q +(anking)-.85 E(kill\255line \(C\255k\))108 532.8 Q F0(Kill the te)144 +544.8 Q(xt from point to the end of the line.)-.15 E F1 +(backward\255kill\255line \(C\255x Rubout\))108 556.8 Q F0(Kill backw) +144 568.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1 +(unix\255line\255discard \(C\255u\))108 580.8 Q F0(Kill backw)144 592.8 Q(ard from point to the be)-.1 E(ginning of the line.)-.15 E (The killed te)5 E(xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt) --2.5 G(he kill-ring.)-2.5 E F1(kill\255whole\255line)108 412.8 Q F0 +-2.5 G(he kill-ring.)-2.5 E F1(kill\255whole\255line)108 604.8 Q F0 (Kill all characters on the current line, no matter where point is.)144 -424.8 Q F1(kill\255w)108 436.8 Q(ord \(M\255d\))-.1 E F0 .728 -(Kill from point to the end of the current w)144 448.8 R .729 +616.8 Q F1(kill\255w)108 628.8 Q(ord \(M\255d\))-.1 E F0 .728 +(Kill from point to the end of the current w)144 640.8 R .729 (ord, or if between w)-.1 F .729(ords, to the end of the ne)-.1 F .729 -(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 460.8 S +(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 652.8 S (rd boundaries are the same as those used by).8 E F1 -.25(fo)2.5 G -(rward\255w).25 E(ord)-.1 E F0(.)A F1(backward\255kill\255w)108 472.8 Q -(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 484.8 Q(ord behind point.) +(rward\255w).25 E(ord)-.1 E F0(.)A F1(backward\255kill\255w)108 664.8 Q +(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 676.8 Q(ord behind point.) -.1 E -.8(Wo)5 G(rd boundaries are the same as those used by).8 E F1 -(backward\255w)2.5 E(ord)-.1 E F0(.)A F1(shell\255kill\255w)108 496.8 Q -(ord)-.1 E F0 .729(Kill from point to the end of the current w)144 508.8 +(backward\255w)2.5 E(ord)-.1 E F0(.)A F1(shell\255kill\255w)108 688.8 Q +(ord)-.1 E F0 .729(Kill from point to the end of the current w)144 700.8 R .728(ord, or if between w)-.1 F .728(ords, to the end of the ne)-.1 F -.728(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 520.8 S +.728(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 712.8 S (rd boundaries are the same as those used by).8 E F1(shell\255f)2.5 E -(orward\255w)-.25 E(ord)-.1 E F0(.)A F1(shell\255backward\255kill\255w) -108 532.8 Q(ord)-.1 E F0 3.025(Kill the w)144 544.8 R 3.025 -(ord behind point.)-.1 F -.8(Wo)8.025 G 3.025 -(rd boundaries are the same as those used by).8 F F1(shell\255back-) -5.525 E(ward\255w)144 556.8 Q(ord)-.1 E F0(.)A F1(unix\255w)108 568.8 Q -(ord\255rubout \(C\255w\))-.1 E F0 .365(Kill the w)144 580.8 R .365 -(ord behind point, using white space as a w)-.1 F .364(ord boundary)-.1 -F 5.364(.T)-.65 G .364(he killed te)-5.364 F .364(xt is sa)-.15 F -.15 -(ve)-.2 G 2.864(do).15 G 2.864(nt)-2.864 G(he)-2.864 E(kill-ring.)144 -592.8 Q F1(unix\255\214lename\255rubout)108 604.8 Q F0 .166(Kill the w) -144 616.8 R .166 -(ord behind point, using white space and the slash character as the w) --.1 F .167(ord boundaries.)-.1 F(The)5.167 E(killed te)144 628.8 Q -(xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt)-2.5 G(he kill-ring.) --2.5 E F1(delete\255horizontal\255space \(M\255\\\))108 640.8 Q F0 -(Delete all spaces and tabs around point.)144 652.8 Q F1(kill\255r)108 -664.8 Q(egion)-.18 E F0(Kill the te)144 676.8 Q(xt in the current re) --.15 E(gion.)-.15 E F1(copy\255r)108 688.8 Q(egion\255as\255kill)-.18 E -F0(Cop)144 700.8 Q 2.5(yt)-.1 G(he te)-2.5 E(xt in the re)-.15 E -(gion to the kill b)-.15 E(uf)-.2 E(fer)-.25 E(.)-.55 E(GNU Bash 5.2)72 -768 Q(2022 March 11)144.29 E(51)193.45 E 0 Cg EP +(orward\255w)-.25 E(ord)-.1 E F0(.)A(GNU Bash 5.2)72 768 Q(2022 June 3) +150.675 E(51)199.835 E 0 Cg EP %%Page: 52 52 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(copy\255backward\255w)108 84 Q(ord)-.1 E F0(Cop)144 96 Q 4.801(yt)-.1 +SF(shell\255backward\255kill\255w)108 84 Q(ord)-.1 E F0 3.025 +(Kill the w)144 96 R 3.025(ord behind point.)-.1 F -.8(Wo)8.025 G 3.025 +(rd boundaries are the same as those used by).8 F F1(shell\255back-) +5.525 E(ward\255w)144 108 Q(ord)-.1 E F0(.)A F1(unix\255w)108 120 Q +(ord\255rubout \(C\255w\))-.1 E F0 .365(Kill the w)144 132 R .365 +(ord behind point, using white space as a w)-.1 F .364(ord boundary)-.1 +F 5.364(.T)-.65 G .364(he killed te)-5.364 F .364(xt is sa)-.15 F -.15 +(ve)-.2 G 2.864(do).15 G 2.864(nt)-2.864 G(he)-2.864 E(kill-ring.)144 +144 Q F1(unix\255\214lename\255rubout)108 156 Q F0 .166(Kill the w)144 +168 R .166 +(ord behind point, using white space and the slash character as the w) +-.1 F .167(ord boundaries.)-.1 F(The)5.167 E(killed te)144 180 Q +(xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt)-2.5 G(he kill-ring.) +-2.5 E F1(delete\255horizontal\255space \(M\255\\\))108 192 Q F0 +(Delete all spaces and tabs around point.)144 204 Q F1(kill\255r)108 216 +Q(egion)-.18 E F0(Kill the te)144 228 Q(xt in the current re)-.15 E +(gion.)-.15 E F1(copy\255r)108 240 Q(egion\255as\255kill)-.18 E F0(Cop) +144 252 Q 2.5(yt)-.1 G(he te)-2.5 E(xt in the re)-.15 E +(gion to the kill b)-.15 E(uf)-.2 E(fer)-.25 E(.)-.55 E F1 +(copy\255backward\255w)108 264 Q(ord)-.1 E F0(Cop)144 276 Q 4.801(yt)-.1 G 2.301(he w)-4.801 F 2.301(ord before point to the kill b)-.1 F(uf)-.2 E(fer)-.25 E 7.301(.T)-.55 G 2.301(he w)-7.301 F 2.3 -(ord boundaries are the same as)-.1 F F1(back-)4.8 E(ward\255w)144 108 Q -(ord)-.1 E F0(.)A F1(copy\255f)108 120 Q(orward\255w)-.25 E(ord)-.1 E F0 -(Cop)144 132 Q 4.507(yt)-.1 G 2.007(he w)-4.507 F 2.007(ord follo)-.1 F +(ord boundaries are the same as)-.1 F F1(back-)4.8 E(ward\255w)144 288 Q +(ord)-.1 E F0(.)A F1(copy\255f)108 300 Q(orward\255w)-.25 E(ord)-.1 E F0 +(Cop)144 312 Q 4.507(yt)-.1 G 2.007(he w)-4.507 F 2.007(ord follo)-.1 F 2.007(wing point to the kill b)-.25 F(uf)-.2 E(fer)-.25 E 7.008(.T)-.55 G 2.008(he w)-7.008 F 2.008(ord boundaries are the same as)-.1 F F1 -.25 -(fo)4.508 G -.37(r-).25 G(ward\255w)144 144 Q(ord)-.1 E F0(.)A F1 -(yank \(C\255y\))108 156 Q F0 -1(Ya)144 168 S +(fo)4.508 G -.37(r-).25 G(ward\255w)144 324 Q(ord)-.1 E F0(.)A F1 +(yank \(C\255y\))108 336 Q F0 -1(Ya)144 348 S (nk the top of the kill ring into the b)1 E(uf)-.2 E(fer at point.)-.25 -E F1(yank\255pop \(M\255y\))108 180 Q F0 -(Rotate the kill ring, and yank the ne)144 192 Q 2.5(wt)-.25 G 2.5 +E F1(yank\255pop \(M\255y\))108 360 Q F0 +(Rotate the kill ring, and yank the ne)144 372 Q 2.5(wt)-.25 G 2.5 (op. Only)-2.5 F -.1(wo)2.5 G(rks follo).1 E(wing)-.25 E F1(yank)2.5 E -F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 208.8 Q -(guments)-.1 E(digit\255ar)108 220.8 Q +F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 388.8 Q +(guments)-.1 E(digit\255ar)108 400.8 Q (gument \(M\2550, M\2551, ..., M\255\255\))-.1 E F0 .367 -(Add this digit to the ar)144 232.8 R .367 +(Add this digit to the ar)144 412.8 R .367 (gument already accumulating, or start a ne)-.18 F 2.867(wa)-.25 G -.18 (rg)-2.867 G 2.867(ument. M\255\255).18 F .366(starts a ne)2.867 F -.05 -(ga)-.15 G(-).05 E(ti)144 244.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G -(ument.).18 E F1(uni)108 256.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 -E F0 .778(This is another w)144 268.8 R .779(ay to specify an ar)-.1 F +(ga)-.15 G(-).05 E(ti)144 424.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G +(ument.).18 E F1(uni)108 436.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 +E F0 .778(This is another w)144 448.8 R .779(ay to specify an ar)-.1 F 3.279(gument. If)-.18 F .779(this command is follo)3.279 F .779 (wed by one or more digits,)-.25 F 1.376 (optionally with a leading minus sign, those digits de\214ne the ar)144 -280.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144 -292.8 Q 1.17(wed by digits, e)-.25 F -.15(xe)-.15 G(cuting).15 E F1(uni) +460.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144 +472.8 Q 1.17(wed by digits, e)-.25 F -.15(xe)-.15 G(cuting).15 E F1(uni) 3.67 E -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0(ag)3.67 E 1.17 (ain ends the numeric ar)-.05 F 1.17(gument, b)-.18 F 1.17(ut is other) --.2 F(-)-.2 E .899(wise ignored.)144 304.8 R .898 +-.2 F(-)-.2 E .899(wise ignored.)144 484.8 R .898 (As a special case, if this command is immediately follo)5.899 F .898 (wed by a character that is)-.25 F 1.23 -(neither a digit nor minus sign, the ar)144 316.8 R 1.23 +(neither a digit nor minus sign, the ar)144 496.8 R 1.23 (gument count for the ne)-.18 F 1.23(xt command is multiplied by four) --.15 F(.)-.55 E .823(The ar)144 328.8 R .823 +-.15 F(.)-.55 E .823(The ar)144 508.8 R .823 (gument count is initially one, so e)-.18 F -.15(xe)-.15 G .823 (cuting this function the \214rst time mak).15 F .822(es the ar)-.1 F -(gument)-.18 E(count four)144 340.8 Q 2.5(,as)-.4 G(econd time mak)-2.5 +(gument)-.18 E(count four)144 520.8 Q 2.5(,as)-.4 G(econd time mak)-2.5 E(es the ar)-.1 E(gument count sixteen, and so on.)-.18 E F1(Completing) -87 357.6 Q(complete \(T)108 369.6 Q(AB\))-.9 E F0 1.137 -(Attempt to perform completion on the te)144 381.6 R 1.137 +87 537.6 Q(complete \(T)108 549.6 Q(AB\))-.9 E F0 1.137 +(Attempt to perform completion on the te)144 561.6 R 1.137 (xt before point.)-.15 F F1(Bash)6.137 E F0 1.137 -(attempts completion treating the)3.637 F(te)144 393.6 Q .533(xt as a v) +(attempts completion treating the)3.637 F(te)144 573.6 Q .533(xt as a v) -.15 F .533(ariable \(if the te)-.25 F .533(xt be)-.15 F .533(gins with) -.15 F F1($)3.033 E F0 .533(\), username \(if the te)B .532(xt be)-.15 F .532(gins with)-.15 F F1(~)3.032 E F0 .532(\), hostname \(if the)B(te) -144 405.6 Q .701(xt be)-.15 F .701(gins with)-.15 F F1(@)3.201 E F0 .701 +144 585.6 Q .701(xt be)-.15 F .701(gins with)-.15 F F1(@)3.201 E F0 .701 (\), or command \(including aliases and functions\) in turn.)B .702 (If none of these pro-)5.701 F -(duces a match, \214lename completion is attempted.)144 417.6 Q F1 -(possible\255completions \(M\255?\))108 429.6 Q F0 -(List the possible completions of the te)144 441.6 Q(xt before point.) --.15 E F1(insert\255completions \(M\255*\))108 453.6 Q F0 .783 -(Insert all completions of the te)144 465.6 R .783 +(duces a match, \214lename completion is attempted.)144 597.6 Q F1 +(possible\255completions \(M\255?\))108 609.6 Q F0 +(List the possible completions of the te)144 621.6 Q(xt before point.) +-.15 E F1(insert\255completions \(M\255*\))108 633.6 Q F0 .783 +(Insert all completions of the te)144 645.6 R .783 (xt before point that w)-.15 F .783(ould ha)-.1 F 1.083 -.15(ve b)-.2 H .783(een generated by).15 F F1(possible\255com-)3.282 E(pletions)144 -477.6 Q F0(.)A F1(menu\255complete)108 489.6 Q F0 .928(Similar to)144 -501.6 R F1(complete)3.428 E F0 3.428(,b)C .929(ut replaces the w)-3.628 +657.6 Q F0(.)A F1(menu\255complete)108 669.6 Q F0 .928(Similar to)144 +681.6 R F1(complete)3.428 E F0 3.428(,b)C .929(ut replaces the w)-3.628 F .929(ord to be completed with a single match from the list of)-.1 F -1.194(possible completions.)144 513.6 R 1.194(Repeated e)6.194 F -.15 +1.194(possible completions.)144 693.6 R 1.194(Repeated e)6.194 F -.15 (xe)-.15 G 1.194(cution of).15 F F1(menu\255complete)3.694 E F0 1.193 (steps through the list of possible)3.694 F .828 -(completions, inserting each match in turn.)144 525.6 R .828 +(completions, inserting each match in turn.)144 705.6 R .828 (At the end of the list of completions, the bell is rung)5.828 F .727 -(\(subject to the setting of)144 537.6 R F1(bell\255style)3.227 E F0 +(\(subject to the setting of)144 717.6 R F1(bell\255style)3.227 E F0 3.227(\)a)C .727(nd the original te)-3.227 F .727(xt is restored.)-.15 F .727(An ar)5.727 F .727(gument of)-.18 F/F2 10/Times-Italic@0 SF(n)3.227 E F0(mo)3.227 E -.15(ve)-.15 G(s).15 E F2(n)3.227 E F0 1.73 -(positions forw)144 549.6 R 1.73(ard in the list of matches; a ne)-.1 F +(positions forw)144 729.6 R 1.73(ard in the list of matches; a ne)-.1 F -.05(ga)-.15 G(ti).05 E 2.03 -.15(ve a)-.25 H -.18(rg).15 G 1.73 (ument may be used to mo).18 F 2.03 -.15(ve b)-.15 H(ackw).15 E(ard)-.1 -E(through the list.)144 561.6 Q(This command is intended to be bound to) -5 E F1 -.9(TA)2.5 G(B).9 E F0 2.5(,b)C(ut is unbound by def)-2.7 E -(ault.)-.1 E F1(menu\255complete\255backward)108 573.6 Q F0 .82 -(Identical to)144 585.6 R F1(menu\255complete)3.32 E F0 3.32(,b)C .82 -(ut mo)-3.52 F -.15(ve)-.15 G 3.32(sb).15 G(ackw)-3.32 E .82 -(ard through the list of possible completions, as if)-.1 F F1 -(menu\255complete)144 597.6 Q F0(had been gi)2.5 E -.15(ve)-.25 G 2.5 -(nan).15 G -2.25 -.15(eg a)-2.5 H(ti).15 E .3 -.15(ve a)-.25 H -.18(rg) -.15 G 2.5(ument. This).18 F(command is unbound by def)2.5 E(ault.)-.1 E -F1(delete\255char\255or\255list)108 609.6 Q F0 .234 -(Deletes the character under the cursor if not at the be)144 621.6 R -.234(ginning or end of the line \(lik)-.15 F(e)-.1 E F1(delete\255char) -2.735 E F0(\).)A .425(If at the end of the line, beha)144 633.6 R -.15 -(ve)-.2 G 2.925(si).15 G .425(dentically to)-2.925 F F1 -(possible\255completions)2.925 E F0 5.425(.T)C .425 -(his command is unbound)-5.425 F(by def)144 645.6 Q(ault.)-.1 E F1 -(complete\255\214lename \(M\255/\))108 657.6 Q F0 -(Attempt \214lename completion on the te)144 669.6 Q(xt before point.) --.15 E F1(possible\255\214lename\255completions \(C\255x /\))108 681.6 Q -F0(List the possible completions of the te)144 693.6 Q -(xt before point, treating it as a \214lename.)-.15 E F1 -(complete\255user)108 705.6 Q(name \(M\255~\))-.15 E F0 -(Attempt completion on the te)144 717.6 Q -(xt before point, treating it as a username.)-.15 E(GNU Bash 5.2)72 768 -Q(2022 March 11)144.29 E(52)193.45 E 0 Cg EP +E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(52)199.835 E 0 Cg EP %%Page: 53 53 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(possible\255user)108 84 Q(name\255completions \(C\255x ~\))-.15 E F0 -(List the possible completions of the te)144 96 Q +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(through the list.) +144 84 Q(This command is intended to be bound to)5 E/F1 10/Times-Bold@0 +SF -.9(TA)2.5 G(B).9 E F0 2.5(,b)C(ut is unbound by def)-2.7 E(ault.)-.1 +E F1(menu\255complete\255backward)108 96 Q F0 .82(Identical to)144 108 R +F1(menu\255complete)3.32 E F0 3.32(,b)C .82(ut mo)-3.52 F -.15(ve)-.15 G +3.32(sb).15 G(ackw)-3.32 E .82 +(ard through the list of possible completions, as if)-.1 F F1 +(menu\255complete)144 120 Q F0(had been gi)2.5 E -.15(ve)-.25 G 2.5(nan) +.15 G -2.25 -.15(eg a)-2.5 H(ti).15 E .3 -.15(ve a)-.25 H -.18(rg).15 G +2.5(ument. This).18 F(command is unbound by def)2.5 E(ault.)-.1 E F1 +(delete\255char\255or\255list)108 132 Q F0 .234 +(Deletes the character under the cursor if not at the be)144 144 R .234 +(ginning or end of the line \(lik)-.15 F(e)-.1 E F1(delete\255char)2.735 +E F0(\).)A .425(If at the end of the line, beha)144 156 R -.15(ve)-.2 G +2.925(si).15 G .425(dentically to)-2.925 F F1(possible\255completions) +2.925 E F0 5.425(.T)C .425(his command is unbound)-5.425 F(by def)144 +168 Q(ault.)-.1 E F1(complete\255\214lename \(M\255/\))108 180 Q F0 +(Attempt \214lename completion on the te)144 192 Q(xt before point.)-.15 +E F1(possible\255\214lename\255completions \(C\255x /\))108 204 Q F0 +(List the possible completions of the te)144 216 Q +(xt before point, treating it as a \214lename.)-.15 E F1 +(complete\255user)108 228 Q(name \(M\255~\))-.15 E F0 +(Attempt completion on the te)144 240 Q +(xt before point, treating it as a username.)-.15 E F1(possible\255user) +108 252 Q(name\255completions \(C\255x ~\))-.15 E F0 +(List the possible completions of the te)144 264 Q (xt before point, treating it as a username.)-.15 E F1(complete\255v)108 -108 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 120 Q +276 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 288 Q (xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E F1 -(possible\255v)108 132 Q(ariable\255completions \(C\255x $\))-.1 E F0 -(List the possible completions of the te)144 144 Q +(possible\255v)108 300 Q(ariable\255completions \(C\255x $\))-.1 E F0 +(List the possible completions of the te)144 312 Q (xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E F1 -(complete\255hostname \(M\255@\))108 156 Q F0 -(Attempt completion on the te)144 168 Q +(complete\255hostname \(M\255@\))108 324 Q F0 +(Attempt completion on the te)144 336 Q (xt before point, treating it as a hostname.)-.15 E F1 -(possible\255hostname\255completions \(C\255x @\))108 180 Q F0 -(List the possible completions of the te)144 192 Q +(possible\255hostname\255completions \(C\255x @\))108 348 Q F0 +(List the possible completions of the te)144 360 Q (xt before point, treating it as a hostname.)-.15 E F1 -(complete\255command \(M\255!\))108 204 Q F0 .58 -(Attempt completion on the te)144 216 R .581 +(complete\255command \(M\255!\))108 372 Q F0 .58 +(Attempt completion on the te)144 384 R .581 (xt before point, treating it as a command name.)-.15 F .581 -(Command comple-)5.581 F .715(tion attempts to match the te)144 228 R +(Command comple-)5.581 F .715(tion attempts to match the te)144 396 R .715(xt ag)-.15 F .715(ainst aliases, reserv)-.05 F .715(ed w)-.15 F .715(ords, shell functions, shell b)-.1 F .715(uiltins, and)-.2 F -(\214nally e)144 240 Q -.15(xe)-.15 G +(\214nally e)144 408 Q -.15(xe)-.15 G (cutable \214lenames, in that order).15 E(.)-.55 E F1 -(possible\255command\255completions \(C\255x !\))108 252 Q F0 -(List the possible completions of the te)144 264 Q +(possible\255command\255completions \(C\255x !\))108 420 Q F0 +(List the possible completions of the te)144 432 Q (xt before point, treating it as a command name.)-.15 E F1 -(dynamic\255complete\255history \(M\255T)108 276 Q(AB\))-.9 E F0 .424 -(Attempt completion on the te)144 288 R .425 +(dynamic\255complete\255history \(M\255T)108 444 Q(AB\))-.9 E F0 .424 +(Attempt completion on the te)144 456 R .425 (xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .425 (ainst lines from the history list)-.05 F -(for possible completion matches.)144 300 Q F1(dab)108 312 Q(br)-.1 E +(for possible completion matches.)144 468 Q F1(dab)108 480 Q(br)-.1 E -.15(ev)-.18 G(\255expand).15 E F0 .611 -(Attempt menu completion on the te)144 324 R .611 +(Attempt menu completion on the te)144 492 R .611 (xt before point, comparing the te)-.15 F .61(xt ag)-.15 F .61 (ainst lines from the his-)-.05 F -(tory list for possible completion matches.)144 336 Q F1 -(complete\255into\255braces \(M\255{\))108 348 Q F0 .4(Perform \214lena\ +(tory list for possible completion matches.)144 504 Q F1 +(complete\255into\255braces \(M\255{\))108 516 Q F0 .4(Perform \214lena\ me completion and insert the list of possible completions enclosed with\ -in braces so)144 360 R(the list is a)144 372 Q -.25(va)-.2 G +in braces so)144 528 R(the list is a)144 540 Q -.25(va)-.2 G (ilable to the shell \(see).25 E F1(Brace Expansion)2.5 E F0(abo)2.5 E --.15(ve)-.15 G(\).).15 E F1 -.25(Ke)87 388.8 S(yboard Macr).25 E(os)-.18 -E(start\255kbd\255macr)108 400.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) -.833 E F0(Be)144 412.8 Q(gin sa)-.15 E +-.15(ve)-.15 G(\).).15 E F1 -.25(Ke)87 556.8 S(yboard Macr).25 E(os)-.18 +E(start\255kbd\255macr)108 568.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) +.833 E F0(Be)144 580.8 Q(gin sa)-.15 E (ving the characters typed into the current k)-.2 E -.15(ey)-.1 G -(board macro.).15 E F1(end\255kbd\255macr)108 424.8 Q 2.5(o\()-.18 G -(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 436.8 Q +(board macro.).15 E F1(end\255kbd\255macr)108 592.8 Q 2.5(o\()-.18 G +(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 604.8 Q (ving the characters typed into the current k)-.2 E -.15(ey)-.1 G (board macro and store the de\214nition.).15 E F1 -(call\255last\255kbd\255macr)108 448.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5 -E F0(Re-e)144 460.8 Q -.15(xe)-.15 G 1(cute the last k).15 F -.15(ey)-.1 +(call\255last\255kbd\255macr)108 616.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5 +E F0(Re-e)144 628.8 Q -.15(xe)-.15 G 1(cute the last k).15 F -.15(ey)-.1 G .999(board macro de\214ned, by making the characters in the macro app\ -ear as if).15 F(typed at the k)144 472.8 Q -.15(ey)-.1 G(board.).15 E F1 -(print\255last\255kbd\255macr)108 484.8 Q 2.5(o\()-.18 G(\))-2.5 E F0 -(Print the last k)144 496.8 Q -.15(ey)-.1 G +ear as if).15 F(typed at the k)144 640.8 Q -.15(ey)-.1 G(board.).15 E F1 +(print\255last\255kbd\255macr)108 652.8 Q 2.5(o\()-.18 G(\))-2.5 E F0 +(Print the last k)144 664.8 Q -.15(ey)-.1 G (board macro de\214ned in a format suitable for the).15 E/F2 10 /Times-Italic@0 SF(inputr)2.5 E(c)-.37 E F0(\214le.)2.5 E F1 -(Miscellaneous)87 513.6 Q -.18(re)108 525.6 S.18 E +(Miscellaneous)87 681.6 Q -.18(re)108 693.6 S.18 E (ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.776 -(Read in the contents of the)144 537.6 R F2(inputr)4.276 E(c)-.37 E F0 +(Read in the contents of the)144 705.6 R F2(inputr)4.276 E(c)-.37 E F0 1.777(\214le, and incorporate an)4.276 F 4.277(yb)-.15 G 1.777 (indings or v)-4.277 F 1.777(ariable assignments)-.25 F(found there.)144 -549.6 Q F1(abort \(C\255g\))108 561.6 Q F0 3.249 -(Abort the current editing command and ring the terminal')144 573.6 R -5.748(sb)-.55 G 3.248(ell \(subject to the setting of)-5.748 F F1 -(bell\255style)144 585.6 Q F0(\).)A F1(do\255lo)108 597.6 Q(wer)-.1 E -(case\255v)-.18 E(ersion \(M\255A, M\255B, M\255)-.1 E F2(x)A F1 2.5(,.) -C(..\))-2.5 E F0 1.738(If the meta\214ed character)144 609.6 R F2(x) -4.238 E F0 1.739 -(is uppercase, run the command that is bound to the corresponding)4.238 -F(meta\214ed lo)144 621.6 Q(wercase character)-.25 E 5(.T)-.55 G -(he beha)-5 E(vior is unde\214ned if)-.2 E F2(x)2.5 E F0(is already lo) -2.5 E(wercase.)-.25 E F1(pr)108 633.6 Q(e\214x\255meta \(ESC\))-.18 E F0 -(Metafy the ne)144 645.6 Q(xt character typed.)-.15 E/F3 9/Times-Bold@0 -SF(ESC)5 E F1(f)2.25 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F1 -(Meta\255f)2.5 E F0(.)A F1(undo \(C\255_, C\255x C\255u\))108 657.6 Q F0 -(Incremental undo, separately remembered for each line.)144 669.6 Q F1 --2.29 -.18(re v)108 681.6 T(ert\255line \(M\255r\)).08 E F0 .231 -(Undo all changes made to this line.)144 693.6 R .231(This is lik)5.231 -F 2.731(ee)-.1 G -.15(xe)-2.881 G .23(cuting the).15 F F1(undo)2.73 E F0 -.23(command enough times to re-)2.73 F -(turn the line to its initial state.)144 705.6 Q(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(53)193.45 E 0 Cg EP +717.6 Q(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(53)199.835 E 0 Cg EP %%Page: 54 54 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(tilde\255expand \(M\255&\))108 84 Q F0(Perform tilde e)144 96 Q +SF(abort \(C\255g\))108 84 Q F0 3.249 +(Abort the current editing command and ring the terminal')144 96 R 5.748 +(sb)-.55 G 3.248(ell \(subject to the setting of)-5.748 F F1 +(bell\255style)144 108 Q F0(\).)A F1(do\255lo)108 120 Q(wer)-.1 E +(case\255v)-.18 E(ersion \(M\255A, M\255B, M\255)-.1 E/F2 10 +/Times-Italic@0 SF(x)A F1 2.5(,.)C(..\))-2.5 E F0 1.738 +(If the meta\214ed character)144 132 R F2(x)4.238 E F0 1.739 +(is uppercase, run the command that is bound to the corresponding)4.238 +F(meta\214ed lo)144 144 Q(wercase character)-.25 E 5(.T)-.55 G(he beha) +-5 E(vior is unde\214ned if)-.2 E F2(x)2.5 E F0(is already lo)2.5 E +(wercase.)-.25 E F1(pr)108 156 Q(e\214x\255meta \(ESC\))-.18 E F0 +(Metafy the ne)144 168 Q(xt character typed.)-.15 E/F3 9/Times-Bold@0 SF +(ESC)5 E F1(f)2.25 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F1 +(Meta\255f)2.5 E F0(.)A F1(undo \(C\255_, C\255x C\255u\))108 180 Q F0 +(Incremental undo, separately remembered for each line.)144 192 Q F1 +-2.29 -.18(re v)108 204 T(ert\255line \(M\255r\)).08 E F0 .231 +(Undo all changes made to this line.)144 216 R .231(This is lik)5.231 F +2.731(ee)-.1 G -.15(xe)-2.881 G .23(cuting the).15 F F1(undo)2.73 E F0 +.23(command enough times to re-)2.73 F +(turn the line to its initial state.)144 228 Q F1 +(tilde\255expand \(M\255&\))108 240 Q F0(Perform tilde e)144 252 Q (xpansion on the current w)-.15 E(ord.)-.1 E F1 -(set\255mark \(C\255@, M\255\))108 108 Q F0 -(Set the mark to the point.)144 120 Q(If a numeric ar)5 E +(set\255mark \(C\255@, M\255\))108 264 Q F0 +(Set the mark to the point.)144 276 Q(If a numeric ar)5 E (gument is supplied, the mark is set to that position.)-.18 E F1 -(exchange\255point\255and\255mark \(C\255x C\255x\))108 132 Q F0(Sw)144 -144 Q .282(ap the point with the mark.)-.1 F .283 +(exchange\255point\255and\255mark \(C\255x C\255x\))108 288 Q F0(Sw)144 +300 Q .282(ap the point with the mark.)-.1 F .283 (The current cursor position is set to the sa)5.283 F -.15(ve)-.2 G 2.783(dp).15 G .283(osition, and the old)-2.783 F(cursor position is sa) -144 156 Q -.15(ve)-.2 G 2.5(da).15 G 2.5(st)-2.5 G(he mark.)-2.5 E F1 -(character\255sear)108 168 Q(ch \(C\255]\))-.18 E F0 3.036(Ac)144 180 S +144 312 Q -.15(ve)-.2 G 2.5(da).15 G 2.5(st)-2.5 G(he mark.)-2.5 E F1 +(character\255sear)108 324 Q(ch \(C\255]\))-.18 E F0 3.036(Ac)144 336 S .536(haracter is read and point is mo)-3.036 F -.15(ve)-.15 G 3.035(dt) .15 G 3.035(ot)-3.035 G .535(he ne)-3.035 F .535 (xt occurrence of that character)-.15 F 5.535(.A)-.55 G(ne)-2.5 E -.05 (ga)-.15 G(ti).05 E .835 -.15(ve c)-.25 H(ount).15 E(searches for pre) -144 192 Q(vious occurrences.)-.25 E F1(character\255sear)108 204 Q -(ch\255backward \(M\255C\255]\))-.18 E F0 3.543(Ac)144 216 S 1.043 +144 348 Q(vious occurrences.)-.25 E F1(character\255sear)108 360 Q +(ch\255backward \(M\255C\255]\))-.18 E F0 3.543(Ac)144 372 S 1.043 (haracter is read and point is mo)-3.543 F -.15(ve)-.15 G 3.544(dt).15 G 3.544(ot)-3.544 G 1.044(he pre)-3.544 F 1.044 (vious occurrence of that character)-.25 F 6.044(.A)-.55 G(ne)-2.5 E -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G -(count searches for subsequent occurrences.)144 228 Q F1 -(skip\255csi\255sequence)108 240 Q F0 1.827 -(Read enough characters to consume a multi-k)144 252 R 2.126 -.15(ey s) +(count searches for subsequent occurrences.)144 384 Q F1 +(skip\255csi\255sequence)108 396 Q F0 1.827 +(Read enough characters to consume a multi-k)144 408 R 2.126 -.15(ey s) -.1 H 1.826(equence such as those de\214ned for k).15 F -.15(ey)-.1 G -4.326(sl).15 G(ik)-4.326 E(e)-.1 E .79(Home and End.)144 264 R .791 +4.326(sl).15 G(ik)-4.326 E(e)-.1 E .79(Home and End.)144 420 R .791 (Such sequences be)5.79 F .791 (gin with a Control Sequence Indicator \(CSI\), usually ESC\255[.)-.15 F -.332(If this sequence is bound to "\\[", k)144 276 R -.15(ey)-.1 G 2.831 +.332(If this sequence is bound to "\\[", k)144 432 R -.15(ey)-.1 G 2.831 (sp).15 G .331(roducing such sequences will ha)-2.831 F .631 -.15(ve n) -.2 H 2.831(oe).15 G -.25(ff)-2.831 G .331(ect unless e).25 F(xplic-) -.15 E .026(itly bound to a readline command, instead of inserting stra\ -y characters into the editing b)144 288 R(uf)-.2 E(fer)-.25 E 5.026(.T) --.55 G(his)-5.026 E(is unbound by def)144 300 Q(ault, b)-.1 E +y characters into the editing b)144 444 R(uf)-.2 E(fer)-.25 E 5.026(.T) +-.55 G(his)-5.026 E(is unbound by def)144 456 Q(ault, b)-.1 E (ut usually bound to ESC\255[.)-.2 E F1(insert\255comment \(M\255#\))108 -312 Q F0 -.4(Wi)144 324 S .481(thout a numeric ar).4 F .481 +468 Q F0 -.4(Wi)144 480 S .481(thout a numeric ar).4 F .481 (gument, the v)-.18 F .481(alue of the readline)-.25 F F1 (comment\255begin)2.981 E F0 -.25(va)2.981 G .48 -(riable is inserted at the).25 F(be)144 336 Q .244 +(riable is inserted at the).25 F(be)144 492 Q .244 (ginning of the current line.)-.15 F .245(If a numeric ar)5.244 F .245 (gument is supplied, this command acts as a toggle: if)-.18 F .322 -(the characters at the be)144 348 R .321 +(the characters at the be)144 504 R .321 (ginning of the line do not match the v)-.15 F .321(alue of)-.25 F F1 (comment\255begin)2.821 E F0 2.821(,t)C .321(he v)-2.821 F .321(alue is) --.25 F .831(inserted, otherwise the characters in)144 360 R F1 +-.25 F .831(inserted, otherwise the characters in)144 516 R F1 (comment\255begin)3.331 E F0 .832(are deleted from the be)3.331 F .832 (ginning of the line.)-.15 F 1.469 -(In either case, the line is accepted as if a ne)144 372 R 1.468 +(In either case, the line is accepted as if a ne)144 528 R 1.468 (wline had been typed.)-.25 F 1.468(The def)6.468 F 1.468(ault v)-.1 F -1.468(alue of)-.25 F F1(com-)3.968 E(ment\255begin)144 384 Q F0 .839 +1.468(alue of)-.25 F F1(com-)3.968 E(ment\255begin)144 540 Q F0 .839 (causes this command to mak)3.339 F 3.339(et)-.1 G .839 (he current line a shell comment.)-3.339 F .84(If a numeric ar)5.84 F -(gu-)-.18 E(ment causes the comment character to be remo)144 396 Q -.15 +(gu-)-.18 E(ment causes the comment character to be remo)144 552 Q -.15 (ve)-.15 G(d, the line will be e).15 E -.15(xe)-.15 G -(cuted by the shell.).15 E F1(spell\255corr)108 408 Q(ect\255w)-.18 E +(cuted by the shell.).15 E F1(spell\255corr)108 564 Q(ect\255w)-.18 E (ord \(C\255x s\))-.1 E F0 .421 -(Perform spelling correction on the current w)144 420 R .42 +(Perform spelling correction on the current w)144 576 R .42 (ord, treating it as a directory or \214lename, in the same)-.1 F -.1 -(wa)144 432 S 4.717(ya).1 G 4.717(st)-4.717 G(he)-4.717 E F1(cdspell) +(wa)144 588 S 4.717(ya).1 G 4.717(st)-4.717 G(he)-4.717 E F1(cdspell) 4.717 E F0 2.217(shell option.)4.717 F -.8(Wo)7.217 G 2.217 (rd boundaries are the same as those used by).8 F F1(shell\255f)4.718 E -(or)-.25 E(-)-.37 E(ward\255w)144 444 Q(ord)-.1 E F0(.)A F1 -(glob\255complete\255w)108 456 Q(ord \(M\255g\))-.1 E F0 .792(The w)144 -468 R .791(ord before point is treated as a pattern for pathname e)-.1 F +(or)-.25 E(-)-.37 E(ward\255w)144 600 Q(ord)-.1 E F0(.)A F1 +(glob\255complete\255w)108 612 Q(ord \(M\255g\))-.1 E F0 .792(The w)144 +624 R .791(ord before point is treated as a pattern for pathname e)-.1 F .791(xpansion, with an asterisk implicitly)-.15 F 2.5(appended. This)144 -480 R(pattern is used to generate a list of matching \214lenames for po\ -ssible completions.)2.5 E F1(glob\255expand\255w)108 492 Q -(ord \(C\255x *\))-.1 E F0 .175(The w)144 504 R .176 +636 R(pattern is used to generate a list of matching \214lenames for po\ +ssible completions.)2.5 E F1(glob\255expand\255w)108 648 Q +(ord \(C\255x *\))-.1 E F0 .175(The w)144 660 R .176 (ord before point is treated as a pattern for pathname e)-.1 F .176 (xpansion, and the list of matching \214le-)-.15 F .516 -(names is inserted, replacing the w)144 516 R 3.016(ord. If)-.1 F 3.016 +(names is inserted, replacing the w)144 672 R 3.016(ord. If)-.1 F 3.016 (an)3.016 G .516(umeric ar)-3.016 F .516 (gument is supplied, an asterisk is appended)-.18 F(before pathname e) -144 528 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\)) -108 540 Q F0 .923(The list of e)144 552 R .923(xpansions that w)-.15 F +144 684 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\)) +108 696 Q F0 .923(The list of e)144 708 R .923(xpansions that w)-.15 F .923(ould ha)-.1 F 1.223 -.15(ve b)-.2 H .923(een generated by).15 F F1 (glob\255expand\255w)3.423 E(ord)-.1 E F0 .923(is displayed, and)3.423 F -.872(the line is redra)144 564 R 3.372(wn. If)-.15 F 3.372(an)3.372 G +.872(the line is redra)144 720 R 3.372(wn. If)-.15 F 3.372(an)3.372 G .872(umeric ar)-3.372 F .872 -(gument is supplied, an asterisk is appended before pathname)-.18 F -.15 -(ex)144 576 S(pansion.).15 E F1(dump\255functions)108 588 Q F0 .626 -(Print all of the functions and their k)144 600 R .926 -.15(ey b)-.1 H -.627(indings to the readline output stream.).15 F .627(If a numeric ar) -5.627 F(gu-)-.18 E -(ment is supplied, the output is formatted in such a w)144 612 Q -(ay that it can be made part of an)-.1 E/F2 10/Times-Italic@0 SF(inputr) -2.5 E(c)-.37 E F0(\214le.)2.5 E F1(dump\255v)108 624 Q(ariables)-.1 E F0 -.763(Print all of the settable readline v)144 636 R .762 -(ariables and their v)-.25 F .762(alues to the readline output stream.) --.25 F .762(If a nu-)5.762 F .108(meric ar)144 648 R .108 -(gument is supplied, the output is formatted in such a w)-.18 F .109 -(ay that it can be made part of an)-.1 F F2(in-)2.609 E(putr)144 660 Q -(c)-.37 E F0(\214le.)2.5 E F1(dump\255macr)108 672 Q(os)-.18 E F0 .593 -(Print all of the readline k)144 684 R .893 -.15(ey s)-.1 H .592 -(equences bound to macros and the strings the).15 F 3.092(yo)-.15 G -3.092(utput. If)-3.092 F 3.092(an)3.092 G(umeric)-3.092 E(ar)144 696 Q -.528(gument is supplied, the output is formatted in such a w)-.18 F .528 -(ay that it can be made part of an)-.1 F F2(inputr)3.028 E(c)-.37 E F0 -(\214le.)144 708 Q(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(54) -193.45 E 0 Cg EP +(gument is supplied, an asterisk is appended before pathname)-.18 F +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(54)199.835 E 0 Cg EP %%Page: 55 55 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(display\255shell\255v)108 84 Q(ersion \(C\255x C\255v\))-.1 E F0 -(Display v)144 96 Q(ersion information about the current instance of) --.15 E F1(bash)2.5 E F0(.)A F1(Pr)87 112.8 Q(ogrammable Completion)-.18 -E F0 .147(When w)108 124.8 R .147(ord completion is attempted for an ar) --.1 F .147 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.15(ex)144 84 S +(pansion.).15 E/F1 10/Times-Bold@0 SF(dump\255functions)108 96 Q F0 .626 +(Print all of the functions and their k)144 108 R .926 -.15(ey b)-.1 H +.627(indings to the readline output stream.).15 F .627(If a numeric ar) +5.627 F(gu-)-.18 E +(ment is supplied, the output is formatted in such a w)144 120 Q +(ay that it can be made part of an)-.1 E/F2 10/Times-Italic@0 SF(inputr) +2.5 E(c)-.37 E F0(\214le.)2.5 E F1(dump\255v)108 132 Q(ariables)-.1 E F0 +.763(Print all of the settable readline v)144 144 R .762 +(ariables and their v)-.25 F .762(alues to the readline output stream.) +-.25 F .762(If a nu-)5.762 F .108(meric ar)144 156 R .108 +(gument is supplied, the output is formatted in such a w)-.18 F .109 +(ay that it can be made part of an)-.1 F F2(in-)2.609 E(putr)144 168 Q +(c)-.37 E F0(\214le.)2.5 E F1(dump\255macr)108 180 Q(os)-.18 E F0 .593 +(Print all of the readline k)144 192 R .893 -.15(ey s)-.1 H .592 +(equences bound to macros and the strings the).15 F 3.092(yo)-.15 G +3.092(utput. If)-3.092 F 3.092(an)3.092 G(umeric)-3.092 E(ar)144 204 Q +.528(gument is supplied, the output is formatted in such a w)-.18 F .528 +(ay that it can be made part of an)-.1 F F2(inputr)3.028 E(c)-.37 E F0 +(\214le.)144 216 Q F1(display\255shell\255v)108 228 Q +(ersion \(C\255x C\255v\))-.1 E F0(Display v)144 240 Q +(ersion information about the current instance of)-.15 E F1(bash)2.5 E +F0(.)A F1(Pr)87 256.8 Q(ogrammable Completion)-.18 E F0 .147(When w)108 +268.8 R .147(ord completion is attempted for an ar)-.1 F .147 (gument to a command for which a completion speci\214cation \(a)-.18 F -/F2 10/Times-Italic@0 SF(compspec)108 136.8 Q F0 3.828(\)h)C 1.329 +F2(compspec)108 280.8 Q F0 3.828(\)h)C 1.329 (as been de\214ned using the)-3.828 F F1(complete)3.829 E F0 -.2(bu) 3.829 G 1.329(iltin \(see).2 F/F3 9/Times-Bold@0 SF 1.329(SHELL B)3.829 F(UIL)-.09 E 1.329(TIN COMMANDS)-.828 F F0(belo)3.579 E 1.329(w\), the) --.25 F(programmable completion f)108 148.8 Q(acilities are in)-.1 E -.2 +-.25 F(programmable completion f)108 292.8 Q(acilities are in)-.1 E -.2 (vo)-.4 G -.1(ke).2 G(d.).1 E .498 -(First, the command name is identi\214ed.)108 165.6 R .498 +(First, the command name is identi\214ed.)108 309.6 R .498 (If the command w)5.498 F .497 (ord is the empty string \(completion attempted at)-.1 F .233(the be)108 -177.6 R .233(ginning of an empty line\), an)-.15 F 2.733(yc)-.15 G .233 +321.6 R .233(ginning of an empty line\), an)-.15 F 2.733(yc)-.15 G .233 (ompspec de\214ned with the)-2.733 F F12.733 E F0 .233(option to) 2.733 F F1(complete)2.733 E F0 .233(is used.)2.733 F .234(If a comp-) 5.234 F .481(spec has been de\214ned for that command, the compspec is \ -used to generate the list of possible completions)108 189.6 R .822 -(for the w)108 201.6 R 3.322(ord. If)-.1 F .822(the command w)3.322 F +used to generate the list of possible completions)108 333.6 R .822 +(for the w)108 345.6 R 3.322(ord. If)-.1 F .822(the command w)3.322 F .823(ord is a full pathname, a compspec for the full pathname is search\ -ed for)-.1 F 2.867(\214rst. If)108 213.6 R .366(no compspec is found fo\ +ed for)-.1 F 2.867(\214rst. If)108 357.6 R .366(no compspec is found fo\ r the full pathname, an attempt is made to \214nd a compspec for the po\ -rtion)2.867 F(follo)108 225.6 Q .298(wing the \214nal slash.)-.25 F .298 +rtion)2.867 F(follo)108 369.6 Q .298(wing the \214nal slash.)-.25 F .298 (If those searches do not result in a compspec, an)5.298 F 2.799(yc)-.15 G .299(ompspec de\214ned with the)-2.799 F F12.799 E F0 .057 -(option to)108 237.6 R F1(complete)2.557 E F0 .056(is used as the def) +(option to)108 381.6 R F1(complete)2.557 E F0 .056(is used as the def) 2.556 F 2.556(ault. If)-.1 F .056(there is no def)2.556 F .056 (ault compspec,)-.1 F F1(bash)2.556 E F0 .056(attempts alias e)2.556 F -.056(xpansion on)-.15 F .332(the command w)108 249.6 R .332(ord as a \ +.056(xpansion on)-.15 F .332(the command w)108 393.6 R .332(ord as a \ \214nal resort, and attempts to \214nd a compspec for the command w)-.1 F .332(ord from an)-.1 F 2.833(ys)-.15 G(uc-)-2.833 E(cessful e)108 -261.6 Q(xpansion.)-.15 E .817(Once a compspec has been found, it is use\ -d to generate the list of matching w)108 278.4 R 3.317(ords. If)-.1 F -3.317(ac)3.317 G .817(ompspec is not)-3.317 F(found, the def)108 290.4 Q +405.6 Q(xpansion.)-.15 E .817(Once a compspec has been found, it is use\ +d to generate the list of matching w)108 422.4 R 3.317(ords. If)-.1 F +3.317(ac)3.317 G .817(ompspec is not)-3.317 F(found, the def)108 434.4 Q (ault)-.1 E F1(bash)2.5 E F0(completion as described abo)2.5 E .3 -.15 (ve u)-.15 H(nder).15 E F1(Completing)2.5 E F0(is performed.)2.5 E .463 -(First, the actions speci\214ed by the compspec are used.)108 307.2 R +(First, the actions speci\214ed by the compspec are used.)108 451.2 R .464(Only matches which are pre\214x)5.464 F .464(ed by the w)-.15 F -.464(ord being)-.1 F .596(completed are returned.)108 319.2 R .596 +.464(ord being)-.1 F .596(completed are returned.)108 463.2 R .596 (When the)5.596 F F13.096 E F0(or)3.095 E F13.095 E F0 .595 (option is used for \214lename or directory name completion, the)3.095 F -(shell v)108 331.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0 -(is used to \214lter the matches.)2.25 E(An)108 348 Q 4.084(yc)-.15 G +(shell v)108 475.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0 +(is used to \214lter the matches.)2.25 E(An)108 492 Q 4.084(yc)-.15 G 1.584(ompletions speci\214ed by a pathname e)-4.084 F 1.584 (xpansion pattern to the)-.15 F F14.084 E F0 1.584 -(option are generated ne)4.084 F 4.084(xt. The)-.15 F -.1(wo)108 360 S +(option are generated ne)4.084 F 4.084(xt. The)-.15 F -.1(wo)108 504 S .555(rds generated by the pattern need not match the w).1 F .554 (ord being completed.)-.1 F(The)5.554 E F3(GLOBIGNORE)3.054 E F0 .554 (shell v)2.804 F(ari-)-.25 E -(able is not used to \214lter the matches, b)108 372 Q(ut the)-.2 E F3 -(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 388.8 Q +(able is not used to \214lter the matches, b)108 516 Q(ut the)-.2 E F3 +(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 532.8 Q .32(xt, the string speci\214ed as the ar)-.15 F .32(gument to the)-.18 F F12.82 E F0 .321(option is considered.)2.821 F .321 (The string is \214rst split using the)5.321 F .413(characters in the) -108 400.8 R F3(IFS)2.913 E F0 .412(special v)2.663 F .412 +108 544.8 R F3(IFS)2.913 E F0 .412(special v)2.663 F .412 (ariable as delimiters.)-.25 F .412(Shell quoting is honored.)5.412 F .412(Each w)5.412 F .412(ord is then e)-.1 F(xpanded)-.15 E .091 -(using brace e)108 412.8 R .091(xpansion, tilde e)-.15 F .092 +(using brace e)108 556.8 R .091(xpansion, tilde e)-.15 F .092 (xpansion, parameter and v)-.15 F .092(ariable e)-.25 F .092 (xpansion, command substitution, and arith-)-.15 F 1.397(metic e)108 -424.8 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H +568.8 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H (nder).15 E F3(EXP)3.896 E(ANSION)-.666 E/F4 9/Times-Roman@0 SF(.)A F0 1.396(The results are split using the rules described)5.896 F(abo)108 -436.8 Q .509 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)2.709 G .209 +580.8 Q .509 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)2.709 G .209 (rd Splitting).75 F F0 5.209(.T)C .209(he results of the e)-5.209 F .209 (xpansion are pre\214x-matched ag)-.15 F .21(ainst the w)-.05 F .21 -(ord being com-)-.1 F(pleted, and the matching w)108 448.8 Q +(ord being com-)-.1 F(pleted, and the matching w)108 592.8 Q (ords become the possible completions.)-.1 E .234 -(After these matches ha)108 465.6 R .534 -.15(ve b)-.2 H .234 +(After these matches ha)108 609.6 R .534 -.15(ve b)-.2 H .234 (een generated, an).15 F 2.734(ys)-.15 G .233 (hell function or command speci\214ed with the)-2.734 F F12.733 E F0(and)2.733 E F12.733 E F0(op-)2.733 E 4.208(tions is in)108 -477.6 R -.2(vo)-.4 G -.1(ke).2 G 6.708(d. When).1 F 4.209 +621.6 R -.2(vo)-.4 G -.1(ke).2 G 6.708(d. When).1 F 4.209 (the command or function is in)6.708 F -.2(vo)-.4 G -.1(ke).2 G 4.209 (d, the).1 F F3(COMP_LINE)6.709 E F4(,)A F3(COMP_POINT)6.459 E F4(,)A F3 -(COMP_KEY)108 489.6 Q F4(,)A F0(and)2.408 E F3(COMP_TYPE)2.658 E F0 -.25 +(COMP_KEY)108 633.6 Q F4(,)A F0(and)2.408 E F3(COMP_TYPE)2.658 E F0 -.25 (va)2.408 G .157(riables are assigned v).25 F .157 (alues as described abo)-.25 F .457 -.15(ve u)-.15 H(nder).15 E F1 .157 (Shell V)2.657 F(ariables)-.92 E F0 5.157(.I)C(f)-5.157 E 3.485(as)108 -501.6 S .986(hell function is being in)-3.485 F -.2(vo)-.4 G -.1(ke).2 G +645.6 S .986(hell function is being in)-3.485 F -.2(vo)-.4 G -.1(ke).2 G .986(d, the).1 F F3(COMP_W)3.486 E(ORDS)-.09 E F0(and)3.236 E F3 (COMP_CW)3.486 E(ORD)-.09 E F0 -.25(va)3.236 G .986 (riables are also set.).25 F(When)5.986 E .347 -(the function or command is in)108 513.6 R -.2(vo)-.4 G -.1(ke).2 G .347 +(the function or command is in)108 657.6 R -.2(vo)-.4 G -.1(ke).2 G .347 (d, the \214rst ar).1 F .346(gument \()-.18 F F1($1)A F0 2.846(\)i)C 2.846(st)-2.846 G .346(he name of the command whose ar)-2.846 F(guments) --.18 E .263(are being completed, the second ar)108 525.6 R .263 +-.18 E .263(are being completed, the second ar)108 669.6 R .263 (gument \()-.18 F F1($2)A F0 2.763(\)i)C 2.763(st)-2.763 G .264(he w) -2.763 F .264(ord being completed, and the third ar)-.1 F .264 -(gument \()-.18 F F1($3)A F0 2.764(\)i)C(s)-2.764 E .629(the w)108 537.6 +(gument \()-.18 F F1($3)A F0 2.764(\)i)C(s)-2.764 E .629(the w)108 681.6 R .629(ord preceding the w)-.1 F .629 (ord being completed on the current command line.)-.1 F .628 -(No \214ltering of the generated)5.629 F .714(completions ag)108 549.6 R +(No \214ltering of the generated)5.629 F .714(completions ag)108 693.6 R .714(ainst the w)-.05 F .714(ord being completed is performed; the func\ tion or command has complete free-)-.1 F(dom in generating the matches.) -108 561.6 Q(An)108 578.4 Q 2.938(yf)-.15 G .437 +108 705.6 Q(An)108 722.4 Q 2.938(yf)-.15 G .437 (unction speci\214ed with)-2.938 F F12.937 E F0 .437(is in)2.937 F -.2(vo)-.4 G -.1(ke).2 G 2.937<648c>.1 G 2.937(rst. The)-2.937 F .437 (function may use an)2.937 F 2.937(yo)-.15 G 2.937(ft)-2.937 G .437 -(he shell f)-2.937 F .437(acilities, including)-.1 F(the)108 590.4 Q F1 -(compgen)2.956 E F0 -.2(bu)2.956 G .456(iltin described belo).2 F 1.756 --.65(w, t)-.25 H 2.956(og).65 G .456(enerate the matches.)-2.956 F .457 -(It must put the possible completions in the)5.456 F F3(COMPREPL)108 -602.4 Q(Y)-.828 E F0(array v)2.25 E(ariable, one per array element.)-.25 -E(Ne)108 619.2 Q .081(xt, an)-.15 F 2.581(yc)-.15 G .081 -(ommand speci\214ed with the)-2.581 F F12.581 E F0 .081 -(option is in)2.581 F -.2(vo)-.4 G -.1(ke).2 G 2.581(di).1 G 2.58(na) --2.581 G 2.58(ne)-2.58 G -.4(nv)-2.58 G .08(ironment equi).4 F -.25(va) --.25 G .08(lent to command sub-).25 F 2.858(stitution. It)108 631.2 R -.359(should print a list of completions, one per line, to the standard \ -output.)2.858 F .359(Backslash may be used)5.359 F(to escape a ne)108 -643.2 Q(wline, if necessary)-.25 E(.)-.65 E .377 -(After all of the possible completions are generated, an)108 660 R 2.877 -<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F12.876 E F0 -.376(option is applied to the)2.876 F 3.181(list. The)108 672 R .681 -(\214lter is a pattern as used for pathname e)3.181 F .681(xpansion; a) --.15 F F1(&)3.181 E F0 .682(in the pattern is replaced with the te)3.182 -F .682(xt of)-.15 F .523(the w)108 684 R .523(ord being completed.)-.1 F -3.023(Al)5.523 G(iteral)-3.023 E F1(&)3.023 E F0 .522 -(may be escaped with a backslash; the backslash is remo)3.022 F -.15(ve) --.15 G 3.022(db).15 G(efore)-3.022 E .849(attempting a match.)108 696 R -(An)5.849 E 3.349(yc)-.15 G .849 -(ompletion that matches the pattern will be remo)-3.349 F -.15(ve)-.15 G -3.35(df).15 G .85(rom the list.)-3.35 F 3.35(Al)5.85 G(eading)-3.35 E F1 -(!)3.35 E F0(ne)108 708 Q -.05(ga)-.15 G .764 -(tes the pattern; in this case an).05 F 3.264(yc)-.15 G .764 -(ompletion not matching the pattern will be remo)-3.264 F -.15(ve)-.15 G -3.264(d. If).15 F(the)3.264 E F1(nocase-)3.264 E(match)108 720 Q F0 -(shell option is enabled, the match is performed without re)2.5 E -.05 -(ga)-.15 G(rd to the case of alphabetic characters.).05 E(GNU Bash 5.2) -72 768 Q(2022 March 11)144.29 E(55)193.45 E 0 Cg EP +(he shell f)-2.937 F .437(acilities, including)-.1 F(GNU Bash 5.2)72 768 +Q(2022 June 3)150.675 E(55)199.835 E 0 Cg EP %%Page: 56 56 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(Finally)108 84 Q -3.086(,a)-.65 G .886 -.15(ny p)-3.086 H .586(re\214x and suf).15 F .587 -(\214x speci\214ed with the)-.25 F/F1 10/Times-Bold@0 SF3.087 E F0 -(and)3.087 E F13.087 E F0 .587 -(options are added to each member of the com-)3.087 F(pletion list, and\ - the result is returned to the readline completion code as the list of \ -possible completions.)108 96 Q .247(If the pre)108 112.8 R .247 -(viously-applied actions do not generate an)-.25 F 2.747(ym)-.15 G .247 -(atches, and the)-2.747 F F1 .247(\255o dir)2.747 F(names)-.15 E F0 .247 -(option w)2.747 F .246(as supplied to)-.1 F F1(complete)108 124.8 Q F0 -(when the compspec w)2.5 E +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(the)108 84 Q/F1 10 +/Times-Bold@0 SF(compgen)2.956 E F0 -.2(bu)2.956 G .456 +(iltin described belo).2 F 1.756 -.65(w, t)-.25 H 2.956(og).65 G .456 +(enerate the matches.)-2.956 F .457 +(It must put the possible completions in the)5.456 F/F2 9/Times-Bold@0 +SF(COMPREPL)108 96 Q(Y)-.828 E F0(array v)2.25 E +(ariable, one per array element.)-.25 E(Ne)108 112.8 Q .081(xt, an)-.15 +F 2.581(yc)-.15 G .081(ommand speci\214ed with the)-2.581 F F1 +2.581 E F0 .081(option is in)2.581 F -.2(vo)-.4 G -.1(ke).2 G 2.581(di) +.1 G 2.58(na)-2.581 G 2.58(ne)-2.58 G -.4(nv)-2.58 G .08(ironment equi) +.4 F -.25(va)-.25 G .08(lent to command sub-).25 F 2.858(stitution. It) +108 124.8 R .359(should print a list of completions, one per line, to t\ +he standard output.)2.858 F .359(Backslash may be used)5.359 F +(to escape a ne)108 136.8 Q(wline, if necessary)-.25 E(.)-.65 E .377 +(After all of the possible completions are generated, an)108 153.6 R +2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F12.876 +E F0 .376(option is applied to the)2.876 F 3.181(list. The)108 165.6 R +.681(\214lter is a pattern as used for pathname e)3.181 F .681 +(xpansion; a)-.15 F F1(&)3.181 E F0 .682 +(in the pattern is replaced with the te)3.182 F .682(xt of)-.15 F .523 +(the w)108 177.6 R .523(ord being completed.)-.1 F 3.023(Al)5.523 G +(iteral)-3.023 E F1(&)3.023 E F0 .522 +(may be escaped with a backslash; the backslash is remo)3.022 F -.15(ve) +-.15 G 3.022(db).15 G(efore)-3.022 E .849(attempting a match.)108 189.6 +R(An)5.849 E 3.349(yc)-.15 G .849 +(ompletion that matches the pattern will be remo)-3.349 F -.15(ve)-.15 G +3.35(df).15 G .85(rom the list.)-3.35 F 3.35(Al)5.85 G(eading)-3.35 E F1 +(!)3.35 E F0(ne)108 201.6 Q -.05(ga)-.15 G .764 +(tes the pattern; in this case an).05 F 3.264(yc)-.15 G .764 +(ompletion not matching the pattern will be remo)-3.264 F -.15(ve)-.15 G +3.264(d. If).15 F(the)3.264 E F1(nocase-)3.264 E(match)108 213.6 Q F0 +(shell option is enabled, the match is performed without re)2.5 E -.05 +(ga)-.15 G(rd to the case of alphabetic characters.).05 E(Finally)108 +230.4 Q 3.086(,a)-.65 G .886 -.15(ny p)-3.086 H .586(re\214x and suf).15 +F .587(\214x speci\214ed with the)-.25 F F13.087 E F0(and)3.087 E +F13.087 E F0 .587(options are added to each member of the com-) +3.087 F(pletion list, and the result is returned to the readline comple\ +tion code as the list of possible completions.)108 242.4 Q .247 +(If the pre)108 259.2 R .247(viously-applied actions do not generate an) +-.25 F 2.747(ym)-.15 G .247(atches, and the)-2.747 F F1 .247(\255o dir) +2.747 F(names)-.15 E F0 .247(option w)2.747 F .246(as supplied to)-.1 F +F1(complete)108 271.2 Q F0(when the compspec w)2.5 E (as de\214ned, directory name completion is attempted.)-.1 E .461 -(If the)108 141.6 R F1 .462(\255o plusdirs)2.961 F F0 .462(option w) -2.962 F .462(as supplied to)-.1 F F1(complete)2.962 E F0 .462 +(If the)108 288 R F1 .462(\255o plusdirs)2.961 F F0 .462(option w)2.962 +F .462(as supplied to)-.1 F F1(complete)2.962 E F0 .462 (when the compspec w)2.962 F .462(as de\214ned, directory name com-)-.1 -F(pletion is attempted and an)108 153.6 Q 2.5(ym)-.15 G +F(pletion is attempted and an)108 300 Q 2.5(ym)-.15 G (atches are added to the results of the other actions.)-2.5 E .56 -(By def)108 170.4 R .56(ault, if a compspec is found, whate)-.1 F -.15 +(By def)108 316.8 R .56(ault, if a compspec is found, whate)-.1 F -.15 (ve)-.25 G 3.06(ri).15 G 3.06(tg)-3.06 G .559 (enerates is returned to the completion code as the full set)-3.06 F -.631(of possible completions.)108 182.4 R .631(The def)5.631 F(ault)-.1 +.631(of possible completions.)108 328.8 R .631(The def)5.631 F(ault)-.1 E F1(bash)3.131 E F0 .631 (completions are not attempted, and the readline def)3.131 F .632 -(ault of \214le-)-.1 F .559(name completion is disabled.)108 194.4 R +(ault of \214le-)-.1 F .559(name completion is disabled.)108 340.8 R .559(If the)5.559 F F1 .559(\255o bashdefault)3.059 F F0 .559(option w) 3.059 F .559(as supplied to)-.1 F F1(complete)3.058 E F0 .558 -(when the compspec)3.058 F -.1(wa)108 206.4 S 3.171(sd).1 G .671 +(when the compspec)3.058 F -.1(wa)108 352.8 S 3.171(sd).1 G .671 (e\214ned, the)-3.171 F F1(bash)3.171 E F0(def)3.171 E .671 (ault completions are attempted if the compspec generates no matches.) --.1 F .672(If the)5.672 F F13.172 E(default)108 218.4 Q F0 1.207 +-.1 F .672(If the)5.672 F F13.172 E(default)108 364.8 Q F0 1.207 (option w)3.707 F 1.207(as supplied to)-.1 F F1(complete)3.707 E F0 1.207(when the compspec w)3.707 F 1.207(as de\214ned, readline')-.1 F 3.707(sd)-.55 G(ef)-3.707 E 1.206(ault completion)-.1 F (will be performed if the compspec \(and, if attempted, the def)108 -230.4 Q(ault)-.1 E F1(bash)2.5 E F0(completions\) generate no matches.) +376.8 Q(ault)-.1 E F1(bash)2.5 E F0(completions\) generate no matches.) 2.5 E .245(When a compspec indicates that directory name completion is \ -desired, the programmable completion func-)108 247.2 R .633(tions force\ +desired, the programmable completion func-)108 393.6 R .633(tions force\ readline to append a slash to completed names which are symbolic links\ - to directories, subject)108 259.2 R 2.761(to the v)108 271.2 R 2.761 + to directories, subject)108 405.6 R 2.761(to the v)108 417.6 R 2.761 (alue of the)-.25 F F1(mark\255dir)5.261 E(ectories)-.18 E F0 2.761 (readline v)5.261 F 2.761(ariable, re)-.25 F -.05(ga)-.15 G 2.762 -(rdless of the setting of the).05 F F1(mark-sym-)5.262 E(link)108 283.2 +(rdless of the setting of the).05 F F1(mark-sym-)5.262 E(link)108 429.6 Q(ed\255dir)-.1 E(ectories)-.18 E F0(readline v)2.5 E(ariable.)-.25 E .191(There is some support for dynamically modifying completions.)108 -300 R .19(This is most useful when used in combina-)5.191 F 1.172 -(tion with a def)108 312 R 1.172(ault completion speci\214ed with)-.1 F -F1 1.172(complete \255D)3.672 F F0 6.172(.I)C(t')-6.172 E 3.672(sp)-.55 -G 1.172(ossible for shell functions e)-3.672 F -.15(xe)-.15 G 1.172 +446.4 R .19(This is most useful when used in combina-)5.191 F 1.172 +(tion with a def)108 458.4 R 1.172(ault completion speci\214ed with)-.1 +F F1 1.172(complete \255D)3.672 F F0 6.172(.I)C(t')-6.172 E 3.672(sp) +-.55 G 1.172(ossible for shell functions e)-3.672 F -.15(xe)-.15 G 1.172 (cuted as).15 F .93(completion handlers to indicate that completion sho\ -uld be retried by returning an e)108 324 R .93(xit status of 124.)-.15 F -.93(If a)5.93 F .1(shell function returns 124, and changes the compspec\ - associated with the command on which completion is)108 336 R .666 -(being attempted \(supplied as the \214rst ar)108 348 R .665 +uld be retried by returning an e)108 470.4 R .93(xit status of 124.)-.15 +F .93(If a)5.93 F .1(shell function returns 124, and changes the compsp\ +ec associated with the command on which completion is)108 482.4 R .666 +(being attempted \(supplied as the \214rst ar)108 494.4 R .665 (gument when the function is e)-.18 F -.15(xe)-.15 G .665 (cuted\), programmable completion).15 F .083(restarts from the be)108 -360 R .084(ginning, with an attempt to \214nd a ne)-.15 F 2.584(wc)-.25 -G .084(ompspec for that command.)-2.584 F .084(This allo)5.084 F .084 -(ws a set of)-.25 F(completions to be b)108 372 Q(uilt dynamically as c\ -ompletion is attempted, rather than being loaded all at once.)-.2 E -.15 -(Fo)108 388.8 S 2.637(ri).15 G .137 +506.4 R .084(ginning, with an attempt to \214nd a ne)-.15 F 2.584(wc) +-.25 G .084(ompspec for that command.)-2.584 F .084(This allo)5.084 F +.084(ws a set of)-.25 F(completions to be b)108 518.4 Q(uilt dynamicall\ +y as completion is attempted, rather than being loaded all at once.)-.2 +E -.15(Fo)108 535.2 S 2.637(ri).15 G .137 (nstance, assuming that there is a library of compspecs, each k)-2.637 F .137(ept in a \214le corresponding to the name of)-.1 F -(the command, the follo)108 400.8 Q(wing def)-.25 E +(the command, the follo)108 547.2 Q(wing def)-.25 E (ault completion function w)-.1 E(ould load completions dynamically:)-.1 -E/F2 10/Courier@0 SF(_completion_loader\(\))108 417.6 Q({)108 429.6 Q 6 -(.")144 441.6 S -(/etc/bash_completion.d/$1.sh" >/dev/null 2>&1 && return 124)-6 E(})108 -453.6 Q(complete -D -F _completion_loader -o bashdefault -o default)108 -465.6 Q/F3 10.95/Times-Bold@0 SF(HIST)72 494.4 Q(OR)-.197 E(Y)-.383 E F0 -.371(When the)108 506.4 R F1 .371(\255o history)2.871 F F0 .371 +E/F3 10/Courier@0 SF(_completion_loader\(\))108 564 Q({)108 576 Q 6(.") +144 588 S(/etc/bash_completion.d/$1.sh" >/dev/null 2>&1 && return 124)-6 +E(})108 600 Q +(complete -D -F _completion_loader -o bashdefault -o default)108 612 Q +/F4 10.95/Times-Bold@0 SF(HIST)72 640.8 Q(OR)-.197 E(Y)-.383 E F0 .371 +(When the)108 652.8 R F1 .371(\255o history)2.871 F F0 .371 (option to the)2.871 F F1(set)2.872 E F0 -.2(bu)2.872 G .372 -(iltin is enabled, the shell pro).2 F .372(vides access to the)-.15 F/F4 +(iltin is enabled, the shell pro).2 F .372(vides access to the)-.15 F/F5 10/Times-Italic@0 SF .372(command history)2.872 F F0(,)A .305 -(the list of commands pre)108 518.4 R .305(viously typed.)-.25 F .305 -(The v)5.305 F .304(alue of the)-.25 F/F5 9/Times-Bold@0 SF(HISTSIZE) -2.804 E F0 -.25(va)2.554 G .304(riable is used as the number of com-).25 -F .429(mands to sa)108 530.4 R .729 -.15(ve i)-.2 H 2.929(nah).15 G .429 -(istory list.)-2.929 F .429(The te)5.429 F .429(xt of the last)-.15 F F5 +(the list of commands pre)108 664.8 R .305(viously typed.)-.25 F .305 +(The v)5.305 F .304(alue of the)-.25 F F2(HISTSIZE)2.804 E F0 -.25(va) +2.554 G .304(riable is used as the number of com-).25 F .429 +(mands to sa)108 676.8 R .729 -.15(ve i)-.2 H 2.929(nah).15 G .429 +(istory list.)-2.929 F .429(The te)5.429 F .429(xt of the last)-.15 F F2 (HISTSIZE)2.93 E F0 .43(commands \(def)2.68 F .43(ault 500\) is sa)-.1 F -.15(ve)-.2 G 2.93(d. The).15 F(shell)2.93 E .287 (stores each command in the history list prior to parameter and v)108 -542.4 R .287(ariable e)-.25 F .287(xpansion \(see)-.15 F F5(EXP)2.787 E -(ANSION)-.666 E F0(abo)2.537 E -.15(ve)-.15 G(\)).15 E -.2(bu)108 554.4 +688.8 R .287(ariable e)-.25 F .287(xpansion \(see)-.15 F F2(EXP)2.787 E +(ANSION)-.666 E F0(abo)2.537 E -.15(ve)-.15 G(\)).15 E -.2(bu)108 700.8 S 4.065(ta).2 G 1.565(fter history e)-4.065 F 1.565 (xpansion is performed, subject to the v)-.15 F 1.565 -(alues of the shell v)-.25 F(ariables)-.25 E F5(HISTIGNORE)4.065 E F0 -(and)3.816 E F5(HISTCONTR)108 566.4 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.) +(alues of the shell v)-.25 F(ariables)-.25 E F2(HISTIGNORE)4.065 E F0 +(and)3.816 E F2(HISTCONTR)108 712.8 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.) A F0 .082 (On startup, the history is initialized from the \214le named by the v) -108 583.2 R(ariable)-.25 E F5(HISTFILE)2.582 E F0(\(def)2.332 E(ault)-.1 -E F4(~/.bash_history)2.582 E F0(\).)A .315(The \214le named by the v)108 -595.2 R .315(alue of)-.25 F F5(HISTFILE)2.815 E F0 .315 -(is truncated, if necessary)2.565 F 2.815(,t)-.65 G 2.815(oc)-2.815 G -.315(ontain no more than the number of)-2.815 F .659 -(lines speci\214ed by the v)108 607.2 R .659(alue of)-.25 F F5 -(HISTFILESIZE)3.158 E F6(.)A F0(If)5.158 E F1(HISTFILESIZE)3.158 E F0 -.658(is unset, or set to null, a non-numeric)3.158 F -.25(va)108 619.2 S -.142(lue, or a numeric v).25 F .142 -(alue less than zero, the history \214le is not truncated.)-.25 F .142 -(When the history \214le is read, lines)5.142 F(be)108 631.2 Q 1.605 -(ginning with the history comment character follo)-.15 F 1.604 -(wed immediately by a digit are interpreted as time-)-.25 F .15 -(stamps for the follo)108 643.2 R .15(wing history line.)-.25 F .151 -(These timestamps are optionally displayed depending on the v)5.151 F -.151(alue of)-.25 F(the)108 655.2 Q F5(HISTTIMEFORMA)3.559 E(T)-.855 E -F0 -.25(va)3.309 G 3.559(riable. When).25 F 3.559(as)3.559 G 1.059 -(hell with history enabled e)-3.559 F 1.059(xits, the last)-.15 F F5 -($HISTSIZE)3.559 E F0 1.058(lines are)3.309 F .158 -(copied from the history list to)108 667.2 R F5($HISTFILE)2.658 E F6(.)A -F0 .158(If the)4.658 F F1(histappend)2.658 E F0 .159 -(shell option is enabled \(see the description of)2.659 F F1(shopt)108 -679.2 Q F0(under)2.582 E F5 .082(SHELL B)2.582 F(UIL)-.09 E .082 -(TIN COMMANDS)-.828 F F0(belo)2.332 E .082 -(w\), the lines are appended to the history \214le, otherwise the)-.25 F -.196(history \214le is o)108 691.2 R -.15(ve)-.15 G 2.696(rwritten. If) -.15 F F5(HISTFILE)2.696 E F0 .197(is unset, or if the history \214le is\ - unwritable, the history is not sa)2.446 F -.15(ve)-.2 G(d.).15 E .584 -(If the)108 703.2 R F5(HISTTIMEFORMA)3.084 E(T)-.855 E F0 -.25(va)2.834 -G .584 -(riable is set, time stamps are written to the history \214le, mark).25 -F .583(ed with the his-)-.1 F 1.147(tory comment character)108 715.2 R -3.647(,s)-.4 G 3.647(ot)-3.647 G(he)-3.647 E 3.647(ym)-.15 G 1.147 -(ay be preserv)-3.647 F 1.147(ed across shell sessions.)-.15 F 1.148 -(This uses the history comment)6.148 F 1.377 -(character to distinguish timestamps from other history lines.)108 727.2 -R 1.377(After sa)6.377 F 1.377(ving the history)-.2 F 3.876(,t)-.65 G -1.376(he history \214le is)-3.876 F(GNU Bash 5.2)72 768 Q(2022 March 11) -144.29 E(56)193.45 E 0 Cg EP +108 729.6 R(ariable)-.25 E F2(HISTFILE)2.582 E F0(\(def)2.332 E(ault)-.1 +E F5(~/.bash_history)2.582 E F0(\).)A(GNU Bash 5.2)72 768 Q(2022 June 3) +150.675 E(56)199.835 E 0 Cg EP %%Page: 57 57 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .756 -(truncated to contain no more than)108 84 R/F1 9/Times-Bold@0 SF -(HISTFILESIZE)3.257 E F0 3.257(lines. If)3.007 F F1(HISTFILESIZE)3.257 E -F0 .757(is unset, or set to null, a non-)3.007 F(numeric v)108 96 Q +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .315 +(The \214le named by the v)108 84 R .315(alue of)-.25 F/F1 9 +/Times-Bold@0 SF(HISTFILE)2.815 E F0 .315(is truncated, if necessary) +2.565 F 2.815(,t)-.65 G 2.815(oc)-2.815 G .315 +(ontain no more than the number of)-2.815 F .659 +(lines speci\214ed by the v)108 96 R .659(alue of)-.25 F F1 +(HISTFILESIZE)3.158 E/F2 9/Times-Roman@0 SF(.)A F0(If)5.158 E/F3 10 +/Times-Bold@0 SF(HISTFILESIZE)3.158 E F0 .658 +(is unset, or set to null, a non-numeric)3.158 F -.25(va)108 108 S .142 +(lue, or a numeric v).25 F .142 +(alue less than zero, the history \214le is not truncated.)-.25 F .142 +(When the history \214le is read, lines)5.142 F(be)108 120 Q 1.605 +(ginning with the history comment character follo)-.15 F 1.604 +(wed immediately by a digit are interpreted as time-)-.25 F .15 +(stamps for the follo)108 132 R .15(wing history line.)-.25 F .151 +(These timestamps are optionally displayed depending on the v)5.151 F +.151(alue of)-.25 F(the)108 144 Q F1(HISTTIMEFORMA)3.559 E(T)-.855 E F0 +-.25(va)3.309 G 3.559(riable. When).25 F 3.559(as)3.559 G 1.059 +(hell with history enabled e)-3.559 F 1.059(xits, the last)-.15 F F1 +($HISTSIZE)3.559 E F0 1.058(lines are)3.309 F .158 +(copied from the history list to)108 156 R F1($HISTFILE)2.658 E F2(.)A +F0 .158(If the)4.658 F F3(histappend)2.658 E F0 .159 +(shell option is enabled \(see the description of)2.659 F F3(shopt)108 +168 Q F0(under)2.582 E F1 .082(SHELL B)2.582 F(UIL)-.09 E .082 +(TIN COMMANDS)-.828 F F0(belo)2.332 E .082 +(w\), the lines are appended to the history \214le, otherwise the)-.25 F +.196(history \214le is o)108 180 R -.15(ve)-.15 G 2.696(rwritten. If).15 +F F1(HISTFILE)2.696 E F0 .197(is unset, or if the history \214le is unw\ +ritable, the history is not sa)2.446 F -.15(ve)-.2 G(d.).15 E .584 +(If the)108 192 R F1(HISTTIMEFORMA)3.084 E(T)-.855 E F0 -.25(va)2.834 G +.584(riable is set, time stamps are written to the history \214le, mark) +.25 F .583(ed with the his-)-.1 F 1.147(tory comment character)108 204 R +3.647(,s)-.4 G 3.647(ot)-3.647 G(he)-3.647 E 3.647(ym)-.15 G 1.147 +(ay be preserv)-3.647 F 1.147(ed across shell sessions.)-.15 F 1.148 +(This uses the history comment)6.148 F 1.377 +(character to distinguish timestamps from other history lines.)108 216 R +1.377(After sa)6.377 F 1.377(ving the history)-.2 F 3.876(,t)-.65 G +1.376(he history \214le is)-3.876 F .756 +(truncated to contain no more than)108 228 R F1(HISTFILESIZE)3.257 E F0 +3.257(lines. If)3.007 F F1(HISTFILESIZE)3.257 E F0 .757 +(is unset, or set to null, a non-)3.007 F(numeric v)108 240 Q (alue, or a numeric v)-.25 E (alue less than zero, the history \214le is not truncated.)-.25 E .299 -(The b)108 112.8 R .299(uiltin command)-.2 F/F2 10/Times-Bold@0 SF(fc) -2.799 E F0(\(see)2.799 E F1 .299(SHELL B)2.799 F(UIL)-.09 E .299 -(TIN COMMANDS)-.828 F F0(belo)2.549 E .298 -(w\) may be used to list or edit and re-e)-.25 F -.15(xe)-.15 G(-).15 E -.471(cute a portion of the history list.)108 124.8 R(The)5.471 E F2 -(history)2.971 E F0 -.2(bu)2.971 G .472 +(The b)108 256.8 R .299(uiltin command)-.2 F F3(fc)2.799 E F0(\(see) +2.799 E F1 .299(SHELL B)2.799 F(UIL)-.09 E .299(TIN COMMANDS)-.828 F F0 +(belo)2.549 E .298(w\) may be used to list or edit and re-e)-.25 F -.15 +(xe)-.15 G(-).15 E .471(cute a portion of the history list.)108 268.8 R +(The)5.471 E F3(history)2.971 E F0 -.2(bu)2.971 G .472 (iltin may be used to display or modify the history list and).2 F .002 -(manipulate the history \214le.)108 136.8 R .001 +(manipulate the history \214le.)108 280.8 R .001 (When using command-line editing, search commands are a)5.002 F -.25(va) --.2 G .001(ilable in each edit-).25 F(ing mode that pro)108 148.8 Q -(vide access to the history list.)-.15 E 1.485(The shell allo)108 165.6 +-.2 G .001(ilable in each edit-).25 F(ing mode that pro)108 292.8 Q +(vide access to the history list.)-.15 E 1.485(The shell allo)108 309.6 R 1.485(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486 (hich commands are sa)-3.986 F -.15(ve)-.2 G 3.986(do).15 G 3.986(nt) -3.986 G 1.486(he history list.)-3.986 F(The)6.486 E F1(HISTCONTR)3.986 -E(OL)-.27 E F0(and)3.736 E F1(HISTIGNORE)108 177.6 Q F0 -.25(va)2.708 G +E(OL)-.27 E F0(and)3.736 E F1(HISTIGNORE)108 321.6 Q F0 -.25(va)2.708 G .458(riables may be set to cause the shell to sa).25 F .757 -.15(ve o) --.2 H .457(nly a subset of the commands entered.).15 F(The)5.457 E F2 -(cmdhist)108 189.6 Q F0 .75 +-.2 H .457(nly a subset of the commands entered.).15 F(The)5.457 E F3 +(cmdhist)108 333.6 Q F0 .75 (shell option, if enabled, causes the shell to attempt to sa)3.25 F 1.05 -.15(ve e)-.2 H .75(ach line of a multi-line command in).15 F 1.077 -(the same history entry)108 201.6 R 3.577(,a)-.65 G 1.077 +(the same history entry)108 345.6 R 3.577(,a)-.65 G 1.077 (dding semicolons where necessary to preserv)-3.577 F 3.577(es)-.15 G -1.077(yntactic correctness.)-3.577 F(The)6.077 E F2(lithist)3.576 E F0 -.373(shell option causes the shell to sa)108 213.6 R .674 -.15(ve t)-.2 +1.077(yntactic correctness.)-3.577 F(The)6.077 E F3(lithist)3.576 E F0 +.373(shell option causes the shell to sa)108 357.6 R .674 -.15(ve t)-.2 H .374(he command with embedded ne).15 F .374 (wlines instead of semicolons.)-.25 F .374(See the)5.374 F .319 -(description of the)108 225.6 R F2(shopt)2.819 E F0 -.2(bu)2.819 G .318 +(description of the)108 369.6 R F3(shopt)2.819 E F0 -.2(bu)2.819 G .318 (iltin belo).2 F 2.818(wu)-.25 G(nder)-2.818 E F1 .318(SHELL B)2.818 F (UIL)-.09 E .318(TIN COMMANDS)-.828 F F0 .318 (for information on setting and)2.568 F(unsetting shell options.)108 -237.6 Q/F3 10.95/Times-Bold@0 SF(HIST)72 254.4 Q(OR)-.197 E 2.738(YE) +381.6 Q/F4 10.95/Times-Bold@0 SF(HIST)72 398.4 Q(OR)-.197 E 2.738(YE) -.383 G(XP)-2.738 E(ANSION)-.81 E F0 .61(The shell supports a history e) -108 266.4 R .611(xpansion feature that is similar to the history e)-.15 -F .611(xpansion in)-.15 F F2(csh)3.111 E F0 5.611(.T)C .611(his section) --5.611 F .871(describes what syntax features are a)108 278.4 R -.25(va) +108 410.4 R .611(xpansion feature that is similar to the history e)-.15 +F .611(xpansion in)-.15 F F3(csh)3.111 E F0 5.611(.T)C .611(his section) +-5.611 F .871(describes what syntax features are a)108 422.4 R -.25(va) -.2 G 3.371(ilable. This).25 F .871(feature is enabled by def)3.371 F .87(ault for interacti)-.1 F 1.17 -.15(ve s)-.25 H .87(hells, and).15 F -.949(can be disabled using the)108 290.4 R F2(+H)3.449 E F0 .949 -(option to the)3.449 F F2(set)3.449 E F0 -.2(bu)3.449 G .949 +.949(can be disabled using the)108 434.4 R F3(+H)3.449 E F0 .949 +(option to the)3.449 F F3(set)3.449 E F0 -.2(bu)3.449 G .949 (iltin command \(see).2 F F1 .949(SHELL B)3.449 F(UIL)-.09 E .95 -(TIN COMMANDS)-.828 F F0(be-)3.2 E(lo)108 302.4 Q 2.5 +(TIN COMMANDS)-.828 F F0(be-)3.2 E(lo)108 446.4 Q 2.5 (w\). Non-interacti)-.25 F .3 -.15(ve s)-.25 H (hells do not perform history e).15 E(xpansion by def)-.15 E(ault.)-.1 E -1.306(History e)108 319.2 R 1.306(xpansions introduce w)-.15 F 1.306(or\ +1.306(History e)108 463.2 R 1.306(xpansions introduce w)-.15 F 1.306(or\ ds from the history list into the input stream, making it easy to repea\ -t)-.1 F .209(commands, insert the ar)108 331.2 R .209(guments to a pre) +t)-.1 F .209(commands, insert the ar)108 475.2 R .209(guments to a pre) -.18 F .21 (vious command into the current input line, or \214x errors in pre)-.25 -F(vious)-.25 E(commands quickly)108 343.2 Q(.)-.65 E 1.164(History e)108 -360 R 1.163(xpansion is performed immediately after a complete line is \ -read, before the shell breaks it into)-.15 F -.1(wo)108 372 S .251 +F(vious)-.25 E(commands quickly)108 487.2 Q(.)-.65 E 1.164(History e)108 +504 R 1.163(xpansion is performed immediately after a complete line is \ +read, before the shell breaks it into)-.15 F -.1(wo)108 516 S .251 (rds, and is performed on each line indi).1 F .251 (vidually without taking quoting on pre)-.25 F .252 -(vious lines into account.)-.25 F(It)5.252 E(tak)108 384 Q .146 +(vious lines into account.)-.25 F(It)5.252 E(tak)108 528 Q .146 (es place in tw)-.1 F 2.646(op)-.1 G 2.646(arts. The)-2.646 F .146(\214\ rst is to determine which line from the history list to use during subs\ titution.)2.646 F .766(The second is to select portions of that line fo\ -r inclusion into the current one.)108 396 R .767 -(The line selected from the)5.767 F .254(history is the)108 408 R/F4 10 +r inclusion into the current one.)108 540 R .767 +(The line selected from the)5.767 F .254(history is the)108 552 R/F5 10 /Times-Italic@0 SF -.15(ev)2.754 G(ent).15 E F0 2.753(,a)C .253 -(nd the portions of that line that are acted upon are)-2.753 F F4(wor) -2.753 E(ds)-.37 E F0 5.253(.V)C(arious)-6.363 E F4(modi\214er)2.753 E(s) +(nd the portions of that line that are acted upon are)-2.753 F F5(wor) +2.753 E(ds)-.37 E F0 5.253(.V)C(arious)-6.363 E F5(modi\214er)2.753 E(s) -.1 E F0 .253(are a)2.753 F -.25(va)-.2 G(il-).25 E .538 -(able to manipulate the selected w)108 420 R 3.038(ords. The)-.1 F .538 +(able to manipulate the selected w)108 564 R 3.038(ords. The)-.1 F .538 (line is brok)3.038 F .538(en into w)-.1 F .539(ords in the same f)-.1 F -.539(ashion as when reading)-.1 F .573(input, so that se)108 432 R -.15 -(ve)-.25 G(ral).15 E F4(metac)3.073 E(har)-.15 E(acter)-.15 E F0 .572 +.539(ashion as when reading)-.1 F .573(input, so that se)108 576 R -.15 +(ve)-.25 G(ral).15 E F5(metac)3.073 E(har)-.15 E(acter)-.15 E F0 .572 (-separated w)B .572(ords surrounded by quotes are considered one w)-.1 -F 3.072(ord. His-)-.1 F .355(tory e)108 444 R .355 +F 3.072(ord. His-)-.1 F .355(tory e)108 588 R .355 (xpansions are introduced by the appearance of the history e)-.15 F .355 -(xpansion character)-.15 F 2.855(,w)-.4 G .356(hich is)-2.855 F F2(!) +(xpansion character)-.15 F 2.855(,w)-.4 G .356(hich is)-2.855 F F3(!) 3.689 E F0 .356(by def)3.689 F(ault.)-.1 E .791(Only backslash \()108 -456 R F2(\\).833 E F0 3.291(\)a).833 G .79 +600 R F3(\\).833 E F0 3.291(\)a).833 G .79 (nd single quotes can quote the history e)-3.291 F .79 (xpansion character)-.15 F 3.29(,b)-.4 G .79(ut the history e)-3.49 F (xpansion)-.15 E .789(character is also treated as quoted if it immedia\ -tely precedes the closing double quote in a double-quoted)108 468 R -(string.)108 480 Q(Se)108 496.8 Q -.15(ve)-.25 G .03 +tely precedes the closing double quote in a double-quoted)108 612 R +(string.)108 624 Q(Se)108 640.8 Q -.15(ve)-.25 G .03 (ral characters inhibit history e).15 F .03 (xpansion if found immediately follo)-.15 F .03(wing the history e)-.25 -F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 508.8 T +F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 652.8 T 3.162(ni).25 G 3.162(fi)-3.162 G 3.162(ti)-3.162 G 3.162(su)-3.162 G .662(nquoted: space, tab, ne)-3.162 F .662(wline, carriage return, and) --.25 F F2(=)3.162 E F0 5.662(.I)C 3.162(ft)-5.662 G(he)-3.162 E F2 -(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F2(\()3.163 E -F0(will also inhibit e)108 520.8 Q(xpansion.)-.15 E(Se)108 537.6 Q -.15 -(ve)-.25 G .11(ral shell options settable with the).15 F F2(shopt)2.61 E +-.25 F F3(=)3.162 E F0 5.662(.I)C 3.162(ft)-5.662 G(he)-3.162 E F3 +(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F3(\()3.163 E +F0(will also inhibit e)108 664.8 Q(xpansion.)-.15 E(Se)108 681.6 Q -.15 +(ve)-.25 G .11(ral shell options settable with the).15 F F3(shopt)2.61 E F0 -.2(bu)2.61 G .109(iltin may be used to tailor the beha).2 F .109 -(vior of history e)-.2 F(xpansion.)-.15 E .231(If the)108 549.6 R F2 +(vior of history e)-.2 F(xpansion.)-.15 E .231(If the)108 693.6 R F3 (histv)2.731 E(erify)-.1 E F0 .231 -(shell option is enabled \(see the description of the)2.731 F F2(shopt) -2.731 E F0 -.2(bu)2.731 G .231(iltin belo).2 F .231(w\), and)-.25 F F2 +(shell option is enabled \(see the description of the)2.731 F F3(shopt) +2.731 E F0 -.2(bu)2.731 G .231(iltin belo).2 F .231(w\), and)-.25 F F3 -.18(re)2.731 G(adline).18 E F0 .232(is be-)2.732 F .449(ing used, hist\ ory substitutions are not immediately passed to the shell parser)108 -561.6 R 5.449(.I)-.55 G .448(nstead, the e)-5.449 F .448 -(xpanded line is)-.15 F 2.228(reloaded into the)108 573.6 R F2 -.18(re) +705.6 R 5.449(.I)-.55 G .448(nstead, the e)-5.449 F .448 +(xpanded line is)-.15 F 2.228(reloaded into the)108 717.6 R F3 -.18(re) 4.728 G(adline).18 E F0 2.228(editing b)4.728 F(uf)-.2 E 2.228 -(fer for further modi\214cation.)-.25 F(If)7.228 E F2 -.18(re)4.728 G -(adline).18 E F0 2.228(is being used, and the)4.728 F F2(histr)108 585.6 +(fer for further modi\214cation.)-.25 F(If)7.228 E F3 -.18(re)4.728 G +(adline).18 E F0 2.228(is being used, and the)4.728 F F3(histr)108 729.6 Q(eedit)-.18 E F0 1.202(shell option is enabled, a f)3.702 F 1.202 -(ailed history substitution will be reloaded into the)-.1 F F2 -.18(re) -3.702 G(adline).18 E F0(editing)3.702 E -.2(bu)108 597.6 S -.25(ff).2 G -.303(er for correction.).25 F(The)5.303 E F22.803 E F0 .303 -(option to the)2.803 F F2(history)2.804 E F0 -.2(bu)2.804 G .304 -(iltin command may be used to see what a history e).2 F(x-)-.15 E .52 -(pansion will do before using it.)108 609.6 R(The)5.52 E F23.02 E -F0 .52(option to the)3.02 F F2(history)3.02 E F0 -.2(bu)3.02 G .52 -(iltin may be used to add commands to the).2 F -(end of the history list without actually e)108 621.6 Q -.15(xe)-.15 G -(cuting them, so that the).15 E 2.5(ya)-.15 G(re a)-2.5 E -.25(va)-.2 G -(ilable for subsequent recall.).25 E 1.108(The shell allo)108 638.4 R -1.108(ws control of the v)-.25 F 1.108 -(arious characters used by the history e)-.25 F 1.108 -(xpansion mechanism \(see the de-)-.15 F .163(scription of)108 650.4 R -F2(histchars)2.663 E F0(abo)2.663 E .463 -.15(ve u)-.15 H(nder).15 E F2 -.163(Shell V)2.663 F(ariables)-.92 E F0 2.663(\). The)B .162 -(shell uses the history comment character to mark)2.663 F -(history timestamps when writing the history \214le.)108 662.4 Q F2(Ev) -87 679.2 Q(ent Designators)-.1 E F0 .204(An e)108 691.2 R -.15(ve)-.25 G -.204(nt designator is a reference to a command line entry in the histor\ -y list.).15 F .205(Unless the reference is abso-)5.204 F(lute, e)108 -703.2 Q -.15(ve)-.25 G(nts are relati).15 E .3 -.15(ve t)-.25 H 2.5(ot) -.15 G(he current position in the history list.)-2.5 E(GNU Bash 5.2)72 -768 Q(2022 March 11)144.29 E(57)193.45 E 0 Cg EP +(ailed history substitution will be reloaded into the)-.1 F F3 -.18(re) +3.702 G(adline).18 E F0(editing)3.702 E(GNU Bash 5.2)72 768 Q +(2022 June 3)150.675 E(57)199.835 E 0 Cg EP %%Page: 58 58 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(!)108 84 Q F0 1.608(Start a history substitution, e)144 84 R 1.608 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.2(bu)108 84 S +-.25(ff).2 G .303(er for correction.).25 F(The)5.303 E/F1 10 +/Times-Bold@0 SF2.803 E F0 .303(option to the)2.803 F F1(history) +2.804 E F0 -.2(bu)2.804 G .304 +(iltin command may be used to see what a history e).2 F(x-)-.15 E .52 +(pansion will do before using it.)108 96 R(The)5.52 E F13.02 E F0 +.52(option to the)3.02 F F1(history)3.02 E F0 -.2(bu)3.02 G .52 +(iltin may be used to add commands to the).2 F +(end of the history list without actually e)108 108 Q -.15(xe)-.15 G +(cuting them, so that the).15 E 2.5(ya)-.15 G(re a)-2.5 E -.25(va)-.2 G +(ilable for subsequent recall.).25 E 1.108(The shell allo)108 124.8 R +1.108(ws control of the v)-.25 F 1.108 +(arious characters used by the history e)-.25 F 1.108 +(xpansion mechanism \(see the de-)-.15 F .163(scription of)108 136.8 R +F1(histchars)2.663 E F0(abo)2.663 E .463 -.15(ve u)-.15 H(nder).15 E F1 +.163(Shell V)2.663 F(ariables)-.92 E F0 2.663(\). The)B .162 +(shell uses the history comment character to mark)2.663 F +(history timestamps when writing the history \214le.)108 148.8 Q F1(Ev) +87 165.6 Q(ent Designators)-.1 E F0 .204(An e)108 177.6 R -.15(ve)-.25 G +.204(nt designator is a reference to a command line entry in the histor\ +y list.).15 F .205(Unless the reference is abso-)5.204 F(lute, e)108 +189.6 Q -.15(ve)-.25 G(nts are relati).15 E .3 -.15(ve t)-.25 H 2.5(ot) +.15 G(he current position in the history list.)-2.5 E F1(!)108 206.4 Q +F0 1.608(Start a history substitution, e)144 206.4 R 1.608 (xcept when follo)-.15 F 1.607(wed by a)-.25 F F1(blank)4.107 E F0 4.107 (,n)C -.25(ew)-4.107 G 1.607(line, carriage return, = or \().25 F -(\(when the)144 96 Q F1(extglob)2.5 E F0 +(\(when the)144 218.4 Q F1(extglob)2.5 E F0 (shell option is enabled using the)2.5 E F1(shopt)2.5 E F0 -.2(bu)2.5 G -(iltin\).).2 E F1(!)108 108 Q/F2 10/Times-Italic@0 SF(n)A F0 -(Refer to command line)144 108 Q F2(n)2.86 E F0(.).24 E F1<21ad>108 120 -Q F2(n)A F0(Refer to the current command minus)144 120 Q F2(n)2.86 E F0 -(.).24 E F1(!!)108 132 Q F0(Refer to the pre)144 132 Q(vious command.) --.25 E(This is a synon)5 E(ym for `!\2551'.)-.15 E F1(!)108 144 Q F2 -(string)A F0 .865(Refer to the most recent command preceding the curren\ -t position in the history list starting with)144 144 R F2(string)144.34 -156 Q F0(.).22 E F1(!?)108 168 Q F2(string)A F1([?])A F0 1.503(Refer to\ - the most recent command preceding the current position in the history \ -list containing)144 180 R F2(string)144.34 192 Q F0 5.496(.T).22 G .496 -(he trailing)-5.496 F F1(?)2.996 E F0 .496(may be omitted if)2.996 F F2 -(string)3.336 E F0 .497(is follo)3.216 F .497(wed immediately by a ne) --.25 F 2.997(wline. If)-.25 F F2(string)2.997 E F0(is)2.997 E .391(miss\ -ing, the string from the most recent search is used; it is an error if \ -there is no pre)144 204 R .39(vious search)-.25 F(string.)144 216 Q/F3 -12/Times-Bold@0 SF(^)108 233 Q F2(string1)-5 I F3(^)5 I F2(string2)-5 I -F3(^)5 I F0 .752(Quick substitution.)144 240 R .752(Repeat the pre)5.752 -F .753(vious command, replacing)-.25 F F2(string1)3.593 E F0(with)3.253 -E F2(string2)3.593 E F0 5.753(.E).02 G(qui)-5.753 E -.25(va)-.25 G .753 -(lent to).25 F -.74(``)144 252 S(!!:s).74 E/F4 12/Times-Roman@0 SF(^)5 I -F2(string1)-5 I F4(^)5 I F2(string2)-5 I F4(^)5 I F0 1.48 -.74('' \()-5 -L(see).74 E F1(Modi\214ers)2.5 E F0(belo)2.5 E(w\).)-.25 E F1(!#)108 264 -Q F0(The entire command line typed so f)144 264 Q(ar)-.1 E(.)-.55 E F1 --.75(Wo)87 280.8 S(rd Designators).75 E F0 -.8(Wo)108 292.8 S 1.314 -(rd designators are used to select desired w).8 F 1.314(ords from the e) --.1 F -.15(ve)-.25 G 3.814(nt. A).15 F F1(:)3.814 E F0 1.313 -(separates the e)3.813 F -.15(ve)-.25 G 1.313(nt speci\214cation).15 F -.529(from the w)108 304.8 R .529(ord designator)-.1 F 5.529(.I)-.55 G -3.029(tm)-5.529 G .529(ay be omitted if the w)-3.029 F .529 +(iltin\).).2 E F1(!)108 230.4 Q/F2 10/Times-Italic@0 SF(n)A F0 +(Refer to command line)144 230.4 Q F2(n)2.86 E F0(.).24 E F1<21ad>108 +242.4 Q F2(n)A F0(Refer to the current command minus)144 242.4 Q F2(n) +2.86 E F0(.).24 E F1(!!)108 254.4 Q F0(Refer to the pre)144 254.4 Q +(vious command.)-.25 E(This is a synon)5 E(ym for `!\2551'.)-.15 E F1(!) +108 266.4 Q F2(string)A F0 .865(Refer to the most recent command preced\ +ing the current position in the history list starting with)144 266.4 R +F2(string)144.34 278.4 Q F0(.).22 E F1(!?)108 290.4 Q F2(string)A F1 +([?])A F0 1.503(Refer to the most recent command preceding the current \ +position in the history list containing)144 302.4 R F2(string)144.34 +314.4 Q F0 5.496(.T).22 G .496(he trailing)-5.496 F F1(?)2.996 E F0 .496 +(may be omitted if)2.996 F F2(string)3.336 E F0 .497(is follo)3.216 F +.497(wed immediately by a ne)-.25 F 2.997(wline. If)-.25 F F2(string) +2.997 E F0(is)2.997 E .391(missing, the string from the most recent sea\ +rch is used; it is an error if there is no pre)144 326.4 R .39 +(vious search)-.25 F(string.)144 338.4 Q/F3 12/Times-Bold@0 SF(^)108 +355.4 Q F2(string1)-5 I F3(^)5 I F2(string2)-5 I F3(^)5 I F0 .752 +(Quick substitution.)144 362.4 R .752(Repeat the pre)5.752 F .753 +(vious command, replacing)-.25 F F2(string1)3.593 E F0(with)3.253 E F2 +(string2)3.593 E F0 5.753(.E).02 G(qui)-5.753 E -.25(va)-.25 G .753 +(lent to).25 F -.74(``)144 374.4 S(!!:s).74 E/F4 12/Times-Roman@0 SF(^)5 +I F2(string1)-5 I F4(^)5 I F2(string2)-5 I F4(^)5 I F0 1.48 -.74('' \() +-5 L(see).74 E F1(Modi\214ers)2.5 E F0(belo)2.5 E(w\).)-.25 E F1(!#)108 +386.4 Q F0(The entire command line typed so f)144 386.4 Q(ar)-.1 E(.) +-.55 E F1 -.75(Wo)87 403.2 S(rd Designators).75 E F0 -.8(Wo)108 415.2 S +1.314(rd designators are used to select desired w).8 F 1.314 +(ords from the e)-.1 F -.15(ve)-.25 G 3.814(nt. A).15 F F1(:)3.814 E F0 +1.313(separates the e)3.813 F -.15(ve)-.25 G 1.313(nt speci\214cation) +.15 F .529(from the w)108 427.2 R .529(ord designator)-.1 F 5.529(.I) +-.55 G 3.029(tm)-5.529 G .529(ay be omitted if the w)-3.029 F .529 (ord designator be)-.1 F .529(gins with a)-.15 F F1(^)3.029 E F0(,)A F1 ($)3.029 E F0(,)A F1(*)3.029 E F0(,)A F13.029 E F0 3.029(,o)C(r) -3.029 E F1(%)3.029 E F0 5.53(.W)C(ords)-6.33 E .516 -(are numbered from the be)108 316.8 R .516 +(are numbered from the be)108 439.2 R .516 (ginning of the line, with the \214rst w)-.15 F .516 (ord being denoted by 0 \(zero\).)-.1 F -.8(Wo)5.515 G .515(rds are in-) -.8 F(serted into the current line separated by single spaces.)108 328.8 -Q F1 2.5(0\()108 345.6 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 357.6 -Q 2.5(ord. F)-.1 F(or the shell, this is the command w)-.15 E(ord.)-.1 E -F2(n)108.36 369.6 Q F0(The)144 369.6 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E -F1(^)108 381.6 Q F0(The \214rst ar)144 381.6 Q 2.5(gument. That)-.18 F -(is, w)2.5 E(ord 1.)-.1 E F1($)108 393.6 Q F0 .063(The last w)144 393.6 -R 2.563(ord. This)-.1 F .063(is usually the last ar)2.563 F .064 -(gument, b)-.18 F .064(ut will e)-.2 F .064(xpand to the zeroth w)-.15 F -.064(ord if there is only)-.1 F(one w)144 405.6 Q(ord in the line.)-.1 E -F1(%)108 417.6 Q F0 1.42(The \214rst w)144 417.6 R 1.42 +.8 F(serted into the current line separated by single spaces.)108 451.2 +Q F1 2.5(0\()108 468 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 480 Q +2.5(ord. F)-.1 F(or the shell, this is the command w)-.15 E(ord.)-.1 E +F2(n)108.36 492 Q F0(The)144 492 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E F1(^) +108 504 Q F0(The \214rst ar)144 504 Q 2.5(gument. That)-.18 F(is, w)2.5 +E(ord 1.)-.1 E F1($)108 516 Q F0 .063(The last w)144 516 R 2.563 +(ord. This)-.1 F .063(is usually the last ar)2.563 F .064(gument, b)-.18 +F .064(ut will e)-.2 F .064(xpand to the zeroth w)-.15 F .064 +(ord if there is only)-.1 F(one w)144 528 Q(ord in the line.)-.1 E F1(%) +108 540 Q F0 1.42(The \214rst w)144 540 R 1.42 (ord matched by the most recent `?)-.1 F F2(string)A F0 1.419 (?' search, if the search string be)B 1.419(gins with a)-.15 F -(character that is part of a w)144 429.6 Q(ord.)-.1 E F2(x)108.77 441.6 -Q F1A F2(y)A F0 2.5(Ar)144 441.6 S(ange of w)-2.5 E(ords; `\255)-.1 -E F2(y)A F0 2.5('a)C(bbre)-2.5 E(viates `0\255)-.25 E F2(y)A F0('.)A F1 -(*)108 453.6 Q F0 .315(All of the w)144 453.6 R .315(ords b)-.1 F .315 +(character that is part of a w)144 552 Q(ord.)-.1 E F2(x)108.77 564 Q F1 +A F2(y)A F0 2.5(Ar)144 564 S(ange of w)-2.5 E(ords; `\255)-.1 E F2 +(y)A F0 2.5('a)C(bbre)-2.5 E(viates `0\255)-.25 E F2(y)A F0('.)A F1(*) +108 576 Q F0 .315(All of the w)144 576 R .315(ords b)-.1 F .315 (ut the zeroth.)-.2 F .315(This is a synon)5.315 F .315(ym for `)-.15 F F2(1\255$)A F0 2.815('. It)B .315(is not an error to use)2.815 F F1(*) -2.816 E F0 .316(if there is)2.816 F(just one w)144 465.6 Q(ord in the e) +2.816 E F0 .316(if there is)2.816 F(just one w)144 588 Q(ord in the e) -.1 E -.15(ve)-.25 G(nt; the empty string is returned in that case.).15 -E F1(x*)108 477.6 Q F0(Abbre)144 477.6 Q(viates)-.25 E F2(x\255$)2.5 E -F0(.)A F1<78ad>108 489.6 Q F0(Abbre)144 489.6 Q(viates)-.25 E F2(x\255$) -2.5 E F0(lik)2.5 E(e)-.1 E F1(x*)2.5 E F0 2.5(,b)C(ut omits the last w) --2.7 E 2.5(ord. If)-.1 F F1(x)2.5 E F0(is missing, it def)2.5 E -(aults to 0.)-.1 E(If a w)108 506.4 Q -(ord designator is supplied without an e)-.1 E -.15(ve)-.25 G -(nt speci\214cation, the pre).15 E(vious command is used as the e)-.25 E --.15(ve)-.25 G(nt.).15 E F1(Modi\214ers)87 523.2 Q F0 .184 -(After the optional w)108 535.2 R .184(ord designator)-.1 F 2.684(,t)-.4 -G .183(here may appear a sequence of one or more of the follo)-2.684 F -.183(wing modi\214ers,)-.25 F(each preceded by a `:'.)108 547.2 Q +E F1(x*)108 600 Q F0(Abbre)144 600 Q(viates)-.25 E F2(x\255$)2.5 E F0(.) +A F1<78ad>108 612 Q F0(Abbre)144 612 Q(viates)-.25 E F2(x\255$)2.5 E F0 +(lik)2.5 E(e)-.1 E F1(x*)2.5 E F0 2.5(,b)C(ut omits the last w)-2.7 E +2.5(ord. If)-.1 F F1(x)2.5 E F0(is missing, it def)2.5 E(aults to 0.)-.1 +E(If a w)108 628.8 Q(ord designator is supplied without an e)-.1 E -.15 +(ve)-.25 G(nt speci\214cation, the pre).15 E +(vious command is used as the e)-.25 E -.15(ve)-.25 G(nt.).15 E F1 +(Modi\214ers)87 645.6 Q F0 .184(After the optional w)108 657.6 R .184 +(ord designator)-.1 F 2.684(,t)-.4 G .183 +(here may appear a sequence of one or more of the follo)-2.684 F .183 +(wing modi\214ers,)-.25 F(each preceded by a `:'.)108 669.6 Q (These modify)5 E 2.5(,o)-.65 G 2.5(re)-2.5 G(dit, the w)-2.5 E (ord or w)-.1 E(ords selected from the history e)-.1 E -.15(ve)-.25 G -(nt.).15 E F1(h)108 564 Q F0(Remo)144 564 Q .3 -.15(ve a t)-.15 H +(nt.).15 E F1(h)108 686.4 Q F0(Remo)144 686.4 Q .3 -.15(ve a t)-.15 H (railing \214lename component, lea).15 E(ving only the head.)-.2 E F1(t) -108 576 Q F0(Remo)144 576 Q .3 -.15(ve a)-.15 H +108 698.4 Q F0(Remo)144 698.4 Q .3 -.15(ve a)-.15 H (ll leading \214lename components, lea).15 E(ving the tail.)-.2 E F1(r) -108 588 Q F0(Remo)144 588 Q .3 -.15(ve a t)-.15 H(railing suf).15 E +108 710.4 Q F0(Remo)144 710.4 Q .3 -.15(ve a t)-.15 H(railing suf).15 E (\214x of the form)-.25 E F2(.xxx)2.5 E F0 2.5(,l)C(ea)-2.5 E -(ving the basename.)-.2 E F1(e)108 600 Q F0(Remo)144 600 Q .3 -.15(ve a) --.15 H(ll b).15 E(ut the trailing suf)-.2 E(\214x.)-.25 E F1(p)108 612 Q -F0(Print the ne)144 612 Q 2.5(wc)-.25 G(ommand b)-2.5 E(ut do not e)-.2 -E -.15(xe)-.15 G(cute it.).15 E F1(q)108 624 Q F0 -(Quote the substituted w)144 624 Q -(ords, escaping further substitutions.)-.1 E F1(x)108 636 Q F0 .385 -(Quote the substituted w)144 636 R .385(ords as with)-.1 F F1(q)2.885 E -F0 2.885(,b)C .386(ut break into w)-3.085 F .386(ords at)-.1 F F1 -(blanks)2.886 E F0 .386(and ne)2.886 F 2.886(wlines. The)-.25 F F1(q) -2.886 E F0(and)2.886 E F1(x)2.886 E F0(modi\214ers are mutually e)144 -648 Q(xclusi)-.15 E -.15(ve)-.25 G 2.5(;t).15 G -(he last one supplied is used.)-2.5 E F1(s/)108 660 Q F2(old)A F1(/)A F2 -(ne)A(w)-.15 E F1(/)A F0(Substitute)144 672 Q F2(ne)3.329 E(w)-.15 E F0 -.469(for the \214rst occurrence of)3.279 F F2(old)3.199 E F0 .469 -(in the e)3.739 F -.15(ve)-.25 G .469(nt line.).15 F(An)5.469 E 2.969 -(yc)-.15 G .469(haracter may be used as the)-2.969 F .953 -(delimiter in place of /.)144 684 R .953 -(The \214nal delimiter is optional if it is the last character of the e) -5.953 F -.15(ve)-.25 G .954(nt line.).15 F .131 -(The delimiter may be quoted in)144 696 R F2(old)2.861 E F0(and)3.401 E -F2(ne)2.991 E(w)-.15 E F0 .131(with a single backslash.)2.941 F .131 -(If & appears in)5.131 F F2(ne)2.991 E(w)-.15 E F0 2.631(,i).31 G 2.631 -(ti)-2.631 G 2.631(sr)-2.631 G(e-)-2.631 E .619(placed by)144 708 R F2 -(old)3.349 E F0 5.619(.A).77 G .619(single backslash will quote the &.) --2.5 F(If)5.619 E F2(old)3.349 E F0 .619(is null, it is set to the last) -3.889 F F2(old)3.349 E F0(substi-)3.89 E .487(tuted, or)144 720 R 2.987 -(,i)-.4 G 2.987(fn)-2.987 G 2.987(op)-2.987 G(re)-2.987 E .486 -(vious history substitutions took place, the last)-.25 F F2(string)3.326 -E F0 .486(in a)3.206 F F1(!?)2.986 E F2(string)A F1([?])A F0 2.986 -(search. If)5.486 F(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(58) -193.45 E 0 Cg EP +(ving the basename.)-.2 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E +(58)199.835 E 0 Cg EP %%Page: 59 59 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 -/Times-Italic@0 SF(ne)144.36 84 Q(w)-.15 E F0(is null, each matching) -2.81 E F1(old)2.73 E F0(is deleted.)3.27 E/F2 10/Times-Bold@0 SF(&)108 -96 Q F0(Repeat the pre)144 96 Q(vious substitution.)-.25 E F2(g)108 108 -Q F0 .397(Cause changes to be applied o)144 108 R -.15(ve)-.15 G 2.897 -(rt).15 G .398(he entire e)-2.897 F -.15(ve)-.25 G .398(nt line.).15 F -.398(This is used in conjunction with `)5.398 F F2(:s)A F0 2.898('\()C -(e.g.,)-2.898 E(`)144 120 Q F2(:gs/)A F1(old)A F2(/)A F1(ne)A(w)-.15 E -F2(/)A F0 .351('\) or `)B F2(:&)A F0 2.851('. If)B .351(used with `) -2.851 F F2(:s)A F0 .351(', an)B 2.851(yd)-.15 G .35 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(e)108 84 Q F0(Remo)144 84 Q .3 -.15(ve a)-.15 H(ll b).15 E +(ut the trailing suf)-.2 E(\214x.)-.25 E F1(p)108 96 Q F0(Print the ne) +144 96 Q 2.5(wc)-.25 G(ommand b)-2.5 E(ut do not e)-.2 E -.15(xe)-.15 G +(cute it.).15 E F1(q)108 108 Q F0(Quote the substituted w)144 108 Q +(ords, escaping further substitutions.)-.1 E F1(x)108 120 Q F0 .385 +(Quote the substituted w)144 120 R .385(ords as with)-.1 F F1(q)2.885 E +F0 2.885(,b)C .386(ut break into w)-3.085 F .386(ords at)-.1 F F1 +(blanks)2.886 E F0 .386(and ne)2.886 F 2.886(wlines. The)-.25 F F1(q) +2.886 E F0(and)2.886 E F1(x)2.886 E F0(modi\214ers are mutually e)144 +132 Q(xclusi)-.15 E -.15(ve)-.25 G 2.5(;t).15 G +(he last one supplied is used.)-2.5 E F1(s/)108 144 Q/F2 10 +/Times-Italic@0 SF(old)A F1(/)A F2(ne)A(w)-.15 E F1(/)A F0(Substitute) +144 156 Q F2(ne)3.329 E(w)-.15 E F0 .469(for the \214rst occurrence of) +3.279 F F2(old)3.199 E F0 .469(in the e)3.739 F -.15(ve)-.25 G .469 +(nt line.).15 F(An)5.469 E 2.969(yc)-.15 G .469 +(haracter may be used as the)-2.969 F .953(delimiter in place of /.)144 +168 R .953 +(The \214nal delimiter is optional if it is the last character of the e) +5.953 F -.15(ve)-.25 G .954(nt line.).15 F .131 +(The delimiter may be quoted in)144 180 R F2(old)2.861 E F0(and)3.401 E +F2(ne)2.991 E(w)-.15 E F0 .131(with a single backslash.)2.941 F .131 +(If & appears in)5.131 F F2(ne)2.991 E(w)-.15 E F0 2.631(,i).31 G 2.631 +(ti)-2.631 G 2.631(sr)-2.631 G(e-)-2.631 E .619(placed by)144 192 R F2 +(old)3.349 E F0 5.619(.A).77 G .619(single backslash will quote the &.) +-2.5 F(If)5.619 E F2(old)3.349 E F0 .619(is null, it is set to the last) +3.889 F F2(old)3.349 E F0(substi-)3.89 E .487(tuted, or)144 204 R 2.987 +(,i)-.4 G 2.987(fn)-2.987 G 2.987(op)-2.987 G(re)-2.987 E .486 +(vious history substitutions took place, the last)-.25 F F2(string)3.326 +E F0 .486(in a)3.206 F F1(!?)2.986 E F2(string)A F1([?])A F0 2.986 +(search. If)5.486 F F2(ne)144.36 216 Q(w)-.15 E F0 +(is null, each matching)2.81 E F2(old)2.73 E F0(is deleted.)3.27 E F1(&) +108 228 Q F0(Repeat the pre)144 228 Q(vious substitution.)-.25 E F1(g) +108 240 Q F0 .397(Cause changes to be applied o)144 240 R -.15(ve)-.15 G +2.897(rt).15 G .398(he entire e)-2.897 F -.15(ve)-.25 G .398(nt line.) +.15 F .398(This is used in conjunction with `)5.398 F F1(:s)A F0 2.898 +('\()C(e.g.,)-2.898 E(`)144 252 Q F1(:gs/)A F2(old)A F1(/)A F2(ne)A(w) +-.15 E F1(/)A F0 .351('\) or `)B F1(:&)A F0 2.851('. If)B .351 +(used with `)2.851 F F1(:s)A F0 .351(', an)B 2.851(yd)-.15 G .35 (elimiter can be used in place of /, and the \214nal de-)-2.851 F -(limiter is optional if it is the last character of the e)144 132 Q -.15 -(ve)-.25 G(nt line.).15 E(An)5 E F2(a)2.5 E F0(may be used as a synon) -2.5 E(ym for)-.15 E F2(g)2.5 E F0(.)A F2(G)108 144 Q F0(Apply the follo) -144 144 Q(wing `)-.25 E F2(s)A F0 2.5('o)C 2.5(r`)-2.5 G F2(&)-2.5 E F0 +(limiter is optional if it is the last character of the e)144 264 Q -.15 +(ve)-.25 G(nt line.).15 E(An)5 E F1(a)2.5 E F0(may be used as a synon) +2.5 E(ym for)-.15 E F1(g)2.5 E F0(.)A F1(G)108 276 Q F0(Apply the follo) +144 276 Q(wing `)-.25 E F1(s)A F0 2.5('o)C 2.5(r`)-2.5 G F1(&)-2.5 E F0 2.5('m)C(odi\214er once to each w)-2.5 E(ord in the e)-.1 E -.15(ve)-.25 -G(nt line.).15 E/F3 10.95/Times-Bold@0 SF(SHELL B)72 160.8 Q(UIL)-.11 E -(TIN COMMANDS)-1.007 E F0 .062(Unless otherwise noted, each b)108 172.8 +G(nt line.).15 E/F3 10.95/Times-Bold@0 SF(SHELL B)72 292.8 Q(UIL)-.11 E +(TIN COMMANDS)-1.007 E F0 .062(Unless otherwise noted, each b)108 304.8 R .062(uiltin command documented in this section as accepting options p\ -receded by)-.2 F F2108 184.8 Q F0(accepts)3.077 E F23.077 E F0 -.577(to signify the end of the options.)3.077 F(The)5.577 E F2(:)3.077 E -F0(,)A F2(true)3.077 E F0(,)A F2(false)3.077 E F0 3.077(,a)C(nd)-3.077 E -F2(test)3.077 E F0(/)A F2([)A F0 -.2(bu)3.077 G .577 -(iltins do not accept options).2 F .461(and do not treat)108 196.8 R F2 -2.961 E F0(specially)2.961 E 5.461(.T)-.65 G(he)-5.461 E F2(exit) -2.961 E F0(,)A F2(logout)2.961 E F0(,)A F2 -.18(re)2.961 G(tur).18 E(n) --.15 E F0(,)A F2(br)2.961 E(eak)-.18 E F0(,)A F2(continue)2.961 E F0(,)A -F2(let)2.961 E F0 2.961(,a)C(nd)-2.961 E F2(shift)2.961 E F0 -.2(bu) -2.962 G .462(iltins accept and).2 F .261(process ar)108 208.8 R .261 -(guments be)-.18 F .261(ginning with)-.15 F F22.761 E F0 .261 -(without requiring)2.761 F F22.761 E F0 5.261(.O)C .261(ther b) +receded by)-.2 F F1108 316.8 Q F0(accepts)3.077 E F13.077 E F0 +.577(to signify the end of the options.)3.077 F(The)5.577 E F1(:)3.077 E +F0(,)A F1(true)3.077 E F0(,)A F1(false)3.077 E F0 3.077(,a)C(nd)-3.077 E +F1(test)3.077 E F0(/)A F1([)A F0 -.2(bu)3.077 G .577 +(iltins do not accept options).2 F .461(and do not treat)108 328.8 R F1 +2.961 E F0(specially)2.961 E 5.461(.T)-.65 G(he)-5.461 E F1(exit) +2.961 E F0(,)A F1(logout)2.961 E F0(,)A F1 -.18(re)2.961 G(tur).18 E(n) +-.15 E F0(,)A F1(br)2.961 E(eak)-.18 E F0(,)A F1(continue)2.961 E F0(,)A +F1(let)2.961 E F0 2.961(,a)C(nd)-2.961 E F1(shift)2.961 E F0 -.2(bu) +2.962 G .462(iltins accept and).2 F .261(process ar)108 340.8 R .261 +(guments be)-.18 F .261(ginning with)-.15 F F12.761 E F0 .261 +(without requiring)2.761 F F12.761 E F0 5.261(.O)C .261(ther b) -5.261 F .26(uiltins that accept ar)-.2 F .26(guments b)-.18 F .26 (ut are not)-.2 F 1.154(speci\214ed as accepting options interpret ar) -108 220.8 R 1.154(guments be)-.18 F 1.154(ginning with)-.15 F F2 +108 352.8 R 1.154(guments be)-.18 F 1.154(ginning with)-.15 F F1 3.654 E F0 1.154(as in)3.654 F -.25(va)-.4 G 1.154 -(lid options and require).25 F F23.654 E F0(to)3.654 E(pre)108 -232.8 Q -.15(ve)-.25 G(nt this interpretation.).15 E F2(:)108 250.8 Q F0 -([)2.5 E F1(ar)A(guments)-.37 E F0(])A .452(No ef)144 262.8 R .452 +(lid options and require).25 F F13.654 E F0(to)3.654 E(pre)108 +364.8 Q -.15(ve)-.25 G(nt this interpretation.).15 E F1(:)108 382.8 Q F0 +([)2.5 E F2(ar)A(guments)-.37 E F0(])A .452(No ef)144 394.8 R .452 (fect; the command does nothing be)-.25 F .452(yond e)-.15 F(xpanding) --.15 E F1(ar)3.282 E(guments)-.37 E F0 .451(and performing an)3.221 F -2.951(ys)-.15 G(peci\214ed)-2.951 E 2.5(redirections. The)144 274.8 R -(return status is zero.)2.5 E F2(.)110.5 291.6 Q F1(\214lename)6.666 E -F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A F2(sour)108 303.6 Q(ce)-.18 E -F1(\214lename)2.5 E F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A 1.02 -(Read and e)144 315.6 R -.15(xe)-.15 G 1.02(cute commands from).15 F F1 +-.15 E F2(ar)3.282 E(guments)-.37 E F0 .451(and performing an)3.221 F +2.951(ys)-.15 G(peci\214ed)-2.951 E 2.5(redirections. The)144 406.8 R +(return status is zero.)2.5 E F1(.)110.5 423.6 Q F2(\214lename)6.666 E +F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A F1(sour)108 435.6 Q(ce)-.18 E +F2(\214lename)2.5 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A 1.02 +(Read and e)144 447.6 R -.15(xe)-.15 G 1.02(cute commands from).15 F F2 (\214lename)5.43 E F0 1.02(in the current shell en)3.7 F 1.02 (vironment and return the e)-.4 F(xit)-.15 E 1.331 -(status of the last command e)144 327.6 R -.15(xe)-.15 G 1.331 -(cuted from).15 F F1(\214lename)5.741 E F0 6.331(.I).18 G(f)-6.331 E F1 +(status of the last command e)144 459.6 R -.15(xe)-.15 G 1.331 +(cuted from).15 F F2(\214lename)5.741 E F0 6.331(.I).18 G(f)-6.331 E F2 (\214lename)5.741 E F0 1.33(does not contain a slash, \214le-)4.011 F -.022(names in)144 339.6 R/F4 9/Times-Bold@0 SF -.666(PA)2.522 G(TH)-.189 -E F0 .022(are used to \214nd the directory containing)2.272 F F1 -(\214lename)4.432 E F0 2.522(,b).18 G(ut)-2.722 E F1(\214lename)2.522 E -F0 .023(does not need to be)2.523 F -.15(exe)144 351.6 S 3.861 +.022(names in)144 471.6 R/F4 9/Times-Bold@0 SF -.666(PA)2.522 G(TH)-.189 +E F0 .022(are used to \214nd the directory containing)2.272 F F2 +(\214lename)4.432 E F0 2.522(,b).18 G(ut)-2.722 E F2(\214lename)2.522 E +F0 .023(does not need to be)2.523 F -.15(exe)144 483.6 S 3.861 (cutable. The).15 F 1.361(\214le searched for in)3.861 F F4 -.666(PA) 3.861 G(TH)-.189 E F0 1.361(need not be e)3.611 F -.15(xe)-.15 G 3.86 -(cutable. When).15 F F2(bash)3.86 E F0 1.36(is not in)3.86 F F1(posix) -3.86 E(mode)144 363.6 Q F0 2.648(,t)C .148 +(cutable. When).15 F F1(bash)3.86 E F0 1.36(is not in)3.86 F F2(posix) +3.86 E(mode)144 495.6 Q F0 2.648(,t)C .148 (he current directory is searched if no \214le is found in)-2.648 F F4 -.666(PA)2.648 G(TH)-.189 E/F5 9/Times-Roman@0 SF(.)A F0 .149(If the) -4.648 F F2(sour)2.649 E(cepath)-.18 E F0 .149(option to the)2.649 F F2 -(shopt)144 375.6 Q F0 -.2(bu)3.66 G 1.16(iltin command is turned of).2 F +4.648 F F1(sour)2.649 E(cepath)-.18 E F0 .149(option to the)2.649 F F1 +(shopt)144 507.6 Q F0 -.2(bu)3.66 G 1.16(iltin command is turned of).2 F 1.159(f, the)-.25 F F4 -.666(PA)3.659 G(TH)-.189 E F0 1.159 -(is not searched.)3.409 F 1.159(If an)6.159 F(y)-.15 E F1(ar)3.659 E -(guments)-.37 E F0 1.159(are supplied,)3.659 F(the)144 387.6 Q 3.691(yb) --.15 G 1.191(ecome the positional parameters when)-3.691 F F1 +(is not searched.)3.409 F 1.159(If an)6.159 F(y)-.15 E F2(ar)3.659 E +(guments)-.37 E F0 1.159(are supplied,)3.659 F(the)144 519.6 Q 3.691(yb) +-.15 G 1.191(ecome the positional parameters when)-3.691 F F2 (\214lename)3.692 E F0 1.192(is e)3.692 F -.15(xe)-.15 G 3.692 (cuted. Otherwise).15 F 1.192(the positional pa-)3.692 F .82 -(rameters are unchanged.)144 399.6 R .82(If the)5.82 F F23.32 E F0 -.82(option is enabled,)3.32 F F2(.)3.32 E F0 .82(inherits an)3.32 F 3.32 -(yt)-.15 G .82(rap on)-3.32 F F2(DEB)3.32 E(UG)-.1 E F0 3.32(;i)C 3.32 -(fi)-3.32 G 3.32(ti)-3.32 G 3.32(sn)-3.32 G(ot,)-3.32 E(an)144 411.6 Q -(y)-.15 E F2(DEB)3.322 E(UG)-.1 E F0 .822(trap string is sa)3.322 F -.15 -(ve)-.2 G 3.322(da).15 G .822(nd restored around the call to)-3.322 F F2 -(.)3.322 E F0 3.322(,a)C(nd)-3.322 E F2(.)3.322 E F0 .823(unsets the) -3.323 F F2(DEB)3.323 E(UG)-.1 E F0(trap)3.323 E .227(while it e)144 -423.6 R -.15(xe)-.15 G 2.727(cutes. If).15 F F22.727 E F0 .227 -(is not set, and the sourced \214le changes the)2.727 F F2(DEB)2.727 E +(rameters are unchanged.)144 531.6 R .82(If the)5.82 F F13.32 E F0 +.82(option is enabled,)3.32 F F1(.)3.32 E F0 .82(inherits an)3.32 F 3.32 +(yt)-.15 G .82(rap on)-3.32 F F1(DEB)3.32 E(UG)-.1 E F0 3.32(;i)C 3.32 +(fi)-3.32 G 3.32(ti)-3.32 G 3.32(sn)-3.32 G(ot,)-3.32 E(an)144 543.6 Q +(y)-.15 E F1(DEB)3.322 E(UG)-.1 E F0 .822(trap string is sa)3.322 F -.15 +(ve)-.2 G 3.322(da).15 G .822(nd restored around the call to)-3.322 F F1 +(.)3.322 E F0 3.322(,a)C(nd)-3.322 E F1(.)3.322 E F0 .823(unsets the) +3.323 F F1(DEB)3.323 E(UG)-.1 E F0(trap)3.323 E .227(while it e)144 +555.6 R -.15(xe)-.15 G 2.727(cutes. If).15 F F12.727 E F0 .227 +(is not set, and the sourced \214le changes the)2.727 F F1(DEB)2.727 E (UG)-.1 E F0 .227(trap, the ne)2.727 F 2.726(wv)-.25 G .226(alue is) --2.976 F .89(retained when)144 435.6 R F2(.)3.39 E F0 3.39 +-2.976 F .89(retained when)144 567.6 R F1(.)3.39 E F0 3.39 (completes. The)3.39 F .891 (return status is the status of the last command e)3.39 F .891 -(xited within the)-.15 F(script \(0 if no commands are e)144 447.6 Q --.15(xe)-.15 G(cuted\), and f).15 E(alse if)-.1 E F1(\214lename)4.41 E -F0(is not found or cannot be read.)2.68 E F2(alias)108 464.4 Q F0([)2.5 -E F2A F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 2.5(].)C -(..])-2.5 E F2(Alias)144 476.4 Q F0 2.725(with no ar)5.225 F 2.724 -(guments or with the)-.18 F F25.224 E F0 2.724 -(option prints the list of aliases in the form)5.224 F F2(alias)5.224 E -F1(name)144 488.4 Q F0(=)A F1(value)A F0 .58(on standard output.)3.08 F +(xited within the)-.15 F(script \(0 if no commands are e)144 579.6 Q +-.15(xe)-.15 G(cuted\), and f).15 E(alse if)-.1 E F2(\214lename)4.41 E +F0(is not found or cannot be read.)2.68 E F1(alias)108 596.4 Q F0([)2.5 +E F1A F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C +(..])-2.5 E F1(Alias)144 608.4 Q F0 2.725(with no ar)5.225 F 2.724 +(guments or with the)-.18 F F15.224 E F0 2.724 +(option prints the list of aliases in the form)5.224 F F1(alias)5.224 E +F2(name)144 620.4 Q F0(=)A F2(value)A F0 .58(on standard output.)3.08 F .58(When ar)5.58 F .58 -(guments are supplied, an alias is de\214ned for each)-.18 F F1(name) -3.08 E F0(whose)144 500.4 Q F1(value)2.509 E F0 .009(is gi)2.509 F -.15 -(ve)-.25 G 2.509(n. A).15 F .009(trailing space in)2.509 F F1(value) +(guments are supplied, an alias is de\214ned for each)-.18 F F2(name) +3.08 E F0(whose)144 632.4 Q F2(value)2.509 E F0 .009(is gi)2.509 F -.15 +(ve)-.25 G 2.509(n. A).15 F .009(trailing space in)2.509 F F2(value) 2.509 E F0 .009(causes the ne)2.509 F .009(xt w)-.15 F .009 (ord to be check)-.1 F .008(ed for alias substi-)-.1 F .579 -(tution when the alias is e)144 512.4 R 3.079(xpanded. F)-.15 F .579 -(or each)-.15 F F1(name)3.079 E F0 .579(in the ar)3.079 F .579 -(gument list for which no)-.18 F F1(value)3.079 E F0 .579(is sup-)3.079 -F 1.314(plied, the name and v)144 524.4 R 1.314 -(alue of the alias is printed.)-.25 F F2(Alias)6.314 E F0 1.314 -(returns true unless a)3.814 F F1(name)3.814 E F0 1.313(is gi)3.814 F +(tution when the alias is e)144 644.4 R 3.079(xpanded. F)-.15 F .579 +(or each)-.15 F F2(name)3.079 E F0 .579(in the ar)3.079 F .579 +(gument list for which no)-.18 F F2(value)3.079 E F0 .579(is sup-)3.079 +F 1.314(plied, the name and v)144 656.4 R 1.314 +(alue of the alias is printed.)-.25 F F1(Alias)6.314 E F0 1.314 +(returns true unless a)3.814 F F2(name)3.814 E F0 1.313(is gi)3.814 F -.15(ve)-.25 G 3.813(nf).15 G(or)-3.813 E -(which no alias has been de\214ned.)144 536.4 Q F2(bg)108 553.2 Q F0([) -2.5 E F1(jobspec)A F0(...])2.5 E .744(Resume each suspended job)144 -565.2 R F1(jobspec)3.244 E F0 .745 -(in the background, as if it had been started with)3.244 F F2(&)3.245 E -F0 5.745(.I)C(f)-5.745 E F1(job-)4.985 E(spec)144 577.2 Q F0 .672 +(which no alias has been de\214ned.)144 668.4 Q F1(bg)108 685.2 Q F0([) +2.5 E F2(jobspec)A F0(...])2.5 E .744(Resume each suspended job)144 +697.2 R F2(jobspec)3.244 E F0 .745 +(in the background, as if it had been started with)3.244 F F1(&)3.245 E +F0 5.745(.I)C(f)-5.745 E F2(job-)4.985 E(spec)144 709.2 Q F0 .672 (is not present, the shell')3.482 F 3.172(sn)-.55 G .672(otion of the) --3.172 F F1(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F2 -(bg)5.671 E F1(jobspec)4.911 E F0 .671(returns 0 unless run)3.481 F .418 -(when job control is disabled or)144 589.2 R 2.919(,w)-.4 G .419 +-3.172 F F2(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F1 +(bg)5.671 E F2(jobspec)4.911 E F0 .671(returns 0 unless run)3.481 F .418 +(when job control is disabled or)144 721.2 R 2.919(,w)-.4 G .419 (hen run with job control enabled, an)-2.919 F 2.919(ys)-.15 G -(peci\214ed)-2.919 E F1(jobspec)2.919 E F0 -.1(wa)2.919 G 2.919(sn).1 G -(ot)-2.919 E(found or w)144 601.2 Q(as started without job control.)-.1 -E F2(bind)108 618 Q F0([)2.5 E F2A F1 -.1(ke)2.5 G(ymap)-.2 E F0 -2.5(][)C F2(\255lpsvPSVX)-2.5 E F0(])A F2(bind)108 630 Q F0([)2.5 E F2 -A F1 -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F2-2.5 E F1 -(function)2.5 E F0 2.5(][)C F2-2.5 E F1(function)2.5 E F0 2.5(][)C -F2-2.5 E F1 -.1(ke)2.5 G(yseq)-.2 E F0(])A F2(bind)108 642 Q F0([) -2.5 E F2A F1 -.1(ke)2.5 G(ymap)-.2 E F0(])A F22.5 E F1 -(\214lename)2.5 E F2(bind)108 654 Q F0([)2.5 E F2A F1 -.1(ke)2.5 G -(ymap)-.2 E F0(])A F22.5 E F1 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F1 -(shell\255command)A F2(bind)108 666 Q F0([)2.5 E F2A F1 -.1(ke)2.5 -G(ymap)-.2 E F0(])A F1 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F1 -(function\255name)A F2(bind)108 678 Q F0([)2.5 E F2A F1 -.1(ke)2.5 -G(ymap)-.2 E F0(])A F1 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F1 -.37(re)C -(adline\255command).37 E F2(bind)108 690 Q F1 -.37(re)2.5 G -(adline-command-line).37 E F0 .239(Display current)144 702 R F2 -.18(re) -2.739 G(adline).18 E F0 -.1(ke)2.739 G 2.739(ya)-.05 G .239 -(nd function bindings, bind a k)-2.739 F .539 -.15(ey s)-.1 H .238 -(equence to a).15 F F2 -.18(re)2.738 G(adline).18 E F0 .238(function or) -2.738 F .039(macro, or set a)144 714 R F2 -.18(re)2.539 G(adline).18 E -F0 -.25(va)2.539 G 2.539(riable. Each).25 F .039(non-option ar)2.539 F -.04(gument is a command as it w)-.18 F .04(ould appear in a)-.1 F F2 --.18(re)144 726 S(adline).18 E F0 1.472(initialization \214le such as) -3.972 F F1(.inputr)4.202 E(c)-.37 E F0 3.971(,b).31 G 1.471 -(ut each binding or command must be passed as a)-4.171 F(GNU Bash 5.2)72 -768 Q(2022 March 11)144.29 E(59)193.45 E 0 Cg EP +(peci\214ed)-2.919 E F2(jobspec)2.919 E F0 -.1(wa)2.919 G 2.919(sn).1 G +(ot)-2.919 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(59)199.835 E 0 +Cg EP %%Page: 60 60 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .574(separate ar) -144 84 R .574 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(found or w)144 84 +Q(as started without job control.)-.1 E/F1 10/Times-Bold@0 SF(bind)108 +100.8 Q F0([)2.5 E F1A/F2 10/Times-Italic@0 SF -.1(ke)2.5 G(ymap) +-.2 E F0 2.5(][)C F1(\255lpsvPSVX)-2.5 E F0(])A F1(bind)108 112.8 Q F0 +([)2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F1-2.5 E +F2(function)2.5 E F0 2.5(][)C F1-2.5 E F2(function)2.5 E F0 2.5 +(][)C F1-2.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(])A F1(bind)108 124.8 +Q F0([)2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0(])A F12.5 E +F2(\214lename)2.5 E F1(bind)108 136.8 Q F0([)2.5 E F1A F2 -.1(ke) +2.5 G(ymap)-.2 E F0(])A F12.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A +F2(shell\255command)A F1(bind)108 148.8 Q F0([)2.5 E F1A F2 -.1 +(ke)2.5 G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2 +(function\255name)A F1(bind)108 160.8 Q F0([)2.5 E F1A F2 -.1(ke) +2.5 G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2 -.37(re)C +(adline\255command).37 E F1(bind)108 172.8 Q F2 -.37(re)2.5 G +(adline-command-line).37 E F0 .239(Display current)144 184.8 R F1 -.18 +(re)2.739 G(adline).18 E F0 -.1(ke)2.739 G 2.739(ya)-.05 G .239 +(nd function bindings, bind a k)-2.739 F .539 -.15(ey s)-.1 H .238 +(equence to a).15 F F1 -.18(re)2.738 G(adline).18 E F0 .238(function or) +2.738 F .039(macro, or set a)144 196.8 R F1 -.18(re)2.539 G(adline).18 E +F0 -.25(va)2.539 G 2.539(riable. Each).25 F .039(non-option ar)2.539 F +.04(gument is a command as it w)-.18 F .04(ould appear in a)-.1 F F1 +-.18(re)144 208.8 S(adline).18 E F0 .182(initialization \214le such as) +2.682 F F2(.inputr)2.912 E(c)-.37 E F0 2.682(,b).31 G .182 +(ut each binding or command must be passed as a sep-)-2.882 F 1.907 +(arate ar)144 220.8 R 1.907 (gument; e.g., '"\\C\255x\\C\255r": re\255read\255init\255\214le'.)-.18 -F .574(Options, if supplied, ha)5.574 F .874 -.15(ve t)-.2 H .574 -(he follo).15 F(wing)-.25 E(meanings:)144 96 Q/F1 10/Times-Bold@0 SF -144 108 Q/F2 10/Times-Italic@0 SF -.1(ke)2.5 G(ymap)-.2 E F0(Use) -180 120 Q F2 -.1(ke)5.159 G(ymap)-.2 E F0 2.659(as the k)5.349 F -.15 -(ey)-.1 G 2.658(map to be af).15 F 2.658 +F 1.907(Options, if supplied, ha)6.907 F 2.207 -.15(ve t)-.2 H 1.907 +(he follo).15 F(wing)-.25 E(meanings:)144 232.8 Q F1144 244.8 Q F2 +-.1(ke)2.5 G(ymap)-.2 E F0(Use)180 256.8 Q F2 -.1(ke)5.159 G(ymap)-.2 E +F0 2.659(as the k)5.349 F -.15(ey)-.1 G 2.658(map to be af).15 F 2.658 (fected by the subsequent bindings.)-.25 F(Acceptable)7.658 E F2 -.1(ke) -180 132 S(ymap)-.2 E F0 3.192(names are)5.882 F F2 3.192 +180 268.8 S(ymap)-.2 E F0 3.192(names are)5.882 F F2 3.192 (emacs, emacs\255standar)5.692 F 3.193 (d, emacs\255meta, emacs\255ctlx, vi, vi\255mo)-.37 F(ve)-.1 E(,)-.1 E -(vi\255command)180 144 Q F0 4.09(,a)C(nd)-4.09 E F2(vi\255insert)4.38 E -F0(.).68 E F2(vi)6.589 E F0 1.589(is equi)4.089 F -.25(va)-.25 G 1.589 +(vi\255command)180 280.8 Q F0 4.09(,a)C(nd)-4.09 E F2(vi\255insert)4.38 +E F0(.).68 E F2(vi)6.589 E F0 1.589(is equi)4.089 F -.25(va)-.25 G 1.589 (lent to).25 F F2(vi\255command)4.089 E F0(\()4.089 E F2(vi\255mo)A(ve) --.1 E F0 1.589(is also a syn-)4.089 F(on)180 156 Q(ym\);)-.15 E F2 +-.1 E F0 1.589(is also a syn-)4.089 F(on)180 292.8 Q(ym\);)-.15 E F2 (emacs)2.5 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F2 -(emacs\255standar)2.5 E(d)-.37 E F0(.)A F1144 168 Q F0 -(List the names of all)180 168 Q F1 -.18(re)2.5 G(adline).18 E F0 -(functions.)2.5 E F1144 180 Q F0(Display)180 180 Q F1 -.18(re)2.5 -G(adline).18 E F0(function names and bindings in such a w)2.5 E -(ay that the)-.1 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 192 Q -F0(List current)180 192 Q F1 -.18(re)2.5 G(adline).18 E F0 -(function names and bindings.)2.5 E F1144 204 Q F0(Display)180 204 -Q F1 -.18(re)3.655 G(adline).18 E F0 -.1(ke)3.655 G 3.655(ys)-.05 G -1.155(equences bound to macros and the strings the)-3.655 F 3.655(yo) --.15 G 1.155(utput in such a)-3.655 F -.1(wa)180 216 S 2.5(yt).1 G -(hat the)-2.5 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 228 Q F0 -(Display)180 228 Q F1 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5(ys) --.05 G(equences bound to macros and the strings the)-2.5 E 2.5(yo)-.15 G -(utput.)-2.5 E F1144 240 Q F0(Display)180 240 Q F1 -.18(re)2.5 G -(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E +(emacs\255standar)2.5 E(d)-.37 E F0(.)A F1144 304.8 Q F0 +(List the names of all)180 304.8 Q F1 -.18(re)2.5 G(adline).18 E F0 +(functions.)2.5 E F1144 316.8 Q F0(Display)180 316.8 Q F1 -.18(re) +2.5 G(adline).18 E F0(function names and bindings in such a w)2.5 E +(ay that the)-.1 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 328.8 +Q F0(List current)180 328.8 Q F1 -.18(re)2.5 G(adline).18 E F0 +(function names and bindings.)2.5 E F1144 340.8 Q F0(Display)180 +340.8 Q F1 -.18(re)3.655 G(adline).18 E F0 -.1(ke)3.655 G 3.655(ys)-.05 +G 1.155(equences bound to macros and the strings the)-3.655 F 3.655(yo) +-.15 G 1.155(utput in such a)-3.655 F -.1(wa)180 352.8 S 2.5(yt).1 G +(hat the)-2.5 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 364.8 Q +F0(Display)180 364.8 Q F1 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5 +(ys)-.05 G(equences bound to macros and the strings the)-2.5 E 2.5(yo) +-.15 G(utput.)-2.5 E F1144 376.8 Q F0(Display)180 376.8 Q F1 -.18 +(re)2.5 G(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E (alues in such a w)-.25 E(ay that the)-.1 E 2.5(yc)-.15 G -(an be re-read.)-2.5 E F1144 252 Q F0(List current)180 252 Q F1 --.18(re)2.5 G(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E -(alues.)-.25 E F1144 264 Q F2(\214lename)2.5 E F0(Read k)180 276 Q -.3 -.15(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A F1 -144 288 Q F2(function)2.5 E F0(Query about which k)180 300 Q -.15 -(ey)-.1 G 2.5(si).15 G -1.9 -.4(nv o)-2.5 H .2 -.1(ke t).4 H(he named).1 -E F2(function)2.5 E F0(.)A F1144 312 Q F2(function)2.5 E F0 -(Unbind all k)180 324 Q -.15(ey)-.1 G 2.5(sb).15 G(ound to the named) --2.5 E F2(function)2.5 E F0(.)A F1144 336 Q F2 -.1(ke)2.5 G(yseq) --.2 E F0(Remo)180 348 Q .3 -.15(ve a)-.15 H .3 -.15(ny c).15 H -(urrent binding for).15 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(.)A F1144 -360 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2(shell\255command)A F0(Cause) -180 372 Q F2(shell\255command)4.325 E F0 1.825(to be e)4.325 F -.15(xe) --.15 G 1.825(cuted whene).15 F -.15(ve)-.25 G(r).15 E F2 -.1(ke)4.325 G -(yseq)-.2 E F0 1.825(is entered.)4.325 F(When)6.825 E F2(shell\255com-) -4.325 E(mand)180 384 Q F0 1.764(is e)4.264 F -.15(xe)-.15 G 1.765 -(cuted, the shell sets the).15 F/F3 9/Times-Bold@0 SF(READLINE_LINE) -4.265 E F0 -.25(va)4.015 G 1.765(riable to the contents of the).25 F F1 --.18(re)180 396 S(adline).18 E F0 .375(line b)2.875 F(uf)-.2 E .375 -(fer and the)-.25 F F3(READLINE_POINT)2.875 E F0(and)2.625 E F3 -(READLINE_MARK)2.875 E F0 -.25(va)2.625 G .375(riables to the).25 F -1.185(current location of the insertion point and the sa)180 408 R -.15 -(ve)-.2 G 3.686(di).15 G 1.186(nsertion point \(the mark\), respec-) --3.686 F(ti)180 420 Q -.15(ve)-.25 G(ly).15 E 5.378(.T)-.65 G .377 +(an be re-read.)-2.5 E F1144 388.8 Q F0(List current)180 388.8 Q +F1 -.18(re)2.5 G(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E +(alues.)-.25 E F1144 400.8 Q F2(\214lename)2.5 E F0(Read k)180 +412.8 Q .3 -.15(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A +F1144 424.8 Q F2(function)2.5 E F0(Query about which k)180 436.8 Q +-.15(ey)-.1 G 2.5(si).15 G -1.9 -.4(nv o)-2.5 H .2 -.1(ke t).4 H +(he named).1 E F2(function)2.5 E F0(.)A F1144 448.8 Q F2(function) +2.5 E F0(Unbind all k)180 460.8 Q -.15(ey)-.1 G 2.5(sb).15 G +(ound to the named)-2.5 E F2(function)2.5 E F0(.)A F1144 472.8 Q +F2 -.1(ke)2.5 G(yseq)-.2 E F0(Remo)180 484.8 Q .3 -.15(ve a)-.15 H .3 +-.15(ny c).15 H(urrent binding for).15 E F2 -.1(ke)2.5 G(yseq)-.2 E F0 +(.)A F1144 496.8 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2 +(shell\255command)A F0(Cause)180 508.8 Q F2(shell\255command)4.325 E F0 +1.825(to be e)4.325 F -.15(xe)-.15 G 1.825(cuted whene).15 F -.15(ve) +-.25 G(r).15 E F2 -.1(ke)4.325 G(yseq)-.2 E F0 1.825(is entered.)4.325 F +(When)6.825 E F2(shell\255com-)4.325 E(mand)180 520.8 Q F0 1.764(is e) +4.264 F -.15(xe)-.15 G 1.765(cuted, the shell sets the).15 F/F3 9 +/Times-Bold@0 SF(READLINE_LINE)4.265 E F0 -.25(va)4.015 G 1.765 +(riable to the contents of the).25 F F1 -.18(re)180 532.8 S(adline).18 E +F0 .375(line b)2.875 F(uf)-.2 E .375(fer and the)-.25 F F3 +(READLINE_POINT)2.875 E F0(and)2.625 E F3(READLINE_MARK)2.875 E F0 -.25 +(va)2.625 G .375(riables to the).25 F 1.185 +(current location of the insertion point and the sa)180 544.8 R -.15(ve) +-.2 G 3.686(di).15 G 1.186(nsertion point \(the mark\), respec-)-3.686 F +(ti)180 556.8 Q -.15(ve)-.25 G(ly).15 E 5.378(.T)-.65 G .377 (he shell assigns an)-5.378 F 2.877(yn)-.15 G .377(umeric ar)-2.877 F .377(gument the user supplied to the)-.18 F F3(READLINE_AR-)2.877 E -(GUMENT)180 432 Q F0 -.25(va)3.604 G 3.854(riable. If).25 F 1.354 +(GUMENT)180 568.8 Q F0 -.25(va)3.604 G 3.854(riable. If).25 F 1.354 (there w)3.854 F 1.354(as no ar)-.1 F 1.354(gument, that v)-.18 F 1.354 (ariable is not set.)-.25 F 1.355(If the e)6.355 F -.15(xe)-.15 G(cuted) -.15 E .344(command changes the v)180 444 R .344(alue of an)-.25 F 2.843 -(yo)-.15 G(f)-2.843 E F3(READLINE_LINE)2.843 E/F4 9/Times-Roman@0 SF(,)A -F3(READLINE_POINT)2.593 E F4(,)A F0(or)2.593 E F3(READ-)2.843 E -(LINE_MARK)180 456 Q F4(,)A F0(those ne)2.25 E 2.5(wv)-.25 G -(alues will be re\215ected in the editing state.)-2.75 E F1144 468 -Q F0 .829(List all k)180 468 R 1.129 -.15(ey s)-.1 H .829 +.15 E .344(command changes the v)180 580.8 R .344(alue of an)-.25 F +2.843(yo)-.15 G(f)-2.843 E F3(READLINE_LINE)2.843 E/F4 9/Times-Roman@0 +SF(,)A F3(READLINE_POINT)2.593 E F4(,)A F0(or)2.593 E F3(READ-)2.843 E +(LINE_MARK)180 592.8 Q F4(,)A F0(those ne)2.25 E 2.5(wv)-.25 G +(alues will be re\215ected in the editing state.)-2.75 E F1144 +604.8 Q F0 .829(List all k)180 604.8 R 1.129 -.15(ey s)-.1 H .829 (equences bound to shell commands and the associated commands in a for) -.15 F(-)-.2 E(mat that can be reused as input.)180 480 Q(The return v) -144 496.8 Q(alue is 0 unless an unrecognized option is gi)-.25 E -.15 +.15 F(-)-.2 E(mat that can be reused as input.)180 616.8 Q(The return v) +144 633.6 Q(alue is 0 unless an unrecognized option is gi)-.25 E -.15 (ve)-.25 G 2.5(no).15 G 2.5(ra)-2.5 G 2.5(ne)-2.5 G(rror occurred.)-2.5 -E F1(br)108 513.6 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .055 -(Exit from within a)144 525.6 R F1 -.25(fo)2.555 G(r).25 E F0(,)A F1 +E F1(br)108 650.4 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .055 +(Exit from within a)144 662.4 R F1 -.25(fo)2.555 G(r).25 E F0(,)A F1 (while)2.555 E F0(,)A F1(until)2.555 E F0 2.555(,o)C(r)-2.555 E F1 (select)2.555 E F0 2.555(loop. If)2.555 F F2(n)2.555 E F0 .055 (is speci\214ed, break)2.555 F F2(n)2.555 E F0(le)2.555 E -.15(ve)-.25 G (ls.).15 E F2(n)5.414 E F0 .054(must be)2.794 F/F5 10/Symbol SF2.554 -E F0(1.)2.554 E(If)144 537.6 Q F2(n)3.074 E F0 .215(is greater than the\ +E F0(1.)2.554 E(If)144 674.4 Q F2(n)3.074 E F0 .215(is greater than the\ number of enclosing loops, all enclosing loops are e)2.954 F 2.715 (xited. The)-.15 F .215(return v)2.715 F(alue)-.25 E(is 0 unless)144 -549.6 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F1 -.2 -(bu)108 566.4 S(iltin).2 E F2(shell\255b)2.5 E(uiltin)-.2 E F0([)2.5 E -F2(ar)A(guments)-.37 E F0(])A(Ex)144 578.4 Q .771 +686.4 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F1 -.2 +(bu)108 703.2 S(iltin).2 E F2(shell\255b)2.5 E(uiltin)-.2 E F0([)2.5 E +F2(ar)A(guments)-.37 E F0(])A(Ex)144 715.2 Q .771 (ecute the speci\214ed shell b)-.15 F .771(uiltin, passing it)-.2 F F2 (ar)3.601 E(guments)-.37 E F0 3.271(,a).27 G .771(nd return its e)-3.271 F .77(xit status.)-.15 F .77(This is useful)5.77 F .615 (when de\214ning a function whose name is the same as a shell b)144 -590.4 R .616(uiltin, retaining the functionality of)-.2 F .57(the b)144 -602.4 R .57(uiltin within the function.)-.2 F(The)5.57 E F1(cd)3.07 E F0 --.2(bu)3.07 G .57(iltin is commonly rede\214ned this w).2 F(ay)-.1 E -5.57(.T)-.65 G .57(he return status)-5.57 F(is f)144 614.4 Q(alse if)-.1 -E F2(shell\255b)2.84 E(uiltin)-.2 E F0(is not a shell b)2.74 E -(uiltin command.)-.2 E F1(caller)108 631.2 Q F0([)2.5 E F2 -.2(ex)C(pr) -.2 E F0(])A .253(Returns the conte)144 643.2 R .254(xt of an)-.15 F -2.754(ya)-.15 G(cti)-2.754 E .554 -.15(ve s)-.25 H .254 -(ubroutine call \(a shell function or a script e).15 F -.15(xe)-.15 G -.254(cuted with the).15 F F1(.)2.754 E F0(or)2.754 E F1(sour)144 655.2 Q -(ce)-.18 E F0 -.2(bu)2.825 G 2.825(iltins\). W).2 F(ithout)-.4 E F2 -.2 -(ex)2.825 G(pr).2 E F0(,)A F1(caller)2.825 E F0 .324 -(displays the line number and source \214lename of the current)2.824 F -.253(subroutine call.)144 667.2 R .253(If a non-ne)5.253 F -.05(ga)-.15 -G(ti).05 E .553 -.15(ve i)-.25 H(nte).15 E .253(ger is supplied as)-.15 -F F2 -.2(ex)2.753 G(pr).2 E F0(,)A F1(caller)2.753 E F0 .254 -(displays the line number)2.754 F 2.754(,s)-.4 G(ub-)-2.754 E 1.327(rou\ -tine name, and source \214le corresponding to that position in the curr\ -ent e)144 679.2 R -.15(xe)-.15 G 1.327(cution call stack.).15 F(This e) -144 691.2 Q(xtra information may be used, for e)-.15 E .001 -(xample, to print a stack trace.)-.15 F .001(The current frame is frame) -5.001 F 3.02(0. The)144 703.2 R .52(return v)3.02 F .52 -(alue is 0 unless the shell is not e)-.25 F -.15(xe)-.15 G .519 -(cuting a subroutine call or).15 F F2 -.2(ex)3.019 G(pr).2 E F0 .519 -(does not corre-)3.019 F(spond to a v)144 715.2 Q -(alid position in the call stack.)-.25 E(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(60)193.45 E 0 Cg EP +727.2 R .616(uiltin, retaining the functionality of)-.2 F(GNU Bash 5.2) +72 768 Q(2022 June 3)150.675 E(60)199.835 E 0 Cg EP %%Page: 61 61 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(cd)108 84 Q F0([)2.5 E F1A F0(|[)A F1A F0([)2.5 E F1 -A F0(]] [\255@]] [)A/F2 10/Times-Italic@0 SF(dir)A F0(])A .321 -(Change the current directory to)144 96 R F2(dir)2.821 E F0 5.321(.i)C -(f)-5.321 E F2(dir)2.821 E F0 .322(is not supplied, the v)2.821 F .322 -(alue of the)-.25 F/F3 9/Times-Bold@0 SF(HOME)2.822 E F0 .322(shell v) -2.572 F .322(ariable is)-.25 F .93(the def)144 108 R 3.43(ault. The)-.1 -F -.25(va)3.43 G(riable).25 E F3(CDP)3.43 E -.855(AT)-.666 G(H).855 E F0 -.929(de\214nes the search path for the directory containing)3.18 F F2 -(dir)3.779 E F0 3.429(:e).73 G(ach)-3.429 E .406(directory name in)144 -120 R F3(CDP)2.907 E -.855(AT)-.666 G(H).855 E F0 .407(is searched for) -2.657 F F2(dir)2.907 E F0 5.407(.A)C(lternati)-5.407 E .707 -.15(ve d) --.25 H .407(irectory names in).15 F F3(CDP)2.907 E -.855(AT)-.666 G(H) -.855 E F0 .407(are sepa-)2.657 F .799(rated by a colon \(:\).)144 132 R -3.299(An)5.799 G .799(ull directory name in)-3.299 F F3(CDP)3.299 E --.855(AT)-.666 G(H).855 E F0 .799(is the same as the current directory) -3.049 F 3.299(,i)-.65 G(.e.,)-3.299 E -.74(``)144 144 S F1(.).74 E F0 --.74('')C 5.427(.I).74 G(f)-5.427 E F2(dir)3.277 E F0(be)3.657 E .427 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .57(the b)144 84 R +.57(uiltin within the function.)-.2 F(The)5.57 E/F1 10/Times-Bold@0 SF +(cd)3.07 E F0 -.2(bu)3.07 G .57(iltin is commonly rede\214ned this w).2 +F(ay)-.1 E 5.57(.T)-.65 G .57(he return status)-5.57 F(is f)144 96 Q +(alse if)-.1 E/F2 10/Times-Italic@0 SF(shell\255b)2.84 E(uiltin)-.2 E F0 +(is not a shell b)2.74 E(uiltin command.)-.2 E F1(caller)108 112.8 Q F0 +([)2.5 E F2 -.2(ex)C(pr).2 E F0(])A .253(Returns the conte)144 124.8 R +.254(xt of an)-.15 F 2.754(ya)-.15 G(cti)-2.754 E .554 -.15(ve s)-.25 H +.254(ubroutine call \(a shell function or a script e).15 F -.15(xe)-.15 +G .254(cuted with the).15 F F1(.)2.754 E F0(or)2.754 E F1(sour)144 136.8 +Q(ce)-.18 E F0 -.2(bu)2.825 G 2.825(iltins\). W).2 F(ithout)-.4 E F2 -.2 +(ex)2.825 G(pr).2 E F0(,)A F1(caller)2.825 E F0 .324 +(displays the line number and source \214lename of the current)2.824 F +.253(subroutine call.)144 148.8 R .253(If a non-ne)5.253 F -.05(ga)-.15 +G(ti).05 E .553 -.15(ve i)-.25 H(nte).15 E .253(ger is supplied as)-.15 +F F2 -.2(ex)2.753 G(pr).2 E F0(,)A F1(caller)2.753 E F0 .254 +(displays the line number)2.754 F 2.754(,s)-.4 G(ub-)-2.754 E 1.327(rou\ +tine name, and source \214le corresponding to that position in the curr\ +ent e)144 160.8 R -.15(xe)-.15 G 1.327(cution call stack.).15 F(This e) +144 172.8 Q(xtra information may be used, for e)-.15 E .001 +(xample, to print a stack trace.)-.15 F .001(The current frame is frame) +5.001 F 3.02(0. The)144 184.8 R .52(return v)3.02 F .52 +(alue is 0 unless the shell is not e)-.25 F -.15(xe)-.15 G .519 +(cuting a subroutine call or).15 F F2 -.2(ex)3.019 G(pr).2 E F0 .519 +(does not corre-)3.019 F(spond to a v)144 196.8 Q +(alid position in the call stack.)-.25 E F1(cd)108 213.6 Q F0([)2.5 E F1 +A F0(|[)A F1A F0([)2.5 E F1A F0(]] [\255@]] [)A F2 +(dir)A F0(])A .321(Change the current directory to)144 225.6 R F2(dir) +2.821 E F0 5.321(.i)C(f)-5.321 E F2(dir)2.821 E F0 .322 +(is not supplied, the v)2.821 F .322(alue of the)-.25 F/F3 9 +/Times-Bold@0 SF(HOME)2.822 E F0 .322(shell v)2.572 F .322(ariable is) +-.25 F .93(the def)144 237.6 R 3.43(ault. The)-.1 F -.25(va)3.43 G +(riable).25 E F3(CDP)3.43 E -.855(AT)-.666 G(H).855 E F0 .929 +(de\214nes the search path for the directory containing)3.18 F F2(dir) +3.779 E F0 3.429(:e).73 G(ach)-3.429 E .406(directory name in)144 249.6 +R F3(CDP)2.907 E -.855(AT)-.666 G(H).855 E F0 .407(is searched for)2.657 +F F2(dir)2.907 E F0 5.407(.A)C(lternati)-5.407 E .707 -.15(ve d)-.25 H +.407(irectory names in).15 F F3(CDP)2.907 E -.855(AT)-.666 G(H).855 E F0 +.407(are sepa-)2.657 F .799(rated by a colon \(:\).)144 261.6 R 3.299 +(An)5.799 G .799(ull directory name in)-3.299 F F3(CDP)3.299 E -.855(AT) +-.666 G(H).855 E F0 .799(is the same as the current directory)3.049 F +3.299(,i)-.65 G(.e.,)-3.299 E -.74(``)144 273.6 S F1(.).74 E F0 -.74('') +C 5.427(.I).74 G(f)-5.427 E F2(dir)3.277 E F0(be)3.657 E .427 (gins with a slash \(/\), then)-.15 F F3(CDP)2.928 E -.855(AT)-.666 G(H) .855 E F0 .428(is not used.)2.678 F(The)5.428 E F12.928 E F0 .428 (option causes)2.928 F F1(cd)2.928 E F0 .428(to use the)2.928 F(ph)144 -156 Q .168 +285.6 Q .168 (ysical directory structure by resolving symbolic links while tra)-.05 F -.15(ve)-.2 G(rsing).15 E F2(dir)2.667 E F0 .167(and before processing) -2.667 F 1.225(instances of)144 168 R F2(..)3.725 E F0(in)3.725 E F2(dir) -3.725 E F0 1.225(\(see also the)3.725 F F13.725 E F0 1.225 +2.667 F 1.225(instances of)144 297.6 R F2(..)3.725 E F0(in)3.725 E F2 +(dir)3.725 E F0 1.225(\(see also the)3.725 F F13.725 E F0 1.225 (option to the)3.725 F F1(set)3.725 E F0 -.2(bu)3.725 G 1.225 (iltin command\); the).2 F F13.725 E F0 1.225(option forces)3.725 -F .412(symbolic links to be follo)144 180 R .411 +F .412(symbolic links to be follo)144 309.6 R .411 (wed by resolving the link after processing instances of)-.25 F F2(..) 2.911 E F0(in)2.911 E F2(dir)2.911 E F0 5.411(.I)C(f)-5.411 E F2(..) -2.911 E F0(ap-)2.911 E .34(pears in)144 192 R F2(dir)2.84 E F0 2.84(,i)C -2.84(ti)-2.84 G 2.841(sp)-2.84 G .341(rocessed by remo)-2.841 F .341 -(ving the immediately pre)-.15 F .341(vious pathname component from)-.25 -F F2(dir)2.841 E F0(,)A .176(back to a slash or the be)144 204 R .176 -(ginning of)-.15 F F2(dir)2.676 E F0 5.176(.I)C 2.676(ft)-5.176 G(he) --2.676 E F12.675 E F0 .175(option is supplied with)2.675 F F1 +2.911 E F0(ap-)2.911 E .34(pears in)144 321.6 R F2(dir)2.84 E F0 2.84 +(,i)C 2.84(ti)-2.84 G 2.841(sp)-2.84 G .341(rocessed by remo)-2.841 F +.341(ving the immediately pre)-.15 F .341(vious pathname component from) +-.25 F F2(dir)2.841 E F0(,)A .176(back to a slash or the be)144 333.6 R +.176(ginning of)-.15 F F2(dir)2.676 E F0 5.176(.I)C 2.676(ft)-5.176 G +(he)-2.676 E F12.675 E F0 .175(option is supplied with)2.675 F F1 2.675 E F0 2.675(,a)C .175(nd the current w)-2.675 F(ork-)-.1 E .341(ing directory cannot be successfully determined after a successful\ - directory change,)144 216 R F1(cd)2.841 E F0 .341(will return)2.841 F -.357(an unsuccessful status.)144 228 R .357 + directory change,)144 345.6 R F1(cd)2.841 E F0 .341(will return)2.841 F +.357(an unsuccessful status.)144 357.6 R .357 (On systems that support it, the)5.357 F F12.856 E F0 .356 (option presents the e)2.856 F .356(xtended attrib)-.15 F(utes)-.2 E -.069(associated with a \214le as a directory)144 240 R 5.069(.A)-.65 G +.069(associated with a \214le as a directory)144 369.6 R 5.069(.A)-.65 G 2.569(na)-5.069 G -.18(rg)-2.569 G .069(ument of).18 F F12.569 E F0 .07(is con)2.57 F -.15(ve)-.4 G .07(rted to).15 F F3($OLDPWD)2.57 E F0 -.07(before the direc-)2.32 F .307(tory change is attempted.)144 252 R +.07(before the direc-)2.32 F .307(tory change is attempted.)144 381.6 R .306(If a non-empty directory name from)5.307 F F3(CDP)2.806 E -.855(AT) -.666 G(H).855 E F0 .306(is used, or if)2.556 F F12.806 E F0 .306 -(is the \214rst)2.806 F(ar)144 264 Q .116(gument, and the directory cha\ -nge is successful, the absolute pathname of the ne)-.18 F 2.616(ww)-.25 -G .116(orking direc-)-2.716 F .15 -(tory is written to the standard output.)144 276 R .15 +(is the \214rst)2.806 F(ar)144 393.6 Q .116(gument, and the directory c\ +hange is successful, the absolute pathname of the ne)-.18 F 2.616(ww) +-.25 G .116(orking direc-)-2.716 F .15 +(tory is written to the standard output.)144 405.6 R .15 (If the directory change is successful,)5.15 F F1(cd)2.65 E F0 .15 -(sets the v)2.65 F .15(alue of the)-.25 F F1(PWD)144 288 Q F0(en)2.957 E -.457(vironment v)-.4 F .457(ariable to the ne)-.25 F 2.958(wd)-.25 G +(sets the v)2.65 F .15(alue of the)-.25 F F1(PWD)144 417.6 Q F0(en)2.957 +E .457(vironment v)-.4 F .457(ariable to the ne)-.25 F 2.958(wd)-.25 G .458(irectory name, and sets the)-2.958 F F1(OLDPWD)2.958 E F0(en)2.958 -E .458(vironment v)-.4 F(ari-)-.25 E .126(able to the v)144 300 R .126 +E .458(vironment v)-.4 F(ari-)-.25 E .126(able to the v)144 429.6 R .126 (alue of the current w)-.25 F .126(orking directory before the change.) -.1 F .125(The return v)5.125 F .125(alue is true if the)-.25 F -(directory w)144 312 Q(as successfully changed; f)-.1 E(alse otherwise.) --.1 E F1(command)108 328.8 Q F0([)2.5 E F1(\255pVv)A F0(])A F2(command) -2.5 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Run)144 340.8 Q F2 -(command)2.764 E F0(with)3.334 E F2(ar)2.894 E(gs)-.37 E F0 .065 -(suppressing the normal shell function lookup.)2.834 F .065(Only b)5.065 -F .065(uiltin commands or)-.2 F .502(commands found in the)144 352.8 R -F3 -.666(PA)3.002 G(TH)-.189 E F0 .502(are e)2.752 F -.15(xe)-.15 G -3.002(cuted. If).15 F(the)3.002 E F13.002 E F0 .502(option is gi) -3.002 F -.15(ve)-.25 G .501(n, the search for).15 F F2(command)3.201 E -F0(is)3.771 E .399(performed using a def)144 364.8 R .399(ault v)-.1 F -.399(alue for)-.25 F F3 -.666(PA)2.899 G(TH)-.189 E F0 .4 -(that is guaranteed to \214nd all of the standard utilities.)2.649 F(If) -5.4 E .175(either the)144 376.8 R F12.675 E F0(or)2.675 E F1 -2.675 E F0 .175(option is supplied, a description of)2.675 F F2(command) -2.875 E F0 .174(is printed.)3.445 F(The)5.174 E F12.674 E F0 .174 -(option causes)2.674 F 3.317(as)144 388.8 S .817(ingle w)-3.317 F .817 -(ord indicating the command or \214lename used to in)-.1 F -.2(vo)-.4 G --.1(ke).2 G F2(command)3.618 E F0 .818(to be displayed; the)4.088 F F1 -144 400.8 Q F0 .25(option produces a more v)2.75 F .25 +(directory w)144 441.6 Q(as successfully changed; f)-.1 E +(alse otherwise.)-.1 E F1(command)108 458.4 Q F0([)2.5 E F1(\255pVv)A F0 +(])A F2(command)2.5 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Run)144 +470.4 Q F2(command)2.764 E F0(with)3.334 E F2(ar)2.894 E(gs)-.37 E F0 +.065(suppressing the normal shell function lookup.)2.834 F .065(Only b) +5.065 F .065(uiltin commands or)-.2 F .502(commands found in the)144 +482.4 R F3 -.666(PA)3.002 G(TH)-.189 E F0 .502(are e)2.752 F -.15(xe) +-.15 G 3.002(cuted. If).15 F(the)3.002 E F13.002 E F0 .502 +(option is gi)3.002 F -.15(ve)-.25 G .501(n, the search for).15 F F2 +(command)3.201 E F0(is)3.771 E .399(performed using a def)144 494.4 R +.399(ault v)-.1 F .399(alue for)-.25 F F3 -.666(PA)2.899 G(TH)-.189 E F0 +.4(that is guaranteed to \214nd all of the standard utilities.)2.649 F +(If)5.4 E .175(either the)144 506.4 R F12.675 E F0(or)2.675 E F1 +2.675 E F0 .175(option is supplied, a description of)2.675 F F2 +(command)2.875 E F0 .174(is printed.)3.445 F(The)5.174 E F12.674 E +F0 .174(option causes)2.674 F 3.317(as)144 518.4 S .817(ingle w)-3.317 F +.817(ord indicating the command or \214lename used to in)-.1 F -.2(vo) +-.4 G -.1(ke).2 G F2(command)3.618 E F0 .818(to be displayed; the)4.088 +F F1144 530.4 Q F0 .25(option produces a more v)2.75 F .25 (erbose description.)-.15 F .249(If the)5.25 F F12.749 E F0(or) 2.749 E F12.749 E F0 .249(option is supplied, the e)2.749 F .249 -(xit status)-.15 F 1.004(is 0 if)144 412.8 R F2(command)3.704 E F0 -.1 +(xit status)-.15 F 1.004(is 0 if)144 542.4 R F2(command)3.704 E F0 -.1 (wa)4.274 G 3.504(sf).1 G 1.005(ound, and 1 if not.)-3.504 F 1.005 (If neither option is supplied and an error occurred or)6.005 F F2 -(command)144.2 424.8 Q F0 1.599(cannot be found, the e)4.869 F 1.599 +(command)144.2 554.4 Q F0 1.599(cannot be found, the e)4.869 F 1.599 (xit status is 127.)-.15 F 1.599(Otherwise, the e)6.599 F 1.598 -(xit status of the)-.15 F F1(command)4.098 E F0 -.2(bu)144 436.8 S +(xit status of the)-.15 F F1(command)4.098 E F0 -.2(bu)144 566.4 S (iltin is the e).2 E(xit status of)-.15 E F2(command)2.7 E F0(.).77 E F1 -(compgen)108 453.6 Q F0([)2.5 E F2(option)A F0 2.5(][)C F2(wor)-2.5 E(d) --.37 E F0(])A .012(Generate possible completion matches for)144 465.6 R +(compgen)108 583.2 Q F0([)2.5 E F2(option)A F0 2.5(][)C F2(wor)-2.5 E(d) +-.37 E F0(])A .012(Generate possible completion matches for)144 595.2 R F2(wor)2.513 E(d)-.37 E F0 .013(according to the)2.513 F F2(option)2.513 E F0 .013(s, which may be an)B 2.513(yo)-.15 G(ption)-2.513 E .982 -(accepted by the)144 477.6 R F1(complete)3.482 E F0 -.2(bu)3.481 G .981 +(accepted by the)144 607.2 R F1(complete)3.482 E F0 -.2(bu)3.481 G .981 (iltin with the e).2 F .981(xception of)-.15 F F13.481 E F0(and) 3.481 E F13.481 E F0 3.481(,a)C .981(nd write the matches to the) --3.481 F .13(standard output.)144 489.6 R .13(When using the)5.13 F F1 +-3.481 F .13(standard output.)144 619.2 R .13(When using the)5.13 F F1 2.63 E F0(or)2.63 E F12.631 E F0 .131(options, the v)2.631 F .131(arious shell v)-.25 F .131(ariables set by the program-)-.25 F -(mable completion f)144 501.6 Q(acilities, while a)-.1 E -.25(va)-.2 G +(mable completion f)144 631.2 Q(acilities, while a)-.1 E -.25(va)-.2 G (ilable, will not ha).25 E .3 -.15(ve u)-.2 H(seful v).15 E(alues.)-.25 -E .352(The matches will be generated in the same w)144 525.6 R .352 +E .352(The matches will be generated in the same w)144 655.2 R .352 (ay as if the programmable completion code had gen-)-.1 F .02(erated th\ em directly from a completion speci\214cation with the same \215ags.)144 -537.6 R(If)5.02 E F2(wor)2.52 E(d)-.37 E F0 .02(is speci\214ed, only) -2.52 F(those completions matching)144 549.6 Q F2(wor)2.5 E(d)-.37 E F0 -(will be displayed.)2.5 E(The return v)144 573.6 Q +667.2 R(If)5.02 E F2(wor)2.52 E(d)-.37 E F0 .02(is speci\214ed, only) +2.52 F(those completions matching)144 679.2 Q F2(wor)2.5 E(d)-.37 E F0 +(will be displayed.)2.5 E(The return v)144 703.2 Q (alue is true unless an in)-.25 E -.25(va)-.4 G -(lid option is supplied, or no matches were generated.).25 E F1 -(complete)108 590.4 Q F0([)2.5 E F1(\255abcdefgjksuv)A F0 2.5(][)C F1 --2.5 E F2(comp-option)2.5 E F0 2.5(][)C F1(\255DEI)-2.5 E F0 2.5 -(][)C F1-2.5 E F2(action)2.5 E F0 2.5(][)C F1-2.5 E F2 -(globpat)2.5 E F0 2.5(][)C F1-2.5 E F2(wor)2.5 E(dlist)-.37 E F0 -(])A([)144 602.4 Q F1A F2(function)2.5 E F0 2.5(][)C F1-2.5 -E F2(command)2.5 E F0 2.5(][)C F1-2.5 E F2(\214lterpat)2.5 E F0 -2.5(][)C F1-2.5 E F2(pr)2.5 E(e\214x)-.37 E F0 2.5(][)C F1 --2.5 E F2(suf)2.5 E<8c78>-.18 E F0(])A F2(name)2.5 E F0([)2.5 E F2 -(name ...)A F0(])A F1(complete \255pr)108 614.4 Q F0([)2.5 E F1(\255DEI) -A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .634(Specify ho)144 626.4 R -3.134(wa)-.25 G -.18(rg)-3.134 G .634(uments to each).18 F F2(name)3.134 -E F0 .634(should be completed.)3.134 F .633(If the)5.634 F F13.133 -E F0 .633(option is supplied, or if no)3.133 F .139 -(options are supplied, e)144 638.4 R .139 -(xisting completion speci\214cations are printed in a w)-.15 F .14 -(ay that allo)-.1 F .14(ws them to be)-.25 F .31(reused as input.)144 -650.4 R(The)5.31 E F12.81 E F0 .31(option remo)2.81 F -.15(ve)-.15 -G 2.81(sac).15 G .31(ompletion speci\214cation for each)-2.81 F F2(name) -2.81 E F0 2.81(,o)C 1.11 -.4(r, i)-2.81 H 2.81(fn).4 G(o)-2.81 E F2 -(name)2.81 E F0(s)A 1.207 -(are supplied, all completion speci\214cations.)144 662.4 R(The)6.207 E -F13.707 E F0 1.208(option indicates that other supplied options) -3.708 F .5(and actions should apply to the `)144 674.4 R(`def)-.74 E -(ault')-.1 E 3('c)-.74 G .5 -(ommand completion; that is, completion attempted on)-3 F 3.455(ac)144 -686.4 S .955(ommand for which no completion has pre)-3.455 F .955 -(viously been de\214ned.)-.25 F(The)5.955 E F13.455 E F0 .955 -(option indicates that)3.455 F .876 -(other supplied options and actions should apply to `)144 698.4 R -(`empty')-.74 E 3.376('c)-.74 G .876(ommand completion; that is, com-) --3.376 F .447(pletion attempted on a blank line.)144 710.4 R(The)5.447 E -F12.947 E F0 .448 -(option indicates that other supplied options and actions)2.947 F 1.15 -(should apply to completion on the initial non-assignment w)144 722.4 R -1.149(ord on the line, or after a command)-.1 F(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(61)193.45 E 0 Cg EP +(lid option is supplied, or no matches were generated.).25 E +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(61)199.835 E 0 Cg EP %%Page: 62 62 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .43 -(delimiter such as)144 84 R/F1 10/Times-Bold@0 SF(;)2.93 E F0(or)2.93 E -F1(|)2.93 E F0 2.93(,w)C .431(hich is usually command name completion.) --2.93 F .431(If multiple options are sup-)5.431 F .708(plied, the)144 96 -R F13.208 E F0 .708(option tak)3.208 F .708(es precedence o)-.1 F --.15(ve)-.15 G(r).15 E F13.208 E F0 3.208(,a)C .708(nd both tak) --3.208 F 3.208(ep)-.1 G .707(recedence o)-3.208 F -.15(ve)-.15 G(r).15 E -F13.207 E F0 5.707(.I)C 3.207(fa)-5.707 G 1.007 -.15(ny o)-3.207 H -(f).15 E F13.207 E F0(,)A F1144 108 Q F0 2.603(,o)C(r)-2.603 -E F12.603 E F0 .103(are supplied, an)2.603 F 2.603(yo)-.15 G(ther) --2.603 E/F2 10/Times-Italic@0 SF(name)2.603 E F0(ar)2.603 E .103 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(complete)108 84 Q F0([)2.5 E F1(\255abcdefgjksuv)A F0 2.5(][)C F1 +-2.5 E/F2 10/Times-Italic@0 SF(comp-option)2.5 E F0 2.5(][)C F1 +(\255DEI)-2.5 E F0 2.5(][)C F1-2.5 E F2(action)2.5 E F0 2.5(][)C +F1-2.5 E F2(globpat)2.5 E F0 2.5(][)C F1-2.5 E F2(wor)2.5 E +(dlist)-.37 E F0(])A([)144 96 Q F1A F2(function)2.5 E F0 2.5(][)C +F1-2.5 E F2(command)2.5 E F0 2.5(][)C F1-2.5 E F2 +(\214lterpat)2.5 E F0 2.5(][)C F1-2.5 E F2(pr)2.5 E(e\214x)-.37 E +F0 2.5(][)C F1-2.5 E F2(suf)2.5 E<8c78>-.18 E F0(])A F2(name)2.5 E +F0([)2.5 E F2(name ...)A F0(])A F1(complete \255pr)108 108 Q F0([)2.5 E +F1(\255DEI)A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .634(Specify ho) +144 120 R 3.134(wa)-.25 G -.18(rg)-3.134 G .634(uments to each).18 F F2 +(name)3.134 E F0 .634(should be completed.)3.134 F .633(If the)5.634 F +F13.133 E F0 .633(option is supplied, or if no)3.133 F .139 +(options are supplied, e)144 132 R .139 +(xisting completion speci\214cations are printed in a w)-.15 F .14 +(ay that allo)-.1 F .14(ws them to be)-.25 F .31(reused as input.)144 +144 R(The)5.31 E F12.81 E F0 .31(option remo)2.81 F -.15(ve)-.15 G +2.81(sac).15 G .31(ompletion speci\214cation for each)-2.81 F F2(name) +2.81 E F0 2.81(,o)C 1.11 -.4(r, i)-2.81 H 2.81(fn).4 G(o)-2.81 E F2 +(name)2.81 E F0(s)A 1.207 +(are supplied, all completion speci\214cations.)144 156 R(The)6.207 E F1 +3.707 E F0 1.208(option indicates that other supplied options) +3.708 F .5(and actions should apply to the `)144 168 R(`def)-.74 E +(ault')-.1 E 3('c)-.74 G .5 +(ommand completion; that is, completion attempted on)-3 F 3.455(ac)144 +180 S .955(ommand for which no completion has pre)-3.455 F .955 +(viously been de\214ned.)-.25 F(The)5.955 E F13.455 E F0 .955 +(option indicates that)3.455 F .876 +(other supplied options and actions should apply to `)144 192 R(`empty') +-.74 E 3.376('c)-.74 G .876(ommand completion; that is, com-)-3.376 F +.447(pletion attempted on a blank line.)144 204 R(The)5.447 E F1 +2.947 E F0 .448 +(option indicates that other supplied options and actions)2.947 F .123 +(should apply to completion on the initial non-assignment w)144 216 R +.123(ord on the line, or after a command de-)-.1 F 1.02(limiter such as) +144 228 R F1(;)3.52 E F0(or)3.52 E F1(|)3.52 E F0 3.52(,w)C 1.021 +(hich is usually command name completion.)-3.52 F 1.021 +(If multiple options are sup-)6.021 F .708(plied, the)144 240 R F1 +3.208 E F0 .708(option tak)3.208 F .708(es precedence o)-.1 F -.15(ve) +-.15 G(r).15 E F13.208 E F0 3.208(,a)C .708(nd both tak)-3.208 F +3.208(ep)-.1 G .707(recedence o)-3.208 F -.15(ve)-.15 G(r).15 E F1 +3.207 E F0 5.707(.I)C 3.207(fa)-5.707 G 1.007 -.15(ny o)-3.207 H(f).15 E +F13.207 E F0(,)A F1144 252 Q F0 2.603(,o)C(r)-2.603 E F1 +2.603 E F0 .103(are supplied, an)2.603 F 2.603(yo)-.15 G(ther) +-2.603 E F2(name)2.603 E F0(ar)2.603 E .103 (guments are ignored; these completions only apply to the)-.18 F -(case speci\214ed by the option.)144 120 Q .153 +(case speci\214ed by the option.)144 264 Q .153 (The process of applying these completion speci\214cations when w)144 -144 R .152(ord completion is attempted is de-)-.1 F(scribed abo)144 156 +288 R .152(ord completion is attempted is de-)-.1 F(scribed abo)144 300 Q .3 -.15(ve u)-.15 H(nder).15 E F1(Pr)2.5 E(ogrammable Completion)-.18 -E F0(.)A .555(Other options, if speci\214ed, ha)144 180 R .855 -.15 +E F0(.)A .555(Other options, if speci\214ed, ha)144 324 R .855 -.15 (ve t)-.2 H .555(he follo).15 F .555(wing meanings.)-.25 F .555(The ar) 5.555 F .555(guments to the)-.18 F F13.056 E F0(,)A F13.056 E F0 3.056(,a)C(nd)-3.056 E F13.056 E F0 .723 -(options \(and, if necessary)144 192 R 3.223(,t)-.65 G(he)-3.223 E F1 +(options \(and, if necessary)144 336 R 3.223(,t)-.65 G(he)-3.223 E F1 3.223 E F0(and)3.223 E F13.223 E F0 .722 (options\) should be quoted to protect them from e)3.223 F(xpan-)-.15 E -(sion before the)144 204 Q F1(complete)2.5 E F0 -.2(bu)2.5 G -(iltin is in).2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E F1144 216 Q F2 -(comp-option)2.5 E F0(The)184 228 Q F2(comp-option)2.79 E F0 .291 +(sion before the)144 348 Q F1(complete)2.5 E F0 -.2(bu)2.5 G +(iltin is in).2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E F1144 360 Q F2 +(comp-option)2.5 E F0(The)184 372 Q F2(comp-option)2.79 E F0 .291 (controls se)2.791 F -.15(ve)-.25 G .291(ral aspects of the compspec') .15 F 2.791(sb)-.55 G(eha)-2.791 E .291(vior be)-.2 F .291 -(yond the simple)-.15 F(generation of completions.)184 240 Q F2 -(comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 252 Q F0 -.281(Perform the rest of the def)224 264 R(ault)-.1 E F1(bash)2.781 E F0 -.281(completions if the compspec generates no)2.781 F(matches.)224 276 Q -F1(default)184 288 Q F0 2.875(Use readline')224 288 R 5.375(sd)-.55 G +(yond the simple)-.15 F(generation of completions.)184 384 Q F2 +(comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 396 Q F0 +.281(Perform the rest of the def)224 408 R(ault)-.1 E F1(bash)2.781 E F0 +.281(completions if the compspec generates no)2.781 F(matches.)224 420 Q +F1(default)184 432 Q F0 2.875(Use readline')224 432 R 5.375(sd)-.55 G (ef)-5.375 E 2.876 (ault \214lename completion if the compspec generates no)-.1 F(matches.) -224 300 Q F1(dir)184 312 Q(names)-.15 E F0(Perform directory name compl\ -etion if the compspec generates no matches.)224 324 Q F1(\214lenames)184 -336 Q F0 -.7(Te)224 348 S .137(ll readline that the compspec generates \ +224 444 Q F1(dir)184 456 Q(names)-.15 E F0(Perform directory name compl\ +etion if the compspec generates no matches.)224 468 Q F1(\214lenames)184 +480 Q F0 -.7(Te)224 492 S .137(ll readline that the compspec generates \ \214lenames, so it can perform an).7 F 2.636<798c>-.15 G(le-)-2.636 E -.134(name\255speci\214c processing \(lik)224 360 R 2.634(ea)-.1 G .134 +.134(name\255speci\214c processing \(lik)224 504 R 2.634(ea)-.1 G .134 (dding a slash to directory names, quoting spe-)-2.634 F .45 -(cial characters, or suppressing trailing spaces\).)224 372 R .45 -(Intended to be used with shell)5.45 F(functions.)224 384 Q F1(noquote) -184 396 Q F0 -.7(Te)224 396 S .814 +(cial characters, or suppressing trailing spaces\).)224 516 R .45 +(Intended to be used with shell)5.45 F(functions.)224 528 Q F1(noquote) +184 540 Q F0 -.7(Te)224 540 S .814 (ll readline not to quote the completed w).7 F .814(ords if the)-.1 F 3.314(ya)-.15 G .815(re \214lenames \(quoting)-3.314 F -(\214lenames is the def)224 408 Q(ault\).)-.1 E F1(nosort)184 420 Q F0 --.7(Te)224 420 S(ll readline not to sort the list of possible completio\ -ns alphabetically).7 E(.)-.65 E F1(nospace)184 432 Q F0 -.7(Te)224 432 S +(\214lenames is the def)224 552 Q(ault\).)-.1 E F1(nosort)184 564 Q F0 +-.7(Te)224 564 S(ll readline not to sort the list of possible completio\ +ns alphabetically).7 E(.)-.65 E F1(nospace)184 576 Q F0 -.7(Te)224 576 S .22(ll readline not to append a space \(the def).7 F .22(ault\) to w)-.1 -F .22(ords completed at the end)-.1 F(of the line.)224 444 Q F1 -(plusdirs)184 456 Q F0 1.985(After an)224 456 R 4.485(ym)-.15 G 1.985 +F .22(ords completed at the end)-.1 F(of the line.)224 588 Q F1 +(plusdirs)184 600 Q F0 1.985(After an)224 600 R 4.485(ym)-.15 G 1.985 (atches de\214ned by the compspec are generated, directory name)-4.485 F -.584(completion is attempted and an)224 468 R 3.084(ym)-.15 G .584 -(atches are added to the results of the other)-3.084 F(actions.)224 480 -Q F1144 492 Q F2(action)2.5 E F0(The)184 504 Q F2(action)2.5 E F0 +.584(completion is attempted and an)224 612 R 3.084(ym)-.15 G .584 +(atches are added to the results of the other)-3.084 F(actions.)224 624 +Q F1144 636 Q F2(action)2.5 E F0(The)184 648 Q F2(action)2.5 E F0 (may be one of the follo)2.5 E (wing to generate a list of possible completions:)-.25 E F1(alias)184 -516 Q F0(Alias names.)224 516 Q(May also be speci\214ed as)5 E F1 -2.5 E F0(.)A F1(arrayv)184 528 Q(ar)-.1 E F0(Array v)224 540 Q -(ariable names.)-.25 E F1(binding)184 552 Q(Readline)224 552 Q F0 -.1 -(ke)2.5 G 2.5(yb)-.05 G(inding names.)-2.5 E F1 -.2(bu)184 564 S(iltin) -.2 E F0(Names of shell b)224 564 Q(uiltin commands.)-.2 E -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(command)184 576 -Q F0(Command names.)224 588 Q(May also be speci\214ed as)5 E F12.5 -E F0(.)A F1(dir)184 600 Q(ectory)-.18 E F0(Directory names.)224 612 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(disabled)184 624 -Q F0(Names of disabled shell b)224 636 Q(uiltins.)-.2 E F1(enabled)184 -648 Q F0(Names of enabled shell b)224 648 Q(uiltins.)-.2 E F1(export)184 -660 Q F0(Names of e)224 660 Q(xported shell v)-.15 E 2.5(ariables. May) --.25 F(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1(\214le)184 -672 Q F0(File names.)224 672 Q(May also be speci\214ed as)5 E F1 -2.5 E F0(.)A F1(function)184 684 Q F0(Names of shell functions.)224 696 -Q F1(gr)184 708 Q(oup)-.18 E F0(Group names.)224 708 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A(GNU Bash 5.2)72 768 -Q(2022 March 11)144.29 E(62)193.45 E 0 Cg EP +660 Q F0(Alias names.)224 660 Q(May also be speci\214ed as)5 E F1 +2.5 E F0(.)A F1(arrayv)184 672 Q(ar)-.1 E F0(Array v)224 684 Q +(ariable names.)-.25 E F1(binding)184 696 Q(Readline)224 696 Q F0 -.1 +(ke)2.5 G 2.5(yb)-.05 G(inding names.)-2.5 E F1 -.2(bu)184 708 S(iltin) +.2 E F0(Names of shell b)224 708 Q(uiltin commands.)-.2 E +(May also be speci\214ed as)5 E F12.5 E F0(.)A(GNU Bash 5.2)72 768 +Q(2022 June 3)150.675 E(62)199.835 E 0 Cg EP %%Page: 63 63 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(helptopic)184 84 Q F0(Help topics as accepted by the)224 96 Q F1 -(help)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(hostname)184 108 Q F0 -(Hostnames, as tak)224 120 Q(en from the \214le speci\214ed by the)-.1 E -/F2 9/Times-Bold@0 SF(HOSTFILE)2.5 E F0(shell v)2.25 E(ariable.)-.25 E -F1(job)184 132 Q F0(Job names, if job control is acti)224 132 Q -.15(ve) --.25 G 5(.M).15 G(ay also be speci\214ed as)-5 E F12.5 E F0(.)A F1 --.1(ke)184 144 S(yw).1 E(ord)-.1 E F0(Shell reserv)224 156 Q(ed w)-.15 E -2.5(ords. May)-.1 F(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1 -(running)184 168 Q F0(Names of running jobs, if job control is acti)224 -168 Q -.15(ve)-.25 G(.).15 E F1(ser)184 180 Q(vice)-.1 E F0 -(Service names.)224 180 Q(May also be speci\214ed as)5 E F12.5 E -F0(.)A F1(setopt)184 192 Q F0 -1.11(Va)224 192 S(lid ar)1.11 E -(guments for the)-.18 E F12.5 E F0(option to the)2.5 E F1(set)2.5 -E F0 -.2(bu)2.5 G(iltin.).2 E F1(shopt)184 204 Q F0 -(Shell option names as accepted by the)224 204 Q F1(shopt)2.5 E F0 -.2 -(bu)2.5 G(iltin.).2 E F1(signal)184 216 Q F0(Signal names.)224 216 Q F1 -(stopped)184 228 Q F0(Names of stopped jobs, if job control is acti)224 -228 Q -.15(ve)-.25 G(.).15 E F1(user)184 240 Q F0(User names.)224 240 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 252 S -(riable).1 E F0(Names of all shell v)224 252 Q 2.5(ariables. May)-.25 F -(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 264 Q/F3 -10/Times-Italic@0 SF(command)2.5 E(command)184 276 Q F0 1.055(is e)3.555 +SF(command)184 84 Q F0(Command names.)224 96 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(dir)184 108 Q +(ectory)-.18 E F0(Directory names.)224 120 Q(May also be speci\214ed as) +5 E F12.5 E F0(.)A F1(disabled)184 132 Q F0 +(Names of disabled shell b)224 144 Q(uiltins.)-.2 E F1(enabled)184 156 Q +F0(Names of enabled shell b)224 156 Q(uiltins.)-.2 E F1(export)184 168 Q +F0(Names of e)224 168 Q(xported shell v)-.15 E 2.5(ariables. May)-.25 F +(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1(\214le)184 180 Q +F0(File names.)224 180 Q(May also be speci\214ed as)5 E F12.5 E F0 +(.)A F1(function)184 192 Q F0(Names of shell functions.)224 204 Q F1(gr) +184 216 Q(oup)-.18 E F0(Group names.)224 216 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(helptopic)184 +228 Q F0(Help topics as accepted by the)224 240 Q F1(help)2.5 E F0 -.2 +(bu)2.5 G(iltin.).2 E F1(hostname)184 252 Q F0(Hostnames, as tak)224 264 +Q(en from the \214le speci\214ed by the)-.1 E/F2 9/Times-Bold@0 SF +(HOSTFILE)2.5 E F0(shell v)2.25 E(ariable.)-.25 E F1(job)184 276 Q F0 +(Job names, if job control is acti)224 276 Q -.15(ve)-.25 G 5(.M).15 G +(ay also be speci\214ed as)-5 E F12.5 E F0(.)A F1 -.1(ke)184 288 S +(yw).1 E(ord)-.1 E F0(Shell reserv)224 300 Q(ed w)-.15 E 2.5(ords. May) +-.1 F(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1(running)184 +312 Q F0(Names of running jobs, if job control is acti)224 312 Q -.15 +(ve)-.25 G(.).15 E F1(ser)184 324 Q(vice)-.1 E F0(Service names.)224 324 +Q(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(setopt)184 336 +Q F0 -1.11(Va)224 336 S(lid ar)1.11 E(guments for the)-.18 E F12.5 +E F0(option to the)2.5 E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1 +(shopt)184 348 Q F0(Shell option names as accepted by the)224 348 Q F1 +(shopt)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(signal)184 360 Q F0 +(Signal names.)224 360 Q F1(stopped)184 372 Q F0 +(Names of stopped jobs, if job control is acti)224 372 Q -.15(ve)-.25 G +(.).15 E F1(user)184 384 Q F0(User names.)224 384 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 396 S +(riable).1 E F0(Names of all shell v)224 396 Q 2.5(ariables. May)-.25 F +(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 408 Q/F3 +10/Times-Italic@0 SF(command)2.5 E(command)184 420 Q F0 1.055(is e)3.555 F -.15(xe)-.15 G 1.055(cuted in a subshell en).15 F 1.056 (vironment, and its output is used as the possible)-.4 F(completions.) -184 288 Q F1144 300 Q F3(function)2.5 E F0 .114 -(The shell function)184 312 R F3(function)2.614 E F0 .114(is e)2.614 F +184 432 Q F1144 444 Q F3(function)2.5 E F0 .114 +(The shell function)184 456 R F3(function)2.614 E F0 .114(is e)2.614 F -.15(xe)-.15 G .114(cuted in the current shell en).15 F 2.614 -(vironment. When)-.4 F .113(the func-)2.613 F .816(tion is e)184 324 R +(vironment. When)-.4 F .113(the func-)2.613 F .816(tion is e)184 468 R -.15(xe)-.15 G .816(cuted, the \214rst ar).15 F .816(gument \()-.18 F F1 ($1)A F0 3.316(\)i)C 3.316(st)-3.316 G .817 (he name of the command whose ar)-3.316 F(guments)-.18 E 1.407 -(are being completed, the second ar)184 336 R 1.407(gument \()-.18 F F1 +(are being completed, the second ar)184 480 R 1.407(gument \()-.18 F F1 ($2)A F0 3.907(\)i)C 3.907(st)-3.907 G 1.407(he w)-3.907 F 1.407 -(ord being completed, and the)-.1 F .103(third ar)184 348 R .103 +(ord being completed, and the)-.1 F .103(third ar)184 492 R .103 (gument \()-.18 F F1($3)A F0 2.603(\)i)C 2.603(st)-2.603 G .103(he w) -2.603 F .104(ord preceding the w)-.1 F .104 -(ord being completed on the current com-)-.1 F .102(mand line.)184 360 R +(ord being completed on the current com-)-.1 F .102(mand line.)184 504 R .102(When it \214nishes, the possible completions are retrie)5.102 F -.15(ve)-.25 G 2.601(df).15 G .101(rom the v)-2.601 F .101(alue of the) --.25 F F2(COMPREPL)184 372 Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E -F1144 384 Q F3(globpat)2.5 E F0 1.007(The pathname e)184 396 R +-.25 F F2(COMPREPL)184 516 Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E +F1144 528 Q F3(globpat)2.5 E F0 1.007(The pathname e)184 540 R 1.007(xpansion pattern)-.15 F F3(globpat)3.507 E F0 1.007(is e)3.507 F -1.008(xpanded to generate the possible comple-)-.15 F(tions.)184 408 Q -F1144 420 Q F3(pr)2.5 E(e\214x)-.37 E(pr)184 432 Q(e\214x)-.37 E +1.008(xpanded to generate the possible comple-)-.15 F(tions.)184 552 Q +F1144 564 Q F3(pr)2.5 E(e\214x)-.37 E(pr)184 576 Q(e\214x)-.37 E F0 .535(is added at the be)3.035 F .534 (ginning of each possible completion after all other options ha)-.15 F --.15(ve)-.2 G(been applied.)184 444 Q F1144 456 Q F3(suf)2.5 E -<8c78>-.18 E(suf)184 456 Q<8c78>-.18 E F0 +-.15(ve)-.2 G(been applied.)184 588 Q F1144 600 Q F3(suf)2.5 E +<8c78>-.18 E(suf)184 600 Q<8c78>-.18 E F0 (is appended to each possible completion after all other options ha)2.5 -E .3 -.15(ve b)-.2 H(een applied.).15 E F1144 468 Q F3(wor)2.5 E -(dlist)-.37 E F0(The)184 480 Q F3(wor)3.639 E(dlist)-.37 E F0 1.14 +E .3 -.15(ve b)-.2 H(een applied.).15 E F1144 612 Q F3(wor)2.5 E +(dlist)-.37 E F0(The)184 624 Q F3(wor)3.639 E(dlist)-.37 E F0 1.14 (is split using the characters in the)3.639 F F2(IFS)3.64 E F0 1.14 (special v)3.39 F 1.14(ariable as delimiters, and)-.25 F .981 -(each resultant w)184 492 R .981(ord is e)-.1 F 3.481(xpanded. Shell) +(each resultant w)184 636 R .981(ord is e)-.1 F 3.481(xpanded. Shell) -.15 F .981(quoting is honored within)3.481 F F3(wor)3.481 E(dlist)-.37 -E F0 3.48(,i)C 3.48(no)-3.48 G .98(rder to)-3.48 F(pro)184 504 Q .765 +E F0 3.48(,i)C 3.48(no)-3.48 G .98(rder to)-3.48 F(pro)184 648 Q .765 (vide a mechanism for the w)-.15 F .766 (ords to contain shell metacharacters or characters in the)-.1 F -.25 -(va)184 516 S 1.965(lue of).25 F F2(IFS)4.465 E/F4 9/Times-Roman@0 SF(.) +(va)184 660 S 1.965(lue of).25 F F2(IFS)4.465 E/F4 9/Times-Roman@0 SF(.) A F0 1.964 (The possible completions are the members of the resultant list which) -6.465 F(match the w)184 528 Q(ord being completed.)-.1 E F1144 540 -Q F3(\214lterpat)2.5 E(\214lterpat)184 552 Q F0 .455 +6.465 F(match the w)184 672 Q(ord being completed.)-.1 E F1144 684 +Q F3(\214lterpat)2.5 E(\214lterpat)184 696 Q F0 .455 (is a pattern as used for pathname e)2.955 F 2.956(xpansion. It)-.15 F .456(is applied to the list of possible)2.956 F 1.596 -(completions generated by the preceding options and ar)184 564 R 1.596 -(guments, and each completion)-.18 F(matching)184 576 Q F3(\214lterpat) +(completions generated by the preceding options and ar)184 708 R 1.596 +(guments, and each completion)-.18 F(matching)184 720 Q F3(\214lterpat) 3.204 E F0 .704(is remo)3.204 F -.15(ve)-.15 G 3.204(df).15 G .704 (rom the list.)-3.204 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0 (in)3.204 E F3(\214lterpat)3.205 E F0(ne)3.205 E -.05(ga)-.15 G .705 -(tes the pattern;).05 F(in this case, an)184 588 Q 2.5(yc)-.15 G -(ompletion not matching)-2.5 E F3(\214lterpat)2.5 E F0(is remo)2.5 E --.15(ve)-.15 G(d.).15 E .467(The return v)144 604.8 R .467 -(alue is true unless an in)-.25 F -.25(va)-.4 G .466 -(lid option is supplied, an option other than).25 F F12.966 E F0 -(or)2.966 E F12.966 E F0 .466(is sup-)2.966 F 1.361 -(plied without a)144 616.8 R F3(name)3.861 E F0(ar)3.861 E 1.361 -(gument, an attempt is made to remo)-.18 F 1.662 -.15(ve a c)-.15 H -1.362(ompletion speci\214cation for a).15 F F3(name)144 628.8 Q F0 -(for which no speci\214cation e)2.5 E -(xists, or an error occurs adding a completion speci\214cation.)-.15 E -F1(compopt)108 645.6 Q F0([)2.5 E F1A F3(option)2.5 E F0 2.5(][)C -F1(\255DEI)-2.5 E F0 2.5(][)C F1(+o)-2.5 E F3(option)2.5 E F0 2.5(][)C -F3(name)-2.5 E F0(])A .447(Modify completion options for each)144 657.6 -R F3(name)2.947 E F0 .447(according to the)2.947 F F3(option)2.947 E F0 -.447(s, or for the currently-e)B -.15(xe)-.15 G(cuting).15 E .725 -(completion if no)144 669.6 R F3(name)3.225 E F0 3.225(sa)C .725 -(re supplied.)-3.225 F .725(If no)5.725 F F3(option)3.225 E F0 3.225(sa) -C .725(re gi)-3.225 F -.15(ve)-.25 G .726 -(n, display the completion options for).15 F(each)144 681.6 Q F3(name) -3.224 E F0 .724(or the current completion.)3.224 F .724(The possible v) -5.724 F .724(alues of)-.25 F F3(option)3.224 E F0 .724(are those v)3.224 -F .723(alid for the)-.25 F F1(com-)3.223 E(plete)144 693.6 Q F0 -.2(bu) -2.677 G .177(iltin described abo).2 F -.15(ve)-.15 G 5.178(.T).15 G(he) --5.178 E F12.678 E F0 .178 -(option indicates that other supplied options should apply to)2.678 F -1.228(the `)144 705.6 R(`def)-.74 E(ault')-.1 E 3.728('c)-.74 G 1.228(o\ -mmand completion; that is, completion attempted on a command for which \ -no)-3.728 F 2.038(completion has pre)144 717.6 R 2.038 -(viously been de\214ned.)-.25 F(The)7.038 E F14.538 E F0 2.039 -(option indicates that other supplied options)4.538 F 1.539 -(should apply to `)144 729.6 R(`empty')-.74 E 4.039('c)-.74 G 1.538 -(ommand completion; that is, completion attempted on a blank line.) --4.039 F(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(63)193.45 E 0 Cg -EP +(tes the pattern;).05 F(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(63) +199.835 E 0 Cg EP %%Page: 64 64 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(The)144 84 Q/F1 10 -/Times-Bold@0 SF3.02 E F0 .52(option indicates that other supplie\ -d options should apply to completion on the initial non-)3.02 F .868 -(assignment w)144 96 R .868 -(ord on the line, or after a command delimiter such as)-.1 F F1(;)3.368 -E F0(or)3.368 E F1(|)3.368 E F0 3.367(,w)C .867(hich is usually com-) --3.367 F(mand name completion.)144 108 Q .431(The return v)144 132 R +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(in this case, an) +184 84 Q 2.5(yc)-.15 G(ompletion not matching)-2.5 E/F1 10 +/Times-Italic@0 SF(\214lterpat)2.5 E F0(is remo)2.5 E -.15(ve)-.15 G(d.) +.15 E .467(The return v)144 100.8 R .467(alue is true unless an in)-.25 +F -.25(va)-.4 G .466(lid option is supplied, an option other than).25 F +/F2 10/Times-Bold@0 SF2.966 E F0(or)2.966 E F22.966 E F0 +.466(is sup-)2.966 F 1.361(plied without a)144 112.8 R F1(name)3.861 E +F0(ar)3.861 E 1.361(gument, an attempt is made to remo)-.18 F 1.662 -.15 +(ve a c)-.15 H 1.362(ompletion speci\214cation for a).15 F F1(name)144 +124.8 Q F0(for which no speci\214cation e)2.5 E +(xists, or an error occurs adding a completion speci\214cation.)-.15 E +F2(compopt)108 141.6 Q F0([)2.5 E F2A F1(option)2.5 E F0 2.5(][)C +F2(\255DEI)-2.5 E F0 2.5(][)C F2(+o)-2.5 E F1(option)2.5 E F0 2.5(][)C +F1(name)-2.5 E F0(])A .447(Modify completion options for each)144 153.6 +R F1(name)2.947 E F0 .447(according to the)2.947 F F1(option)2.947 E F0 +.447(s, or for the currently-e)B -.15(xe)-.15 G(cuting).15 E .725 +(completion if no)144 165.6 R F1(name)3.225 E F0 3.225(sa)C .725 +(re supplied.)-3.225 F .725(If no)5.725 F F1(option)3.225 E F0 3.225(sa) +C .725(re gi)-3.225 F -.15(ve)-.25 G .726 +(n, display the completion options for).15 F(each)144 177.6 Q F1(name) +3.224 E F0 .724(or the current completion.)3.224 F .724(The possible v) +5.724 F .724(alues of)-.25 F F1(option)3.224 E F0 .724(are those v)3.224 +F .723(alid for the)-.25 F F2(com-)3.223 E(plete)144 189.6 Q F0 -.2(bu) +2.677 G .177(iltin described abo).2 F -.15(ve)-.15 G 5.178(.T).15 G(he) +-5.178 E F22.678 E F0 .178 +(option indicates that other supplied options should apply to)2.678 F +1.228(the `)144 201.6 R(`def)-.74 E(ault')-.1 E 3.728('c)-.74 G 1.228(o\ +mmand completion; that is, completion attempted on a command for which \ +no)-3.728 F 2.038(completion has pre)144 213.6 R 2.038 +(viously been de\214ned.)-.25 F(The)7.038 E F24.538 E F0 2.039 +(option indicates that other supplied options)4.538 F 1.539 +(should apply to `)144 225.6 R(`empty')-.74 E 4.039('c)-.74 G 1.538 +(ommand completion; that is, completion attempted on a blank line.) +-4.039 F(The)144 237.6 Q F23.02 E F0 .52(option indicates that ot\ +her supplied options should apply to completion on the initial non-)3.02 +F .868(assignment w)144 249.6 R .868 +(ord on the line, or after a command delimiter such as)-.1 F F2(;)3.368 +E F0(or)3.368 E F2(|)3.368 E F0 3.367(,w)C .867(hich is usually com-) +-3.367 F(mand name completion.)144 261.6 Q .431(The return v)144 285.6 R .431(alue is true unless an in)-.25 F -.25(va)-.4 G .431 (lid option is supplied, an attempt is made to modify the op-).25 F -(tions for a)144 144 Q/F2 10/Times-Italic@0 SF(name)2.5 E F0 +(tions for a)144 297.6 Q F1(name)2.5 E F0 (for which no completion speci\214cation e)2.5 E -(xists, or an output error occurs.)-.15 E F1(continue)108 160.8 Q F0([) -2.5 E F2(n)A F0(])A .851(Resume the ne)144 172.8 R .851 -(xt iteration of the enclosing)-.15 F F1 -.25(fo)3.351 G(r).25 E F0(,)A -F1(while)3.351 E F0(,)A F1(until)3.351 E F0 3.351(,o)C(r)-3.351 E F1 -(select)3.35 E F0 3.35(loop. If)3.35 F F2(n)3.71 E F0 .85 -(is speci\214ed, re-)3.59 F .203(sume at the)144 184.8 R F2(n)2.703 E F0 -.203(th enclosing loop.)B F2(n)5.563 E F0 .203(must be)2.943 F/F3 10 -/Symbol SF2.703 E F0 2.704(1. If)2.703 F F2(n)3.064 E F0 .204 +(xists, or an output error occurs.)-.15 E F2(continue)108 314.4 Q F0([) +2.5 E F1(n)A F0(])A .851(Resume the ne)144 326.4 R .851 +(xt iteration of the enclosing)-.15 F F2 -.25(fo)3.351 G(r).25 E F0(,)A +F2(while)3.351 E F0(,)A F2(until)3.351 E F0 3.351(,o)C(r)-3.351 E F2 +(select)3.35 E F0 3.35(loop. If)3.35 F F1(n)3.71 E F0 .85 +(is speci\214ed, re-)3.59 F .203(sume at the)144 338.4 R F1(n)2.703 E F0 +.203(th enclosing loop.)B F1(n)5.563 E F0 .203(must be)2.943 F/F3 10 +/Symbol SF2.703 E F0 2.704(1. If)2.703 F F1(n)3.064 E F0 .204 (is greater than the number of enclosing loops,)2.944 F 1.184 -(the last enclosing loop \(the `)144 196.8 R(`top-le)-.74 E -.15(ve)-.25 +(the last enclosing loop \(the `)144 350.4 R(`top-le)-.74 E -.15(ve)-.25 G(l').15 E 3.684('l)-.74 G 1.184(oop\) is resumed.)-3.684 F 1.183 -(The return v)6.184 F 1.183(alue is 0 unless)-.25 F F2(n)3.683 E F0 -1.183(is not)3.683 F(greater than or equal to 1.)144 208.8 Q F1(declar) -108 225.6 Q(e)-.18 E F0([)2.5 E F1(\255aAfFgiIlnrtux)A F0 2.5(][)C F1 --2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C -(..])-2.5 E F1(typeset)108 237.6 Q F0([)2.5 E F1(\255aAfFgiIlnrtux)A F0 -2.5(][)C F1-2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 -2.5(].)C(..])-2.5 E 1.264(Declare v)144 249.6 R 1.264 +(The return v)6.184 F 1.183(alue is 0 unless)-.25 F F1(n)3.683 E F0 +1.183(is not)3.683 F(greater than or equal to 1.)144 362.4 Q F2(declar) +108 379.2 Q(e)-.18 E F0([)2.5 E F2(\255aAfFgiIlnrtux)A F0 2.5(][)C F2 +-2.5 E F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 2.5(].)C +(..])-2.5 E F2(typeset)108 391.2 Q F0([)2.5 E F2(\255aAfFgiIlnrtux)A F0 +2.5(][)C F2-2.5 E F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 +2.5(].)C(..])-2.5 E 1.264(Declare v)144 403.2 R 1.264 (ariables and/or gi)-.25 F 1.564 -.15(ve t)-.25 H 1.264(hem attrib).15 F -3.765(utes. If)-.2 F(no)3.765 E F2(name)3.765 E F0 3.765(sa)C 1.265 +3.765(utes. If)-.2 F(no)3.765 E F1(name)3.765 E F0 3.765(sa)C 1.265 (re gi)-3.765 F -.15(ve)-.25 G 3.765(nt).15 G 1.265(hen display the v) --3.765 F 1.265(alues of)-.25 F -.25(va)144 261.6 S 3.46(riables. The).25 -F F13.46 E F0 .96(option will display the attrib)3.46 F .96 -(utes and v)-.2 F .96(alues of each)-.25 F F2(name)3.82 E F0 5.96(.W).18 -G(hen)-5.96 E F13.46 E F0 .96(is used)3.46 F(with)144 273.6 Q F2 +-3.765 F 1.265(alues of)-.25 F -.25(va)144 415.2 S 3.46(riables. The).25 +F F23.46 E F0 .96(option will display the attrib)3.46 F .96 +(utes and v)-.2 F .96(alues of each)-.25 F F1(name)3.82 E F0 5.96(.W).18 +G(hen)-5.96 E F23.46 E F0 .96(is used)3.46 F(with)144 427.2 Q F1 (name)2.774 E F0(ar)2.774 E .274 -(guments, additional options, other than)-.18 F F12.775 E F0(and) -2.775 E F12.775 E F0 2.775(,a)C .275(re ignored.)-2.775 F(When) -5.275 E F12.775 E F0 .275(is supplied)2.775 F(without)144 285.6 Q -F2(name)3.79 E F0(ar)3.79 E 1.29(guments, it will display the attrib) +(guments, additional options, other than)-.18 F F22.775 E F0(and) +2.775 E F22.775 E F0 2.775(,a)C .275(re ignored.)-2.775 F(When) +5.275 E F22.775 E F0 .275(is supplied)2.775 F(without)144 439.2 Q +F1(name)3.79 E F0(ar)3.79 E 1.29(guments, it will display the attrib) -.18 F 1.289(utes and v)-.2 F 1.289(alues of all v)-.25 F 1.289 -(ariables ha)-.25 F 1.289(ving the at-)-.2 F(trib)144 297.6 Q .38 +(ariables ha)-.25 F 1.289(ving the at-)-.2 F(trib)144 451.2 Q .38 (utes speci\214ed by the additional options.)-.2 F .38 -(If no other options are supplied with)5.38 F F12.88 E F0(,)A F1 +(If no other options are supplied with)5.38 F F22.88 E F0(,)A F2 (declar)2.88 E(e)-.18 E F0(will)2.88 E 1.107(display the attrib)144 -309.6 R 1.107(utes and v)-.2 F 1.106(alues of all shell v)-.25 F 3.606 -(ariables. The)-.25 F F13.606 E F0 1.106 +463.2 R 1.107(utes and v)-.2 F 1.106(alues of all shell v)-.25 F 3.606 +(ariables. The)-.25 F F23.606 E F0 1.106 (option will restrict the display to)3.606 F .299(shell functions.)144 -321.6 R(The)5.299 E F12.799 E F0 .299(option inhibits the display\ +475.2 R(The)5.299 E F22.799 E F0 .299(option inhibits the display\ of function de\214nitions; only the function name)2.799 F 1.54 -(and attrib)144 333.6 R 1.54(utes are printed.)-.2 F 1.54(If the)6.54 F -F1(extdeb)4.04 E(ug)-.2 E F0 1.54(shell option is enabled using)4.04 F -F1(shopt)4.04 E F0 4.04(,t)C 1.54(he source \214le)-4.04 F .648 -(name and line number where each)144 345.6 R F2(name)3.148 E F0 .648 -(is de\214ned are displayed as well.)3.148 F(The)5.648 E F13.148 E -F0 .649(option implies)3.149 F F1144 357.6 Q F0 5.837(.T)C(he) --5.837 E F13.337 E F0 .837(option forces v)3.337 F .836 +(and attrib)144 487.2 R 1.54(utes are printed.)-.2 F 1.54(If the)6.54 F +F2(extdeb)4.04 E(ug)-.2 E F0 1.54(shell option is enabled using)4.04 F +F2(shopt)4.04 E F0 4.04(,t)C 1.54(he source \214le)-4.04 F .648 +(name and line number where each)144 499.2 R F1(name)3.148 E F0 .648 +(is de\214ned are displayed as well.)3.148 F(The)5.648 E F23.148 E +F0 .649(option implies)3.149 F F2144 511.2 Q F0 5.837(.T)C(he) +-5.837 E F23.337 E F0 .837(option forces v)3.337 F .836 (ariables to be created or modi\214ed at the global scope, e)-.25 F -.15 -(ve)-.25 G 3.336(nw).15 G(hen)-3.336 E F1(de-)3.336 E(clar)144 369.6 Q +(ve)-.25 G 3.336(nw).15 G(hen)-3.336 E F2(de-)3.336 E(clar)144 523.2 Q (e)-.18 E F0 .818(is e)3.318 F -.15(xe)-.15 G .818 (cuted in a shell function.).15 F .818 -(It is ignored in all other cases.)5.818 F(The)5.819 E F13.319 E -F0 .819(option causes local)3.319 F -.25(va)144 381.6 S .694 +(It is ignored in all other cases.)5.818 F(The)5.819 E F23.319 E +F0 .819(option causes local)3.319 F -.25(va)144 535.2 S .694 (riables to inherit the attrib).25 F .694(utes \(e)-.2 F .694(xcept the) --.15 F F2(namer)3.194 E(ef)-.37 E F0(attrib)3.194 E .693(ute\) and v)-.2 +-.15 F F1(namer)3.194 E(ef)-.37 E F0(attrib)3.194 E .693(ute\) and v)-.2 F .693(alue of an)-.25 F 3.193(ye)-.15 G .693(xisting v)-3.343 F -(ariable)-.25 E .82(with the same)144 393.6 R F2(name)3.32 E F0 .82 +(ariable)-.25 E .82(with the same)144 547.2 R F1(name)3.32 E F0 .82 (at a surrounding scope.)3.32 F .82(If there is no e)5.82 F .82 (xisting v)-.15 F .82(ariable, the local v)-.25 F .82(ariable is)-.25 F -.38(initially unset.)144 405.6 R .38(The follo)5.38 F .379 +.38(initially unset.)144 559.2 R .38(The follo)5.38 F .379 (wing options can be used to restrict output to v)-.25 F .379 -(ariables with the speci\214ed)-.25 F(attrib)144 417.6 Q(ute or to gi) --.2 E .3 -.15(ve v)-.25 H(ariables attrib)-.1 E(utes:)-.2 E F1144 -429.6 Q F0(Each)180 429.6 Q F2(name)2.5 E F0(is an inde)2.5 E -.15(xe) --.15 G 2.5(da).15 G(rray v)-2.5 E(ariable \(see)-.25 E F1(Arrays)2.5 E -F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F1144 441.6 Q F0(Each)180 -441.6 Q F2(name)2.5 E F0(is an associati)2.5 E .3 -.15(ve a)-.25 H -(rray v).15 E(ariable \(see)-.25 E F1(Arrays)2.5 E F0(abo)2.5 E -.15(ve) --.15 G(\).).15 E F1144 453.6 Q F0(Use function names only)180 -453.6 Q(.)-.65 E F1144 465.6 Q F0 .557(The v)180 465.6 R .558 +(ariables with the speci\214ed)-.25 F(attrib)144 571.2 Q(ute or to gi) +-.2 E .3 -.15(ve v)-.25 H(ariables attrib)-.1 E(utes:)-.2 E F2144 +583.2 Q F0(Each)180 583.2 Q F1(name)2.5 E F0(is an inde)2.5 E -.15(xe) +-.15 G 2.5(da).15 G(rray v)-2.5 E(ariable \(see)-.25 E F2(Arrays)2.5 E +F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F2144 595.2 Q F0(Each)180 +595.2 Q F1(name)2.5 E F0(is an associati)2.5 E .3 -.15(ve a)-.25 H +(rray v).15 E(ariable \(see)-.25 E F2(Arrays)2.5 E F0(abo)2.5 E -.15(ve) +-.15 G(\).).15 E F2144 607.2 Q F0(Use function names only)180 +607.2 Q(.)-.65 E F2144 619.2 Q F0 .557(The v)180 619.2 R .558 (ariable is treated as an inte)-.25 F .558(ger; arithmetic e)-.15 F -.25 (va)-.25 G .558(luation \(see).25 F/F4 9/Times-Bold@0 SF .558 -(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)180 477.6 Q F0(abo) +(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)180 631.2 Q F0(abo) 2.25 E -.15(ve)-.15 G 2.5(\)i).15 G 2.5(sp)-2.5 G(erformed when the v) --2.5 E(ariable is assigned a v)-.25 E(alue.)-.25 E F1144 489.6 Q -F0 .91(When the v)180 489.6 R .909(ariable is assigned a v)-.25 F .909 +-2.5 E(ariable is assigned a v)-.25 E(alue.)-.25 E F2144 643.2 Q +F0 .91(When the v)180 643.2 R .909(ariable is assigned a v)-.25 F .909 (alue, all upper)-.25 F .909(-case characters are con)-.2 F -.15(ve)-.4 -G .909(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 501.6 R -(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 513.6 -Q F0(Gi)180 513.6 Q 1.619 -.15(ve e)-.25 H(ach).15 E F2(name)3.819 E F0 -(the)3.819 E F2(namer)3.819 E(ef)-.37 E F0(attrib)3.819 E 1.319 +G .909(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 655.2 R +(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F2144 667.2 +Q F0(Gi)180 667.2 Q 1.619 -.15(ve e)-.25 H(ach).15 E F1(name)3.819 E F0 +(the)3.819 E F1(namer)3.819 E(ef)-.37 E F0(attrib)3.819 E 1.319 (ute, making it a name reference to another v)-.2 F(ariable.)-.25 E .478 -(That other v)180 525.6 R .478(ariable is de\214ned by the v)-.25 F .478 -(alue of)-.25 F F2(name)2.978 E F0 5.478(.A)C .478 -(ll references, assignments, and at-)-5.478 F(trib)180 537.6 Q .781 -(ute modi\214cations to)-.2 F F2(name)3.281 E F0 3.281(,e)C .782 -(xcept those using or changing the)-3.431 F F13.282 E F0(attrib) -3.282 E .782(ute itself, are)-.2 F .809(performed on the v)180 549.6 R -.809(ariable referenced by)-.25 F F2(name)3.308 E F0 1.908 -.55('s v)D +(That other v)180 679.2 R .478(ariable is de\214ned by the v)-.25 F .478 +(alue of)-.25 F F1(name)2.978 E F0 5.478(.A)C .478 +(ll references, assignments, and at-)-5.478 F(trib)180 691.2 Q .781 +(ute modi\214cations to)-.2 F F1(name)3.281 E F0 3.281(,e)C .782 +(xcept those using or changing the)-3.431 F F23.282 E F0(attrib) +3.282 E .782(ute itself, are)-.2 F .809(performed on the v)180 703.2 R +.809(ariable referenced by)-.25 F F1(name)3.308 E F0 1.908 -.55('s v)D 3.308(alue. The).3 F .808(nameref attrib)3.308 F .808(ute cannot be)-.2 -F(applied to array v)180 561.6 Q(ariables.)-.25 E F1144 573.6 Q F0 -(Mak)180 573.6 Q(e)-.1 E F2(name)3.654 E F0 3.654(sr)C(eadonly)-3.654 E -6.154(.T)-.65 G 1.154(hese names cannot then be assigned v)-6.154 F -1.155(alues by subsequent as-)-.25 F(signment statements or unset.)180 -585.6 Q F1144 597.6 Q F0(Gi)180 597.6 Q .73 -.15(ve e)-.25 H(ach) -.15 E F2(name)2.93 E F0(the)2.929 E F2(tr)2.929 E(ace)-.15 E F0(attrib) -2.929 E 2.929(ute. T)-.2 F .429(raced functions inherit the)-.35 F F1 -(DEB)2.929 E(UG)-.1 E F0(and)2.929 E F1(RETURN)2.929 E F0 -(traps from the calling shell.)180 609.6 Q(The trace attrib)5 E -(ute has no special meaning for v)-.2 E(ariables.)-.25 E F1144 -621.6 Q F0 .909(When the v)180 621.6 R .909(ariable is assigned a v)-.25 -F .909(alue, all lo)-.25 F(wer)-.25 E .909(-case characters are con)-.2 -F -.15(ve)-.4 G .91(rted to upper).15 F(-)-.2 E 2.5(case. The)180 633.6 -R(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1 -144 645.6 Q F0(Mark)180 645.6 Q F2(name)2.5 E F0 2.5(sf)C(or e)-2.5 E -(xport to subsequent commands via the en)-.15 E(vironment.)-.4 E .144 -(Using `+' instead of `\255' turns of)144 662.4 R 2.643(ft)-.25 G .143 -(he attrib)-2.643 F .143(ute instead, with the e)-.2 F .143 -(xceptions that)-.15 F F1(+a)2.643 E F0(and)2.643 E F1(+A)2.643 E F0 -.143(may not)2.643 F .578(be used to destro)144 674.4 R 3.079(ya)-.1 G -.579(rray v)-3.079 F .579(ariables and)-.25 F F1(+r)3.079 E F0 .579 -(will not remo)3.079 F .879 -.15(ve t)-.15 H .579(he readonly attrib).15 -F 3.079(ute. When)-.2 F .579(used in a)3.079 F(function,)144 686.4 Q F1 -(declar)3.544 E(e)-.18 E F0(and)3.544 E F1(typeset)3.544 E F0(mak)3.544 -E 3.544(ee)-.1 G(ach)-3.544 E F2(name)3.543 E F0 1.043 -(local, as with the)3.543 F F1(local)3.543 E F0 1.043 -(command, unless the)3.543 F F13.543 E F0 1.205 -(option is supplied.)144 698.4 R 1.205(If a v)6.205 F 1.205 -(ariable name is follo)-.25 F 1.205(wed by =)-.25 F F2(value)A F0 3.705 -(,t)C 1.205(he v)-3.705 F 1.205(alue of the v)-.25 F 1.205 -(ariable is set to)-.25 F F2(value)144 710.4 Q F0 5.218(.W)C .218 -(hen using)-5.218 F F12.718 E F0(or)2.718 E F12.718 E F0 -.217(and the compound assignment syntax to create array v)2.717 F .217 -(ariables, addi-)-.25 F .882(tional attrib)144 722.4 R .882 -(utes do not tak)-.2 F 3.382(ee)-.1 G -.25(ff)-3.382 G .882 -(ect until subsequent assignments.).25 F .882(The return v)5.882 F .882 -(alue is 0 unless an)-.25 F(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E -(64)193.45 E 0 Cg EP +F(applied to array v)180 715.2 Q(ariables.)-.25 E(GNU Bash 5.2)72 768 Q +(2022 June 3)150.675 E(64)199.835 E 0 Cg EP %%Page: 65 65 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(in)144 84 Q -.25 -(va)-.4 G .366(lid option is encountered, an attempt is made to de\214n\ -e a function using).25 F/F1 10/Courier@0 SF .365(\255f foo=bar)2.865 F -F0 2.865(,a)C 2.865(na)-2.865 G(t-)-2.865 E .548 -(tempt is made to assign a v)144 96 R .548(alue to a readonly v)-.25 F -.549(ariable, an attempt is made to assign a v)-.25 F .549(alue to an) --.25 F 1.749(array v)144 108 R 1.749 -(ariable without using the compound assignment syntax \(see)-.25 F/F2 10 -/Times-Bold@0 SF(Arrays)4.248 E F0(abo)4.248 E -.15(ve)-.15 G 1.748 -(\), one of the).15 F/F3 10/Times-Italic@0 SF(names)144 120 Q F0 .359 -(is not a v)2.858 F .359(alid shell v)-.25 F .359 -(ariable name, an attempt is made to turn of)-.25 F 2.859(fr)-.25 G .359 -(eadonly status for a read-)-2.859 F 1.213(only v)144 132 R 1.213 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF144 84 Q F0(Mak)180 84 Q(e)-.1 E/F2 10/Times-Italic@0 SF(name) +3.654 E F0 3.654(sr)C(eadonly)-3.654 E 6.154(.T)-.65 G 1.154 +(hese names cannot then be assigned v)-6.154 F 1.155 +(alues by subsequent as-)-.25 F(signment statements or unset.)180 96 Q +F1144 108 Q F0(Gi)180 108 Q .73 -.15(ve e)-.25 H(ach).15 E F2 +(name)2.93 E F0(the)2.929 E F2(tr)2.929 E(ace)-.15 E F0(attrib)2.929 E +2.929(ute. T)-.2 F .429(raced functions inherit the)-.35 F F1(DEB)2.929 +E(UG)-.1 E F0(and)2.929 E F1(RETURN)2.929 E F0 +(traps from the calling shell.)180 120 Q(The trace attrib)5 E +(ute has no special meaning for v)-.2 E(ariables.)-.25 E F1144 132 +Q F0 .909(When the v)180 132 R .909(ariable is assigned a v)-.25 F .909 +(alue, all lo)-.25 F(wer)-.25 E .909(-case characters are con)-.2 F -.15 +(ve)-.4 G .91(rted to upper).15 F(-)-.2 E 2.5(case. The)180 144 R(lo)2.5 +E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 156 Q +F0(Mark)180 156 Q F2(name)2.5 E F0 2.5(sf)C(or e)-2.5 E +(xport to subsequent commands via the en)-.15 E(vironment.)-.4 E .144 +(Using `+' instead of `\255' turns of)144 172.8 R 2.643(ft)-.25 G .143 +(he attrib)-2.643 F .143(ute instead, with the e)-.2 F .143 +(xceptions that)-.15 F F1(+a)2.643 E F0(and)2.643 E F1(+A)2.643 E F0 +.143(may not)2.643 F .578(be used to destro)144 184.8 R 3.079(ya)-.1 G +.579(rray v)-3.079 F .579(ariables and)-.25 F F1(+r)3.079 E F0 .579 +(will not remo)3.079 F .879 -.15(ve t)-.15 H .579(he readonly attrib).15 +F 3.079(ute. When)-.2 F .579(used in a)3.079 F(function,)144 196.8 Q F1 +(declar)3.544 E(e)-.18 E F0(and)3.544 E F1(typeset)3.544 E F0(mak)3.544 +E 3.544(ee)-.1 G(ach)-3.544 E F2(name)3.543 E F0 1.043 +(local, as with the)3.543 F F1(local)3.543 E F0 1.043 +(command, unless the)3.543 F F13.543 E F0 1.205 +(option is supplied.)144 208.8 R 1.205(If a v)6.205 F 1.205 +(ariable name is follo)-.25 F 1.205(wed by =)-.25 F F2(value)A F0 3.705 +(,t)C 1.205(he v)-3.705 F 1.205(alue of the v)-.25 F 1.205 +(ariable is set to)-.25 F F2(value)144 220.8 Q F0 5.218(.W)C .218 +(hen using)-5.218 F F12.718 E F0(or)2.718 E F12.718 E F0 +.217(and the compound assignment syntax to create array v)2.717 F .217 +(ariables, addi-)-.25 F .882(tional attrib)144 232.8 R .882 +(utes do not tak)-.2 F 3.382(ee)-.1 G -.25(ff)-3.382 G .882 +(ect until subsequent assignments.).25 F .882(The return v)5.882 F .882 +(alue is 0 unless an)-.25 F(in)144 244.8 Q -.25(va)-.4 G .366(lid optio\ +n is encountered, an attempt is made to de\214ne a function using).25 F +/F3 10/Courier@0 SF .365(\255f foo=bar)2.865 F F0 2.865(,a)C 2.865(na) +-2.865 G(t-)-2.865 E .548(tempt is made to assign a v)144 256.8 R .548 +(alue to a readonly v)-.25 F .549 +(ariable, an attempt is made to assign a v)-.25 F .549(alue to an)-.25 F +1.749(array v)144 268.8 R 1.749 +(ariable without using the compound assignment syntax \(see)-.25 F F1 +(Arrays)4.248 E F0(abo)4.248 E -.15(ve)-.15 G 1.748(\), one of the).15 F +F2(names)144 280.8 Q F0 .359(is not a v)2.858 F .359(alid shell v)-.25 F +.359(ariable name, an attempt is made to turn of)-.25 F 2.859(fr)-.25 G +.359(eadonly status for a read-)-2.859 F 1.213(only v)144 292.8 R 1.213 (ariable, an attempt is made to turn of)-.25 F 3.713(fa)-.25 G 1.213 (rray status for an array v)-3.713 F 1.212(ariable, or an attempt is) --.25 F(made to display a non-e)144 144 Q(xistent function with)-.15 E F2 -2.5 E F0(.)A F2(dirs [\255clpv] [+)108 160.8 Q F3(n)A F2 2.5(][)C --2.5 E F3(n)A F2(])A F0 -.4(Wi)144 172.8 S .328 +-.25 F(made to display a non-e)144 304.8 Q(xistent function with)-.15 E +F12.5 E F0(.)A F1(dirs [\255clpv] [+)108 321.6 Q F2(n)A F1 2.5(][) +C-2.5 E F2(n)A F1(])A F0 -.4(Wi)144 333.6 S .328 (thout options, displays the list of currently remembered directories.) .4 F .329(The def)5.329 F .329(ault display is on a)-.1 F 1.238 -(single line with directory names separated by spaces.)144 184.8 R 1.238 -(Directories are added to the list with the)6.238 F F2(pushd)144 196.8 Q -F0 .927(command; the)3.427 F F2(popd)3.428 E F0 .928(command remo)3.428 +(single line with directory names separated by spaces.)144 345.6 R 1.238 +(Directories are added to the list with the)6.238 F F1(pushd)144 357.6 Q +F0 .927(command; the)3.427 F F1(popd)3.428 E F0 .928(command remo)3.428 F -.15(ve)-.15 G 3.428(se).15 G .928(ntries from the list.)-3.428 F .928 -(The current directory is al-)5.928 F -.1(wa)144 208.8 S -(ys the \214rst directory in the stack.).1 E F2144 220.8 Q F0 -(Clears the directory stack by deleting all of the entries.)180 220.8 Q -F2144 232.8 Q F0 .882 -(Produces a listing using full pathnames; the def)180 232.8 R .881 +(The current directory is al-)5.928 F -.1(wa)144 369.6 S +(ys the \214rst directory in the stack.).1 E F1144 381.6 Q F0 +(Clears the directory stack by deleting all of the entries.)180 381.6 Q +F1144 393.6 Q F0 .882 +(Produces a listing using full pathnames; the def)180 393.6 R .881 (ault listing format uses a tilde to denote)-.1 F(the home directory)180 -244.8 Q(.)-.65 E F2144 256.8 Q F0 -(Print the directory stack with one entry per line.)180 256.8 Q F2 -144 268.8 Q F0 .272(Print the directory stack with one entry per line, \ -pre\214xing each entry with its inde)180 268.8 R 2.773(xi)-.15 G 2.773 -(nt)-2.773 G(he)-2.773 E(stack.)180 280.8 Q F2(+)144 292.8 Q F3(n)A F0 -1.565(Displays the)180 292.8 R F3(n)4.065 E F0 1.565 -(th entry counting from the left of the list sho)B 1.564(wn by)-.25 F F2 +405.6 Q(.)-.65 E F1144 417.6 Q F0 +(Print the directory stack with one entry per line.)180 417.6 Q F1 +144 429.6 Q F0 .272(Print the directory stack with one entry per line, \ +pre\214xing each entry with its inde)180 429.6 R 2.773(xi)-.15 G 2.773 +(nt)-2.773 G(he)-2.773 E(stack.)180 441.6 Q F1(+)144 453.6 Q F2(n)A F0 +1.565(Displays the)180 453.6 R F2(n)4.065 E F0 1.565 +(th entry counting from the left of the list sho)B 1.564(wn by)-.25 F F1 (dirs)4.064 E F0 1.564(when in)4.064 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E -(without options, starting with zero.)180 304.8 Q F2144 316.8 Q F3 -(n)A F0 1.194(Displays the)180 316.8 R F3(n)3.694 E F0 1.194 +(without options, starting with zero.)180 465.6 Q F1144 477.6 Q F2 +(n)A F0 1.194(Displays the)180 477.6 R F2(n)3.694 E F0 1.194 (th entry counting from the right of the list sho)B 1.194(wn by)-.25 F -F2(dirs)3.694 E F0 1.194(when in)3.694 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E -(without options, starting with zero.)180 328.8 Q .258(The return v)144 -345.6 R .258(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258 -(lid option is supplied or).25 F F3(n)2.758 E F0(inde)2.758 E -.15(xe) +F1(dirs)3.694 E F0 1.194(when in)3.694 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E +(without options, starting with zero.)180 489.6 Q .258(The return v)144 +506.4 R .258(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258 +(lid option is supplied or).25 F F2(n)2.758 E F0(inde)2.758 E -.15(xe) -.15 G 2.758(sb).15 G -.15(ey)-2.758 G .258(ond the end of the direc-) -.15 F(tory stack.)144 357.6 Q F2(diso)108 374.4 Q(wn)-.1 E F0([)2.5 E F2 -(\255ar)A F0 2.5(][)C F2-2.5 E F0 2.5(][)C F3(jobspec)-2.5 E F0 -(... |)2.5 E F3(pid)2.5 E F0(... ])2.5 E -.4(Wi)144 386.4 S .121 -(thout options, remo).4 F .422 -.15(ve e)-.15 H(ach).15 E F3(jobspec) +.15 F(tory stack.)144 518.4 Q F1(diso)108 535.2 Q(wn)-.1 E F0([)2.5 E F1 +(\255ar)A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(jobspec)-2.5 E F0 +(... |)2.5 E F2(pid)2.5 E F0(... ])2.5 E -.4(Wi)144 547.2 S .121 +(thout options, remo).4 F .422 -.15(ve e)-.15 H(ach).15 E F2(jobspec) 4.362 E F0 .122(from the table of acti)2.932 F .422 -.15(ve j)-.25 H -2.622(obs. If).15 F F3(jobspec)4.362 E F0 .122(is not present, and)2.932 -F .096(neither the)144 398.4 R F22.596 E F0 .096(nor the)2.596 F -F22.596 E F0 .096(option is supplied, the)2.596 F F3(curr)2.596 E -.096(ent job)-.37 F F0 .096(is used.)2.596 F .096(If the)5.096 F F2 +2.622(obs. If).15 F F2(jobspec)4.362 E F0 .122(is not present, and)2.932 +F .096(neither the)144 559.2 R F12.596 E F0 .096(nor the)2.596 F +F12.596 E F0 .096(option is supplied, the)2.596 F F2(curr)2.596 E +.096(ent job)-.37 F F0 .096(is used.)2.596 F .096(If the)5.096 F F1 2.596 E F0 .096(option is gi)2.596 F -.15(ve)-.25 G .096(n, each) -.15 F F3(jobspec)145.74 410.4 Q F0 .585(is not remo)3.395 F -.15(ve)-.15 +.15 F F2(jobspec)145.74 571.2 Q F0 .585(is not remo)3.395 F -.15(ve)-.15 G 3.085(df).15 G .585(rom the table, b)-3.085 F .585(ut is mark)-.2 F .585(ed so that)-.1 F/F4 9/Times-Bold@0 SF(SIGHUP)3.085 E F0 .586 -(is not sent to the job if the)2.835 F .962(shell recei)144 422.4 R -.15 +(is not sent to the job if the)2.835 F .962(shell recei)144 583.2 R -.15 (ve)-.25 G 3.462(sa).15 G F4(SIGHUP)A/F5 9/Times-Roman@0 SF(.)A F0 .962 -(If no)5.462 F F3(jobspec)5.202 E F0 .962(is supplied, the)3.772 F F2 +(If no)5.462 F F2(jobspec)5.202 E F0 .962(is supplied, the)3.772 F F1 3.462 E F0 .962(option means to remo)3.462 F 1.262 -.15(ve o)-.15 -H 3.462(rm).15 G .962(ark all)-3.462 F 1.358(jobs; the)144 434.4 R F2 -3.858 E F0 1.358(option without a)3.858 F F3(jobspec)5.598 E F0 +H 3.462(rm).15 G .962(ark all)-3.462 F 1.358(jobs; the)144 595.2 R F1 +3.858 E F0 1.358(option without a)3.858 F F2(jobspec)5.598 E F0 (ar)4.169 E 1.359(gument restricts operation to running jobs.)-.18 F -1.359(The return)6.359 F -.25(va)144 446.4 S(lue is 0 unless a).25 E F3 +1.359(The return)6.359 F -.25(va)144 607.2 S(lue is 0 unless a).25 E F2 (jobspec)4.24 E F0(does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E -F2(echo)108 463.2 Q F0([)2.5 E F2(\255neE)A F0 2.5(][)C F3(ar)-2.5 E(g) --.37 E F0(...])2.5 E .425(Output the)144 475.2 R F3(ar)2.925 E(g)-.37 E -F0 .424(s, separated by spaces, follo)B .424(wed by a ne)-.25 F 2.924 +F1(echo)108 624 Q F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g) +-.37 E F0(...])2.5 E .425(Output the)144 636 R F2(ar)2.925 E(g)-.37 E F0 +.424(s, separated by spaces, follo)B .424(wed by a ne)-.25 F 2.924 (wline. The)-.25 F .424(return status is 0 unless a write)2.924 F .307 -(error occurs.)144 487.2 R(If)5.307 E F22.807 E F0 .307 +(error occurs.)144 648 R(If)5.307 E F12.807 E F0 .307 (is speci\214ed, the trailing ne)2.807 F .308(wline is suppressed.)-.25 -F .308(If the)5.308 F F22.808 E F0 .308(option is gi)2.808 F -.15 +F .308(If the)5.308 F F12.808 E F0 .308(option is gi)2.808 F -.15 (ve)-.25 G .308(n, inter).15 F(-)-.2 E .198(pretation of the follo)144 -499.2 R .198(wing backslash-escaped characters is enabled.)-.25 F(The) -5.198 E F22.698 E F0 .197(option disables the in-)2.697 F .067 -(terpretation of these escape characters, e)144 511.2 R -.15(ve)-.25 G +660 R .198(wing backslash-escaped characters is enabled.)-.25 F(The) +5.198 E F12.698 E F0 .197(option disables the in-)2.697 F .067 +(terpretation of these escape characters, e)144 672 R -.15(ve)-.25 G 2.567(no).15 G 2.567(ns)-2.567 G .067(ystems where the)-2.567 F 2.567 -(ya)-.15 G .067(re interpreted by def)-2.567 F 2.568(ault. The)-.1 F F2 -(xpg_echo)144 523.2 Q F0 .602 +(ya)-.15 G .067(re interpreted by def)-2.567 F 2.568(ault. The)-.1 F F1 +(xpg_echo)144 684 Q F0 .602 (shell option may be used to dynamically determine whether or not)3.102 -F F2(echo)3.101 E F0 -.15(ex)3.101 G .601(pands these).15 F .658 -(escape characters by def)144 535.2 R(ault.)-.1 E F2(echo)5.658 E F0 -.659(does not interpret)3.159 F F23.159 E F0 .659 -(to mean the end of options.)3.159 F F2(echo)5.659 E F0(inter)3.159 E(-) --.2 E(prets the follo)144 547.2 Q(wing escape sequences:)-.25 E F2(\\a) -144 559.2 Q F0(alert \(bell\))180 559.2 Q F2(\\b)144 571.2 Q F0 -(backspace)180 571.2 Q F2(\\c)144 583.2 Q F0(suppress further output)180 -583.2 Q F2(\\e)144 595.2 Q(\\E)144 607.2 Q F0(an escape character)180 -607.2 Q F2(\\f)144 619.2 Q F0(form feed)180 619.2 Q F2(\\n)144 631.2 Q -F0(ne)180 631.2 Q 2.5(wl)-.25 G(ine)-2.5 E F2(\\r)144 643.2 Q F0 -(carriage return)180 643.2 Q F2(\\t)144 655.2 Q F0(horizontal tab)180 -655.2 Q F2(\\v)144 667.2 Q F0 -.15(ve)180 667.2 S(rtical tab).15 E F2 -(\\\\)144 679.2 Q F0(backslash)180 679.2 Q F2(\\0)144 691.2 Q F3(nnn)A -F0(the eight-bit character whose v)180 691.2 Q(alue is the octal v)-.25 -E(alue)-.25 E F3(nnn)2.5 E F0(\(zero to three octal digits\))2.5 E F2 -(\\x)144 703.2 Q F3(HH)A F0(the eight-bit character whose v)180 703.2 Q -(alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F3(HH)2.5 E F0 -(\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(65)193.45 E 0 Cg EP +F F1(echo)3.101 E F0 -.15(ex)3.101 G .601(pands these).15 F .658 +(escape characters by def)144 696 R(ault.)-.1 E F1(echo)5.658 E F0 .659 +(does not interpret)3.159 F F13.159 E F0 .659 +(to mean the end of options.)3.159 F F1(echo)5.659 E F0(inter)3.159 E(-) +-.2 E(prets the follo)144 708 Q(wing escape sequences:)-.25 E +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(65)199.835 E 0 Cg EP %%Page: 66 66 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(\\u)144 84 Q/F2 10/Times-Italic@0 SF(HHHH)A F0 1.507 -(the Unicode \(ISO/IEC 10646\) character whose v)180 96 R 1.506 +SF(\\a)144 84 Q F0(alert \(bell\))180 84 Q F1(\\b)144 96 Q F0(backspace) +180 96 Q F1(\\c)144 108 Q F0(suppress further output)180 108 Q F1(\\e) +144 120 Q(\\E)144 132 Q F0(an escape character)180 132 Q F1(\\f)144 144 +Q F0(form feed)180 144 Q F1(\\n)144 156 Q F0(ne)180 156 Q 2.5(wl)-.25 G +(ine)-2.5 E F1(\\r)144 168 Q F0(carriage return)180 168 Q F1(\\t)144 180 +Q F0(horizontal tab)180 180 Q F1(\\v)144 192 Q F0 -.15(ve)180 192 S +(rtical tab).15 E F1(\\\\)144 204 Q F0(backslash)180 204 Q F1(\\0)144 +216 Q/F2 10/Times-Italic@0 SF(nnn)A F0(the eight-bit character whose v) +180 216 Q(alue is the octal v)-.25 E(alue)-.25 E F2(nnn)2.5 E F0 +(\(zero to three octal digits\))2.5 E F1(\\x)144 228 Q F2(HH)A F0 +(the eight-bit character whose v)180 228 Q(alue is the he)-.25 E +(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0(\(one or tw)2.5 E 2.5(oh) +-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E F1(\\u)144 240 Q F2(HHHH)A F0 +1.507(the Unicode \(ISO/IEC 10646\) character whose v)180 252 R 1.506 (alue is the he)-.25 F 1.506(xadecimal v)-.15 F(alue)-.25 E F2(HHHH) -4.006 E F0(\(one to four he)180 108 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 -(\\U)144 120 Q F2(HHHHHHHH)A F0 .547 -(the Unicode \(ISO/IEC 10646\) character whose v)180 132 R .547 +4.006 E F0(\(one to four he)180 264 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 +(\\U)144 276 Q F2(HHHHHHHH)A F0 .547 +(the Unicode \(ISO/IEC 10646\) character whose v)180 288 R .547 (alue is the he)-.25 F .548(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) -3.048 E(HHH)180 144 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) --2.5 E F1(enable)108 160.8 Q F0([)2.5 E F1A F0 2.5(][)C F1 +3.048 E(HHH)180 300 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) +-2.5 E F1(enable)108 316.8 Q F0([)2.5 E F1A F0 2.5(][)C F1 (\255dnps)-2.5 E F0 2.5(][)C F1-2.5 E F2(\214lename)2.5 E F0 2.5 -(][)C F2(name)-2.5 E F0(...])2.5 E .278(Enable and disable b)144 172.8 R +(][)C F2(name)-2.5 E F0(...])2.5 E .278(Enable and disable b)144 328.8 R .278(uiltin shell commands.)-.2 F .278(Disabling a b)5.278 F .278 (uiltin allo)-.2 F .278(ws a disk command which has)-.25 F .833 -(the same name as a shell b)144 184.8 R .834(uiltin to be e)-.2 F -.15 +(the same name as a shell b)144 340.8 R .834(uiltin to be e)-.2 F -.15 (xe)-.15 G .834(cuted without specifying a full pathname, e).15 F -.15 (ve)-.25 G 3.334(nt).15 G(hough)-3.334 E .99 -(the shell normally searches for b)144 196.8 R .989 +(the shell normally searches for b)144 352.8 R .989 (uiltins before disk commands.)-.2 F(If)5.989 E F13.489 E F0 .989 (is used, each)3.489 F F2(name)3.489 E F0 .989(is dis-)3.489 F .648 -(abled; otherwise,)144 208.8 R F2(names)3.148 E F0 .648(are enabled.) +(abled; otherwise,)144 364.8 R F2(names)3.148 E F0 .648(are enabled.) 3.148 F -.15(Fo)5.648 G 3.148(re).15 G .648(xample, to use the)-3.298 F F1(test)3.148 E F0 .648(binary found via the)3.148 F/F3 9/Times-Bold@0 SF -.666(PA)3.148 G(TH)-.189 E F0(in-)2.899 E .539(stead of the shell b) -144 220.8 R .538(uiltin v)-.2 F .538(ersion, run)-.15 F/F4 10/Courier@0 +144 376.8 R .538(uiltin v)-.2 F .538(ersion, run)-.15 F/F4 10/Courier@0 SF .538(enable -n test)3.038 F F0 5.538(.T)C(he)-5.538 E F13.038 E -F0 .538(option means to load the ne)3.038 F(w)-.25 E -.2(bu)144 232.8 S +F0 .538(option means to load the ne)3.038 F(w)-.25 E -.2(bu)144 388.8 S 1.365(iltin command).2 F F2(name)4.225 E F0 1.365(from shared object) 4.045 F F2(\214lename)5.775 E F0 3.865(,o).18 G 3.865(ns)-3.865 G 1.365 (ystems that support dynamic loading.)-3.865 F .607(Bash will use the v) -144 244.8 R .606(alue of the)-.25 F F1 -.3(BA)3.106 G(SH_LO).3 E(AD)-.4 +144 400.8 R .606(alue of the)-.25 F F1 -.3(BA)3.106 G(SH_LO).3 E(AD)-.4 E(ABLES_P)-.35 E -.95(AT)-.74 G(H).95 E F0 -.25(va)3.106 G .606 (riable as a colon-separated list of).25 F .548 -(directories in which to search for)144 256.8 R F2(\214lename)3.048 E F0 +(directories in which to search for)144 412.8 R F2(\214lename)3.048 E F0 5.549(.T)C .549(he def)-5.549 F .549(ault is system-dependent.)-.1 F (The)5.549 E F13.049 E F0 .549(option will)3.049 F .547 -(delete a b)144 268.8 R .547(uiltin pre)-.2 F .547(viously loaded with) +(delete a b)144 424.8 R .547(uiltin pre)-.2 F .547(viously loaded with) -.25 F F13.047 E F0 5.547(.I)C 3.047(fn)-5.547 G(o)-3.047 E F2 (name)3.047 E F0(ar)3.047 E .547(guments are gi)-.18 F -.15(ve)-.25 G .546(n, or if the).15 F F13.046 E F0 .546(option is)3.046 F .545 -(supplied, a list of shell b)144 280.8 R .545(uiltins is printed.)-.2 F +(supplied, a list of shell b)144 436.8 R .545(uiltins is printed.)-.2 F -.4(Wi)5.545 G .545(th no other option ar).4 F .546 -(guments, the list consists of all)-.18 F .695(enabled shell b)144 292.8 +(guments, the list consists of all)-.18 F .695(enabled shell b)144 448.8 R 3.195(uiltins. If)-.2 F F13.195 E F0 .695 (is supplied, only disabled b)3.195 F .695(uiltins are printed.)-.2 F (If)5.695 E F13.195 E F0 .695(is supplied, the)3.195 F .261 -(list printed includes all b)144 304.8 R .261 +(list printed includes all b)144 460.8 R .261 (uiltins, with an indication of whether or not each is enabled.)-.2 F (If)5.261 E F12.761 E F0 .262(is sup-)2.762 F .269 -(plied, the output is restricted to the POSIX)144 316.8 R F2(special) +(plied, the output is restricted to the POSIX)144 472.8 R F2(special) 2.768 E F0 -.2(bu)2.768 G 2.768(iltins. If).2 F .268 (no options are supplied and a)2.768 F F2(name)2.768 E F0 .284 -(is not a shell b)144 328.8 R(uiltin,)-.2 E F1(enable)2.784 E F0 .284 +(is not a shell b)144 484.8 R(uiltin,)-.2 E F1(enable)2.784 E F0 .284 (will attempt to load)2.784 F F2(name)2.784 E F0 .284 (from a shared object named)2.784 F F2(name)2.785 E F0 2.785(,a)C 2.785 -(si)-2.785 G 2.785(ft)-2.785 G(he)-2.785 E 1.41(command were)144 340.8 R +(si)-2.785 G 2.785(ft)-2.785 G(he)-2.785 E 1.41(command were)144 496.8 R F4 1.41(enable \255f)3.91 F F2 1.41(name name)3.91 F F0 6.41(.T)3.91 G 1.41(he return v)-6.41 F 1.41(alue is 0 unless a)-.25 F F2(name)4.27 E -F0 1.41(is not a shell)4.09 F -.2(bu)144 352.8 S +F0 1.41(is not a shell)4.09 F -.2(bu)144 508.8 S (iltin or there is an error loading a ne).2 E 2.5(wb)-.25 G -(uiltin from a shared object.)-2.7 E F1 -2.3 -.15(ev a)108 369.6 T(l).15 -E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(The)144 381.6 Q F2(ar)3.17 E +(uiltin from a shared object.)-2.7 E F1 -2.3 -.15(ev a)108 525.6 T(l).15 +E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(The)144 537.6 Q F2(ar)3.17 E (g)-.37 E F0 3.17(sa)C .671 (re read and concatenated together into a single command.)-3.17 F .671 -(This command is then read)5.671 F .479(and e)144 393.6 R -.15(xe)-.15 G +(This command is then read)5.671 F .479(and e)144 549.6 R -.15(xe)-.15 G .479(cuted by the shell, and its e).15 F .479 (xit status is returned as the v)-.15 F .478(alue of)-.25 F F1 -2.3 -.15 (ev a)2.978 H(l).15 E F0 5.478(.I)C 2.978(ft)-5.478 G .478(here are no) --2.978 F F2(ar)3.308 E(gs)-.37 E F0(,).27 E(or only null ar)144 405.6 Q +-2.978 F F2(ar)3.308 E(gs)-.37 E F0(,).27 E(or only null ar)144 561.6 Q (guments,)-.18 E F1 -2.3 -.15(ev a)2.5 H(l).15 E F0(returns 0.)2.5 E F1 -(exec)108 422.4 Q F0([)2.5 E F1(\255cl)A F0 2.5(][)C F1-2.5 E F2 +(exec)108 578.4 Q F0([)2.5 E F1(\255cl)A F0 2.5(][)C F1-2.5 E F2 (name)2.5 E F0 2.5(][)C F2(command)-2.5 E F0([)2.5 E F2(ar)A(guments) --.37 E F0(]])A(If)144 434.4 Q F2(command)3.005 E F0 .305 +-.37 E F0(]])A(If)144 590.4 Q F2(command)3.005 E F0 .305 (is speci\214ed, it replaces the shell.)3.575 F .305(No ne)5.305 F 2.805 (wp)-.25 G .306(rocess is created.)-2.805 F(The)5.306 E F2(ar)3.136 E -(guments)-.37 E F0(become)3.076 E .177(the ar)144 446.4 R .177 +(guments)-.37 E F0(become)3.076 E .177(the ar)144 602.4 R .177 (guments to)-.18 F F2(command)2.676 E F0 5.176(.I)C 2.676(ft)-5.176 G (he)-2.676 E F12.676 E F0 .176 (option is supplied, the shell places a dash at the be)2.676 F .176 -(ginning of)-.15 F .48(the zeroth ar)144 458.4 R .48(gument passed to) +(ginning of)-.15 F .48(the zeroth ar)144 614.4 R .48(gument passed to) -.18 F F2(command)3.18 E F0 5.48(.T).77 G .48(his is what)-5.48 F F2(lo) 3.07 E(gin)-.1 E F0 .48(\(1\) does.).24 F(The)5.48 E F12.98 E F0 -.48(option causes)2.98 F F2(com-)3.18 E(mand)144 470.4 Q F0 .639 +.48(option causes)2.98 F F2(com-)3.18 E(mand)144 626.4 Q F0 .639 (to be e)3.909 F -.15(xe)-.15 G .638(cuted with an empty en).15 F 3.138 (vironment. If)-.4 F F13.138 E F0 .638 (is supplied, the shell passes)3.138 F F2(name)3.498 E F0 .638(as the) -3.318 F 1.077(zeroth ar)144 482.4 R 1.077(gument to the e)-.18 F -.15 +3.318 F 1.077(zeroth ar)144 638.4 R 1.077(gument to the e)-.18 F -.15 (xe)-.15 G 1.077(cuted command.).15 F(If)6.077 E F2(command)3.777 E F0 1.077(cannot be e)4.347 F -.15(xe)-.15 G 1.077(cuted for some reason, a) -.15 F(non-interacti)144 494.4 Q .877 -.15(ve s)-.25 H .577(hell e).15 F +.15 F(non-interacti)144 650.4 Q .877 -.15(ve s)-.25 H .577(hell e).15 F .577(xits, unless the)-.15 F F1(execfail)3.077 E F0 .577 (shell option is enabled.)3.077 F .576(In that case, it returns f)5.577 -F(ail-)-.1 E 3.32(ure. An)144 506.4 R(interacti)3.32 E 1.12 -.15(ve s) +F(ail-)-.1 E 3.32(ure. An)144 662.4 R(interacti)3.32 E 1.12 -.15(ve s) -.25 H .82(hell returns f).15 F .82(ailure if the \214le cannot be e)-.1 F -.15(xe)-.15 G 3.32(cuted. A).15 F .82(subshell e)3.32 F .82 -(xits uncondi-)-.15 F .288(tionally if)144 518.4 R F1(exec)2.788 E F0 +(xits uncondi-)-.15 F .288(tionally if)144 674.4 R F1(exec)2.788 E F0 -.1(fa)2.788 G 2.788(ils. If).1 F F2(command)2.988 E F0 .288 (is not speci\214ed, an)3.558 F 2.787(yr)-.15 G .287(edirections tak) -2.787 F 2.787(ee)-.1 G -.25(ff)-2.787 G .287(ect in the current shell,) -.25 F(and the return status is 0.)144 530.4 Q +.25 F(and the return status is 0.)144 686.4 Q (If there is a redirection error)5 E 2.5(,t)-.4 G -(he return status is 1.)-2.5 E F1(exit)108 547.2 Q F0([)2.5 E F2(n)A F0 -(])A .095(Cause the shell to e)144 547.2 R .095(xit with a status of) +(he return status is 1.)-2.5 E F1(exit)108 703.2 Q F0([)2.5 E F2(n)A F0 +(])A .095(Cause the shell to e)144 703.2 R .095(xit with a status of) -.15 F F2(n)2.595 E F0 5.095(.I)C(f)-5.095 E F2(n)2.955 E F0 .096 (is omitted, the e)2.835 F .096(xit status is that of the last command) --.15 F -.15(exe)144 559.2 S 2.5(cuted. A).15 F(trap on)2.5 E F3(EXIT)2.5 +-.15 F -.15(exe)144 715.2 S 2.5(cuted. A).15 F(trap on)2.5 E F3(EXIT)2.5 E F0(is e)2.25 E -.15(xe)-.15 G(cuted before the shell terminates.).15 E -F1(export)108 576 Q F0([)2.5 E F1(\255fn)A F0 2.5(][).833 G F2(name)-2.5 -E F0([=)A F2(wor)A(d)-.37 E F0(]] ...)A F1(export \255p)108 588 Q F0 -.257(The supplied)144 600 R F2(names)3.117 E F0 .257(are mark)3.027 F -.257(ed for automatic e)-.1 F .257(xport to the en)-.15 F .257 -(vironment of subsequently e)-.4 F -.15(xe)-.15 G(cuted).15 E 2.626 -(commands. If)144 612 R(the)2.626 E F12.626 E F0 .127 -(option is gi)2.627 F -.15(ve)-.25 G .127(n, the).15 F F2(names)2.987 E -F0 .127(refer to functions.)2.897 F .127(If no)5.127 F F2(names)2.987 E -F0 .127(are gi)2.897 F -.15(ve)-.25 G .127(n, or if the).15 F F1 -144 624 Q F0 .048(option is supplied, a list of names of all e)2.548 F -.048(xported v)-.15 F .048(ariables is printed.)-.25 F(The)5.048 E F1 -2.547 E F0 .047(option causes the)2.547 F -.15(ex)144 636 S 1.446 -(port property to be remo).15 F -.15(ve)-.15 G 3.947(df).15 G 1.447 -(rom each)-3.947 F F2(name)3.947 E F0 6.447(.I)C 3.947(fav)-6.447 G -1.447(ariable name is follo)-4.197 F 1.447(wed by =)-.25 F F2(wor)A(d) --.37 E F0 3.947(,t)C(he)-3.947 E -.25(va)144 648 S .742(lue of the v).25 -F .742(ariable is set to)-.25 F F2(wor)3.242 E(d)-.37 E F0(.)A F1 -(export)5.742 E F0 .742(returns an e)3.242 F .741 -(xit status of 0 unless an in)-.15 F -.25(va)-.4 G .741(lid option is) -.25 F .031(encountered, one of the)144 660 R F2(names)2.531 E F0 .031 -(is not a v)2.531 F .032(alid shell v)-.25 F .032(ariable name, or)-.25 -F F12.532 E F0 .032(is supplied with a)2.532 F F2(name)2.892 E F0 -(that)2.712 E(is not a function.)144 672 Q F1(fc)108 688.8 Q F0([)2.5 E -F1A F2(ename)2.5 E F0 2.5(][)C F1(\255lnr)-2.5 E F0 2.5(][)C F2 -<8c72>-2.5 E(st)-.1 E F0 2.5(][)C F2(last)-2.5 E F0(])A F1(fc \255s)108 -700.8 Q F0([)2.5 E F2(pat)A F0(=)A F2 -.37(re)C(p).37 E F0 2.5(][)C F2 -(cmd)-2.5 E F0(])A .432 -(The \214rst form selects a range of commands from)144 712.8 R F2<8c72> -4.842 E(st)-.1 E F0(to)3.612 E F2(last)3.022 E F0 .431 -(from the history list and displays or)3.612 F .141(edits and re-e)144 -724.8 R -.15(xe)-.15 G .141(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs) -.45 G(t).1 E F0(and)3.321 E F2(last)2.731 E F0 .141 -(may be speci\214ed as a string \(to locate the last command)3.321 F -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(66)193.45 E 0 Cg EP +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(66)199.835 E 0 Cg EP %%Page: 67 67 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(be)144 84 Q .311 -(ginning with that string\) or as a number \(an inde)-.15 F 2.811(xi) --.15 G .31(nto the history list, where a ne)-2.811 F -.05(ga)-.15 G(ti) -.05 E .61 -.15(ve n)-.25 H(umber).15 E .071(is used as an of)144 96 R -.071(fset from the current command number\).)-.25 F .071 -(When listing, a)5.071 F/F1 10/Times-Italic@0 SF<8c72>2.571 E(st)-.1 E -F0(or)2.571 E F1(last)2.571 E F0 .071(of 0 is equi)2.571 F -.25(va)-.25 -G(-).25 E .653(lent to \2551 and \2550 is equi)144 108 R -.25(va)-.25 G -.653(lent to the current command \(usually the).25 F/F2 10/Times-Bold@0 -SF(fc)3.153 E F0 .653(command\); otherwise 0 is)3.153 F(equi)144 120 Q --.25(va)-.25 G .242(lent to \2551 and \2550 is in).25 F -.25(va)-.4 G -2.742(lid. If).25 F F1(last)2.832 E F0 .242 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(export)108 84 Q F0([)2.5 E F1(\255fn)A F0 2.5(][).833 G/F2 10 +/Times-Italic@0 SF(name)-2.5 E F0([=)A F2(wor)A(d)-.37 E F0(]] ...)A F1 +(export \255p)108 96 Q F0 .257(The supplied)144 108 R F2(names)3.117 E +F0 .257(are mark)3.027 F .257(ed for automatic e)-.1 F .257 +(xport to the en)-.15 F .257(vironment of subsequently e)-.4 F -.15(xe) +-.15 G(cuted).15 E 2.626(commands. If)144 120 R(the)2.626 E F1 +2.626 E F0 .127(option is gi)2.627 F -.15(ve)-.25 G .127(n, the).15 F F2 +(names)2.987 E F0 .127(refer to functions.)2.897 F .127(If no)5.127 F F2 +(names)2.987 E F0 .127(are gi)2.897 F -.15(ve)-.25 G .127(n, or if the) +.15 F F1144 132 Q F0 .048 +(option is supplied, a list of names of all e)2.548 F .048(xported v) +-.15 F .048(ariables is printed.)-.25 F(The)5.048 E F12.547 E F0 +.047(option causes the)2.547 F -.15(ex)144 144 S 1.446 +(port property to be remo).15 F -.15(ve)-.15 G 3.947(df).15 G 1.447 +(rom each)-3.947 F F2(name)3.947 E F0 6.447(.I)C 3.947(fav)-6.447 G +1.447(ariable name is follo)-4.197 F 1.447(wed by =)-.25 F F2(wor)A(d) +-.37 E F0 3.947(,t)C(he)-3.947 E -.25(va)144 156 S .742(lue of the v).25 +F .742(ariable is set to)-.25 F F2(wor)3.242 E(d)-.37 E F0(.)A F1 +(export)5.742 E F0 .742(returns an e)3.242 F .741 +(xit status of 0 unless an in)-.15 F -.25(va)-.4 G .741(lid option is) +.25 F .031(encountered, one of the)144 168 R F2(names)2.531 E F0 .031 +(is not a v)2.531 F .032(alid shell v)-.25 F .032(ariable name, or)-.25 +F F12.532 E F0 .032(is supplied with a)2.532 F F2(name)2.892 E F0 +(that)2.712 E(is not a function.)144 180 Q F1(fc)108 196.8 Q F0([)2.5 E +F1A F2(ename)2.5 E F0 2.5(][)C F1(\255lnr)-2.5 E F0 2.5(][)C F2 +<8c72>-2.5 E(st)-.1 E F0 2.5(][)C F2(last)-2.5 E F0(])A F1(fc \255s)108 +208.8 Q F0([)2.5 E F2(pat)A F0(=)A F2 -.37(re)C(p).37 E F0 2.5(][)C F2 +(cmd)-2.5 E F0(])A .432 +(The \214rst form selects a range of commands from)144 220.8 R F2<8c72> +4.842 E(st)-.1 E F0(to)3.612 E F2(last)3.022 E F0 .431 +(from the history list and displays or)3.612 F .141(edits and re-e)144 +232.8 R -.15(xe)-.15 G .141(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs) +.45 G(t).1 E F0(and)3.321 E F2(last)2.731 E F0 .141 +(may be speci\214ed as a string \(to locate the last command)3.321 F(be) +144 244.8 Q .311(ginning with that string\) or as a number \(an inde) +-.15 F 2.811(xi)-.15 G .31(nto the history list, where a ne)-2.811 F +-.05(ga)-.15 G(ti).05 E .61 -.15(ve n)-.25 H(umber).15 E .071 +(is used as an of)144 256.8 R .071 +(fset from the current command number\).)-.25 F .071(When listing, a) +5.071 F F2<8c72>2.571 E(st)-.1 E F0(or)2.571 E F2(last)2.571 E F0 .071 +(of 0 is equi)2.571 F -.25(va)-.25 G(-).25 E .653 +(lent to \2551 and \2550 is equi)144 268.8 R -.25(va)-.25 G .653 +(lent to the current command \(usually the).25 F F1(fc)3.153 E F0 .653 +(command\); otherwise 0 is)3.153 F(equi)144 280.8 Q -.25(va)-.25 G .242 +(lent to \2551 and \2550 is in).25 F -.25(va)-.4 G 2.742(lid. If).25 F +F2(last)2.832 E F0 .242 (is not speci\214ed, it is set to the current command for list-)3.422 F -.093(ing \(so that)144 132 R/F3 10/Courier@0 SF .093(fc \255l \25510) -2.593 F F0 .093(prints the last 10 commands\) and to)2.593 F F1<8c72> -4.502 E(st)-.1 E F0 2.592(otherwise. If)3.272 F F1<8c72>4.502 E(st)-.1 E -F0 .092(is not speci-)3.272 F(\214ed, it is set to the pre)144 144 Q -(vious command for editing and \25516 for listing.)-.25 E(The)144 168 Q -F22.522 E F0 .022 +.093(ing \(so that)144 292.8 R/F3 10/Courier@0 SF .093(fc \255l \25510) +2.593 F F0 .093(prints the last 10 commands\) and to)2.593 F F2<8c72> +4.502 E(st)-.1 E F0 2.592(otherwise. If)3.272 F F2<8c72>4.502 E(st)-.1 E +F0 .092(is not speci-)3.272 F(\214ed, it is set to the pre)144 304.8 Q +(vious command for editing and \25516 for listing.)-.25 E(The)144 328.8 +Q F12.522 E F0 .022 (option suppresses the command numbers when listing.)2.522 F(The)5.022 E -F22.522 E F0 .022(option re)2.522 F -.15(ve)-.25 G .022 -(rses the order of).15 F .438(the commands.)144 180 R .438(If the)5.438 -F F22.938 E F0 .438(option is gi)2.938 F -.15(ve)-.25 G .438 +F12.522 E F0 .022(option re)2.522 F -.15(ve)-.25 G .022 +(rses the order of).15 F .438(the commands.)144 340.8 R .438(If the) +5.438 F F12.938 E F0 .438(option is gi)2.938 F -.15(ve)-.25 G .438 (n, the commands are listed on standard output.).15 F(Otherwise,)5.438 E -.334(the editor gi)144 192 R -.15(ve)-.25 G 2.834(nb).15 G(y)-2.834 E F1 -(ename)3.024 E F0 .335(is in)3.014 F -.2(vo)-.4 G -.1(ke).2 G 2.835(do) -.1 G 2.835(na\214)-2.835 G .335(le containing those commands.)-2.835 F -(If)5.335 E F1(ename)3.025 E F0 .335(is not gi)3.015 F -.15(ve)-.25 G -(n,).15 E .631(the v)144 204 R .631(alue of the)-.25 F/F4 9/Times-Bold@0 -SF(FCEDIT)3.131 E F0 -.25(va)2.881 G .631(riable is used, and the v).25 -F .631(alue of)-.25 F F4(EDIT)3.131 E(OR)-.162 E F0(if)2.881 E F4 -(FCEDIT)3.13 E F0 .63(is not set.)2.88 F .63(If nei-)5.63 F .005(ther v) -144 216 R .005(ariable is set,)-.25 F F1(vi)4.171 E F0 .005(is used.) -4.171 F .005 +.334(the editor gi)144 352.8 R -.15(ve)-.25 G 2.834(nb).15 G(y)-2.834 E +F2(ename)3.024 E F0 .335(is in)3.014 F -.2(vo)-.4 G -.1(ke).2 G 2.835 +(do).1 G 2.835(na\214)-2.835 G .335(le containing those commands.)-2.835 +F(If)5.335 E F2(ename)3.025 E F0 .335(is not gi)3.015 F -.15(ve)-.25 G +(n,).15 E .631(the v)144 364.8 R .631(alue of the)-.25 F/F4 9 +/Times-Bold@0 SF(FCEDIT)3.131 E F0 -.25(va)2.881 G .631 +(riable is used, and the v).25 F .631(alue of)-.25 F F4(EDIT)3.131 E(OR) +-.162 E F0(if)2.881 E F4(FCEDIT)3.13 E F0 .63(is not set.)2.88 F .63 +(If nei-)5.63 F .005(ther v)144 376.8 R .005(ariable is set,)-.25 F F2 +(vi)4.171 E F0 .005(is used.)4.171 F .005 (When editing is complete, the edited commands are echoed and e)5.005 F -(x-)-.15 E(ecuted.)144 228 Q .789(In the second form,)144 252 R F1 +(x-)-.15 E(ecuted.)144 388.8 Q .789(In the second form,)144 412.8 R F2 (command)3.288 E F0 .788(is re-e)3.288 F -.15(xe)-.15 G .788 -(cuted after each instance of).15 F F1(pat)3.288 E F0 .788 -(is replaced by)3.288 F F1 -.37(re)3.288 G(p).37 E F0(.)A F1(Com-)5.788 -E(mand)144 264 Q F0 .171(is interpreted the same as)2.671 F F1<8c72> +(cuted after each instance of).15 F F2(pat)3.288 E F0 .788 +(is replaced by)3.288 F F2 -.37(re)3.288 G(p).37 E F0(.)A F2(Com-)5.788 +E(mand)144 424.8 Q F0 .171(is interpreted the same as)2.671 F F2<8c72> 2.671 E(st)-.1 E F0(abo)2.671 E -.15(ve)-.15 G 5.171(.A).15 G .172 (useful alias to use with this is)-2.499 F F3 .172(r='fc \255s')2.672 F -F0 2.672(,s)C 2.672(ot)-2.672 G(hat)-2.672 E(typing)144 276 Q F3 7.166 +F0 2.672(,s)C 2.672(ot)-2.672 G(hat)-2.672 E(typing)144 436.8 Q F3 7.166 (rc)3.666 G(c)-7.166 E F0 1.166(runs the last command be)3.666 F 1.166 (ginning with)-.15 F F3(cc)3.666 E F0 1.165(and typing)3.666 F F3(r) 3.665 E F0(re-e)3.665 E -.15(xe)-.15 G 1.165(cutes the last com-).15 F -(mand.)144 288 Q .142(If the \214rst form is used, the return v)144 312 -R .142(alue is 0 unless an in)-.25 F -.25(va)-.4 G .142 -(lid option is encountered or).25 F F1<8c72>4.552 E(st)-.1 E F0(or)3.322 -E F1(last)2.732 E F0 .455(specify history lines out of range.)144 324 R -.454(If the)5.454 F F22.954 E F0 .454 +(mand.)144 448.8 Q .142(If the \214rst form is used, the return v)144 +472.8 R .142(alue is 0 unless an in)-.25 F -.25(va)-.4 G .142 +(lid option is encountered or).25 F F2<8c72>4.552 E(st)-.1 E F0(or)3.322 +E F2(last)2.732 E F0 .455(specify history lines out of range.)144 484.8 +R .454(If the)5.454 F F12.954 E F0 .454 (option is supplied, the return v)2.954 F .454(alue is the v)-.25 F .454 -(alue of the)-.25 F .787(last command e)144 336 R -.15(xe)-.15 G .787 +(alue of the)-.25 F .787(last command e)144 496.8 R -.15(xe)-.15 G .787 (cuted or f).15 F .788 (ailure if an error occurs with the temporary \214le of commands.)-.1 F .788(If the)5.788 F 1.136 (second form is used, the return status is that of the command re-e)144 -348 R -.15(xe)-.15 G 1.135(cuted, unless).15 F F1(cmd)3.835 E F0 1.135 -(does not)4.405 F(specify a v)144 360 Q -(alid history line, in which case)-.25 E F2(fc)2.5 E F0(returns f)2.5 E -(ailure.)-.1 E F2(fg)108 376.8 Q F0([)2.5 E F1(jobspec)A F0(])A(Resume) -144 388.8 Q F1(jobspec)5.653 E F0 1.413(in the fore)4.223 F 1.413 +508.8 R -.15(xe)-.15 G 1.135(cuted, unless).15 F F2(cmd)3.835 E F0 1.135 +(does not)4.405 F(specify a v)144 520.8 Q +(alid history line, in which case)-.25 E F1(fc)2.5 E F0(returns f)2.5 E +(ailure.)-.1 E F1(fg)108 537.6 Q F0([)2.5 E F2(jobspec)A F0(])A(Resume) +144 549.6 Q F2(jobspec)5.653 E F0 1.413(in the fore)4.223 F 1.413 (ground, and mak)-.15 F 3.913(ei)-.1 G 3.913(tt)-3.913 G 1.413 -(he current job)-3.913 F 6.413(.I)-.4 G(f)-6.413 E F1(jobspec)5.653 E F0 -1.414(is not present, the)4.223 F(shell')144 400.8 Q 3.117(sn)-.55 G -.617(otion of the)-3.117 F F1(curr)3.117 E .617(ent job)-.37 F F0 .617 +(he current job)-3.913 F 6.413(.I)-.4 G(f)-6.413 E F2(jobspec)5.653 E F0 +1.414(is not present, the)4.223 F(shell')144 561.6 Q 3.117(sn)-.55 G +.617(otion of the)-3.117 F F2(curr)3.117 E .617(ent job)-.37 F F0 .617 (is used.)3.117 F .617(The return v)5.617 F .616 -(alue is that of the command placed into the)-.25 F(fore)144 412.8 Q +(alue is that of the command placed into the)-.25 F(fore)144 573.6 Q .362(ground, or f)-.15 F .362 (ailure if run when job control is disabled or)-.1 F 2.862(,w)-.4 G .363 -(hen run with job control enabled, if)-2.862 F F1(jobspec)145.74 424.8 Q -F0(does not specify a v)2.81 E(alid job or)-.25 E F1(jobspec)4.24 E F0 +(hen run with job control enabled, if)-2.862 F F2(jobspec)145.74 585.6 Q +F0(does not specify a v)2.81 E(alid job or)-.25 E F2(jobspec)4.24 E F0 (speci\214es a job that w)2.81 E(as started without job control.)-.1 E -F2(getopts)108 441.6 Q F1(optstring name)2.5 E F0([)2.5 E F1(ar)A 2.5 -(g.)-.37 G(..)-2.5 E F0(])A F2(getopts)144 453.6 Q F0 .793 -(is used by shell procedures to parse positional parameters.)3.294 F F1 +F1(getopts)108 602.4 Q F2(optstring name)2.5 E F0([)2.5 E F2(ar)A 2.5 +(g.)-.37 G(..)-2.5 E F0(])A F1(getopts)144 614.4 Q F0 .793 +(is used by shell procedures to parse positional parameters.)3.294 F F2 (optstring)6.023 E F0 .793(contains the option)3.513 F .149 -(characters to be recognized; if a character is follo)144 465.6 R .15 +(characters to be recognized; if a character is follo)144 626.4 R .15 (wed by a colon, the option is e)-.25 F .15(xpected to ha)-.15 F .45 --.15(ve a)-.2 H(n).15 E(ar)144 477.6 Q .579 +-.15(ve a)-.2 H(n).15 E(ar)144 638.4 Q .579 (gument, which should be separated from it by white space.)-.18 F .578 (The colon and question mark char)5.579 F(-)-.2 E .636 -(acters may not be used as option characters.)144 489.6 R .636 -(Each time it is in)5.636 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F2(getopts) +(acters may not be used as option characters.)144 650.4 R .636 +(Each time it is in)5.636 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F1(getopts) 3.136 E F0 .636(places the ne)3.136 F .636(xt op-)-.15 F .03 -(tion in the shell v)144 501.6 R(ariable)-.25 E F1(name)2.89 E F0 2.53 -(,i).18 G(nitializing)-2.53 E F1(name)2.89 E F0 .029(if it does not e) +(tion in the shell v)144 662.4 R(ariable)-.25 E F2(name)2.89 E F0 2.53 +(,i).18 G(nitializing)-2.53 E F2(name)2.89 E F0 .029(if it does not e) 2.71 F .029(xist, and the inde)-.15 F 2.529(xo)-.15 G 2.529(ft)-2.529 G .029(he ne)-2.529 F .029(xt ar)-.15 F(gu-)-.18 E .065 -(ment to be processed into the v)144 513.6 R(ariable)-.25 E F4(OPTIND) +(ment to be processed into the v)144 674.4 R(ariable)-.25 E F4(OPTIND) 2.565 E/F5 9/Times-Roman@0 SF(.)A F4(OPTIND)4.565 E F0 .066 (is initialized to 1 each time the shell or a)2.315 F .885 -(shell script is in)144 525.6 R -.2(vo)-.4 G -.1(ke).2 G 3.385(d. When) -.1 F .885(an option requires an ar)3.385 F(gument,)-.18 E F2(getopts) +(shell script is in)144 686.4 R -.2(vo)-.4 G -.1(ke).2 G 3.385(d. When) +.1 F .885(an option requires an ar)3.385 F(gument,)-.18 E F1(getopts) 3.385 E F0 .885(places that ar)3.385 F .885(gument into)-.18 F .566 -(the v)144 537.6 R(ariable)-.25 E F4(OPT)3.066 E(ARG)-.81 E F5(.)A F0 +(the v)144 698.4 R(ariable)-.25 E F4(OPT)3.066 E(ARG)-.81 E F5(.)A F0 .566(The shell does not reset)5.066 F F4(OPTIND)3.066 E F0 .567 (automatically; it must be manually reset)2.816 F .39 -(between multiple calls to)144 549.6 R F2(getopts)2.89 E F0 .39 +(between multiple calls to)144 710.4 R F1(getopts)2.89 E F0 .39 (within the same shell in)2.89 F -.2(vo)-.4 G .389(cation if a ne).2 F -2.889(ws)-.25 G .389(et of parameters is to)-2.889 F(be used.)144 561.6 -Q 2.043(When the end of options is encountered,)144 585.6 R F2(getopts) -4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.044 -(alue greater than zero.)-.25 F F4(OPTIND)144 597.6 Q F0 -(is set to the inde)2.25 E 2.5(xo)-.15 G 2.5(ft)-2.5 G -(he \214rst non-option ar)-2.5 E(gument, and)-.18 E F1(name)2.5 E F0 -(is set to ?.)2.5 E F2(getopts)144 621.6 Q F0 .485 -(normally parses the positional parameters, b)2.985 F .485 -(ut if more ar)-.2 F .485(guments are supplied as)-.18 F F1(ar)3.315 E -(g)-.37 E F0 -.25(va)3.205 G(l-).25 E(ues,)144 633.6 Q F2(getopts)2.5 E -F0(parses those instead.)2.5 E F2(getopts)144 657.6 Q F0 .345 -(can report errors in tw)2.845 F 2.845(ow)-.1 G 2.845(ays. If)-2.945 F -.345(the \214rst character of)2.845 F F1(optstring)3.075 E F0 .345 -(is a colon,)3.065 F F1(silent)3.185 E F0 .345(error re-)3.525 F 1.669 -(porting is used.)144 669.6 R 1.668 -(In normal operation, diagnostic messages are printed when in)6.669 F --.25(va)-.4 G 1.668(lid options or).25 F .393(missing option ar)144 -681.6 R .393(guments are encountered.)-.18 F .394(If the v)5.394 F -(ariable)-.25 E F4(OPTERR)2.894 E F0 .394 -(is set to 0, no error messages)2.644 F(will be displayed, e)144 693.6 Q --.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214rst character of)-2.5 E -F1(optstring)2.73 E F0(is not a colon.)2.72 E .667(If an in)144 717.6 R --.25(va)-.4 G .667(lid option is seen,).25 F F2(getopts)3.167 E F0 .667 -(places ? into)3.167 F F1(name)3.527 E F0 .666 -(and, if not silent, prints an error message)3.347 F .399(and unsets)144 -729.6 R F4(OPT)2.899 E(ARG)-.81 E F5(.)A F0(If)4.899 E F2(getopts)2.899 -E F0 .399(is silent, the option character found is placed in)2.899 F F4 -(OPT)2.899 E(ARG)-.81 E F0 .4(and no)2.65 F(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(67)193.45 E 0 Cg EP +2.889(ws)-.25 G .389(et of parameters is to)-2.889 F(be used.)144 722.4 +Q(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(67)199.835 E 0 Cg EP %%Page: 68 68 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(diagnostic message is printed.)144 84 Q 1.242(If a required ar)144 108 -R 1.242(gument is not found, and)-.18 F/F1 10/Times-Bold@0 SF(getopts) -3.741 E F0 1.241(is not silent, a question mark \()3.741 F F1(?).833 E -F0 3.741(\)i).833 G 3.741(sp)-3.741 G 1.241(laced in)-3.741 F/F2 10 -/Times-Italic@0 SF(name)144.36 120 Q F0(,).18 E/F3 9/Times-Bold@0 SF -(OPT)2.713 E(ARG)-.81 E F0 .213 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.043 +(When the end of options is encountered,)144 84 R/F1 10/Times-Bold@0 SF +(getopts)4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F +2.044(alue greater than zero.)-.25 F/F2 9/Times-Bold@0 SF(OPTIND)144 96 +Q F0(is set to the inde)2.25 E 2.5(xo)-.15 G 2.5(ft)-2.5 G +(he \214rst non-option ar)-2.5 E(gument, and)-.18 E/F3 10/Times-Italic@0 +SF(name)2.5 E F0(is set to ?.)2.5 E F1(getopts)144 120 Q F0 .485 +(normally parses the positional parameters, b)2.985 F .485 +(ut if more ar)-.2 F .485(guments are supplied as)-.18 F F3(ar)3.315 E +(g)-.37 E F0 -.25(va)3.205 G(l-).25 E(ues,)144 132 Q F1(getopts)2.5 E F0 +(parses those instead.)2.5 E F1(getopts)144 156 Q F0 .345 +(can report errors in tw)2.845 F 2.845(ow)-.1 G 2.845(ays. If)-2.945 F +.345(the \214rst character of)2.845 F F3(optstring)3.075 E F0 .345 +(is a colon,)3.065 F F3(silent)3.185 E F0 .345(error re-)3.525 F 1.669 +(porting is used.)144 168 R 1.668 +(In normal operation, diagnostic messages are printed when in)6.669 F +-.25(va)-.4 G 1.668(lid options or).25 F .393(missing option ar)144 180 +R .393(guments are encountered.)-.18 F .394(If the v)5.394 F(ariable) +-.25 E F2(OPTERR)2.894 E F0 .394(is set to 0, no error messages)2.644 F +(will be displayed, e)144 192 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 +G(he \214rst character of)-2.5 E F3(optstring)2.73 E F0(is not a colon.) +2.72 E .667(If an in)144 216 R -.25(va)-.4 G .667(lid option is seen,) +.25 F F1(getopts)3.167 E F0 .667(places ? into)3.167 F F3(name)3.527 E +F0 .666(and, if not silent, prints an error message)3.347 F .399 +(and unsets)144 228 R F2(OPT)2.899 E(ARG)-.81 E/F4 9/Times-Roman@0 SF(.) +A F0(If)4.899 E F1(getopts)2.899 E F0 .399 +(is silent, the option character found is placed in)2.899 F F2(OPT)2.899 +E(ARG)-.81 E F0 .4(and no)2.65 F(diagnostic message is printed.)144 240 +Q 1.242(If a required ar)144 264 R 1.242(gument is not found, and)-.18 F +F1(getopts)3.741 E F0 1.241(is not silent, a question mark \()3.741 F F1 +(?).833 E F0 3.741(\)i).833 G 3.741(sp)-3.741 G 1.241(laced in)-3.741 F +F3(name)144.36 276 Q F0(,).18 E F2(OPT)2.713 E(ARG)-.81 E F0 .213 (is unset, and a diagnostic message is printed.)2.463 F(If)5.213 E F1 (getopts)2.713 E F0 .213(is silent, then a colon \()2.713 F F1(:).833 E -F0(\)).833 E(is placed in)144 132 Q F2(name)2.86 E F0(and)2.68 E F3(OPT) +F0(\)).833 E(is placed in)144 288 Q F3(name)2.86 E F0(and)2.68 E F2(OPT) 2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F1 -(getopts)144 156 Q F0 .902 +(getopts)144 312 Q F0 .902 (returns true if an option, speci\214ed or unspeci\214ed, is found.) 3.402 F .902(It returns f)5.902 F .901(alse if the end of)-.1 F -(options is encountered or an error occurs.)144 168 Q F1(hash)108 184.8 -Q F0([)2.5 E F1(\255lr)A F0 2.5(][)C F1-2.5 E F2(\214lename)2.5 E -F0 2.5(][)C F1(\255dt)-2.5 E F0 2.5(][)C F2(name)-2.5 E F0(])A .858 -(Each time)144 196.8 R F1(hash)3.358 E F0 .858(is in)3.358 F -.2(vo)-.4 -G -.1(ke).2 G .858(d, the full pathname of the command).1 F F2(name) +(options is encountered or an error occurs.)144 324 Q F1(hash)108 340.8 +Q F0([)2.5 E F1(\255lr)A F0 2.5(][)C F1-2.5 E F3(\214lename)2.5 E +F0 2.5(][)C F1(\255dt)-2.5 E F0 2.5(][)C F3(name)-2.5 E F0(])A .858 +(Each time)144 352.8 R F1(hash)3.358 E F0 .858(is in)3.358 F -.2(vo)-.4 +G -.1(ke).2 G .858(d, the full pathname of the command).1 F F3(name) 3.718 E F0 .858(is determined by searching)3.538 F .956 -(the directories in)144 208.8 R F1($P)3.456 E -.95(AT)-.74 G(H).95 E F0 +(the directories in)144 364.8 R F1($P)3.456 E -.95(AT)-.74 G(H).95 E F0 .956(and remembered.)3.456 F(An)5.956 E 3.456(yp)-.15 G(re)-3.456 E .956 -(viously-remembered pathname is discarded.)-.25 F .242(If the)144 220.8 +(viously-remembered pathname is discarded.)-.25 F .242(If the)144 376.8 R F12.742 E F0 .243 -(option is supplied, no path search is performed, and)2.742 F F2 +(option is supplied, no path search is performed, and)2.742 F F3 (\214lename)4.653 E F0 .243(is used as the full \214lename)2.923 F .615 -(of the command.)144 232.8 R(The)5.615 E F13.115 E F0 .615 +(of the command.)144 388.8 R(The)5.615 E F13.115 E F0 .615 (option causes the shell to for)3.115 F .615 (get all remembered locations.)-.18 F(The)5.615 E F13.115 E F0 -(op-)3.115 E .293(tion causes the shell to for)144 244.8 R .293 -(get the remembered location of each)-.18 F F2(name)2.794 E F0 5.294(.I) +(op-)3.115 E .293(tion causes the shell to for)144 400.8 R .293 +(get the remembered location of each)-.18 F F3(name)2.794 E F0 5.294(.I) C 2.794(ft)-5.294 G(he)-2.794 E F12.794 E F0 .294 (option is supplied,)2.794 F .028(the full pathname to which each)144 -256.8 R F2(name)2.528 E F0 .028(corresponds is printed.)2.528 F .028 -(If multiple)5.028 F F2(name)2.528 E F0(ar)2.528 E .028 -(guments are sup-)-.18 F .175(plied with)144 268.8 R F12.675 E F0 -2.675(,t)C(he)-2.675 E F2(name)2.675 E F0 .175 +412.8 R F3(name)2.528 E F0 .028(corresponds is printed.)2.528 F .028 +(If multiple)5.028 F F3(name)2.528 E F0(ar)2.528 E .028 +(guments are sup-)-.18 F .175(plied with)144 424.8 R F12.675 E F0 +2.675(,t)C(he)-2.675 E F3(name)2.675 E F0 .175 (is printed before the hashed full pathname.)2.675 F(The)5.175 E F1 2.676 E F0 .176(option causes output to)2.676 F .783 -(be displayed in a format that may be reused as input.)144 280.8 R .783 +(be displayed in a format that may be reused as input.)144 436.8 R .783 (If no ar)5.783 F .783(guments are gi)-.18 F -.15(ve)-.25 G .783 (n, or if only).15 F F13.283 E F0(is)3.283 E .807 -(supplied, information about remembered commands is printed.)144 292.8 R -.807(The return status is true unless a)5.807 F F2(name)144.36 304.8 Q +(supplied, information about remembered commands is printed.)144 448.8 R +.807(The return status is true unless a)5.807 F F3(name)144.36 460.8 Q F0(is not found or an in)2.68 E -.25(va)-.4 G(lid option is supplied.) -.25 E F1(help)108 321.6 Q F0([)2.5 E F1(\255dms)A F0 2.5(][)C F2 +.25 E F1(help)108 477.6 Q F0([)2.5 E F1(\255dms)A F0 2.5(][)C F3 (pattern)-2.5 E F0(])A .867(Display helpful information about b)144 -333.6 R .867(uiltin commands.)-.2 F(If)5.867 E F2(pattern)4.617 E F0 +489.6 R .867(uiltin commands.)-.2 F(If)5.867 E F3(pattern)4.617 E F0 .866(is speci\214ed,)3.607 F F1(help)3.366 E F0(gi)3.366 E -.15(ve)-.25 G 3.366(sd).15 G(etailed)-3.366 E .223(help on all commands matching)144 -345.6 R F2(pattern)3.973 E F0 2.723(;o).24 G .223 +501.6 R F3(pattern)3.973 E F0 2.723(;o).24 G .223 (therwise help for all the b)-2.723 F .224 -(uiltins and shell control struc-)-.2 F(tures is printed.)144 357.6 Q F1 -144 369.6 Q F0(Display a short description of each)180 369.6 Q F2 -(pattern)2.5 E F1144 381.6 Q F0(Display the description of each) -180 381.6 Q F2(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G -(ormat)-2.5 E F1144 393.6 Q F0 -(Display only a short usage synopsis for each)180 393.6 Q F2(pattern)2.5 -E F0(The return status is 0 unless no command matches)144 410.4 Q F2 -(pattern)3.75 E F0(.).24 E F1(history [)108 427.2 Q F2(n)A F1(])A -(history \255c)108 439.2 Q(history \255d)108 451.2 Q F2(of)2.5 E(fset) --.18 E F1(history \255d)108 463.2 Q F2(start)2.5 E F0A F2(end)A F1 -(history \255anrw)108 475.2 Q F0([)2.5 E F2(\214lename)A F0(])A F1 -(history \255p)108 487.2 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5 -(g.)-.37 G(..)-2.5 E F0(])A F1(history \255s)108 499.2 Q F2(ar)2.5 E(g) --.37 E F0([)2.5 E F2(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144 -511.2 S .752 +(uiltins and shell control struc-)-.2 F(tures is printed.)144 513.6 Q F1 +144 525.6 Q F0(Display a short description of each)180 525.6 Q F3 +(pattern)2.5 E F1144 537.6 Q F0(Display the description of each) +180 537.6 Q F3(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G +(ormat)-2.5 E F1144 549.6 Q F0 +(Display only a short usage synopsis for each)180 549.6 Q F3(pattern)2.5 +E F0(The return status is 0 unless no command matches)144 566.4 Q F3 +(pattern)3.75 E F0(.).24 E F1(history [)108 583.2 Q F3(n)A F1(])A +(history \255c)108 595.2 Q(history \255d)108 607.2 Q F3(of)2.5 E(fset) +-.18 E F1(history \255d)108 619.2 Q F3(start)2.5 E F0A F3(end)A F1 +(history \255anrw)108 631.2 Q F0([)2.5 E F3(\214lename)A F0(])A F1 +(history \255p)108 643.2 Q F3(ar)2.5 E(g)-.37 E F0([)2.5 E F3(ar)A 2.5 +(g.)-.37 G(..)-2.5 E F0(])A F1(history \255s)108 655.2 Q F3(ar)2.5 E(g) +-.37 E F0([)2.5 E F3(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144 +667.2 S .752 (th no options, display the command history list with line numbers.).4 F .752(Lines listed with a)5.752 F F1(*)3.251 E F0(ha)3.251 E -.15(ve)-.2 -G .38(been modi\214ed.)144 523.2 R .38(An ar)5.38 F .38(gument of)-.18 F -F2(n)3.24 E F0 .38(lists only the last)3.12 F F2(n)3.24 E F0 2.88 -(lines. If)3.12 F .38(the shell v)2.88 F(ariable)-.25 E F3(HISTTIMEFOR-) -2.881 E(MA)144 535.2 Q(T)-.855 E F0 .265 -(is set and not null, it is used as a format string for)2.515 F F2 +G .38(been modi\214ed.)144 679.2 R .38(An ar)5.38 F .38(gument of)-.18 F +F3(n)3.24 E F0 .38(lists only the last)3.12 F F3(n)3.24 E F0 2.88 +(lines. If)3.12 F .38(the shell v)2.88 F(ariable)-.25 E F2(HISTTIMEFOR-) +2.881 E(MA)144 691.2 Q(T)-.855 E F0 .265 +(is set and not null, it is used as a format string for)2.515 F F3 (strftime)2.764 E F0 .264(\(3\) to display the time stamp asso-)B 1.019 -(ciated with each displayed history entry)144 547.2 R 6.019(.N)-.65 G +(ciated with each displayed history entry)144 703.2 R 6.019(.N)-.65 G 3.519(oi)-6.019 G(nterv)-3.519 E 1.019 (ening blank is printed between the formatted)-.15 F .176 -(time stamp and the history line.)144 559.2 R(If)5.176 E F2(\214lename) +(time stamp and the history line.)144 715.2 R(If)5.176 E F3(\214lename) 2.676 E F0 .176 (is supplied, it is used as the name of the history \214le; if)2.676 F -(not, the v)144 571.2 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.) +(not, the v)144 727.2 Q(alue of)-.25 E F2(HISTFILE)2.5 E F0(is used.) 2.25 E(Options, if supplied, ha)5 E .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 583.2 Q F0 -(Clear the history list by deleting all the entries.)180 583.2 Q F1 -144 595.2 Q F2(of)2.5 E(fset)-.18 E F0 .389 -(Delete the history entry at position)180 607.2 R F2(of)2.889 E(fset) --.18 E F0 5.389(.I)C(f)-5.389 E F2(of)2.889 E(fset)-.18 E F0 .389(is ne) -2.889 F -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G 2.89(,i).15 G 2.89(ti) --2.89 G 2.89(si)-2.89 G .39(nterpreted as relati)-2.89 F -.15(ve)-.25 G -.599(to one greater than the last history position, so ne)180 619.2 R --.05(ga)-.15 G(ti).05 E .899 -.15(ve i)-.25 H .598 -(ndices count back from the end).15 F(of the history)180 631.2 Q 2.5(,a) --.65 G(nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 G 2.5(1r)-2.5 G -(efers to the current)-2.5 E F1(history -d)2.5 E F0(command.)2.5 E F1 -144 643.2 Q F2(start)2.5 E F0A F2(end)A F0 1.25 -(Delete the range of history entries between positions)180 655.2 R F2 -(start)3.75 E F0(and)3.75 E F2(end)3.75 E F0 3.75(,i)C(nclusi)-3.75 E --.15(ve)-.25 G 6.25(.P).15 G(ositi)-6.25 E -.15(ve)-.25 G(and ne)180 -667.2 Q -.05(ga)-.15 G(ti).05 E .3 -.15(ve v)-.25 H(alues for)-.1 E F2 -(start)2.5 E F0(and)2.5 E F2(end)2.5 E F0 -(are interpreted as described abo)2.5 E -.15(ve)-.15 G(.).15 E F1 -144 679.2 Q F0 .565(Append the `)180 679.2 R(`ne)-.74 E(w')-.25 E 3.065 -('h)-.74 G .564(istory lines to the history \214le.)-3.065 F .564 -(These are history lines entered since)5.564 F(the be)180 691.2 Q -(ginning of the current)-.15 E F1(bash)2.5 E F0(session, b)2.5 E -(ut not already appended to the history \214le.)-.2 E F1144 703.2 -Q F0 .854(Read the history lines not already read from the history \214\ -le into the current history list.)180 703.2 R .773 -(These are lines appended to the history \214le since the be)180 715.2 R -.772(ginning of the current)-.15 F F1(bash)3.272 E F0(ses-)3.272 E -(sion.)180 727.2 Q(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(68) -193.45 E 0 Cg EP +(wing meanings:)-.25 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(68) +199.835 E 0 Cg EP %%Page: 69 69 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF144 84 Q F0(Read the contents of the history \214le and append \ -them to the current history list.)180 84 Q F1144 96 Q F0 -(Write the current history list to the history \214le, o)180 96 Q -.15 -(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G(ontents.) --2.5 E F1144 108 Q F0 .625 -(Perform history substitution on the follo)180 108 R(wing)-.25 E/F2 10 -/Times-Italic@0 SF(ar)3.125 E(gs)-.37 E F0 .626 -(and display the result on the standard)3.125 F 2.975(output. Does)180 -120 R .475(not store the results in the history list.)2.975 F(Each)5.475 -E F2(ar)2.975 E(g)-.37 E F0 .475(must be quoted to disable)2.975 F -(normal history e)180 132 Q(xpansion.)-.15 E F1144 144 Q F0 .362 -(Store the)180 144 R F2(ar)3.192 E(gs)-.37 E F0 .363 +SF144 84 Q F0(Clear the history list by deleting all the entries.) +180 84 Q F1144 96 Q/F2 10/Times-Italic@0 SF(of)2.5 E(fset)-.18 E +F0 .389(Delete the history entry at position)180 108 R F2(of)2.889 E +(fset)-.18 E F0 5.389(.I)C(f)-5.389 E F2(of)2.889 E(fset)-.18 E F0 .389 +(is ne)2.889 F -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G 2.89(,i).15 G 2.89 +(ti)-2.89 G 2.89(si)-2.89 G .39(nterpreted as relati)-2.89 F -.15(ve) +-.25 G .599(to one greater than the last history position, so ne)180 120 +R -.05(ga)-.15 G(ti).05 E .899 -.15(ve i)-.25 H .598 +(ndices count back from the end).15 F(of the history)180 132 Q 2.5(,a) +-.65 G(nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 G 2.5(1r)-2.5 G +(efers to the current)-2.5 E F1(history -d)2.5 E F0(command.)2.5 E F1 +144 144 Q F2(start)2.5 E F0A F2(end)A F0 1.25 +(Delete the range of history entries between positions)180 156 R F2 +(start)3.75 E F0(and)3.75 E F2(end)3.75 E F0 3.75(,i)C(nclusi)-3.75 E +-.15(ve)-.25 G 6.25(.P).15 G(ositi)-6.25 E -.15(ve)-.25 G(and ne)180 168 +Q -.05(ga)-.15 G(ti).05 E .3 -.15(ve v)-.25 H(alues for)-.1 E F2(start) +2.5 E F0(and)2.5 E F2(end)2.5 E F0(are interpreted as described abo)2.5 +E -.15(ve)-.15 G(.).15 E F1144 180 Q F0 .565(Append the `)180 180 +R(`ne)-.74 E(w')-.25 E 3.065('h)-.74 G .564 +(istory lines to the history \214le.)-3.065 F .564 +(These are history lines entered since)5.564 F(the be)180 192 Q +(ginning of the current)-.15 E F1(bash)2.5 E F0(session, b)2.5 E +(ut not already appended to the history \214le.)-.2 E F1144 204 Q +F0 .854(Read the history lines not already read from the history \214le\ + into the current history list.)180 204 R .773 +(These are lines appended to the history \214le since the be)180 216 R +.772(ginning of the current)-.15 F F1(bash)3.272 E F0(ses-)3.272 E +(sion.)180 228 Q F1144 240 Q F0(Read the contents of the history \ +\214le and append them to the current history list.)180 240 Q F1 +144 252 Q F0(Write the current history list to the history \214le, o)180 +252 Q -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G +(ontents.)-2.5 E F1144 264 Q F0 .625 +(Perform history substitution on the follo)180 264 R(wing)-.25 E F2(ar) +3.125 E(gs)-.37 E F0 .626(and display the result on the standard)3.125 F +2.975(output. Does)180 276 R .475 +(not store the results in the history list.)2.975 F(Each)5.475 E F2(ar) +2.975 E(g)-.37 E F0 .475(must be quoted to disable)2.975 F +(normal history e)180 288 Q(xpansion.)-.15 E F1144 300 Q F0 .362 +(Store the)180 300 R F2(ar)3.192 E(gs)-.37 E F0 .363 (in the history list as a single entry)3.132 F 5.363(.T)-.65 G .363 -(he last command in the history list is)-5.363 F(remo)180 156 Q -.15(ve) +(he last command in the history list is)-5.363 F(remo)180 312 Q -.15(ve) -.15 G 2.5(db).15 G(efore the)-2.5 E F2(ar)2.83 E(gs)-.37 E F0 -(are added.)2.77 E .146(If the)144 172.8 R/F3 9/Times-Bold@0 SF +(are added.)2.77 E .146(If the)144 328.8 R/F3 9/Times-Bold@0 SF (HISTTIMEFORMA)2.645 E(T)-.855 E F0 -.25(va)2.395 G .145 (riable is set, the time stamp information associated with each history) -.25 F .668(entry is written to the history \214le, mark)144 184.8 R .669 +.25 F .668(entry is written to the history \214le, mark)144 340.8 R .669 (ed with the history comment character)-.1 F 5.669(.W)-.55 G .669 -(hen the history)-5.669 F .956(\214le is read, lines be)144 196.8 R .956 +(hen the history)-5.669 F .956(\214le is read, lines be)144 352.8 R .956 (ginning with the history comment character follo)-.15 F .955 (wed immediately by a digit)-.25 F .832 -(are interpreted as timestamps for the follo)144 208.8 R .832 +(are interpreted as timestamps for the follo)144 364.8 R .832 (wing history entry)-.25 F 5.833(.T)-.65 G .833(he return v)-5.833 F -.833(alue is 0 unless an in-)-.25 F -.25(va)144 220.8 S .168(lid option\ +.833(alue is 0 unless an in-)-.25 F -.25(va)144 376.8 S .168(lid option\ is encountered, an error occurs while reading or writing the history \ \214le, an in).25 F -.25(va)-.4 G(lid).25 E F2(of)2.668 E(f-)-.18 E(set) -144 232.8 Q F0 .34(or range is supplied as an ar)2.84 F .34(gument to) +144 388.8 Q F0 .34(or range is supplied as an ar)2.84 F .34(gument to) -.18 F F12.841 E F0 2.841(,o)C 2.841(rt)-2.841 G .341 (he history e)-2.841 F .341(xpansion supplied as an ar)-.15 F .341 -(gument to)-.18 F F1144 244.8 Q F0 -.1(fa)2.5 G(ils.).1 E F1(jobs) -108 261.6 Q F0([)2.5 E F1(\255lnprs)A F0 2.5(][)C F2(jobspec)A F0(... ]) -2.5 E F1(jobs \255x)108 273.6 Q F2(command)2.5 E F0([)2.5 E F2(ar)2.5 E -(gs)-.37 E F0(... ])2.5 E(The \214rst form lists the acti)144 285.6 Q .3 +(gument to)-.18 F F1144 400.8 Q F0 -.1(fa)2.5 G(ils.).1 E F1(jobs) +108 417.6 Q F0([)2.5 E F1(\255lnprs)A F0 2.5(][)C F2(jobspec)A F0(... ]) +2.5 E F1(jobs \255x)108 429.6 Q F2(command)2.5 E F0([)2.5 E F2(ar)2.5 E +(gs)-.37 E F0(... ])2.5 E(The \214rst form lists the acti)144 441.6 Q .3 -.15(ve j)-.25 H 2.5(obs. The).15 F(options ha)2.5 E .3 -.15(ve t)-.2 H -(he follo).15 E(wing meanings:)-.25 E F1144 297.6 Q F0 -(List process IDs in addition to the normal information.)180 297.6 Q F1 -144 309.6 Q F0 .194(Display information only about jobs that ha) -180 309.6 R .494 -.15(ve c)-.2 H .193(hanged status since the user w).15 -F .193(as last noti-)-.1 F(\214ed of their status.)180 321.6 Q F1 -144 333.6 Q F0(List only the process ID of the job')180 333.6 Q 2.5(sp) --.55 G(rocess group leader)-2.5 E(.)-.55 E F1144 345.6 Q F0 -(Display only running jobs.)180 345.6 Q F1144 357.6 Q F0 -(Display only stopped jobs.)180 357.6 Q(If)144 374.4 Q F2(jobspec)4.553 +(he follo).15 E(wing meanings:)-.25 E F1144 453.6 Q F0 +(List process IDs in addition to the normal information.)180 453.6 Q F1 +144 465.6 Q F0 .194(Display information only about jobs that ha) +180 465.6 R .494 -.15(ve c)-.2 H .193(hanged status since the user w).15 +F .193(as last noti-)-.1 F(\214ed of their status.)180 477.6 Q F1 +144 489.6 Q F0(List only the process ID of the job')180 489.6 Q 2.5(sp) +-.55 G(rocess group leader)-2.5 E(.)-.55 E F1144 501.6 Q F0 +(Display only running jobs.)180 501.6 Q F1144 513.6 Q F0 +(Display only stopped jobs.)180 513.6 Q(If)144 530.4 Q F2(jobspec)4.553 E F0 .313(is gi)3.123 F -.15(ve)-.25 G .313 (n, output is restricted to information about that job).15 F 5.314(.T) --.4 G .314(he return status is 0 unless)-5.314 F(an in)144 386.4 Q -.25 +-.4 G .314(he return status is 0 unless)-5.314 F(an in)144 542.4 Q -.25 (va)-.4 G(lid option is encountered or an in).25 E -.25(va)-.4 G(lid).25 -E F2(jobspec)4.24 E F0(is supplied.)2.81 E .395(If the)144 403.2 R F1 +E F2(jobspec)4.24 E F0(is supplied.)2.81 E .395(If the)144 559.2 R F1 2.895 E F0 .394(option is supplied,)2.894 F F1(jobs)2.894 E F0 .394(replaces an)2.894 F(y)-.15 E F2(jobspec)4.634 E F0 .394(found in) 3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 E F0 .394 -(with the corre-)3.164 F(sponding process group ID, and e)144 415.2 Q +(with the corre-)3.164 F(sponding process group ID, and e)144 571.2 Q -.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E F2(ar) 2.83 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.)-.15 -E F1(kill)108 432 Q F0([)2.5 E F1A F2(sigspec)2.5 E F0(|)2.5 E F1 +E F1(kill)108 588 Q F0([)2.5 E F1A F2(sigspec)2.5 E F0(|)2.5 E F1 2.5 E F2(signum)2.5 E F0(|)2.5 E F12.5 E F2(sigspec)A F0 2.5 (][)C F2(pid)-2.5 E F0(|)2.5 E F2(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F1 -(kill \255l)108 444 Q F0(|)A F1A F0([)2.5 E F2(sigspec)A F0(|)2.5 +(kill \255l)108 600 Q F0(|)A F1A F0([)2.5 E F2(sigspec)A F0(|)2.5 E F2 -.2(ex)2.5 G(it_status).2 E F0(])A .017(Send the signal named by) -144 456 R F2(sigspec)2.857 E F0(or)2.827 E F2(signum)2.857 E F0 .017 +144 612 R F2(sigspec)2.857 E F0(or)2.827 E F2(signum)2.857 E F0 .017 (to the processes named by)2.837 F F2(pid)3.767 E F0(or)3.287 E F2 (jobspec)4.257 E F0(.).31 E F2(sigspec)5.357 E F0(is)2.828 E .319 -(either a case-insensiti)144 468 R .619 -.15(ve s)-.25 H .319 +(either a case-insensiti)144 624 R .619 -.15(ve s)-.25 H .319 (ignal name such as).15 F F3(SIGKILL)2.819 E F0 .318 (\(with or without the)2.569 F F3(SIG)2.818 E F0 .318 -(pre\214x\) or a signal)2.568 F(number;)144 480 Q F2(signum)3.267 E F0 +(pre\214x\) or a signal)2.568 F(number;)144 636 Q F2(signum)3.267 E F0 .427(is a signal number)3.247 F 5.427(.I)-.55 G(f)-5.427 E F2(sigspec) 3.267 E F0 .427(is not present, then)3.237 F F3(SIGTERM)2.927 E F0 .427 -(is assumed.)2.677 F .428(An ar)5.427 F(-)-.2 E .314(gument of)144 492 R +(is assumed.)2.677 F .428(An ar)5.427 F(-)-.2 E .314(gument of)144 648 R F12.814 E F0 .314(lists the signal names.)2.814 F .314(If an)5.314 F 2.814(ya)-.15 G -.18(rg)-2.814 G .314(uments are supplied when).18 F F12.814 E F0 .314(is gi)2.814 F -.15(ve)-.25 G .313 -(n, the names of).15 F .119(the signals corresponding to the ar)144 504 +(n, the names of).15 F .119(the signals corresponding to the ar)144 660 R .119(guments are listed, and the return status is 0.)-.18 F(The)5.12 E F2 -.2(ex)2.62 G(it_status).2 E F0(ar)2.62 E(-)-.2 E .8(gument to)144 -516 R F13.3 E F0 .8 +672 R F13.3 E F0 .8 (is a number specifying either a signal number or the e)3.3 F .799 -(xit status of a process termi-)-.15 F .962(nated by a signal.)144 528 R +(xit status of a process termi-)-.15 F .962(nated by a signal.)144 684 R (The)5.962 E F13.462 E F0 .962(option is equi)3.462 F -.25(va)-.25 G .962(lent to).25 F F13.462 E F0(.)A F1(kill)5.962 E F0 .962 (returns true if at least one signal w)3.462 F(as)-.1 E -(successfully sent, or f)144 540 Q(alse if an error occurs or an in)-.1 -E -.25(va)-.4 G(lid option is encountered.).25 E F1(let)108 556.8 Q F2 -(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Each)144 -568.8 Q F2(ar)3.027 E(g)-.37 E F0 .197(is an arithmetic e)2.917 F .197 -(xpression to be e)-.15 F -.25(va)-.25 G .196(luated \(see).25 F F3 .196 -(ARITHMETIC EV)2.696 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(abo) -2.446 E -.15(ve)-.15 G 2.696(\). If).15 F(the last)144 580.8 Q F2(ar) -2.83 E(g)-.37 E F0 -.25(eva)2.72 G(luates to 0,).25 E F1(let)2.5 E F0 -(returns 1; 0 is returned otherwise.)2.5 E F1(local)108 597.6 Q F0([)2.5 -E F2(option)A F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C -(.. | \255 ])-2.5 E -.15(Fo)144 609.6 S 2.541(re).15 G .041(ach ar) --2.541 F .042(gument, a local v)-.18 F .042(ariable named)-.25 F F2 -(name)2.902 E F0 .042(is created, and assigned)2.722 F F2(value)2.832 E -F0 5.042(.T).18 G(he)-5.042 E F2(option)2.542 E F0 .042(can be)2.542 F -(an)144 621.6 Q 3.153(yo)-.15 G 3.153(ft)-3.153 G .653 -(he options accepted by)-3.153 F F1(declar)3.153 E(e)-.18 E F0 5.652(.W) -C(hen)-5.652 E F1(local)3.152 E F0 .652 -(is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144 -633.6 Q F2(name)3.281 E F0 .421(to ha)3.101 F .721 -.15(ve a v)-.2 H -.422(isible scope restricted to that function and its children.).15 F -(If)5.422 E F2(name)2.922 E F0 .422(is \255, the set)2.922 F .51 -(of shell options is made local to the function in which)144 645.6 R F1 -(local)3.009 E F0 .509(is in)3.009 F -.2(vo)-.4 G -.1(ke).2 G .509 -(d: shell options changed us-).1 F 1.17(ing the)144 657.6 R F1(set)3.67 -E F0 -.2(bu)3.67 G 1.171 -(iltin inside the function are restored to their original v).2 F 1.171 -(alues when the function re-)-.25 F 3.381(turns. The)144 669.6 R .881 -(restore is ef)3.381 F .881(fected as if a series of)-.25 F F1(set)3.381 -E F0 .88(commands were e)3.38 F -.15(xe)-.15 G .88 -(cuted to restore the v).15 F(alues)-.25 E .787 -(that were in place before the function.)144 681.6 R -.4(Wi)5.788 G .788 -(th no operands,).4 F F1(local)3.288 E F0 .788(writes a list of local v) -3.288 F .788(ariables to)-.25 F .655(the standard output.)144 693.6 R -.654(It is an error to use)5.655 F F1(local)3.154 E F0 .654 -(when not within a function.)3.154 F .654(The return status is 0)5.654 F -(unless)144 705.6 Q F1(local)2.5 E F0(is used outside a function, an in) -2.5 E -.25(va)-.4 G(lid).25 E F2(name)2.86 E F0(is supplied, or)2.68 E -F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E(GNU Bash 5.2)72 -768 Q(2022 March 11)144.29 E(69)193.45 E 0 Cg EP +(successfully sent, or f)144 696 Q(alse if an error occurs or an in)-.1 +E -.25(va)-.4 G(lid option is encountered.).25 E(GNU Bash 5.2)72 768 Q +(2022 June 3)150.675 E(69)199.835 E 0 Cg EP %%Page: 70 70 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(logout)108 84 Q F0(Exit a login shell.)144 84 Q F1(map\214le)108 -100.8 Q F0([)2.5 E F1A/F2 10/Times-Italic@0 SF(delim)2.5 E F0 2.5 -(][)C F1-2.5 E F2(count)2.5 E F0 2.5(][)C F1-2.5 E F2 -(origin)2.5 E F0 2.5(][)C F1-2.5 E F2(count)2.5 E F0 2.5(][)C F1 --2.5 E F0 2.5(][)C F1-2.5 E F2(fd)2.5 E F0 2.5(][)C F1 --2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][)C F1-2.5 E F2(quantum) -2.5 E F0 2.5(][)C F2(arr)-2.5 E(ay)-.15 E F0(])A F1 -.18(re)108 112.8 S -(adarray).18 E F0([)2.5 E F1A F2(delim)2.5 E F0 2.5(][)C F1 --2.5 E F2(count)2.5 E F0 2.5(][)C F1-2.5 E F2(origin)2.5 E F0 2.5 -(][)C F1-2.5 E F2(count)2.5 E F0 2.5(][)C F1-2.5 E F0 2.5 -(][)C F1-2.5 E F2(fd)2.5 E F0 2.5(][)C F1-2.5 E F2(callbac) -2.5 E(k)-.2 E F0 2.5(][)C F1-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2 -(arr)-2.5 E(ay)-.15 E F0(])A .158 -(Read lines from the standard input into the inde)144 124.8 R -.15(xe) --.15 G 2.659(da).15 G .159(rray v)-2.659 F(ariable)-.25 E F2(arr)2.989 E -(ay)-.15 E F0 2.659(,o).32 G 2.659(rf)-2.659 G .159 -(rom \214le descriptor)-2.659 F F2(fd)4.629 E F0 1.249(if the)144 136.8 +SF(let)108 84 Q/F2 10/Times-Italic@0 SF(ar)2.5 E(g)-.37 E F0([)2.5 E F2 +(ar)A(g)-.37 E F0(...])2.5 E(Each)144 96 Q F2(ar)3.027 E(g)-.37 E F0 +.197(is an arithmetic e)2.917 F .197(xpression to be e)-.15 F -.25(va) +-.25 G .196(luated \(see).25 F/F3 9/Times-Bold@0 SF .196(ARITHMETIC EV) +2.696 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(abo)2.446 E -.15(ve) +-.15 G 2.696(\). If).15 F(the last)144 108 Q F2(ar)2.83 E(g)-.37 E F0 +-.25(eva)2.72 G(luates to 0,).25 E F1(let)2.5 E F0 +(returns 1; 0 is returned otherwise.)2.5 E F1(local)108 124.8 Q F0([)2.5 +E F2(option)A F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C +(.. | \255 ])-2.5 E -.15(Fo)144 136.8 S 2.541(re).15 G .041(ach ar) +-2.541 F .042(gument, a local v)-.18 F .042(ariable named)-.25 F F2 +(name)2.902 E F0 .042(is created, and assigned)2.722 F F2(value)2.832 E +F0 5.042(.T).18 G(he)-5.042 E F2(option)2.542 E F0 .042(can be)2.542 F +(an)144 148.8 Q 3.153(yo)-.15 G 3.153(ft)-3.153 G .653 +(he options accepted by)-3.153 F F1(declar)3.153 E(e)-.18 E F0 5.652(.W) +C(hen)-5.652 E F1(local)3.152 E F0 .652 +(is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144 +160.8 Q F2(name)3.281 E F0 .421(to ha)3.101 F .721 -.15(ve a v)-.2 H +.422(isible scope restricted to that function and its children.).15 F +(If)5.422 E F2(name)2.922 E F0 .422(is \255, the set)2.922 F .51 +(of shell options is made local to the function in which)144 172.8 R F1 +(local)3.009 E F0 .509(is in)3.009 F -.2(vo)-.4 G -.1(ke).2 G .509 +(d: shell options changed us-).1 F 1.17(ing the)144 184.8 R F1(set)3.67 +E F0 -.2(bu)3.67 G 1.171 +(iltin inside the function are restored to their original v).2 F 1.171 +(alues when the function re-)-.25 F 3.381(turns. The)144 196.8 R .881 +(restore is ef)3.381 F .881(fected as if a series of)-.25 F F1(set)3.381 +E F0 .88(commands were e)3.38 F -.15(xe)-.15 G .88 +(cuted to restore the v).15 F(alues)-.25 E .787 +(that were in place before the function.)144 208.8 R -.4(Wi)5.788 G .788 +(th no operands,).4 F F1(local)3.288 E F0 .788(writes a list of local v) +3.288 F .788(ariables to)-.25 F .655(the standard output.)144 220.8 R +.654(It is an error to use)5.655 F F1(local)3.154 E F0 .654 +(when not within a function.)3.154 F .654(The return status is 0)5.654 F +(unless)144 232.8 Q F1(local)2.5 E F0(is used outside a function, an in) +2.5 E -.25(va)-.4 G(lid).25 E F2(name)2.86 E F0(is supplied, or)2.68 E +F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F1(logout)108 +249.6 Q F0(Exit a login shell.)144 249.6 Q F1(map\214le)108 266.4 Q F0 +([)2.5 E F1A F2(delim)2.5 E F0 2.5(][)C F1-2.5 E F2(count) +2.5 E F0 2.5(][)C F1-2.5 E F2(origin)2.5 E F0 2.5(][)C F1 +-2.5 E F2(count)2.5 E F0 2.5(][)C F1-2.5 E F0 2.5(][)C F1 +-2.5 E F2(fd)2.5 E F0 2.5(][)C F1-2.5 E F2(callbac)2.5 E(k)-.2 E +F0 2.5(][)C F1-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E +(ay)-.15 E F0(])A F1 -.18(re)108 278.4 S(adarray).18 E F0([)2.5 E F1 +A F2(delim)2.5 E F0 2.5(][)C F1-2.5 E F2(count)2.5 E F0 2.5 +(][)C F1-2.5 E F2(origin)2.5 E F0 2.5(][)C F1-2.5 E F2 +(count)2.5 E F0 2.5(][)C F1-2.5 E F0 2.5(][)C F1-2.5 E F2 +(fd)2.5 E F0 2.5(][)C F1-2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][) +C F1-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E(ay)-.15 E F0 +(])A .158(Read lines from the standard input into the inde)144 290.4 R +-.15(xe)-.15 G 2.659(da).15 G .159(rray v)-2.659 F(ariable)-.25 E F2 +(arr)2.989 E(ay)-.15 E F0 2.659(,o).32 G 2.659(rf)-2.659 G .159 +(rom \214le descriptor)-2.659 F F2(fd)4.629 E F0 1.249(if the)144 302.4 R F13.749 E F0 1.249(option is supplied.)3.749 F 1.249(The v)6.249 -F(ariable)-.25 E/F3 9/Times-Bold@0 SF(MAPFILE)3.749 E F0 1.249 -(is the def)3.499 F(ault)-.1 E F2(arr)3.748 E(ay)-.15 E F0 6.248(.O)C -1.248(ptions, if supplied,)-6.248 F(ha)144 148.8 Q .3 -.15(ve t)-.2 H -(he follo).15 E(wing meanings:)-.25 E F1144 160.8 Q F0 .91 -(The \214rst character of)180 160.8 R F2(delim)3.41 E F0 .911 +F(ariable)-.25 E F3(MAPFILE)3.749 E F0 1.249(is the def)3.499 F(ault)-.1 +E F2(arr)3.748 E(ay)-.15 E F0 6.248(.O)C 1.248(ptions, if supplied,) +-6.248 F(ha)144 314.4 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 326.4 Q F0 .91 +(The \214rst character of)180 326.4 R F2(delim)3.41 E F0 .911 (is used to terminate each input line, rather than ne)3.41 F 3.411 -(wline. If)-.25 F F2(delim)180 172.8 Q F0(is the empty string,)2.5 E F1 +(wline. If)-.25 F F2(delim)180 338.4 Q F0(is the empty string,)2.5 E F1 (map\214le)2.5 E F0(will terminate a line when it reads a NUL character) -2.5 E(.)-.55 E F1144 184.8 Q F0(Cop)180 184.8 Q 2.5(ya)-.1 G 2.5 +2.5 E(.)-.55 E F1144 350.4 Q F0(Cop)180 350.4 Q 2.5(ya)-.1 G 2.5 (tm)-2.5 G(ost)-2.5 E F2(count)2.7 E F0 2.5(lines. If)3.18 F F2(count) -2.5 E F0(is 0, all lines are copied.)2.5 E F1144 196.8 Q F0(Be)180 -196.8 Q(gin assigning to)-.15 E F2(arr)2.83 E(ay)-.15 E F0(at inde)2.82 +2.5 E F0(is 0, all lines are copied.)2.5 E F1144 362.4 Q F0(Be)180 +362.4 Q(gin assigning to)-.15 E F2(arr)2.83 E(ay)-.15 E F0(at inde)2.82 E(x)-.15 E F2(origin)2.73 E F0 5(.T).24 G(he def)-5 E(ault inde)-.1 E -2.5(xi)-.15 G 2.5(s0)-2.5 G(.)-2.5 E F1144 208.8 Q F0 -(Discard the \214rst)180 208.8 Q F2(count)2.5 E F0(lines read.)2.5 E F1 -144 220.8 Q F0(Remo)180 220.8 Q .3 -.15(ve a t)-.15 H(railing).15 +2.5(xi)-.15 G 2.5(s0)-2.5 G(.)-2.5 E F1144 374.4 Q F0 +(Discard the \214rst)180 374.4 Q F2(count)2.5 E F0(lines read.)2.5 E F1 +144 386.4 Q F0(Remo)180 386.4 Q .3 -.15(ve a t)-.15 H(railing).15 E F2(delim)2.5 E F0(\(def)2.5 E(ault ne)-.1 E -(wline\) from each line read.)-.25 E F1144 232.8 Q F0 -(Read lines from \214le descriptor)180 232.8 Q F2(fd)2.5 E F0 -(instead of the standard input.)2.5 E F1144 244.8 Q F0(Ev)180 -244.8 Q(aluate)-.25 E F2(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F2 +(wline\) from each line read.)-.25 E F1144 398.4 Q F0 +(Read lines from \214le descriptor)180 398.4 Q F2(fd)2.5 E F0 +(instead of the standard input.)2.5 E F1144 410.4 Q F0(Ev)180 +410.4 Q(aluate)-.25 E F2(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F2 (quantum)2.5 E F0(lines are read.)2.5 E(The)5 E F12.5 E F0 -(option speci\214es)2.5 E F2(quantum)2.75 E F0(.).32 E F1144 256.8 -Q F0(Specify the number of lines read between each call to)180 256.8 Q -F2(callbac)2.7 E(k)-.2 E F0(.).67 E(If)144 273.6 Q F12.968 E F0 +(option speci\214es)2.5 E F2(quantum)2.75 E F0(.).32 E F1144 422.4 +Q F0(Specify the number of lines read between each call to)180 422.4 Q +F2(callbac)2.7 E(k)-.2 E F0(.).67 E(If)144 439.2 Q F12.968 E F0 .467(is speci\214ed without)2.967 F F12.967 E F0 2.967(,t)C .467 (he def)-2.967 F .467(ault quantum is 5000.)-.1 F(When)5.467 E F2 (callbac)2.967 E(k)-.2 E F0 .467(is e)2.967 F -.25(va)-.25 G .467 -(luated, it is sup-).25 F .261(plied the inde)144 285.6 R 2.761(xo)-.15 +(luated, it is sup-).25 F .261(plied the inde)144 451.2 R 2.761(xo)-.15 G 2.761(ft)-2.761 G .261(he ne)-2.761 F .262(xt array element to be ass\ igned and the line to be assigned to that element)-.15 F .275 -(as additional ar)144 297.6 R(guments.)-.18 E F2(callbac)5.275 E(k)-.2 E +(as additional ar)144 463.2 R(guments.)-.18 E F2(callbac)5.275 E(k)-.2 E F0 .275(is e)2.775 F -.25(va)-.25 G .274 (luated after the line is read b).25 F .274 -(ut before the array element is)-.2 F(assigned.)144 309.6 Q -(If not supplied with an e)144 326.4 Q(xplicit origin,)-.15 E F1 +(ut before the array element is)-.2 F(assigned.)144 475.2 Q +(If not supplied with an e)144 492 Q(xplicit origin,)-.15 E F1 (map\214le)2.5 E F0(will clear)2.5 E F2(arr)2.5 E(ay)-.15 E F0 -(before assigning to it.)2.5 E F1(map\214le)144 343.2 Q F0 .797 +(before assigning to it.)2.5 E F1(map\214le)144 508.8 Q F0 .797 (returns successfully unless an in)3.297 F -.25(va)-.4 G .797 (lid option or option ar).25 F .797(gument is supplied,)-.18 F F2(arr) -3.297 E(ay)-.15 E F0 .798(is in-)3.298 F -.25(va)144 355.2 S +3.297 E(ay)-.15 E F0 .798(is in-)3.298 F -.25(va)144 520.8 S (lid or unassignable, or if).25 E F2(arr)2.5 E(ay)-.15 E F0 (is not an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 G(rray)-2.5 E(.)-.65 E -F1(popd)108 372 Q F0<5bad>2.5 E F1(n)A F0 2.5(][)C(+)-2.5 E F2(n)A F0 -2.5(][)C-2.5 E F2(n)A F0(])A(Remo)144 384 Q -.15(ve)-.15 G 3.092(se) -.15 G .592(ntries from the directory stack.)-3.092 F .591 +F1(popd)108 537.6 Q F0<5bad>2.5 E F1(n)A F0 2.5(][)C(+)-2.5 E F2(n)A F0 +2.5(][)C-2.5 E F2(n)A F0(])A(Remo)144 549.6 Q -.15(ve)-.15 G 3.092 +(se).15 G .592(ntries from the directory stack.)-3.092 F .591 (The elements are numbered from 0 starting at the \214rst)5.591 F .664 -(directory listed by)144 396 R F1(dirs)3.164 E F0 5.664(.W)C .664 +(directory listed by)144 561.6 R F1(dirs)3.164 E F0 5.664(.W)C .664 (ith no ar)-6.064 F(guments,)-.18 E F1(popd)3.165 E F0(remo)3.165 E -.15 (ve)-.15 G 3.165(st).15 G .665(he top directory from the stack, and) --3.165 F(changes to the ne)144 408 Q 2.5(wt)-.25 G(op directory)-2.5 E 5 -(.A)-.65 G -.18(rg)-5 G(uments, if supplied, ha).18 E .3 -.15(ve t)-.2 H -(he follo).15 E(wing meanings:)-.25 E F1144 420 Q F0 .551 -(Suppresses the normal change of directory when remo)180 420 R .551 +-3.165 F(changes to the ne)144 573.6 Q 2.5(wt)-.25 G(op directory)-2.5 E +5(.A)-.65 G -.18(rg)-5 G(uments, if supplied, ha).18 E .3 -.15(ve t)-.2 +H(he follo).15 E(wing meanings:)-.25 E F1144 585.6 Q F0 .551 +(Suppresses the normal change of directory when remo)180 585.6 R .551 (ving directories from the stack, so)-.15 F -(that only the stack is manipulated.)180 432 Q F1(+)144 444 Q F2(n)A F0 -(Remo)180 444 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F2(n)2.64 E F0 -.14(th entry counting from the left of the list sho)B .14(wn by)-.25 F -F1(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero,)-2.64 F .78 -(from the stack.)180 456 R -.15(Fo)5.78 G 3.28(re).15 G(xample:)-3.43 E -/F4 10/Courier@0 SF .779(popd +0)3.279 F F0(remo)3.279 E -.15(ve)-.15 G +(that only the stack is manipulated.)180 597.6 Q F1(+)144 609.6 Q F2(n)A +F0(Remo)180 609.6 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F2(n)2.64 E +F0 .14(th entry counting from the left of the list sho)B .14(wn by)-.25 +F F1(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero,)-2.64 F .78 +(from the stack.)180 621.6 R -.15(Fo)5.78 G 3.28(re).15 G(xample:)-3.43 +E/F4 10/Courier@0 SF .779(popd +0)3.279 F F0(remo)3.279 E -.15(ve)-.15 G 3.279(st).15 G .779(he \214rst directory)-3.279 F(,)-.65 E F4 .779 -(popd +1)3.279 F F0 .779(the sec-)3.279 F(ond.)180 468 Q F1144 480 Q -F2(n)A F0(Remo)180 480 Q -.15(ve)-.15 G 3.759(st).15 G(he)-3.759 E F2(n) -3.759 E F0 1.259(th entry counting from the right of the list sho)B 1.26 -(wn by)-.25 F F1(dirs)3.76 E F0 3.76(,s)C 1.26(tarting with)-3.76 F 2.5 -(zero. F)180 492 R(or e)-.15 E(xample:)-.15 E F4(popd -0)2.5 E F0(remo) -2.5 E -.15(ve)-.15 G 2.5(st).15 G(he last directory)-2.5 E(,)-.65 E F4 -(popd -1)2.5 E F0(the ne)2.5 E(xt to last.)-.15 E .094 +(popd +1)3.279 F F0 .779(the sec-)3.279 F(ond.)180 633.6 Q F1144 +645.6 Q F2(n)A F0(Remo)180 645.6 Q -.15(ve)-.15 G 3.759(st).15 G(he) +-3.759 E F2(n)3.759 E F0 1.259 +(th entry counting from the right of the list sho)B 1.26(wn by)-.25 F F1 +(dirs)3.76 E F0 3.76(,s)C 1.26(tarting with)-3.76 F 2.5(zero. F)180 +657.6 R(or e)-.15 E(xample:)-.15 E F4(popd -0)2.5 E F0(remo)2.5 E -.15 +(ve)-.15 G 2.5(st).15 G(he last directory)-2.5 E(,)-.65 E F4(popd -1)2.5 +E F0(the ne)2.5 E(xt to last.)-.15 E .094 (If the top element of the directory stack is modi\214ed, and the)144 -508.8 R F2(-n)2.593 E F0 .093(option w)2.593 F .093(as not supplied,)-.1 -F F1(popd)2.593 E F0(uses)2.593 E(the)144 520.8 Q F1(cd)2.696 E F0 -.2 +674.4 R F2(-n)2.593 E F0 .093(option w)2.593 F .093(as not supplied,)-.1 +F F1(popd)2.593 E F0(uses)2.593 E(the)144 686.4 Q F1(cd)2.696 E F0 -.2 (bu)2.696 G .196 (iltin to change to the directory at the top of the stack.).2 F .196 (If the)5.196 F F1(cd)2.696 E F0 -.1(fa)2.696 G(ils,).1 E F1(popd)2.697 -E F0 .197(returns a non-)2.697 F(zero v)144 532.8 Q(alue.)-.25 E -(Otherwise,)144 549.6 Q F1(popd)2.671 E F0 .171(returns f)2.671 F .171 +E F0 .197(returns a non-)2.697 F(zero v)144 698.4 Q(alue.)-.25 E +(Otherwise,)144 715.2 Q F1(popd)2.671 E F0 .171(returns f)2.671 F .171 (alse if an in)-.1 F -.25(va)-.4 G .171 (lid option is encountered, the directory stack is empty).25 F 2.67(,o) --.65 G 2.67(ra)-2.67 G(non-e)144 561.6 Q -(xistent directory stack entry is speci\214ed.)-.15 E 1.555(If the)144 -578.4 R F1(popd)4.055 E F0 1.555(command is successful, bash runs)4.055 -F F1(dirs)4.056 E F0 1.556(to sho)4.056 F 4.056(wt)-.25 G 1.556 -(he \214nal contents of the directory)-4.056 F -(stack, and the return status is 0.)144 590.4 Q F1(printf)108 607.2 Q F0 -([)2.5 E F1A F2(var)2.5 E F0(])A F2(format)2.5 E F0([)2.5 E F2(ar) -A(guments)-.37 E F0(])A .358(Write the formatted)144 619.2 R F2(ar)2.858 -E(guments)-.37 E F0 .358 -(to the standard output under the control of the)2.858 F F2(format)2.857 -E F0 5.357(.T)C(he)-5.357 E F12.857 E F0(op-)2.857 E .714 -(tion causes the output to be assigned to the v)144 631.2 R(ariable)-.25 -E F2(var)3.214 E F0 .714(rather than being printed to the standard)3.214 -F(output.)144 643.2 Q(The)144 667.2 Q F2(format)3.018 E F0 .517(is a ch\ -aracter string which contains three types of objects: plain characters,\ - which are)3.018 F .704(simply copied to standard output, character esc\ -ape sequences, which are con)144 679.2 R -.15(ve)-.4 G .704 -(rted and copied to).15 F .036(the standard output, and format speci\ -\214cations, each of which causes printing of the ne)144 691.2 R .036 -(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 703.2 Q(gument)-.37 E F0 -5.531(.I)C 3.031(na)-5.531 G .531(ddition to the standard)-3.031 F F2 -(printf)3.032 E F0 .532(\(1\) format speci\214cations,)B F1(printf)3.032 -E F0 .532(interprets the follo)3.032 F(w-)-.25 E(ing e)144 715.2 Q -(xtensions:)-.15 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(70) -193.45 E 0 Cg EP +-.65 G 2.67(ra)-2.67 G(non-e)144 727.2 Q +(xistent directory stack entry is speci\214ed.)-.15 E(GNU Bash 5.2)72 +768 Q(2022 June 3)150.675 E(70)199.835 E 0 Cg EP %%Page: 71 71 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(%b)144 84 Q F0(causes)180 84 Q F1(printf)2.596 E F0 .096(to e)2.596 F -.096(xpand backslash escape sequences in the corresponding)-.15 F/F2 10 -/Times-Italic@0 SF(ar)2.596 E(gument)-.37 E F0 .095(in the)2.595 F -(same w)180 96 Q(ay as)-.1 E F1(echo \255e)2.5 E F0(.)A F1(%q)144 108 Q -F0(causes)180 108 Q F1(printf)2.51 E F0 .01(to output the corresponding) -2.51 F F2(ar)2.51 E(gument)-.37 E F0 .01 -(in a format that can be reused as shell)2.51 F(input.)180 120 Q F1(%Q) -144 132 Q F0(lik)180 132 Q(e)-.1 E F1(%q)2.5 E F0 2.5(,b)C -(ut applies an)-2.7 E 2.5(ys)-.15 G(upplied precision to the)-2.5 E F2 -(ar)2.5 E(gument)-.37 E F0(before quoting it.)2.5 E F1(%\()144 144 Q F2 -(datefmt)A F1(\)T)A F0(causes)180 156 Q F1(printf)4.404 E F0 1.904 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.555(If the)144 +84 R/F1 10/Times-Bold@0 SF(popd)4.055 E F0 1.555 +(command is successful, bash runs)4.055 F F1(dirs)4.056 E F0 1.556 +(to sho)4.056 F 4.056(wt)-.25 G 1.556 +(he \214nal contents of the directory)-4.056 F +(stack, and the return status is 0.)144 96 Q F1(printf)108 112.8 Q F0([) +2.5 E F1A/F2 10/Times-Italic@0 SF(var)2.5 E F0(])A F2(format)2.5 E +F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A .358(Write the formatted)144 +124.8 R F2(ar)2.858 E(guments)-.37 E F0 .358 +(to the standard output under the control of the)2.858 F F2(format)2.857 +E F0 5.357(.T)C(he)-5.357 E F12.857 E F0(op-)2.857 E .714 +(tion causes the output to be assigned to the v)144 136.8 R(ariable)-.25 +E F2(var)3.214 E F0 .714(rather than being printed to the standard)3.214 +F(output.)144 148.8 Q(The)144 172.8 Q F2(format)3.018 E F0 .517(is a ch\ +aracter string which contains three types of objects: plain characters,\ + which are)3.018 F .704(simply copied to standard output, character esc\ +ape sequences, which are con)144 184.8 R -.15(ve)-.4 G .704 +(rted and copied to).15 F .036(the standard output, and format speci\ +\214cations, each of which causes printing of the ne)144 196.8 R .036 +(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 208.8 Q(gument)-.37 E F0 +5.531(.I)C 3.031(na)-5.531 G .531(ddition to the standard)-3.031 F F2 +(printf)3.032 E F0 .532(\(1\) format speci\214cations,)B F1(printf)3.032 +E F0 .532(interprets the follo)3.032 F(w-)-.25 E(ing e)144 220.8 Q +(xtensions:)-.15 E F1(%b)144 232.8 Q F0(causes)180 232.8 Q F1(printf) +2.596 E F0 .096(to e)2.596 F .096 +(xpand backslash escape sequences in the corresponding)-.15 F F2(ar) +2.596 E(gument)-.37 E F0 .095(in the)2.595 F(same w)180 244.8 Q(ay as) +-.1 E F1(echo \255e)2.5 E F0(.)A F1(%q)144 256.8 Q F0(causes)180 256.8 Q +F1(printf)2.51 E F0 .01(to output the corresponding)2.51 F F2(ar)2.51 E +(gument)-.37 E F0 .01(in a format that can be reused as shell)2.51 F +(input.)180 268.8 Q F1(%Q)144 280.8 Q F0(lik)180 280.8 Q(e)-.1 E F1(%q) +2.5 E F0 2.5(,b)C(ut applies an)-2.7 E 2.5(ys)-.15 G +(upplied precision to the)-2.5 E F2(ar)2.5 E(gument)-.37 E F0 +(before quoting it.)2.5 E F1(%\()144 292.8 Q F2(datefmt)A F1(\)T)A F0 +(causes)180 304.8 Q F1(printf)4.404 E F0 1.904 (to output the date-time string resulting from using)4.404 F F2(datefmt) -4.404 E F0 1.903(as a format)4.404 F .38(string for)180 168 R F2 +4.404 E F0 1.903(as a format)4.404 F .38(string for)180 316.8 R F2 (strftime)2.881 E F0 2.881(\(3\). The)B(corresponding)2.881 E F2(ar) 2.881 E(gument)-.37 E F0 .381(is an inte)2.881 F .381 (ger representing the number)-.15 F .293(of seconds since the epoch.)180 -180 R -1 -.8(Tw o)5.293 H .293(special ar)3.593 F .293(gument v)-.18 F +328.8 R -1 -.8(Tw o)5.293 H .293(special ar)3.593 F .293(gument v)-.18 F .293(alues may be used: \2551 represents the)-.25 F .693 -(current time, and \2552 represents the time the shell w)180 192 R .693 -(as in)-.1 F -.2(vo)-.4 G -.1(ke).2 G 3.194(d. If).1 F .694(no ar)3.194 -F .694(gument is speci-)-.18 F .21(\214ed, con)180 204 R -.15(ve)-.4 G -.21(rsion beha).15 F -.15(ve)-.2 G 2.71(sa).15 G 2.71(si)-2.71 G 2.71 -<66ad>-2.71 G 2.71(1h)-2.71 G .21(ad been gi)-2.71 F -.15(ve)-.25 G 2.71 -(n. This).15 F .21(is an e)2.71 F .21(xception to the usual)-.15 F F1 -(printf)2.71 E F0(beha)180 216 Q(vior)-.2 E(.)-.55 E .901 -(The %b, %q, and %T directi)144 232.8 R -.15(ve)-.25 G 3.401(sa).15 G +(current time, and \2552 represents the time the shell w)180 340.8 R +.693(as in)-.1 F -.2(vo)-.4 G -.1(ke).2 G 3.194(d. If).1 F .694(no ar) +3.194 F .694(gument is speci-)-.18 F .21(\214ed, con)180 352.8 R -.15 +(ve)-.4 G .21(rsion beha).15 F -.15(ve)-.2 G 2.71(sa).15 G 2.71(si)-2.71 +G 2.71<66ad>-2.71 G 2.71(1h)-2.71 G .21(ad been gi)-2.71 F -.15(ve)-.25 +G 2.71(n. This).15 F .21(is an e)2.71 F .21(xception to the usual)-.15 F +F1(printf)2.71 E F0(beha)180 364.8 Q(vior)-.2 E(.)-.55 E .901 +(The %b, %q, and %T directi)144 381.6 R -.15(ve)-.25 G 3.401(sa).15 G .901(ll use the \214eld width and precision ar)-3.401 F .902 (guments from the format)-.18 F .358(speci\214cation and write that man) -144 244.8 R 2.858(yb)-.15 G .357 +144 393.6 R 2.858(yb)-.15 G .357 (ytes from \(or use that wide a \214eld for\) the e)-2.858 F .357 (xpanded ar)-.15 F(gument,)-.18 E -(which usually contains more characters than the original.)144 256.8 Q -(Ar)144 273.6 Q .463(guments to non-string format speci\214ers are trea\ +(which usually contains more characters than the original.)144 405.6 Q +(Ar)144 422.4 Q .463(guments to non-string format speci\214ers are trea\ ted as C constants, e)-.18 F .464(xcept that a leading plus or)-.15 F -1.259(minus sign is allo)144 285.6 R 1.259 +1.259(minus sign is allo)144 434.4 R 1.259 (wed, and if the leading character is a single or double quote, the v) --.25 F 1.258(alue is the)-.25 F(ASCII v)144 297.6 Q(alue of the follo) --.25 E(wing character)-.25 E(.)-.55 E(The)144 314.4 Q F2(format)2.514 E +-.25 F 1.258(alue is the)-.25 F(ASCII v)144 446.4 Q(alue of the follo) +-.25 E(wing character)-.25 E(.)-.55 E(The)144 463.2 Q F2(format)2.514 E F0 .015(is reused as necessary to consume all of the)2.514 F F2(ar)2.515 E(guments)-.37 E F0 5.015(.I)C 2.515(ft)-5.015 G(he)-2.515 E F2(format) 2.515 E F0 .015(requires more)2.515 F F2(ar)2.515 E(-)-.2 E(guments)144 -326.4 Q F0 .566(than are supplied, the e)3.066 F .566 +475.2 Q F0 .566(than are supplied, the e)3.066 F .566 (xtra format speci\214cations beha)-.15 F .866 -.15(ve a)-.2 H 3.066(si) .15 G 3.065(faz)-3.066 G .565(ero v)-3.065 F .565(alue or null string,) --.25 F(as appropriate, had been supplied.)144 338.4 Q(The return v)5 E +-.25 F(as appropriate, had been supplied.)144 487.2 Q(The return v)5 E (alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E F1(pushd) -108 355.2 Q F0([)2.5 E F1A F0 2.5(][)C(+)-2.5 E F2(n)A F0 2.5(][)C --2.5 E F2(n)A F0(])A F1(pushd)108 367.2 Q F0([)2.5 E F1A F0 -2.5(][)C F2(dir)-2.5 E F0(])A .639(Adds a directory to the top of the d\ -irectory stack, or rotates the stack, making the ne)144 379.2 R 3.14(wt) --.25 G .64(op of the)-3.14 F .089(stack the current w)144 391.2 R .089 +108 504 Q F0([)2.5 E F1A F0 2.5(][)C(+)-2.5 E F2(n)A F0 2.5(][)C +-2.5 E F2(n)A F0(])A F1(pushd)108 516 Q F0([)2.5 E F1A F0 2.5 +(][)C F2(dir)-2.5 E F0(])A .639(Adds a directory to the top of the dire\ +ctory stack, or rotates the stack, making the ne)144 528 R 3.14(wt)-.25 +G .64(op of the)-3.14 F .089(stack the current w)144 540 R .089 (orking directory)-.1 F 5.089(.W)-.65 G .089(ith no ar)-5.489 F (guments,)-.18 E F1(pushd)2.589 E F0 -.15(ex)2.588 G .088 (changes the top tw).15 F 2.588(oe)-.1 G .088(lements of)-2.588 F -(the directory stack.)144 403.2 Q(Ar)5 E(guments, if supplied, ha)-.18 E -.3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 -415.2 Q F0 1.811(Suppresses the normal change of directory when rotatin\ -g or adding directories to the)180 415.2 R -(stack, so that only the stack is manipulated.)180 427.2 Q F1(+)144 -439.2 Q F2(n)A F0 1.268(Rotates the stack so that the)180 439.2 R F2(n) -3.768 E F0 1.267(th directory \(counting from the left of the list sho)B -1.267(wn by)-.25 F F1(dirs)180 451.2 Q F0 2.5(,s)C -(tarting with zero\) is at the top.)-2.5 E F1144 463.2 Q F2(n)A F0 -.92(Rotates the stack so that the)180 463.2 R F2(n)3.42 E F0 .92 +(the directory stack.)144 552 Q(Ar)5 E(guments, if supplied, ha)-.18 E +.3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 564 +Q F0 1.811(Suppresses the normal change of directory when rotating or a\ +dding directories to the)180 564 R +(stack, so that only the stack is manipulated.)180 576 Q F1(+)144 588 Q +F2(n)A F0 1.268(Rotates the stack so that the)180 588 R F2(n)3.768 E F0 +1.267(th directory \(counting from the left of the list sho)B 1.267 +(wn by)-.25 F F1(dirs)180 600 Q F0 2.5(,s)C +(tarting with zero\) is at the top.)-2.5 E F1144 612 Q F2(n)A F0 .92 +(Rotates the stack so that the)180 612 R F2(n)3.42 E F0 .92 (th directory \(counting from the right of the list sho)B .92(wn by)-.25 -F F1(dirs)180 475.2 Q F0 2.5(,s)C(tarting with zero\) is at the top.) --2.5 E F2(dir)144.35 487.2 Q F0(Adds)180 487.2 Q F2(dir)2.85 E F0 +F F1(dirs)180 624 Q F0 2.5(,s)C(tarting with zero\) is at the top.)-2.5 +E F2(dir)144.35 636 Q F0(Adds)180 636 Q F2(dir)2.85 E F0 (to the directory stack at the top)3.23 E .435 -(After the stack has been modi\214ed, if the)144 504 R F12.935 E +(After the stack has been modi\214ed, if the)144 652.8 R F12.935 E F0 .434(option w)2.934 F .434(as not supplied,)-.1 F F1(pushd)2.934 E F0 .434(uses the)2.934 F F1(cd)2.934 E F0 -.2(bu)2.934 G .434(iltin to).2 F -(change to the directory at the top of the stack.)144 516 Q(If the)5 E +(change to the directory at the top of the stack.)144 664.8 Q(If the)5 E F1(cd)2.5 E F0 -.1(fa)2.5 G(ils,).1 E F1(pushd)2.5 E F0 (returns a non-zero v)2.5 E(alue.)-.25 E 1.78(Otherwise, if no ar)144 -532.8 R 1.78(guments are supplied,)-.18 F F1(pushd)4.28 E F0 1.78 +681.6 R 1.78(guments are supplied,)-.18 F F1(pushd)4.28 E F0 1.78 (returns 0 unless the directory stack is empty)4.28 F(.)-.65 E .093 -(When rotating the directory stack,)144 544.8 R F1(pushd)2.593 E F0 .092 +(When rotating the directory stack,)144 693.6 R F1(pushd)2.593 E F0 .092 (returns 0 unless the directory stack is empty or a non-e)2.593 F(x-) --.15 E(istent directory stack element is speci\214ed.)144 556.8 Q 1.277 -(If the)144 573.6 R F1(pushd)3.777 E F0 1.277 +-.15 E(istent directory stack element is speci\214ed.)144 705.6 Q 1.277 +(If the)144 722.4 R F1(pushd)3.777 E F0 1.277 (command is successful, bash runs)3.777 F F1(dirs)3.777 E F0 1.278 (to sho)3.778 F 3.778(wt)-.25 G 1.278 -(he \214nal contents of the directory)-3.778 F(stack.)144 585.6 Q F1 -(pwd)108 602.4 Q F0([)2.5 E F1(\255LP)A F0(])A .845 -(Print the absolute pathname of the current w)144 614.4 R .845 -(orking directory)-.1 F 5.844(.T)-.65 G .844 -(he pathname printed contains no)-5.844 F .181(symbolic links if the)144 -626.4 R F12.681 E F0 .181(option is supplied or the)2.681 F F1 -.181(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1 -(set)2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264 -(enabled. If)144 638.4 R(the)3.264 E F13.264 E F0 .763 -(option is used, the pathname printed may contain symbolic links.)3.264 -F .763(The return)5.763 F .405(status is 0 unless an error occurs while\ - reading the name of the current directory or an in)144 650.4 R -.25(va) --.4 G .405(lid op-).25 F(tion is supplied.)144 662.4 Q F1 -.18(re)108 -679.2 S(ad).18 E F0([)3.817 E F1(\255ers)A F0 3.817(][)C F1-3.817 -E F2(aname)3.817 E F0 3.817(][)C F1-3.817 E F2(delim)3.817 E F0 -3.817(][)C F1-3.817 E F2(te)3.817 E(xt)-.2 E F0 3.817(][)C F1 --3.817 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1 --3.816 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1-3.816 E -F2(pr)3.816 E(ompt)-.45 E F0 3.816(][)C F1-3.816 E F2(timeout) -3.816 E F0 3.816(][)C F1-3.816 E F2(fd)3.816 E F0(])A([)108 691.2 -Q F2(name)A F0(...])2.5 E .516(One line is read from the standard input\ -, or from the \214le descriptor)144 703.2 R F2(fd)3.016 E F0 .516 -(supplied as an ar)3.016 F .517(gument to)-.18 F(the)144 715.2 Q F1 -2.936 E F0 .436(option, split into w)2.936 F .435 -(ords as described abo)-.1 F .735 -.15(ve u)-.15 H(nder).15 E F1 -.75 -(Wo)2.935 G .435(rd Splitting).75 F F0 2.935(,a)C .435(nd the \214rst w) --2.935 F .435(ord is as-)-.1 F .375(signed to the \214rst)144 727.2 R F2 -(name)3.235 E F0 2.876(,t).18 G .376(he second w)-2.876 F .376 -(ord to the second)-.1 F F2(name)3.236 E F0 2.876(,a).18 G .376 -(nd so on.)-2.876 F .376(If there are more w)5.376 F(ords)-.1 E -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(71)193.45 E 0 Cg EP +(he \214nal contents of the directory)-3.778 F(GNU Bash 5.2)72 768 Q +(2022 June 3)150.675 E(71)199.835 E 0 Cg EP %%Page: 72 72 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .237 -(than names, the remaining w)144 84 R .237(ords and their interv)-.1 F -.237(ening delimiters are assigned to the last)-.15 F/F1 10 -/Times-Italic@0 SF(name)3.096 E F0 5.236(.I).18 G(f)-5.236 E .874 -(there are fe)144 96 R .874(wer w)-.25 F .875(ords read from the input \ -stream than names, the remaining names are assigned)-.1 F .518(empty v) -144 108 R 3.018(alues. The)-.25 F .518(characters in)3.018 F/F2 9 -/Times-Bold@0 SF(IFS)3.018 E F0 .518(are used to split the line into w) -2.768 F .517(ords using the same rules the)-.1 F .026(shell uses for e) -144 120 R .026(xpansion \(described abo)-.15 F .326 -.15(ve u)-.15 H -(nder).15 E/F3 10/Times-Bold@0 SF -.75(Wo)2.526 G .026(rd Splitting).75 -F F0 2.526(\). The)B .026(backslash character \()2.526 F F3(\\)A F0 -2.527(\)m)C(ay)-2.527 E .489(be used to remo)144 132 R .788 -.15(ve a) --.15 H .788 -.15(ny s).15 H .488(pecial meaning for the ne).15 F .488 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(stack.)144 84 Q/F1 +10/Times-Bold@0 SF(pwd)108 100.8 Q F0([)2.5 E F1(\255LP)A F0(])A .845 +(Print the absolute pathname of the current w)144 112.8 R .845 +(orking directory)-.1 F 5.844(.T)-.65 G .844 +(he pathname printed contains no)-5.844 F .181(symbolic links if the)144 +124.8 R F12.681 E F0 .181(option is supplied or the)2.681 F F1 +.181(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1 +(set)2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264 +(enabled. If)144 136.8 R(the)3.264 E F13.264 E F0 .763 +(option is used, the pathname printed may contain symbolic links.)3.264 +F .763(The return)5.763 F .405(status is 0 unless an error occurs while\ + reading the name of the current directory or an in)144 148.8 R -.25(va) +-.4 G .405(lid op-).25 F(tion is supplied.)144 160.8 Q F1 -.18(re)108 +177.6 S(ad).18 E F0([)3.817 E F1(\255ers)A F0 3.817(][)C F1-3.817 +E/F2 10/Times-Italic@0 SF(aname)3.817 E F0 3.817(][)C F1-3.817 E +F2(delim)3.817 E F0 3.817(][)C F1-3.817 E F2(te)3.817 E(xt)-.2 E +F0 3.817(][)C F1-3.817 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816 +(][)C F1-3.816 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1 +-3.816 E F2(pr)3.816 E(ompt)-.45 E F0 3.816(][)C F1-3.816 E +F2(timeout)3.816 E F0 3.816(][)C F1-3.816 E F2(fd)3.816 E F0(])A +([)108 189.6 Q F2(name)A F0(...])2.5 E .516(One line is read from the s\ +tandard input, or from the \214le descriptor)144 201.6 R F2(fd)3.016 E +F0 .516(supplied as an ar)3.016 F .517(gument to)-.18 F(the)144 213.6 Q +F12.936 E F0 .436(option, split into w)2.936 F .435 +(ords as described abo)-.1 F .735 -.15(ve u)-.15 H(nder).15 E F1 -.75 +(Wo)2.935 G .435(rd Splitting).75 F F0 2.935(,a)C .435(nd the \214rst w) +-2.935 F .435(ord is as-)-.1 F .375(signed to the \214rst)144 225.6 R F2 +(name)3.235 E F0 2.876(,t).18 G .376(he second w)-2.876 F .376 +(ord to the second)-.1 F F2(name)3.236 E F0 2.876(,a).18 G .376 +(nd so on.)-2.876 F .376(If there are more w)5.376 F(ords)-.1 E .237 +(than names, the remaining w)144 237.6 R .237(ords and their interv)-.1 +F .237(ening delimiters are assigned to the last)-.15 F F2(name)3.096 E +F0 5.236(.I).18 G(f)-5.236 E .874(there are fe)144 249.6 R .874(wer w) +-.25 F .875(ords read from the input stream than names, the remaining n\ +ames are assigned)-.1 F .518(empty v)144 261.6 R 3.018(alues. The)-.25 F +.518(characters in)3.018 F/F3 9/Times-Bold@0 SF(IFS)3.018 E F0 .518 +(are used to split the line into w)2.768 F .517 +(ords using the same rules the)-.1 F .026(shell uses for e)144 273.6 R +.026(xpansion \(described abo)-.15 F .326 -.15(ve u)-.15 H(nder).15 E F1 +-.75(Wo)2.526 G .026(rd Splitting).75 F F0 2.526(\). The)B .026 +(backslash character \()2.526 F F1(\\)A F0 2.527(\)m)C(ay)-2.527 E .489 +(be used to remo)144 285.6 R .788 -.15(ve a)-.15 H .788 -.15(ny s).15 H +.488(pecial meaning for the ne).15 F .488 (xt character read and for line continuation.)-.15 F(Op-)5.488 E -(tions, if supplied, ha)144 144 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F3144 156 Q F1(aname)2.5 E F0 1.025(The w) -180 168 R 1.026(ords are assigned to sequential indices of the array v) --.1 F(ariable)-.25 E F1(aname)3.856 E F0 3.526(,s).18 G 1.026 -(tarting at 0.)-3.526 F F1(aname)180.33 180 Q F0(is unset before an)2.68 -E 2.5(yn)-.15 G .5 -.25(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E -F1(name)2.5 E F0(ar)2.5 E(guments are ignored.)-.18 E F3144 192 Q -F1(delim)2.5 E F0 .281(The \214rst character of)180 204 R F1(delim)2.781 -E F0 .281(is used to terminate the input line, rather than ne)2.781 F -2.78(wline. If)-.25 F F1(de-)2.78 E(lim)180 216 Q F0 -(is the empty string,)2.5 E F3 -.18(re)2.5 G(ad).18 E F0 -(will terminate a line when it reads a NUL character)2.5 E(.)-.55 E F3 -144 228 Q F0 .372 -(If the standard input is coming from a terminal,)180 228 R F3 -.18(re) -2.873 G(adline).18 E F0(\(see)2.873 E F2(READLINE)2.873 E F0(abo)2.623 E --.15(ve)-.15 G 2.873(\)i).15 G 2.873(su)-2.873 G(sed)-2.873 E .218 -(to obtain the line.)180 240 R .218(Readline uses the current \(or def) -5.218 F .218(ault, if line editing w)-.1 F .218(as not pre)-.1 F -(viously)-.25 E(acti)180 252 Q -.15(ve)-.25 G 2.5(\)e).15 G -(diting settings, b)-2.5 E(ut uses Readline')-.2 E 2.5(sd)-.55 G(ef)-2.5 -E(ault \214lename completion.)-.1 E F3144 264 Q F1(te)2.5 E(xt)-.2 -E F0(If)180 264 Q F3 -.18(re)2.715 G(adline).18 E F0 .216 -(is being used to read the line,)2.715 F F1(te)2.716 E(xt)-.2 E F0 .216 +(tions, if supplied, ha)144 297.6 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 309.6 Q F2(aname)2.5 E F0 1.025 +(The w)180 321.6 R 1.026 +(ords are assigned to sequential indices of the array v)-.1 F(ariable) +-.25 E F2(aname)3.856 E F0 3.526(,s).18 G 1.026(tarting at 0.)-3.526 F +F2(aname)180.33 333.6 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 +-.25(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F2(name)2.5 E F0 +(ar)2.5 E(guments are ignored.)-.18 E F1144 345.6 Q F2(delim)2.5 E +F0 .281(The \214rst character of)180 357.6 R F2(delim)2.781 E F0 .281 +(is used to terminate the input line, rather than ne)2.781 F 2.78 +(wline. If)-.25 F F2(de-)2.78 E(lim)180 369.6 Q F0(is the empty string,) +2.5 E F1 -.18(re)2.5 G(ad).18 E F0 +(will terminate a line when it reads a NUL character)2.5 E(.)-.55 E F1 +144 381.6 Q F0 .372 +(If the standard input is coming from a terminal,)180 381.6 R F1 -.18 +(re)2.873 G(adline).18 E F0(\(see)2.873 E F3(READLINE)2.873 E F0(abo) +2.623 E -.15(ve)-.15 G 2.873(\)i).15 G 2.873(su)-2.873 G(sed)-2.873 E +.218(to obtain the line.)180 393.6 R .218 +(Readline uses the current \(or def)5.218 F .218 +(ault, if line editing w)-.1 F .218(as not pre)-.1 F(viously)-.25 E +(acti)180 405.6 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings, b)-2.5 E +(ut uses Readline')-.2 E 2.5(sd)-.55 G(ef)-2.5 E +(ault \214lename completion.)-.1 E F1144 417.6 Q F2(te)2.5 E(xt) +-.2 E F0(If)180 417.6 Q F1 -.18(re)2.715 G(adline).18 E F0 .216 +(is being used to read the line,)2.715 F F2(te)2.716 E(xt)-.2 E F0 .216 (is placed into the editing b)2.716 F(uf)-.2 E .216(fer before edit-) --.25 F(ing be)180 276 Q(gins.)-.15 E F3144 288 Q F1(nc)2.5 E(har) --.15 E(s)-.1 E F3 -.18(re)180 300 S(ad).18 E F0 .323 -(returns after reading)2.823 F F1(nc)2.823 E(har)-.15 E(s)-.1 E F0 .323 +-.25 F(ing be)180 429.6 Q(gins.)-.15 E F1144 441.6 Q F2(nc)2.5 E +(har)-.15 E(s)-.1 E F1 -.18(re)180 453.6 S(ad).18 E F0 .323 +(returns after reading)2.823 F F2(nc)2.823 E(har)-.15 E(s)-.1 E F0 .323 (characters rather than w)2.823 F .323 -(aiting for a complete line of in-)-.1 F(put, b)180 312 Q -(ut honors a delimiter if fe)-.2 E(wer than)-.25 E F1(nc)2.5 E(har)-.15 -E(s)-.1 E F0(characters are read before the delimiter)2.5 E(.)-.55 E F3 -144 324 Q F1(nc)2.5 E(har)-.15 E(s)-.1 E F3 -.18(re)180 336 S(ad) -.18 E F0 1.269(returns after reading e)3.769 F(xactly)-.15 E F1(nc)3.769 -E(har)-.15 E(s)-.1 E F0 1.269(characters rather than w)3.769 F 1.27 -(aiting for a complete)-.1 F .275 -(line of input, unless EOF is encountered or)180 348 R F3 -.18(re)2.775 -G(ad).18 E F0 .274(times out.)2.774 F .274(Delimiter characters encoun-) -5.274 F 1.002 -(tered in the input are not treated specially and do not cause)180 360 R -F3 -.18(re)3.503 G(ad).18 E F0 1.003(to return until)3.503 F F1(nc)3.503 -E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 372 R .608 -(The result is not split on the characters in)5.609 F F3(IFS)3.108 E F0 -3.108(;t)C .608(he intent is that the)-3.108 F -.25(va)180 384 S .669 +(aiting for a complete line of in-)-.1 F(put, b)180 465.6 Q +(ut honors a delimiter if fe)-.2 E(wer than)-.25 E F2(nc)2.5 E(har)-.15 +E(s)-.1 E F0(characters are read before the delimiter)2.5 E(.)-.55 E F1 +144 477.6 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 489.6 S +(ad).18 E F0 1.269(returns after reading e)3.769 F(xactly)-.15 E F2(nc) +3.769 E(har)-.15 E(s)-.1 E F0 1.269(characters rather than w)3.769 F +1.27(aiting for a complete)-.1 F .275 +(line of input, unless EOF is encountered or)180 501.6 R F1 -.18(re) +2.775 G(ad).18 E F0 .274(times out.)2.774 F .274 +(Delimiter characters encoun-)5.274 F 1.002 +(tered in the input are not treated specially and do not cause)180 513.6 +R F1 -.18(re)3.503 G(ad).18 E F0 1.003(to return until)3.503 F F2(nc) +3.503 E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 525.6 R .608 +(The result is not split on the characters in)5.609 F F1(IFS)3.108 E F0 +3.108(;t)C .608(he intent is that the)-3.108 F -.25(va)180 537.6 S .669 (riable is assigned e).25 F .669 (xactly the characters read \(with the e)-.15 F .67 -(xception of backslash; see the)-.15 F F3180 396 Q F0(option belo) -2.5 E(w\).)-.25 E F3144 408 Q F1(pr)2.5 E(ompt)-.45 E F0(Display) -180 420 Q F1(pr)3.661 E(ompt)-.45 E F0 1.161(on standard error)3.661 F -3.661(,w)-.4 G 1.161(ithout a trailing ne)-3.661 F 1.161 -(wline, before attempting to read)-.25 F(an)180 432 Q 2.5(yi)-.15 G 2.5 -(nput. The)-2.5 F -(prompt is displayed only if input is coming from a terminal.)2.5 E F3 -144 444 Q F0 .543(Backslash does not act as an escape character) -180 444 R 5.543(.T)-.55 G .544(he backslash is considered to be part of) --5.543 F .493(the line.)180 456 R .493(In particular)5.493 F 2.993(,ab) --.4 G(ackslash-ne)-2.993 E .493 -(wline pair may not then be used as a line continua-)-.25 F(tion.)180 -468 Q F3144 480 Q F0(Silent mode.)180 480 Q -(If input is coming from a terminal, characters are not echoed.)5 E F3 -144 492 Q F1(timeout)2.5 E F0(Cause)180 504 Q F3 -.18(re)2.928 G -(ad).18 E F0 .428(to time out and return f)2.928 F .428 +(xception of backslash; see the)-.15 F F1180 549.6 Q F0 +(option belo)2.5 E(w\).)-.25 E F1144 561.6 Q F2(pr)2.5 E(ompt)-.45 +E F0(Display)180 573.6 Q F2(pr)3.661 E(ompt)-.45 E F0 1.161 +(on standard error)3.661 F 3.661(,w)-.4 G 1.161(ithout a trailing ne) +-3.661 F 1.161(wline, before attempting to read)-.25 F(an)180 585.6 Q +2.5(yi)-.15 G 2.5(nput. The)-2.5 F +(prompt is displayed only if input is coming from a terminal.)2.5 E F1 +144 597.6 Q F0 .543(Backslash does not act as an escape character) +180 597.6 R 5.543(.T)-.55 G .544 +(he backslash is considered to be part of)-5.543 F .493(the line.)180 +609.6 R .493(In particular)5.493 F 2.993(,ab)-.4 G(ackslash-ne)-2.993 E +.493(wline pair may not then be used as a line continua-)-.25 F(tion.) +180 621.6 Q F1144 633.6 Q F0(Silent mode.)180 633.6 Q +(If input is coming from a terminal, characters are not echoed.)5 E F1 +144 645.6 Q F2(timeout)2.5 E F0(Cause)180 657.6 Q F1 -.18(re)2.928 +G(ad).18 E F0 .428(to time out and return f)2.928 F .428 (ailure if a complete line of input \(or a speci\214ed num-)-.1 F .561 -(ber of characters\) is not read within)180 516 R F1(timeout)3.061 E F0 -(seconds.)3.061 E F1(timeout)5.561 E F0 .56(may be a decimal number) -3.061 F(with a fractional portion follo)180 528 Q +(ber of characters\) is not read within)180 669.6 R F2(timeout)3.061 E +F0(seconds.)3.061 E F2(timeout)5.561 E F0 .56(may be a decimal number) +3.061 F(with a fractional portion follo)180 681.6 Q (wing the decimal point.)-.25 E(This option is only ef)5 E(fecti)-.25 E -.3 -.15(ve i)-.25 H(f).15 E F3 -.18(re)2.5 G(ad).18 E F0 .506(is readin\ +.3 -.15(ve i)-.25 H(f).15 E F1 -.18(re)2.5 G(ad).18 E F0 .506(is readin\ g input from a terminal, pipe, or other special \214le; it has no ef)180 -540 R .505(fect when reading)-.25 F .589(from re)180 552 R .589 -(gular \214les.)-.15 F(If)5.589 E F3 -.18(re)3.089 G(ad).18 E F0 .589 -(times out,)3.089 F F3 -.18(re)3.089 G(ad).18 E F0(sa)3.089 E -.15(ve) +693.6 R .505(fect when reading)-.25 F .589(from re)180 705.6 R .589 +(gular \214les.)-.15 F(If)5.589 E F1 -.18(re)3.089 G(ad).18 E F0 .589 +(times out,)3.089 F F1 -.18(re)3.089 G(ad).18 E F0(sa)3.089 E -.15(ve) -.2 G 3.089(sa).15 G .889 -.15(ny p)-3.089 H .59 -(artial input read into the speci\214ed).15 F -.25(va)180 564 S(riable) -.25 E F1(name)2.77 E F0 5.27(.I)C(f)-5.27 E F1(timeout)2.77 E F0 .27 -(is 0,)2.77 F F3 -.18(re)2.77 G(ad).18 E F0 .27(returns immediately)2.77 -F 2.77(,w)-.65 G .27(ithout trying to read an)-2.77 F 2.77(yd)-.15 G -(ata.)-2.77 E .227(The e)180 576 R .228(xit status is 0 if input is a) --.15 F -.25(va)-.2 G .228(ilable on the speci\214ed \214le descriptor) -.25 F 2.728(,o)-.4 G 2.728(rt)-2.728 G .228(he read will re-)-2.728 F -1.225(turn EOF)180 588 R 3.725(,n)-.8 G 1.225(on-zero otherwise.)-3.725 -F 1.225(The e)6.225 F 1.225 -(xit status is greater than 128 if the timeout is e)-.15 F(x-)-.15 E -(ceeded.)180 600 Q F3144 612 Q F1(fd)2.5 E F0 -(Read input from \214le descriptor)180 612 Q F1(fd)2.5 E F0(.)A .522 -(If no)144 628.8 R F1(names)3.382 E F0 .522 -(are supplied, the line read, without the ending delimiter b)3.292 F -.522(ut otherwise unmodi\214ed, is)-.2 F 1.187(assigned to the v)144 -640.8 R(ariable)-.25 E F2(REPL)3.686 E(Y)-.828 E/F4 9/Times-Roman@0 SF -(.)A F0 1.186(The e)5.686 F 1.186 -(xit status is zero, unless end-of-\214le is encountered,)-.15 F F3 -.18 -(re)3.686 G(ad).18 E F0 .96 -(times out \(in which case the status is greater than 128\), a v)144 -652.8 R .961(ariable assignment error \(such as as-)-.25 F .707 -(signing to a readonly v)144 664.8 R .706(ariable\) occurs, or an in) --.25 F -.25(va)-.4 G .706(lid \214le descriptor is supplied as the ar) -.25 F .706(gument to)-.18 F F3144 676.8 Q F0(.)A F3 -.18(re)108 -693.6 S(adonly).18 E F0([)2.5 E F3(\255aAf)A F0 2.5(][)C F3-2.5 E -F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(wor)A(d)-.37 E F0 2.5(].)C(..]) --2.5 E .77(The gi)144 705.6 R -.15(ve)-.25 G(n).15 E F1(names)3.27 E F0 -.77(are mark)3.27 F .77(ed readonly; the v)-.1 F .77(alues of these)-.25 -F F1(names)3.63 E F0 .77(may not be changed by subse-)3.54 F 1.097 -(quent assignment.)144 717.6 R 1.097(If the)6.097 F F33.597 E F0 -1.097(option is supplied, the functions corresponding to the)3.597 F F1 -(names)3.596 E F0 1.096(are so)3.596 F(mark)144 729.6 Q 4.902(ed. The) --.1 F F34.902 E F0 2.403(option restricts the v)4.903 F 2.403 -(ariables to inde)-.25 F -.15(xe)-.15 G 4.903(da).15 G 2.403(rrays; the) --4.903 F F34.903 E F0 2.403(option restricts the)4.903 F -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(72)193.45 E 0 Cg EP +(artial input read into the speci\214ed).15 F -.25(va)180 717.6 S +(riable).25 E F2(name)2.77 E F0 5.27(.I)C(f)-5.27 E F2(timeout)2.77 E F0 +.27(is 0,)2.77 F F1 -.18(re)2.77 G(ad).18 E F0 .27(returns immediately) +2.77 F 2.77(,w)-.65 G .27(ithout trying to read an)-2.77 F 2.77(yd)-.15 +G(ata.)-2.77 E 1.041(The e)180 729.6 R 1.041 +(xit status is 0 if input is a)-.15 F -.25(va)-.2 G 1.041 +(ilable on the speci\214ed \214le descriptor).25 F 3.541(,o)-.4 G 3.542 +(rt)-3.541 G 1.042(he read will)-3.542 F(GNU Bash 5.2)72 768 Q +(2022 June 3)150.675 E(72)199.835 E 0 Cg EP %%Page: 73 73 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.25(va)144 84 S -.425(riables to associati).25 F .725 -.15(ve a)-.25 H 2.925(rrays. If) -.15 F .425(both options are supplied,)2.925 F/F1 10/Times-Bold@0 SF -2.925 E F0(tak)2.925 E .424(es precedence.)-.1 F .424(If no)5.424 -F/F2 10/Times-Italic@0 SF(name)3.284 E F0(ar)3.104 E(-)-.2 E 1.275 -(guments are gi)144 96 R -.15(ve)-.25 G 1.275(n, or if the).15 F F1 -3.775 E F0 1.275 -(option is supplied, a list of all readonly names is printed.)3.775 F -(The)6.275 E .559(other options may be used to restrict the output to a\ - subset of the set of readonly names.)144 108 R(The)5.559 E F1 -3.058 E F0 .2(option causes output to be displayed in a format that may\ - be reused as input.)144 120 R .201(If a v)5.201 F .201(ariable name is) --.25 F(follo)144 132 Q .134(wed by =)-.25 F F2(wor)A(d)-.37 E F0 2.634 -(,t)C .133(he v)-2.634 F .133(alue of the v)-.25 F .133 -(ariable is set to)-.25 F F2(wor)2.633 E(d)-.37 E F0 5.133(.T)C .133 -(he return status is 0 unless an in)-5.133 F -.25(va)-.4 G(lid).25 E .26 -(option is encountered, one of the)144 144 R F2(names)3.12 E F0 .26 -(is not a v)3.03 F .26(alid shell v)-.25 F .26(ariable name, or)-.25 F -F12.76 E F0 .26(is supplied with a)2.76 F F2(name)144.36 156 Q F0 -(that is not a function.)2.68 E F1 -.18(re)108 172.8 S(tur).18 E(n)-.15 -E F0([)2.5 E F2(n)A F0(])A .021(Causes a function to stop e)144 184.8 R +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .707(return EOF) +180 84 R 3.207(,n)-.8 G .707(on-zero otherwise.)-3.207 F .707(The e) +5.707 F .707(xit status is greater than 128 if the timeout is e)-.15 F +(x-)-.15 E(ceeded.)180 96 Q/F1 10/Times-Bold@0 SF144 108 Q/F2 10 +/Times-Italic@0 SF(fd)2.5 E F0(Read input from \214le descriptor)180 108 +Q F2(fd)2.5 E F0(.)A .522(If no)144 124.8 R F2(names)3.382 E F0 .522 +(are supplied, the line read, without the ending delimiter b)3.292 F +.522(ut otherwise unmodi\214ed, is)-.2 F 1.187(assigned to the v)144 +136.8 R(ariable)-.25 E/F3 9/Times-Bold@0 SF(REPL)3.686 E(Y)-.828 E/F4 9 +/Times-Roman@0 SF(.)A F0 1.186(The e)5.686 F 1.186 +(xit status is zero, unless end-of-\214le is encountered,)-.15 F F1 -.18 +(re)3.686 G(ad).18 E F0 .96 +(times out \(in which case the status is greater than 128\), a v)144 +148.8 R .961(ariable assignment error \(such as as-)-.25 F .707 +(signing to a readonly v)144 160.8 R .706(ariable\) occurs, or an in) +-.25 F -.25(va)-.4 G .706(lid \214le descriptor is supplied as the ar) +.25 F .706(gument to)-.18 F F1144 172.8 Q F0(.)A F1 -.18(re)108 +189.6 S(adonly).18 E F0([)2.5 E F1(\255aAf)A F0 2.5(][)C F1-2.5 E +F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(wor)A(d)-.37 E F0 2.5(].)C(..]) +-2.5 E .77(The gi)144 201.6 R -.15(ve)-.25 G(n).15 E F2(names)3.27 E F0 +.77(are mark)3.27 F .77(ed readonly; the v)-.1 F .77(alues of these)-.25 +F F2(names)3.63 E F0 .77(may not be changed by subse-)3.54 F 1.097 +(quent assignment.)144 213.6 R 1.097(If the)6.097 F F13.597 E F0 +1.097(option is supplied, the functions corresponding to the)3.597 F F2 +(names)3.596 E F0 1.096(are so)3.596 F(mark)144 225.6 Q 3.334(ed. The) +-.1 F F13.334 E F0 .834(option restricts the v)3.334 F .834 +(ariables to inde)-.25 F -.15(xe)-.15 G 3.334(da).15 G .834(rrays; the) +-3.334 F F13.334 E F0 .834(option restricts the v)3.334 F(ari-) +-.25 E .777(ables to associati)144 237.6 R 1.077 -.15(ve a)-.25 H 3.277 +(rrays. If).15 F .777(both options are supplied,)3.277 F F13.277 E +F0(tak)3.277 E .776(es precedence.)-.1 F .776(If no)5.776 F F2(name) +3.636 E F0(ar)3.456 E(gu-)-.18 E .521(ments are gi)144 249.6 R -.15(ve) +-.25 G .521(n, or if the).15 F F13.021 E F0 .521 +(option is supplied, a list of all readonly names is printed.)3.021 F +.522(The other)5.521 F .295(options may be used to restrict the output \ +to a subset of the set of readonly names.)144 261.6 R(The)5.295 E F1 +2.795 E F0(option)2.795 E .786 +(causes output to be displayed in a format that may be reused as input.) +144 273.6 R .786(If a v)5.786 F .786(ariable name is fol-)-.25 F(lo)144 +285.6 Q .718(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v) +-3.218 F .718(alue of the v)-.25 F .718(ariable is set to)-.25 F F2(wor) +3.218 E(d)-.37 E F0 5.718(.T)C .718(he return status is 0 unless an in) +-5.718 F -.25(va)-.4 G(lid).25 E .26(option is encountered, one of the) +144 297.6 R F2(names)3.12 E F0 .26(is not a v)3.03 F .26(alid shell v) +-.25 F .26(ariable name, or)-.25 F F12.76 E F0 .26 +(is supplied with a)2.76 F F2(name)144.36 309.6 Q F0 +(that is not a function.)2.68 E F1 -.18(re)108 326.4 S(tur).18 E(n)-.15 +E F0([)2.5 E F2(n)A F0(])A .021(Causes a function to stop e)144 338.4 R -.15(xe)-.15 G .021(cuting and return the v).15 F .021 (alue speci\214ed by)-.25 F F2(n)2.88 E F0 .02(to its caller)2.76 F 5.02 (.I)-.55 G(f)-5.02 E F2(n)2.88 E F0 .02(is omitted,)2.76 F .596 -(the return status is that of the last command e)144 196.8 R -.15(xe) +(the return status is that of the last command e)144 350.4 R -.15(xe) -.15 G .597(cuted in the function body).15 F 5.597(.I)-.65 G(f)-5.597 E F1 -.18(re)3.097 G(tur).18 E(n)-.15 E F0 .597(is e)3.097 F -.15(xe)-.15 -G(cuted).15 E .267(by a trap handler)144 208.8 R 2.767(,t)-.4 G .267 +G(cuted).15 E .267(by a trap handler)144 362.4 R 2.767(,t)-.4 G .267 (he last command used to determine the status is the last command e) -2.767 F -.15(xe)-.15 G .267(cuted be-).15 F .02(fore the trap handler) -144 220.8 R 5.02(.I)-.55 G(f)-5.02 E F1 -.18(re)2.52 G(tur).18 E(n)-.15 +144 374.4 R 5.02(.I)-.55 G(f)-5.02 E F1 -.18(re)2.52 G(tur).18 E(n)-.15 E F0 .02(is e)2.52 F -.15(xe)-.15 G .02(cuted during a).15 F F1(DEB)2.52 E(UG)-.1 E F0 .02(trap, the last command used to deter)2.52 F(-)-.2 E -.886(mine the status is the last command e)144 232.8 R -.15(xe)-.15 G +.886(mine the status is the last command e)144 386.4 R -.15(xe)-.15 G .886(cuted by the trap handler before).15 F F1 -.18(re)3.385 G(tur).18 E (n)-.15 E F0 -.1(wa)3.385 G 3.385(si).1 G -1.9 -.4(nv o)-3.385 H -.1(ke) -.4 G 3.385(d. If).1 F F1 -.18(re)144 244.8 S(tur).18 E(n)-.15 E F0 .627 +.4 G 3.385(d. If).1 F F1 -.18(re)144 398.4 S(tur).18 E(n)-.15 E F0 .627 (is used outside a function, b)3.127 F .628(ut during e)-.2 F -.15(xe) -.15 G .628(cution of a script by the).15 F F1(.)3.128 E F0(\()5.628 E F1(sour)A(ce)-.18 E F0 3.128(\)c)C .628(ommand, it)-3.128 F .589 -(causes the shell to stop e)144 256.8 R -.15(xe)-.15 G .589 +(causes the shell to stop e)144 410.4 R -.15(xe)-.15 G .589 (cuting that script and return either).15 F F2(n)3.448 E F0 .588 (or the e)3.328 F .588(xit status of the last com-)-.15 F .325(mand e) -144 268.8 R -.15(xe)-.15 G .325(cuted within the script as the e).15 F +144 422.4 R -.15(xe)-.15 G .325(cuted within the script as the e).15 F .326(xit status of the script.)-.15 F(If)5.326 E F2(n)2.826 E F0 .326 (is supplied, the return v)2.826 F .326(alue is)-.25 F .445 -(its least signi\214cant 8 bits.)144 280.8 R .444 +(its least signi\214cant 8 bits.)144 434.4 R .444 (The return status is non-zero if)5.445 F F1 -.18(re)2.944 G(tur).18 E (n)-.15 E F0 .444(is supplied a non-numeric ar)2.944 F(gu-)-.18 E .381 -(ment, or is used outside a function and not during e)144 292.8 R -.15 +(ment, or is used outside a function and not during e)144 446.4 R -.15 (xe)-.15 G .381(cution of a script by).15 F F1(.)2.881 E F0(or)3.714 E F1(sour)2.881 E(ce)-.18 E F0 5.381(.A)C .681 -.15(ny c)-5.381 H(om-).15 -E .75(mand associated with the)144 304.8 R F1(RETURN)3.249 E F0 .749 +E .75(mand associated with the)144 458.4 R F1(RETURN)3.249 E F0 .749 (trap is e)3.249 F -.15(xe)-.15 G .749(cuted before e).15 F -.15(xe)-.15 -G .749(cution resumes after the function).15 F(or script.)144 316.8 Q F1 -(set)108 333.6 Q F0([)2.5 E F1(\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1 +G .749(cution resumes after the function).15 F(or script.)144 470.4 Q F1 +(set)108 487.2 Q F0([)2.5 E F1(\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1 -2.5 E F2(option\255name)2.5 E F0 2.5(][)C F1-2.5 E F0 2.5 (][)C F1-2.5 E F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E F1 -(set)108 345.6 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1(+o) +(set)108 499.2 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1(+o) -2.5 E F2(option\255name)2.5 E F0 2.5(][)C F1-2.5 E F0 2.5(][)C F1 -2.5 E F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E -.4(Wi)144 -357.6 S .573(thout options, display the name and v).4 F .573 +511.2 S .573(thout options, display the name and v).4 F .573 (alue of each shell v)-.25 F .574 (ariable in a format that can be reused)-.25 F .113 -(as input for setting or resetting the currently-set v)144 369.6 R 2.613 +(as input for setting or resetting the currently-set v)144 523.2 R 2.613 (ariables. Read-only)-.25 F -.25(va)2.613 G .113 -(riables cannot be reset.).25 F(In)5.112 E F2 1.032(posix mode)144 381.6 +(riables cannot be reset.).25 F(In)5.112 E F2 1.032(posix mode)144 535.2 R F0 3.532(,o)C 1.032(nly shell v)-3.532 F 1.032(ariables are listed.) -.25 F 1.032(The output is sorted according to the current locale.)6.032 -F .581(When options are speci\214ed, the)144 393.6 R 3.081(ys)-.15 G +F .581(When options are speci\214ed, the)144 547.2 R 3.081(ys)-.15 G .581(et or unset shell attrib)-3.081 F 3.081(utes. An)-.2 F 3.08(ya)-.15 G -.18(rg)-3.08 G .58(uments remaining after op-).18 F .16 -(tion processing are treated as v)144 405.6 R .161 +(tion processing are treated as v)144 559.2 R .161 (alues for the positional parameters and are assigned, in order)-.25 F -2.661(,t)-.4 G(o)-2.661 E F1($1)2.661 E F0(,)A F1($2)144 417.6 Q F0(,)A +2.661(,t)-.4 G(o)-2.661 E F1($1)2.661 E F0(,)A F1($2)144 571.2 Q F0(,)A F1 2.5(... $)2.5 F F2(n)A F0 5(.O)C(ptions, if speci\214ed, ha)-5 E .3 --.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 429.6 Q -F0 1.378(Each v)184 429.6 R 1.377 +-.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 583.2 Q +F0 1.378(Each v)184 583.2 R 1.377 (ariable or function that is created or modi\214ed is gi)-.25 F -.15(ve) -.25 G 3.877(nt).15 G 1.377(he e)-3.877 F 1.377(xport attrib)-.15 F -1.377(ute and)-.2 F(mark)184 441.6 Q(ed for e)-.1 E(xport to the en)-.15 -E(vironment of subsequent commands.)-.4 E F1144 453.6 Q F0 .131 -(Report the status of terminated background jobs immediately)184 453.6 R +1.377(ute and)-.2 F(mark)184 595.2 Q(ed for e)-.1 E(xport to the en)-.15 +E(vironment of subsequent commands.)-.4 E F1144 607.2 Q F0 .131 +(Report the status of terminated background jobs immediately)184 607.2 R 2.632(,r)-.65 G .132(ather than before the ne)-2.632 F(xt)-.15 E -(primary prompt.)184 465.6 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o) --.25 H(nly when job control is enabled.).15 E F1144 477.6 Q F0 -.088(Exit immediately if a)184 477.6 R F2(pipeline)2.588 E F0 .087 +(primary prompt.)184 619.2 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o) +-.25 H(nly when job control is enabled.).15 E F1144 631.2 Q F0 +.088(Exit immediately if a)184 631.2 R F2(pipeline)2.588 E F0 .087 (\(which may consist of a single)2.588 F F2 .087(simple command)2.587 F -F0 .087(\), a)B F2(list)2.587 E F0 2.587(,o)C(r)-2.587 E(a)184 489.6 Q -F2 1.52(compound command)4.02 F F0(\(see)4.021 E/F3 9/Times-Bold@0 SF -1.521(SHELL GRAMMAR)4.021 F F0(abo)3.771 E -.15(ve)-.15 G 1.521(\), e) -.15 F 1.521(xits with a non-zero status.)-.15 F .08 -(The shell does not e)184 501.6 R .079(xit if the command that f)-.15 F -.079(ails is part of the command list immediately)-.1 F(follo)184 513.6 -Q 1.654(wing a)-.25 F F1(while)4.154 E F0(or)4.154 E F1(until)4.154 E F0 +F0 .087(\), a)B F2(list)2.587 E F0 2.587(,o)C(r)-2.587 E(a)184 643.2 Q +F2 1.52(compound command)4.02 F F0(\(see)4.021 E F3 1.521(SHELL GRAMMAR) +4.021 F F0(abo)3.771 E -.15(ve)-.15 G 1.521(\), e).15 F 1.521 +(xits with a non-zero status.)-.15 F .08(The shell does not e)184 655.2 +R .079(xit if the command that f)-.15 F .079 +(ails is part of the command list immediately)-.1 F(follo)184 667.2 Q +1.654(wing a)-.25 F F1(while)4.154 E F0(or)4.154 E F1(until)4.154 E F0 -.1(ke)4.154 G(yw)-.05 E 1.655(ord, part of the test follo)-.1 F 1.655 (wing the)-.25 F F1(if)4.155 E F0(or)4.155 E F1(elif)4.155 E F0(reserv) -4.155 E(ed)-.15 E -.1(wo)184 525.6 S .582(rds, part of an).1 F 3.082(yc) +4.155 E(ed)-.15 E -.1(wo)184 679.2 S .582(rds, part of an).1 F 3.082(yc) -.15 G .582(ommand e)-3.082 F -.15(xe)-.15 G .581(cuted in a).15 F F1 (&&)3.081 E F0(or)3.081 E F1(||)3.081 E F0 .581(list e)3.081 F .581 -(xcept the command follo)-.15 F(wing)-.25 E .917(the \214nal)184 537.6 R +(xcept the command follo)-.15 F(wing)-.25 E .917(the \214nal)184 691.2 R F1(&&)3.417 E F0(or)3.417 E F1(||)3.417 E F0 3.417(,a)C 1.217 -.15(ny c) -3.417 H .918(ommand in a pipeline b).15 F .918 (ut the last, or if the command')-.2 F 3.418(sr)-.55 G(eturn)-3.418 E --.25(va)184 549.6 S .661(lue is being in).25 F -.15(ve)-.4 G .661 +-.25(va)184 703.2 S .661(lue is being in).25 F -.15(ve)-.4 G .661 (rted with).15 F F1(!)3.161 E F0 5.661(.I)C 3.161(fac)-5.661 G .66 (ompound command other than a subshell returns a)-3.161 F 1.112 -(non-zero status because a command f)184 561.6 R 1.112(ailed while)-.1 F +(non-zero status because a command f)184 715.2 R 1.112(ailed while)-.1 F F13.612 E F0 -.1(wa)3.612 G 3.612(sb).1 G 1.113 -(eing ignored, the shell does)-3.612 F .178(not e)184 573.6 R 2.678 +(eing ignored, the shell does)-3.612 F .178(not e)184 727.2 R 2.678 (xit. A)-.15 F .178(trap on)2.678 F F1(ERR)2.678 E F0 2.678(,i)C 2.678 (fs)-2.678 G .178(et, is e)-2.678 F -.15(xe)-.15 G .178 (cuted before the shell e).15 F 2.677(xits. This)-.15 F .177 -(option applies to)2.677 F .617(the shell en)184 585.6 R .617 -(vironment and each subshell en)-.4 F .617(vironment separately \(see) --.4 F F3 .618(COMMAND EXE-)3.118 F .643(CUTION ENVIR)184 597.6 R(ONMENT) --.27 E F0(abo)2.893 E -.15(ve)-.15 G .643 -(\), and may cause subshells to e).15 F .643(xit before e)-.15 F -.15 -(xe)-.15 G .642(cuting all).15 F(the commands in the subshell.)184 609.6 -Q .998(If a compound command or shell function e)184 627.6 R -.15(xe) --.15 G .999(cutes in a conte).15 F .999(xt where)-.15 F F13.499 E -F0 .999(is being ig-)3.499 F .089(nored, none of the commands e)184 -639.6 R -.15(xe)-.15 G .089 -(cuted within the compound command or function body).15 F .502 -(will be af)184 651.6 R .502(fected by the)-.25 F F13.002 E F0 -.502(setting, e)3.002 F -.15(ve)-.25 G 3.002(ni).15 G(f)-3.002 E F1 -3.002 E F0 .502(is set and a command returns a f)3.002 F .503 -(ailure sta-)-.1 F 4.184(tus. If)184 663.6 R 4.184(ac)4.184 G 1.684 -(ompound command or shell function sets)-4.184 F F14.183 E F0 -1.683(while e)4.183 F -.15(xe)-.15 G 1.683(cuting in a conte).15 F(xt) --.15 E(where)184 675.6 Q F13.153 E F0 .653 -(is ignored, that setting will not ha)3.153 F .954 -.15(ve a)-.2 H .954 --.15(ny e).15 H -.25(ff).15 G .654(ect until the compound command).25 F -(or the command containing the function call completes.)184 687.6 Q F1 -144 699.6 Q F0(Disable pathname e)184 699.6 Q(xpansion.)-.15 E F1 -144 711.6 Q F0 .988(Remember the location of commands as the)184 -711.6 R 3.488(ya)-.15 G .988(re look)-3.488 F .988(ed up for e)-.1 F --.15(xe)-.15 G 3.488(cution. This).15 F .987(is en-)3.487 F -(abled by def)184 723.6 Q(ault.)-.1 E(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(73)193.45 E 0 Cg EP +(option applies to)2.677 F(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E +(73)199.835 E 0 Cg EP %%Page: 74 74 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF144 84 Q F0 .513(All ar)184 84 R .514 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .617(the shell en) +184 84 R .617(vironment and each subshell en)-.4 F .617 +(vironment separately \(see)-.4 F/F1 9/Times-Bold@0 SF .618 +(COMMAND EXE-)3.118 F .643(CUTION ENVIR)184 96 R(ONMENT)-.27 E F0(abo) +2.893 E -.15(ve)-.15 G .643(\), and may cause subshells to e).15 F .643 +(xit before e)-.15 F -.15(xe)-.15 G .642(cuting all).15 F +(the commands in the subshell.)184 108 Q .998 +(If a compound command or shell function e)184 126 R -.15(xe)-.15 G .999 +(cutes in a conte).15 F .999(xt where)-.15 F/F2 10/Times-Bold@0 SF +3.499 E F0 .999(is being ig-)3.499 F .089(nored, none of the commands e) +184 138 R -.15(xe)-.15 G .089 +(cuted within the compound command or function body).15 F .502 +(will be af)184 150 R .502(fected by the)-.25 F F23.002 E F0 .502 +(setting, e)3.002 F -.15(ve)-.25 G 3.002(ni).15 G(f)-3.002 E F2 +3.002 E F0 .502(is set and a command returns a f)3.002 F .503 +(ailure sta-)-.1 F 4.184(tus. If)184 162 R 4.184(ac)4.184 G 1.684 +(ompound command or shell function sets)-4.184 F F24.183 E F0 +1.683(while e)4.183 F -.15(xe)-.15 G 1.683(cuting in a conte).15 F(xt) +-.15 E(where)184 174 Q F23.153 E F0 .653 +(is ignored, that setting will not ha)3.153 F .954 -.15(ve a)-.2 H .954 +-.15(ny e).15 H -.25(ff).15 G .654(ect until the compound command).25 F +(or the command containing the function call completes.)184 186 Q F2 +144 198 Q F0(Disable pathname e)184 198 Q(xpansion.)-.15 E F2 +144 210 Q F0 .988(Remember the location of commands as the)184 210 +R 3.488(ya)-.15 G .988(re look)-3.488 F .988(ed up for e)-.1 F -.15(xe) +-.15 G 3.488(cution. This).15 F .987(is en-)3.487 F(abled by def)184 222 +Q(ault.)-.1 E F2144 234 Q F0 .513(All ar)184 234 R .514 (guments in the form of assignment statements are placed in the en)-.18 F .514(vironment for a)-.4 F -(command, not just those that precede the command name.)184 96 Q F1 -144 108 Q F0 .149(Monitor mode.)184 108 R .149 +(command, not just those that precede the command name.)184 246 Q F2 +144 258 Q F0 .149(Monitor mode.)184 258 R .149 (Job control is enabled.)5.149 F .148(This option is on by def)5.149 F .148(ault for interacti)-.1 F .448 -.15(ve s)-.25 H(hells).15 E .65 -(on systems that support it \(see)184 120 R/F2 9/Times-Bold@0 SF .651 -(JOB CONTR)3.151 F(OL)-.27 E F0(abo)2.901 E -.15(ve)-.15 G 3.151 -(\). All).15 F .651(processes run in a separate)3.151 F .679 -(process group.)184 132 R .678(When a background job completes, the she\ -ll prints a line containing its)5.679 F -.15(ex)184 144 S(it status.).15 -E F1144 156 Q F0 .652(Read commands b)184 156 R .652(ut do not e) --.2 F -.15(xe)-.15 G .652(cute them.).15 F .653 -(This may be used to check a shell script for)5.652 F(syntax errors.)184 -168 Q(This is ignored by interacti)5 E .3 -.15(ve s)-.25 H(hells.).15 E -F1144 180 Q/F3 10/Times-Italic@0 SF(option\255name)2.5 E F0(The) -184 192 Q F3(option\255name)2.5 E F0(can be one of the follo)2.5 E -(wing:)-.25 E F1(allexport)184 204 Q F0(Same as)224 216 Q F12.5 E -F0(.)A F1(braceexpand)184 228 Q F0(Same as)224 240 Q F12.5 E F0(.) -A F1(emacs)184 252 Q F0 .089 -(Use an emacs-style command line editing interf)224 252 R 2.589 +(on systems that support it \(see)184 270 R F1 .651(JOB CONTR)3.151 F +(OL)-.27 E F0(abo)2.901 E -.15(ve)-.15 G 3.151(\). All).15 F .651 +(processes run in a separate)3.151 F .679(process group.)184 282 R .678 +(When a background job completes, the shell prints a line containing it\ +s)5.679 F -.15(ex)184 294 S(it status.).15 E F2144 306 Q F0 .652 +(Read commands b)184 306 R .652(ut do not e)-.2 F -.15(xe)-.15 G .652 +(cute them.).15 F .653(This may be used to check a shell script for) +5.652 F(syntax errors.)184 318 Q(This is ignored by interacti)5 E .3 +-.15(ve s)-.25 H(hells.).15 E F2144 330 Q/F3 10/Times-Italic@0 SF +(option\255name)2.5 E F0(The)184 342 Q F3(option\255name)2.5 E F0 +(can be one of the follo)2.5 E(wing:)-.25 E F2(allexport)184 354 Q F0 +(Same as)224 366 Q F22.5 E F0(.)A F2(braceexpand)184 378 Q F0 +(Same as)224 390 Q F22.5 E F0(.)A F2(emacs)184 402 Q F0 .089 +(Use an emacs-style command line editing interf)224 402 R 2.589 (ace. This)-.1 F .089(is enabled by def)2.589 F(ault)-.1 E .95 -(when the shell is interacti)224 264 R -.15(ve)-.25 G 3.45(,u).15 G .95 -(nless the shell is started with the)-3.45 F F1(\255\255noediting)3.45 E -F0 2.5(option. This)224 276 R(also af)2.5 E(fects the editing interf) --.25 E(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1(err) -184 288 Q(exit)-.18 E F0(Same as)224 288 Q F12.5 E F0(.)A F1 -(errtrace)184 300 Q F0(Same as)224 300 Q F12.5 E F0(.)A F1 -(functrace)184 312 Q F0(Same as)224 324 Q F12.5 E F0(.)A F1 -(hashall)184 336 Q F0(Same as)224 336 Q F12.5 E F0(.)A F1 -(histexpand)184 348 Q F0(Same as)224 360 Q F12.5 E F0(.)A F1 -(history)184 372 Q F0 .587(Enable command history)224 372 R 3.087(,a) +(when the shell is interacti)224 414 R -.15(ve)-.25 G 3.45(,u).15 G .95 +(nless the shell is started with the)-3.45 F F2(\255\255noediting)3.45 E +F0 2.5(option. This)224 426 R(also af)2.5 E(fects the editing interf) +-.25 E(ace used for)-.1 E F2 -.18(re)2.5 G(ad \255e).18 E F0(.)A F2(err) +184 438 Q(exit)-.18 E F0(Same as)224 438 Q F22.5 E F0(.)A F2 +(errtrace)184 450 Q F0(Same as)224 450 Q F22.5 E F0(.)A F2 +(functrace)184 462 Q F0(Same as)224 474 Q F22.5 E F0(.)A F2 +(hashall)184 486 Q F0(Same as)224 486 Q F22.5 E F0(.)A F2 +(histexpand)184 498 Q F0(Same as)224 510 Q F22.5 E F0(.)A F2 +(history)184 522 Q F0 .587(Enable command history)224 522 R 3.087(,a) -.65 G 3.087(sd)-3.087 G .587(escribed abo)-3.087 F .887 -.15(ve u)-.15 -H(nder).15 E F2(HIST)3.087 E(OR)-.162 E(Y)-.315 E/F4 9/Times-Roman@0 SF -(.)A F0 .587(This option is)5.087 F(on by def)224 384 Q -(ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184 -396 Q(eeof)-.18 E F0 1.656(The ef)224 408 R 1.656 +H(nder).15 E F1(HIST)3.087 E(OR)-.162 E(Y)-.315 E/F4 9/Times-Roman@0 SF +(.)A F0 .587(This option is)5.087 F(on by def)224 534 Q +(ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F2(ignor)184 +546 Q(eeof)-.18 E F0 1.656(The ef)224 558 R 1.656 (fect is as if the shell command)-.25 F/F5 10/Courier@0 SF(IGNOREEOF=10) 4.157 E F0 1.657(had been e)4.157 F -.15(xe)-.15 G(cuted).15 E(\(see)224 -420 Q F1(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G(\).) -.15 E F1 -.1(ke)184 432 S(yw).1 E(ord)-.1 E F0(Same as)224 444 Q F1 -2.5 E F0(.)A F1(monitor)184 456 Q F0(Same as)224 456 Q F12.5 -E F0(.)A F1(noclob)184 468 Q(ber)-.1 E F0(Same as)224 480 Q F12.5 -E F0(.)A F1(noexec)184 492 Q F0(Same as)224 492 Q F12.5 E F0(.)A -F1(noglob)184 504 Q F0(Same as)224 504 Q F12.5 E F0(.)A F1(nolog) -184 516 Q F0(Currently ignored.)224 516 Q F1(notify)184 528 Q F0 -(Same as)224 528 Q F12.5 E F0(.)A F1(nounset)184 540 Q F0(Same as) -224 540 Q F12.5 E F0(.)A F1(onecmd)184 552 Q F0(Same as)224 552 Q -F12.5 E F0(.)A F1(ph)184 564 Q(ysical)-.15 E F0(Same as)224 564 Q -F12.5 E F0(.)A F1(pipefail)184 576 Q F0 1.03(If set, the return v) -224 576 R 1.029(alue of a pipeline is the v)-.25 F 1.029 -(alue of the last \(rightmost\) com-)-.25 F 1.136(mand to e)224 588 R -1.136 -(xit with a non-zero status, or zero if all commands in the pipeline) --.15 F -.15(ex)224 600 S(it successfully).15 E 5(.T)-.65 G -(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 612 Q F0 -2.091(Change the beha)224 612 R 2.091(vior of)-.2 F F1(bash)4.591 E F0 -2.091(where the def)4.591 F 2.091(ault operation dif)-.1 F 2.091 -(fers from the)-.25 F 1.212(POSIX standard to match the standard \()224 -624 R F3 1.212(posix mode)B F0 3.712(\). See)B F2 1.212(SEE ALSO)3.712 F -F0(belo)3.463 E(w)-.25 E .955 -(for a reference to a document that details ho)224 636 R 3.454(wp)-.25 G -.954(osix mode af)-3.454 F .954(fects bash')-.25 F 3.454(sb)-.55 G(e-) --3.454 E(ha)224 648 Q(vior)-.2 E(.)-.55 E F1(pri)184 660 Q(vileged)-.1 E -F0(Same as)224 672 Q F12.5 E F0(.)A F1 -.1(ve)184 684 S(rbose).1 E -F0(Same as)224 684 Q F12.5 E F0(.)A F1(vi)184 696 Q F0 .209 -(Use a vi-style command line editing interf)224 696 R 2.709(ace. This) --.1 F .209(also af)2.709 F .21(fects the editing in-)-.25 F(terf)224 708 -Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(74)193.45 E 0 Cg EP +570 Q F2(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G(\).) +.15 E F2 -.1(ke)184 582 S(yw).1 E(ord)-.1 E F0(Same as)224 594 Q F2 +2.5 E F0(.)A F2(monitor)184 606 Q F0(Same as)224 606 Q F22.5 +E F0(.)A F2(noclob)184 618 Q(ber)-.1 E F0(Same as)224 630 Q F22.5 +E F0(.)A F2(noexec)184 642 Q F0(Same as)224 642 Q F22.5 E F0(.)A +F2(noglob)184 654 Q F0(Same as)224 654 Q F22.5 E F0(.)A F2(nolog) +184 666 Q F0(Currently ignored.)224 666 Q F2(notify)184 678 Q F0 +(Same as)224 678 Q F22.5 E F0(.)A F2(nounset)184 690 Q F0(Same as) +224 690 Q F22.5 E F0(.)A F2(onecmd)184 702 Q F0(Same as)224 702 Q +F22.5 E F0(.)A F2(ph)184 714 Q(ysical)-.15 E F0(Same as)224 714 Q +F22.5 E F0(.)A(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(74) +199.835 E 0 Cg EP %%Page: 75 75 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(xtrace)184 84 Q F0(Same as)224 84 Q F12.5 E F0(.)A(If)184 102 Q -F13.053 E F0 .553(is supplied with no)3.053 F/F2 10/Times-Italic@0 -SF(option\255name)3.053 E F0 3.053(,t)C .553(he v)-3.053 F .552 +SF(pipefail)184 84 Q F0 1.03(If set, the return v)224 84 R 1.029 +(alue of a pipeline is the v)-.25 F 1.029 +(alue of the last \(rightmost\) com-)-.25 F 1.136(mand to e)224 96 R +1.136 +(xit with a non-zero status, or zero if all commands in the pipeline) +-.15 F -.15(ex)224 108 S(it successfully).15 E 5(.T)-.65 G +(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 120 Q F0 +2.091(Change the beha)224 120 R 2.091(vior of)-.2 F F1(bash)4.591 E F0 +2.091(where the def)4.591 F 2.091(ault operation dif)-.1 F 2.091 +(fers from the)-.25 F 1.212(POSIX standard to match the standard \()224 +132 R/F2 10/Times-Italic@0 SF 1.212(posix mode)B F0 3.712(\). See)B/F3 9 +/Times-Bold@0 SF 1.212(SEE ALSO)3.712 F F0(belo)3.463 E(w)-.25 E .955 +(for a reference to a document that details ho)224 144 R 3.454(wp)-.25 G +.954(osix mode af)-3.454 F .954(fects bash')-.25 F 3.454(sb)-.55 G(e-) +-3.454 E(ha)224 156 Q(vior)-.2 E(.)-.55 E F1(pri)184 168 Q(vileged)-.1 E +F0(Same as)224 180 Q F12.5 E F0(.)A F1 -.1(ve)184 192 S(rbose).1 E +F0(Same as)224 192 Q F12.5 E F0(.)A F1(vi)184 204 Q F0 .209 +(Use a vi-style command line editing interf)224 204 R 2.709(ace. This) +-.1 F .209(also af)2.709 F .21(fects the editing in-)-.25 F(terf)224 216 +Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1(xtrace) +184 228 Q F0(Same as)224 228 Q F12.5 E F0(.)A(If)184 246 Q F1 +3.053 E F0 .553(is supplied with no)3.053 F F2(option\255name) +3.053 E F0 3.053(,t)C .553(he v)-3.053 F .552 (alues of the current options are printed.)-.25 F(If)5.552 E F1(+o)184 -114 Q F0 1.071(is supplied with no)3.571 F F2(option\255name)3.571 E F0 +258 Q F0 1.071(is supplied with no)3.571 F F2(option\255name)3.571 E F0 3.571(,as)C 1.071(eries of)-3.571 F F1(set)3.572 E F0 1.072 (commands to recreate the current)3.572 F -(option settings is displayed on the standard output.)184 126 Q F1 -144 138 Q F0 -.45(Tu)184 138 S 1.072(rn on).45 F F2(privile)4.822 E -.1 +(option settings is displayed on the standard output.)184 270 Q F1 +144 282 Q F0 -.45(Tu)184 282 S 1.072(rn on).45 F F2(privile)4.822 E -.1 (ge)-.4 G(d).1 E F0 3.572(mode. In)4.342 F 1.072(this mode, the)3.572 F -/F3 9/Times-Bold@0 SF($ENV)3.572 E F0(and)3.322 E F3($B)3.572 E(ASH_ENV) --.27 E F0 1.071(\214les are not pro-)3.322 F 1.5 -(cessed, shell functions are not inherited from the en)184 150 R 1.501 +F3($ENV)3.572 E F0(and)3.322 E F3($B)3.572 E(ASH_ENV)-.27 E F0 1.071 +(\214les are not pro-)3.322 F 1.5 +(cessed, shell functions are not inherited from the en)184 294 R 1.501 (vironment, and the)-.4 F F3(SHELLOPTS)4.001 E/F4 9/Times-Roman@0 SF(,)A -F3 -.27(BA)184 162 S(SHOPTS).27 E F4(,)A F3(CDP)2.775 E -.855(AT)-.666 G +F3 -.27(BA)184 306 S(SHOPTS).27 E F4(,)A F3(CDP)2.775 E -.855(AT)-.666 G (H).855 E F4(,)A F0(and)2.775 E F3(GLOBIGNORE)3.025 E F0 -.25(va)2.775 G .524(riables, if the).25 F 3.024(ya)-.15 G .524(ppear in the en)-3.024 F -(vironment,)-.4 E .379(are ignored.)184 174 R .379 +(vironment,)-.4 E .379(are ignored.)184 318 R .379 (If the shell is started with the ef)5.379 F(fecti)-.25 E .679 -.15 (ve u)-.25 H .38(ser \(group\) id not equal to the real).15 F .462 -(user \(group\) id, and the)184 186 R F12.961 E F0 .461 +(user \(group\) id, and the)184 330 R F12.961 E F0 .461 (option is not supplied, these actions are tak)2.961 F .461 -(en and the ef)-.1 F(fec-)-.25 E(ti)184 198 Q .694 -.15(ve u)-.25 H .394 +(en and the ef)-.1 F(fec-)-.25 E(ti)184 342 Q .694 -.15(ve u)-.25 H .394 (ser id is set to the real user id.).15 F .395(If the)5.395 F F1 2.895 E F0 .395(option is supplied at startup, the ef)2.895 F(fecti)-.25 -E -.15(ve)-.25 G .387(user id is not reset.)184 210 R -.45(Tu)5.387 G +E -.15(ve)-.25 G .387(user id is not reset.)184 354 R -.45(Tu)5.387 G .387(rning this option of).45 F 2.886(fc)-.25 G .386(auses the ef)-2.886 F(fecti)-.25 E .686 -.15(ve u)-.25 H .386(ser and group ids to be).15 F -(set to the real user and group ids.)184 222 Q F1144 234 Q F0 -(Enable restricted shell mode.)184 234 Q -(This option cannot be unset once it has been set.)5 E F1144 246 Q -F0(Exit after reading and e)184 246 Q -.15(xe)-.15 G -(cuting one command.).15 E F1144 258 Q F0 -.35(Tr)184 258 S .773 +(set to the real user and group ids.)184 366 Q F1144 378 Q F0 +(Enable restricted shell mode.)184 378 Q +(This option cannot be unset once it has been set.)5 E F1144 390 Q +F0(Exit after reading and e)184 390 Q -.15(xe)-.15 G +(cuting one command.).15 E F1144 402 Q F0 -.35(Tr)184 402 S .773 (eat unset v).35 F .773(ariables and parameters other than the special \ -parameters "@" and "*", or)-.25 F .46(array v)184 270 R .459(ariables s\ +parameters "@" and "*", or)-.25 F .46(array v)184 414 R .459(ariables s\ ubscripted with "@" or "*", as an error when performing parameter e)-.25 -F(x-)-.15 E 2.89(pansion. If)184 282 R -.15(ex)2.89 G .391 +F(x-)-.15 E 2.89(pansion. If)184 426 R -.15(ex)2.89 G .391 (pansion is attempted on an unset v).15 F .391(ariable or parameter)-.25 F 2.891(,t)-.4 G .391(he shell prints an)-2.891 F -(error message, and, if not interacti)184 294 Q -.15(ve)-.25 G 2.5(,e) -.15 G(xits with a non-zero status.)-2.65 E F1144 306 Q F0 -(Print shell input lines as the)184 306 Q 2.5(ya)-.15 G(re read.)-2.5 E -F1144 318 Q F0 .315(After e)184 318 R .315(xpanding each)-.15 F F2 +(error message, and, if not interacti)184 438 Q -.15(ve)-.25 G 2.5(,e) +.15 G(xits with a non-zero status.)-2.65 E F1144 450 Q F0 +(Print shell input lines as the)184 450 Q 2.5(ya)-.15 G(re read.)-2.5 E +F1144 462 Q F0 .315(After e)184 462 R .315(xpanding each)-.15 F F2 .315(simple command)2.815 F F0(,)A F1 -.25(fo)2.815 G(r).25 E F0 (command,)2.815 E F1(case)2.815 E F0(command,)2.815 E F1(select)2.815 E -F0(command,)2.815 E 1.235(or arithmetic)184 330 R F1 -.25(fo)3.736 G(r) +F0(command,)2.815 E 1.235(or arithmetic)184 474 R F1 -.25(fo)3.736 G(r) .25 E F0 1.236(command, display the e)3.736 F 1.236(xpanded v)-.15 F 1.236(alue of)-.25 F F3(PS4)3.736 E F4(,)A F0(follo)3.486 E 1.236 -(wed by the com-)-.25 F(mand and its e)184 342 Q(xpanded ar)-.15 E -(guments or associated w)-.18 E(ord list.)-.1 E F1144 354 Q F0 -1.206(The shell performs brace e)184 354 R 1.206(xpansion \(see)-.15 F +(wed by the com-)-.25 F(mand and its e)184 486 Q(xpanded ar)-.15 E +(guments or associated w)-.18 E(ord list.)-.1 E F1144 498 Q F0 +1.206(The shell performs brace e)184 498 R 1.206(xpansion \(see)-.15 F F1 1.205(Brace Expansion)3.705 F F0(abo)3.705 E -.15(ve)-.15 G 3.705 -(\). This).15 F 1.205(is on by de-)3.705 F -.1(fa)184 366 S(ult.).1 E F1 -144 378 Q F0 .213(If set,)184 378 R F1(bash)2.713 E F0 .213 +(\). This).15 F 1.205(is on by de-)3.705 F -.1(fa)184 510 S(ult.).1 E F1 +144 522 Q F0 .213(If set,)184 522 R F1(bash)2.713 E F0 .213 (does not o)2.713 F -.15(ve)-.15 G .214(rwrite an e).15 F .214 (xisting \214le with the)-.15 F F1(>)2.714 E F0(,)A F1(>&)2.714 E F0 2.714(,a)C(nd)-2.714 E F1(<>)2.714 E F0 .214(redirection opera-)2.714 F -3.054(tors. This)184 390 R .553(may be o)3.053 F -.15(ve)-.15 G .553 +3.054(tors. This)184 534 R .553(may be o)3.053 F -.15(ve)-.15 G .553 (rridden when creating output \214les by using the redirection opera-) -.15 F(tor)184 402 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 -144 414 Q F0 .103(If set, an)184 414 R 2.603(yt)-.15 G .103 +.15 F(tor)184 546 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 +144 558 Q F0 .103(If set, an)184 558 R 2.603(yt)-.15 G .103 (rap on)-2.603 F F1(ERR)2.603 E F0 .104 (is inherited by shell functions, command substitutions, and com-)2.603 -F .839(mands e)184 426 R -.15(xe)-.15 G .839(cuted in a subshell en).15 +F .839(mands e)184 570 R -.15(xe)-.15 G .839(cuted in a subshell en).15 F 3.339(vironment. The)-.4 F F1(ERR)3.338 E F0 .838 -(trap is normally not inherited in)3.338 F(such cases.)184 438 Q F1 -144 450 Q F0(Enable)184 450 Q F1(!)3.031 E F0 .531 +(trap is normally not inherited in)3.338 F(such cases.)184 582 Q F1 +144 594 Q F0(Enable)184 594 Q F1(!)3.031 E F0 .531 (style history substitution.)5.531 F .531(This option is on by def)5.531 -F .532(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 462 Q -.15 -(ve)-.25 G(.).15 E F1144 474 Q F0 .96 -(If set, the shell does not resolv)184 474 R 3.459(es)-.15 G .959 +F .532(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 606 Q -.15 +(ve)-.25 G(.).15 E F1144 618 Q F0 .96 +(If set, the shell does not resolv)184 618 R 3.459(es)-.15 G .959 (ymbolic links when e)-3.459 F -.15(xe)-.15 G .959 (cuting commands such as).15 F F1(cd)3.459 E F0 1.452 -(that change the current w)184 486 R 1.452(orking directory)-.1 F 6.452 +(that change the current w)184 630 R 1.452(orking directory)-.1 F 6.452 (.I)-.65 G 3.953(tu)-6.452 G 1.453(ses the ph)-3.953 F 1.453 -(ysical directory structure in-)-.05 F 3.335(stead. By)184 498 R(def) +(ysical directory structure in-)-.05 F 3.335(stead. By)184 642 R(def) 3.335 E(ault,)-.1 E F1(bash)3.334 E F0(follo)3.334 E .834 (ws the logical chain of directories when performing com-)-.25 F -(mands which change the current directory)184 510 Q(.)-.65 E F1144 -522 Q F0 .89(If set, an)184 522 R 3.39(yt)-.15 G .89(raps on)-3.39 F F1 +(mands which change the current directory)184 654 Q(.)-.65 E F1144 +666 Q F0 .89(If set, an)184 666 R 3.39(yt)-.15 G .89(raps on)-3.39 F F1 (DEB)3.39 E(UG)-.1 E F0(and)3.39 E F1(RETURN)3.39 E F0 .89 (are inherited by shell functions, command)3.39 F 1.932 -(substitutions, and commands e)184 534 R -.15(xe)-.15 G 1.932 +(substitutions, and commands e)184 678 R -.15(xe)-.15 G 1.932 (cuted in a subshell en).15 F 4.432(vironment. The)-.4 F F1(DEB)4.432 E -(UG)-.1 E F0(and)4.432 E F1(RETURN)184 546 Q F0 -(traps are normally not inherited in such cases.)2.5 E F1144 558 Q -F0 .4(If no ar)184 558 R .401(guments follo)-.18 F 2.901(wt)-.25 G .401 +(UG)-.1 E F0(and)4.432 E F1(RETURN)184 690 Q F0 +(traps are normally not inherited in such cases.)2.5 E F1144 702 Q +F0 .4(If no ar)184 702 R .401(guments follo)-.18 F 2.901(wt)-.25 G .401 (his option, then the positional parameters are unset.)-2.901 F -(Otherwise,)5.401 E(the positional parameters are set to the)184 570 Q +(Otherwise,)5.401 E(the positional parameters are set to the)184 714 Q F2(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5(ni).15 G 2.5(fs)-2.5 G -(ome of them be)-2.5 E(gin with a)-.15 E F12.5 E F0(.)A F1144 -582 Q F0 .797(Signal the end of options, cause all remaining)184 582 R -F2(ar)3.297 E(g)-.37 E F0 3.297(st)C 3.297(ob)-3.297 G 3.296(ea)-3.297 G -.796(ssigned to the positional pa-)-3.296 F 3.021(rameters. The)184 594 -R F13.021 E F0(and)3.022 E F13.022 E F0 .522 -(options are turned of)3.022 F 3.022(f. If)-.25 F .522(there are no) -3.022 F F2(ar)3.022 E(g)-.37 E F0 .522(s, the positional pa-)B -(rameters remain unchanged.)184 606 Q .425(The options are of)144 622.8 -R 2.925(fb)-.25 G 2.925(yd)-2.925 G(ef)-2.925 E .425 -(ault unless otherwise noted.)-.1 F .425 -(Using + rather than \255 causes these options)5.425 F .177 -(to be turned of)144 634.8 R 2.677(f. The)-.25 F .178 -(options can also be speci\214ed as ar)2.678 F .178(guments to an in) --.18 F -.2(vo)-.4 G .178(cation of the shell.).2 F(The)5.178 E .066 -(current set of options may be found in)144 646.8 R F1<24ad>2.566 E F0 -5.066(.T)C .066(he return status is al)-5.066 F -.1(wa)-.1 G .066 -(ys true unless an in).1 F -.25(va)-.4 G .066(lid option).25 F -(is encountered.)144 658.8 Q F1(shift)108 675.6 Q F0([)2.5 E F2(n)A F0 -(])A .428(The positional parameters from)144 687.6 R F2(n)2.928 E F0 -.429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.429 G -.429(rameters represented by the num-).15 F(bers)144 699.6 Q F1($#)2.583 -E F0(do)2.583 E .083(wn to)-.25 F F1($#)2.583 E F0A F2(n)A F0 .083 -(+1 are unset.)B F2(n)5.443 E F0 .083(must be a non-ne)2.823 F -.05(ga) --.15 G(ti).05 E .382 -.15(ve n)-.25 H .082(umber less than or equal to) -.15 F F1($#)2.582 E F0 5.082(.I)C(f)-5.082 E F2(n)2.942 E F0 .06 -(is 0, no parameters are changed.)144 711.6 R(If)5.06 E F2(n)2.92 E F0 -.06(is not gi)2.8 F -.15(ve)-.25 G .06(n, it is assumed to be 1.).15 F -(If)5.06 E F2(n)2.92 E F0 .06(is greater than)2.8 F F1($#)2.56 E F0 2.56 -(,t)C(he)-2.56 E .144(positional parameters are not changed.)144 723.6 R -.144(The return status is greater than zero if)5.144 F F2(n)3.003 E F0 -.143(is greater than)2.883 F F1($#)2.643 E F0(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(75)193.45 E 0 Cg EP +(ome of them be)-2.5 E(gin with a)-.15 E F12.5 E F0(.)A +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(75)199.835 E 0 Cg EP %%Page: 76 76 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(or less than zero; otherwise 0.)144 84 Q/F1 10/Times-Bold@0 SF(shopt) -108 100.8 Q F0([)2.5 E F1(\255pqsu)A F0 2.5(][)C F1-2.5 E F0 2.5 -(][)C/F2 10/Times-Italic@0 SF(optname)-2.5 E F0(...])2.5 E -.8(To)144 -112.8 S .639(ggle the v).8 F .639 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF144 84 Q F0 .797(Signal the end of options, cause all remaining) +184 84 R/F2 10/Times-Italic@0 SF(ar)3.297 E(g)-.37 E F0 3.297(st)C 3.297 +(ob)-3.297 G 3.296(ea)-3.297 G .796(ssigned to the positional pa-)-3.296 +F 3.021(rameters. The)184 96 R F13.021 E F0(and)3.022 E F1 +3.022 E F0 .522(options are turned of)3.022 F 3.022(f. If)-.25 F .522 +(there are no)3.022 F F2(ar)3.022 E(g)-.37 E F0 .522 +(s, the positional pa-)B(rameters remain unchanged.)184 108 Q .425 +(The options are of)144 124.8 R 2.925(fb)-.25 G 2.925(yd)-2.925 G(ef) +-2.925 E .425(ault unless otherwise noted.)-.1 F .425 +(Using + rather than \255 causes these options)5.425 F .177 +(to be turned of)144 136.8 R 2.677(f. The)-.25 F .178 +(options can also be speci\214ed as ar)2.678 F .178(guments to an in) +-.18 F -.2(vo)-.4 G .178(cation of the shell.).2 F(The)5.178 E .066 +(current set of options may be found in)144 148.8 R F1<24ad>2.566 E F0 +5.066(.T)C .066(he return status is al)-5.066 F -.1(wa)-.1 G .066 +(ys true unless an in).1 F -.25(va)-.4 G .066(lid option).25 F +(is encountered.)144 160.8 Q F1(shift)108 177.6 Q F0([)2.5 E F2(n)A F0 +(])A .428(The positional parameters from)144 189.6 R F2(n)2.928 E F0 +.429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.429 G +.429(rameters represented by the num-).15 F(bers)144 201.6 Q F1($#)2.583 +E F0(do)2.583 E .083(wn to)-.25 F F1($#)2.583 E F0A F2(n)A F0 .083 +(+1 are unset.)B F2(n)5.443 E F0 .083(must be a non-ne)2.823 F -.05(ga) +-.15 G(ti).05 E .382 -.15(ve n)-.25 H .082(umber less than or equal to) +.15 F F1($#)2.582 E F0 5.082(.I)C(f)-5.082 E F2(n)2.942 E F0 .06 +(is 0, no parameters are changed.)144 213.6 R(If)5.06 E F2(n)2.92 E F0 +.06(is not gi)2.8 F -.15(ve)-.25 G .06(n, it is assumed to be 1.).15 F +(If)5.06 E F2(n)2.92 E F0 .06(is greater than)2.8 F F1($#)2.56 E F0 2.56 +(,t)C(he)-2.56 E .144(positional parameters are not changed.)144 225.6 R +.144(The return status is greater than zero if)5.144 F F2(n)3.003 E F0 +.143(is greater than)2.883 F F1($#)2.643 E F0 +(or less than zero; otherwise 0.)144 237.6 Q F1(shopt)108 254.4 Q F0([) +2.5 E F1(\255pqsu)A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(optname) +-2.5 E F0(...])2.5 E -.8(To)144 266.4 S .639(ggle the v).8 F .639 (alues of settings controlling optional shell beha)-.25 F(vior)-.2 E 5.639(.T)-.55 G .64(he settings can be either those)-5.639 F .375 -(listed belo)144 124.8 R 1.675 -.65(w, o)-.25 H 1.175 -.4(r, i).65 H +(listed belo)144 278.4 R 1.675 -.65(w, o)-.25 H 1.175 -.4(r, i).65 H 2.875(ft).4 G(he)-2.875 E F12.875 E F0 .375 (option is used, those a)2.875 F -.25(va)-.2 G .375(ilable with the).25 F F12.875 E F0 .374(option to the)2.875 F F1(set)2.874 E F0 -.2 -(bu)2.874 G .374(iltin com-).2 F 2.565(mand. W)144 136.8 R .065 +(bu)2.874 G .374(iltin com-).2 F 2.565(mand. W)144 290.4 R .065 (ith no options, or with the)-.4 F F12.566 E F0 .066 (option, a list of all settable options is displayed, with an in-)2.566 -F .074(dication of whether or not each is set; if)144 148.8 R F2 +F .074(dication of whether or not each is set; if)144 302.4 R F2 (optnames)2.574 E F0 .074 (are supplied, the output is restricted to those op-)2.574 F 3.105 -(tions. The)144 160.8 R F13.105 E F0 .605(option causes output to\ +(tions. The)144 314.4 R F13.105 E F0 .605(option causes output to\ be displayed in a form that may be reused as input.)3.105 F(Other)5.605 -E(options ha)144 172.8 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 184.8 Q F0(Enable \(set\) each)180 -184.8 Q F2(optname)2.5 E F0(.)A F1144 196.8 Q F0 -(Disable \(unset\) each)180 196.8 Q F2(optname)2.5 E F0(.)A F1144 -208.8 Q F0 .003(Suppresses normal output \(quiet mode\); the return sta\ -tus indicates whether the)180 208.8 R F2(optname)2.503 E F0(is)2.503 E -.255(set or unset.)180 220.8 R .255(If multiple)5.255 F F2(optname)2.755 +E(options ha)144 326.4 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 338.4 Q F0(Enable \(set\) each)180 +338.4 Q F2(optname)2.5 E F0(.)A F1144 350.4 Q F0 +(Disable \(unset\) each)180 350.4 Q F2(optname)2.5 E F0(.)A F1144 +362.4 Q F0 .003(Suppresses normal output \(quiet mode\); the return sta\ +tus indicates whether the)180 362.4 R F2(optname)2.503 E F0(is)2.503 E +.255(set or unset.)180 374.4 R .255(If multiple)5.255 F F2(optname)2.755 E F0(ar)2.755 E .256(guments are gi)-.18 F -.15(ve)-.25 G 2.756(nw).15 G (ith)-2.756 E F12.756 E F0 2.756(,t)C .256 -(he return status is zero if)-2.756 F(all)180 232.8 Q F2(optnames)2.5 E -F0(are enabled; non-zero otherwise.)2.5 E F1144 244.8 Q F0 -(Restricts the v)180 244.8 Q(alues of)-.25 E F2(optname)2.5 E F0 +(he return status is zero if)-2.756 F(all)180 386.4 Q F2(optnames)2.5 E +F0(are enabled; non-zero otherwise.)2.5 E F1144 398.4 Q F0 +(Restricts the v)180 398.4 Q(alues of)-.25 E F2(optname)2.5 E F0 (to be those de\214ned for the)2.5 E F12.5 E F0(option to the)2.5 -E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .625(If either)144 261.6 R F1 +E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .625(If either)144 415.2 R F1 3.125 E F0(or)3.124 E F13.124 E F0 .624(is used with no) 3.124 F F2(optname)3.124 E F0(ar)3.124 E(guments,)-.18 E F1(shopt)3.124 E F0(sho)3.124 E .624(ws only those options which are)-.25 F .983 -(set or unset, respecti)144 273.6 R -.15(ve)-.25 G(ly).15 E 5.983(.U) +(set or unset, respecti)144 427.2 R -.15(ve)-.25 G(ly).15 E 5.983(.U) -.65 G .983(nless otherwise noted, the)-5.983 F F1(shopt)3.484 E F0 .984 -(options are disabled \(unset\) by de-)3.484 F -.1(fa)144 285.6 S(ult.) -.1 E 1.544(The return status when listing options is zero if all)144 -302.4 R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.) -4.044 F .696 +(options are disabled \(unset\) by de-)3.484 F -.1(fa)144 439.2 S(ult.) +.1 E 1.544(The return status when listing options is zero if all)144 456 +R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.)4.044 F +.696 (When setting or unsetting options, the return status is zero unless an) -144 314.4 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696 -(alid shell)-.25 F(option.)144 326.4 Q(The list of)144 343.2 Q F1(shopt) -2.5 E F0(options is:)2.5 E F1(assoc_expand_once)144 361.2 Q F0 1.945 -(If set, the shell suppresses multiple e)184 373.2 R -.25(va)-.25 G +144 468 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696(alid shell) +-.25 F(option.)144 480 Q(The list of)144 496.8 Q F1(shopt)2.5 E F0 +(options is:)2.5 E F1(assoc_expand_once)144 514.8 Q F0 1.945 +(If set, the shell suppresses multiple e)184 526.8 R -.25(va)-.25 G 1.944(luation of associati).25 F 2.244 -.15(ve a)-.25 H 1.944 -(rray subscripts during).15 F .885(arithmetic e)184 385.2 R .885 +(rray subscripts during).15 F .885(arithmetic e)184 538.8 R .885 (xpression e)-.15 F -.25(va)-.25 G .885(luation, while e).25 F -.15(xe) -.15 G .885(cuting b).15 F .885(uiltins that can perform v)-.2 F .885 -(ariable as-)-.25 F(signments, and while e)184 397.2 Q -.15(xe)-.15 G +(ariable as-)-.25 F(signments, and while e)184 550.8 Q -.15(xe)-.15 G (cuting b).15 E(uiltins that perform array dereferencing.)-.2 E F1 -(autocd)144 409.2 Q F0 .2 -(If set, a command name that is the name of a directory is e)184 409.2 R +(autocd)144 562.8 Q F0 .2 +(If set, a command name that is the name of a directory is e)184 562.8 R -.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E -(ment to the)184 421.2 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F +(ment to the)184 574.8 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F (option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E -F1(cdable_v)144 433.2 Q(ars)-.1 E F0 .155(If set, an ar)184 445.2 R .155 +F1(cdable_v)144 586.8 Q(ars)-.1 E F0 .155(If set, an ar)184 598.8 R .155 (gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156 (iltin command that is not a directory is assumed to be the).2 F -(name of a v)184 457.2 Q(ariable whose v)-.25 E -(alue is the directory to change to.)-.25 E F1(cdspell)144 469.2 Q F0 +(name of a v)184 610.8 Q(ariable whose v)-.25 E +(alue is the directory to change to.)-.25 E F1(cdspell)144 622.8 Q F0 1.055 (If set, minor errors in the spelling of a directory component in a)184 -469.2 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 -(corrected. The)184 481.2 R 1.487(errors check)3.987 F 1.487 +622.8 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 +(corrected. The)184 634.8 R 1.487(errors check)3.987 F 1.487 (ed for are transposed characters, a missing character)-.1 F 3.988(,a) --.4 G(nd)-3.988 E .77(one character too man)184 493.2 R 4.57 -.65(y. I) +-.4 G(nd)-3.988 E .77(one character too man)184 646.8 R 4.57 -.65(y. I) -.15 H 3.27(fac).65 G .77 (orrection is found, the corrected \214lename is printed, and)-3.27 F -(the command proceeds.)184 505.2 Q +(the command proceeds.)184 658.8 Q (This option is only used by interacti)5 E .3 -.15(ve s)-.25 H(hells.) -.15 E F1(checkhash)144 517.2 Q F0 .736(If set,)184 529.2 R F1(bash)3.236 +.15 E F1(checkhash)144 670.8 Q F0 .736(If set,)184 682.8 R F1(bash)3.236 E F0 .736(checks that a command found in the hash table e)3.236 F .737 (xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184 -541.2 Q(If a hashed command no longer e)5 E -(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 553.2 -Q F0 .449(If set,)184 565.2 R F1(bash)2.949 E F0 .449 +694.8 Q(If a hashed command no longer e)5 E +(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 706.8 +Q F0 .449(If set,)184 718.8 R F1(bash)2.949 E F0 .449 (lists the status of an)2.949 F 2.949(ys)-.15 G .448 (topped and running jobs before e)-2.949 F .448(xiting an interacti)-.15 -F -.15(ve)-.25 G 2.661(shell. If)184 577.2 R(an)2.661 E 2.661(yj)-.15 G -.161(obs are running, this causes the e)-2.661 F .161 -(xit to be deferred until a second e)-.15 F .162(xit is at-)-.15 F 1.473 -(tempted without an interv)184 589.2 R 1.473(ening command \(see)-.15 F -/F3 9/Times-Bold@0 SF 1.473(JOB CONTR)3.973 F(OL)-.27 E F0(abo)3.723 E --.15(ve)-.15 G 3.973(\). The).15 F 1.472(shell al-)3.972 F -.1(wa)184 -601.2 S(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G -(obs are stopped.)-2.5 E F1(checkwinsize)144 613.2 Q F0 1.09(If set,)184 -625.2 R F1(bash)3.59 E F0 1.09(checks the windo)3.59 F 3.59(ws)-.25 G -1.09(ize after each e)-3.59 F 1.09(xternal \(non-b)-.15 F 1.09 -(uiltin\) command and, if)-.2 F(necessary)184 637.2 Q 3.351(,u)-.65 G -.851(pdates the v)-3.351 F .85(alues of)-.25 F F3(LINES)3.35 E F0(and) -3.1 E F3(COLUMNS)3.35 E/F4 9/Times-Roman@0 SF(.)A F0 .85 -(This option is enabled by de-)5.35 F -.1(fa)184 649.2 S(ult.).1 E F1 -(cmdhist)144 661.2 Q F0 .172(If set,)184 661.2 R F1(bash)2.672 E F0 .172 -(attempts to sa)2.672 F .472 -.15(ve a)-.2 H .173 -(ll lines of a multiple-line command in the same history en-).15 F(try) -184 673.2 Q 5.597(.T)-.65 G .597(his allo)-5.597 F .597 -(ws easy re-editing of multi-line commands.)-.25 F .597 -(This option is enabled by de-)5.597 F -.1(fa)184 685.2 S 1.287(ult, b) -.1 F 1.288(ut only has an ef)-.2 F 1.288 -(fect if command history is enabled, as described abo)-.25 F 1.588 -.15 -(ve u)-.15 H(nder).15 E F3(HIST)184 697.2 Q(OR)-.162 E(Y)-.315 E F4(.)A -F0(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(76)193.45 E 0 Cg EP +F -.15(ve)-.25 G 3.438(shell. If)184 730.8 R(an)3.438 E 3.438(yj)-.15 G +.938(obs are running, this causes the e)-3.438 F .938 +(xit to be deferred until a second e)-.15 F .939(xit is)-.15 F +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(76)199.835 E 0 Cg EP %%Page: 77 77 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(compat31)144 84 Q(compat32)144 96 Q(compat40)144 108 Q(compat41)144 -120 Q(compat42)144 132 Q(compat43)144 144 Q(compat44)144 156 Q(compat50) -144 168 Q F0 .889(These control aspects of the shell')184 180 R 3.389 -(sc)-.55 G .889(ompatibility mode \(see)-3.389 F/F2 9/Times-Bold@0 SF -.889(SHELL COMP)3.389 F -.855(AT)-.666 G(IBILITY).855 E(MODE)184 192 Q -F0(belo)2.25 E(w\).)-.25 E F1(complete_fullquote)144 208.8 Q F0 .653 -(If set,)184 220.8 R F1(bash)3.153 E F0 .653(quotes all shell metachara\ -cters in \214lenames and directory names when per)3.153 F(-)-.2 E 1.525 -(forming completion.)184 232.8 R 1.524(If not set,)6.525 F F1(bash)4.024 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .817 +(attempted without an interv)184 84 R .817(ening command \(see)-.15 F/F1 +9/Times-Bold@0 SF .816(JOB CONTR)3.316 F(OL)-.27 E F0(abo)3.066 E -.15 +(ve)-.15 G 3.316(\). The).15 F .816(shell al-)3.316 F -.1(wa)184 96 S +(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G(obs are stopped.) +-2.5 E/F2 10/Times-Bold@0 SF(checkwinsize)144 108 Q F0 1.09(If set,)184 +120 R F2(bash)3.59 E F0 1.09(checks the windo)3.59 F 3.59(ws)-.25 G 1.09 +(ize after each e)-3.59 F 1.09(xternal \(non-b)-.15 F 1.09 +(uiltin\) command and, if)-.2 F(necessary)184 132 Q 3.351(,u)-.65 G .851 +(pdates the v)-3.351 F .85(alues of)-.25 F F1(LINES)3.35 E F0(and)3.1 E +F1(COLUMNS)3.35 E/F3 9/Times-Roman@0 SF(.)A F0 .85 +(This option is enabled by de-)5.35 F -.1(fa)184 144 S(ult.).1 E F2 +(cmdhist)144 156 Q F0 .172(If set,)184 156 R F2(bash)2.672 E F0 .172 +(attempts to sa)2.672 F .472 -.15(ve a)-.2 H .173 +(ll lines of a multiple-line command in the same history en-).15 F(try) +184 168 Q 5.597(.T)-.65 G .597(his allo)-5.597 F .597 +(ws easy re-editing of multi-line commands.)-.25 F .597 +(This option is enabled by de-)5.597 F -.1(fa)184 180 S 1.287(ult, b).1 +F 1.288(ut only has an ef)-.2 F 1.288 +(fect if command history is enabled, as described abo)-.25 F 1.588 -.15 +(ve u)-.15 H(nder).15 E F1(HIST)184 192 Q(OR)-.162 E(Y)-.315 E F3(.)A F2 +(compat31)144 204 Q(compat32)144 216 Q(compat40)144 228 Q(compat41)144 +240 Q(compat42)144 252 Q(compat43)144 264 Q(compat44)144 276 Q(compat50) +144 288 Q F0 .889(These control aspects of the shell')184 300 R 3.389 +(sc)-.55 G .889(ompatibility mode \(see)-3.389 F F1 .889(SHELL COMP) +3.389 F -.855(AT)-.666 G(IBILITY).855 E(MODE)184 312 Q F0(belo)2.25 E +(w\).)-.25 E F2(complete_fullquote)144 328.8 Q F0 .653(If set,)184 340.8 +R F2(bash)3.153 E F0 .653(quotes all shell metacharacters in \214lename\ +s and directory names when per)3.153 F(-)-.2 E 1.525 +(forming completion.)184 352.8 R 1.524(If not set,)6.525 F F2(bash)4.024 E F0(remo)4.024 E -.15(ve)-.15 G 4.024(sm).15 G 1.524 (etacharacters such as the dollar sign)-4.024 F 2.667(from the set of c\ haracters that will be quoted in completed \214lenames when these)184 -244.8 R .029(metacharacters appear in shell v)184 256.8 R .028 +364.8 R .029(metacharacters appear in shell v)184 376.8 R .028 (ariable references in w)-.25 F .028(ords to be completed.)-.1 F .028 -(This means)5.028 F 1.072(that dollar signs in v)184 268.8 R 1.073 +(This means)5.028 F 1.072(that dollar signs in v)184 388.8 R 1.073 (ariable names that e)-.25 F 1.073 (xpand to directories will not be quoted; ho)-.15 F(w-)-.25 E -2.15 -.25 -(ev e)184 280.8 T 1.923 -.4(r, a).25 H 1.423 -.15(ny d).4 H 1.123 +(ev e)184 400.8 T 1.923 -.4(r, a).25 H 1.423 -.15(ny d).4 H 1.123 (ollar signs appearing in \214lenames will not be quoted, either).15 F 6.123(.T)-.55 G 1.122(his is acti)-6.123 F -.15(ve)-.25 G .59 (only when bash is using backslashes to quote completed \214lenames.)184 -292.8 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 304.8 Q +412.8 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 424.8 Q (ault, which is the def)-.1 E(ault bash beha)-.1 E(vior in v)-.2 E -(ersions through 4.2.)-.15 E F1(dir)144 321.6 Q(expand)-.18 E F0 .487 -(If set,)184 333.6 R F1(bash)2.987 E F0 .486 +(ersions through 4.2.)-.15 E F2(dir)144 441.6 Q(expand)-.18 E F0 .487 +(If set,)184 453.6 R F2(bash)2.987 E F0 .486 (replaces directory names with the results of w)2.986 F .486(ord e)-.1 F .486(xpansion when perform-)-.15 F .179(ing \214lename completion.)184 -345.6 R .179(This changes the contents of the readline editing b)5.179 F +465.6 R .179(This changes the contents of the readline editing b)5.179 F (uf)-.2 E(fer)-.25 E 5.18(.I)-.55 G 2.68(fn)-5.18 G(ot)-2.68 E(set,)184 -357.6 Q F1(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G -(hat the user typed.)-2.5 E F1(dirspell)144 374.4 Q F0 .859(If set,)184 -374.4 R F1(bash)3.359 E F0 .858 +477.6 Q F2(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G +(hat the user typed.)-2.5 E F2(dirspell)144 494.4 Q F0 .859(If set,)184 +494.4 R F2(bash)3.359 E F0 .858 (attempts spelling correction on directory names during w)3.359 F .858 (ord completion if)-.1 F -(the directory name initially supplied does not e)184 386.4 Q(xist.)-.15 -E F1(dotglob)144 403.2 Q F0 .165(If set,)184 403.2 R F1(bash)2.665 E F0 +(the directory name initially supplied does not e)184 506.4 Q(xist.)-.15 +E F2(dotglob)144 523.2 Q F0 .165(If set,)184 523.2 R F2(bash)2.665 E F0 .165(includes \214lenames be)2.665 F .165(ginning with a `.)-.15 F 2.665 ('i)-.7 G 2.665(nt)-2.665 G .165(he results of pathname e)-2.665 F -(xpansion.)-.15 E(The \214lenames)184 415.2 Q F1 -.63(``)2.5 G -.55(.') -.63 G(')-.08 E F0(and)5 E F1 -.63(``)2.5 G(..).63 E -.63('')-.55 G F0 +(xpansion.)-.15 E(The \214lenames)184 535.2 Q F2 -.63(``)2.5 G -.55(.') +.63 G(')-.08 E F0(and)5 E F2 -.63(``)2.5 G(..).63 E -.63('')-.55 G F0 (must al)5.63 E -.1(wa)-.1 G(ys be matched e).1 E(xplicitly)-.15 E 2.5 -(,e)-.65 G -.15(ve)-2.75 G 2.5(ni).15 G(f)-2.5 E F1(dotglob)2.5 E F0 -(is set.)2.5 E F1(execfail)144 432 Q F0 .517(If set, a non-interacti)184 -432 R .817 -.15(ve s)-.25 H .517(hell will not e).15 F .516 +(,e)-.65 G -.15(ve)-2.75 G 2.5(ni).15 G(f)-2.5 E F2(dotglob)2.5 E F0 +(is set.)2.5 E F2(execfail)144 552 Q F0 .517(If set, a non-interacti)184 +552 R .817 -.15(ve s)-.25 H .517(hell will not e).15 F .516 (xit if it cannot e)-.15 F -.15(xe)-.15 G .516 (cute the \214le speci\214ed as an ar).15 F(-)-.2 E(gument to the)184 -444 Q F1(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E(An interacti)5 E -.3 -.15(ve s)-.25 H(hell does not e).15 E(xit if)-.15 E F1(exec)2.5 E F0 --.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 460.8 Q F0 .716 -(If set, aliases are e)184 472.8 R .717(xpanded as described abo)-.15 F -1.017 -.15(ve u)-.15 H(nder).15 E F2(ALIASES)3.217 E/F3 9/Times-Roman@0 -SF(.)A F0 .717(This option is enabled)5.217 F(by def)184 484.8 Q -(ault for interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(extdeb)144 -501.6 Q(ug)-.2 E F0 .17(If set at shell in)184 513.6 R -.2(vo)-.4 G .17 +564 Q F2(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E(An interacti)5 E +.3 -.15(ve s)-.25 H(hell does not e).15 E(xit if)-.15 E F2(exec)2.5 E F0 +-.1(fa)2.5 G(ils.).1 E F2(expand_aliases)144 580.8 Q F0 .716 +(If set, aliases are e)184 592.8 R .717(xpanded as described abo)-.15 F +1.017 -.15(ve u)-.15 H(nder).15 E F1(ALIASES)3.217 E F3(.)A F0 .717 +(This option is enabled)5.217 F(by def)184 604.8 Q(ault for interacti) +-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F2(extdeb)144 621.6 Q(ug)-.2 E F0 +.17(If set at shell in)184 633.6 R -.2(vo)-.4 G .17 (cation, or in a shell startup \214le, arrange to e).2 F -.15(xe)-.15 G .17(cute the deb).15 F .17(ugger pro\214le)-.2 F 1.081 -(before the shell starts, identical to the)184 525.6 R F1 +(before the shell starts, identical to the)184 645.6 R F2 3.582 E(ugger)-.2 E F0 3.582(option. If)3.582 F 1.082(set after in)3.582 -F -.2(vo)-.4 G 1.082(cation, be-).2 F(ha)184 537.6 Q -(vior intended for use by deb)-.2 E(uggers is enabled:)-.2 E F1(1.)184 -554.4 Q F0(The)220 554.4 Q F14.251 E F0 1.751(option to the)4.251 -F F1(declar)4.251 E(e)-.18 E F0 -.2(bu)4.251 G 1.751 +F -.2(vo)-.4 G 1.082(cation, be-).2 F(ha)184 657.6 Q +(vior intended for use by deb)-.2 E(uggers is enabled:)-.2 E F2(1.)184 +674.4 Q F0(The)220 674.4 Q F24.251 E F0 1.751(option to the)4.251 +F F2(declar)4.251 E(e)-.18 E F0 -.2(bu)4.251 G 1.751 (iltin displays the source \214le name and line).2 F -(number corresponding to each function name supplied as an ar)220 566.4 -Q(gument.)-.18 E F1(2.)184 583.2 Q F0 1.667(If the command run by the) -220 583.2 R F1(DEB)4.167 E(UG)-.1 E F0 1.667(trap returns a non-zero v) +(number corresponding to each function name supplied as an ar)220 686.4 +Q(gument.)-.18 E F2(2.)184 703.2 Q F0 1.667(If the command run by the) +220 703.2 R F2(DEB)4.167 E(UG)-.1 E F0 1.667(trap returns a non-zero v) 4.167 F 1.667(alue, the ne)-.25 F(xt)-.15 E -(command is skipped and not e)220 595.2 Q -.15(xe)-.15 G(cuted.).15 E F1 -(3.)184 612 Q F0 .841(If the command run by the)220 612 R F1(DEB)3.341 E -(UG)-.1 E F0 .841(trap returns a v)3.341 F .84 -(alue of 2, and the shell is)-.25 F -.15(exe)220 624 S .488 -(cuting in a subroutine \(a shell function or a shell script e).15 F --.15(xe)-.15 G .488(cuted by the).15 F F1(.)2.988 E F0(or)2.988 E F1 -(sour)220 636 Q(ce)-.18 E F0 -.2(bu)2.5 G -(iltins\), the shell simulates a call to).2 E F1 -.18(re)2.5 G(tur).18 E -(n)-.15 E F0(.)A F1(4.)184 652.8 Q F2 -.27(BA)220 652.8 S(SH_ARGC).27 E -F0(and)3.154 E F2 -.27(BA)3.404 G(SH_ARGV).27 E F0 .904 -(are updated as described in their descriptions)3.154 F(abo)220 664.8 Q --.15(ve)-.15 G(.).15 E F1(5.)184 681.6 Q F0 1.637(Function tracing is e\ -nabled: command substitution, shell functions, and sub-)220 681.6 R -(shells in)220 693.6 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E -F1(\()2.5 E/F4 10/Times-Italic@0 SF(command)2.5 E F1(\))2.5 E F0 -(inherit the)2.5 E F1(DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1(RETURN)2.5 E F0 -(traps.)2.5 E F1(6.)184 710.4 Q F0 1.082(Error tracing is enabled: comm\ -and substitution, shell functions, and subshells)220 710.4 R(in)220 -722.4 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F4 -(command)2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5 E F0(trap.) -2.5 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(77)193.45 E 0 Cg EP +(command is skipped and not e)220 715.2 Q -.15(xe)-.15 G(cuted.).15 E +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(77)199.835 E 0 Cg EP %%Page: 78 78 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(extglob)144 84 Q F0 .4(If set, the e)184 84 R .4 +SF(3.)184 84 Q F0 .841(If the command run by the)220 84 R F1(DEB)3.341 E +(UG)-.1 E F0 .841(trap returns a v)3.341 F .84 +(alue of 2, and the shell is)-.25 F -.15(exe)220 96 S .488 +(cuting in a subroutine \(a shell function or a shell script e).15 F +-.15(xe)-.15 G .488(cuted by the).15 F F1(.)2.988 E F0(or)2.988 E F1 +(sour)220 108 Q(ce)-.18 E F0 -.2(bu)2.5 G +(iltins\), the shell simulates a call to).2 E F1 -.18(re)2.5 G(tur).18 E +(n)-.15 E F0(.)A F1(4.)184 124.8 Q/F2 9/Times-Bold@0 SF -.27(BA)220 +124.8 S(SH_ARGC).27 E F0(and)3.154 E F2 -.27(BA)3.404 G(SH_ARGV).27 E F0 +.904(are updated as described in their descriptions)3.154 F(abo)220 +136.8 Q -.15(ve)-.15 G(.).15 E F1(5.)184 153.6 Q F0 1.637(Function trac\ +ing is enabled: command substitution, shell functions, and sub-)220 +153.6 R(shells in)220 165.6 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith) +-2.5 E F1(\()2.5 E/F3 10/Times-Italic@0 SF(command)2.5 E F1(\))2.5 E F0 +(inherit the)2.5 E F1(DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1(RETURN)2.5 E F0 +(traps.)2.5 E F1(6.)184 182.4 Q F0 1.082(Error tracing is enabled: comm\ +and substitution, shell functions, and subshells)220 182.4 R(in)220 +194.4 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F3 +(command)2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5 E F0(trap.) +2.5 E F1(extglob)144 211.2 Q F0 .4(If set, the e)184 211.2 R .4 (xtended pattern matching features described abo)-.15 F .7 -.15(ve u) --.15 H(nder).15 E F1 -.1(Pa)2.9 G .4(thname Expan-).1 F(sion)184 96 Q F0 -(are enabled.)2.5 E F1(extquote)144 112.8 Q F0 .86(If set,)184 124.8 R -F1($)3.36 E F0<08>A/F2 10/Times-Italic@0 SF(string)A F0 3.36<0861>C(nd) --3.36 E F1($)3.36 E F0(")A F2(string)A F0 3.36("q)C .86 -(uoting is performed within)-3.36 F F1(${)3.36 E F2(par)A(ameter)-.15 E -F1(})A F0 -.15(ex)3.36 G .86(pansions en-).15 F -(closed in double quotes.)184 136.8 Q(This option is enabled by def)5 E -(ault.)-.1 E F1(failglob)144 153.6 Q F0 .242(If set, patterns which f) -184 153.6 R .243(ail to match \214lenames during pathname e)-.1 F .243 -(xpansion result in an e)-.15 F(x-)-.15 E(pansion error)184 165.6 Q(.) --.55 E F1 -.25(fo)144 182.4 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 -.937(If set, the suf)184 194.4 R<8c78>-.25 E .936(es speci\214ed by the) --.15 F/F3 9/Times-Bold@0 SF(FIGNORE)3.436 E F0 .936(shell v)3.186 F .936 -(ariable cause w)-.25 F .936(ords to be ignored)-.1 F .32 -(when performing w)184 206.4 R .32(ord completion e)-.1 F -.15(ve)-.25 G -2.82(ni).15 G 2.82(ft)-2.82 G .32(he ignored w)-2.82 F .32 -(ords are the only possible com-)-.1 F 2.948(pletions. See)184 218.4 R -F3 .448(SHELL V)2.948 F(ARIABLES)-1.215 E F0(abo)2.698 E .748 -.15(ve f) --.15 H .448(or a description of).15 F F3(FIGNORE)2.947 E/F4 9 -/Times-Roman@0 SF(.)A F0 .447(This option is)4.947 F(enabled by def)184 -230.4 Q(ault.)-.1 E F1(globasciiranges)144 247.2 Q F0 2.518 -(If set, range e)184 259.2 R 2.519 +-.15 H(nder).15 E F1 -.1(Pa)2.9 G .4(thname Expan-).1 F(sion)184 223.2 Q +F0(are enabled.)2.5 E F1(extquote)144 240 Q F0 .86(If set,)184 252 R F1 +($)3.36 E F0<08>A F3(string)A F0 3.36<0861>C(nd)-3.36 E F1($)3.36 E F0 +(")A F3(string)A F0 3.36("q)C .86(uoting is performed within)-3.36 F F1 +(${)3.36 E F3(par)A(ameter)-.15 E F1(})A F0 -.15(ex)3.36 G .86 +(pansions en-).15 F(closed in double quotes.)184 264 Q +(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 280.8 Q +F0 .242(If set, patterns which f)184 280.8 R .243 +(ail to match \214lenames during pathname e)-.1 F .243 +(xpansion result in an e)-.15 F(x-)-.15 E(pansion error)184 292.8 Q(.) +-.55 E F1 -.25(fo)144 309.6 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 +.937(If set, the suf)184 321.6 R<8c78>-.25 E .936(es speci\214ed by the) +-.15 F F2(FIGNORE)3.436 E F0 .936(shell v)3.186 F .936(ariable cause w) +-.25 F .936(ords to be ignored)-.1 F .32(when performing w)184 333.6 R +.32(ord completion e)-.1 F -.15(ve)-.25 G 2.82(ni).15 G 2.82(ft)-2.82 G +.32(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 2.948 +(pletions. See)184 345.6 R F2 .448(SHELL V)2.948 F(ARIABLES)-1.215 E F0 +(abo)2.698 E .748 -.15(ve f)-.15 H .448(or a description of).15 F F2 +(FIGNORE)2.947 E/F4 9/Times-Roman@0 SF(.)A F0 .447(This option is)4.947 +F(enabled by def)184 357.6 Q(ault.)-.1 E F1(globasciiranges)144 374.4 Q +F0 2.518(If set, range e)184 386.4 R 2.519 (xpressions used in pattern matching brack)-.15 F 2.519(et e)-.1 F 2.519 -(xpressions \(see)-.15 F F3 -.09(Pa)5.019 G(tter).09 E(n)-.135 E -(Matching)184 271.2 Q F0(abo)2.965 E -.15(ve)-.15 G 3.215(\)b).15 G(eha) +(xpressions \(see)-.15 F F2 -.09(Pa)5.019 G(tter).09 E(n)-.135 E +(Matching)184 398.4 Q F0(abo)2.965 E -.15(ve)-.15 G 3.215(\)b).15 G(eha) -3.215 E 1.015 -.15(ve a)-.2 H 3.214(si).15 G 3.214(fi)-3.214 G 3.214 (nt)-3.214 G .714(he traditional C locale when performing comparisons.) --3.214 F 1.02(That is, the current locale')184 283.2 R 3.52(sc)-.55 G +-3.214 F 1.02(That is, the current locale')184 410.4 R 3.52(sc)-.55 G 1.02(ollating sequence is not tak)-3.52 F 1.02(en into account, so)-.1 F -F1(b)3.52 E F0 1.02(will not)3.52 F .957(collate between)184 295.2 R F1 +F1(b)3.52 E F0 1.02(will not)3.52 F .957(collate between)184 422.4 R F1 (A)3.457 E F0(and)3.457 E F1(B)3.457 E F0 3.457(,a)C .957(nd upper) -3.457 F .957(-case and lo)-.2 F(wer)-.25 E .956 -(-case ASCII characters will collate)-.2 F(together)184 307.2 Q(.)-.55 E -F1(globskipdots)144 324 Q F0 .284(If set, pathname e)184 336 R .284 +(-case ASCII characters will collate)-.2 F(together)184 434.4 Q(.)-.55 E +F1(globskipdots)144 451.2 Q F0 .284(If set, pathname e)184 463.2 R .284 (xpansion will ne)-.15 F -.15(ve)-.25 G 2.785(rm).15 G .285 (atch the \214lenames)-2.785 F F1 -.63(``)2.785 G -.55(.').63 G(')-.08 E F0(and)5.285 E F1 -.63(``)2.785 G(..).63 E -.63('')-.55 G F0 2.785(,e) .63 G -.15(ve)-3.035 G 2.785(ni).15 G 2.785(ft)-2.785 G .285(he pat-) --2.785 F(tern be)184 348 Q(gins with a)-.15 E F1 -.63(``)2.5 G -.55(.') -.63 G(')-.08 E F0 5(.T)C(his option is enabled by def)-5 E(ault.)-.1 E -F1(globstar)144 364.8 Q F0 .519(If set, the pattern)184 364.8 R F1(**) +-2.785 F(tern be)184 475.2 Q(gins with a)-.15 E F1 -.63(``)2.5 G -.55 +(.').63 G(')-.08 E F0 5(.T)C(his option is enabled by def)-5 E(ault.)-.1 +E F1(globstar)144 492 Q F0 .519(If set, the pattern)184 492 R F1(**) 3.019 E F0 .519(used in a pathname e)3.019 F .519(xpansion conte)-.15 F .518(xt will match all \214les and zero)-.15 F .431 -(or more directories and subdirectories.)184 376.8 R .431 +(or more directories and subdirectories.)184 504 R .431 (If the pattern is follo)5.431 F .432(wed by a)-.25 F F1(/)2.932 E F0 2.932(,o)C .432(nly directories)-2.932 F(and subdirectories match.)184 -388.8 Q F1(gnu_errfmt)144 405.6 Q F0(If set, shell error messages are w\ -ritten in the standard GNU error message format.)184 417.6 Q F1 -(histappend)144 434.4 Q F0 .676 +516 Q F1(gnu_errfmt)144 532.8 Q F0(If set, shell error messages are wri\ +tten in the standard GNU error message format.)184 544.8 Q F1 +(histappend)144 561.6 Q F0 .676 (If set, the history list is appended to the \214le named by the v)184 -446.4 R .676(alue of the)-.25 F F3(HISTFILE)3.176 E F0 -.25(va)2.926 G -(ri-).25 E(able when the shell e)184 458.4 Q(xits, rather than o)-.15 E --.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 475.2 Q(eedit) --.18 E F0 .575(If set, and)184 487.2 R F1 -.18(re)3.075 G(adline).18 E +573.6 R .676(alue of the)-.25 F F2(HISTFILE)3.176 E F0 -.25(va)2.926 G +(ri-).25 E(able when the shell e)184 585.6 Q(xits, rather than o)-.15 E +-.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 602.4 Q(eedit) +-.18 E F0 .575(If set, and)184 614.4 R F1 -.18(re)3.075 G(adline).18 E F0 .575(is being used, a user is gi)3.075 F -.15(ve)-.25 G 3.075(nt).15 G .576(he opportunity to re-edit a f)-3.075 F .576(ailed his-)-.1 F -(tory substitution.)184 499.2 Q F1(histv)144 516 Q(erify)-.1 E F0 .403 -(If set, and)184 528 R F1 -.18(re)2.903 G(adline).18 E F0 .403 +(tory substitution.)184 626.4 Q F1(histv)144 643.2 Q(erify)-.1 E F0 .403 +(If set, and)184 655.2 R F1 -.18(re)2.903 G(adline).18 E F0 .403 (is being used, the results of history substitution are not immediately) -2.903 F .661(passed to the shell parser)184 540 R 5.661(.I)-.55 G .662 +2.903 F .661(passed to the shell parser)184 667.2 R 5.661(.I)-.55 G .662 (nstead, the resulting line is loaded into the)-5.661 F F1 -.18(re)3.162 -G(adline).18 E F0(editing)3.162 E -.2(bu)184 552 S -.25(ff).2 G(er).25 E -2.5(,a)-.4 G(llo)-2.5 E(wing further modi\214cation.)-.25 E F1 -(hostcomplete)144 568.8 Q F0 1.182(If set, and)184 580.8 R F1 -.18(re) -3.682 G(adline).18 E F0 1.182(is being used,)3.682 F F1(bash)3.682 E F0 -1.181(will attempt to perform hostname completion)3.681 F 1.38(when a w) -184 592.8 R 1.38(ord containing a)-.1 F F1(@)3.881 E F0 1.381 +G(adline).18 E F0(editing)3.162 E -.2(bu)184 679.2 S -.25(ff).2 G(er).25 +E 2.5(,a)-.4 G(llo)-2.5 E(wing further modi\214cation.)-.25 E F1 +(hostcomplete)144 696 Q F0 1.182(If set, and)184 708 R F1 -.18(re)3.682 +G(adline).18 E F0 1.182(is being used,)3.682 F F1(bash)3.682 E F0 1.181 +(will attempt to perform hostname completion)3.681 F 1.38(when a w)184 +720 R 1.38(ord containing a)-.1 F F1(@)3.881 E F0 1.381 (is being completed \(see)3.881 F F1(Completing)3.881 E F0(under)3.881 E -F3(READLINE)3.881 E F0(abo)184 604.8 Q -.15(ve)-.15 G 2.5(\). This).15 F -(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 621.6 Q F0 -(If set,)184 633.6 Q F1(bash)2.5 E F0(will send)2.5 E F3(SIGHUP)2.5 E F0 -(to all jobs when an interacti)2.25 E .3 -.15(ve l)-.25 H(ogin shell e) -.15 E(xits.)-.15 E F1(inherit_err)144 650.4 Q(exit)-.18 E F0 .22 -(If set, command substitution inherits the v)184 662.4 R .219 -(alue of the)-.25 F F1(err)2.719 E(exit)-.18 E F0 .219 -(option, instead of unsetting)2.719 F(it in the subshell en)184 674.4 Q -2.5(vironment. This)-.4 F(option is enabled when)2.5 E F2(posix mode)2.5 -E F0(is enabled.)2.5 E F1(interacti)144 691.2 Q -.1(ve)-.1 G(_comments) -.1 E F0 .33(If set, allo)184 703.2 R 2.83(waw)-.25 G .33(ord be)-2.93 F -.33(ginning with)-.15 F F1(#)2.83 E F0 .33(to cause that w)2.83 F .33 -(ord and all remaining characters on)-.1 F .967 -(that line to be ignored in an interacti)184 715.2 R 1.267 -.15(ve s) --.25 H .967(hell \(see).15 F F3(COMMENTS)3.467 E F0(abo)3.217 E -.15(ve) --.15 G 3.467(\). This).15 F .967(option is)3.467 F(enabled by def)184 -727.2 Q(ault.)-.1 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(78) -193.45 E 0 Cg EP +F2(READLINE)3.881 E F0(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(78) +199.835 E 0 Cg EP %%Page: 79 79 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(lastpipe)144 84 Q F0 .066(If set, and job control is not acti)184 84 -R -.15(ve)-.25 G 2.566(,t).15 G .066 -(he shell runs the last command of a pipeline not e)-2.566 F -.15(xe) --.15 G(-).15 E(cuted in the background in the current shell en)184 96 Q -(vironment.)-.4 E F1(lithist)144 112.8 Q F0 .655(If set, and the)184 -112.8 R F1(cmdhist)3.155 E F0 .654 -(option is enabled, multi-line commands are sa)3.154 F -.15(ve)-.2 G -3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F -(with embedded ne)184 124.8 Q +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(abo)184 84 Q -.15 +(ve)-.15 G 2.5(\). This).15 F(is enabled by def)2.5 E(ault.)-.1 E/F1 10 +/Times-Bold@0 SF(huponexit)144 100.8 Q F0(If set,)184 112.8 Q F1(bash) +2.5 E F0(will send)2.5 E/F2 9/Times-Bold@0 SF(SIGHUP)2.5 E F0 +(to all jobs when an interacti)2.25 E .3 -.15(ve l)-.25 H(ogin shell e) +.15 E(xits.)-.15 E F1(inherit_err)144 129.6 Q(exit)-.18 E F0 .22 +(If set, command substitution inherits the v)184 141.6 R .219 +(alue of the)-.25 F F1(err)2.719 E(exit)-.18 E F0 .219 +(option, instead of unsetting)2.719 F(it in the subshell en)184 153.6 Q +2.5(vironment. This)-.4 F(option is enabled when)2.5 E/F3 10 +/Times-Italic@0 SF(posix mode)2.5 E F0(is enabled.)2.5 E F1(interacti) +144 170.4 Q -.1(ve)-.1 G(_comments).1 E F0 .33(If set, allo)184 182.4 R +2.83(waw)-.25 G .33(ord be)-2.93 F .33(ginning with)-.15 F F1(#)2.83 E +F0 .33(to cause that w)2.83 F .33(ord and all remaining characters on) +-.1 F .967(that line to be ignored in an interacti)184 194.4 R 1.267 +-.15(ve s)-.25 H .967(hell \(see).15 F F2(COMMENTS)3.467 E F0(abo)3.217 +E -.15(ve)-.15 G 3.467(\). This).15 F .967(option is)3.467 F +(enabled by def)184 206.4 Q(ault.)-.1 E F1(lastpipe)144 223.2 Q F0 .066 +(If set, and job control is not acti)184 223.2 R -.15(ve)-.25 G 2.566 +(,t).15 G .066(he shell runs the last command of a pipeline not e)-2.566 +F -.15(xe)-.15 G(-).15 E +(cuted in the background in the current shell en)184 235.2 Q(vironment.) +-.4 E F1(lithist)144 252 Q F0 .655(If set, and the)184 252 R F1(cmdhist) +3.155 E F0 .654(option is enabled, multi-line commands are sa)3.154 F +-.15(ve)-.2 G 3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F +(with embedded ne)184 264 Q (wlines rather than using semicolon separators where possible.)-.25 E F1 -(localv)144 141.6 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 153.6 R +(localv)144 280.8 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 292.8 R .422(ariables inherit the v)-.25 F .422(alue and attrib)-.25 F .422 (utes of a v)-.2 F .422(ariable of the same name that)-.25 F -.15(ex)184 -165.6 S .174(ists at a pre).15 F .174(vious scope before an)-.25 F 2.673 +304.8 S .174(ists at a pre).15 F .174(vious scope before an)-.25 F 2.673 (yn)-.15 G .673 -.25(ew va)-2.673 H .173(lue is assigned.).25 F .173 -(The nameref attrib)5.173 F .173(ute is not)-.2 F(inherited.)184 177.6 Q -F1(localv)144 194.4 Q(ar_unset)-.1 E F0 .328(If set, calling)184 206.4 R +(The nameref attrib)5.173 F .173(ute is not)-.2 F(inherited.)184 316.8 Q +F1(localv)144 333.6 Q(ar_unset)-.1 E F0 .328(If set, calling)184 345.6 R F1(unset)2.828 E F0 .328(on local v)2.828 F .329(ariables in pre)-.25 F .329(vious function scopes marks them so subse-)-.25 F .543(quent looku\ ps \214nd them unset until that function returns. This is identical to \ -the beha)184 218.4 R(v-)-.2 E(ior of unsetting local v)184 230.4 Q -(ariables at the current function scope.)-.25 E F1(login_shell)144 247.2 +the beha)184 357.6 R(v-)-.2 E(ior of unsetting local v)184 369.6 Q +(ariables at the current function scope.)-.25 E F1(login_shell)144 386.4 Q F0 .486 (The shell sets this option if it is started as a login shell \(see)184 -259.2 R/F2 9/Times-Bold@0 SF(INV)2.987 E(OCA)-.405 E(TION)-.855 E F0 -(abo)2.737 E -.15(ve)-.15 G 2.987(\). The).15 F -.25(va)184 271.2 S -(lue may not be changed.).25 E F1(mailwar)144 288 Q(n)-.15 E F0 .815 -(If set, and a \214le that)184 300 R F1(bash)3.315 E F0 .814 +398.4 R F2(INV)2.987 E(OCA)-.405 E(TION)-.855 E F0(abo)2.737 E -.15(ve) +-.15 G 2.987(\). The).15 F -.25(va)184 410.4 S(lue may not be changed.) +.25 E F1(mailwar)144 427.2 Q(n)-.15 E F0 .815(If set, and a \214le that) +184 439.2 R F1(bash)3.315 E F0 .814 (is checking for mail has been accessed since the last time it)3.315 F --.1(wa)184 312 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E -(`The mail in)-.74 E/F3 10/Times-Italic@0 SF(mail\214le)2.5 E F0 -(has been read')2.5 E 2.5('i)-.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1 -(no_empty_cmd_completion)144 328.8 Q F0 .324(If set, and)184 340.8 R F1 --.18(re)2.824 G(adline).18 E F0 .324(is being used,)2.824 F F1(bash) -2.824 E F0 .324(will not attempt to search the)2.824 F F2 -.666(PA)2.825 -G(TH)-.189 E F0 .325(for possible)2.575 F -(completions when completion is attempted on an empty line.)184 352.8 Q -F1(nocaseglob)144 369.6 Q F0 .437(If set,)184 381.6 R F1(bash)2.937 E F0 +-.1(wa)184 451.2 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E +(`The mail in)-.74 E F3(mail\214le)2.5 E F0(has been read')2.5 E 2.5('i) +-.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1(no_empty_cmd_completion)144 468 +Q F0 .324(If set, and)184 480 R F1 -.18(re)2.824 G(adline).18 E F0 .324 +(is being used,)2.824 F F1(bash)2.824 E F0 .324 +(will not attempt to search the)2.824 F F2 -.666(PA)2.825 G(TH)-.189 E +F0 .325(for possible)2.575 F +(completions when completion is attempted on an empty line.)184 492 Q F1 +(nocaseglob)144 508.8 Q F0 .437(If set,)184 520.8 R F1(bash)2.937 E F0 .436(matches \214lenames in a case\255insensiti)2.937 F .736 -.15(ve f) --.25 H .436(ashion when performing pathname).05 F -.15(ex)184 393.6 S +-.25 H .436(ashion when performing pathname).05 F -.15(ex)184 532.8 S (pansion \(see).15 E F1 -.1(Pa)2.5 G(thname Expansion).1 E F0(abo)2.5 E --.15(ve)-.15 G(\).).15 E F1(nocasematch)144 410.4 Q F0 1.193(If set,)184 -422.4 R F1(bash)3.693 E F0 1.194 +-.15(ve)-.15 G(\).).15 E F1(nocasematch)144 549.6 Q F0 1.193(If set,)184 +561.6 R F1(bash)3.693 E F0 1.194 (matches patterns in a case\255insensiti)3.693 F 1.494 -.15(ve f)-.25 H -1.194(ashion when performing matching).05 F .551(while e)184 434.4 R +1.194(ashion when performing matching).05 F .551(while e)184 573.6 R -.15(xe)-.15 G(cuting).15 E F1(case)3.051 E F0(or)3.051 E F1([[)3.051 E F0 .551(conditional commands, when performing pattern substitution)3.051 -F -.1(wo)184 446.4 S .622(rd e).1 F .623(xpansions, or when \214ltering\ +F -.1(wo)184 585.6 S .622(rd e).1 F .623(xpansions, or when \214ltering\ possible completions as part of programmable com-)-.15 F(pletion.)184 -458.4 Q F1(noexpand_translation)144 475.2 Q F0 1.118(If set,)184 487.2 R +597.6 Q F1(noexpand_translation)144 614.4 Q F0 1.118(If set,)184 626.4 R F1(bash)3.618 E F0 1.117(encloses the translated results of $"..." quot\ -ing in single quotes instead of)3.617 F(double quotes.)184 499.2 Q +ing in single quotes instead of)3.617 F(double quotes.)184 638.4 Q (If the string is not translated, this has no ef)5 E(fect.)-.25 E F1 -(nullglob)144 516 Q F0 .854(If set,)184 528 R F1(bash)3.354 E F0(allo) -3.354 E .855(ws patterns which match no \214les \(see)-.25 F F1 -.1(Pa) -3.355 G .855(thname Expansion).1 F F0(abo)3.355 E -.15(ve)-.15 G 3.355 -(\)t).15 G(o)-3.355 E -.15(ex)184 540 S +(nullglob)144 655.2 Q F0 .854(If set,)184 667.2 R F1(bash)3.354 E F0 +(allo)3.354 E .855(ws patterns which match no \214les \(see)-.25 F F1 +-.1(Pa)3.355 G .855(thname Expansion).1 F F0(abo)3.355 E -.15(ve)-.15 G +3.355(\)t).15 G(o)-3.355 E -.15(ex)184 679.2 S (pand to a null string, rather than themselv).15 E(es.)-.15 E F1 -(patsub_r)144 556.8 Q(eplacement)-.18 E F0 .106(If set,)184 568.8 R F1 -(bash)2.606 E F0 -.15(ex)2.606 G .106(pands occurrences of).15 F F1(&) -2.606 E F0 .105(in the replacement string of pattern substitution to) -2.606 F .527(the te)184 580.8 R .527 +(patsub_r)144 696 Q(eplacement)-.18 E F0 .106(If set,)184 708 R F1(bash) +2.606 E F0 -.15(ex)2.606 G .106(pands occurrences of).15 F F1(&)2.606 E +F0 .105(in the replacement string of pattern substitution to)2.606 F +.527(the te)184 720 R .527 (xt matched by the pattern, as described under)-.15 F F1 -.1(Pa)3.028 G .528(rameter Expansion).1 F F0(abo)3.028 E -.15(ve)-.15 G 5.528(.T).15 G -(his)-5.528 E(option is enabled by def)184 592.8 Q(ault.)-.1 E F1(pr)144 -609.6 Q(ogcomp)-.18 E F0 .677(If set, the programmable completion f)184 -621.6 R .677(acilities \(see)-.1 F F1(Pr)3.176 E .676 -(ogrammable Completion)-.18 F F0(abo)3.176 E -.15(ve)-.15 G(\)).15 E -(are enabled.)184 633.6 Q(This option is enabled by def)5 E(ault.)-.1 E -F1(pr)144 650.4 Q(ogcomp_alias)-.18 E F0 2.124 -(If set, and programmable completion is enabled,)184 662.4 R F1(bash) -4.624 E F0 2.124(treats a command name that)4.624 F(doesn')184 674.4 Q -3.289(th)-.18 G -2.25 -.2(av e)-3.289 H(an)3.489 E 3.289(yc)-.15 G .789 -(ompletions as a possible alias and attempts alias e)-3.289 F .788 -(xpansion. If it has)-.15 F 1.473(an alias,)184 686.4 R F1(bash)3.973 E -F0 1.473(attempts programmable completion using the command w)3.973 F -1.473(ord resulting)-.1 F(from the e)184 698.4 Q(xpanded alias.)-.15 E -(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(79)193.45 E 0 Cg EP +(his)-5.528 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(79)199.835 E 0 +Cg EP %%Page: 80 80 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(pr)144 84 Q(omptv)-.18 E(ars)-.1 E F0 1.448 -(If set, prompt strings under)184 96 R 1.448(go parameter e)-.18 F 1.447 -(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 108 S .17 -(pansion, and quote remo).15 F -.25(va)-.15 G 2.67(la).25 G .17 -(fter being e)-2.67 F .17(xpanded as described in)-.15 F/F2 9 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(option is enabled by def)184 84 Q(ault.)-.1 E/F1 10/Times-Bold@0 SF(pr) +144 100.8 Q(ogcomp)-.18 E F0 .677(If set, the programmable completion f) +184 112.8 R .677(acilities \(see)-.1 F F1(Pr)3.176 E .676 +(ogrammable Completion)-.18 F F0(abo)3.176 E -.15(ve)-.15 G(\)).15 E +(are enabled.)184 124.8 Q(This option is enabled by def)5 E(ault.)-.1 E +F1(pr)144 141.6 Q(ogcomp_alias)-.18 E F0 2.124 +(If set, and programmable completion is enabled,)184 153.6 R F1(bash) +4.624 E F0 2.124(treats a command name that)4.624 F(doesn')184 165.6 Q +3.289(th)-.18 G -2.25 -.2(av e)-3.289 H(an)3.489 E 3.289(yc)-.15 G .789 +(ompletions as a possible alias and attempts alias e)-3.289 F .788 +(xpansion. If it has)-.15 F 1.473(an alias,)184 177.6 R F1(bash)3.973 E +F0 1.473(attempts programmable completion using the command w)3.973 F +1.473(ord resulting)-.1 F(from the e)184 189.6 Q(xpanded alias.)-.15 E +F1(pr)144 206.4 Q(omptv)-.18 E(ars)-.1 E F0 1.448 +(If set, prompt strings under)184 218.4 R 1.448(go parameter e)-.18 F +1.447(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 +230.4 S .17(pansion, and quote remo).15 F -.25(va)-.15 G 2.67(la).25 G +.17(fter being e)-2.67 F .17(xpanded as described in)-.15 F/F2 9 /Times-Bold@0 SF(PR)2.671 E(OMPTING)-.27 E F0(abo)2.421 E -.15(ve)-.15 G -(.).15 E(This option is enabled by def)184 120 Q(ault.)-.1 E F1 -.18(re) -144 136.8 S(stricted_shell).18 E F0 1.069 +(.).15 E(This option is enabled by def)184 242.4 Q(ault.)-.1 E F1 -.18 +(re)144 259.2 S(stricted_shell).18 E F0 1.069 (The shell sets this option if it is started in restricted mode \(see) -184 148.8 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 160.8 Q 2.86 +184 271.2 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 283.2 Q 2.86 (w\). The)-.25 F -.25(va)2.86 G .36(lue may not be changed.).25 F .36 (This is not reset when the startup \214les are e)5.36 F -.15(xe)-.15 G -(-).15 E(cuted, allo)184 172.8 Q(wing the startup \214les to disco)-.25 +(-).15 E(cuted, allo)184 295.2 Q(wing the startup \214les to disco)-.25 E -.15(ve)-.15 G 2.5(rw).15 G(hether or not a shell is restricted.)-2.5 -E F1(shift_v)144 189.6 Q(erbose)-.1 E F0 .502(If set, the)184 201.6 R F1 +E F1(shift_v)144 312 Q(erbose)-.1 E F0 .502(If set, the)184 324 R F1 (shift)3.002 E F0 -.2(bu)3.002 G .501 (iltin prints an error message when the shift count e).2 F .501 -(xceeds the number)-.15 F(of positional parameters.)184 213.6 Q F1(sour) -144 230.4 Q(cepath)-.18 E F0 .77(If set, the)184 242.4 R F1(.)3.27 E F0 +(xceeds the number)-.15 F(of positional parameters.)184 336 Q F1(sour) +144 352.8 Q(cepath)-.18 E F0 .77(If set, the)184 364.8 R F1(.)3.27 E F0 (\()3.27 E F1(sour)A(ce)-.18 E F0 3.27(\)b)C .77(uiltin uses the v)-3.47 F .771(alue of)-.25 F F2 -.666(PA)3.271 G(TH)-.189 E F0 .771 (to \214nd the directory containing the)3.021 F -(\214le supplied as an ar)184 254.4 Q 2.5(gument. This)-.18 F -(option is enabled by def)2.5 E(ault.)-.1 E F1 -.1(va)144 271.2 S(rr).1 +(\214le supplied as an ar)184 376.8 Q 2.5(gument. This)-.18 F +(option is enabled by def)2.5 E(ault.)-.1 E F1 -.1(va)144 393.6 S(rr).1 E(edir_close)-.18 E F0 .74(If set, the shell automatically closes \214l\ -e descriptors assigned using the)184 283.2 R/F3 10/Times-Italic@0 SF -({varname})3.24 E F0(redi-)3.24 E .423(rection syntax \(see)184 295.2 R +e descriptors assigned using the)184 405.6 R/F3 10/Times-Italic@0 SF +({varname})3.24 E F0(redi-)3.24 E .423(rection syntax \(see)184 417.6 R F2(REDIRECTION)2.924 E F0(abo)2.674 E -.15(ve)-.15 G 2.924(\)i).15 G .424(nstead of lea)-2.924 F .424(ving them open when the com-)-.2 F -(mand completes.)184 307.2 Q F1(xpg_echo)144 324 Q F0(If set, the)184 -336 Q F1(echo)2.5 E F0 -.2(bu)2.5 G(iltin e).2 E +(mand completes.)184 429.6 Q F1(xpg_echo)144 446.4 Q F0(If set, the)184 +458.4 Q F1(echo)2.5 E F0 -.2(bu)2.5 G(iltin e).2 E (xpands backslash-escape sequences by def)-.15 E(ault.)-.1 E F1(suspend) -108 352.8 Q F0([)2.5 E F1A F0(])A 1.002(Suspend the e)144 364.8 R --.15(xe)-.15 G 1.002(cution of this shell until it recei).15 F -.15(ve) --.25 G 3.501(sa).15 G F2(SIGCONT)A F0 3.501(signal. A)3.251 F 1.001 -(login shell cannot be)3.501 F .022(suspended; the)144 376.8 R F1 -2.522 E F0 .022(option can be used to o)2.522 F -.15(ve)-.15 G .022 -(rride this and force the suspension.).15 F .023(The return status is) -5.023 F 2.5(0u)144 388.8 S(nless the shell is a login shell and)-2.5 E -F12.5 E F0(is not supplied, or if job control is not enabled.)2.5 -E F1(test)108 405.6 Q F3 -.2(ex)2.5 G(pr).2 E F1([)108 417.6 Q F3 -.2 -(ex)2.5 G(pr).2 E F1(])2.5 E F0 .878 -(Return a status of 0 \(true\) or 1 \(f)144 417.6 R .877 -(alse\) depending on the e)-.1 F -.25(va)-.25 G .877 -(luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 429.6 -S(pr).2 E F0 5.53(.E).73 G .53 +108 475.2 Q F0([)2.5 E F1A F0(])A .91(Suspend the e)144 487.2 R +-.15(xe)-.15 G .91(cution of this shell until it recei).15 F -.15(ve) +-.25 G 3.41(sa).15 G F2(SIGCONT)-.001 E F0 3.409(signal. A)3.159 F .909 +(login shell, or a shell)3.409 F .752 +(without job control enabled, cannot be suspended; the)144 499.2 R F1 +3.252 E F0 .753(option can be used to o)3.253 F -.15(ve)-.15 G +.753(rride this and).15 F .107(force the suspension.)144 511.2 R .107(T\ +he return status is 0 unless the shell is a login shell or job control \ +is not en-)5.107 F(abled and)144 523.2 Q F12.5 E F0 +(is not supplied.)2.5 E F1(test)108 540 Q F3 -.2(ex)2.5 G(pr).2 E F1([) +108 552 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .877 +(Return a status of 0 \(true\) or 1 \(f)144 552 R .878 +(alse\) depending on the e)-.1 F -.25(va)-.25 G .878 +(luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 564 S +(pr).2 E F0 5.53(.E).73 G .53 (ach operator and operand must be a separate ar)-5.53 F 3.03 -(gument. Expressions)-.18 F .53(are composed of the)3.03 F 1.361 -(primaries described abo)144 441.6 R 1.661 -.15(ve u)-.15 H(nder).15 E -F2(CONDITION)3.861 E 1.36(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.) -A F1(test)5.86 E F0 1.36(does not accept an)3.86 F 3.86(yo)-.15 G(p-) --3.86 E(tions, nor does it accept and ignore an ar)144 453.6 Q -(gument of)-.18 E F12.5 E F0(as signifying the end of options.)2.5 -E .785(Expressions may be combined using the follo)144 471.6 R .786 -(wing operators, listed in decreasing order of prece-)-.25 F 3.412 -(dence. The)144 483.6 R -.25(eva)3.412 G .912 -(luation depends on the number of ar).25 F .911(guments; see belo)-.18 F -4.711 -.65(w. O)-.25 H .911(perator precedence is).65 F -(used when there are \214v)144 495.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G -(ore ar)-2.5 E(guments.)-.18 E F1(!)144 507.6 Q F3 -.2(ex)2.5 G(pr).2 E -F0 -.35(Tr)180 507.6 S(ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 -E(alse.)-.1 E F1(\()144 519.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 -.26(Returns the v)180 519.6 R .26(alue of)-.25 F F3 -.2(ex)2.76 G(pr).2 -E F0 5.26(.T)C .26(his may be used to o)-5.26 F -.15(ve)-.15 G .26 -(rride the normal precedence of opera-).15 F(tors.)180 531.6 Q F3 -.2 -(ex)144 543.6 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 --.35(Tr)180 555.6 S(ue if both).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(and)2.5 -E F3 -.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F3 -.2(ex)144 567.6 S -(pr1).2 E F02.5 E F1(o)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 -579.6 S(ue if either).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F3 -.2 -(ex)2.5 G(pr2).2 E F0(is true.)2.52 E F1(test)144 596.4 Q F0(and)2.5 E -F1([)2.5 E F0 -.25(eva)2.5 G(luate conditional e).25 E +(gument. Expressions)-.18 F .53(are composed of the)3.03 F 1.36 +(primaries described abo)144 576 R 1.66 -.15(ve u)-.15 H(nder).15 E F2 +(CONDITION)3.86 E 1.36(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A +F1(test)5.86 E F0 1.361(does not accept an)3.86 F 3.861(yo)-.15 G(p-) +-3.861 E(tions, nor does it accept and ignore an ar)144 588 Q(gument of) +-.18 E F12.5 E F0(as signifying the end of options.)2.5 E .786 +(Expressions may be combined using the follo)144 606 R .785 +(wing operators, listed in decreasing order of prece-)-.25 F 3.411 +(dence. The)144 618 R -.25(eva)3.411 G .911 +(luation depends on the number of ar).25 F .912(guments; see belo)-.18 F +4.712 -.65(w. O)-.25 H .912(perator precedence is).65 F +(used when there are \214v)144 630 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G(ore ar) +-2.5 E(guments.)-.18 E F1(!)144 642 Q F3 -.2(ex)2.5 G(pr).2 E F0 -.35 +(Tr)180 642 S(ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 E(alse.) +-.1 E F1(\()144 654 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 .26 +(Returns the v)180 654 R .26(alue of)-.25 F F3 -.2(ex)2.76 G(pr).2 E F0 +5.26(.T)C .26(his may be used to o)-5.26 F -.15(ve)-.15 G .26 +(rride the normal precedence of opera-).15 F(tors.)180 666 Q F3 -.2(ex) +144 678 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35 +(Tr)180 690 S(ue if both).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(and)2.5 E F3 +-.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F3 -.2(ex)144 702 S(pr1).2 E +F02.5 E F1(o)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 714 S +(ue if either).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F3 -.2(ex)2.5 G +(pr2).2 E F0(is true.)2.52 E F1(test)144 730.8 Q F0(and)2.5 E F1([)2.5 E +F0 -.25(eva)2.5 G(luate conditional e).25 E (xpressions using a set of rules based on the number of ar)-.15 E -(guments.)-.18 E 2.5(0a)144 614.4 S -.18(rg)-2.5 G(uments).18 E(The e) -180 626.4 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 638.4 S -.18 -(rg)-2.5 G(ument).18 E(The e)180 650.4 Q -(xpression is true if and only if the ar)-.15 E(gument is not null.)-.18 -E 2.5(2a)144 662.4 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) -180 674.4 R .37(gument is)-.18 F F1(!)2.87 E F0 2.87(,t)C .37(he e)-2.87 -F .37(xpression is true if and only if the second ar)-.15 F .37 -(gument is null.)-.18 F .379(If the \214rst ar)180 686.4 R .38 -(gument is one of the unary conditional operators listed abo)-.18 F .68 --.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.88 E(TION)180 698.4 Q .553 -(AL EXPRESSIONS)-.18 F F4(,)A F0 .552(the e)2.802 F .552 -(xpression is true if the unary test is true.)-.15 F .552 -(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 710.4 Q -(alid unary conditional operator)-.25 E 2.5(,t)-.4 G(he e)-2.5 E -(xpression is f)-.15 E(alse.)-.1 E(GNU Bash 5.2)72 768 Q(2022 March 11) -144.29 E(80)193.45 E 0 Cg EP +(guments.)-.18 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(80)199.835 +E 0 Cg EP %%Page: 81 81 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.5(3a)144 84 S --.18(rg)-2.5 G(uments).18 E .236(The follo)180 96 R .236 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.5(0a)144 84 S +-.18(rg)-2.5 G(uments).18 E(The e)180 96 Q(xpression is f)-.15 E(alse.) +-.1 E 2.5(1a)144 108 S -.18(rg)-2.5 G(ument).18 E(The e)180 120 Q +(xpression is true if and only if the ar)-.15 E(gument is not null.)-.18 +E 2.5(2a)144 132 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar)180 +144 R .37(gument is)-.18 F/F1 10/Times-Bold@0 SF(!)2.87 E F0 2.87(,t)C +.37(he e)-2.87 F .37(xpression is true if and only if the second ar)-.15 +F .37(gument is null.)-.18 F .38(If the \214rst ar)180 156 R .38 +(gument is one of the unary conditional operators listed abo)-.18 F .679 +-.15(ve u)-.15 H(nder).15 E/F2 9/Times-Bold@0 SF(CONDI-)2.879 E(TION)180 +168 Q .552(AL EXPRESSIONS)-.18 F/F3 9/Times-Roman@0 SF(,)A F0 .552 +(the e)2.802 F .552(xpression is true if the unary test is true.)-.15 F +.552(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 180 Q +(alid unary conditional operator)-.25 E 2.5(,t)-.4 G(he e)-2.5 E +(xpression is f)-.15 E(alse.)-.1 E 2.5(3a)144 192 S -.18(rg)-2.5 G +(uments).18 E .236(The follo)180 204 R .236 (wing conditions are applied in the order listed.)-.25 F .236 (If the second ar)5.236 F .236(gument is one of)-.18 F .855 -(the binary conditional operators listed abo)180 108 R 1.155 -.15(ve u) --.15 H(nder).15 E/F1 9/Times-Bold@0 SF(CONDITION)3.355 E .855 -(AL EXPRESSIONS)-.18 F/F2 9/Times-Roman@0 SF(,)A F0(the)3.104 E .578 -(result of the e)180 120 R .578(xpression is the result of the binary t\ -est using the \214rst and third ar)-.15 F(guments)-.18 E 1.333 -(as operands.)180 132 R(The)6.333 E/F3 10/Times-Bold@0 SF3.833 E -F0(and)3.833 E F33.832 E F0 1.332 +(the binary conditional operators listed abo)180 216 R 1.155 -.15(ve u) +-.15 H(nder).15 E F2(CONDITION)3.355 E .855(AL EXPRESSIONS)-.18 F F3(,)A +F0(the)3.105 E .579(result of the e)180 228 R .578(xpression is the res\ +ult of the binary test using the \214rst and third ar)-.15 F(guments) +-.18 E 1.332(as operands.)180 240 R(The)6.332 E F13.832 E F0(and) +3.832 E F13.832 E F0 1.333 (operators are considered binary operators when there are)3.832 F .558 -(three ar)180 144 R 3.058(guments. If)-.18 F .558(the \214rst ar)3.058 F -.558(gument is)-.18 F F3(!)3.058 E F0 3.058(,t)C .558(he v)-3.058 F .558 +(three ar)180 252 R 3.058(guments. If)-.18 F .558(the \214rst ar)3.058 F +.558(gument is)-.18 F F1(!)3.058 E F0 3.058(,t)C .558(he v)-3.058 F .558 (alue is the ne)-.25 F -.05(ga)-.15 G .558(tion of the tw).05 F(o-ar)-.1 -E(gument)-.18 E .521(test using the second and third ar)180 156 R 3.021 -(guments. If)-.18 F .521(the \214rst ar)3.021 F .52(gument is e)-.18 F -(xactly)-.15 E F3(\()3.02 E F0 .52(and the third)3.02 F(ar)180 168 Q -.485(gument is e)-.18 F(xactly)-.15 E F3(\))2.985 E F0 2.985(,t)C .485 +E(gument)-.18 E .52(test using the second and third ar)180 264 R 3.021 +(guments. If)-.18 F .521(the \214rst ar)3.021 F .521(gument is e)-.18 F +(xactly)-.15 E F1(\()3.021 E F0 .521(and the third)3.021 F(ar)180 276 Q +.485(gument is e)-.18 F(xactly)-.15 E F1(\))2.985 E F0 2.985(,t)C .485 (he result is the one-ar)-2.985 F .485(gument test of the second ar)-.18 -F 2.985(gument. Other)-.18 F(-)-.2 E(wise, the e)180 180 Q -(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 192 S -.18(rg)-2.5 G -(uments).18 E .43(The follo)180 204 R .43 -(wing conditions are applied in the order listed.)-.25 F .429 -(If the \214rst ar)5.429 F .429(gument is)-.18 F F3(!)2.929 E F0 2.929 -(,t)C .429(he re-)-2.929 F 1.314(sult is the ne)180 216 R -.05(ga)-.15 G -1.314(tion of the three-ar).05 F 1.314(gument e)-.18 F 1.314 -(xpression composed of the remaining ar)-.15 F(gu-)-.18 E 2.745 -(ments. the)180 228 R(tw)2.745 E(o-ar)-.1 E .245 -(gument test using the second and third ar)-.18 F 2.744(guments. If)-.18 -F .244(the \214rst ar)2.744 F(gument)-.18 E .309(is e)180 240 R(xactly) --.15 E F3(\()2.809 E F0 .309(and the fourth ar)2.809 F .309(gument is e) --.18 F(xactly)-.15 E F3(\))2.809 E F0 2.809(,t)C .31 -(he result is the tw)-2.809 F(o-ar)-.1 E .31(gument test of the)-.18 F -.184(second and third ar)180 252 R 2.684(guments. Otherwise,)-.18 F .184 -(the e)2.684 F .183(xpression is parsed and e)-.15 F -.25(va)-.25 G .183 -(luated according).25 F(to precedence using the rules listed abo)180 264 -Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 276 S 2.5(rm)-2.5 G(ore ar)-2.5 E -(guments)-.18 E 1.635(The e)180 288 R 1.635(xpression is parsed and e) +F 2.985(gument. Other)-.18 F(-)-.2 E(wise, the e)180 288 Q +(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 300 S -.18(rg)-2.5 G +(uments).18 E .429(The follo)180 312 R .429 +(wing conditions are applied in the order listed.)-.25 F .43 +(If the \214rst ar)5.429 F .43(gument is)-.18 F F1(!)2.93 E F0 2.93(,t)C +.43(he re-)-2.93 F 1.315(sult is the ne)180 324 R -.05(ga)-.15 G 1.314 +(tion of the three-ar).05 F 1.314(gument e)-.18 F 1.314 +(xpression composed of the remaining ar)-.15 F(gu-)-.18 E 2.744 +(ments. the)180 336 R(tw)2.744 E(o-ar)-.1 E .245 +(gument test using the second and third ar)-.18 F 2.745(guments. If)-.18 +F .245(the \214rst ar)2.745 F(gument)-.18 E .31(is e)180 348 R(xactly) +-.15 E F1(\()2.81 E F0 .31(and the fourth ar)2.81 F .31(gument is e)-.18 +F(xactly)-.15 E F1(\))2.809 E F0 2.809(,t)C .309(he result is the tw) +-2.809 F(o-ar)-.1 E .309(gument test of the)-.18 F .183 +(second and third ar)180 360 R 2.683(guments. Otherwise,)-.18 F .184 +(the e)2.684 F .184(xpression is parsed and e)-.15 F -.25(va)-.25 G .184 +(luated according).25 F(to precedence using the rules listed abo)180 372 +Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 384 S 2.5(rm)-2.5 G(ore ar)-2.5 E +(guments)-.18 E 1.635(The e)180 396 R 1.635(xpression is parsed and e) -.15 F -.25(va)-.25 G 1.635 -(luated according to precedence using the rules listed).25 F(abo)180 300 -Q -.15(ve)-.15 G(.).15 E(When used with)144 318 Q F3(test)2.5 E F0(or) -2.5 E F3([)2.5 E F0 2.5(,t)C(he)-2.5 E F3(<)2.5 E F0(and)2.5 E F3(>)2.5 +(luated according to precedence using the rules listed).25 F(abo)180 408 +Q -.15(ve)-.15 G(.).15 E(When used with)144 426 Q F1(test)2.5 E F0(or) +2.5 E F1([)2.5 E F0 2.5(,t)C(he)-2.5 E F1(<)2.5 E F0(and)2.5 E F1(>)2.5 E F0(operators sort le)2.5 E(xicographically using ASCII ordering.)-.15 -E F3(times)108 334.8 Q F0 1.229(Print the accumulated user and system t\ -imes for the shell and for processes run from the shell.)144 334.8 R -(The return status is 0.)144 346.8 Q F3(trap)108 363.6 Q F0([)2.5 E F3 +E F1(times)108 442.8 Q F0 1.229(Print the accumulated user and system t\ +imes for the shell and for processes run from the shell.)144 442.8 R +(The return status is 0.)144 454.8 Q F1(trap)108 471.6 Q F0([)2.5 E F1 (\255lp)A F0 2.5(][)C([)-2.5 E/F4 10/Times-Italic@0 SF(ar)A(g)-.37 E F0 -(])A F4(sigspec)2.5 E F0(...])2.5 E .682(The command)144 375.6 R F4(ar) -3.512 E(g)-.37 E F0 .682(is to be read and e)3.402 F -.15(xe)-.15 G .682 -(cuted when the shell recei).15 F -.15(ve)-.25 G 3.183(ss).15 G -(ignal\(s\))-3.183 E F4(sigspec)3.523 E F0 5.683(.I).31 G(f)-5.683 E F4 -(ar)3.513 E(g)-.37 E F0(is)3.403 E .609(absent \(and there is a single) -144 387.6 R F4(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F33.108 E +(])A F4(sigspec)2.5 E F0(...])2.5 E .683(The command)144 483.6 R F4(ar) +3.513 E(g)-.37 E F0 .683(is to be read and e)3.403 F -.15(xe)-.15 G .682 +(cuted when the shell recei).15 F -.15(ve)-.25 G 3.182(ss).15 G +(ignal\(s\))-3.182 E F4(sigspec)3.522 E F0 5.682(.I).31 G(f)-5.682 E F4 +(ar)3.512 E(g)-.37 E F0(is)3.402 E .608(absent \(and there is a single) +144 495.6 R F4(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F13.108 E F0 3.108(,e)C .608 (ach speci\214ed signal is reset to its original disposition)-3.108 F -.658(\(the v)144 399.6 R .658(alue it had upon entrance to the shell\).) --.25 F(If)5.658 E F4(ar)3.488 E(g)-.37 E F0 .659 +.659(\(the v)144 507.6 R .659(alue it had upon entrance to the shell\).) +-.25 F(If)5.658 E F4(ar)3.488 E(g)-.37 E F0 .658 (is the null string the signal speci\214ed by each)3.378 F F4(sigspec) -144.34 411.6 Q F0 .581 -(is ignored by the shell and by the commands it in)3.391 F -.2(vo)-.4 G --.1(ke).2 G 3.08(s. If).1 F F4(ar)3.41 E(g)-.37 E F0 .58 -(is not present and)3.3 F F33.08 E F0(has)3.08 E 1.214 -(been supplied, then the trap commands associated with each)144 423.6 R -F4(sigspec)4.054 E F0 1.215(are displayed.)4.024 F 1.215(If no ar)6.215 -F(gu-)-.18 E .86(ments are supplied or if only)144 435.6 R F33.36 -E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F3(trap)3.36 E F0 .86 +144.34 519.6 Q F0 .58(is ignored by the shell and by the commands it in) +3.39 F -.2(vo)-.4 G -.1(ke).2 G 3.081(s. If).1 F F4(ar)3.411 E(g)-.37 E +F0 .581(is not present and)3.301 F F13.081 E F0(has)3.081 E 1.215 +(been supplied, then the trap commands associated with each)144 531.6 R +F4(sigspec)4.054 E F0 1.214(are displayed.)4.024 F 1.214(If no ar)6.214 +F(gu-)-.18 E .86(ments are supplied or if only)144 543.6 R F13.36 +E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F1(trap)3.36 E F0 .86 (prints the list of commands associated with each)3.36 F 2.83 -(signal. The)144 447.6 R F32.83 E F0 .33(option causes the shell \ -to print a list of signal names and their corresponding num-)2.83 F -4.311(bers. Each)144 459.6 R F4(sigspec)4.651 E F0 1.811 -(is either a signal name de\214ned in <)4.621 F F4(signal.h)A F0 1.81 -(>, or a signal number)B 6.81(.S)-.55 G(ignal)-6.81 E -(names are case insensiti)144 471.6 Q .3 -.15(ve a)-.25 H(nd the).15 E -F1(SIG)2.5 E F0(pre\214x is optional.)2.25 E .666(If a)144 489.6 R F4 -(sigspec)3.506 E F0(is)3.476 E F1(EXIT)3.166 E F0 .666 -(\(0\) the command)2.916 F F4(ar)3.496 E(g)-.37 E F0 .666(is e)3.386 F --.15(xe)-.15 G .666(cuted on e).15 F .667(xit from the shell.)-.15 F -.667(If a)5.667 F F4(sigspec)3.507 E F0(is)3.477 E F1(DE-)3.167 E -.09 -(BU)144 501.6 S(G).09 E F2(,)A F0 .484(the command)2.734 F F4(ar)3.314 E -(g)-.37 E F0 .484(is e)3.204 F -.15(xe)-.15 G .484(cuted before e).15 F --.15(ve)-.25 G(ry).15 E F4 .483(simple command)2.984 F F0(,)A F4(for) -2.983 E F0(command,)2.983 E F4(case)2.983 E F0(command,)2.983 E F4 -(select)144 513.6 Q F0 .562(command, e)3.062 F -.15(ve)-.25 G .563 +(signal. The)144 555.6 R F12.83 E F0 .33(option causes the shell \ +to print a list of signal names and their corresponding num-)2.83 F 4.31 +(bers. Each)144 567.6 R F4(sigspec)4.65 E F0 1.811 +(is either a signal name de\214ned in <)4.62 F F4(signal.h)A F0 1.811 +(>, or a signal number)B 6.811(.S)-.55 G(ignal)-6.811 E +(names are case insensiti)144 579.6 Q .3 -.15(ve a)-.25 H(nd the).15 E +F2(SIG)2.5 E F0(pre\214x is optional.)2.25 E .667(If a)144 597.6 R F4 +(sigspec)3.507 E F0(is)3.477 E F2(EXIT)3.167 E F0 .667 +(\(0\) the command)2.917 F F4(ar)3.496 E(g)-.37 E F0 .666(is e)3.386 F +-.15(xe)-.15 G .666(cuted on e).15 F .666(xit from the shell.)-.15 F +.666(If a)5.666 F F4(sigspec)3.506 E F0(is)3.476 E F2(DE-)3.166 E -.09 +(BU)144 609.6 S(G).09 E F3(,)A F0 .483(the command)2.733 F F4(ar)3.313 E +(g)-.37 E F0 .483(is e)3.203 F -.15(xe)-.15 G .484(cuted before e).15 F +-.15(ve)-.25 G(ry).15 E F4 .484(simple command)2.984 F F0(,)A F4(for) +2.984 E F0(command,)2.984 E F4(case)2.984 E F0(command,)2.984 E F4 +(select)144 621.6 Q F0 .563(command, e)3.063 F -.15(ve)-.25 G .563 (ry arithmetic).15 F F4(for)3.063 E F0 .563 -(command, and before the \214rst command e)3.063 F -.15(xe)-.15 G .563 -(cutes in a shell).15 F .623(function \(see)144 525.6 R F1 .622 +(command, and before the \214rst command e)3.063 F -.15(xe)-.15 G .562 +(cutes in a shell).15 F .622(function \(see)144 633.6 R F2 .622 (SHELL GRAMMAR)3.122 F F0(abo)2.872 E -.15(ve)-.15 G 3.122(\). Refer).15 -F .622(to the description of the)3.122 F F3(extdeb)3.122 E(ug)-.2 E F0 -.622(option to the)3.122 F F3(shopt)144 537.6 Q F0 -.2(bu)2.996 G .496 -(iltin for details of its ef).2 F .496(fect on the)-.25 F F3(DEB)2.996 E +F .622(to the description of the)3.122 F F1(extdeb)3.122 E(ug)-.2 E F0 +.622(option to the)3.122 F F1(shopt)144 645.6 Q F0 -.2(bu)2.996 G .496 +(iltin for details of its ef).2 F .496(fect on the)-.25 F F1(DEB)2.996 E (UG)-.1 E F0 2.996(trap. If)2.996 F(a)2.996 E F4(sigspec)3.336 E F0(is) -3.306 E F1(RETURN)2.996 E F2(,)A F0 .496(the command)2.746 F F4(ar) -144.33 549.6 Q(g)-.37 E F0 .18(is e)2.9 F -.15(xe)-.15 G .18 +3.306 E F2(RETURN)2.996 E F3(,)A F0 .496(the command)2.746 F F4(ar) +144.33 657.6 Q(g)-.37 E F0 .18(is e)2.9 F -.15(xe)-.15 G .18 (cuted each time a shell function or a script e).15 F -.15(xe)-.15 G .18 -(cuted with the).15 F F3(.)2.68 E F0(or)2.68 E F3(sour)2.68 E(ce)-.18 E -F0 -.2(bu)2.68 G .18(iltins \214nishes).2 F -.15(exe)144 561.6 S -(cuting.).15 E .96(If a)144 579.6 R F4(sigspec)3.8 E F0(is)3.77 E F1 -(ERR)3.46 E F2(,)A F0 .96(the command)3.21 F F4(ar)3.791 E(g)-.37 E F0 -.961(is e)3.681 F -.15(xe)-.15 G .961(cuted whene).15 F -.15(ve)-.25 G -3.461(rap).15 G .961(ipeline \(which may consist of a)-3.461 F .185(sin\ +(cuted with the).15 F F1(.)2.68 E F0(or)2.68 E F1(sour)2.68 E(ce)-.18 E +F0 -.2(bu)2.68 G .18(iltins \214nishes).2 F -.15(exe)144 669.6 S +(cuting.).15 E .961(If a)144 687.6 R F4(sigspec)3.801 E F0(is)3.771 E F2 +(ERR)3.461 E F3(,)A F0 .961(the command)3.211 F F4(ar)3.791 E(g)-.37 E +F0 .961(is e)3.681 F -.15(xe)-.15 G .961(cuted whene).15 F -.15(ve)-.25 +G 3.461(ra).15 G .96(pipeline \(which may consist of a)-.001 F .185(sin\ gle simple command\), a list, or a compound command returns a non\255ze\ -ro e)144 591.6 R .184(xit status, subject to)-.15 F .451(the follo)144 -603.6 R .451(wing conditions.)-.25 F(The)5.451 E F1(ERR)2.951 E F0 .451 -(trap is not e)2.701 F -.15(xe)-.15 G .451(cuted if the f).15 F .452 -(ailed command is part of the com-)-.1 F .388 -(mand list immediately follo)144 615.6 R .388(wing a)-.25 F F3(while) -2.888 E F0(or)2.888 E F3(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388 -(ord, part of the test in an)-.1 F F4(if)2.897 E F0 .387 -(statement, part)4.847 F .777(of a command e)144 627.6 R -.15(xe)-.15 G -.778(cuted in a).15 F F3(&&)3.278 E F0(or)3.278 E F3(||)3.278 E F0 .778 -(list e)3.278 F .778(xcept the command follo)-.15 F .778 -(wing the \214nal)-.25 F F3(&&)3.278 E F0(or)3.278 E F3(||)3.278 E F0 -3.278(,a)C -.15(ny)-3.278 G 1.28(command in a pipeline b)144 639.6 R -1.28(ut the last, or if the command')-.2 F 3.78(sr)-.55 G 1.28(eturn v) --3.78 F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F -F3(!)3.78 E F0(.)A(These are the same conditions obe)144 651.6 Q -(yed by the)-.15 E F3(err)2.5 E(exit)-.18 E F0(\()2.5 E F3A F0 2.5 -(\)o)C(ption.)-2.5 E .132 -(Signals ignored upon entry to the shell cannot be trapped or reset.)144 -669.6 R -.35(Tr)5.133 G .133(apped signals that are not be-).35 F .117 -(ing ignored are reset to their original v)144 681.6 R .117 -(alues in a subshell or subshell en)-.25 F .117 -(vironment when one is cre-)-.4 F 2.5(ated. The)144 693.6 R -(return status is f)2.5 E(alse if an)-.1 E(y)-.15 E F4(sigspec)2.84 E F0 -(is in)2.81 E -.25(va)-.4 G(lid; otherwise).25 E F3(trap)2.5 E F0 -(returns true.)2.5 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(81) -193.45 E 0 Cg EP +ro e)144 699.6 R .185(xit status, subject to)-.15 F .452(the follo)144 +711.6 R .452(wing conditions.)-.25 F(The)5.452 E F2(ERR)2.952 E F0 .451 +(trap is not e)2.701 F -.15(xe)-.15 G .451(cuted if the f).15 F .451 +(ailed command is part of the com-)-.1 F .387 +(mand list immediately follo)144 723.6 R .387(wing a)-.25 F F1(while) +2.887 E F0(or)2.887 E F1(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388 +(ord, part of the test in an)-.1 F F4(if)2.898 E F0 .388 +(statement, part)4.848 F(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(81) +199.835 E 0 Cg EP %%Page: 82 82 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(type)108 84 Q F0([)2.5 E F1(\255aftpP)A F0(])A/F2 10/Times-Italic@0 -SF(name)2.5 E F0([)2.5 E F2(name)A F0(...])2.5 E -.4(Wi)144 96 S .173 -(th no options, indicate ho).4 F 2.673(we)-.25 G(ach)-2.673 E F2(name) -3.033 E F0 -.1(wo)2.853 G .174 -(uld be interpreted if used as a command name.).1 F .174(If the)5.174 F -F1144 108 Q F0 .715(option is used,)3.215 F F1(type)3.215 E F0 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .778 +(of a command e)144 84 R -.15(xe)-.15 G .778(cuted in a).15 F/F1 10 +/Times-Bold@0 SF(&&)3.278 E F0(or)3.278 E F1(||)3.278 E F0 .778(list e) +3.278 F .778(xcept the command follo)-.15 F .778(wing the \214nal)-.25 F +F1(&&)3.278 E F0(or)3.278 E F1(||)3.277 E F0 3.277(,a)C -.15(ny)-3.277 G +1.28(command in a pipeline b)144 96 R 1.28 +(ut the last, or if the command')-.2 F 3.78(sr)-.55 G 1.28(eturn v)-3.78 +F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F F1(!) +3.78 E F0(.)A(These are the same conditions obe)144 108 Q(yed by the) +-.15 E F1(err)2.5 E(exit)-.18 E F0(\()2.5 E F1A F0 2.5(\)o)C +(ption.)-2.5 E .133 +(Signals ignored upon entry to the shell cannot be trapped or reset.)144 +126 R -.35(Tr)5.132 G .132(apped signals that are not be-).35 F .117 +(ing ignored are reset to their original v)144 138 R .117 +(alues in a subshell or subshell en)-.25 F .117 +(vironment when one is cre-)-.4 F 2.5(ated. The)144 150 R +(return status is f)2.5 E(alse if an)-.1 E(y)-.15 E/F2 10/Times-Italic@0 +SF(sigspec)2.84 E F0(is in)2.81 E -.25(va)-.4 G(lid; otherwise).25 E F1 +(trap)2.5 E F0(returns true.)2.5 E F1(type)108 166.8 Q F0([)2.5 E F1 +(\255aftpP)A F0(])A F2(name)2.5 E F0([)2.5 E F2(name)A F0(...])2.5 E -.4 +(Wi)144 178.8 S .174(th no options, indicate ho).4 F 2.674(we)-.25 G +(ach)-2.674 E F2(name)3.034 E F0 -.1(wo)2.854 G .173 +(uld be interpreted if used as a command name.).1 F .173(If the)5.173 F +F1144 190.8 Q F0 .715(option is used,)3.215 F F1(type)3.215 E F0 .715(prints a string which is one of)3.215 F F2(alias)3.545 E F0(,).27 E F2 -.1(ke)3.215 G(ywor)-.2 E(d)-.37 E F0(,).77 E F2(function)5.185 E F0 (,).24 E F2 -.2(bu)3.215 G(iltin).2 E F0 3.215(,o).24 G(r)-3.215 E F2 -(\214le)5.125 E F0(if)3.395 E F2(name)144.36 120 Q F0 .086 -(is an alias, shell reserv)2.766 F .086(ed w)-.15 F .086 -(ord, function, b)-.1 F .087(uiltin, or disk \214le, respecti)-.2 F -.15 -(ve)-.25 G(ly).15 E 5.087(.I)-.65 G 2.587(ft)-5.087 G(he)-2.587 E F2 -(name)2.947 E F0 .087(is not)2.767 F .119 -(found, then nothing is printed, and an e)144 132 R .118 -(xit status of f)-.15 F .118(alse is returned.)-.1 F .118(If the)5.118 F -F12.618 E F0 .118(option is used,)2.618 F F1(type)2.618 E F0 .855 -(either returns the name of the disk \214le that w)144 144 R .855 +(\214le)5.125 E F0(if)3.395 E F2(name)144.36 202.8 Q F0 .087 +(is an alias, shell reserv)2.767 F .087(ed w)-.15 F .087 +(ord, function, b)-.1 F .086(uiltin, or disk \214le, respecti)-.2 F -.15 +(ve)-.25 G(ly).15 E 5.086(.I)-.65 G 2.586(ft)-5.086 G(he)-2.586 E F2 +(name)2.946 E F0 .086(is not)2.766 F .118 +(found, then nothing is printed, and an e)144 214.8 R .118 +(xit status of f)-.15 F .118(alse is returned.)-.1 F .119(If the)5.119 F +F12.619 E F0 .119(option is used,)2.619 F F1(type)2.619 E F0 .855 +(either returns the name of the disk \214le that w)144 226.8 R .855 (ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F F2(name)3.715 E F0 -.855(were speci\214ed as a com-)3.535 F .529(mand name, or nothing if) -144 156 R/F3 10/Courier@0 SF .528(type -t name)3.028 F F0 -.1(wo)3.028 G -.528(uld not return).1 F F2(\214le)4.938 E F0 5.528(.T).18 G(he)-5.528 E -F13.028 E F0 .528(option forces a)3.028 F/F4 9/Times-Bold@0 SF --.666(PA)3.028 G(TH)-.189 E F0 .006(search for each)144 168 R F2(name) -2.506 E F0 2.506(,e)C -.15(ve)-2.756 G 2.506(ni).15 G(f)-2.506 E F3 .007 -(type -t name)2.506 F F0 -.1(wo)2.507 G .007(uld not return).1 F F2 -(\214le)4.417 E F0 5.007(.I).18 G 2.507(fac)-5.007 G .007 -(ommand is hashed,)-2.507 F F12.507 E F0(and)144 180 Q F1 -3.231 E F0 .731(print the hashed v)3.231 F .73 +.855(were speci\214ed as a com-)3.535 F .528(mand name, or nothing if) +144 238.8 R/F3 10/Courier@0 SF .528(type -t name)3.028 F F0 -.1(wo)3.028 +G .528(uld not return).1 F F2(\214le)4.938 E F0 5.528(.T).18 G(he)-5.528 +E F13.028 E F0 .529(option forces a)3.028 F/F4 9/Times-Bold@0 SF +-.666(PA)3.029 G(TH)-.189 E F0 .007(search for each)144 250.8 R F2(name) +2.507 E F0 2.507(,e)C -.15(ve)-2.757 G 2.507(ni).15 G(f)-2.507 E F3 .007 +(type -t name)2.507 F F0 -.1(wo)2.507 G .007(uld not return).1 F F2 +(\214le)4.417 E F0 5.006(.I).18 G 2.506(fac)-5.006 G .006 +(ommand is hashed,)-2.506 F F12.506 E F0(and)144 262.8 Q F1 +3.23 E F0 .73(print the hashed v)3.23 F .731 (alue, which is not necessarily the \214le that appears \214rst in)-.25 -F F4 -.666(PA)3.23 G(TH)-.189 E/F5 9/Times-Roman@0 SF(.)A F0 .73(If the) -5.23 F F1144 192 Q F0 .823(option is used,)3.323 F F1(type)3.323 E -F0 .824(prints all of the places that contain an e)3.323 F -.15(xe)-.15 -G .824(cutable named).15 F F2(name)3.684 E F0 5.824(.T).18 G .824 -(his in-)-5.824 F 1.176 -(cludes aliases and functions, if and only if the)144 204 R F1 -3.676 E F0 1.176(option is not also used.)3.676 F 1.176 +F F4 -.666(PA)3.231 G(TH)-.189 E/F5 9/Times-Roman@0 SF(.)A F0 .731 +(If the)5.231 F F1144 274.8 Q F0 .824(option is used,)3.324 F F1 +(type)3.324 E F0 .824(prints all of the places that contain an e)3.324 F +-.15(xe)-.15 G .823(cutable named).15 F F2(name)3.683 E F0 5.823(.T).18 +G .823(his in-)-5.823 F 1.176 +(cludes aliases and functions, if and only if the)144 286.8 R F1 +3.676 E F0 1.176(option is not also used.)3.676 F 1.177 (The table of hashed)6.176 F 1.223(commands is not consulted when using) -144 216 R F13.723 E F0 6.223(.T)C(he)-6.223 E F13.723 E F0 -1.223(option suppresses shell function lookup, as)3.723 F .326(with the) -144 228 R F1(command)2.826 E F0 -.2(bu)2.826 G(iltin.).2 E F1(type)5.326 -E F0 .326(returns true if all of the ar)2.826 F .325 -(guments are found, f)-.18 F .325(alse if an)-.1 F 2.825(ya)-.15 G .325 -(re not)-2.825 F(found.)144 240 Q F1(ulimit)108 256.8 Q F0([)2.5 E F1 -(\255HS)A F0(])A F12.5 E(ulimit)108 268.8 Q F0([)2.5 E F1(\255HS)A +144 298.8 R F13.723 E F0 6.223(.T)C(he)-6.223 E F13.723 E F0 +1.223(option suppresses shell function lookup, as)3.723 F .325(with the) +144 310.8 R F1(command)2.825 E F0 -.2(bu)2.825 G(iltin.).2 E F1(type) +5.325 E F0 .325(returns true if all of the ar)2.825 F .326 +(guments are found, f)-.18 F .326(alse if an)-.1 F 2.826(ya)-.15 G .326 +(re not)-2.826 F(found.)144 322.8 Q F1(ulimit)108 339.6 Q F0([)2.5 E F1 +(\255HS)A F0(])A F12.5 E(ulimit)108 351.6 Q F0([)2.5 E F1(\255HS)A F0 2.5(][)C F1(\255bcde\214klmnpqrstuvxPR)-2.5 E(T)-.4 E F0([)2.5 E F2 -(limit)A F0(]])A(Pro)144 280.8 Q .243(vides control o)-.15 F -.15(ve) --.15 G 2.743(rt).15 G .243(he resources a)-2.743 F -.25(va)-.2 G .244 +(limit)A F0(]])A(Pro)144 363.6 Q .244(vides control o)-.15 F -.15(ve) +-.15 G 2.744(rt).15 G .244(he resources a)-2.744 F -.25(va)-.2 G .244 (ilable to the shell and to processes started by it, on systems).25 F -.944(that allo)144 292.8 R 3.444(ws)-.25 G .944(uch control.)-3.444 F -(The)5.944 E F13.444 E F0(and)3.444 E F13.444 E F0 .943 +.943(that allo)144 375.6 R 3.443(ws)-.25 G .943(uch control.)-3.443 F +(The)5.943 E F13.443 E F0(and)3.443 E F13.444 E F0 .944 (options specify that the hard or soft limit is set for the)3.444 F(gi) -144 304.8 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208 +144 387.6 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208 (hard limit cannot be increased by a non-root user once it is set; a so\ -ft limit may)2.708 F .426(be increased up to the v)144 316.8 R .426 -(alue of the hard limit.)-.25 F .425(If neither)5.426 F F12.925 E -F0(nor)2.925 E F12.925 E F0 .425 -(is speci\214ed, both the soft and)2.925 F .139(hard limits are set.)144 -328.8 R .139(The v)5.139 F .139(alue of)-.25 F F2(limit)2.729 E F0 .139 +ft limit may)2.709 F .425(be increased up to the v)144 399.6 R .425 +(alue of the hard limit.)-.25 F .426(If neither)5.425 F F12.926 E +F0(nor)2.926 E F12.926 E F0 .426 +(is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144 +411.6 R .139(The v)5.139 F .139(alue of)-.25 F F2(limit)2.729 E F0 .139 (can be a number in the unit speci\214ed for the resource or one)3.319 F -.742(of the special v)144 340.8 R(alues)-.25 E F1(hard)3.242 E F0(,)A F1 +.741(of the special v)144 423.6 R(alues)-.25 E F1(hard)3.241 E F0(,)A F1 (soft)3.241 E F0 3.241(,o)C(r)-3.241 E F1(unlimited)3.241 E F0 3.241(,w) -C .741(hich stand for the current hard limit, the current)-3.241 F .023 -(soft limit, and no limit, respecti)144 352.8 R -.15(ve)-.25 G(ly).15 E +C .741(hich stand for the current hard limit, the current)-3.241 F .024 +(soft limit, and no limit, respecti)144 435.6 R -.15(ve)-.25 G(ly).15 E 5.023(.I)-.65 G(f)-5.023 E F2(limit)2.613 E F0 .023 (is omitted, the current v)3.203 F .023 -(alue of the soft limit of the re-)-.25 F .985 -(source is printed, unless the)144 364.8 R F13.485 E F0 .984 -(option is gi)3.485 F -.15(ve)-.25 G 3.484(n. When).15 F .984 +(alue of the soft limit of the re-)-.25 F .984 +(source is printed, unless the)144 447.6 R F13.484 E F0 .984 +(option is gi)3.484 F -.15(ve)-.25 G 3.484(n. When).15 F .985 (more than one resource is speci\214ed, the)3.484 F .7 -(limit name and unit, if appropriate, are printed before the v)144 376.8 +(limit name and unit, if appropriate, are printed before the v)144 459.6 R 3.2(alue. Other)-.25 F .7(options are interpreted as)3.2 F(follo)144 -388.8 Q(ws:)-.25 E F1144 400.8 Q F0 -(All current limits are reported; no limits are set)180 400.8 Q F1 -144 412.8 Q F0(The maximum sock)180 412.8 Q(et b)-.1 E(uf)-.2 E -(fer size)-.25 E F1144 424.8 Q F0 -(The maximum size of core \214les created)180 424.8 Q F1144 436.8 -Q F0(The maximum size of a process')180 436.8 Q 2.5(sd)-.55 G(ata se) --2.5 E(gment)-.15 E F1144 448.8 Q F0 -(The maximum scheduling priority \("nice"\))180 448.8 Q F1144 -460.8 Q F0 +471.6 Q(ws:)-.25 E F1144 483.6 Q F0 +(All current limits are reported; no limits are set)180 483.6 Q F1 +144 495.6 Q F0(The maximum sock)180 495.6 Q(et b)-.1 E(uf)-.2 E +(fer size)-.25 E F1144 507.6 Q F0 +(The maximum size of core \214les created)180 507.6 Q F1144 519.6 +Q F0(The maximum size of a process')180 519.6 Q 2.5(sd)-.55 G(ata se) +-2.5 E(gment)-.15 E F1144 531.6 Q F0 +(The maximum scheduling priority \("nice"\))180 531.6 Q F1144 +543.6 Q F0 (The maximum size of \214les written by the shell and its children)180 -460.8 Q F1144 472.8 Q F0(The maximum number of pending signals)180 -472.8 Q F1144 484.8 Q F0 -(The maximum number of kqueues that may be allocated)180 484.8 Q F1 -144 496.8 Q F0(The maximum size that may be lock)180 496.8 Q -(ed into memory)-.1 E F1144 508.8 Q F0 -(The maximum resident set size \(man)180 508.8 Q 2.5(ys)-.15 G -(ystems do not honor this limit\))-2.5 E F1144 520.8 Q F0 .791(Th\ +543.6 Q F1144 555.6 Q F0(The maximum number of pending signals)180 +555.6 Q F1144 567.6 Q F0 +(The maximum number of kqueues that may be allocated)180 567.6 Q F1 +144 579.6 Q F0(The maximum size that may be lock)180 579.6 Q +(ed into memory)-.1 E F1144 591.6 Q F0 +(The maximum resident set size \(man)180 591.6 Q 2.5(ys)-.15 G +(ystems do not honor this limit\))-2.5 E F1144 603.6 Q F0 .791(Th\ e maximum number of open \214le descriptors \(most systems do not allo) -180 520.8 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F -(be set\))180 532.8 Q F1144 544.8 Q F0 -(The pipe size in 512-byte blocks \(this may not be set\))180 544.8 Q F1 -144 556.8 Q F0 -(The maximum number of bytes in POSIX message queues)180 556.8 Q F1 -144 568.8 Q F0(The maximum real-time scheduling priority)180 568.8 -Q F1144 580.8 Q F0(The maximum stack size)180 580.8 Q F1144 -592.8 Q F0(The maximum amount of cpu time in seconds)180 592.8 Q F1 -144 604.8 Q F0(The maximum number of processes a)180 604.8 Q -.25 -(va)-.2 G(ilable to a single user).25 E F1144 616.8 Q F0 .47 -(The maximum amount of virtual memory a)180 616.8 R -.25(va)-.2 G .47 +180 603.6 R 3.291(wt)-.25 G .791(his v)-3.291 F .791(alue to)-.25 F +(be set\))180 615.6 Q F1144 627.6 Q F0 +(The pipe size in 512-byte blocks \(this may not be set\))180 627.6 Q F1 +144 639.6 Q F0 +(The maximum number of bytes in POSIX message queues)180 639.6 Q F1 +144 651.6 Q F0(The maximum real-time scheduling priority)180 651.6 +Q F1144 663.6 Q F0(The maximum stack size)180 663.6 Q F1144 +675.6 Q F0(The maximum amount of cpu time in seconds)180 675.6 Q F1 +144 687.6 Q F0(The maximum number of processes a)180 687.6 Q -.25 +(va)-.2 G(ilable to a single user).25 E F1144 699.6 Q F0 .47 +(The maximum amount of virtual memory a)180 699.6 R -.25(va)-.2 G .47 (ilable to the shell and, on some systems, to).25 F(its children)180 -628.8 Q F1144 640.8 Q F0(The maximum number of \214le locks)180 -640.8 Q F1144 652.8 Q F0(The maximum number of pseudoterminals)180 -652.8 Q F1144 664.8 Q F0(The maximum time a real-time process can\ - run before blocking, in microseconds)180 664.8 Q F1144 676.8 Q F0 -(The maximum number of threads)180 676.8 Q(If)144 693.6 Q F2(limit)3.058 -E F0 .468(is gi)3.648 F -.15(ve)-.25 G .468(n, and the).15 F F1 -2.968 E F0 .468(option is not used,)2.968 F F2(limit)2.968 E F0 .468 -(is the ne)2.968 F 2.968(wv)-.25 G .468 -(alue of the speci\214ed resource.)-3.218 F(If)5.468 E .044 -(no option is gi)144 705.6 R -.15(ve)-.25 G .044(n, then).15 F F1 -2.544 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045 -(lues are in 1024-byte increments, e)1.11 F .045(xcept for)-.15 F F1 -2.545 E F0 2.545(,w)C .045(hich is)-2.545 F .67(in seconds;)144 -717.6 R F13.17 E F0 3.17(,w)C .67(hich is in microseconds;)-3.17 F -F13.17 E F0 3.17(,w)C .67(hich is in units of 512-byte blocks;) --3.17 F F13.17 E F0(,)A F13.17 E F0(,)A F13.17 E F0(,) -A F1144 729.6 Q F0(,)A F13.736 E F0 3.736(,a)C(nd)-3.736 E -F13.736 E F0 3.736(,w)C 1.236(hich are unscaled v)-3.736 F 1.236 -(alues; and, when in posix mode,)-.25 F F13.736 E F0(and)3.736 E -F13.736 E F0 3.736(,w)C 1.237(hich are in)-3.736 F(GNU Bash 5.2)72 -768 Q(2022 March 11)144.29 E(82)193.45 E 0 Cg EP +711.6 Q(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(82)199.835 E 0 Cg EP %%Page: 83 83 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .239 -(512-byte increments.)144 84 R .238(The return status is 0 unless an in) -5.239 F -.25(va)-.4 G .238(lid option or ar).25 F .238 -(gument is supplied, or an)-.18 F(error occurs while setting a ne)144 96 -Q 2.5(wl)-.25 G(imit.)-2.5 E/F1 10/Times-Bold@0 SF(umask)108 112.8 Q F0 -([)2.5 E F1A F0 2.5(][)C F1-2.5 E F0 2.5(][)C/F2 10 -/Times-Italic@0 SF(mode)-2.5 E F0(])A .18 -(The user \214le-creation mask is set to)144 124.8 R F2(mode)3.06 E F0 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF144 84 Q F0(The maximum number of \214le locks)180 84 Q F1 +144 96 Q F0(The maximum number of pseudoterminals)180 96 Q F1144 +108 Q F0(The maximum time a real-time process can run before blocking, \ +in microseconds)180 108 Q F1144 120 Q F0 +(The maximum number of threads)180 120 Q(If)144 136.8 Q/F2 10 +/Times-Italic@0 SF(limit)3.058 E F0 .468(is gi)3.648 F -.15(ve)-.25 G +.468(n, and the).15 F F12.968 E F0 .468(option is not used,)2.968 +F F2(limit)2.968 E F0 .468(is the ne)2.968 F 2.968(wv)-.25 G .468 +(alue of the speci\214ed resource.)-3.218 F(If)5.468 E .045 +(no option is gi)144 148.8 R -.15(ve)-.25 G .045(n, then).15 F F1 +2.545 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045 +(lues are in 1024-byte increments, e)1.11 F .044(xcept for)-.15 F F1 +2.544 E F0 2.544(,w)C .044(hich is)-2.544 F .67(in seconds;)144 +160.8 R F13.17 E F0 3.17(,w)C .67(hich is in microseconds;)-3.17 F +F13.17 E F0 3.17(,w)C .67(hich is in units of 512-byte blocks;) +-3.17 F F13.17 E F0(,)A F13.17 E F0(,)A F13.17 E F0(,) +A F1144 172.8 Q F0(,)A F13.737 E F0 3.737(,a)C(nd)-3.737 E +F13.736 E F0 3.736(,w)C 1.236(hich are unscaled v)-3.736 F 1.236 +(alues; and, when in posix mode,)-.25 F F13.736 E F0(and)3.736 E +F13.736 E F0 3.736(,w)C 1.236(hich are in)-3.736 F .238 +(512-byte increments.)144 184.8 R .238 +(The return status is 0 unless an in)5.238 F -.25(va)-.4 G .238 +(lid option or ar).25 F .238(gument is supplied, or an)-.18 F +(error occurs while setting a ne)144 196.8 Q 2.5(wl)-.25 G(imit.)-2.5 E +F1(umask)108 213.6 Q F0([)2.5 E F1A F0 2.5(][)C F1-2.5 E F0 +2.5(][)C F2(mode)-2.5 E F0(])A .18 +(The user \214le-creation mask is set to)144 225.6 R F2(mode)3.06 E F0 5.18(.I).18 G(f)-5.18 E F2(mode)3.06 E F0(be)2.86 E .18 (gins with a digit, it is interpreted as an octal)-.15 F .066(number; o\ therwise it is interpreted as a symbolic mode mask similar to that acce\ -pted by)144 136.8 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 -148.8 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382 +pted by)144 237.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 +249.6 Q F2(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382 (alue of the mask is printed.)-.25 F(The)5.382 E F12.882 E F0 .382 (option causes the mask to be)2.882 F .547 -(printed in symbolic form; the def)144 160.8 R .547 +(printed in symbolic form; the def)144 261.6 R .547 (ault output is an octal number)-.1 F 5.547(.I)-.55 G 3.047(ft)-5.547 G (he)-3.047 E F13.047 E F0 .547(option is supplied, and)3.047 F F2 -(mode)144.38 172.8 Q F0 .551 -(is omitted, the output is in a form that may be reused as input.)3.231 -F .552(The return status is 0 if the)5.552 F(mode w)144 184.8 Q +(mode)144.38 273.6 Q F0 .552 +(is omitted, the output is in a form that may be reused as input.)3.232 +F .551(The return status is 0 if the)5.551 F(mode w)144 285.6 Q (as successfully changed or if no)-.1 E F2(mode)2.5 E F0(ar)2.5 E (gument w)-.18 E(as supplied, and f)-.1 E(alse otherwise.)-.1 E F1 -(unalias)108 201.6 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 -(...])2.5 E(Remo)144 213.6 Q 1.058 -.15(ve e)-.15 H(ach).15 E F2(name) -3.258 E F0 .758(from the list of de\214ned aliases.)3.258 F(If)5.758 E -F13.258 E F0 .757(is supplied, all alias de\214nitions are re-) -3.258 F(mo)144 225.6 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E +(unalias)108 302.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 +(...])2.5 E(Remo)144 314.4 Q 1.057 -.15(ve e)-.15 H(ach).15 E F2(name) +3.257 E F0 .757(from the list of de\214ned aliases.)3.257 F(If)5.758 E +F13.258 E F0 .758(is supplied, all alias de\214nitions are re-) +3.258 F(mo)144 326.4 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E (alue is true unless a supplied)-.25 E F2(name)2.86 E F0 -(is not a de\214ned alias.)2.68 E F1(unset)108 242.4 Q F0<5bad>2.5 E F1 +(is not a de\214ned alias.)2.68 E F1(unset)108 343.2 Q F0<5bad>2.5 E F1 (fv)A F0 2.5(][)C-2.5 E F1(n)A F0 2.5(][)C F2(name)-2.5 E F0(...]) -2.5 E -.15(Fo)144 254.4 S 3.803(re).15 G(ach)-3.803 E F2(name)4.163 E F0 -3.803(,r).18 G(emo)-3.803 E 1.603 -.15(ve t)-.15 H 1.303 +2.5 E -.15(Fo)144 355.2 S 3.804(re).15 G(ach)-3.804 E F2(name)4.164 E F0 +3.804(,r).18 G(emo)-3.804 E 1.604 -.15(ve t)-.15 H 1.304 (he corresponding v).15 F 1.303(ariable or function.)-.25 F 1.303 -(If the)6.303 F F13.804 E F0 1.304(option is gi)3.804 F -.15(ve) --.25 G 1.304(n, each).15 F F2(name)144.36 266.4 Q F0 .465 -(refers to a shell v)3.145 F .464(ariable, and that v)-.25 F .464 -(ariable is remo)-.25 F -.15(ve)-.15 G 2.964(d. Read-only).15 F -.25(va) -2.964 G .464(riables may not be un-).25 F 2.768(set. If)144 278.4 R F1 -2.768 E F0 .269(is speci\214ed, each)2.768 F F2(name)3.129 E F0 +(If the)6.303 F F13.803 E F0 1.303(option is gi)3.803 F -.15(ve) +-.25 G 1.303(n, each).15 F F2(name)144.36 367.2 Q F0 .464 +(refers to a shell v)3.144 F .464(ariable, and that v)-.25 F .464 +(ariable is remo)-.25 F -.15(ve)-.15 G 2.965(d. Read-only).15 F -.25(va) +2.965 G .465(riables may not be un-).25 F 2.769(set. If)144 379.2 R F1 +2.769 E F0 .269(is speci\214ed, each)2.769 F F2(name)3.129 E F0 .269(refers to a shell function, and the function de\214nition is remo) -2.949 F -.15(ve)-.15 G(d.).15 E .404(If the)144 290.4 R F12.904 E +2.949 F -.15(ve)-.15 G(d.).15 E .403(If the)144 391.2 R F12.903 E F0 .404(option is supplied, and)2.904 F F2(name)2.904 E F0 .404(is a v) 2.904 F .404(ariable with the)-.25 F F2(namer)2.904 E(ef)-.37 E F0 -(attrib)2.904 E(ute,)-.2 E F2(name)2.904 E F0 .403(will be unset)2.904 F -.719(rather than the v)144 302.4 R .719(ariable it references.)-.25 F F1 -5.719 E F0 .719(has no ef)3.219 F .719(fect if the)-.25 F F1 -3.22 E F0 .72(option is supplied.)3.22 F .72(If no options)5.72 F .737 -(are supplied, each)144 314.4 R F2(name)3.237 E F0 .737(refers to a v) -3.237 F .737(ariable; if there is no v)-.25 F .736 -(ariable by that name, a function with)-.25 F 1.761(that name, if an)144 -326.4 R 3.061 -.65(y, i)-.15 H 4.261(su).65 G 4.261(nset. Each)-4.261 F +(attrib)2.904 E(ute,)-.2 E F2(name)2.904 E F0 .404(will be unset)2.904 F +.72(rather than the v)144 403.2 R .72(ariable it references.)-.25 F F1 +5.72 E F0 .72(has no ef)3.22 F .719(fect if the)-.25 F F1 +3.219 E F0 .719(option is supplied.)3.219 F .719(If no options)5.719 F +.736(are supplied, each)144 415.2 R F2(name)3.236 E F0 .736 +(refers to a v)3.236 F .737(ariable; if there is no v)-.25 F .737 +(ariable by that name, a function with)-.25 F 1.762(that name, if an)144 +427.2 R 3.062 -.65(y, i)-.15 H 4.262(su).65 G 4.261(nset. Each)-4.262 F 1.761(unset v)4.261 F 1.761(ariable or function is remo)-.25 F -.15(ve) --.15 G 4.262(df).15 G 1.762(rom the en)-4.262 F(vironment)-.4 E 3.172 -(passed to subsequent commands.)144 338.4 R 3.172(If an)8.172 F 5.672 +-.15 G 4.261(df).15 G 1.761(rom the en)-4.261 F(vironment)-.4 E 3.171 +(passed to subsequent commands.)144 439.2 R 3.172(If an)8.172 F 5.672 (yo)-.15 G(f)-5.672 E/F3 9/Times-Bold@0 SF -.27(BA)5.672 G(SH_ALIASES) -.27 E/F4 9/Times-Roman@0 SF(,)A F3 -.27(BA)5.421 G(SH_ARGV0).27 E F4(,)A -F3 -.27(BA)5.421 G(SH_CMDS).27 E F4(,)A F3 -.27(BA)144 350.4 S -(SH_COMMAND).27 E F4(,)A F3 -.27(BA)11.481 G(SH_SUBSHELL).27 E F4(,)A F3 +.27 E/F4 9/Times-Roman@0 SF(,)A F3 -.27(BA)5.422 G(SH_ARGV0).27 E F4(,)A +F3 -.27(BA)5.422 G(SH_CMDS).27 E F4(,)A F3 -.27(BA)144 451.2 S +(SH_COMMAND).27 E F4(,)A F3 -.27(BA)11.482 G(SH_SUBSHELL).27 E F4(,)A F3 -.27(BA)11.482 G(SHPID).27 E F4(,)A F3(COMP_W)11.482 E(ORDBREAKS)-.09 E -F4(,)A F3(DIRST)11.482 E -.495(AC)-.81 G(K).495 E F4(,)A F3(EPOCHREAL) -144 362.4 Q(TIME)-.828 E F4(,)A F3(EPOCHSECONDS)2.67 E F4(,)A F3(FUNCN) +F4(,)A F3(DIRST)11.481 E -.495(AC)-.81 G(K).495 E F4(,)A F3(EPOCHREAL) +144 463.2 Q(TIME)-.828 E F4(,)A F3(EPOCHSECONDS)2.67 E F4(,)A F3(FUNCN) 2.67 E(AME)-.18 E F4(,)A F3(GR)2.67 E(OUPS)-.27 E F4(,)A F3(HISTCMD)2.67 E F4(,)A F3(LINENO)2.67 E F4(,)A F3(RANDOM)2.67 E F4(,)A F3(SECONDS)144 -374.4 Q F4(,)A F0(or)4.029 E F3(SRANDOM)4.279 E F0 1.779(are unset, the) -4.029 F 4.279(yl)-.15 G 1.779(ose their special properties, e)-4.279 F --.15(ve)-.25 G 4.279(ni).15 G 4.28(ft)-4.279 G(he)-4.28 E 4.28(ya)-.15 G -1.78(re subse-)-4.28 F(quently reset.)144 386.4 Q(The e)5 E +475.2 Q F4(,)A F0(or)4.03 E F3(SRANDOM)4.28 E F0 1.779(are unset, the) +4.03 F 4.279(yl)-.15 G 1.779(ose their special properties, e)-4.279 F +-.15(ve)-.25 G 4.279(ni).15 G 4.279(ft)-4.279 G(he)-4.279 E 4.279(ya) +-.15 G 1.779(re subse-)-4.279 F(quently reset.)144 487.2 Q(The e)5 E (xit status is true unless a)-.15 E F2(name)2.86 E F0 -(is readonly or may not be unset.)2.68 E F1(wait)108 403.2 Q F0([)2.5 E -F1(\255fn)A F0 2.5(][)C F1-2.5 E F2(varname)2.5 E F0 2.5(][)C F2 -(id ...)-2.5 E F0(])A -.8(Wa)144 415.2 S .659(it for each speci\214ed c\ -hild process and return its termination status.).8 F(Each)5.659 E F2(id) -3.169 E F0 .658(may be a process)3.928 F .008 -(ID or a job speci\214cation; if a job spec is gi)144 427.2 R -.15(ve) --.25 G .009(n, all processes in that job').15 F 2.509(sp)-.55 G .009 -(ipeline are w)-2.509 F .009(aited for)-.1 F 5.009(.I)-.55 G(f)-5.009 E -F2(id)144.01 439.2 Q F0 .442(is not gi)3.712 F -.15(ve)-.25 G(n,).15 E -F1(wait)2.942 E F0 -.1(wa)2.942 G .441 +(is readonly or may not be unset.)2.68 E F1(wait)108 504 Q F0([)2.5 E F1 +(\255fn)A F0 2.5(][)C F1-2.5 E F2(varname)2.5 E F0 2.5(][)C F2 +(id ...)-2.5 E F0(])A -.8(Wa)144 516 S .659(it for each speci\214ed chi\ +ld process and return its termination status.).8 F(Each)5.659 E F2(id) +3.169 E F0 .659(may be a process)3.929 F .009 +(ID or a job speci\214cation; if a job spec is gi)144 528 R -.15(ve)-.25 +G .008(n, all processes in that job').15 F 2.508(sp)-.55 G .008 +(ipeline are w)-2.508 F .008(aited for)-.1 F 5.008(.I)-.55 G(f)-5.008 E +F2(id)144.01 540 Q F0 .441(is not gi)3.711 F -.15(ve)-.25 G(n,).15 E F1 +(wait)2.941 E F0 -.1(wa)2.941 G .441 (its for all running background jobs and the last-e).1 F -.15(xe)-.15 G -.441(cuted process substitu-).15 F .597 -(tion, if its process id is the same as)144 451.2 R F1($!)3.098 E F0 -3.098(,a)C .598(nd the return status is zero.)-3.098 F .598(If the)5.598 -F F13.098 E F0 .598(option is supplied,)3.098 F F1(wait)144 463.2 -Q F0 -.1(wa)3.083 G .583(its for a single job from the list of).1 F F2 -(id)3.083 E F0 3.083(so)C 1.383 -.4(r, i)-3.083 H 3.083(fn).4 G(o)-3.083 -E F2(id)3.083 E F0 3.083(sa)C .583(re supplied, an)-3.083 F 3.083(yj) --.15 G .582(ob, to complete and)-3.083 F .403(returns its e)144 475.2 R -.403(xit status.)-.15 F .403(If none of the supplied ar)5.403 F .403 -(guments is a child of the shell, or if no ar)-.18 F(guments)-.18 E .573 -(are supplied and the shell has no unw)144 487.2 R .573 -(aited-for children, the e)-.1 F .573(xit status is 127.)-.15 F .572 -(If the)5.573 F F13.072 E F0 .572(option is)3.072 F .39 +.442(cuted process substitu-).15 F .598 +(tion, if its process id is the same as)144 552 R F1($!)3.098 E F0 3.098 +(,a)C .598(nd the return status is zero.)-3.098 F .597(If the)5.597 F F1 +3.097 E F0 .597(option is supplied,)3.097 F F1(wait)144 564 Q F0 +-.1(wa)3.082 G .583(its for a single job from the list of).1 F F2(id) +3.083 E F0 3.083(so)C 1.383 -.4(r, i)-3.083 H 3.083(fn).4 G(o)-3.083 E +F2(id)3.083 E F0 3.083(sa)C .583(re supplied, an)-3.083 F 3.083(yj)-.15 +G .583(ob, to complete and)-3.083 F .404(returns its e)144 576 R .404 +(xit status.)-.15 F .403(If none of the supplied ar)5.403 F .403 +(guments is a child of the shell, or if no ar)-.18 F(guments)-.18 E .572 +(are supplied and the shell has no unw)144 588 R .573 +(aited-for children, the e)-.1 F .573(xit status is 127.)-.15 F .573 +(If the)5.573 F F13.073 E F0 .573(option is)3.073 F .39 (supplied, the process or job identi\214er of the job for which the e) -144 499.2 R .39(xit status is returned is assigned to)-.15 F .905(the v) -144 511.2 R(ariable)-.25 E F2(varname)3.405 E F0 .905 +144 600 R .39(xit status is returned is assigned to)-.15 F .905(the v) +144 612 R(ariable)-.25 E F2(varname)3.405 E F0 .905 (named by the option ar)3.405 F 3.405(gument. The)-.18 F -.25(va)3.405 G .905(riable will be unset initially).25 F 3.405(,b)-.65 G(efore)-3.405 E -(an)144 523.2 Q 3.89(ya)-.15 G 3.89(ssignment. This)-3.89 F 1.39 +(an)144 624 Q 3.89(ya)-.15 G 3.89(ssignment. This)-3.89 F 1.39 (is useful only when the)3.89 F F13.89 E F0 1.39 (option is supplied.)3.89 F 1.39(Supplying the)6.39 F F13.89 E F0 -(option,)3.89 E .575(when job control is enabled, forces)144 535.2 R F1 +(option,)3.89 E .574(when job control is enabled, forces)144 636 R F1 (wait)3.075 E F0 .575(to w)3.075 F .575(ait for)-.1 F F2(id)3.075 E F0 -.574(to terminate before returning its status, in-)3.075 F .635 -(stead of returning when it changes status.)144 547.2 R(If)5.635 E F2 -(id)3.145 E F0 .635(speci\214es a non-e)3.905 F .635 -(xistent process or job, the return)-.15 F(status is 127.)144 559.2 Q +.575(to terminate before returning its status, in-)3.075 F .635 +(stead of returning when it changes status.)144 648 R(If)5.635 E F2(id) +3.145 E F0 .635(speci\214es a non-e)3.905 F .635 +(xistent process or job, the return)-.15 F(status is 127.)144 660 Q (Otherwise, the return status is the e)5 E (xit status of the last process or job w)-.15 E(aited for)-.1 E(.)-.55 E -/F5 10.95/Times-Bold@0 SF(SHELL COMP)72 576 Q -1.04(AT)-.81 G -(IBILITY MODE)1.04 E F0 1.355(Bash-4.0 introduced the concept of a)108 -588 R F2 1.355(shell compatibility le)3.855 F(vel)-.15 E F0 3.855(,s)C -1.354(peci\214ed as a set of options to the shopt)-3.855 F -.2(bu)108 -600 S .398(iltin \().2 F F1(compat31)2.898 E F0(,)A F1(compat32)2.898 E -F0(,)A F1(compat40)2.898 E F0(,)A F1(compat41)2.898 E F0 2.898(,a)C .399 -(nd so on\).)-2.898 F .399(There is only one current compatibility)5.399 -F(le)108 612 Q -.15(ve)-.25 G 3.254(l-).15 G 3.254(-e)-3.254 G .754 -(ach option is mutually e)-3.254 F(xclusi)-.15 E -.15(ve)-.25 G 5.754 -(.T).15 G .754(he compatibility le)-5.754 F -.15(ve)-.25 G 3.253(li).15 -G 3.253(si)-3.253 G .753(ntended to allo)-3.253 F 3.253(wu)-.25 G .753 -(sers to select be-)-3.253 F(ha)108 624 Q 1.083(vior from pre)-.2 F -1.083(vious v)-.25 F 1.083(ersions that is incompatible with ne)-.15 F -1.083(wer v)-.25 F 1.083(ersions while the)-.15 F 3.584(ym)-.15 G 1.084 -(igrate scripts to use)-3.584 F(current features and beha)108 636 Q -(vior)-.2 E 2.5(.I)-.55 G(t')-2.5 E 2.5(si)-.55 G -(ntended to be a temporary solution.)-2.5 E 1.457 -(This section does not mention beha)108 652.8 R 1.457 -(vior that is standard for a particular v)-.2 F 1.456 -(ersion \(e.g., setting)-.15 F F1(compat32)3.956 E F0 .886 -(means that quoting the rhs of the re)108 664.8 R(ge)-.15 E .886 -(xp matching operator quotes special re)-.15 F(ge)-.15 E .887 -(xp characters in the w)-.15 F(ord,)-.1 E(which is def)108 676.8 Q -(ault beha)-.1 E(vior in bash-3.2 and abo)-.2 E -.15(ve)-.15 G(\).).15 E -.523(If a user enables, say)108 693.6 R(,)-.65 E F1(compat32)3.023 E F0 -3.023(,i)C 3.023(tm)-3.023 G .523(ay af)-3.023 F .523(fect the beha)-.25 -F .523(vior of other compatibility le)-.2 F -.15(ve)-.25 G .522 -(ls up to and includ-).15 F .259(ing the current compatibility le)108 -705.6 R -.15(ve)-.25 G 2.759(l. The).15 F .259 -(idea is that each compatibility le)2.759 F -.15(ve)-.25 G 2.76(lc).15 G -.26(ontrols beha)-2.76 F .26(vior that changed)-.2 F 1.646(in that v)108 -717.6 R 1.646(ersion of)-.15 F F1(bash)4.146 E F0 4.146(,b)C 1.646 -(ut that beha)-4.346 F 1.646(vior may ha)-.2 F 1.946 -.15(ve b)-.2 H -1.646(een present in earlier v).15 F 4.146(ersions. F)-.15 F 1.645 -(or instance, the)-.15 F .76 -(change to use locale-based comparisons with the)108 729.6 R F1([[)3.261 -E F0 .761(command came in bash-4.1, and earlier v)3.261 F .761 -(ersions used)-.15 F(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E(83) -193.45 E 0 Cg EP +/F5 10.95/Times-Bold@0 SF(SHELL COMP)72 676.8 Q -1.04(AT)-.81 G +(IBILITY MODE)1.04 E F0 1.354(Bash-4.0 introduced the concept of a)108 +688.8 R F2 1.355(shell compatibility le)3.855 F(vel)-.15 E F0 3.855(,s)C +1.355(peci\214ed as a set of options to the shopt)-3.855 F -.2(bu)108 +700.8 S .399(iltin \().2 F F1(compat31)2.899 E F0(,)A F1(compat32)2.899 +E F0(,)A F1(compat40)2.899 E F0(,)A F1(compat41)2.899 E F0 2.899(,a)C +.399(nd so on\).)-2.899 F .398(There is only one current compatibility) +5.398 F(le)108 712.8 Q -.15(ve)-.25 G 3.253(l-).15 G 3.253(-e)-3.253 G +.753(ach option is mutually e)-3.253 F(xclusi)-.15 E -.15(ve)-.25 G +5.753(.T).15 G .753(he compatibility le)-5.753 F -.15(ve)-.25 G 3.254 +(li).15 G 3.254(si)-3.254 G .754(ntended to allo)-3.254 F 3.254(wu)-.25 +G .754(sers to select be-)-3.254 F(ha)108 724.8 Q 1.084(vior from pre) +-.2 F 1.084(vious v)-.25 F 1.083(ersions that is incompatible with ne) +-.15 F 1.083(wer v)-.25 F 1.083(ersions while the)-.15 F 3.583(ym)-.15 G +1.083(igrate scripts to use)-3.583 F(GNU Bash 5.2)72 768 Q(2022 June 3) +150.675 E(83)199.835 E 0 Cg EP %%Page: 84 84 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.905 -(ASCII-based comparisons, so enabling)108 84 R/F1 10/Times-Bold@0 SF -(compat32)4.405 E F0 1.904(will enable ASCII-based comparisons as well.) -4.405 F(That)6.904 E .295(granularity may not be suf)108 96 R .296 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(current features and beha)108 84 Q(vior)-.2 E 2.5(.I)-.55 G(t')-2.5 E +2.5(si)-.55 G(ntended to be a temporary solution.)-2.5 E 1.456 +(This section does not mention beha)108 100.8 R 1.457 +(vior that is standard for a particular v)-.2 F 1.457 +(ersion \(e.g., setting)-.15 F/F1 10/Times-Bold@0 SF(compat32)3.957 E F0 +.887(means that quoting the rhs of the re)108 112.8 R(ge)-.15 E .886 +(xp matching operator quotes special re)-.15 F(ge)-.15 E .886 +(xp characters in the w)-.15 F(ord,)-.1 E(which is def)108 124.8 Q +(ault beha)-.1 E(vior in bash-3.2 and abo)-.2 E -.15(ve)-.15 G(\).).15 E +.522(If a user enables, say)108 141.6 R(,)-.65 E F1(compat32)3.023 E F0 +3.023(,i)C 3.023(tm)-3.023 G .523(ay af)-3.023 F .523(fect the beha)-.25 +F .523(vior of other compatibility le)-.2 F -.15(ve)-.25 G .523 +(ls up to and includ-).15 F .26(ing the current compatibility le)108 +153.6 R -.15(ve)-.25 G 2.76(l. The).15 F .259 +(idea is that each compatibility le)2.759 F -.15(ve)-.25 G 2.759(lc).15 +G .259(ontrols beha)-2.759 F .259(vior that changed)-.2 F 1.645 +(in that v)108 165.6 R 1.646(ersion of)-.15 F F1(bash)4.146 E F0 4.146 +(,b)C 1.646(ut that beha)-4.346 F 1.646(vior may ha)-.2 F 1.946 -.15 +(ve b)-.2 H 1.646(een present in earlier v).15 F 4.146(ersions. F)-.15 F +1.646(or instance, the)-.15 F .761 +(change to use locale-based comparisons with the)108 177.6 R F1([[)3.261 +E F0 .76(command came in bash-4.1, and earlier v)3.261 F .76 +(ersions used)-.15 F 1.904(ASCII-based comparisons, so enabling)108 +189.6 R F1(compat32)4.404 E F0 1.905 +(will enable ASCII-based comparisons as well.)4.404 F(That)6.905 E .296 +(granularity may not be suf)108 201.6 R .296 (\214cient for all uses, and as a result users should emplo)-.25 F 2.796 -(yc)-.1 G .296(ompatibility le)-2.796 F -.15(ve)-.25 G .296(ls care-).15 -F(fully)108 108 Q 5(.R)-.65 G(ead the documentation for a particular fe\ -ature to \214nd out the current beha)-5 E(vior)-.2 E(.)-.55 E .532 -(Bash-4.3 introduced a ne)108 124.8 R 3.032(ws)-.25 G .531(hell v)-3.032 +(yc)-.1 G .295(ompatibility le)-2.796 F -.15(ve)-.25 G .295(ls care-).15 +F(fully)108 213.6 Q 5(.R)-.65 G(ead the documentation for a particular \ +feature to \214nd out the current beha)-5 E(vior)-.2 E(.)-.55 E .531 +(Bash-4.3 introduced a ne)108 230.4 R 3.031(ws)-.25 G .531(hell v)-3.031 F(ariable:)-.25 E/F2 9/Times-Bold@0 SF -.27(BA)3.031 G(SH_COMP).27 E -.855(AT)-.666 G/F3 9/Times-Roman@0 SF(.).855 E F0 .531(The v)5.031 F -.531(alue assigned to this v)-.25 F .531(ariable \(a decimal)-.25 F -.15 -(ve)108 136.8 S .107(rsion number lik).15 F 2.607(e4)-.1 G .107 -(.2, or an inte)-2.607 F .107(ger corresponding to the)-.15 F F1(compat) -2.608 E/F4 10/Times-Italic@0 SF(NN)A F0 .108(option, lik)2.608 F 2.608 -(e4)-.1 G .108(2\) determines the com-)-2.608 F(patibility le)108 148.8 -Q -.15(ve)-.25 G(l.).15 E .388(Starting with bash-4.4, Bash has be)108 -165.6 R .388(gun deprecating older compatibility le)-.15 F -.15(ve)-.25 -G 2.887(ls. Ev).15 F(entually)-.15 E 2.887(,t)-.65 G .387 -(he options will)-2.887 F(be remo)108 177.6 Q -.15(ve)-.15 G 2.5(di).15 +.531(alue assigned to this v)-.25 F .532(ariable \(a decimal)-.25 F -.15 +(ve)108 242.4 S .108(rsion number lik).15 F 2.608(e4)-.1 G .108 +(.2, or an inte)-2.608 F .108(ger corresponding to the)-.15 F F1(compat) +2.607 E/F4 10/Times-Italic@0 SF(NN)A F0 .107(option, lik)2.607 F 2.607 +(e4)-.1 G .107(2\) determines the com-)-2.607 F(patibility le)108 254.4 +Q -.15(ve)-.25 G(l.).15 E .387(Starting with bash-4.4, Bash has be)108 +271.2 R .388(gun deprecating older compatibility le)-.15 F -.15(ve)-.25 +G 2.888(ls. Ev).15 F(entually)-.15 E 2.888(,t)-.65 G .388 +(he options will)-2.888 F(be remo)108 283.2 Q -.15(ve)-.15 G 2.5(di).15 G 2.5(nf)-2.5 G -.2(avo)-2.6 G 2.5(ro).2 G(f)-2.5 E F2 -.27(BA)2.5 G -(SH_COMP).27 E -.855(AT)-.666 G F3(.).855 E F0 1.163 -(Bash-5.0 is the \214nal v)108 194.4 R 1.163 -(ersion for which there will be an indi)-.15 F 1.164 -(vidual shopt option for the pre)-.25 F 1.164(vious v)-.25 F(ersion.) --.15 E(Users should use)108 206.4 Q F2 -.27(BA)2.5 G(SH_COMP).27 E -.855 -(AT)-.666 G F0(on bash-5.0 and later v)3.105 E(ersions.)-.15 E 1.614 -(The follo)108 223.2 R 1.613(wing table describes the beha)-.25 F 1.613 +(SH_COMP).27 E -.855(AT)-.666 G F3(.).855 E F0 1.164 +(Bash-5.0 is the \214nal v)108 300 R 1.164 +(ersion for which there will be an indi)-.15 F 1.163 +(vidual shopt option for the pre)-.25 F 1.163(vious v)-.25 F(ersion.) +-.15 E(Users should use)108 312 Q F2 -.27(BA)2.5 G(SH_COMP).27 E -.855 +(AT)-.666 G F0(on bash-5.0 and later v)3.105 E(ersions.)-.15 E 1.613 +(The follo)108 328.8 R 1.613(wing table describes the beha)-.25 F 1.613 (vior changes controlled by each compatibility le)-.2 F -.15(ve)-.25 G -4.113(ls).15 G 4.113(etting. The)-4.113 F F1(compat)108 235.2 Q F4(NN)A -F0 1.186(tag is used as shorthand for setting the compatibility le)3.685 +4.113(ls).15 G 4.114(etting. The)-4.113 F F1(compat)108 340.8 Q F4(NN)A +F0 1.186(tag is used as shorthand for setting the compatibility le)3.686 F -.15(ve)-.25 G 3.686(lt).15 G(o)-3.686 E F4(NN)3.686 E F0 1.186 -(using one of the follo)3.686 F(wing)-.25 E 3.807(mechanisms. F)108 -247.2 R 1.307(or v)-.15 F 1.307 +(using one of the follo)3.686 F(wing)-.25 E 3.806(mechanisms. F)108 +352.8 R 1.306(or v)-.15 F 1.306 (ersions prior to bash-5.0, the compatibility le)-.15 F -.15(ve)-.25 G -3.806(lm).15 G 1.306(ay be set using the corresponding)-3.806 F F1 -(compat)108 259.2 Q F4(NN)A F0 .502(shopt option.)3.002 F -.15(Fo)5.502 +3.807(lm).15 G 1.307(ay be set using the corresponding)-3.807 F F1 +(compat)108 364.8 Q F4(NN)A F0 .502(shopt option.)3.002 F -.15(Fo)5.502 G 3.002(rb).15 G .502(ash-4.3 and later v)-3.002 F .502(ersions, the) -.15 F F2 -.27(BA)3.002 G(SH_COMP).27 E -.855(AT)-.666 G F0 -.25(va) 3.607 G .502(riable is preferred, and it).25 F -(is required for bash-5.1 and later v)108 271.2 Q(ersions.)-.15 E F1 -(compat31)108 288 Q F0<83>144 300 Q(quoting the rhs of the)180 300 Q F1 -([[)2.5 E F0(command')2.5 E 2.5(sr)-.55 G -.15(eg)-2.5 G -.15(ex).15 G -2.5(pm).15 G(atching operator \(=~\) has no special ef)-2.5 E(fect)-.25 -E F1(compat32)108 316.8 Q F0<83>144 328.8 Q .35 -(interrupting a command list such as "a ; b ; c" causes the e)180 328.8 -R -.15(xe)-.15 G .35(cution of the ne).15 F .35(xt command)-.15 F .017 -(in the list \(in bash-4.0 and later v)180 340.8 R .018 -(ersions, the shell acts as if it recei)-.15 F -.15(ve)-.25 G 2.518(dt) -.15 G .018(he interrupt, so in-)-2.518 F -(terrupting one command in a list aborts the e)180 352.8 Q -.15(xe)-.15 -G(cution of the entire list\)).15 E F1(compat40)108 369.6 Q F0<83>144 -381.6 Q(the)180 381.6 Q F1(<)2.674 E F0(and)2.674 E F1(>)2.673 E F0 .173 +(is required for bash-5.1 and later v)108 376.8 Q(ersions.)-.15 E F1 +(compat31)108 393.6 Q F0<83>144 405.6 Q(quoting the rhs of the)180 405.6 +Q F1([[)2.5 E F0(command')2.5 E 2.5(sr)-.55 G -.15(eg)-2.5 G -.15(ex).15 +G 2.5(pm).15 G(atching operator \(=~\) has no special ef)-2.5 E(fect) +-.25 E F1(compat32)108 422.4 Q F0<83>144 434.4 Q .35 +(interrupting a command list such as "a ; b ; c" causes the e)180 434.4 +R -.15(xe)-.15 G .35(cution of the ne).15 F .35(xt command)-.15 F .018 +(in the list \(in bash-4.0 and later v)180 446.4 R .018 +(ersions, the shell acts as if it recei)-.15 F -.15(ve)-.25 G 2.517(dt) +.15 G .017(he interrupt, so in-)-2.517 F +(terrupting one command in a list aborts the e)180 458.4 Q -.15(xe)-.15 +G(cution of the entire list\)).15 E F1(compat40)108 475.2 Q F0<83>144 +487.2 Q(the)180 487.2 Q F1(<)2.673 E F0(and)2.673 E F1(>)2.673 E F0 .173 (operators to the)2.673 F F1([[)2.673 E F0 .173 (command do not consider the current locale when compar)2.673 F(-)-.2 E -.067(ing strings; the)180 393.6 R 2.567(yu)-.15 G .067 -(se ASCII ordering.)-2.567 F .068(Bash v)5.068 F .068 -(ersions prior to bash-4.1 use ASCII collation)-.15 F(and)180 405.6 Q F4 -(str)4.743 E(cmp)-.37 E F0 1.903 -(\(3\); bash-4.1 and later use the current locale').19 F 4.402(sc)-.55 G -1.902(ollation sequence and)-4.402 F F4(str)4.742 E(-)-.2 E(coll)180 -417.6 Q F0(\(3\).).51 E F1(compat41)108 434.4 Q F0<83>144 446.4 Q(in)180 -446.4 Q F4(posix)3.79 E F0(mode,)3.79 E F1(time)3.79 E F0 1.29 -(may be follo)3.79 F 1.29 -(wed by options and still be recognized as a reserv)-.25 F(ed)-.15 E -.1 -(wo)180 458.4 S(rd \(this is POSIX interpretation 267\)).1 E<83>144 -470.4 Q(in)180 470.4 Q F4(posix)2.709 E F0 .208 -(mode, the parser requires that an e)2.709 F -.15(ve)-.25 G 2.708(nn).15 -G .208(umber of single quotes occur in the)-2.708 F F4(wor)2.708 E(d) --.37 E F0 .281(portion of a double-quoted parameter e)180 482.4 R .282 -(xpansion and treats them specially)-.15 F 2.782(,s)-.65 G 2.782(ot) --2.782 G .282(hat charac-)-2.782 F(ters within the single quotes are co\ -nsidered quoted \(this is POSIX interpretation 221\))180 494.4 Q F1 -(compat42)108 511.2 Q F0<83>144 523.2 Q 1.056(the replacement string in\ - double-quoted pattern substitution does not under)180 523.2 R 1.055 -(go quote re-)-.18 F(mo)180 535.2 Q -.25(va)-.15 G(l, as it does in v) -.25 E(ersions after bash-4.2)-.15 E<83>144 547.2 Q .021 -(in posix mode, single quotes are considered special when e)180 547.2 R -.021(xpanding the)-.15 F F4(wor)2.521 E(d)-.37 E F0 .021(portion of a) -2.521 F .018(double-quoted parameter e)180 559.2 R .017 +.068(ing strings; the)180 499.2 R 2.568(yu)-.15 G .068 +(se ASCII ordering.)-2.568 F .068(Bash v)5.068 F .067 +(ersions prior to bash-4.1 use ASCII collation)-.15 F(and)180 511.2 Q F4 +(str)4.742 E(cmp)-.37 E F0 1.902 +(\(3\); bash-4.1 and later use the current locale').19 F 4.403(sc)-.55 G +1.903(ollation sequence and)-4.403 F F4(str)4.743 E(-)-.2 E(coll)180 +523.2 Q F0(\(3\).).51 E F1(compat41)108 540 Q F0<83>144 552 Q(in)180 552 +Q F4(posix)3.79 E F0(mode,)3.79 E F1(time)3.79 E F0 1.29(may be follo) +3.79 F 1.29(wed by options and still be recognized as a reserv)-.25 F +(ed)-.15 E -.1(wo)180 564 S(rd \(this is POSIX interpretation 267\)).1 E +<83>144 576 Q(in)180 576 Q F4(posix)2.708 E F0 .208 +(mode, the parser requires that an e)2.708 F -.15(ve)-.25 G 2.708(nn).15 +G .208(umber of single quotes occur in the)-2.708 F F4(wor)2.709 E(d) +-.37 E F0 .282(portion of a double-quoted parameter e)180 588 R .282 +(xpansion and treats them specially)-.15 F 2.781(,s)-.65 G 2.781(ot) +-2.781 G .281(hat charac-)-2.781 F(ters within the single quotes are co\ +nsidered quoted \(this is POSIX interpretation 221\))180 600 Q F1 +(compat42)108 616.8 Q F0<83>144 628.8 Q 1.055(the replacement string in\ + double-quoted pattern substitution does not under)180 628.8 R 1.056 +(go quote re-)-.18 F(mo)180 640.8 Q -.25(va)-.15 G(l, as it does in v) +.25 E(ersions after bash-4.2)-.15 E<83>144 652.8 Q .021 +(in posix mode, single quotes are considered special when e)180 652.8 R +.021(xpanding the)-.15 F F4(wor)2.52 E(d)-.37 E F0 .02(portion of a)2.52 +F .017(double-quoted parameter e)180 664.8 R .017 (xpansion and can be used to quote a closing brace or other spe-)-.15 F -.998(cial character \(this is part of POSIX interpretation 221\); in la\ -ter v)180 571.2 R .999(ersions, single quotes)-.15 F -(are not special within double-quoted w)180 583.2 Q(ord e)-.1 E -(xpansions)-.15 E F1(compat43)108 600 Q F0<83>144 612 Q 1.071 -(the shell does not print a w)180 612 R 1.07 -(arning message if an attempt is made to use a quoted com-)-.1 F .248 -(pound assignment as an ar)180 624 R .249 -(gument to declare \(declare -a foo='\(1 2\)'\). Later v)-.18 F .249 -(ersions w)-.15 F(arn)-.1 E(that this usage is deprecated)180 636 Q<83> -144 648 Q -.1(wo)180 648 S .501(rd e).1 F .501 -(xpansion errors are considered non-f)-.15 F .501 -(atal errors that cause the current command to)-.1 F -.1(fa)180 660 S -.605(il, e).1 F -.15(ve)-.25 G 3.105(ni).15 G 3.105(np)-3.105 G .605 -(osix mode \(the def)-3.105 F .605(ault beha)-.1 F .605(vior is to mak) --.2 F 3.105(et)-.1 G .605(hem f)-3.105 F .605 -(atal errors that cause the)-.1 F(shell to e)180 672 Q(xit\))-.15 E<83> -144 684 Q .355(when e)180 684 R -.15(xe)-.15 G .354 -(cuting a shell function, the loop state \(while/until/etc.\)).15 F .354 -(is not reset, so)5.354 F F1(br)2.854 E(eak)-.18 E F0(or)2.854 E F1 -(continue)180 696 Q F0 .052 -(in that function will break or continue loops in the calling conte) -2.552 F .053(xt. Bash-4.4 and)-.15 F(later reset the loop state to pre) -180 708 Q -.15(ve)-.25 G(nt this).15 E(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(84)193.45 E 0 Cg EP +.999(cial character \(this is part of POSIX interpretation 221\); in la\ +ter v)180 676.8 R .998(ersions, single quotes)-.15 F +(are not special within double-quoted w)180 688.8 Q(ord e)-.1 E +(xpansions)-.15 E F1(compat43)108 705.6 Q F0<83>144 717.6 Q 1.07 +(the shell does not print a w)180 717.6 R 1.071 +(arning message if an attempt is made to use a quoted com-)-.1 F .249 +(pound assignment as an ar)180 729.6 R .248 +(gument to declare \(declare -a foo='\(1 2\)'\). Later v)-.18 F .248 +(ersions w)-.15 F(arn)-.1 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E +(84)199.835 E 0 Cg EP %%Page: 85 85 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(compat44)108 84 Q F0<83>144 96 Q .719(the shell sets up the v)180 96 -R .719(alues used by)-.25 F/F2 9/Times-Bold@0 SF -.27(BA)3.219 G -(SH_ARGV).27 E F0(and)2.969 E F2 -.27(BA)3.219 G(SH_ARGC).27 E F0 .719 -(so the)2.969 F 3.218(yc)-.15 G .718(an e)-3.218 F(xpand)-.15 E -(to the shell')180 108 Q 2.5(sp)-.55 G(ositional parameters e)-2.5 E --.15(ve)-.25 G 2.5(ni).15 G 2.5(fe)-2.5 G(xtended deb)-2.65 E -(ugging mode is not enabled)-.2 E<83>144 120 Q 2.634(as)180 120 S .134 -(ubshell inherits loops from its parent conte)-2.634 F .135(xt, so)-.15 -F F1(br)2.635 E(eak)-.18 E F0(or)2.635 E F1(continue)2.635 E F0 .135 -(will cause the sub-)2.635 F(shell to e)180 132 Q 2.5(xit. Bash-5.0)-.15 -F(and later reset the loop state to pre)2.5 E -.15(ve)-.25 G(nt the e) -.15 E(xit)-.15 E<83>144 144 Q -.25(va)180 144 S .619 -(riable assignments preceding b).25 F .618(uiltins lik)-.2 F(e)-.1 E F1 -(export)3.118 E F0(and)3.118 E F1 -.18(re)3.118 G(adonly).18 E F0 .618 -(that set attrib)3.118 F .618(utes con-)-.2 F .119(tinue to af)180 156 R -.119(fect v)-.25 F .119(ariables with the same name in the calling en) --.25 F .12(vironment e)-.4 F -.15(ve)-.25 G 2.62(ni).15 G 2.62(ft)-2.62 -G .12(he shell is)-2.62 F(not in posix mode)180 168 Q F1(compat50)108 -184.8 Q F0<83>144 196.8 Q 1.209(Bash-5.1 changed the w)180 196.8 R(ay) --.1 E F2($RANDOM)3.709 E F0 1.209 -(is generated to introduce slightly more random-)3.459 F 1.018 -(ness. If the shell compatibility le)180 208.8 R -.15(ve)-.25 G 3.518 -(li).15 G 3.518(ss)-3.518 G 1.018(et to 50 or lo)-3.518 F(wer)-.25 E -3.518(,i)-.4 G 3.518(tr)-3.518 G -2.15 -.25(ev e)-3.518 H 1.019 -(rts to the method from).25 F .733(bash-5.0 and pre)180 220.8 R .733 -(vious v)-.25 F .732 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(that this usage is deprecated)180 84 Q<83>144 96 Q -.1(wo)180 96 S .5 +(rd e).1 F .501(xpansion errors are considered non-f)-.15 F .501 +(atal errors that cause the current command to)-.1 F -.1(fa)180 108 S +.605(il, e).1 F -.15(ve)-.25 G 3.105(ni).15 G 3.105(np)-3.105 G .605 +(osix mode \(the def)-3.105 F .605(ault beha)-.1 F .605(vior is to mak) +-.2 F 3.105(et)-.1 G .605(hem f)-3.105 F .605 +(atal errors that cause the)-.1 F(shell to e)180 120 Q(xit\))-.15 E<83> +144 132 Q .354(when e)180 132 R -.15(xe)-.15 G .354 +(cuting a shell function, the loop state \(while/until/etc.\)).15 F .355 +(is not reset, so)5.354 F/F1 10/Times-Bold@0 SF(br)2.855 E(eak)-.18 E F0 +(or)2.855 E F1(continue)180 144 Q F0 .052 +(in that function will break or continue loops in the calling conte) +2.553 F .052(xt. Bash-4.4 and)-.15 F(later reset the loop state to pre) +180 156 Q -.15(ve)-.25 G(nt this).15 E F1(compat44)108 172.8 Q F0<83>144 +184.8 Q .719(the shell sets up the v)180 184.8 R .719(alues used by)-.25 +F/F2 9/Times-Bold@0 SF -.27(BA)3.219 G(SH_ARGV).27 E F0(and)2.969 E F2 +-.27(BA)3.219 G(SH_ARGC).27 E F0 .719(so the)2.969 F 3.219(yc)-.15 G +.719(an e)-3.219 F(xpand)-.15 E(to the shell')180 196.8 Q 2.5(sp)-.55 G +(ositional parameters e)-2.5 E -.15(ve)-.25 G 2.5(ni).15 G 2.5(fe)-2.5 G +(xtended deb)-2.65 E(ugging mode is not enabled)-.2 E<83>144 208.8 Q +2.635(as)180 208.8 S .135(ubshell inherits loops from its parent conte) +-2.635 F .135(xt, so)-.15 F F1(br)2.635 E(eak)-.18 E F0(or)2.635 E F1 +(continue)2.634 E F0 .134(will cause the sub-)2.634 F(shell to e)180 +220.8 Q 2.5(xit. Bash-5.0)-.15 F(and later reset the loop state to pre) +2.5 E -.15(ve)-.25 G(nt the e).15 E(xit)-.15 E<83>144 232.8 Q -.25(va) +180 232.8 S .618(riable assignments preceding b).25 F .618(uiltins lik) +-.2 F(e)-.1 E F1(export)3.118 E F0(and)3.118 E F1 -.18(re)3.118 G +(adonly).18 E F0 .618(that set attrib)3.118 F .619(utes con-)-.2 F .12 +(tinue to af)180 244.8 R .12(fect v)-.25 F .119 +(ariables with the same name in the calling en)-.25 F .119(vironment e) +-.4 F -.15(ve)-.25 G 2.619(ni).15 G 2.619(ft)-2.619 G .119(he shell is) +-2.619 F(not in posix mode)180 256.8 Q F1(compat50)108 273.6 Q F0<83>144 +285.6 Q 1.209(Bash-5.1 changed the w)180 285.6 R(ay)-.1 E F2($RANDOM) +3.709 E F0 1.209(is generated to introduce slightly more random-)3.459 F +1.019(ness. If the shell compatibility le)180 297.6 R -.15(ve)-.25 G +3.518(li).15 G 3.518(ss)-3.518 G 1.018(et to 50 or lo)-3.518 F(wer)-.25 +E 3.518(,i)-.4 G 3.518(tr)-3.518 G -2.15 -.25(ev e)-3.518 H 1.018 +(rts to the method from).25 F .732(bash-5.0 and pre)180 309.6 R .732 +(vious v)-.25 F .733 (ersions, so seeding the random number generator by assigning a)-.15 F --.25(va)180 232.8 S(lue to).25 E F2(RANDOM)2.5 E F0 -(will produce the same sequence as in bash-5.0)2.25 E<83>144 244.8 Q -.695(If the command hash table is empty)180 244.8 R 3.196(,b)-.65 G .696 -(ash v)-3.196 F .696(ersions prior to bash-5.1 printed an informa-)-.15 -F 1.321(tional message to that ef)180 256.8 R 1.321(fect, e)-.25 F -.15 +-.25(va)180 321.6 S(lue to).25 E F2(RANDOM)2.5 E F0 +(will produce the same sequence as in bash-5.0)2.25 E<83>144 333.6 Q +.696(If the command hash table is empty)180 333.6 R 3.196(,b)-.65 G .696 +(ash v)-3.196 F .695(ersions prior to bash-5.1 printed an informa-)-.15 +F 1.32(tional message to that ef)180 345.6 R 1.321(fect, e)-.25 F -.15 (ve)-.25 G 3.821(nw).15 G 1.321 (hen producing output that can be reused as input.)-3.821 F -(Bash-5.1 suppresses that message when the)180 268.8 Q F12.5 E F0 -(option is supplied.)2.5 E F1(compat51)108 285.6 Q F0<83>144 297.6 Q -(The)180 297.6 Q F1(unset)2.954 E F0 -.2(bu)2.954 G .454 -(iltin treats attempts to unset array subscripts).2 F F1(@)2.955 E F0 -(and)2.955 E F1(*)2.955 E F0(dif)2.955 E .455(ferently depending)-.25 F -(on whether the array is inde)180 309.6 Q -.15(xe)-.15 G 2.5(do).15 G +(Bash-5.1 suppresses that message when the)180 357.6 Q F12.5 E F0 +(option is supplied.)2.5 E F1(compat51)108 374.4 Q F0<83>144 386.4 Q +(The)180 386.4 Q F1(unset)2.955 E F0 -.2(bu)2.955 G .455 +(iltin treats attempts to unset array subscripts).2 F F1(@)2.954 E F0 +(and)2.954 E F1(*)2.954 E F0(dif)2.954 E .454(ferently depending)-.25 F +(on whether the array is inde)180 398.4 Q -.15(xe)-.15 G 2.5(do).15 G 2.5(ra)-2.5 G(ssociati)-2.5 E -.15(ve)-.25 G 2.5(,a).15 G(nd dif)-2.5 E (ferently than in pre)-.25 E(vious v)-.25 E(ersions.)-.15 E/F3 10.95 -/Times-Bold@0 SF(RESTRICTED SHELL)72 326.4 Q F0(If)108 338.4 Q F1(bash) -3.582 E F0 1.081(is started with the name)3.581 F F1(rbash)3.581 E F0 +/Times-Bold@0 SF(RESTRICTED SHELL)72 415.2 Q F0(If)108 427.2 Q F1(bash) +3.581 E F0 1.081(is started with the name)3.581 F F1(rbash)3.581 E F0 3.581(,o)C 3.581(rt)-3.581 G(he)-3.581 E F13.581 E F0 1.081 (option is supplied at in)3.581 F -.2(vo)-.4 G 1.081 -(cation, the shell becomes re-).2 F 2.976(stricted. A)108 350.4 R .476 -(restricted shell is used to set up an en)2.976 F .476 -(vironment more controlled than the standard shell.)-.4 F .477(It be-) -5.477 F(ha)108 362.4 Q -.15(ve)-.2 G 2.5(si).15 G(dentically to)-2.5 E +(cation, the shell becomes re-).2 F 2.977(stricted. A)108 439.2 R .476 +(restricted shell is used to set up an en)2.977 F .476 +(vironment more controlled than the standard shell.)-.4 F .476(It be-) +5.476 F(ha)108 451.2 Q -.15(ve)-.2 G 2.5(si).15 G(dentically to)-2.5 E F1(bash)2.5 E F0(with the e)2.5 E(xception that the follo)-.15 E -(wing are disallo)-.25 E(wed or not performed:)-.25 E<83>108 379.2 Q -(changing directories with)144 379.2 Q F1(cd)2.5 E F0<83>108 396 Q -(setting or unsetting the v)144 396 Q(alues of)-.25 E F2(SHELL)2.5 E/F4 -9/Times-Roman@0 SF(,)A F2 -.666(PA)2.25 G(TH)-.189 E F4(,)A F2(HISTFILE) -2.25 E F4(,)A F2(ENV)2.25 E F4(,)A F0(or)2.25 E F2 -.27(BA)2.5 G(SH_ENV) -.27 E F0<83>108 412.8 Q(specifying command names containing)144 412.8 Q -F1(/)2.5 E F0<83>108 429.6 Q(specifying a \214lename containing a)144 -429.6 Q F1(/)2.5 E F0(as an ar)2.5 E(gument to the)-.18 E F1(.)2.5 E F0 --.2(bu)5 G(iltin command).2 E<83>108 446.4 Q -(specifying a \214lename containing a slash as an ar)144 446.4 Q +(wing are disallo)-.25 E(wed or not performed:)-.25 E<83>108 468 Q +(changing directories with)144 468 Q F1(cd)2.5 E F0<83>108 484.8 Q +(setting or unsetting the v)144 484.8 Q(alues of)-.25 E F2(SHELL)2.5 E +/F4 9/Times-Roman@0 SF(,)A F2 -.666(PA)2.25 G(TH)-.189 E F4(,)A F2 +(HISTFILE)2.25 E F4(,)A F2(ENV)2.25 E F4(,)A F0(or)2.25 E F2 -.27(BA)2.5 +G(SH_ENV).27 E F0<83>108 501.6 Q(specifying command names containing)144 +501.6 Q F1(/)2.5 E F0<83>108 518.4 Q +(specifying a \214lename containing a)144 518.4 Q F1(/)2.5 E F0 +(as an ar)2.5 E(gument to the)-.18 E F1(.)2.5 E F0 -.2(bu)5 G +(iltin command).2 E<83>108 535.2 Q +(specifying a \214lename containing a slash as an ar)144 535.2 Q (gument to the)-.18 E F1(history)2.5 E F0 -.2(bu)2.5 G(iltin command).2 -E<83>108 463.2 Q .45 -(specifying a \214lename containing a slash as an ar)144 463.2 R .449 -(gument to the)-.18 F F12.949 E F0 .449(option to the)2.949 F F1 -(hash)2.949 E F0 -.2(bu)2.949 G .449(iltin com-).2 F(mand)144 475.2 Q -<83>108 492 Q(importing function de\214nitions from the shell en)144 492 -Q(vironment at startup)-.4 E<83>108 508.8 Q(parsing the v)144 508.8 Q -(alue of)-.25 E F2(SHELLOPTS)2.5 E F0(from the shell en)2.25 E -(vironment at startup)-.4 E<83>108 525.6 Q(redirecting output using the\ - >, >|, <>, >&, &>, and >> redirection operators)144 525.6 Q<83>108 -542.4 Q(using the)144 542.4 Q F1(exec)2.5 E F0 -.2(bu)2.5 G -(iltin command to replace the shell with another command).2 E<83>108 -559.2 Q(adding or deleting b)144 559.2 Q(uiltin commands with the)-.2 E -F12.5 E F0(and)2.5 E F12.5 E F0(options to the)2.5 E F1 -(enable)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 576 Q(using the) -144 576 Q F1(enable)2.5 E F0 -.2(bu)2.5 G +E<83>108 552 Q .449(specifying a \214lename containing a slash as an ar) +144 552 R .449(gument to the)-.18 F F12.95 E F0 .45(option to the) +2.95 F F1(hash)2.95 E F0 -.2(bu)2.95 G .45(iltin com-).2 F(mand)144 564 +Q<83>108 580.8 Q(importing function de\214nitions from the shell en)144 +580.8 Q(vironment at startup)-.4 E<83>108 597.6 Q(parsing the v)144 +597.6 Q(alue of)-.25 E F2(SHELLOPTS)2.5 E F0(from the shell en)2.25 E +(vironment at startup)-.4 E<83>108 614.4 Q(redirecting output using the\ + >, >|, <>, >&, &>, and >> redirection operators)144 614.4 Q<83>108 +631.2 Q(using the)144 631.2 Q F1(exec)2.5 E F0 -.2(bu)2.5 G +(iltin command to replace the shell with another command).2 E<83>108 648 +Q(adding or deleting b)144 648 Q(uiltin commands with the)-.2 E F1 +2.5 E F0(and)2.5 E F12.5 E F0(options to the)2.5 E F1(enable)2.5 E +F0 -.2(bu)2.5 G(iltin command).2 E<83>108 664.8 Q(using the)144 664.8 Q +F1(enable)2.5 E F0 -.2(bu)2.5 G (iltin command to enable disabled shell b).2 E(uiltins)-.2 E<83>108 -592.8 Q(specifying the)144 592.8 Q F12.5 E F0(option to the)2.5 E -F1(command)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 609.6 Q -(turning of)144 609.6 Q 2.5(fr)-.25 G(estricted mode with)-2.5 E F1 +681.6 Q(specifying the)144 681.6 Q F12.5 E F0(option to the)2.5 E +F1(command)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 698.4 Q +(turning of)144 698.4 Q 2.5(fr)-.25 G(estricted mode with)-2.5 E F1 (set +r)2.5 E F0(or)2.5 E F1(shopt -u r)2.5 E(estricted_shell)-.18 E F0 -(.)A(These restrictions are enforced after an)108 626.4 Q 2.5(ys)-.15 G -(tartup \214les are read.)-2.5 E 1.566 -(When a command that is found to be a shell script is e)108 643.2 R -.15 -(xe)-.15 G 1.567(cuted \(see).15 F F2 1.567(COMMAND EXECUTION)4.067 F F0 -(abo)3.817 E -.15(ve)-.15 G(\),).15 E F1(rbash)108 655.2 Q F0(turns of) -2.5 E 2.5(fa)-.25 G .3 -.15(ny r)-2.5 H(estrictions in the shell spa).15 -E(wned to e)-.15 E -.15(xe)-.15 G(cute the script.).15 E F3(SEE ALSO)72 -672 Q/F5 10/Times-Italic@0 SF(Bash Refer)108 684 Q(ence Manual)-.37 E F0 -2.5(,B)C(rian F)-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E F5 -(The Gnu Readline Libr)108 696 Q(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E -(ox and Chet Rame)-.15 E(y)-.15 E(GNU Bash 5.2)72 768 Q(2022 March 11) -144.29 E(85)193.45 E 0 Cg EP +(.)A(These restrictions are enforced after an)108 715.2 Q 2.5(ys)-.15 G +(tartup \214les are read.)-2.5 E(GNU Bash 5.2)72 768 Q(2022 June 3) +150.675 E(85)199.835 E 0 Cg EP %%Page: 86 86 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 -/Times-Italic@0 SF(The Gnu History Libr)108 84 Q(ary)-.15 E F0 2.5(,B)C -(rian F)-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E F1 -.8(Po)108 96 S -(rtable Oper).8 E(ating System Interface \(POSIX\) P)-.15 E -(art 2: Shell and Utilities)-.8 E F0 2.5(,I)C(EEE --)-2.5 E -(http://pubs.opengroup.or)144 108 Q(g/onlinepubs/9699919799/)-.18 E -(http://tiswww)108 120 Q -(.case.edu/~chet/bash/POSIX -- a description of posix mode)-.65 E F1(sh) -108 132 Q F0(\(1\),)A F1(ksh)2.5 E F0(\(1\),)A F1(csh)2.5 E F0(\(1\))A -F1(emacs)108 144 Q F0(\(1\),)A F1(vi)2.5 E F0(\(1\))A F1 -.37(re)108 156 -S(adline).37 E F0(\(3\))A/F2 10.95/Times-Bold@0 SF(FILES)72 172.8 Q F1 -(/bin/bash)109.666 184.8 Q F0(The)144 196.8 Q/F3 10/Times-Bold@0 SF -(bash)2.5 E F0 -.15(exe)2.5 G(cutable).15 E F1(/etc/pr)109.666 208.8 Q -(o\214le)-.45 E F0(The systemwide initialization \214le, e)144 220.8 Q --.15(xe)-.15 G(cuted for login shells).15 E F1(~/.bash_pr)109.666 232.8 -Q(o\214le)-.45 E F0(The personal initialization \214le, e)144 244.8 Q --.15(xe)-.15 G(cuted for login shells).15 E F1(~/.bashr)109.666 256.8 Q -(c)-.37 E F0(The indi)144 268.8 Q(vidual per)-.25 E(-interacti)-.2 E --.15(ve)-.25 G(-shell startup \214le).15 E F1(~/.bash_lo)109.666 280.8 Q -(gout)-.1 E F0(The indi)144 292.8 Q -(vidual login shell cleanup \214le, e)-.25 E -.15(xe)-.15 G -(cuted when a login shell e).15 E(xits)-.15 E F1(~/.bash_history)109.666 -304.8 Q F0(The def)144 316.8 Q(ault v)-.1 E(alue of)-.25 E F3(HISTFILE) -2.5 E F0 2.5(,t)C(he \214le in which bash sa)-2.5 E -.15(ve)-.2 G 2.5 -(st).15 G(he command history)-2.5 E F1(~/.inputr)109.666 328.8 Q(c)-.37 -E F0(Indi)144 340.8 Q(vidual)-.25 E F1 -.37(re)2.5 G(adline).37 E F0 -(initialization \214le)2.5 E F2 -.548(AU)72 357.6 S(THORS).548 E F0 -(Brian F)108 369.6 Q(ox, Free Softw)-.15 E(are F)-.1 E(oundation)-.15 E -(bfox@gnu.or)108 381.6 Q(g)-.18 E(Chet Rame)108 398.4 Q 1.3 -.65(y, C) +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.566 +(When a command that is found to be a shell script is e)108 84 R -.15 +(xe)-.15 G 1.566(cuted \(see).15 F/F1 9/Times-Bold@0 SF 1.566 +(COMMAND EXECUTION)4.066 F F0(abo)3.816 E -.15(ve)-.15 G(\),).15 E/F2 10 +/Times-Bold@0 SF(rbash)108 96 Q F0(turns of)2.5 E 2.5(fa)-.25 G .3 -.15 +(ny r)-2.5 H(estrictions in the shell spa).15 E(wned to e)-.15 E -.15 +(xe)-.15 G(cute the script.).15 E/F3 10.95/Times-Bold@0 SF(SEE ALSO)72 +112.8 Q/F4 10/Times-Italic@0 SF(Bash Refer)108 124.8 Q(ence Manual)-.37 +E F0 2.5(,B)C(rian F)-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E F4 +(The Gnu Readline Libr)108 136.8 Q(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E +(ox and Chet Rame)-.15 E(y)-.15 E F4(The Gnu History Libr)108 148.8 Q +(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E +F4 -.8(Po)108 160.8 S(rtable Oper).8 E +(ating System Interface \(POSIX\) P)-.15 E(art 2: Shell and Utilities) +-.8 E F0 2.5(,I)C(EEE --)-2.5 E(http://pubs.opengroup.or)144 172.8 Q +(g/onlinepubs/9699919799/)-.18 E(http://tiswww)108 184.8 Q +(.case.edu/~chet/bash/POSIX -- a description of posix mode)-.65 E F4(sh) +108 196.8 Q F0(\(1\),)A F4(ksh)2.5 E F0(\(1\),)A F4(csh)2.5 E F0(\(1\))A +F4(emacs)108 208.8 Q F0(\(1\),)A F4(vi)2.5 E F0(\(1\))A F4 -.37(re)108 +220.8 S(adline).37 E F0(\(3\))A F3(FILES)72 237.6 Q F4(/bin/bash)109.666 +249.6 Q F0(The)144 261.6 Q F2(bash)2.5 E F0 -.15(exe)2.5 G(cutable).15 E +F4(/etc/pr)109.666 273.6 Q(o\214le)-.45 E F0 +(The systemwide initialization \214le, e)144 285.6 Q -.15(xe)-.15 G +(cuted for login shells).15 E F4(~/.bash_pr)109.666 297.6 Q(o\214le)-.45 +E F0(The personal initialization \214le, e)144 309.6 Q -.15(xe)-.15 G +(cuted for login shells).15 E F4(~/.bashr)109.666 321.6 Q(c)-.37 E F0 +(The indi)144 333.6 Q(vidual per)-.25 E(-interacti)-.2 E -.15(ve)-.25 G +(-shell startup \214le).15 E F4(~/.bash_lo)109.666 345.6 Q(gout)-.1 E F0 +(The indi)144 357.6 Q(vidual login shell cleanup \214le, e)-.25 E -.15 +(xe)-.15 G(cuted when a login shell e).15 E(xits)-.15 E F4 +(~/.bash_history)109.666 369.6 Q F0(The def)144 381.6 Q(ault v)-.1 E +(alue of)-.25 E F2(HISTFILE)2.5 E F0 2.5(,t)C +(he \214le in which bash sa)-2.5 E -.15(ve)-.2 G 2.5(st).15 G +(he command history)-2.5 E F4(~/.inputr)109.666 393.6 Q(c)-.37 E F0 +(Indi)144 405.6 Q(vidual)-.25 E F4 -.37(re)2.5 G(adline).37 E F0 +(initialization \214le)2.5 E F3 -.548(AU)72 422.4 S(THORS).548 E F0 +(Brian F)108 434.4 Q(ox, Free Softw)-.15 E(are F)-.1 E(oundation)-.15 E +(bfox@gnu.or)108 446.4 Q(g)-.18 E(Chet Rame)108 463.2 Q 1.3 -.65(y, C) -.15 H(ase W).65 E(estern Reserv)-.8 E 2.5(eU)-.15 G(ni)-2.5 E -.15(ve) --.25 G(rsity).15 E(chet.rame)108 410.4 Q(y@case.edu)-.15 E F2 -.11(BU)72 -427.2 S 2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .568 -(If you \214nd a b)108 439.2 R .568(ug in)-.2 F F3(bash,)3.068 E F0 .568 +-.25 G(rsity).15 E(chet.rame)108 475.2 Q(y@case.edu)-.15 E F3 -.11(BU)72 +492 S 2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .567(If you \214nd a b) +108 504 R .568(ug in)-.2 F F2(bash,)3.068 E F0 .568 (you should report it.)3.068 F .568(But \214rst, you should mak)5.568 F -3.068(es)-.1 G .568(ure that it really is a b)-3.068 F .567(ug, and)-.2 -F 5.625(that it appears in the latest v)108 451.2 R 5.625(ersion of)-.15 -F F3(bash)8.125 E F0 10.625(.T)C 5.625(he latest v)-10.625 F 5.626 -(ersion is al)-.15 F -.1(wa)-.1 G 5.626(ys a).1 F -.25(va)-.2 G 5.626 -(ilable from).25 F F1(ftp://ftp.gnu.or)108 463.2 Q(g/pub/gnu/bash/)-.37 -E F0(and)2.5 E F1(http://git.savannah.gnu.or)2.5 E +3.068(es)-.1 G .568(ure that it really is a b)-3.068 F .568(ug, and)-.2 +F 5.626(that it appears in the latest v)108 516 R 5.625(ersion of)-.15 F +F2(bash)8.125 E F0 10.625(.T)C 5.625(he latest v)-10.625 F 5.625 +(ersion is al)-.15 F -.1(wa)-.1 G 5.625(ys a).1 F -.25(va)-.2 G 5.625 +(ilable from).25 F F4(ftp://ftp.gnu.or)108 528 Q(g/pub/gnu/bash/)-.37 E +F0(and)2.5 E F4(http://git.savannah.gnu.or)2.5 E (g/cgit/bash.git/snapshot/bash-master)-.37 E(.tar)-1.11 E(.gz)-1.11 E F0 -(.)A .411(Once you ha)108 480 R .711 -.15(ve d)-.2 H .411 -(etermined that a b).15 F .411(ug actually e)-.2 F .411(xists, use the) --.15 F F1(bashb)3.18 E(ug)-.2 E F0 .41(command to submit a b)3.13 F .41 -(ug report.)-.2 F(If)5.41 E .594(you ha)108 492 R .894 -.15(ve a \214) --.2 H .595(x, you are encouraged to mail that as well!).15 F .595 -(Suggestions and `philosophical' b)5.595 F .595(ug reports may)-.2 F -(be mailed to)108 504 Q F1 -.2(bu)2.5 G(g-bash@gnu.or).2 E(g)-.37 E F0 -(or posted to the Usenet ne)2.5 E(wsgroup)-.25 E F3(gnu.bash.b)2.5 E(ug) --.2 E F0(.)A(ALL b)108 520.8 Q(ug reports should include:)-.2 E(The v) -108 537.6 Q(ersion number of)-.15 E F3(bash)2.5 E F0(The hardw)108 549.6 -Q(are and operating system)-.1 E(The compiler used to compile)108 561.6 -Q 2.5(Ad)108 573.6 S(escription of the b)-2.5 E(ug beha)-.2 E(viour)-.2 -E 2.5(As)108 585.6 S(hort script or `recipe' which e)-2.5 E -.15(xe)-.15 -G(rcises the b).15 E(ug)-.2 E F1(bashb)108.27 602.4 Q(ug)-.2 E F0 +(.)A .41(Once you ha)108 544.8 R .71 -.15(ve d)-.2 H .41 +(etermined that a b).15 F .41(ug actually e)-.2 F .411(xists, use the) +-.15 F F4(bashb)3.181 E(ug)-.2 E F0 .411(command to submit a b)3.131 F +.411(ug report.)-.2 F(If)5.411 E .595(you ha)108 556.8 R .895 -.15 +(ve a \214)-.2 H .595(x, you are encouraged to mail that as well!).15 F +.594(Suggestions and `philosophical' b)5.595 F .594(ug reports may)-.2 F +(be mailed to)108 568.8 Q F4 -.2(bu)2.5 G(g-bash@gnu.or).2 E(g)-.37 E F0 +(or posted to the Usenet ne)2.5 E(wsgroup)-.25 E F2(gnu.bash.b)2.5 E(ug) +-.2 E F0(.)A(ALL b)108 585.6 Q(ug reports should include:)-.2 E(The v) +108 602.4 Q(ersion number of)-.15 E F2(bash)2.5 E F0(The hardw)108 614.4 +Q(are and operating system)-.1 E(The compiler used to compile)108 626.4 +Q 2.5(Ad)108 638.4 S(escription of the b)-2.5 E(ug beha)-.2 E(viour)-.2 +E 2.5(As)108 650.4 S(hort script or `recipe' which e)-2.5 E -.15(xe)-.15 +G(rcises the b).15 E(ug)-.2 E F4(bashb)108.27 667.2 Q(ug)-.2 E F0 (inserts the \214rst three items automatically into the template it pro) 2.72 E(vides for \214ling a b)-.15 E(ug report.)-.2 E(Comments and b)108 -619.2 Q(ug reports concerning this manual page should be directed to)-.2 -E F1 -.15(ch)2.5 G(et.r).15 E(ame)-.15 E(y@case)-.3 E(.edu)-.15 E F0(.) -.25 E F2 -.11(BU)72 636 S(GS).11 E F0(It')108 648 Q 2.5(st)-.55 G -(oo big and too slo)-2.5 E -.65(w.)-.25 G 1.869 -(There are some subtle dif)108 664.8 R 1.869(ferences between)-.25 F F3 +684 Q(ug reports concerning this manual page should be directed to)-.2 E +F4 -.15(ch)2.5 G(et.r).15 E(ame)-.15 E(y@case)-.3 E(.edu)-.15 E F0(.).25 +E F3 -.11(BU)72 700.8 S(GS).11 E F0(It')108 712.8 Q 2.5(st)-.55 G +(oo big and too slo)-2.5 E -.65(w.)-.25 G 1.868 +(There are some subtle dif)108 729.6 R 1.868(ferences between)-.25 F F2 (bash)4.369 E F0 1.869(and traditional v)4.369 F 1.869(ersions of)-.15 F -F3(sh)4.368 E F0 4.368(,m)C 1.868(ostly because of the)-4.368 F/F4 9 -/Times-Bold@0 SF(POSIX)108 676.8 Q F0(speci\214cation.)2.25 E -(Aliases are confusing in some uses.)108 693.6 Q(Shell b)108 710.4 Q -(uiltin commands and functions are not stoppable/restartable.)-.2 E -1.315(Compound commands and command sequences of the form `a ; b ; c' a\ -re not handled gracefully when)108 727.2 R(GNU Bash 5.2)72 768 Q -(2022 March 11)144.29 E(86)193.45 E 0 Cg EP +F2(sh)4.369 E F0 4.369(,m)C 1.869(ostly because of the)-4.369 F +(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E(86)199.835 E 0 Cg EP %%Page: 87 87 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .39 -(process suspension is attempted.)108 84 R .389 -(When a process is stopped, the shell immediately e)5.39 F -.15(xe)-.15 -G .389(cutes the ne).15 F .389(xt com-)-.15 F .192 -(mand in the sequence.)108 96 R .192(It suf)5.192 F .192(\214ces to pla\ -ce the sequence of commands between parentheses to force it into a)-.25 -F(subshell, which may be stopped as a unit.)108 108 Q(Array v)108 124.8 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 9/Times-Bold@0 +SF(POSIX)108 84 Q F0(speci\214cation.)2.25 E +(Aliases are confusing in some uses.)108 100.8 Q(Shell b)108 117.6 Q +(uiltin commands and functions are not stoppable/restartable.)-.2 E +1.315(Compound commands and command sequences of the form `a ; b ; c' a\ +re not handled gracefully when)108 134.4 R .389 +(process suspension is attempted.)108 146.4 R .389 +(When a process is stopped, the shell immediately e)5.389 F -.15(xe)-.15 +G .39(cutes the ne).15 F .39(xt com-)-.15 F .193(mand in the sequence.) +108 158.4 R .192(It suf)5.193 F .192(\214ces to place the sequence of c\ +ommands between parentheses to force it into a)-.25 F +(subshell, which may be stopped as a unit.)108 170.4 Q(Array v)108 187.2 Q(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E -(There may be only one acti)108 141.6 Q .3 -.15(ve c)-.25 H -(oprocess at a time.).15 E(GNU Bash 5.2)72 768 Q(2022 March 11)144.29 E -(87)193.45 E 0 Cg EP +(There may be only one acti)108 204 Q .3 -.15(ve c)-.25 H +(oprocess at a time.).15 E(GNU Bash 5.2)72 768 Q(2022 June 3)150.675 E +(87)199.835 E 0 Cg EP %%Trailer end %%EOF diff --git a/doc/bashref.dvi b/doc/bashref.dvi index c1f6fc6d97a0dfe8774305a3a7071f4165679a14..aeefb057f795ce156296f387774ad6b379f623e0 100644 GIT binary patch delta 5715 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�bAl#om{dgGr4_d0GdGAVyoeDx-}M93s;YqUfjm!UT~E7zHOQ={*x)#^{4l z%0W69k<4hoM5R>^S+#`Do2x_9aZsglC>b_K*`b5HeN4wWPuZab_YFpGE>}7Xu(TVa z%u3}^HB`LEXn2j%qX*x9+*z3NsKlhRZbG%uz^w33FR&| z9IIiZJEI(;g^!jpT5?f2*8u155NfkV2iLbS@yGvG(#mr?l~MCUyU#k`i&xiZA?9Ewk>NS@1|6i7brN03RL|E!y8pQmhN+ndQaVLluYv5}J88`{ ztMxi~`9ddAZGrj}f;nL%V|0DCa0C{m}Gz?FhqH>tBp&oVV_c1w#1rF$l*ESJSO zB)U;81;O?*MqQ7pryJprgUtOzeM14KBFL0;>V+ow2jJd=HJK#h8+CXvTq$8x+O7@@ zhTGpVy2)v}nV?HLqx4Wsk03BLG1}WtGdBqO7zwp9S`P_lWih>+Mr$4kFfy3z8>dM~ zhp{v9`|oQ8k|0U*Rt&875=twx;k^PTE)LZmodl-4B+jPIcn-v?OuVyETNMxWQH<=D qwTq+SUq3SnQ|Ts*1s=;ZfK*P@{U;g5hmch(bsVTx%!F^`zyAU^ PD*sW-mVu8t)ws%_!!M;Y8oUYT3 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

    jK(?oZoN>g~q z67S(q)kXV-CsMb!I+FAcJsZ!{GqIgL2#1d02#z~|tr3dYghaOZjGh-TGb>5~!}gg1 z>pfKE^&7w_BifE^SfNwsgG2!XaHb^|nXLqyv;+BNUk%6(FH%V1AG6@Ak_S{^pvY$> zP*xx=sK?RR8d-q$=s53ipV0D$HDPEb`bwEG<)8+NWW`&S1c`V_MNzUh47EYZSrh$d z$@t}SO4X^M^CZDE1TBq+B=~9&+?T7`ocMH!1#3w%)gcrNZR3f?D;(IatYkztQw~hV zGTVHjNZ%30IoT-(rS65r_6vpbn;cBFSIFkcYV+LlG--Q0zHs3T?xjsY&{JLQQ@_IT z7je8Y&Q!IP?G_)Xyc;jxm?yK=_dIpwJF+B(emp(x6dF9!U!0gCf2RULj(vBI&#ArX zp*Z6#(k%m?FR#IT<8My-#CaQv)|X(9PulzaM9TN`akw6;Qis(_eM$YIsifF{2i|u# zZd=?_la~A+z58X^(^|uzV0t}O3HU)P8-bxNdZ}EsmC2#lqxRE)H6`5p#hqHrR7F;I zhDkr0!q9e+-0SW-+6i92R;pan{sFvdkk|-!dW-vQp|Dc*pP6-8e{bgx+#_(USpi4= z^z$zGSem{CD*rkb~eW{9lf5 zH!ygiQsZ0o=;mFM?joE9*blsDph!y_n`nPX4SbF68dS* zuL>W9@@5r?M=qj2n*@tEL#XV3FU-YvTPI8pu0_Rn5|i_Y z$4=`9UKl5q6!^=S^ZHGd=%CBinPJ_$ng_AaL_q`-=zd#3KIMWU|o2Z*qz zDwn#YU(n;iFRTGl|j4axcI|MJ5_WoCv+(!Mq36WIuK~fsG zrWc*It0U>pPd8cEz&xOn6=Kg7yTp>(mZwsWaU8XI*6h4JoVz;;-LkJDk70KR6~x(| z!Jd_QCU|Iydj4N(zZucC8R6HB=z2_&zwXgvyYBk4yJ*ScZy&qLR>R#Ohl1hAq zA=;7AcL_Y;z}*^g#E$?`G`BxeSMg+LbPr#LbV3fiF;9WSqo|3bp+t0yaxiI1E^wkO z;dc~6I05wHP}jaiJJ+7mG4#bqsqfqpFI#Abu;Sq4iUy?+^g=Tx&AUn)=X^(*PGvcR zGNIXxL^7K#Zr3ZvJ%wRtMF_0{!lq=n-_mQbF&uc;5FJ-^f+W}i_q%D{VUdD)ETw>m zLsk1pk#)b+Ex&U!ZtqH`o6W$ht8ToRLpbKRq#vHIx0*@8Vh+Vr=Nnf#enP#S`CR8V zdg)++2XU2!NZFU);*RFR4MJMIh8wkx=OChmL{p9KGNGo$jKB$!e~;>HMZ^J1b@Vag z4NeFC7Fa}H?a2k-GE;>kuXVdq=**EVMH5tVQ>eC`B`Kz3l2RlFU@F$))L->3<&piJM>Tp_L zUo0HoM@`$ZgypY|NQTo~(uiUkZEU?hJ|n4+5u(lZ&LHpy6M|@*Ixiv$u5Wj% zk}L%Yu^0$6Z|>3g=%WZ?x^t{Q7Ir2u>JhmG!}qbPhA?ZdDH))bhT-tLq6lrIZ-;?98|0rC?C_pf*`p~m1e&eEvWYaJ;%E_MyB6W%;JfAL{Tzsh73=@{gk z@bvp5+*o1{Ku|U9h#zfHH|4MAG?_%1h#!GMsV&3~YS$*1-8<-(E{@4Nwv}1o1`;#h zU_gLQ8;q1>121r^kbX_y*)Gv#HLxTL7EAgv3rp}O3Q1+=G&$4)&n`UrH4U8J{Woa~ zr@^qVVq+Pomg!W=l0Q+`ef>9HpyzDi9x1Cp_0M_Z+`yU*ee01suMl2-LYNGBF>8qA zGgPe1IntoDj`*W8O1vJ*$tl6dqbBO5j7YD&r}AaAZDVQLt?cH>I0S$fvlka z71CP+(vUO5;$bn{{}c8h{zsx%?Ipp03OE2)rm8RuX1ifDU?1u~mk+C5BLScb{h!ST zn1aS?A4&z>z-78J|99e89zY!N{{+$PL_Yz=aG9e2xrgn48vyAD|10qC2He5_j{v(p zbQExdoQVcRBFaQNf<^*z@Mh-C0|dd#^*iQoV#yrCCJBqh!|43~&2lFdM-mm!%0#iCyhN zC{}G$j%QgiF$Y4Kq>}N)WJ|S*VM*a;kdu2N4a&0Sk|W9H#>+-G`UPKv^N$oSw(o8yO5wpEL|kmLSIzmoDkNte*YW7KXvrqoPh5xwx^FEYG&m#MUk0 zpfBka%@s%HkV2#GK`*%u3oK1jK*lmqn|C8ankrMQVZrv;As*9gx-@qsDD73p>&TB- zp&t##MDwf6k|D}-V-qzIO6SJ?D>BcGtEX0GS9`F4M5rj7WACq>kHY~Dgb-jKFsr>_ zXAKdg>QX4HRU>+EJVpyv2#v>t*;skRez2P_H*sojg1edGWkW27ckJDhvpb3Sh?U~^9oisLcufO1b62us9RX05Q&!CvqE z!moQ{8=w^8f1MlOm-7O)#uy%~Ekf_6topShTB{Mi{n1`lsa^4ypZK?DW5U9i$7feQs&DbdRR_T)NrGEjfv^5QbKY0Ba_Ey#B`LhRnowKnQE7IxPaK7S2- zdJ8$3VPl5AgEs*<1V-XfTof}=&$nN2UayWm-2J_Xy;l@c)}Al>cwWz}o_zOf%i3=B zLiM$KSR_)PG%6~<8nyO`(TI)8+@PO5KXmW}h*}*>V}*mO{oE06;`%y;-U?&tdq^KD zzWClwt?hgC1M*NX0Uc4}ccTGGI9c#^NeAw}^nm|rpAe#)lYM#yu`WOyYm+z(QjRgV zyW@WifzTC}5&-f$bfra)Z@-03c-AqxaGkA6N0_>k%R~Vtnr~d zKec`P)GxusroV(dRq>XEc#y+9cK=*!-4Z_cyevHS_kN6{L-~DMWCTHy59usO7u`kA zqp>jsV{MUIc)_4btdw*S%l1X0#zjlPz>KEI={J@}_BEDas9;UUAvk`R}-$y5z0CG$;oo>{IZm6w;t#Fw3K?D-v*&?KLfqOCuauv~{N* z@(B>$to;OUGik;1_Y?*hy|Z-^(TM~@WN0J$0<|}(7}!?1Hkbz|FWmT|mPi%VcUJUw zPwB7wx#+m)?&cxQMJWJj0*uLhn2=YasMU}sEHMvU!4HY}meRjx!_1_R*aYARYQd3h zChZ)xs?9fdA(==N))%zrO;U+g zziI>_RL!S}N8)FR7Q2)vpL680pX(|ye@W%o>WZ;!=O=PuP_1!7O;VEMLv`ug#De2* zIe_lGq&i9Xzv%GDi7WARvEiQWLcqw`XXZP6T@WypE0z;S4OJ1i>_Knr>l|6otF$4l zNGUPxc4tE5ZDD%dbc8C`y^5$Xt|(g|_pkMbtl>UzGYqceF2sI9wPvAr>y@1u9%j83zpQ6MxI}mFM3>?K<3HD8t|;~s%KQw zJ%mZRkhEVZ&;!bExG7Mm{L^F)M5N$yL%-QXFe@vO*OIxKr=)e$R=alZ)Wp{>V%G{y zb960#kKtw0NA%OT*m2sq3ONrpw@BhZ_!tafpgV-KaXH0FTjADbvDkYcsE`8`H7 zoi{qM|Z<=~ONGsG$K5h3}@ z7?v`RY!JpzmHYO0H9Tl2;;VukhWM*7tN`plC8MO1T(r$CTv2a{QBE?3az&|{u;^$V zU+m*pd?~G~I0KUdg+M$f;aEl{Cu*EG45v3r$>C<6VWoe;EjNQ?$Y=5y6|n50D@27P zHlVio2dS-1y&X1@4lpI%d2mrp?rYpui7RHgr%Tomlac+~ROyhtH4(;!>INZsg>?KJ zdYr0!OMmJ^8O3<*fqEc4fXc%7B9UZJ+jl<@J(uL=-QA;Vjcg-*+k9}a)}W>0JqS*D zQT&Vx6=ta3}lz||IlDp+mRAovlNJ85JF*^VDR?`%^=(0HAs~)AahQi z3O!xtNf}DsRMa({{KChy;_h7&7KpWJ>FwT&H4gGAx7b3Vx$4Q@-V%7bdjs{Usb)!L zcXf6Clieh$+k&pYx;Hm&SqAf)E12|kZRrxiZXX$T9v8PiNow96J}p%WR6SW28HJ1#Wef<)vz z3T@gSRM#eYK5Mgm*;|%bt@?Q%6?z?;INo#ht2_ws^atvrS762XoDqI4b$>5_&zFXPvt03HIM+Wz6wV7rMc$XCqd=1s;B!n88*-5%tD$}1ta9*jQm;` zgGn|DSp6$-br@)ZKml%@Z$&smP!xkEp26%hm~H$=)_AlMR=Qkj!;Wobhc;JydR=ui zoI~f$o|>&KK>E*-ozO#))aV+67`EP?#C8o5-wP(k(Z}ZCyR&VfPly@}H_Sen)J?Bu zZ8a0T`3F_mK7nuGGm`2L@!I|569!F{-uO!yoCD_{4kkkiP9osE1iMjw4aSu>L*4rY z;VC1DhCilANCI8iN2udf1GVc8fwv$8O68ty2RXB}C3hWd z_{lv~3nIwyMOl@ty1Js_iB&|TKWnqusz^4rGHJ}ywwOJAhv*uEzxZScq~_=-4NBi? z1%~`K*UbI|cSwN?M%onZo%r`j+2QQozo4=P|gd_t~4%J(t=PG#o??}32> zVphJFun7qwAjx4NdWzCOX{&E&+JK4~E0&V3OuLgG`~g@gibnS6ifxP*VP&jFvK%)r zKAWu>`v(@DSe}q#p-5a=ZhM18-}s@FgNQ3mP%>am7u8*F4Wl#O zpfF&(?Fud*27H^JbO`WVA!r_%9r128RYnKdP51X0cc8tAbElyQ<-NZ2z|gb>bfUq; zT?~Gh7JU=;>8?|&MowU#De+*VM7EP2d85v$To7qi+aK?+W{h5{S zEu5N+WC|qtIHI-_^-cuERf3WW`S{2ia%P&0#VH%!H@&2}LafAIt1aFyTrwMy(* z0vC(`UG88bHl2Cx1hce_f$0LDK3!S!+7$H7iSAc8uTuVh-<=xzaUnqRRf6 zUuB0W9uiggpsI&EOa-B-M4LI^Jv}vZJ*^0Ckx7HIU2^M3RL?X762up3o4ubnMs*H)ef)>|^?sUptz}sK&saTf1=WBo*66$F}WsY}>Y7QOCAz+eXJm2OZls`s=;-d(Qd(WMr(W zXZ@;CgfvGC} ztDqA=BrT{L0@-Emtl5|f%5Jg@nJO7e)392@+>0JY{FeOmDLtDz3iQvyg4X7*@6 zB@wJm7SW7XhjaQ0bOrJ0?<^vwgGO85V{kz7l_P+A5igLsnM-F~5FhE6lJC&UXuIMC zs{8f!P7YQaY{Lf8M3)A67UctU`5=624-A1J136&>M%CR_S*c(wT(-5L&Z zA}kWa+&YaFdF?}_)!TQZA=N1y5vbv()-&l|x^~o5Q&saAL+^MHNqhP~#J6Pvcxi$A zOj3`Bcpm$@E4?ISAcAfx*P(KE&`?jnGu4|*{sG4t$gEiGr(n5sA_*AOFw0D5-F(p zhz0$P`=2}n@|uT@%IV=q8@QxIxRRJqoU5P7J=;bs!*Hp5EJ_6CyuFl3e~N5@A*>64 zkHp)!3Y7gQDXd*P2JpjYdZzRSd_&EH{C1xLj!tG+*E7%}IB?+xHNc-fJsGDC@r}X5 zkcmM?hVusy_KDP!5Hd`5Hrt)Ss0qh5l#~?6Hs-Vr>;mmNhpr}$bua^p!in1o{!{Tc z+zkp2u4IDt9D}%_q04xzcf)(&{8)lGYk6?70(%R!l>nL1svbDwTx<$}FR--K&e92f z8;^FEi+N!7mxRI(CNd+MkQm&8-_A&@l#T(GCHY=jaAQkO9IeSehmvI-(e)3%k4JiK z+(L7RxuV`mi66DdH8+U{Amg&ASQB>Uwz2Yo?dz99N{rUg@nHFH1b1Wr+nCFx=Ui69 z0A|}5%k)|)In^{utUcCa4H35!rR+x5a^m*Q^Dgsfp`&=GqgL>eOr6_#rkHN2ig6#T zW5N)PqiK9!#FP-998ZhGVqJdz2SeXL4UtnoX6SdIupk0fu`J{~nV3~Rezlip9brl4 zl?`q}h3*egIEFLvDuRvz*8nty>)@f|W+xL+m!5a~@WI5s9IU}95-ao9chNO0TQn@& zEUIFokBG{pshEOq1aZBYThEr(ye=M3Ny$kyQ>EDgltxG2ZMmvwj7;v2PFF2u%aINS zdc{XmsPPk$68L@0?_V&F$S9Zl3v=iqT?-}GO%qIJE_=13)KrLoY{BU%H&4B*;e95d zFHT1S;jW?afr{daJSU*3C1l`1bZZnVwv5O|IVlLRO^vL~EAZTn!2O3T4#!1JvNYPB5ke+eo!KxJMkhs! z4lNK&_vAu*);EutHiDB*)HEVJTp}j-tiljDvdRNK2L32w0wh%%t)sd^J5Oj~yjVWA znras+oq(l)-{o7Q{L5i2$cs6v^F6PYsZ2p;P4Xs;rif}l?pQ>A@9v-Y>Grwvl}yV; z;{IMJnTwt$ax*biY>gALC0TIB@7ytYhDiiT7JA>b6tFxumQrp`CzIjmlSFEnqvVzN zvsr2)-09hrh6nnSEn#H0`RJK;K}WIE9nF}z{**`Wot2#T!42JfCOrk@X-4~id`yIA zFxY?2svG751CZBlEEs3#_5{`l$^EjurY7Cx58!bInrgWQg#?j5cI-$DSYLfI9g|h~ z`@10ml0=l{8FVe0xS%ALqA?eb9vxf30xRe{?ca<|{Z(^ARS51MGjcDuEm?xNZ+Gdz z1MO3z%BVEZADMbiLx=g_EJ-D)KsCaDTg?2tiN}-!W+$p^I2WcgsEiuy2cUnS2DP-I zL<$M4B)({wt=j9bG(p-WxgPcC+IvQ$(uIz9uq-<=G?y$2vYIKVd6@0q*F%bjmiP7J z6@|_gTL(q1k@NaYWUOOnl3AQt9~&qkB!VdRRY9%^>irC zpomI)pX^caz*B%OWYTvp>vV{@43j8!ev#OfifC-U)#q#4>|LdePi|;x_?Q5twMQ&D z8N_@hETM#*B09h^(HGkI;67*75hB^PL_^X8sKi5a{kabkS`jBQkOgx_DO0YXP?jOk zIij;0w(i~Ng#z1}+7?o%;-+q27AbS4%G4y^65c;Jj7JCtz0{1Vvm?=)JyelQlzzb{ zSnOR)>x9Qx*3Lh5sy;YV078OfCU=zJl|hczh@%V7Jg+1h5=cy;9BfdZMJQ06)x+Zs z{Qmcgn8I{WJ31WH&a}v@&+9QyL$Jr|{?5E=(>Uq-`@!n;BTTRFy?Kw1X#p7Xq)NvIaBQO-##quWJF=?*YIahM~w9$d;I+*uEA~MIQJa=bL@%K?#<#CqAhl&&> zaoR5q0e`g$n5I+GZjaZi8>i=A@1wI?R(ba<=siwheRZ~*vhg=o-$`W7qS@HYQ5=By!XZuTX`*4Iq1hpM^qZi0g^sst1;t3Hcj_nc zoPlI2cqUV2`hkK($$^UdwopsDTOKYLHr#*jnj{CSf&J$!dRsIT z*cdz*%YV>6?XOcp+m_4^7LD-Vt86l0&)+Vpk7NDx5T+XAh? z`u_#_XlZV(V03K(u3%GeX-rZ8#5B6U2ix2tz|7&nm^hLexGB@{{z83l7M8!`1*6Wt z7O<3q4mWD=xyB8bU%{AmJBTn~yqFcPGw|Dtk@*5QRct(T1G#7--YHPfK*^hsQ6aUu z4BMq%ZExR1EkVtIUKL(S*OA%Oow*TZAVG|@aG$QWd=WcG%vZX>$yvJ+W&Ci?95c-Z zPf3F-#+d4WX5+xvrpz=sK$yOE2To-q2Kj(_DfIU2E^^7LWpO z2yf)!CkHpo09VW9Pk$458`L!k49aM6@F0;34kFP()BD@f_0}~QX&MxKlHAl)^&y>0 zru>?9Zn!VU;&@&QWI1l$&DB)$Xr&@YA(|{^#RyqlSa}y%!~Xn8JG0`G=JgCQlC%qU zz8D50pk1`y-qKNo%sP6=615YrJ1~ufP((FNn#ru60>fw@q_T0E@<)l;eq0*M5A&)$ z7S4=(yr%{AC@0i{hO{LvRc!kt$!O`;AIP1nC?+z6w9Q@s z`~Kx(l_1gd9Pz*!%6(j?*b?x4inSE$QCLijQdU%38FnQnuy2ia6xrp3xzZxJDd+rh6JO2^k0g9-{N!om(Ej#1o8H_PqD@ygK2PcB6CUrH2fl2&wzTW#Drn#}TblIA3C>c~VQz0i?Wd8<RTo$m+A3Ly8G#%#uvOBW$b^o;5?ES-&1;mRnpij*!n?%UEnGfL(!!15Q zfMQFUoik{D2~k-YBn*x8V%$K??YP~>yvDNsSpPh{H0{Y{IPL?;0sXV8XZvQ34E!6X zalVDTfbXlx3G`Emud#lJs@$~{>l1GQb233J46rn8NcHt*8CIHJ?S%EakP!Mdn7_`q z{{)_9B(=Xjj*N_sQb>_0+|=-*J>x9KWc+5$<8?R7=buY;j-x*fY)#Ip_fS)ayPg$j z@#vhUKjzV18$?Q>2i{suY`JGIaLXqY#FA$7fhzon)DZQ~M+b|?5?ImAV-RIkdvw%* z9k2+2H`28ePZ94jnDR z^;V?^sMdTh_kNFduxhh`k_X9Yfs(W4)4!AkEN}U&j#lD|0%u`=AIdN3?~xU_}s?1TR}{S;N3Fh{flR?Vt5^gKIk#;Q z0L9eagI$aOGfN1Mha@t7Q^Loox0pu5ZnU^)SlTf;zx&ql%b)b!>}%AvBi&$7?n*R< zef_C$4EQO93%hfL?06z4=WuM}ftK?pC47{0Y)F=0f}c>>IP6=4>+sH9d_om8Dz(Te z6F!URVZ0H?8<(We-1wm@zg}*?EhtJPLff2Fv~3~FMHwFw(D+te6 z$KiXYq0|z8C(bF~k50|WU>Cn&S7T4;1r*^(}^j$$L`Gz1Kw9SKY2UK%) z)flgRVFBFE!0~+cW zYwepEnBeeT(DHi_%tIm{vBe+5`eZBc6BUOX?kF+q4&UeR<6eoP9GYI!%vqC`e+A|y zDVa*y_TaRtDiSX@|ePJfHI(L@~@hdKFzN+ zLmPhXKkhtEg=PlE9zRzCV`diSgA_(ErGTiW14H01ybISgij?b_*vR}P?7oVTE#^ss zC>ZKpMVm;5uR(kt&UdFjO^v$M;rSykoF(zj(xsyJh>yx18?L{^_DA*ThARYyRSp5S zs`tV5b9!ERFY2$BpUMi|b1XuAZ@|*+p*;H$F@=@C(<)Z;G$(ZkbTDSl|I*J*3Yaha ze^LXm5KII5ulHbt`!`9QSAu!`o3GH?{-&X~|9KBVgJ6Bo|GE=ulmDcpf3~LDs8_&r z|Mz=K8S0tjUX%*fGGZuNXi2H6<~>g~0(q4*^~kZi}2(iQtF2|;EXiJhfe!ik^UIQb?0w8!G9a4t-#5^}qC zV(2Dvu9VM&Wtc9g==iuTR?n4$=b2vL><6e!b0$NzN=nJJk`!d^;Fc;eh(bd1oMV0pf88D=;` zG=!2&U^Jj;_ghqTlEfBQWuZ*bjILI|4I3gwSdxOf z_B}#MUzLc5Y7dmoB^A)G!L>bCFU^zs`4E{TD}68G+kDFIz{X<^{g{o z$#gCNtg&uAa>lf_tAETz(rqS-?(u-BBD*}cUWW30i~>uk*0FkT$&wmUrScG&ufkAJ z6KJo<7$|SZBL0mmFhaUM9$_%+xIuFmY`*{12^aQhGFcZnK*moEK29p7g?J=fOFi|HsVb1%q-1N%!HM7>br z1L{xBIQZKWr0yQymJR)EPM`Y~I)hI~b6~1NCX&y+)jlUt9UhgAkccvoYaz>)p$$!FyOkf5S<{$ZJ(qjQ zclVTyZUe?%{_p3#UtblQ9}W$Cn^z23dTm`kWqi5;J|Sf1yK&U(@s&P84XI6rBS0yP z=?<+gyLWS&Z}WZGwf41Na47qdX_vj5_UbmDuXjU_wH+M;*I9j)j^6e>7|C8V?W9j# zZ|Su`o(2$1)#Egh1hW{BZ=jFC7oj-0RTL@sK3QGRr2-DYaZq#fWa`FGnEsGLx9T8> z4e^H#!-!3qAW()8HKJUqw;<`ZuR!w!BMmx39+(%U-t6gGUo>;%Y&+%l=Ml(a#JylS zArWH>(2+3bTe8u^J?`Hgx3Y_R`0We4uGs|kq-^;wG&r{$sy5=`V*Q6ocHJG;s&B^{ z8|OWU@(vr1y_-|5N<_nrdmf1DO2abElJ2E*>{wfk3`(taw{n z6jaA3@VjqXqj&JDDWP7)#s}uGmf)~5FFc^10}9I5lx9NxgG1kDAMuG2VOuCC7kw`Yc1Baz_P-lR zgyP_un**p1U^Z9>c<};FbdfD~5ko?fPha!dkZ+PI%m-sTFVM^y>4E!--i;eI0yDEr z5lPcj8-VwCk<7@~0^0zZVn8@L8?u zWb;)H;s?xzwGJdv3jTop$TeU;&m_vbSpQspH{aI(;BK@kyGYMOM&9?EeO@#&=yL7x znT31}P}S72!4Ha|(*rU?jin*yE-YY|v^;@CkUGOlI87fmfLBF+CIn*5`(Y$y73{He z-4ui%Lmb1NnNs;?yJxVF1vE48@96%T7T-w8^Q-S=^tw|3tAdiMk5~xDJ#exXit$%K zU=yO9Uil7Pd(@O*dsK^v5P`BqInrTeWeO6KZ%Ov?3zu4~>=x+noL%Cni-WoCAbP?- zV0w8Uui(TdmL0=YSV|Ks6Ltb)CG+B|VmXCSX2i?HKlF)1EuK)Vp~8{!usmF~_uAh1 zfi6+#;K+)e2RZWGW8NciW-(!Ob{3Ew78n2zUR>Qvl}gy(4>ZcllrpH>`21+(_?GnG zEt3xZ?Kh{R3pfy55Xwy)I4qPN9|R2G!!e4_4Qqc2Uw%;%lT?xwD;!_X9ckXjnf`Hx zIY6YLjCvQYGkj`~V(N}UZTl!P=Hs9xBL1z?W8IWGmUaid+u=>RakLl;pdvYnk#0)H zG_Cst3+^<(o@DV&x@Pas-q=fw9n3>~za5JOWVT&;%T|4eGM4-WvA~e$Qat?dKba zJ@UbShKHT}S=zclT8s^c#*`ec_J1rwfbrUiiUueyX`(*{*W}vrA6Q6=H2>PzV1VL| zPJf*8P7}(6kU0N=KuQabpBn*c4z_ID-KlnZMhrCQiyk+a7}WQ-WUznC?fzQ*=-ag8 zyhf2aGME>kN90E1wP^BJ#B5QO4%;b{xWVr8&Ed9ETB<|*Al=!SaXS(FDC~G@u|O=RPhpg^D(c3qFbYDuW;OL;w7!wgngGeS$`&Qr<-VcJ|WL zv9XPk+twBLxZ>hAUubQM6fmOikpA!#<$S60F2*s+l#{d#Dv-dWnFhK7hW@u#{GVc^ zHce%~3DmzHY@3QUp!a{mD!B;&;(t($-yY!jkLr5M_7{E)x&z?<$z%WQvA699032cd zOI{X{fQ|psoq7@=@qah@$O3Rd{}adlJt|!cP=W>H_@7lcwgI{T z3~*qqT>oxywQ0@)`l0`UasO9?Mdaf8e-Vw1<3IUhL|e}RuM5TR`9C#w2*)2}0Ag>e zQ*J&AvO(!L$8@kUT!SOVc>Dp$>+>_bhHGL~99LK4hp|eR?#zYb(NxB+xAX|tKD9U+ z>X*epUU{%#_~Uo^b`{tD(4H-tEk_t{@+|BJb)zI>zwUJ17kG`E@+!DfSw`uMs2vtE*iF`9t{oTT`WxAX3p>vG0nRA+Dg~2MCW=efzC@PbR+sDuK`La z64()S9#Jq20>bi_n64p|ks1ilsV-AIKvZnj3V4#CgGcRtJvFRfiALtj$&E(ikJ`-H z*%Jr@j)*j*T+xNKQ`i{l2w-@(YTC%8WH>Bb*f1sfQ4(ZJluV4Jo%$?^w{PvCl(6Ua zOc^K6DN3>zD<%XfG@_jPs)FIs*=~Y2tj2}G7PF(K%AmZ zJjd9Bb3*8=vq=+GS>yTVpLyVq--vmVl>gGi;%Gs_Lghf|pqvTBP?U5o-geBb-=+qS z3E@hclrNU0o&LjY?v+qS<}kv)D3eT7ql9X*_54Ws3q<{b6NEg!pW+_m{0;FUZfSrw*Tigo~;q2Gl-o8Tk-mBl!mh{4!PMCJ%&|;?J zZzUKK-qa>|qG`UJGbK&@(yA2$KJAUHomkvs2BsqKIZU1W`tyNRXNanrxjk!sJ>&mY zA>XMv_3LN^jRt~!s}&z zYzfbKMwDT&muI~=3m6!-v=OLQ2mq0FD6?Z2uD9#XuYvN%eK|2RSd&@fjXIk>Dg?C! z{5yk{ZOmp>%sXooF$0Qpd_a^%ef4+U%=v9h4LCs4*QsxJ=VzYD^P53ho&WLxV^r37 z-ZB*)edTErJR3iL!fz%QtaT0#C&1L^sg_b7-oZlc*j$bw>N)Zd>M*Rk7)adUyfb`P zn-O?WLWP{;cIx1{jzG{EMy3R27{TTO$! zH7zWwvX4Fmjq{PaChHqmJVd*dQ6|v4ZU_!FwE9w?$kvx$nkC78nqU$muB#n0cW{v_ zBIuH#VQD>%uRKUnC1V{_<3>7+dJg*J36KuSw>AG z2;zLuuN>*%oe`1(G~m{T#@qM!*zI|p<9F)$S3~ZL;4TUn$||x7eL_5Xx04N`q8_aGd^hQK0XhmZ;uYB4avuF7)lUw~Z#cj`ybOdpg za42BONp&M70);eT{7)#CH;s6A=HA?y((_YOcCK>h+~J*rejt99P`L0kz2-{=JE%)b zip@rObQpl7hf1`qk#bajOWwT6UPWLl=GWqL<>;|r_IJ1@P|0mxrfyrPP^37x=$(6Y zL(euC!1czr7ElC)XnQoUhL|1M@|+_rStEh&tR(pE55K4A-dIp zBiT+gdY`2>{U^$7a-eDah9)lY=eIqQpdW^;*d3B!#%vfeR-6?2@`6*NO+`0xy0%Nb zZJBjnPX0s$FbW`@)?cu!_P-=%b68h(3M&_Xe^!s zNZO_!`$n0tU9p1l0mh@3a7q%GlT@NOY7oAd%fMc_Lmb!n2Xd-1Dwb8p)`+~RU}#DVeB#%w!evrRX|{NJNp zkA^;u6-;XW1I z9=<(v`3(!o!;wUawT{NiTR|!ORlA*xz6HKKxcjN=(Baiw|$)S6a`qY zWuXiY);7MKcfy)ZKyvfme~Y0F@4z}jaDz+)heT~VAZk0#&(0Knc|hEv(;zHqJC*>6 z22u-wU}_&ombMDRJ<{=sT8*)wo@Jur7cbsM4U{XqZp=$T)T?xZs6J2TKaT* z;9~pkdne={yAFkDHk1_Hrr#IAGY1UwqhWu*EVE!fq>d(NLX+sq5Y5K>-fVQD@2~(;gi#l1cv_e?%O_+@_PYIdXPVKMGSQX zQ4W|Hb*^rT_mcACi}Mt8XymL7p<2GodVoHP_`@ z|Fe~q4+U=ZzilZ3RPe_C{kxA3{+A&BI}=u>0w0I_rxF0Ije!k32P|!m1{A$*n*+Q8 z=AWw=Z8<{VsPO-TiD~eh0GhTdS#Uu(FgEUgQzsY;cM^&V4KPJp#$iJewf9&9JD6Wl zX!s#&^WcIyW1370eB99Zg3ufiPP>qv1hs;^f~)t!;h&OF0kQ>m3(zdA~eZRN1lSST#EKNonkP^oCr8&(fQGpp=hZ^r>iG@LPludi;<+rS(@W;~!ktg?Ff1taOea?) zPVfhtkN@&A+X^~2W0nRjj#Jl*zOB3-%5$S;joI*BI}nt(SgB!B7YV{=qUVl=3k<#%H}ICF#crm0e@gR>a1*)Jt)GU z9#Nd)crHdhPxPRv@$hl#;Ghrm`jgj|_w|T|@bT#3J&58Z?aQ20_B*xvQB3@Nvd2Mw zbFGIm6NtMMcx_>yRMH@e5&pC8Y2*C-*#(alkCFnW$ug{T%HgToV*E&P**8-K4?fJb zwy1S13!%~kYiUsyv35;)F5bAVwgp}5LYcqk#%6UwGgxOAb9HK*=WKvu&RKtOa?1Pg zMe0Rzr^#ARoeQR$aog4G1?0H7%eb%1d~Lxu6L?O!Z1AbN_0W6azN8&r9lEGf5InbX z?&k+pH7)sz%rKckwmMEvOXKSy7I^?pR0laU-gb~Ky8AqGsKMrVQ|5b*Uz7NvPpj|O zS!)H71%((Tc}s$%Z_{Mfl`H;lTwRZA@y(yE^iW`P4FNv8E&ZFSsBl7rz!jurX_qz4zprh2orTTD5v=4O~Pq%g$8g5NjD1m6fk z;&P~QQ%|J0I*zKYCR(eqoRhBC;&gF!IR8GwfaSduLd68+N1X*jx~1d5L&SSvDl5)W z$Xxx}FS`a{`p+m*FYAre00KrFACJS{wkcRAVF@U>m(L*Wyjvtgu#~3yao~B7Z2L+pM=DZy*?s^NJ#_@ZEqn z5I%SuJ#B%S)u<@eZjFfiGa&GXOM%(az#!vhc=qwsh87SN8>@b+DKa*JP&LSdYQ}nL z-a~qAouJUt!x`uTI-B_?XoweSXtQbPf(!71{9_br22_ik<5nd7x=8!`v(=?GOL^As z9yG05D_PXGe3XcQJEjTQo2}I>ZNv+F?tVTGC$3Wi~YawiR$db9h zg$ma(9M{wtF_~tC->AkJ&vkV7h=HG4Vf|_%Q{!OhCQ(6XY^nL0fwQXvk{WM=+HfkQAWu1ee&Y^|P#B^t<_1G- zcXjuFWp(3Grc?%Ves^-OAL}o^^ZW$Bn^o^SE$q2P2e|1PDdyb7GMD{K5^!`E_vR@Y zB~G&vB>`B-W@i^6b9tqTFp*|-Fq551MggOp_nZs5K?XQ1t8++II3o1+{NrT^B+GTw zHT*X;INzF$wCBt_6~0}Dg27gIGgbv@11LjCU(&&YMVUhf6ia|Rt$sW*a14$<@enj0 zQd;>G3>iI*nS)#$-f+Y6*G0%)HBe1@u4M0Z~)j( z89`x`fKfcwLw$KURgSQo;RS7@+VJJ3>>Z=8Ww{7L3A0znF2ARU~m>Zd9OC!CbI*kko(G|(|h zkWoVz618Y`P~)x;x1Foh zro?d)M924Co}`BK)p4jaSN6d zxw@@Egl^%rKx=Kz<##rz$)DU}@6~8V1z6#vm_?36tr)*4G{t2cs3PS3EO&@!M#czt z&>Eq#lp}#Kfb7q!Gwb6?xbDrT6TT7|$pHW?tIY1h+)W2nz)TC6^}T#Y!o3r#rCR;l8f{FI|$pP zhs|`4TJNC-M{3Y?bEovMM{~NIda(2`4FK5?e~rL~N~%v-m-T^#3_sM&>_2ib7J-l! zW)Q%6eSsM2q>`&h*mme4ib$qlu_q}sfv9Cazirt>2E_YJH)QEy{DOO-qqh;nMO&+Q z8hc^!ZDW-}u*gx;R^O*Mh_cETMlpo5kb~xjJV$g&z+*v<^zQL%fONpi6WzP2y}@S6 zM#mz~O`Rzf-fUKVy_50fVI2|=2I!57L=8|i8Wr>;M8|1>DC|X|w>N6w8?wAF6vejU zxk5sCSE;~22x&9<^}rGQ3xTk$?=AacM|A+=K678K~Ma+w7!A57G5vc$z}2Qw87 zDESc-cjX4n`FRR?-C2s>Zs7av{_%EgA6=*hYX!ajflmXj^~=lR{em_{gi3}0u*Tr4 z;Q@|CR|x6;r4^3dGu*qV{q}1Am=j2}<@fgSzOhEbbrb9Qly;iR2}4X6@XdWC$08eP zSnzH?!O~-kiMZlK%AbTzYrJ}|8J-%`-vbI+AvI!1Ox;%VXG}sQv2y#)+zaJ-%80; z8g#9NvhqP?E!y^*SKto^NoVdwynV)0JRQ|Fjyy*JxR)X znuQCM)42jjf!fT{&`A(+vnOXCFS0zsH`q#=yhVY!veM$gr$Nf`(bRbbMB1VcZ#to? zC9RmE5w0Pl;kvKh9IB12-gG|`Vs9W+D^SUX4&1SB9&*;b?C+D=n z>&fLUjH1Ikc|qy8e?b^)tyb|EFvsg~Cai&35rIr`?OE+SDS48iP~N1arZ{U9YKS073E~;nO@{huUTFfMx|B0~JFILmVBuVd zi$YLd4QwP+)K^uuwKcA@kugn-4BZ|kt7zN-QFfjHM5Z;KY4dajQO^Fs1~_A86u`G2NUT1fYeGkv?xu99U+1Kz7~8}V)_Z6dUAV!idI4@+4>0`L@b zOSID%n5fk_E8-K~x(O5H;Wh>xKX#im>Sid?3>+-X@4P#7-7J!#y0$ytJ{Nsox0}YZ zmfyTvIf(EL`~CQ`y7TnhjsWd4QY$FwM}|1(LCULx(F}FdRT}2bMihTE^=hXMYF;;x zfK`W&-C1?1iz9UmT)y_5kDF?3uQR@XK5@PXDIroU`4Qnb>`0ejDU5s86EIS9g1YtV z$_$7c{cHq4CRvXB94Pue-UYdol0al8yGHg*&Ru)8-Q8+kPA>hnUGU|tiVM|Bm<{jj zdpbMQg#}o>o}YfpGFTY!+~4l9Y|9Bw17|2!!|huyIACQWo37o=vX(dBtXofo>%X4v zFT4f(n%)-b1ou8vh^wzRU1R1?pmXX7&X4T++k+Y=R0i5nVShgNNs=0qDxWWUe0hFk z2#wM!l6sySnbN(`L^7M|<>y#9zj~EQJKcJ@ZBXAH+4r6tO&V1Wpxc3c0|?m;0C^zd z;o;gwF4f_)*UBCrj?CXSj902orZ0_4X?SH3Ezxe))n%qeDz`zpSIPDx=ks87Tc+pK zJY7ETwo22#rv%r#m-#PH()K$!Rs1Qnb>b_U06S?zi480NrKW~5jNtS5fTI?I&by0} z?j+$x7LE;TgPVa6#NK`+3$(|s1+D&yw!t+eh_iVmto*?IRgBVrf-v*ZS`p)1 z!ah&y^LwlL-2B|kOyIIsU^XoelITZS(ETjC z{F82yk>RJ(2W`2}pSyf{dmvQ#agned>qVfU>=}2$4RK0SwfbmpDdbo&{jGh~pJU&} zniT`LHsJ8W%3@WH{!$v20wR@f*S46##ZPv%GxnuRfh5_hf!Fe#F@qsYmbZ7e;o!~gn~SdDpU zB9#7DDH$|_YeYeK8|;-fY}2Rz+i&yG+^O%^5W(5DDKtEVb8~>Q&mFSUKLu~LfQ_F3 zLQu;$EpN%=NJMBj9ue>N5FxZ+6FfC0aFCC<4aYPW-n=I+84KhFVQ*YYPfLLNfhw_6 z+W|GDA)G*h$~5njXv-ZvkR5+UEsqkbk538>ZhzW?%rdxR1rFn@4nhgrx`h$(6LA#= zv#X57Kiuy}?akeMS+T>s^nqtHEJ95&hDmWj3Vf~LdB*pij84XgrOK&5=P_2p08G;> z(1f5R%R6K;0Vp6W=)H1}2#H*q4SVQg&{$IpcdQX~xDm8v_O*jKvee08(gx8u-)U@l z=HI78Z)MBI-nu@acoehG6XfNLq`|}|Z8tIU>qRKfQ)~#U4ug_|@M}A1Fizhw8WZTx1jdwy%meUXA(_w)NVZHW zM!DV+fqd&fhajuzfsYJsEW3IhIy*A&>{fqDZ&5JBfRR`9S-dNQ1iw6!tMiDTi=%<` zsS$D#6$v+aJe>q3^VOD5BJB9h-KipmdKT|45X&9zvPgR4eKtjX-M@YT8K7E)|MzD; zd;COHD78~C%HS_Gv z7;d|((>p9LmNuU7)f)s+f7?TtQ#_B;y9V!P16ezx+Amu{HM{UP0W?r#0*Pu-rSERC zYk4%!emg0#?gD0`?6L*>ISTe$MYewOli^V|Aw>At0Cv|*Nl;3$9zmml(-#y_HgAW= zKw6*(i)7G_C)<%gWUmVgYElU*DE^3f?AuQa)Ju2s6bFnQYyLihH~D$2;!Oti-?bwH zbSn*ED%2~N9Wou+jI|2h8NtivXcuohERR=g9bbj6+mlt_k&3jfb}5I`foEi~1;9h< zqii`uUfXx1hBA*wI~(89hu)q+U&F`KIxV=*;2N%*)rUW)^OtE(=aA^2>`6>h7;VJ% z;N}1A!nFPN1Rq2E&lPP80}q7!57WxTf)~J~?b1V{x2A)`{i_O~wGrlnpTqx^4F0X= zBB%kUNBHlYUMD!;-^SN}_Izr7g7d@t<8c1t9<X-hnvSu=e?IdMRaHHP*-myg&S7O0dU6lFa=C83RdR?jEL#HHxm$6Z#O){=tH?LtbHfwlnUt}p6Z}p|u-v7XNYQnrffS@>@WW(S zJ~OQ*@1ie7O16l2>Wu^*4rOnecQ+s>`_}R4zJ{u~DsVFceJyN=(XxY2;%0{GjPw zomz9{AgfE}sa>6Aj$<+nAiq=v7xiW@$HYR0FprJ2E0@nk4HwrSTPQ|B)wr={e3KvT zNVK*0pqo@jOr;DrRJI7XKU^y-d|iQ*Nm)J13M%9@ATe9{9wb@CekBm7I;8_6uWH3Z zjE+uX8$#*K1S6G`>h6ziP?bsN#Qm*2ktPTNQkvT^exq=YMI0>vn3B<@ueIW-c-pNYxr$cL*7zQ``SQrRy53tUjER*fIb3OGb^EA2 zT|!*9I&+CJ2_pe}G zerNd;4_1oH2!rPRpF(f!Ss6=6olTpIotHosp03wM>%2eAIe(r_AM6{t)9H8*2Q7F9 zxe;e+a*=^W_)VM_*2p3w0HOLLyQYT>yid1Vr`??*!5%yVgD*-+E}fXPsw`T(TzQM6 zbE2tI9~)2uz_RbX##8DK`~s{I(lg{LHaNv`0a9dcj5=r|5%i<@HtW0R5v(M8&_>-U z$ceN)n48$_J9z9Jx?E6E^kvbqn!8^?7K^VMizYxf?gn7^g@Z zEaoN)?*;NdxQu1{jA7wWWDH;~Xh=%IaoTajeCGI@)_*H917tyJ8PzRA_#5v~zWcs& z{;S6?MEBlcmisv;!nf(EHw>+|4T#Bpt}2^y$o zF4+JwWd%lhFu7lgQ?cqRHRtJ#;aq_q@grTf-S`II`3!M}h26-Rf%qO1hRejwBfx<#6ycnSA z&o4|f)K%(9kre;wxI~%s=&*RcZ2am2xV{Cxx`vwKWVcI3OTb}B!pZ|49w1f=I>2~a zt6XGa@=z!yZ(prD(~%Yd_`fWW8A`xkC5DqI6@}_`^6uS1{CKls>%wsR8)r^2|C$_QkQ@U#Y|rFizKhZ;=i@*z zg%b>|=u|Ka9DjB`$iDxNsCSIcB-jGAW81bTwkLKbwr!hlY)*`cZQHhO+jhR3bMF1_ zpI)oGs#dT5(W`b;euI zim`=2z02n4Gdd_EX~eRY)FGa5jzz;c;4-tr);5ghK%OG{UCmo)F1GC(+fK#P;B?~uUyw9k1> zv$g&C#(OryZ{F;Jlz-Q*EF(Tf(A<*fx zmZ10qcZV%tW~%kZM~>C9)>zRnItYft&+SI|(JYCG52;)ENEfQwUI1dm&?17}m7_#U z8_Nw8&xe-5DYYo4{^bV)u+@DxfFv z`a3k0rLKz8%kj87{qP+;sh}#NLVg9jlk)cHy4b%iT>?x5kZL=}B4ey>o|d-C zl(ueT4v2fzupt^_6H_~dne2LX@O!3RQXV>*!~94!?(bnqx$(Wyo=74^Q%fj3s;;qh zlkSttGTkc2xcC@NioWaRskNqxL8nsOppv{I$?DWbA@fZ7eRP{%Iyz>Ko8x((`E;>2 z)&>=O^A=Z=SO5_XBDdDRZ|{=MXZ6a$J4H~;7=B+Io6>>}#c3Udj=d|UU=RnpLgjl! zjzra>61yv48AN}M=<7?^v?@?pe86^8mN_51ad z2I^g6J}u&aDNaAtPi<^kF;bzMFFZA5PtjAvc4=Aimpa7uxi7D+pZ3ldeG_stU19XgxXjV9!;D?JB75D`dsbOjP} zn(e)nKiXs^@!A<6Ht}b!t<3?AbE*txdH^3YPGKocCp$!lj)gcJgwXrDiIV|YknaK6 zv<);3j1)2`(=}SUe^P6?KYOw0{p1w)L!;E&d?M}5bF*1j=#JwZiZey3`_E)oq z{ao&7KvDOmu?EKB_O@+-@@$4BC(_|(#bwMS6$tKvJnH^_pwskGlmB1 zNq*E?)j}=Tiyd|DHEho6zq7eG_Hm;7{?tc$fbfwC*MeeOx$Z!0akPH^9nCc=JzFwI zbjmz?9{5nt-(RohZ|}B@#Jw>1W+YDI?epqxmsT6OQ6Vv|mUe*n zDjc}+gF>?zD&IiT7jwvR3Fxyc!C({j>V>aTT{(SooYEgmL&9t*O7|vK69~gx<*;G2 z0OBuz9h-EMO5BnD;i%%S)A9iteE6NxGgX)B*mY)cSFMt+M}bJ@4M1ujG#DkgK}zIo?J@4oy&O$s0%tDbHWBZ_i@86Y z?vyby3C(Kz^?D&1!c7YHQkHMBvh???`MLsU)eWP>j&vXKK&NG7JtS0sR+Rt5*a{1d zZ~m575v$+G4{u-X!{fTiN{+A8^1vHfQ)jeu>mltI{jypGgPsFUO4@V6CEzLm^_ctp zEyP8TqXLsdo7PU<=^zwb_F3M}=E^UWRCMrPZ~Grbc4Ku}E@;)vvRl98KXN(c1{ai^ ztkvt!n@rB>@IWvcC5>}kuP?*vIlCY)sR;#1f<*zwaTYMi%b;N=ZrvRU>Oavwyt_dH@s_shCS}v$D(s za_5@TAy~%ESJ{hvYM`~_rs9SYR;^c`URq=3@8F;+EBJ!#T}Rj01nvfkt0PUbhJmcq zOtTzELIqn{oeC1t_Q6uQ@KWgTq0LWQz@iuUt7-Agp!5)k4dy}g?N09ph6%5HzY>6J zF&yH@8&P~ecL{s@$pB12Qg*dV{EF~XX2L8jeK!q2bvmFq>r;W9zBuNhi@14d43sk= ztKgmDe)5Wuzlz9>k`ArD1*Z;vx1>E2lI7E>Ll4d3$tgz>`CNqA(v8wvXHa6U-*YY+ z9=^eC)QjTP5fK@ea{6<4a;Z@DPPt;bGEoELzkxZtb+m^8D+7=~<;5tN8D$S*voZqZWU9*>GytI&Kw!ZoQqC|!4ktmcmtJ@Jqoi{pW^nlR>}jK$4Ti}b zu){d+)RWNlln35(R)ug~zY0)sRbai}kM>&dvqUNUif*5xtVtrBEd{BG>RSfUMZ(nd zdicCGbjP%MnFJ)qk%Q1|-c4Z4v8)jFI6zdT&&vNhVC3%!TFj5C*`v!YEj7`W$~Jjg zmqro>gM%Vd&oTFI0LF!MX}2lDmsVM_FEaBF zeKBJP-jQu_(!^Q+>s7D>O50WpW`~N4$w|K*zk8kK&;zjE^?O?Ux2lFgNn%xBF0O_t z?5BULY;*dv#FojE(6;fDah8t+6kjJzKR(z7$uF4>j=9R{c6}W zFYyR9mkChYU+EK8_pM=@$bTd+VDV+tKJ}kK5_(+2c-~yNnrTOQ=(P3Z)K7N-7cKRc zRg_Bc@f$e}PH`0>L*BGP4JOxAM4p9?CevyKsx+m46qxR)Er1j4XoIIn#h*%mZ=Kz`FpQkR0UAihA3=o-W+}l$QW^U^-m`?K-h}T zx+=pWYlZER98(*2Oi{IefqPAtG34U8ge|N!ApSl6!8lZ2i=u!wjY$nT)TvO&x^?LcVo3qHB0b@XNVmr+n`3)!{%ON+`Ws>{WD_s_hqPF zfGyx3-CzeAnMfu~^|;+u=coPi@^-++Us3-9Lry>W`0R{z4Gu-}Y3HIjjd{I4h=BCV zTv!@j|NN8tE9|yAS-YYiHMl&(&dU}%~8oAR*i!t`Oa9`Gz%h@O3q!d!wF z4DMBG_O}p(x0zBuUs=LwszRvQFnN`f2+!?@^#Jf$P)v*>rC6M-LDHrIFg^8Og#7>o zwcTIw^bSKOsTcSttwBDOBFGt`z`=SJGtKDc@ZAI!7x%Oj&X$fcK3w^Fui_dJ! z_#2~}kfexU=%;~W*Mz=rx5s*0xhs)>pgT z?#CwQ*s1SJ_0RXd+|kqQGvL~VPndw4R+tQY*L_2cD%geA;lET@<-I*FQhztz4kd(f z{q!;VrWWphJtE(T=tLLQnyj5o>8B@!(dsgnmrl@IZO(5&fM&?%uQV zPRpu=-RKhIaIQhji)Lm1VGCRJeCF&lS9d~v?kCX0`yZvp%7!7kTE5GpVfRfo7Ny$k z#tKU9(@Lb3wRBA0b_($Y6NBSMN~~F9_?8B$DS0WnuHy8f4EEgQDvSV!r9ioy2Ls2& zt*fikb|ki7^+S306dZ%xm~m#xEF@IV^*o6eB}o*QCS>FnqcD=_B*o=#ED)HD;F*K8 zssuQpee=h@c65SM8~yQar<8xe0}M& z!FCVPiQM;>cp|+!F*sI(wsSb`d};8_^;tWJYWCo31g=e@@VcambYwS<-<#aVhe^G_V#=ZBBX%jj zD`4~y@Y>UuLd*_~3d+RJ_@5nQjGxN2+fDGF<;D4bmKWbw-Fq_(vmnhCFG%EtCy>Ju znvfET1Iu!MkZxQ(nuQw6qY3zN!QYzQLRc1z4Y1`vVspb{8Huxq|+Sa!_8-qp6ZqH)cnI&XqT zUJFT0^AcC1e=I3$GfYV<)|Ije%l0spa|aFalJoDAsuW&1Bg_uZ_FW_v>^H}tU$@O8 zWqFJ@ist~rG9sw18A9F&;P&;`t2%jr&=JlbT=p+_-;c>_1o(P-1WT#h`S^OSXBDTt zM%=adse|wnxvQ=xuXGOqU`-r7p717;*m6Cdz`CD*)^QV2WmApPxMTIK14%S~)4C8N zXSxRo0pgh(AC7<^r0pw6IN>6FUU;5h6Pj%WR&xXfmU3MR36o>cMWVEq~6*o9m*i%R)rZFX}=A(_?8b-T*=wOlWg$Kx+eERBzcR@_f z8M9_LO1P3aUQt2JE}JK<)oTx9#$->~uhME8r7Lfh2p-K#*Z8fot=jI3YrJwty<{BE zjQQ#e@TqU>2C=J+hcu~@ueAc4o0xWO%=hjeCWNejgxubs6O&S~D)%&m_>UICFSlA1h{VgzgBigJ&p{;$-zI zKv%SBN>dqa7jF5BGqBVuxy3qMe_sAxR`nL0Y~I2>{g-eikoc@p7l6~DTxNJTSBXsB zVK7!e!eB9rd~f{wLWq_b4cb7SjA!Hb34hc_E2ZbXKvc{#Z3-|8x@x(((`GLu^w6OM zj5-Sx2oE4{bxkR?YWWiYa;1{&pa6H6md-^7k>c*XJR1;0zyolwgqgs{{ZlHMHJX$| zrGdzJf*^~8AHtLu0{M`k0x3&=5aoC$pQtgum>Ca_igl=|0pC|S%CMve(62OXO_ux~ zXsjAfoxc84KJf3ULVJnb6v`P*0FR=T=OsBw&&7e@FN)|2ns*6cLE6mj4{@c?7|z<# zFc=b4!oJ^PGzBGFnsy8YCc(G#$JXV|B`BY)#m0<+-))#3{O1mp9LOMGV^LTw9y~uS zACFs{D+@pGxFPT$cox#_UwF_ucB-iOWWrYVllh*6Anc$Xr$C^S+ykd`*X0qO`6t_e zN}fX*UyENjO%N_%o=GU<8ywu+5@M)|QsT%w8c z8;wjfN=Y-s*ulZrom;uFn3!{m5(mG0c(tc-+!u;Mc)C~4-{Rz@^KcP#*C42D zM2idOBBRW;ck$) zzr`DI&HgegivWZa4(~HlXI-s5*HtEK69bv?&f}Jf^D`!If;jftO9bmzyfEl{{Y?wO z9E^b=$Akyq0ijaVB$-@MBkO~om5(@0;7P=0R~HdKn(2mt@-zS2onmkH@!+Zhq9$81 zT;IJUxh3@YUva_yh*fhihK2=36N+1p*7mLrp7yz`kG))h0>muSU@94>`23Y!IKmVo z1o5Olhk-qIq)87GE{#B}Q4qitjtg_d& z`@$fgF%Yw-h&VMm+^Ut^url>2t{Gt>Tas5^k&(4x_QtxkOc56qgn4G_>H*6zpKcTm zlXjd4B*>n)C!hwcnrpa?tl)%^ud@|nai?<>!!I;;2-@A%6rdS?7TapZ7Pb^Ml5!)1zkzmhivLO?17r+c6#VLRXPwH~b`o5O zAjvzTO_Qr!%Q#(%ZzRA08pPFJPT|GIWYpiI;F6R#7swtR^_=KPEn=~$-(Q}8A$UPI zE#$$n@BxvN+!k&NK5d0OSAgnxMD7ZxdR$>&lNbXwoU{Zy*#hF9o|L_>Li~(@4!DPy zS3)ANCy}qQbJyTffWmJ#@uE+`ta?)~({m~RY$@pJ4?uSe?x4KcFV7RF%-~#YU__#{ z`Js4LBqA5Dht^>CfI}Tnm3dry4EB&f!L~>D?eoGrL*ZJT z<_%>#DF^jHF^rUnHU`LR8b_N&^3QRbmSIEWWg$N}mqQ8O*@6=Ks~!OdZAQy&kHgp{ zn=JM*wZ=k_@WTiKglgIdy6&apr=y!AHg$>uy^Sa=bu+G@w;;)cvqHVMG@J9_(%(az49kwa-1c|(4CLLp;a2ki(l-a(vYdOFHJDzO)l!LNW>;h0;*chqO2TmsIM%SBE2W6GQn zhKV@07uKMLTNY9NYgy#ydk~WB=Eg4N%zZvVoHi}Qq&RugwoiajyrN`o(U;9NW5r1( z>^d)rm<@EDxlEEQEIN>m4neN~e-kovns2v6wk$P&{9CUna^()$2lQ3!-xRRNJM5q_l>sI#W!o8U>Hy3!P} zYHef7hY0cx<~hX-^eE`Qt3b$>`r~qhV+1%pCK0i(f=)njF=SmTt!6|)@$F^Wg5s~R zw()DCX~ToU3TgnDs?|0Z5eej1aPuw-*`o;lLs}Lj#=6A*y- zm3Tz-2iZE^L1Tu@q@n0sbke4FsyQ22}c7^-t`^Q@DF3WDbXM4*J-=LRgnvp4j$lz$e zOewc%;OHsd?ZC7EjoAGbWZ!JPSwvtl2r-=7nIza$Y~xrWx%TLe35am(`KFq>gT-0C z1fp*~l?oE_*2BxoN!qtw<68BCvzM|6x+}vMR5wxY6l!#I?(X$}dV|Sp_}At)o6FT; z_rX0_Q=Hq|-Jb6%e>cK8Y4(IRHVKdNuAbcp0}+ewm{V;5s5FHE56>C$=Vb1BPn3Dy zjiW01V+I#8-OwiK!;(ZnDMtz>iS3H?j|VfaYM^QnWP{u{YU1xH^^Z_ zU~IRr_j*};!%)lhXQa88rBicth2q6Y(4En=pA`|fDV~(4SLa!!oIyS$6DhnK2@T_G zPYTBh55tcM=#ARY6Ud zj9{FCY6v!vmKWi?4Ii+Cb&l$~B0?|kJ|8V*@nljk(=4sv5}Wl85D3 zEVa=9zH9I2&rrL{8asX?b0F&CY`%lmaIxO2N#?f2lBJgO(VPq=r#awjq&h=3DcS(`3O>xt%I z(btpG*!7-8(siJlAC8J=S$UF0T!Vpik+41i@cAj=xi58s=Dp%Wy}>y})%>#`GTF@> zc1u+$r4mQ{F(GHxOMm`a6u=NlAEPurrw!Oq=a@SRAXW?J+6RiqHYHoF&Fazy&FzZ)!M34A6-A7Ra~_q1?gbOjcyS~)wFuB;*+ zMyZNlbl|V|EFo|2j+qCV$rWD_EJFBbs|&|5>o3JKS7sluqB6Qee(E1$p-GyYN5(y( zHa-F7pe5;jDXztz(5&0n52OO?gc7s`{5pX1j1=V^h|iSYz;&1uua`heXp|tt#|1*D zTSY^lv1qd!wy_cNn&zwgh#3gjtlS`DsOUl`L%FQJ$!@Hlmlz1%2Rcav`u8LbKHDZA zhyAO0zuSuWo+|qfczKeUunXqKf_GaYybu$3fQ)kD_yG+H6#xX!O+NOKmp_dK5bfCq zUB4crA5<3-R`J{D_6dST;m>32roXO#K0eJi80Km(pZb;&xWWSGpQ;jh?skxvRrHIN ziwVs;`_&on@@5#YV_xOOO8F#7*4_DU+)~Ajijo4UeBM9U)0p=3*}?Y@hipj$QrC(p zJggZ|MIGRIS zhO$Yt(^uOW;y9~?zi7z(0>Fe?s0;rRgUwN#wGO?f5;?|H;vP1M-DPZ=iUsY9AQ`5Y z0&`MPXStb7zPh*z9tIScVcU0m3c#({6Q87r7%CE zg`p91dMm55qOk^wZE$Ay(Ie2P^Qi<9JD+SpM0)o&AWnRBENOe50NA#x)h-53@Izi(=~OE#UcL2E&w1djjX)) zI=6z6V_bWh#!I{8#cfMuXQNm+9VPD8*bd=P9g)@Gg>QA}rk5W~z4h}BI+hy2G--Ez#G!6af^A9lm&-`~G- zffR@=?{Wcati2}==^a~_0aO7WE=cz~t8A?Uf3!p8a|y0}#8)bHFhDVkXvM?Q^T)4* ztW*e&arc%qsQ;c|50X*j{VP2cb<;1&f-~=>p$3pn^-DK9A(N^Zwm!8*o4Ew(axz zya>6;I@kA3hhy~Fi2bJ{`FYpFW94Q~=aQ5foslHcxGcHHGQo(xCB3+IkmJ2e3c=5) zoY`AW1Ol<*WEbN+{=`z-G~IytVmRGz3R|Y0!+UPadUzih-*r&O)PAzEE?DgQBFdta zI``-eFqc+y0I6k8zp9|G%0@Y_vZSG}s+18vYjGS}#mACu1nl!-7`PSe!%E^;bOw<* zS`fC!>qRiFTu@AK0FfnFf!Pf;EredY)9Sd352y8_-p55Fjcrxe>PwqOsLm)$yk?v} zLlJIhc!S7^VB;5J9ys`9Prg>3B4^l=Yow|NI8WK>$6k_2yN7LuG7whFeeWf%?J5)S zA~7sAEfF6&b*-?h0b*D}PeHW$gLE8E<4p)Q3tf3rhAH5baX9TSfhU^^_SImQ@pd0w zL9y`Q{bv>K+shmxl-MGu!->KFuB*I>w3A}MGJe`IV>-_AeF3Y?LB58$-M_?%@6Po? zxHK$@(1TbWNZowlM&eGoHa%7QOv?e0c}#e*u^yv$FLanHk`eNlGxH@mI2AI-HTCyv ziRi!Zd+3&z?SXI5UAFz;{|0p+O#hSff^sqapL#KMjo5W|B;Rel-B6%-|5Ri|9bg#a z1a>|@R?#-QjGVsFpf{KX10R`;KRpJ#7aeQh{SJ)KNGKmr*HK|Klm%f+5&%i^G=D|Y8r;=5|b zs}Mj6yO7}sw(#$XiUo&=2g|fc!FUtP+7u?q(t2~9`c#T}5LC~^;=Zw}ky;BSUBpKCpiC^c(x3XHs;zK& z(6;<>$Y*T})npkfdaeh^q8H{AzE?7e`dp>Hys;5ZkSLF^+8|Bh<5UD^HG0c7Tns>8 zT2*GVm>1(R}S$W^lSq*=clO=O%oS>m6G@+`Tf4{+!DRAu>&;|GOv#T+m+ z7{)9+NlxGo|H6yY{0*5B-$eNCcJu@o3{X!6D&cZ~Uv@CvDp}YxR{cZbD9q0A_$zYQ zG|w8GF9#$$Ks`RkN_4_HV?5=k0@k$-^BK8*C2sE+!0xL*{!ct!9$MOi`6+l2;N0d) z6qG|tH%RTbFzIzJCvx03jF*FI*zGRkO`;rp7t;g0<87SP_S z-n!%qAfDyxN5g!72-V}eK!VBw*wHvACoIiet7PNLLohBt5yCA%S0tN5`(w1)P9PYT zluBdLpva%cnT|J7fCR%FrPLM1LwHGaT4yUEwYhFL2EtP& zYUQ~~4FVUiGPTvGy4Xh{3~mF;LMDk6j7xEh#Xt6@W&~F*h>I#REV{#{{7E@!@KGrX zIG9eTIi&~FlslU-*QrHlL6#Y>()n;wYt%ew*KE7D1ALRDRexdCQs+ii=*yS6_qI@p z1&4hDf=>+B1VGM$M?jU-@->xa>C;BuD(n|k)-gbp1VbKk5lJ=S`xgMiyfacpQZRo@ z%P3eV-gL%Cg$HDcH1svp_^cJAG$4u3ZHr6OkxjIG(!H=iwyzWVdViOlu&8^y-t8xX z2<}6a=tBrOrUzVnewhIRi1iOTcQ5aiCCJ4}MJtw#v^1FB}bn=#9yW!z)%as`IExlB0027VtZHFTcl=Bg?)DlhvGv2ML zAG>Z<$>9N=JfAg(7PHRaHnAIMM0Bggu2tQ%0sK9bl@>-Z95r$kwVFM_1M~xxqwZN7K+wj zeWr3~#ZVZ)Y3cx=h#50DA(?U9+8fj8K&-Wh9N*eIyQi%pFtQKOs2WO6@z}c!CjVi9 zgwUYKJQw;GMcaDxxR{I`8idw0DU&#LtkQD&v#5a@9|k({U)X&23;%L(HYYD>Ru%$B zz~+Nyl6DT$K2dVV!QaC)yQ*4BRq3{31p8Bpi~?%*EHedI-Yyi#?ey$`i2H2Z01wz$9us1i5oj z9+5HNZJ%L?wtw^OR`jp_6^)0|E_a5wuIlS)eb11#vMv;fY4o>n)o?7e$dGekv zzMl`U3EuQu4G;_Vr-edm9_@C45b}}~HzZI8CO-vvir1Fyh$SP`g-N}$x?ldq8-uwi zw5I`(jia(5P@)*pc$=%M3uWu7?&t?|@dSJMrx`^zem-ua_$VQ)IpjQ~*r(L{5wnW5 z%mAaCs~@szu|&~a zz&VK`Vl!fQD9n-~@f#~xQ+qC8(UaSn)y2VJYq;xu;m(OpbpPL7m)`#%;H~(;Y2blb z6BNwQn#-iXH~$NBLT}Dg1=sms;SUHCd&(>@C^aBSeKVG{8U6>z-p3#~)DzA8hGkLY z0rgin;fP=@Z?y?AMVPtC#EbqZiivPjCkNmysc_%w_>2HsK^~DO5%Cd^(;Ou` zMVx)6<5lmqr%jVT$35AK-Ha;(?%@NJpE2j;jdqhSexur5aKco&B8z%s* z#gHCbj_dZXnt*3feqG^qf?B?i-eId64hDa#Iw6;=vW_88oHuVe&y&E%7I0dY zF&E?usOwdXDUNpJQEVmS{#O%$E2ho}@aSBLp6}Nw!}o{RjV^O?`m92~gUaQ!olWrY zn}%AobJoT0D%G|6PVElDi!Dz`&s%^fV;k2-2=@Kqj}xtxWSDhjh&vt&$)5;4lf3n9 z11mU6vMz@KNx-laPC_eqys~ym+|S7l`Ma*9WG5z3UcrQT9SI+u?6gxLI1?kE&H-5w z7R9|tRfU7>D@KG-h|Dl?rGwrf%pEO4EWgbL(5@rpWzUY?rdn|QUUYkevI{_k_=p** zS>=j2jyM(Z5T7OXu|kAfjT+a9C)bxe8B-jsJ9X6yPKr8IoT!E)pKie9>OQ8}Q@*{6|N6t~+2nVZ8e5 z8TKUQzHv=Gfp8cED1qeQTL!@VDO!^i1BpIa+8r}XTnLiVprdrvo{Uh@SyGhB>X-`B zEvu(u;*tkV?9=n6-jie=Zy3i!?@c)OBp+DbUp7^Kn8$E6%yWoR_Ex9*HHVnIZ(6E^ zXvNg$Fn~pz;d|ys#fNol*{~n;d`}2_)N;iVs z)Yy7lNkzLxy^QQF3!z27ENg5mUjxKGqiV)_hDTwxtE2=5sO4$|v0-NF!w_*BB!0ZT z7e+P!kC=~tYm_O!9abbWhCB`7Iwhh z3eQ&DYrUz9{8&1N4UWXLf-Y45h9XLi?$u9YMqW@^8k~>c5Ox|~NgHXzFFXb_NZ8d9 zxpNp}Ry0Q8Y7%UBmlRT0=6mf3sZ%z5(!i^DK9C@wUpVk%$?ee&s2ym4*hi^fmHJzN zD-X?BJ{>_Ec@QvIOKjtQurhaYF?ShHk;u@)P4q+VY{L=o0P$5HtgBxGve-ZhcSMy) z{4J1nh`3cf>g~nR)F@oXy$I|p;KHYbPxVx4-R=rj93e)hoa(=i99xpnU*p)RQ(`cD z+SR2i$iSdqmX1d#6^b&m-uW*~k<~SKQ@#gR%Nflk?gmg93K6GC;CH2T)>23TJbbk_ zWH?z`wWIsnjr|qp^bHd8117M$R)qGGN#(Lx_ZGy>Uc%#yc-P<#Zw|c;1yFevA5fBo zwY(U)(U|TIgrE}%-o2bob)vI?XyJ00wjsLLQ%s14Uv?>xuYO}F3C0fH?-+{1>y^`k zfB=)!EePPIJ2|(yWY(2XQ>V6Mm=+NXvMe=+It`TBDQxpYcZ&0qv|_MtU8tam=^}qB zYk7-r$4ETqaDKcLLqQPfC3O!fgN&?|b7*G=qGNvE{rt!>=Y-T}l_G(g^+&q4ZpdqE|WW#r8B1EYXh z$+BOwb-U`3ge@)|TB#Yb9#cx0k)56ScC!cE2eU_Ti+USnh<+y;f2P2fVe*eco6Et}PC4bt7>wN&!K~&( zI#b$gX1zSi{WXCV8go9VMVtI%*8qA{O9$MdKPf&L^Pz5d!(gS>JdB6xx7z>q>jr3o{}Xs}{^5!eo3 zY5c&53L=bX+Gr-+e5Oa;j7V@}Ja)7R?h_w4#@S8Nt2H2ZydfTjRH}kztp`S8K?HD?G(Ol;Ynmc7jf_tS_Mf)*CUV_lb^v%bB~h{>UsHyv176|3 zSnu(2<$!zfBn9nm$tSsR_s#%FCm>Qj{|j7L{zHqzXjZibNBoihr3h+*qBVPZfT#XP zfb-LW+Ds7uE(H63iYI(BfjR#7FuVuc?f-}l(Z<0sp+PwRkKIOa0Xz-*=Zy-#AyAvIHo?K5 zK-sxCf5Ir#=7>x1R~S$>uAiR&$8ZA=$Nc{jbeK5*OS$|HJ6($d?uVT|v;RaQO+v0H zppc^x@1s8$(tx<$#@`Y?iz9v6=MeI=eJ$UtyZKU7do8=pOLo_ZCaM@JUXYn;<=Q)_ zJ*d*yeL-S^DGfzW-X!Rl__wnx#<7udkO>{PX1s8;lEaPBrizYGgKMy($5bpc)6jdVLQ zMy2(bV#6wUH=3=1ixbFK8Ubg@-*hABY0d&@F{FBOrZKGe70pqHHzq3{}vSFBT<=zQe|-=#mP+ODvCFRKmnko&Q6j2<4Iy686Le`Gz+AXP*VTlJbSq5UZs?}PoGY10QYvwvHkvSX$F5r_j=1W`t!S59N+ubV*kgl zl{(xn>_hzP?HE#?DTHUqCvRpHzOmxd{6j}@n`xd1b}t;!^_`(NSx06c&ripB{_i&R zFP5~diY3f@mu4AvgQ3iRc$&T5dVoaB1^m1i@raooitv#_SmY$DYJhnA3J9x$MdYbU;uaX)h52R%x&^B3y?Cl4BV)-IU##M!r zZ!oGMG9L{CkKYIaOiw`OB8mfy^ryeuoLSUdKVq;JCrJ6G-?PMVcDc5*j{(ou)|U>d zVw~lW1-(eQ$vK>(*9e<*T(j9ifuJewzwL?Ydcod%vs4XZ$X2LESpwC2Z7Ng=P3>G{ zj}A(o5-#eOo$@(?dcQKY8R$784>^;gRRl_@K+4VVYL!PJ(dd70%7fE5x1Ntr>?}B} zDENNaxIzUNpqAPBigu7vVSw!9yI`8Q1t-m7VYzeV=Q_ru_(Uh%-YXG~db5fo%Nv@d+Y)h7QDV zJO7x0Gh(1k!H1j6b1o(cG3)K7x&t~;#V!8ubxMD_2Lqe1ql=h9yOn3{Sf^shR$#j{^;lSiIax{cnIEWID%tJOp$ zVema%sS2;Kht(!PnAU7<2gXbSnAS`ZVS@0V9=`0^I@p}ZSmF#vG{>WUDkL#ma+_CrOW7Kar=mBPp7E)Hzje|1;0>-sqRSv1)e zFY)8v0?MIKh3Wq4e9Q&eLADPzAkX&vu{+*dcOC>ju3ADYmPc5BQxFR6o?JNB>n>WAm_Nq*wEH}MjTk)+WAOR7=e_g|n1`mv4++f9! zROuYtL7&o`3E*co5+>6^Kw0g6#qzf8?z92_ECtDl00?#QJjx;^|fZBygr%0 zManJ3Lr)2KPelB?o<<3JGQ7QAvhq6Fxm`5%@#$KHH0KXmvxSOp4B1KM0avOaA;x!% zUX%82)_3IG@C3Xt5{`wEU-ef;UA;;R^7ZSu1e<0=Oy{~Ts#J&vR;+{JuZljokp<@K zdRA#manql*f1$TkUlWJ4FMt*>gGiWo)r_5Jk&y^JXIx~+RX^k^ig{4t+2uxY*qM$; zmb=DPEWN+*IQ?{Q0ugH4tpmlT%D*fTr&hvL~_3J$-FZLw&CuP-RWw+{X zlB4ZOUYAgI*yf>1+6C!w^A3I1_R^71?V}NLu@Ud`0$_LqN1tMF`I8dzUzl|23%D)h z58Wge8nqDz0s{1Z>N-|Xh;Pu8yZs*xuoxu7Jp{pGR1M^XXbvOgZO~>ne=}YDY`Jg{|zlrn~i=$+<>PD zC4i!)$e=^eHvbic=z;v7uEj(a;wLy@OZia_|EP~uAzc5TQpLgmLLT8KBKR*uWzr4; z@qd1m<{K}FQkb71|9y332t?@5$NcX`A_gKB@;_2ycrLd8XTW1hnRN#K1sK#^x5ec^ z@>y29srAW~mj7Q3gYoKm;v>wq?D3nq><nV z2wF9;!`ygUH?DC3(>fPq1aMZd2Cl%7axEJjOvM5n6v$wtCzpvuE>J9#j7W{PbWUgb zO__m9Bc__cvYTE*opMv)Sl8Z?+q&6^Ybm{_)=QJ_PzX^^vzyN>{G6x*Q-nn!tsqmz zH&?I|CBhEBOA#EAJxd1RaCK4v29yBwzXs1PQ|uuvtm@No9B7YJ*R#5ez%R)R@-y_Sgq|}v(G;I z=sjumZ$O|DNdqcTS@|T$mBEYoI5%rS)1FiUht*JNIv+gw7-jHDF9cc@w!|H_a3Gfn zUO3ri>~-P$z(}9YgdpYHAf-29BF=KlfK`mlLR(;hN>R`{b_nH9weJ1;Z)SH4-~qpbfr;U%+X7@AQ4yA zWk(b&qfbiC2##S%If4VOBX48E|D!yQ-=Fxh*H8T$7o_4297#jFABDp9rQwmLjerd7 zNOSu)TT5jBEa=iNHmy&6*bm8UMbi%&-{Llypb@3=+m)#nGTB7kGQloW9z-307)iM4 z7fL;92AZ^xZR1A3XmDio&TIbcCFr+7!&pVs0Vkz3_po;GFK4h z_91b1AwTNzx~wkHFl_?C_}*ys44Bwl=QkWC7~k zn!N5;6%DHo@7u%=4Y84jwsmX1HXpzLY)FU~j`<^}E+&q=2V^!N{kRTvJmrbCEndE+ zPRXV|?ay}~@AHo8Mg*K-I?z^vZ8ER?MfZ}a>6eu^kRjZn9LF0p{_Vr>oMs;6<1K2A z6f_h4q+r6_XNU3YFL#mCE%ys{BM2G)0@%lQ(6>L>*F@0qDt0#SWPv%JJvl%9a{5q; ziJ%P{_GXcCK=J$EXOss|R%n0n`*IcQ;zNg*s`<{b{@~|_ISd7~?wYcc_^7X$+8F;b zQ&C{)v?=1KFy5R&iWT+B~Rsc z#T`-Im+0LQUep$jgqwd*+zh68+Mw6L-PN9_?=Kih^r=xCnl+zXKXxU*z%GhFymAvl zplm|6oRGQugWe+G&{f@046La=pWsFEZ+T(ui8hR;ACg zZtTGNOUfb?fbZ))=GR#kUyqfXaEXx*h(!PJgGjiQul>^tXsxv zC{hC;MHXncOvDKMx^3uW92h_(lPU$^51w8aGdbQK#&~|%C*xL(v1BBJkthY@-uU*a zuhO**^hN{Ds-h>{KbEq6qE78UQevu{#OFNuPgXQ}n^jLCH~86K$V1uPzb=R7GS1W6 zN^uRXIo%);NDYgFOT-RcTN^{8?wE;DAM)oWu~c61ftC3K^0_d}Ywq7^%yrH;h0Y|p z-5c-Mts80&aMGI5BVt#W(M|#_LuhBI7HsF>OAY|TG*+VLWu;^b@dMB4(~>KJ%bv+k z1Z?cOo!X49I}vXCDq-sBM$VEys(N)fzwDZ`DF+1vPK|>4)H^$0jL>nC=~P2`(sEK3 ztCm>QvpQGk2%0sAON?D6q5ab1ozdFXAx|FKnQ14k!XknLyC9ym_~<8 zF+BpXu9ksrF4&W!Y1!T)O2V=Im)Rqf;+#53Z@TFoNJ zwcoz)s^jy>(HbSKKy?$&a&A&BM8;)6sXlhG6U1a@S6S!nj?n02DBqqGQ|1{qV?BU~ zy_MsLE2BvP*nFGSb(~SWSaNjeu__ons|Eqs@+&7+psr%X@W?Ii7z1j!HPV3+yAI@z zmf8!1+6yedPhz;Fmg$ybj4Z$2)oRrQVW%gF(S<9t!O+*azfB!vUIT?l(EYr4dgoO< z&oesTF(Pc_w+R?ltg?AyFy%Jh8kdU~mmlm1(FLD!tgi24l!MV~vSCjdPo~@S`^k}x z4=$MGmLQI=&0k-v*ipTR`|9qy{kY;+GOnQVb^yNvTDs zfuw->2b!R_fY(8S!UF5)pwU}!+ac8u5@$8hTY^U*!T-}+Dal%Z{3mto-|kDpHsk`_ zKd1w}CF2Z|6y`sGW9BcU)fb%kCqF~s6_WnHs0{R$cql0TuaEq*zmEnb^0ogj_wdC@ zcEbRbD!(ufA}v(MKe*%H^tbKrPz11`oZSDQ4IqUe6cW%t8}y%$T^l>RR+Nuwz1~zwA;re%z#yS<{Rytbf_|8*Bt-`8 z-uJsOv)^R=w_P6KM8*Rim>D`~%sgq{oDy@benFr8 zAudg5s8|hlk`)J?c<~0p7z8TQZux##&K@ud=jOL`63IyN0Ii`nP-oz2O4#rQ^>phy zDxF=T`$6>WR+1HpQr%_NttfQv_!v}QrkEgk8r$CCDh3STWmZG|y3l)%6_;>?I}#mT zg9=rf5^IM+CVrS$5xm|IOZjT2v;;pD$@cT#UMdXp|2BrQ0z&vES^-A zO)7QQoEh~KoxX4n(hzlQj-pbs2OoK|5VYv)uSnS&ptFcVZ_tOqS{pN)Lr$?y`x#I; z#|6N0htC3fA{YYpm<4!;GW8P(X0Y-Gwjyn00(=rELO>IPzU@2tQK7IM#zjY*W3b^z zg%LSv;D;!EX9e9Ef=Ni6W!u3lfUYM^1Sk&E8e^Elr4H)Ni>|Z>^ldI5Qr9T17b=4>Qvm$ zssRF)&u%U*p8CCCh(wNt4=*eQs?5d*A5TMxem>1lBTcZFOhTYk!ZAnB_N;$n+A4k2 zX9~z_DSx@w`&0$RvVI?Q73j83o=S;qivmEp7yW#MKbhb~DaB+yuQtjPiNA4%V4}P# zw%7f2Y&WIi!t$7;ur^I z$YZM^D;-o`z|26Dsp57ey)@+Lrd4G~J40){mbufc=Bs>s5QQvR6B9=b@@$pIC&mPY`4)?2(fR6XF=i~N_HeDOtUyJvZ zU8}w`iH9~#Y4mD~p*KfI@`>AN?VjL-sRW`n;@<-AVtaSazcCLGU~5ZTaWo0r+BJzD zPbl={`YkANLssUi+$U^`7}`*KyJ*Qj+MMd9B3QeWy>JEU?L^Jf%u93YlTjxFic%la z6>L0^G{L-(X^C=dI2S?FhxgUg!G?`$NGFXKH0xm*$-#SFG{xDScy+aH1_B!nH9ub0 zt(BRUb0C?5?+S}}>+ES#GzCs19>g~71&Hq@Ghk@_nZOxYlo*wlEMl2LkMNEWM>u_w zYJD|NQ|)Lqty_bJP9$;QMYk>i4+U)M;`~R307$363MR7#$d6hS#S^2DlMwdTV%W$` zp5;$t0X)0njN!Aa?4p-Jgzw&b^tWAPZckK4F|SVdp*;`&3F4BW93OtE8yT-%Pj84T zA0(0lB)cE_e{C@DZEpYC+!pqZ&L0;ZGSlP^7;+=WAHaOTZvgXOOyna0rV#p3Yb0I} zX6$Kij)YG^I8cXVnqlUSC1!a*#HQkZ3d3&kp=H4c@7+g)DX-p<>pGa&%` z_^aC=T1cR}tsQ4MWAJZv`ls9e#D#m6-Rb)CeE1qw1;QL44cTP?_t{zzy`v*AG@ero z!9GtLWJnux8l*kUl$!6)1bMmu#Tn-`lxIJuOWY5hBydM}`0WQ#{-)52ItCs?E$2d2 zs%CY0n>@Vr635p)%I2}vW;M;j^R;2E!;Q0z zyV;~|TF(vYQx->EetCaXQQ$eQfq~Qm!N8@rX;A<$fOY4$Ld-b|cU5`Fo1ainKa1b4 zH<8(Q$|49F*B5ZO8K=gW4+`}a4;zZdWS9+~hnK6Qt2N(2kmTyVO(>XCRcxLfGaF=- z=S02jpGS<0l=*Y?K2!DZKF53L#88Cs7LoCS3bS@}Q3jbK+bwbY6Xc4JdGEjD4uETp zP;mbNZRQeC3Sa%4e?ioQBGlX$a%#!ZhLQyRmj`Nj)rCre_{UzYCEplI^uKAI7e}Z7 z#IFX@zl|Q^6*vS$W{&^v^ssXOS5EGv)_+^x?mv*AbF;l^f=BXX6wAhMwn@TTXB_RW zsoEHrjK)=CNdkPPuOp=D<1+{94?sgiZ*CJpMI4VN?9ZJ@_M@h8i0G-&InW!H+{t1Z zf65Tou+NGzYU-mYfA9Kjtt6!>Qk>+68yk{+i=r#SFLu$M%ggwZ5AX#aTSMd@9$AA* zC%4hY-(pZ{6b;$9Mz`;9Rmj9PEH8i*L7hkObO;e9Sf=PPokMg6EozPok(&9q#%-_M z^x}}IZk7&7qcdfR`ejXi|Zd~cw`;`?-He?N*~}#!c`?r zNnY~qz(KOiDGFb#xXnPB;D#-NuPV<9{*%&@ie^`Xc#wvWLZ>1i7F*1Oq*pWxR?7S= zz;HP5z=^@&Fb&;-JdwP#@Ec2T{yT`eR3#TlNRo>n#y4p(PQVWkzjLc;Mfjln3*w21 zvIi^~L>B~R;}~t}QfVOyjDk__MV=(7S?&z6L9G&vizR5I_GB+_N>??$z=7B z;=)SQ{(PX4nivTWRz4z#@zn7PVlH>JKI)e9o(tv6NO0R5%zisp<04`G^5_X)CL^fj zEKa!#v)DzrB>*LsPaH#2s9S(5`DY&)(V6gBhdnKN)mOH_v_hosXpv?`37naz)hv^P zP6IeRIY!JSPlU>PzPOZs456R^Zl^DRpQB)Z)q0C4T6Z(^;r=ml^nAHsHu3q(%bnQ{ zUnRiH>$@knz}X~TZZ5Uzp)ieR!1vjVNt%MuI*+%ND1dI-Y|e4bvFYCh@5g;_SAjoN zcN(1UEoh-R3dho;2K0m}}zh;!7(F0Gutcjs^dBXL1Piyu)!vb1tYw*nU8lw9$ z53s@jUw~fv?3d06C{zN|?(E8z)nyZ%J!$51ahXQ=mUqFH`B+aYY_pSDHAYA~(8OV> zXNkifEr)s6pl0-qvmmi#dgA2%Nyl!>m*+F_($M>RU*F$-jc%0!MW|UCren^?h8ss_ z#-_`Xo999=Rsbh7rLaLs+cniDs9l8*oJc?IB7g$2Iz{nDWn3N35?d{J1GcEiB09?o zVjK2Md;@k4wm)h6(*Acq0}L+rPixXrpi zsdc&#{Z87Z2@c`jA?&KVU3=`2L(fu?UI8d>WTL84ef)>k5t|>`a+oKEUG92{_nWIV zynruPC0!5_7*vM9eDD(->nvpZqi{}Ak2wY=LDa!&Tuv%H`=ugdIunIfW);lJ>mFJ) z$6ELykpR0eQP>FuE^62u)*yo*60{M2e~GF#{rI4F)A!~3cXt+LbU~N*)k9;~IxQ3j9knf1SsgK)e|H)(GFZgYtcTGUV!3Zsy*wE8afd!;wW19CrDKfrdQ+MEPY_+ zWCEf+Psoi=07VF=!fLn@BQ>M=&C<;$s|E-AO(k!JOr4fn(*!+o;O!4<`QCU0UF(3r z{W^Y+NRN-RH)oe0FN5AMUU*g2n}{4QQ%Ar9r#oq9v%3m`9ewgL4DW`VBu!biLO_z1 ztU0^Yc!zIi=isF1>%CSL3ul3B6$0m(tgo6D!+|i>!zd>30^sj z5;N|a0iClsF*sz-j#Ce;AAzVsNv|0C%#c!ZUhmw*6b5KpwZcaszNK1MK0p=b?~g!J z{k#6#u+XHvswl$pZatZ)mz(Dv+@bkDQ;`LQqp!G=jkp5__G{;3LI%hjL7@*yHb>VC z@I}%66Ci8kq5Y7`Bjv52;muz&X~HPiT|ac>J|0e=nUZIwria_bm45pP4c+I*)u%Fu zyCFdj1ooHY$D87(B_sEc839)5gRt%zY-jXpur{r^FD}Jm1MpTx6!3&k^^x73<3@82X{VQaT={)`4`jy9yAp7O6W3dHtr6oaQGG zgxq_FG?bw}z}nwQjL#D9Qc4xppr3$ez?bvR@#%7CMO{eXL61+szwVij>gUH=lnYd_ z2fq^{fH&acEtH$Gr~5?^b8A!_2nC=3lb~=0$NKGGp(S;*Qlw=|BN%Xv4{JG_wK+a!AH%M?w`+<}t+$5D zvHP@It3%!S%I)E%17kR3*9UH>W*PIkYtTlZa9FV0 z^W#K3>t);Ss69va{>rgA-C=LB$-%y{7KOS{B#N=OzZ)=pKO}+1RBi_)mem67E!dSs zNo_nSowAI`Uc`~Dd8ulR%#MNWD%fKZHL<;610lDyP05 zb6!CqR&P(7E_N4cW7(yZ>eWZ?Jbzj7KXDW%)?zh31o=3k5hr(9v zQB(AvAs1P)->tJV3#qoY(aJ_`t)0oZhm#lg3)FU&GA)h1N(CK7_laxj|GrE%s8!5mrdSg~%l6l9~KYkqbh*R#_ZV zl4$#NTju`pQcX#rIftGCTAlg8RTv^!Z+hd0e4P9aldEG9`M#=mBn6G^o`Abn4T7Q$ z7^od2yr9#Vp*T~4rlbCa-O^LaNdUX!&hm$;W(Syg!5EUx(SN`9-D1s2HY2Y;YTACZ zyH{J(%EuCkV(V zdDtSoQyC}n^R+z}jr39!Y3BwZ2kr7Wz{WSur5r{z-LXTHs+x1-FLJ;rhrbH5LFX9q zk^XPY*}+hhsBv}{dj{<2hma@afZ1~ycULLu0HO{)Y#>wuT$x)_Lb&M|kl`HA%{r=k zby+?*t3PAk1h+_ZXb{wQ3h6WB3O;f~9eDE(cbgIo zb&c>3!;0RLo&gnw^ba44(ZX8+1%mjW#nXjOL}g;2stFJgpuKVxvqWqbmz&8w)3zWN~*$v-<;qRPT5y)#}#S@z{OaSh;Kl< zC^n$X4$?A08dBx$NKP`E)KiTnBVR~5B;zR(1REECQRaGox9d2k))_4*QvG-4Msn8v;%_ zd|{TmhfRd{i@=HHCw)xvIb2w8_yt47ekM2{X&1wwaSTd&?oT1ABx}AIVqLP=pzq;N)>mX^h$Bv}D$3XFMVQ>oj zOaLAB=RoejlTkTpy7J);>@O|#vFZVHK1c9h=Ng!5T9YK|OY7}r&k6VNeAi>5;A3p1JMuBD&K<%o@ zGTIHnAX6ahCla~mTt~(Z4JF54N#^=V4FC#gZESdm2D0*`4~kik2?r#m#bBc_re$8Z zIHnaxpM-s&_o9Toh)PMK*|gkGyDnY%jg!zn&dppnon1cd=G~v3-0$wJo?qIpjEPOA z6u7?C(UZjk?_J;Uq)rGrho+q$y0A3I&2AK;&^iQnLE>>CasFhw|SVb+*doo0m|K6~hgKJM=q4-Fl- z-|chW;U?4!)^~JUX9Yj+?aXvx6Xon`s;6FZ=U1I)i}`~M#vRWs>a|_OMK+rRL#_s9 zazy0U^m<69`8>e54JMQ=l@W`i(XRb0K;vYK9_3^)k`8x1}+YFt~a-MUwXt_FG2V=O>_g#vF$6 zDQQ2~DN|Qhws>D2%_)wkTRXOd6WH*__X7q=isgBskMA|?AOTwlEtV1ljj`)eV<8Jl;dUh1v=0QJ;>vQjuJFqUcOGfi`W& zRD)ddS{yFirD;)kf>MzgzzGl(Be`cn@-4jdh!tMN{fFp6B~;yhVUb zl`-Iw?G%2Sx?!*EJ{~g)@9MeqBhJPEKx~DLk)iHH--NgJuZ&FiDfV@dR7WgCr6VSV zfZi-@ko6uaVx^)(fM7FlFd2gz)8Cf?vquYbfd_C>s8si`zl~u>*Z~N)zD~1yguy%6 z`$Ro2&>y9PZ27vDe^+~C0yx15WB61O|0pFyjxH{O1YS?!NW8^BLda$clt^n%rS1|x!cyIxENum1t5$}I4oY}a)aW+#vS=jHB)RGR%R*o2` zRjzm*@Ww6O;JGbe@%ru~ei{x()ENz~)ER2~G~sU48J_zwyXw|meg!0%ieKKGj3{7A zjYFQ~`bGWyO=y0Pbq&VA!^+B|APpYzK$Gm8DeBiX36{R*D+LIo(j-PEqJRSZmbUe4 z6>YDYfgglq$-A&fw0PtKbG|YbtTOSXEPi6f|y6eaw`0e|< z%L9teSCruqcNhS()Xp&XONAM@p&OG8N&}jU%XR7ZYbN8cx!+5>2bN*wh(P;CVGpKX zShGd2Za6#9GA~(x%1-Q(5NA(clYzT5p13%Dd>lQ_Z~e3;2tl?coBj)p*L7oyli)v+ zGviZ!Vsn)GD60gu_MsRX1`uxQBo$Ny;}W6FbMcXtkZu5IvWnggCfab6n^=Vg8`@?k zu%8;B=Ji$OBR3;7IPoQUYrO&T)*390o3LUPg^uX%$RnsV%HJWm2PpW=z094pe_<>A zh%ColmH;sb?K&LELt0#)>NHNGA-0pme5KwTk;c6fDSH-MpGckT=BUHmzl-(qgwjvX zgE07O>q-p>$u8Tg`L-Mee?_IPGHs@&=63H`mjth|JAa?eYo%Iu@m+dCIWBclxze)) zY8*pp%+S}PE44#w)zVH7Dqg3sY-yXSaQWet<ZVq@t&{ivSmMz;4A~ zijh_2TfDSfcxvP$^E|{|<}~ z|0)p4D4=5?|7EfV=%CTyzXXf_O4G6^6Xdf&R=4E%qnUHd6#gaD@YW`_p}uXZqVIYsx0@5<|a|o2~6w0$nn`BVSXK zHrz5^#mWr?kg7d1FsY4QcK@76f%BovP?iBuw!(Gs6&W@E-2)SMfvDspI$YgDnYHg# zZoNn$`wJG({$1$;8+26Zmy(2v62W9nQF?iJEZKDuH_~k^Pmd4-$|^pTpQ<-)5DBQG zgx{$dpN#A(mdF#^z%UD8gFsRG?@~ekU?+m9-po{)-d+Sx>JNHpLy{c+$AK&#TzCeH zyVW}hK5***qAF=6t1^rUNd#Q_L_$~_lc%6x%Kf;2tZ&=lJlLumFRA;MmIYka1q;>* z9C9F6!af4CiGJG@vZN*gED3*4Bax$&^}GhpjVEA?stq@XM7R!cvN8NG3ift75v2%qJTVYrHEz+pdt!1vT$acN*jitB!Hsnq86B6uERS2|)s!qBd+< z9~_Yjl(I`SnQ6N?H7r}8fvx-6-g{rZK^`kMlY~ujWvlYnRC0fC;@ugjVmC}0GOn|J zc7)xX(=Oe~NCwpFds%Eepzj)S-E7xZz~H#HoW(dbA1m$!jYQmuBirIY1@~y!Gn!>q zN-w+&P(dH7XWWtKT_d|^)DR9VBYUe%c`LEXZLJ&Zw0fHuPd5bhYE8e0z9g&z;@COR zf)E7uB$LrNtX4-bHDr*53k=Pon<38>w@8wVn&UP_Q6MNu>irE}CNUw2reKqKo_BCH zT)%r_=RC-`ZV3@G0J~CSrBw@G5|QG6(K5NfEc|GVYUqtqB&-J>UbDcF-^=pi!IPj6 zuXDfr$%Sy8(%p~|sM1KoWK!4x1eoyzDJU=^t;x&+1Ez8dhp)&PuCW5XUW9T{IP%{{y$>I=rkq+ zNLwR4FS!gKx=ui8ibtKKcJRwzfL1Huvh zIQIXp`>3~v=U{EMCtAIV@|cB^bsnQ?I z<^p3HUQB0|fEk5Yojb6g)xNeQMZPf``C9sNfOO^Ynvw9XxZ@udk|%WC`aUWF@cSts zAzE|eVq1#*8*}Tm2d`<#nI+UL1^~t}kM0B1_|NHx{ofX8@qxF^VI?CHV}}nOw>cK! zC-w2;nz6Uj{#LR8vchV1ITeZ4vtW6YxuBHHk99-{9b9ulrExj1D#H7zeSF;`y0A}F zfaZyyCuDhd9>H~m(4_KieIbFpr%M-Q;X~!6ALqL7CPA+0C%{c#^oB3roluc4mO5J; zeVT0S7RBT_tlnExLm;2Nvn~D z*DPPaH(N*VN}Sa-_3>4!=E>;XrT3o-I^#6#(-q0R;ZgB!rzQPdTBH5dkE)vekDWD# z#&&MHX9Gj0SQ<-?sw!9=by~tw6D^O*!$O&ZOx4!b(BT+Y9WeZ3g00fcvL|0niFU5P zEYCUv6`QQln@N|{a>DQ@8RPOFklhTrC3>;|>kOB@jfq05edKz&fv3qV{)SCyUGY^L z40N!Jb*DXo1~FByu3xI}1fHuKsDD|7+@uK0p>%RYCI#29mX9Tj8K^23^rmg9r^}ky z-Lz_!kKe?44tX*ru?kwMj&p|sd)RtCj_?S=v1<9$ z36>1$VbtLLOo(|@N058?N!1@Asq*qQ*Q97*F&Jb ztzKV;A@U71dWE;L5xPd;*vo2zHnLJt#-ONkFE91>g7TkW=Y?lPqok<6V1qD}t#cq; zqE9y^tb`)gEvQ23R+K45;(V8@LhM*lGTP68EoxrM6IKV2!ubrG6Z0ESbx@85B(qD- zg)r(P#^)>==rG^+~ot0vpM z)PqA>`5P~A*!^l{@SCdE=r z(v`3}+c5n=k`QQ)1ZEtp+IW=B4tED9kJm4ZR6O3|=JpuN3FOTAeBcuJ{8Q2n*wF53 z2Rz+8kaW_GKpnnM9=@)}#{S7tm|W_=p%({-0aYqAv2{OK|GOvF)*%TL-0JR>2Lk`N zb-oGs+)X0*b|u6x0IvaCxmKA~Cz@U5I7@iW6Rqkx(&7Q#Z8wYQc#loqVyq-xP(+HC zCRNYrE%?tC*BE1kT`4tAm(YhhR=V}Im4|Fo@%d0W9z%%tCIUR+@>Z$|(enIc56ibO zCffm>lG7^`OLOeP!mE9GB(uN2zNlS4i+Q=?&t|1Ht_G(xRt=Ch#?`8v+G}lM@Zgx! z)&}0zc`f1ijC{XdV!BPs8Cd2A^1ooG6{~6Wt9eqQV_Da6TVM8dn%pw2$I@nrme%oG ze*}QCL_Qe`$4|J7FITR7B7!2Dyh&09Mg9!ugEnI0lgM3~-W4H9UeEr4!>Ad9YR)g7 zSBl?odc;coR14@`7K6ri8+Ua0GDX@V7-w5T8CTSGp-j$B?Q zU*->0Jr8-O4$U4MX0Tda4!x))JeZk(qBUz_Af6#Nu4+z+-Z5 zN2$hJKM@CK4~py74cfs($5~g7X?DrYvRiu-)Lk`x{{SfT8pUq!5#%_b>152zbmfC> z;D@NxjWSK;nrGFCSrZ0w@QPGK!YF#I>2jdVA*`Ja1}(B)xS)}2yX$0#gnOp&LzXpb zzY57*OPBn6X!Ji5XV2a0mnG^|InkqGVxTa0N;B2a|1TwW1EtDaViFR4bM<()|Gb%Gz)WGR z(d&`|wzPEf6+d<_O`jnFx;tCnKr&n0VsrMi6AZme59Z&GLt|TRbnY+O1-Cz*=0mS8 z0juaG4l-W`9rvM7Q85-5NQhMc&>ODJsOPBuNkN@jn!h?L$9#w!ZU!+4+)_u>9=M0? zxhAmRgL#6(E73Hl>g9~HMtI^~NY_Q1!>!T2!mVVDGe$V#ZT{H+qNqS)0335h1mb;2 zUqv6n&(T(?>gA39-4Ktt8`a6BS)jQ_Uqd&B<$=f$&gl~^4wpeoqhyseP9OOmZ$UaQ zT8!}g{+R=oySmX^rs~*n<|m-w$15=I;Bc4hK}GxOZcq@AC32RG_MXpNBk3w%C|WQM zAf+%CENUv;D+S%-p8}9GL~IRVCFW-vioTO$h_m-JM>yY+v7oDeL^Vp=QcAx|%nT&E z-jmgZv@Q&;iP;QF*vS{Jv5tb6@rI)vCJ(kJkJ4nW8~7~C)th(po2zXnt11qjl15%; zVvJoZTa#59N*VUh0<#+7mb0| z!zZqns_F9Q2%bEA)jO(Rq7ENko2oO&d6WfB>r!HE_hz<{)>bBUaLEc6>=Y_VFhzfq z-^|`w1dnWLYS^}!4n^_~&6rkD`6R9zhp>>o& z2enEI#zD;-VDkh$hQdDvk=lA|4l|)5aZ4^<*Q>b{%%Qx^IthRMX}vPrj_{REpLxT>P#gd^l3@N4AYHr_sS|6sqvjT%r^az)DYdg%rko^3 z(!T1B-Aq=|92aEqyORF6x3fvlR9g`g)2s(w9CrhKvC( zB|WL(y0R-gMmKb9alA_n@2|x&KlXF_p&&-#CnOgR$i{z2pYLq!Km**b2Bw7?v@hJh z(;~nrJ4o6VN+ak4IG~geG&~R=6dw6sC2vpJ0idRvx z5kpgS=~b$l49?a>!}@7>iCjvq=;)t-+pdu4;*?jUh#$(OnCA&4iSK{|alW=dA-$kl znH{#612AWgPi0$*mk?5F1sOE=a2?2Ld)uMLa6)#7iNLAg$(CPj6WmQY(=IPmHTMuk zD?S;oNMSbg=vyxN0RQp|HeqxZ4q?I-oeb-ly%w#BnY$j)7q?K5L=oRjNX67)rhu%I z#(<@Z>0_vSa>jEqv>8WBSTX+kkQ?2OzBFGOz)9ayc#zwjobQwl>!g!`4oj+UuPq^6 z)cLvEKy4x(gmwu?MLt>%Hd}b+8%Ck?2!^)oB4|wh^+PM~%vV3uWfQ3iX6)W!E#aZw zdstFjXGpSs&ijr9fy`n@L0Z-3xrxf^tbr^IeHp};nPNFokrm!~l)-!!j@qVnn(!2G zE~W!TS(eBkZ+_b3W}jL#HNIAR!gw&mtfW@j+V9@>(q(TI2RVbyb9T02Q`j3RY19Bk zKSCiTvZ&!D+us(D*Pl9kE9z#&IPTc~+kok8@GDJW9JBAKtkGnU08_{P2J##PgF)aM zq|hK{kPz}~0JHv`33QVBO7qq z4BvWGNCK)bTgZoq%0>4tR~y>LGXS4w0yctk$s0Aa5DrUV$=Qd2$=D%)))((8igo{=(~f% z_FyhnERsCj3|tbP55X&_$67V%TYd_mATd7*>*Y({OK7wAx0S=g;b9~|%@xaqv&Zw> z7rJZx{6o|E>Uhtz{ki{fc?)H~CCKM<3x5@SMyGdOGCWNrxB<{?__*E7x$6GheRqo$ ztg=*OQVzwt9DgLbX_U9B1jEYm1-(%+e(_EbzN1xuW)H#y4J9TqhsG4{hGl?k!QL>m zkLH2tGz9*aAE%GQ|B3*L`%Mltmhcv!PW_%!OS} zIm`j6v~dkD!qR5D%xDxQDyIaK`vN(8)hRBK=|g%*u;S=M&C9v2DUSpMnBNOXe|t6J z+{ClS!$0`}EZ=tU8IEIL(MsR&s&sEB|6PxK@JHb zm^tMeN3J{^Qz2}E1ex}7`$1VT&A&ttq&Rs>LxvBRBV_ipqoIQZe>X=( zO9`yUY5a7i2reRRu`X0%i;+*1R6L%Y(y`we+g#hoAiGHS(qU3XH>GP(!Q(`-yvES5 z18p<{3_@AHS3QuGn!o#MS&0lTt9J2RZwk%uh9i!PvUJYHheD)@xP9pghAPiGeug8D+f3PRdH#X` zbU9p9DvUNobK5#v@x$X^zbt9Sw~mt;SL)V8C&$NXMqd=ZAc+5!@wWL2`}@QEZALO^ zk?mF!L_y5o30-SlqlyeWTo0B$$XC{5flk#mNm z7VFlgckBA$K@?MSQP3~2u?+c3WQ^zy09dTm>g}>#sj4c~vs<}Yi+#yAFq_3Y{eM0# zr~Z7P9^kjo2Ph+CapJ_WKM4QX(2jqX&8ql8vVg1!jUNz{OQH_VAM~U6|EicFYH_2a z0+z8^>_hV?M<9Ppio6@2x%Vqv>uH|BW=&t?L{@ zWS=+?Yd&B>kGKq~2oabl;qX-Iviw67VseA3MuqF_Qd7L?$d=Wk2;SvE$7=E_A!ciu zJG!wc%CGxOYmZ*bhSlPJXi2V<>qp|Xu~Ozn=VZ4FBixi1lqRVDy^x_}w0&{A-q^}ZE9r{VIC(_)__i1NiWv*;!fus; z7aNp2xf!E6))_m>tC>4lM@Er~A`1ZE` zttumIe$L!!`ucwn_Ks1OG|d`l+cu|dbK07=F>Tv6ce|%;+qP}nwmofk-+te7?sv{z z=f_>KSMI3Txhiv2W$lX0C-MpTt@V9vQ`>|5Cz;l)<<;|cwS#7_!@pWC80IvsS6lf4 zz)7nn)d`|ao8f4bIF7lag9^Vy9z`fds!?T*+oY5h(wvv&1K-47785@qQ(MXK;-FYZ)k6z7>+@8$XkY#%o6IysqA1YPD0N zRY8Y_g1CShBLfCo4DsZGwiPkwrY_#Za%9uBx=7 zE^V4aiG2}JJUjxGp*;YVl4(cuh@^2{6Zp`cr9BzyJY-)TzC z9Wk+G1Wh-SP# ziBo8+h6%@OoG^u0e3-ZBEcVL>hb)3a)`cAjNvpOM7_6K&WsBr{Fcuh=N`+y`IS49( z*rTDIkuoD_Xl9h{c*CcJqsl>(zXQ?sF7f{W^jW7KfMWWWm0RJqAP-CiVWmjPkYgUj zJu8B>2^4Jh!sxHqdom3y_BT@U4YXO@7@~BqBo^>>cs$s>JZ^t^NGCIFcLQGU?Ou+O zy8&t0U-$EG06wiQkJrEZ`yuz*e!P^|Kj?M&KmSsBt8yQQ;X=@js=SY>(YJ6_kVSI= z7_Z0g&y?G|;^_fiua8vPI>p<_=hyR?x;#7Euo9Y+2Z~^&2@}MS1(&3XRjqHa5LD4t znF!)9q;ry~?`7cT_}J4~6xL1%RMH0Ioz~U-$Mlxd4P^%iQXXV%RzGJA6l1kEo4`t! zv|6iql{i8!RNf`26O`9AE`zS88o#$zQe_ZleGiM$C#_*?&)wSk8DR5rir6&c_D!q- zSognb6QxPz8!pLq0Xu0+F_Nd)Lge67{r#=k@<*kbVS6P8_1CW?%Wa+ zVFycwAlCk*rbwhE{MaqOz^~Vs&Q@Lf(auZv}MreUju0S2g&uR8by(V$8_3L%K>jjY~Ob- z?a$lg?m~q)qE4T$@oE0byU z>g(n-8IhmIXCn;$ZZ(?#@P7JMo#nInC|*jAd)2e$^99`fD5S7XJ_Y{?wWnTx`!Er= z$XCL&gVlf~4#x_C5%2>LP>V=Ku+%75tFjBAYq`2pXS< zlRf0b*<}2oc_}Gz!7&wa;JXr!g~i9vlO-XW1W!Jf)Yt_T)s}{7=Pz#&467K4SjJd1 z>RJ6;d6o}8ZEU|N#&xUSrhIGkn{>9W>5OE_AvV2W&a!F=!jg`+!oSB;X2|7cPzdJsmfThy>O0d zeTAAGMDw>^V z<%IL`uM&y;N_zNx70T;IfY|`ARk>7uhS+Q;hIY(8Jw^?Y$`CU`l67uZk05kj0==7;(7;>TweRXX%cvlW+)wVv(^Hymwduv{rrsolt zWK7eUr1tKfWBhmzDM;~-^T+p1tPfJzD@HTdNN@hNS1+umTQs9%Kn1>5a}Scfd07dS|y~%pz!GVLX>2>DA3oKFVo@Ia&(rA1x~v*ZVSE z5XH{F!Q7dMWTPR)u~rwaN|Abd&UnY46w80HX>L0WS@H9ogf|`!mS2*dj`>n;PEf}l ztY!b?c;EI$T^)Z8;q#6^Cf6rGPWuf09Mj%DXl~T_yiN+^omZU2Z1^pj@GAE2XISU# zshRr;cra(k*Ko#wkZA@>4bB4&B)OOWdrI{mH1L1JgGLDdR}Rc~0Y;{G)YgQ)*UIMWPJWSByyl7)|@^6tnykIxG*qP>=O%pqrqG7ol@V-hx< zHQpm<0t)^fGMHRlCQOFwT-IM9;CF<(FOB=dxDsA=weO3(21v_Hp)`0{xNUFh3oChF z9>pE$yMDBB{nRrbC^Gg8xL#TpOma(r$VP+rJT+S2=7c@;L7SbC$f%NbSvJB>IQLsF zK6n3w#G#YdN=BxJM*D}q?O&#n+B7IOnEwITk`W7`;J<_3foH&|zI`gGe|)O0e|)Mg zJGBZ(2?0huF?o7uLNzW@CMWrWApL5cCF9`#pOloUG90CW$^Dewz*%VJ4A%P!2| zBXk zi(U}uopV?{;d!2-?}Rn72IeI-WW~ujX-VvOZrHqLf}x=0a(z;cjP_G7iOiAb5P76z zF^AgK?cTFY+Y-!@c`{}g+qTBgncfh6h&km#AsCG>Cl0%Mi>B1B{6?C91m%)5xJbg` z1h9G%%P_#O5PjHp&9ZC?9Aqg23yUpi>_Ce;i24Gjtmc<0G$q1fn~vQ^i2b7yNd3-12C(7N90Xyx{PzXn|OpN52l3?H}8huD63TxEZ~ zuJ?Ce%kuN_eK>rf`N%>+oz8Eb7QZn}?;dMORmfvoQQ&kiHKU-uLmwmMqE@^Sb-1I- z67&I18KMaY`cJK&Q4_EGp0>AluSKQvS1Pm_D+h-zxlGamOVL)*e=;@>YF%=X%k(9n z?FwQ_m(Hd{$JQTG{;B>GI7>3%dw`MS=nlYXmQ#u6F%=s%$gvJ5N z=6Dn4DvM9s~@9;0wrC}R(x3QiOUK3Noz6LCb|UkFUPei_EU zMt&Kr1#WC`BzbHG-_lO_w-;#N@-@?Kg|_g(&f6vaCA%IU;T@Ol$s{k{BQH(vKpey| z=zHjhrf7wsR?(vU$6zOX>Z~oB9taqnIUKZNQJl^jmQ3AEctLroGtIhu?TjC-i8K3+v}zt+CN|K)f@4AS3wnJP z&Q)S+xTiJLg7F4M5R>CTuNB|0M28%y%zK}#z?FwouPI$<8ii4FLJLCxV*{|ty{eK< zl7q2O*GBnUzmfC0;5>~2SmS}z6xiu*gNn&kmT$`U3>%To*CyAv_+Bv;?1Wtd1M>F@ zB`iUOB9?i62T-55f-|7GY4+7T*9Lv%WDbEUHo=p3oV&7}ovI;|Nqc1ZuTfm0 zL*!P(wVPeI!7{@eGc-bMx_hIdu#MV9tlfodZaDjDI`6PnN53AHemncm6g+SCUb}FM zkhTx(IWjNstH*X%AQK@<&5jty@Wu=G-GcFCUb4hNq1AbXGDzSm(Rcu|rV8Rch~!EX z)9m1`=SM=)2C?V1PjOiax?T(o(YOu|WBfqVyupq{DtjXggRaANgodu`>m9>@XZV>w zrQfdH?)?+souvUyQg(ND{kj`~6TZdE$K%R=9h0_be94_1Tv;$4Qqt*F@=5fB==Og9 zd3rM*;%UW_vDNL3DGMOD{&GXe){%VsysLh4E#?P3{M>yhCy<4-2kz$c@qBgI?yf&< z@80~nT|Xuu_)=TY6K9o--ni!H-!)GNrylRC>aPa6QsUp1BY3S8RuAn9h!Kn!G^V9L z9&|>sCbPf+gC|Bbu&WAi#Lqb2(SkhY;#lr&g`cvvvk7p-%}5?Ahk^rGA6}4jCgunp z2>vBBLgIqL6~-3EAJ~x&V1b`v<(U6Rq08Xk-1>aPslP4sdE!ESbP#v67AQmPp_iff zMHzq-{YN)n)nZTI1GE%F;#M&7gvfMG+&N#vz{u=yq^nRPxZ~weTKRq^D}MTS_{?}} znRaxx`nS@`G{0d^vx90s7#IGDx5N%JJ(Dwvi9dfm9ko&&b1rtAYKelczsKY(X}xha%qav)mtiYD2q#1tCEB=2MUR$U z?WIh)_0qvg@nTczUQ)`rEU2EMLEnL`t2G!|V3(Jf_)Y?`b+A5VlU;oyiSE*9qX8zM43CG6x$W(jdTZw8W@Go{OGhB`=y~ZQMQ|6rvSyte}qggH;LkCSU3`yV9}bns-PMblF6!|&>BIZNvM;rzo5{QZAG9J znn+x@z32>7m^`Oz4S3RK-%##N_zt#5xXjQS~vE?J2d2EDn<69$4DHo%26^tA&02kxW(#OWdq716u`|oRRjwU_@MCj(8$?DgfT9 z1FFRBrtWMsH6!W$Mc^o<#mf~R^yi|tB}MM ziZ1x>x|>M_opFg34XR~|e?bIPHE_YCjU&W*RF)vXv<|g|2$lKFz`W2&r_8j2gndi% zB)NfBB-M}Y#()oy3m+51FiOpOiUGX%e}F{%$J{R?D<%OZJVAnw4 zK{F&Gd2m$KJHSR%W%H1>0>_YvY<+cQ@PO=h@Z{8#UeKT%&Ux|rn1fg4U*#8EtXS*$AOAdo8#483qsF??=%;{Kto2c^NSL!)4Zz}O zY%4&KLa)=|F{0eV6hy)ZO!_;GVI8Q6YBlz#I0%gAT(bQI(j%k?68EL~z61W@!U;pv z#;z!o+Uk0sQ+pYLX(%o7O921Pgoc)@8C+6>1~bLqV7@udaX)&@cqPN1Q6<2pax(5w z$ox8GUur-zKt+o|nX&bfS&-#&0yx8k)U-fsojLr5{R@z*Nm?pyQKEAhVR#X%1c6~9 zi+djY(!_rB5cp{bMEZLIkLe*b?4ajx^PJH$0mBn|_F-#g&ed0Bph&%`!BqYpbm(XAjC-~S?yCZ#o zUG52CX&OCEjt}r4(>^+l;E8sZB3}z$=Z5dejR+F=M2C6>x6&SBw{@RrpzSG&a3>G{ zAMUsK%~b9|t~Sw;G<%`vgVt znlr@uy#K)OlY5jH^!J77b30m(CY@2z`7f3r)YqSkwhjJfM~AYK+mwVhg^!g0)aTT+Ko(Q$aLv-qZ^Sy!tl5$zL0W zh2CPvQkVcus*(L45tm%Dwk#MKl}z&%*P|@GIJAm!V~$DKT$lvJ6CNQbA$oR6kE!CX zGbNx2pf;9*^-PV7$V*;b@-qucF+ngv9q~g6#OQl3a2pSVg-JT=8s_5(rZXl+%|~S? z?Wva8y{lHOR=Inebe%|il{n$(*Gyh(o(IrZIHdqs7Qc%kanU)|WTyR5!v+^~CmcEj zlQcdAS~Omdj3EdzHIc3I(xY+{3Kh2+Jay7NmJso^XiEL9*qfufAczg5*9)3dp)Ij| ze;o*khN6yamTe4E((T*Q(FT$Q2qyi~PaZ0(u=0_G727$h2* zaUX3`F=Hr-HpB6f8Iy*7_6;ZKj!J< zpO5r{D7<$>R|?ifNmBiY6&eqZxDr4CVhQ=0@1#y%@D@5pny~ga2j}w&g@@D|%IVBG z$kFU@Yh{eACa!fTUV~+5OkU;*Z?h}i+unu$B5IU7xn|H5o9A7d^GHY#YOR`iR}x#o zE^}ToVK8Fl@yPRrOLtb53`BDM4JrRH?}cv9SbV^T*c&AOH7~%ajFlGdEgMjrILZBk z7Y9(i#cx;Sk#ob(G)5XB?UlyETP{{VMzPYm-0h`>$OrHnKXC<%>urRD!OWg`?eAT^ zI=QQNcx4u=({fk@ShI;B6Aresik-vtlkrNC;t&nu~+)6&4W5U znCnKQ6Q;T+ju(!4qtStEI|wLsqj=5Z&s>b}y)QqR9uT{+pW}bim=1m@#_mTgAe|am zb>sNa>t;WTdA#SvgZD_0hcWP{MC|zE6jK4fkNe0lKyd^83Gw&Il#Va5ntZSRnYioS z`=#(lsNZw*Gj;HuP{e>4W7*)z*`6V9Dgs~hfLet9o}w0r)V|}5j2EE2thgR{Ci72e z$`YXO<#eY#C3H1eLOXm_*U+Bq6Aci0y=Qxq?ZNy>W%;EC#5KP)WB51-fYmabn*Z7T zgAdg43jdm_bt!8skCTZ%sK!jT1z(%BI5l0#rp9=NP6=m`-IyT49>N3SBllL#S>4)D z9+}GMkL0xEa~EZ6;yOUQ>*@7$zu!CN{UsjWpPw;}toa5)jD4B&7Ia}ga?cb}4MoD1 zWX_hs6;V#MUL4n8o)Sai%@bv`{ZhDY{m=dFV!SCuv_wIJ4sj;VlhcziX?v!y4{oT- z_7y(w?y(}=-Ty^DnE zx#LsXg?01T)?4)!uX|TWR|64;G%DWEb~ueTD$a%EiLfK2&=V(JX=dfLiLMf(s`TjN zn@hVxi)f)uc^%;Ip59Y)F@r$i@HG2i@o`;F!)b!OV*a8v$o&)9rGcG;X*}!+Pn(LN z*{>DaGWP(7#&+) z)VB2kEvbJX!II+hYR}G588~E@W@3YbBgN0uh_5l2XE$(8G?*Se2lk5Tp=5xZ$zC3S zGc$5j-&F6paB0yx z@lo#aF$=&e=xG~8nhrXeD(mOej9}3IxogEJaNN>1^4E%yr#g8(j2wwyNTYu!&qgBx z#nknRC&?pHh3S>2^sQ&mq6YE&w8633p0gvZ%95k48S@-vA`NZ7nL1qTt=%@8f0F*2 zRs`gl7Vc9Ofgk9gt$pKYJuC=}r(i^5jKrsW?H=&9yT3f09bQ%*VU46FVP41Rv-_Z?PQP^RhZ`<<_rxJ~1__OAT@UinEdjeT|GjHSdM&rTf;U zMAKYY>d9?efvSOCJ?6|@4)miCQ}3>s8HW!1jOi}vyJcdtyV2(dsEpT+ss)d7?eW>$ z{SM=#3JsIdHt-~)bTW5DS~`AH&D{}N#{+;tI7vqeixcGQIO3qnN&9#1y311r-d+tN z0vkD<^~+HPUKRr3KyCWMpx$I&? zTcBd)&0{n?mCqFtuso$rNqfw4CZ1VIwoIxV8uo^(j|R(2v-l$n+ozQ=az9&SxGMpt z4HYrmfe*L5E6id(gRzn7J0s1?dsn@}<8-euVn?qF)oY@2pFcP>&dOD>95hSBw?o2I z(wot<`pQV?m>Y8n>(VtN!@3w+*fh)Wmti!`X`1dUS3Fj~wB&N9adh>Un?RRQFJ@1| zZJa)zdO2C83*1ibPUza%d_-cm8YckT%d@RvJ}szzCAU8V45p6%>Qp(lRvLUlN})R@ zY{!b*+?A&&s}II>2cQ|Y%BoK#khS5)lCm6^iYJ5#e;3lNQ(t8rB(Yi~Dc6nZd8Q`1v_q{0nu74IpLCtyVx|?C&FXs0hB7qW2--av!F%%s9h9t4CqQx7-708 zG=2Br(|AQK7yS~JM5NjR;hpls{PH9&-N;=Do5>3?CEUr;vFweoIWnB6<8V*8WBP3K zj9JMzDGfPF>waR57jQ`!djXJ#z`lu7LTPa)sRsql1jgzZlY(mT7QTxr%2kiWpx=5+ zB=M5cJm@zW)Sekv#EFL3T2z8#_681k=2d7IKusjZ7!u&36F*KkesNC8M`_QJE&C;y zu6wE@d8#Cv9^V)Gmpa5dt19C49WG%5i&~{79HwRrUP+EI;mCR)0!op5F0)NRriC|y ze$$fQUbyikrV^rqCi$)S{igKB1d{eEx7(q{YpDRM*Vfd>l(0{Nx60FF10}=cNlz0{R0^d8#lT z_ak>zURylz7NIhX7Kmht$50x$qLqnhb+Uk#CPXTjJ~3}^TdoD6RvoF2;nCpGrL-g2 zBAWkM=(@^$#~713?n6AdD0gwg#^KjGt3(kh-K6r2-3LkIj%h|u9>pIiP_Ar058bh6ZUoNsT8XAd=;x&VbJsL2`u(WJkPx~zAb zkZQFZxry_|fmrcNf8!zJu6_$@&oHe=Pq9mQIwzJlfnzGK8j4a=}jOm{bDvkO~w=9OPJFT5VB#I*` z_gSnbtS$e>!nCWfuO7}8@Gr}lod-4+STnRt)g30FV1S1sL#y7gpaEu+vTLagmSNJz z)Gk_n-z7=B<|hU>3>7Li(>}KvWBn}HVvb0^Q0r-N-5RQPr_d6TA?y7muPpIQGF^vb z7~8C9;Ryvp!`5Ha-{P{uiWT1j;S!`!!HOkilMWRD&ibdPg~>G+38LbtR{VdPhuN&-$O@l8qM(oLEUq z$j=$_5DrRmCq#kJkD2yXlx!CTrog|638o;-hY^OfqQ;jgQi?Lh_eKv*Jl{stPn;ru zl<{gLN`deaYUDZ5@GbQ(cF zKek5=#tLj`rM9F!TDCt}e})-QxDzoZ-D>O6nif*+8* zw&)0NFj3@0{dgH)w!KbUWytQ1q@EV%|M)-zXaV#H3MVMNbwy8|q+Y0d{2!|H3}E>> zGkMFs)gk4`Tj*MvHGA*Y)$Jac?jlxSnaNZA`$6bKfJK{j#@~7@$Zo67GF7(bu2Wf| zYmBnhh^1(ilv9$;Gz(~JrB$bB@ss8zy@Lh~YKWWESC7cnwcu33Y7#tk9OQyMqgp5c zhgmvy01q*%_&S+$q7f^0Bj#UrhwgB_tzuO~CwxU&(u;G?b*Epx7Fl3q4UOQ-k} zLMnTAiYNpA+UEe!x<~A}|HEEgV z-ifPMA?@cbY6cF_p&LuS6HK0+dLJc{T#r_B0K05`@FAd_R+oHA9+RoCsVV4WqR~{> ztYu!(NQD$yH8%|y1fbV$CR{cdwQnM3|6|-3kMm^OX#V4=aCHd&RO~v?L)}jXJ(W=tidB}8)v6qwf7PjVadxq|N$S-L(se`S0QAE`K-{Ek9ez@*`nMaaT(>I0 zE_ORiJ-(3?fuo+Kj4yNGLg4#C=M!hDY@1|^8{sj0TJBL#yRO%eK|*J`= zLXcYD5nj`e9hLI`752|*9`E_?!pan5O(^F6cbkjICV6M$4F}CG0mfH}CTYVe07IQD zOlQ7b$3)|iw>!S?&LyIk52%H>UdBFoW%n7syjpbNb`fATz0yqQd$<;-gu`m2K{PVx zm?V&xKzF6#vw#+eIJ zBmZ!%sn_ZtecgA>xo*X~osF+j9;G^8_2s{&9;@@Fo{bJ($QZ79Sw+cs%pd#G;ZH<8SgN3wPC#gN#vwDI))X# z4l*oh1LJh##Z!Y-jQZ9C9|Y~n7WU-lm^HNG6_%0KR)+*Th3ke}_Ue|o4kJq z_@PLiTEhS{U7=ZdY}3LfEJsBfE^SoJQ76V?*8uZ+Ql5QTn>7tX?bQ=E8gH@^*&wwP zElV2P+JMKKz!mnkK4+@wJB?I$;q>!w((ga4e0|!sW-0XuCAP2E^Z<{jc=w_1rmK!< z3BDqgZ0iuyg#1??&sYBb;U?sN->kqt|H(Cjz{&nUsc%^slYvvfr~#Rpo6)#G;{Z?J z=s;G8Uivm^%}NkHw`bQ%6hnL`?~V<@T3Xa*GmeB=BShBMXIU8SBP11P3(!=|uR5Ox zZ4t@*AnP?z*j2Oblck@1)X$~3r6BKCxMb4#{y_kc&tCR(oI`KJ2LJ4~TH>DRrdpj2 z`6+gUC$3eueOzO2Q~>ErO&fA0h)|O?*!wc2q5h6;U%&tw6PEhLFX|nEQ8mt~*h?>gA z9&a<8d^0eJhLITfw%I8X-WVlFzu!GPMPvy6mJy5yVtTTtC$71`#66{;^SCqpuvno( zYQKvtjSVvjlmUxa)wEGghW@$RsY6W&=t~-QumjFH9#U&AI~o`(!wO~<3T_}+bxTk^ zK(|Zk1&|gXsmL-V5RY+f&ie_uvE~`za*1YMnDPja!kxnKobq5PL87@gQ~P{&-7`4g zSb9e}U|B%O{HT5rKSGnsGx?RY%~n&_5hHyWEEXun?fb_WvsVd<+Q%!8-=Lj9YZ4JvEnqV9na| zJ<26ungJebzaScnG~Udyrp4EWPTy=e-)`K1x%mIUlVW8PX?mh6G7yzt1oRtg+>%$i zNYFsn=aQu)!F)o{Ne4-3v=tQkr<Gnvzxrg4Jf3 z*>)!@-12QRRV-yKX7x;1QX;Vz!jfDP=hu$s*EV=6lQL4$ewp#kqd05aIAzAOXRBNl z$pR+AP}?1#Ojx*t4dU^ItO*k{i56wVYXhbGtjtEGrGhmZ3N&Y#(KQ^{!&rZsS4PCO zY|NxZ5{qQ2@X%R`#?~tYwj(pIVAJC}XC@qsQMzO%Y(OYZh$36&8^u6jTkM6c!d!OWD|Ao$>CT@M(_!nK{!ExS{VCvcfvWer_X%co9vQG3gqu5mX(;iuGhnJvGx|gg zKT;u%^=XP;Ul~5qjnUYc6X0sFoG{KX>#j2K2{<+3=5j`zuWC53FmbL|zZ|M?F$Sn; z+RK@n!m2CrXVzF^)YS)7v=EDPbv+Wdvm(#ahkXrS)$;%R`nZL(Ulz7WOXeTp?qDql zZ3}3xkwt}%SIbUIcIzwB_goex`#=Q>8P+#QYq_7M!_o=^>NVq|wPT+bax-)*vOBuf zk@0jlF|&u2zBg|Ku~x{E-X!wNaRZ#0kAXA+7qM@l>A_fWZH1zYyAi09thcvl5bwL| zixiQYkL5wlv5>(2cA9AB_{CH?p@c@H)2*`Ne-B@dZWSU1hWeLdJOV7ERe`%eLk4ijbzV=nm!$MZ{RbOJMtx`~{| zh*Yi|-6(+>6>=x0)I344uC%cS`&>0XhO>q3mf)?N&8{W9oUBIFk!#%FERI=IH9sLv zxokFV>X-^=EQn{Y=dM-&P(6d}pCsiJ;Ln^wB&d!NaCE==S9FgUw?9YDW00EJj7r@j zwKY5(T~96U&K*t3z5p9--n0;>p=fHvjB@hK-%&7;-UO-zV;;kpHNtW>CD@)0XP(;y zM2gwOT9b9*;tc~How}(hLDZTqQUh)(hgrl)BYsz2y5GiRHsw3_^rOD%Bea0{&Xi{3htPdcwJV|c#8qC+hRFy0W-r8qsBk`y81!5K9htvDzpuSY^!;tInG zLM_G`ujhg9fO1_{QgM`INm{u1Bu8@P$Rs6n4EPfv6ezuQQraZA*9hV%#^Hvxkp*!a zOjv1ZYPw>GiQ}0XQn@~d-Y)+^|8PPT7?l9xto-04UvW%KfRq4IxDt?wJ*A|*kRFd{ zt{OQllD}cbSpYQ;M(Lgga0oaU%x|s;Y%#KY1^pR`Ts4e9S(E%SphU{a8HBbPVw9mq z6y%_>Nh05sz^Fx_*E}$xMFBfG|3LvL7ZYlTK6FK5b1hoNS}mwvb|zAFW;_)Tv#L11 zQWWtkvRWi4z$i8rte^N~9}0TtzJVW1LhFP<6h>>2Av#iPlLC5-l?*jVTx&i~OxZLF zDr$9Q0w*;JXQ|TbG$(j{_snPjZRilNTuvV&jztd#BMl#XzGG%1(=aXMj~?MId(wguVPYJyvlgv>{$dIi^e{YFky{EG zxM8pyY|4%xQE0Y+D3v0T;!q<9bBtBSD#&OOE7plYvJ=vY&TtGR))R&wy_IpA$XJV- z&|G2^02x%9F21Ph{zp53 z&p_i>3tsW=-@_^eF9o+of;LA$m*uVT<06N&E`i?$y&|`B2un;bOYR?@gZnc-p(@q= z6rYrnf+$2i8dP@b*6cR> zwv0a;H59Q6qHJHQk)Ulrp_aEAto`l%?q`p0HpKIX+=@EgUu)M-mYEVZ+B%3KkdKwR zfVV4se!P|GAMO49*aQk;D6S$k*QhkgP8|{UawZO^gjDp@?J6)5vCkeCE+0#=oN1`5 zCDkFHxa{TMN;OKW#Hl z=lSV=9|B{_^?ps_?L220*YQq*C^_UM9n78P&-K6vx&+uG$nesjE;*#aefQjBU0Ee* zrKobD4RAZDcUZMAwElf`EQ^#^?JzM@lg;d?WO3&x!NMx4GIHHaagkpk+JH0+0P?OW zwrVO?(Xn~Qg*f7x%2Nk7+`LOQ8%w7-&y_mC{4(ES(=e*py4&cw?7lrDCxLRF8kz0u zc1V8=8g0JuQrgN`EtlfRhY6P8H5K63)#isKetNLue)>Kc8B0as0O}L(`9jZhmF;x< z6&lOdGD6(!LUfP4xTM<~SiAiVKnC!m3y(_=m~LA28(LBLRe$RI;`7c6Topr&cJrvo ziXD?e4>kB?R3QYp(lA<>rfUXh!*j_Xtv@Ga`h2{(K8Q1v8{Woq#avJve%nTD|Fj!Q zBCC+|0*SnQ`uIVYt$3L?)y3`0+^$V+U+0FtI_7X`l?%3)EfjOvKwInv$Z#?E6TIl5 z$gm_t+ZKk2x-?Jz@TA*byvt!gkzZ{q^0a^Si9a;aPc}+B&YYpHYg_q;qnbW$X?QTuyv|$>kXFx5T{?^6w*G0&2Fd!2m#JbL=sf8G6Lh`35`;w_#n%w{q#)9qKSG-!NY;ozDK1Qm?cM*MA`tt?YS028kf#gaS3et71AW`;{NQ_=l&_ zZPEdJcGR(m@?ZhfGTmIf!6*M9vAT<0o3i_Gq9#d~-N?1|+D67$N_p6W7&L}t-Wkp{ zT=a0UO*D>VE4!`%fJ|)pR;QMgk9*eP!};eB4g~(7J`UGC$T(v0c;rTh-fjThE4QZj z-L(8dmwvQT2UgDKIWbHKpiRccuD3k zPxe}~YijSlbJnHBE$IIq!GJkE9s=FDnv%{h$*&1z18N_ey>V+G+lSQNB~I8}SgO!k z6_Y^{{*$&Auxp+u0}H!#J+#Xj%RK2q1>Sz|P+#X2vJ*XjUE98mN@TD6*HY_vzOV<> z^ZKmUz-IadHPC=$(D!h#Kl!0h)Io1M`*m~1nv1?ax;=c+S(!QfL91&X{rdBT=b_f! zjZc4G*Jt37xAqfhS4h27m8x3Oty{__>ruc=c1A`Tz{H_+XY?FPV%>IK9Hdi&$#niu zJv{Fs7M8pn{PF9BHqqx?I{QYXuH|+s<_b}sHepb6X10zUbXVH zU$|54hFx0a^4!frjr8;vcE)5{zh7R3Ym1=e)*);|EAheO;S&t{d-mK$S2c=WN=;GE z?DOLXU?<^#;dv&TyU_2zZ_n?@uM|*j_2Qf@y>d%53_2YU1L4;j&~j`2LlXsILRaq- zNaOq$cgasy&cu5-Nm^D$4kk8Mc4js@Mpg<&MhYqz1{qr;VSOiKLP}vSW=3Xa z#{X1Fwg86n0cK7<1%~^D`4fgg)ZD?*iIAP?KNM{&Ol-+atlvuzalKOgjA%pGA2bdd z2y<)<=3H3Z93sJvlFB?M2!p{WX7O`Hd0(9pYmja5H}^j7?k`(Uf+c#;>PXaBF<>Q- zqLkA-b|6%4;@^{fBm{j9l8kw?#;`q2<;R0W7|BfOt1C)EMzE+DVkpEA%B@mS^(UXE z#U_@+zcz`pwy;eAN~hEDt(Cs!Bcr78B`1~Bu_uO*vTTC9hu7v1xQAp^j%HL+s1wwk zm0$FptKK6u&x206HqKQ1n=U;3O^tP1gQqS%9lq|scm4tbAvHW(KCvxqxbv(^_vuq` zm#ZRhznI_#W$WIN)~M*bJL#1fKdTwx`WbzeP6$v`>s%eVcGp{ySG->>$U=Vx(OD>o z-276I_?Zx9PuWFab?FtHgr)hG7yI#i-nYu%%2KH0enmFr`C>cU)O7pbcZZEJ`34k@ z1fEG7hC#{P!u?ev= z{t{+oV-sd&5)@?T_{IKAL0LhmG2g%jcrW7voEo;|781@te7m_+X_$9 zeduX(bCt7+!X-m)y*6{eWp5yK-)qgDd6iUlk0aD@I24uQTS3U{FKn*Jc@U!Ntki%W z8!k(THuqGZqSbB9YY1Wo56el03Dkpu)9tiqF0^Yb5n1d+14EHFdwM#^&OYieHQ`~I zcAUy`KXxXMAAQd@X12x#j2jWK?@SuirApWPiOvIxW~~rh1H5-?jDvN`S2)@a1eTa( zu2rr0Im9PG!FNC*(*#(|fPvLOH3V_hVAp!NYJOM&;r5c(U_1HB&VV=h+RT7@^s3ar zTS0o~5WxB3>rr5VwfERCf<5|n>hW^`IcdHLY%yE9oHD^Xc6$l}_WxLUV{(8^1-RS& zOdn0;sR6bE2HhcT0kUC@!CHZO?M32%!sz+1BInP5^w10G(YFJO@Mp3^6HhhV;ehIe zmItHgrLx13_GQ_j<$xsbb!P;p_YL1cNr6c2g-Zcf?ZIn-sq%BT!`}dc-63xQ$LO`T zL!=F8*Bf9?-zqHzc!s=bL$doL)ZoJf^zXp6fZ1Q53X9r;$>^Qi$xk}y+YCNNXa(e^x<|IoWf%P+>_9Xz2Dm1FV7!d&rOhExpHM#yItc z!F1&e)U#KR5do)&>i6k4PcZHZP?K-v_r>WE5KKk@ z4c6cSSs2HX#txu5l4Amdy(mp&@4Yo_Glu}O7Of-g=M42gG9clHUuTJCR$k|2U&=o~>Jc3ui4JH(+3>kUFE{K^*$IPVJa0ER)^UyQUfwO>{&OqY4_O~|-}OTtQ+3$oIfRrA%L=b@wGe3S43{LmqPPUqPD zCI_6ne@r6GNJ#siHMIf#Kb2j1I8=YzpD~-AA#2tYvS!PcF;bDjNXE|C*CK1SW*9`t z5?RJJV*354(R*FWs6)_95Y%0Dit-edA`_ASiZLtjeX$!MBCdT3Kf)m~qaGBTSQUkdU9@l9!Gl!SYJ)k~#n67FV1A+J z&F@E~`HR9HR~2FM7L6N|qv!0rMC%{~aSgr7!Z9|&RsW~_-c=4S!WJuiNRbrvikWGHECYu8H8)M)2k_&w) zLi(QD%EtMayg{a4`&VLqYOcFge zl3u~BO1~{~V%>7%`7n_>wJwuEIY42y+y~alpGfXH`>sc-xzT6PzB{(PK`8Hk|0>3o5yV6mfdY#FwQGulgI%-g{Nx2+$9##b?J) zKOkrWbtkS0M8!(Vj;~I2sVeLa3Nb_^c&V~~o@Ci;P~6CUU0xC*A|8^&FFSwtNSqh^ zZmugx#(rMhS-fsaH5hM@V9fd1ZD}?MuC4EjO)U|T`|-3K{#o8IW3DUvEjn}{gD90y zb*^M0OTdK7M{2~>{MsijgTHU5m`GmIPns?o{;B$ROkh_d{Ig3T_$Q2-mPOWa-WUic^vxiYj3)&J zWoLj&Q?}X_N!^%}OU< zxJz2YhwN&Vu^%=8-q*aJmnExpsU|dFADfI{^NqLSHnvA;*I7Gj>4e^P{9ESMwOy|b zRodyq<;WJ*0@r*ua(NFg!;rRhK!I3^_T|#18!4wKe{@vM1RtTmHaL4-5IwoGYL&_+B0$xf{2_HCe&Ue@<1 z)SgZil4irl$MmL#?=obfo!*Zyj&ZO9l$nY28$%+R1;W|`bzh+!gq3*zW@~{i(y|HPVAlZGEw@;`+K`T)s>1M16wpYAG(p1MzU6G!H3 za77Pd7MTcAo&{o|pS&9Pyo3kY>Xi-lz)|UXq%1^{gWG)SnJ=(ZZM|i1TDlX-vAz7L z7OBjBKcN>+nqIbqbx1K1gw!HB+hyYy6HNpOZ40)Ke$}R9&FODG)rg5$ty&~~f=`l$ zxp_(vqhZ@70a1T7aow`(Rn1oZJyTf5=XaJ5h%j8&i-A1tbH{G)b);$MK={wj=Bwy! zx_(_rKdG?KP}g6b7wL0-x0)TLP$BP|CTF|TPZ9_xiNTo3RBuHK1Mc zb;ArJG45EBs4n6LU<4o1XJb-ljKRC*jt{MXbLA(FnbltZVN;C^Z7RXmjihS(aLUCC zj3Loe7{(Qd1m>k%Xsp)dIlHy9FtYds=#Fj3Jm2_&7(Xn0ZSb)PeCcaYrNhmw?tr0J zv+YZ@E@I$tHUhvL=_eO1oKwH@ZrA7g;~C~`Y~4x+>Cvwc4Ob!u149i`B{R(EM>jRUX0MOV5_ z-*Z%YRl;+nTFldpP12HaVm$4$o96bA(d9+yQ ztt(_E0MMq0)N-&|?`Rv3$7OgzDsJz9hH8?mcG^V?0a>>Vv(f(77gF7@8^GWs1_yix z$#*u3nP!=6^U=hcZ^fL#%ku}YbR0A;thGZ8J}9-I*zw5G;Tb9O$6j-|6!1aWP3!8D z8lKKu&%AIoGT}9CuFY+_=rz`Xh$;uyd*%>ziwn0F6q=ly2S>d(npCJ!Aml<)8KduRO{X+5}Yx;}a#546-6plXd zh+g%C+5s&oYX01lfGqjlw8vVPnVwi9X$bAVB?fbzQBWT)YcfCOvVO(+1=1I_@k}d3 zV9AFfTno;~5CfV$=QEz~OSG{i>Kv2I(%hgTwXGP4|*4F0UnC|pjl?dgW) zYdPI0)1IeZEX@=`rfW(<4qd zmDMJ1n=3Q*`xuFz_lOnnrt+%Eq4YNe5vAJ_(%ghInE_Lnd}xDPIKpa5%%; z`Er@lW5MLo*#tqt=s@d5*ZonyA-Ij3ohwVfkEgZ%yp8_+>q|ol8ZY7nytALjXEwyY zrT0^Iek|BAifV~JP;-wTSL$oG4K!!_<-KI9KRq71pnI50!|;|qfAB=}#YMM$)5A8c zf!85lHVXaF>7(1621BUYkaru7*ybYk`bzQ0CuPKoe*51G%wXx4pX?JGJ@?n{nzJ_h zB-nl4rMUIAivbXnb+;ahE|Icxb~{Gv7ozjReA@qVFYw86?}Nz`F%ExQY-zwGVN>EVD-P$j$Wou>n`|To|i=v_x*h27z;nj0M z82RGns^jf7lUf$m=p)R-Fw^=n%QD@CgN#Y@ou9a{g-)8qw!N!2wLN3#{)CeUj1#A30oWe-asV0P?fr$=A8Zf(ZO&q z<_XUwQy+uX*N-NLx6zCYKa)NU_oJ<*Ur5p{dymm?Dr<|amA0yOY_Lvb^K`qr4SzF7 zAW9^a(V;f8GalRO8A?}%W%kEtsXQiIUb=`?bZ;Aa*LIf5{_YyZN!Csf#VvZM!cE=thev0B8|Y+QX4-pAa25)dpFxqT6NL{mmCm%n-{ zkXqF28mG=TbY-)ABisGKUer5gF~7K%y5%KYPuZmx##l3MZ&j@y?|ShqaF50W6Ni~a z%gXSvf%l(Ov0=E!SPkI^ZA7Q|loOP8y7iVe`QiYq(Pnn@29`F(9uo6FHu9(XsR>9t z8F9fg4jWOV6@u5nam*ek@ErfJpz%Z4`muW`<2E>z6nrWVz?O#9D*bxTpDT~yB}EgZ zIvtS{(hQdD_dEHEPPOaz+kOnSG6x;xBHe(2iyR}v74;1wAJ3p9ZOS|r2x$@KlOF6{L%^ewTNRy&qa?x(Jmuo_L8T!AB_G4*G?^2b{I0`|CJYp`fN$}no zMtO;1T$qijU*Es5uTiIK|hu_$oq#TxF)44(O}wSF=T;f`aVf?pe&XC1CfM) z#M09&{#bwzIOEcl&c*5d%$*62(u@R7&CA0H zghXkur-*n!?0b0dsX=SpCpZt!;3I>7=0n;rYK>qsb{#js@awH-LS$LCZDmn0yf%?*c{1Qo)Qd*)% zNN3+XakcR1R-EUK+DJq!I3u2c5MkKMg?U6%lL4ud@8$-J>HJ&02m8HuH%0G$vW^Er zpLdX@OqZlw7Eh)eww+mS#UeEIbT!?NUm}XwZyTEsPU6_SH^NlsozmI2(wR2ff1M8& zyOcy~Tw#qa!+y zyz@wr`$PbpUvYav<;4I#NLf#ikDj&_Yy{7Skr)GC#Ip}Dwcy@z27{vbXpjTJdbV}8 zr9?z6%L-H$hR$bt1Uz)^m$a0v$Z!+p$|BP7#>pK7nr-rW*6A$ z6$Rw*Z7C!?5B!qsbpiMhN174J2J?}L&2QJ1l!F#;U<^N| z<<9V0fnQUE{rTjgBQOG!Fj>HCj;m05k_-ACRaHUnz9e%G)<1;GoBX9i$yURirN?(R zTV9A1=hEo^AIjS^*~&uZ@h-{!)YHkP&}7XHB?FCXuU%gFv)=pHh#OnKIA(MHJ$9L* z#G?`47ynQl#B7}g3JFtg3vxl0=2H3p_cyk_iK!qizFeJm*vLQl_P@(h~ zmo9C(j{&d;6M7Ty$3$7pG81GK#;)?O80!dN#8?8vI4+?82!A4zDxQ}Ur$!X61pS~u zYvH~Oxq7fAusss`#btF~(q6Bk*|EyYhh+(>L*(;?OprqcU|W<>zi zf7T^71^z#TD3`4##cNkev1)Sbc4By}Qq? zb-uxGRz8qNQ|{Uk|F+9eika^JQ?RmV4qyMC)~S|B;hOspG)A!8g%`) z?tce8??1oYqDe$c6Ejub108@2-f;}f_8=Ks5CQ}ps)n9&g2>};5pdxo90LjWq6Zi7 z0yo->D{sN*5U1g*&y8$?yv_gBvmd^oHE_#X>S3 zf`{;6ZF(O?;KCK4Xf()3o#9q6@FanAT~-8TbqZC-vo0zC4CVm7QwQ?cMsK-ob%7Sq zjxP*4PCJsBWrzvN8qB3+rcz6$N5~FE!tW_7gQVPunpZ5qbAiCeWZdOq+=st#M)|l; zc{4&{I;T?)nM$3Qq)|-LnM~5y92V(VRt3GcgBXVWL9x^MkW2yT|Fx22Ut)4 z(XWaIM~cnc{lf8YUmhNqB?vHAkCz z^zFwut-i#*f1LKJMCIz8J9Q<+mfjT;1cyzOtpGR;Ft@AwN<4*F}{k^r-`b@=8ZZwt2hzGpV5!iFngYb#g1PuvXiWAz0p1LCDX2R{l?@n6X~iL5 z_5A}*?PQ*pku%pocfWLtw4uX_6?#EEM9!s0`9GmT$Z>nOoTVq3Ztwn|fcnQd+W76G zb&D(2<-X6HDpm&1)29 b(|)p Fu(.)53 b(This)150 1504 y(implicit)41 +(for)h Ft(2>&1)29 b(|)p Fu(.)53 b(This)150 1552 y(implicit)41 b(redirection)f(of)g(the)g(standard)f(error)g(to)h(the)g(standard)f -(output)g(is)h(p)s(erformed)e(after)j(an)m(y)150 1613 +(output)g(is)h(p)s(erformed)e(after)j(an)m(y)150 1661 y(redirections)31 b(sp)s(eci\014ed)f(b)m(y)g Fr(command1)p -Fu(.)275 1741 y(The)36 b(reserv)m(ed)g(w)m(ord)g Ft(time)g +Fu(.)275 1801 y(The)36 b(reserv)m(ed)g(w)m(ord)g Ft(time)g Fu(causes)h(timing)g(statistics)h(to)f(b)s(e)f(prin)m(ted)g(for)g(the)h -(pip)s(eline)f(once)h(it)150 1850 y(\014nishes.)51 b(The)34 +(pip)s(eline)f(once)h(it)150 1910 y(\014nishes.)51 b(The)34 b(statistics)i(curren)m(tly)e(consist)h(of)f(elapsed)h(\(w)m(all-clo)s -(c)m(k\))i(time)e(and)f(user)f(and)h(system)150 1960 +(c)m(k\))i(time)e(and)f(user)f(and)h(system)150 2020 y(time)e(consumed)e(b)m(y)h(the)g(command's)g(execution.)44 b(The)31 b Ft(-p)f Fu(option)i(c)m(hanges)g(the)f(output)g(format)g(to) -150 2069 y(that)j(sp)s(eci\014ed)e(b)m(y)h Fm(posix)p +150 2130 y(that)j(sp)s(eci\014ed)e(b)m(y)h Fm(posix)p Fu(.)49 b(When)33 b(the)g(shell)g(is)h(in)e Fm(posix)h Fu(mo)s(de)g(\(see)h(Section)g(6.11)g([Bash)g(POSIX)150 -2179 y(Mo)s(de],)j(page)e(106\),)j(it)e(do)s(es)e(not)i(recognize)g +2239 y(Mo)s(de],)j(page)e(106\),)j(it)e(do)s(es)e(not)i(recognize)g Ft(time)e Fu(as)h(a)h(reserv)m(ed)f(w)m(ord)f(if)h(the)g(next)g(tok)m -(en)h(b)s(egins)150 2289 y(with)d(a)g(`)p Ft(-)p Fu('.)49 +(en)h(b)s(egins)150 2349 y(with)d(a)g(`)p Ft(-)p Fu('.)49 b(The)33 b Ft(TIMEFORMAT)d Fu(v)-5 b(ariable)34 b(ma)m(y)g(b)s(e)f(set) g(to)h(a)g(format)f(string)g(that)h(sp)s(eci\014es)f(ho)m(w)g(the)150 -2398 y(timing)38 b(information)g(should)e(b)s(e)h(displa)m(y)m(ed.)62 +2458 y(timing)38 b(information)g(should)e(b)s(e)h(displa)m(y)m(ed.)62 b(See)38 b(Section)g(5.2)g([Bash)g(V)-8 b(ariables],)41 -b(page)d(78,)i(for)e(a)150 2508 y(description)27 b(of)g(the)h(a)m(v)-5 +b(page)d(78,)i(for)e(a)150 2568 y(description)27 b(of)g(the)h(a)m(v)-5 b(ailable)29 b(formats.)40 b(The)26 b(use)h(of)g Ft(time)f Fu(as)i(a)f(reserv)m(ed)g(w)m(ord)g(p)s(ermits)f(the)h(timing)150 -2617 y(of)38 b(shell)g(builtins,)i(shell)e(functions,)i(and)d(pip)s +2677 y(of)38 b(shell)g(builtins,)i(shell)e(functions,)i(and)d(pip)s (elines.)63 b(An)38 b(external)h Ft(time)e Fu(command)h(cannot)g(time) -150 2727 y(these)31 b(easily)-8 b(.)275 2854 y(When)26 +150 2787 y(these)31 b(easily)-8 b(.)275 2927 y(When)26 b(the)h(shell)g(is)g(in)g Fm(posix)f Fu(mo)s(de)g(\(see)i(Section)f (6.11)i([Bash)e(POSIX)f(Mo)s(de],)i(page)g(106\),)h Ft(time)150 -2964 y Fu(ma)m(y)d(b)s(e)f(follo)m(w)m(ed)j(b)m(y)d(a)h(newline.)39 +3036 y Fu(ma)m(y)d(b)s(e)f(follo)m(w)m(ed)j(b)m(y)d(a)h(newline.)39 b(In)25 b(this)h(case,)i(the)d(shell)h(displa)m(ys)g(the)g(total)h -(user)e(and)g(system)h(time)150 3073 y(consumed)33 b(b)m(y)h(the)h +(user)e(and)g(system)h(time)150 3146 y(consumed)33 b(b)m(y)h(the)h (shell)f(and)f(its)i(c)m(hildren.)51 b(The)34 b Ft(TIMEFORMAT)d Fu(v)-5 b(ariable)35 b(ma)m(y)g(b)s(e)e(used)g(to)i(sp)s(ecify)150 -3183 y(the)c(format)f(of)h(the)f(time)h(information.)275 -3311 y(If)36 b(the)h(pip)s(eline)g(is)g(not)g(executed)h(async)m +3255 y(the)c(format)f(of)h(the)f(time)h(information.)275 +3395 y(If)36 b(the)h(pip)s(eline)g(is)g(not)g(executed)h(async)m (hronously)f(\(see)h(Section)g(3.2.4)g([Lists],)i(page)e(10\),)i(the) -150 3420 y(shell)31 b(w)m(aits)g(for)f(all)h(commands)f(in)g(the)h(pip) -s(eline)f(to)h(complete.)275 3548 y(Eac)m(h)e(command)g(in)g(a)g(pip)s -(eline)g(is)g(executed)h(in)e(its)i(o)m(wn)f Fr(subshell)p -Fu(,)f(whic)m(h)h(is)g(a)g(separate)h(pro)s(cess)150 -3657 y(\(see)g(Section)g(3.7.3)h([Command)e(Execution)h(En)m(vironmen)m -(t],)g(page)g(43\).)41 b(If)29 b(the)g Ft(lastpipe)e -Fu(option)j(is)150 3767 y(enabled)35 b(using)g(the)g -Ft(shopt)f Fu(builtin)g(\(see)i(Section)g(4.3.2)h([The)e(Shopt)f -(Builtin],)j(page)f(71\),)i(the)d(last)150 3876 y(elemen)m(t)d(of)e(a)h -(pip)s(eline)f(ma)m(y)h(b)s(e)f(run)f(b)m(y)h(the)h(shell)f(pro)s(cess) -g(when)f(job)h(con)m(trol)i(is)f(not)f(activ)m(e.)275 -4004 y(The)24 b(exit)i(status)f(of)h(a)f(pip)s(eline)g(is)g(the)g(exit) -h(status)f(of)h(the)f(last)h(command)f(in)f(the)i(pip)s(eline,)g -(unless)150 4113 y(the)31 b Ft(pipefail)d Fu(option)j(is)g(enabled)f -(\(see)i(Section)f(4.3.1)i([The)d(Set)h(Builtin],)g(page)h(67\).)42 -b(If)30 b Ft(pipefail)150 4223 y Fu(is)f(enabled,)g(the)f(pip)s -(eline's)g(return)g(status)h(is)f(the)h(v)-5 b(alue)29 -b(of)f(the)h(last)g(\(righ)m(tmost\))i(command)d(to)h(exit)150 -4333 y(with)34 b(a)h(non-zero)g(status,)i(or)d(zero)i(if)e(all)i -(commands)e(exit)h(successfully)-8 b(.)54 b(If)34 b(the)h(reserv)m(ed)g -(w)m(ord)f(`)p Ft(!)p Fu(')150 4442 y(precedes)e(the)f(pip)s(eline,)h -(the)f(exit)i(status)f(is)f(the)h(logical)i(negation)f(of)e(the)h(exit) -g(status)g(as)g(describ)s(ed)150 4552 y(ab)s(o)m(v)m(e.)63 -b(The)38 b(shell)f(w)m(aits)i(for)e(all)i(commands)e(in)g(the)h(pip)s -(eline)f(to)h(terminate)h(b)s(efore)e(returning)g(a)150 -4661 y(v)-5 b(alue.)150 4846 y Fk(3.2.4)63 b(Lists)41 -b(of)h(Commands)150 4993 y Fu(A)37 b Ft(list)e Fu(is)i(a)g(sequence)g -(of)g(one)g(or)f(more)h(pip)s(elines)f(separated)h(b)m(y)g(one)g(of)f -(the)h(op)s(erators)g(`)p Ft(;)p Fu(',)i(`)p Ft(&)p Fu(',)150 -5103 y(`)p Ft(&&)p Fu(',)31 b(or)f(`)p Ft(||)p Fu(',)g(and)g -(optionally)i(terminated)f(b)m(y)f(one)h(of)f(`)p Ft(;)p -Fu(',)h(`)p Ft(&)p Fu(',)g(or)f(a)h Ft(newline)p Fu(.)275 -5230 y(Of)23 b(these)h(list)g(op)s(erators,)i(`)p Ft(&&)p -Fu(')d(and)g(`)p Ft(||)p Fu(')h(ha)m(v)m(e)h(equal)f(precedence,)i -(follo)m(w)m(ed)f(b)m(y)f(`)p Ft(;)p Fu(')g(and)f(`)p -Ft(&)p Fu(',)i(whic)m(h)150 5340 y(ha)m(v)m(e)32 b(equal)e(precedence.) -p eop end +150 3504 y(shell)31 b(w)m(aits)g(for)f(all)h(commands)f(in)g(the)h(pip) +s(eline)f(to)h(complete.)275 3644 y(Eac)m(h)d(command)g(in)f(a)i(m)m +(ulti-command)f(pip)s(eline,)h(where)e(pip)s(es)g(are)h(created,)i(is)e +(executed)h(in)f(its)150 3753 y(o)m(wn)h Fr(subshell)p +Fu(,)f(whic)m(h)h(is)g(a)g(separate)h(pro)s(cess)e(\(see)i(Section)g +(3.7.3)g([Command)f(Execution)g(En)m(viron-)150 3863 +y(men)m(t],)d(page)e(43\).)40 b(If)23 b(the)h Ft(lastpipe)d +Fu(option)j(is)g(enabled)g(using)f(the)h Ft(shopt)e Fu(builtin)h(\(see) +i(Section)f(4.3.2)150 3973 y([The)i(Shopt)f(Builtin],)i(page)g(71\),)h +(the)e(last)h(elemen)m(t)g(of)f(a)g(pip)s(eline)g(ma)m(y)g(b)s(e)f(run) +g(b)m(y)g(the)h(shell)g(pro)s(cess)150 4082 y(when)j(job)h(con)m(trol)i +(is)f(not)f(activ)m(e.)275 4222 y(The)24 b(exit)i(status)f(of)h(a)f +(pip)s(eline)g(is)g(the)g(exit)h(status)f(of)h(the)f(last)h(command)f +(in)f(the)i(pip)s(eline,)g(unless)150 4331 y(the)31 b +Ft(pipefail)d Fu(option)j(is)g(enabled)f(\(see)i(Section)f(4.3.1)i +([The)d(Set)h(Builtin],)g(page)h(67\).)42 b(If)30 b Ft(pipefail)150 +4441 y Fu(is)f(enabled,)g(the)f(pip)s(eline's)g(return)g(status)h(is)f +(the)h(v)-5 b(alue)29 b(of)f(the)h(last)g(\(righ)m(tmost\))i(command)d +(to)h(exit)150 4550 y(with)34 b(a)h(non-zero)g(status,)i(or)d(zero)i +(if)e(all)i(commands)e(exit)h(successfully)-8 b(.)54 +b(If)34 b(the)h(reserv)m(ed)g(w)m(ord)f(`)p Ft(!)p Fu(')150 +4660 y(precedes)e(the)f(pip)s(eline,)h(the)f(exit)i(status)f(is)f(the)h +(logical)i(negation)f(of)e(the)h(exit)g(status)g(as)g(describ)s(ed)150 +4770 y(ab)s(o)m(v)m(e.)63 b(The)38 b(shell)f(w)m(aits)i(for)e(all)i +(commands)e(in)g(the)h(pip)s(eline)f(to)h(terminate)h(b)s(efore)e +(returning)g(a)150 4879 y(v)-5 b(alue.)150 5083 y Fk(3.2.4)63 +b(Lists)41 b(of)h(Commands)150 5230 y Fu(A)37 b Ft(list)e +Fu(is)i(a)g(sequence)g(of)g(one)g(or)f(more)h(pip)s(elines)f(separated) +h(b)m(y)g(one)g(of)f(the)h(op)s(erators)g(`)p Ft(;)p +Fu(',)i(`)p Ft(&)p Fu(',)150 5340 y(`)p Ft(&&)p Fu(',)31 +b(or)f(`)p Ft(||)p Fu(',)g(and)g(optionally)i(terminated)f(b)m(y)f(one) +h(of)f(`)p Ft(;)p Fu(',)h(`)p Ft(&)p Fu(',)g(or)f(a)h +Ft(newline)p Fu(.)p eop end %%Page: 11 17 TeXDict begin 11 16 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(11)275 299 -y(A)29 b(sequence)h(of)g(one)g(or)g(more)g(newlines)f(ma)m(y)h(app)s -(ear)f(in)h(a)g Ft(list)e Fu(to)j(delimit)f(commands,)g(equiv-)150 -408 y(alen)m(t)i(to)f(a)g(semicolon.)275 548 y(If)c(a)h(command)f(is)h -(terminated)g(b)m(y)g(the)g(con)m(trol)h(op)s(erator)f(`)p +y(Of)23 b(these)h(list)g(op)s(erators,)i(`)p Ft(&&)p +Fu(')d(and)g(`)p Ft(||)p Fu(')h(ha)m(v)m(e)h(equal)f(precedence,)i +(follo)m(w)m(ed)f(b)m(y)f(`)p Ft(;)p Fu(')g(and)f(`)p +Ft(&)p Fu(',)i(whic)m(h)150 408 y(ha)m(v)m(e)32 b(equal)e(precedence.) +275 536 y(A)f(sequence)h(of)g(one)g(or)g(more)g(newlines)f(ma)m(y)h +(app)s(ear)f(in)h(a)g Ft(list)e Fu(to)j(delimit)f(commands,)g(equiv-) +150 646 y(alen)m(t)i(to)f(a)g(semicolon.)275 773 y(If)c(a)h(command)f +(is)h(terminated)g(b)m(y)g(the)g(con)m(trol)h(op)s(erator)f(`)p Ft(&)p Fu(',)h(the)e(shell)h(executes)h(the)f(command)150 -658 y(async)m(hronously)g(in)h(a)g(subshell.)39 b(This)28 +883 y(async)m(hronously)g(in)h(a)g(subshell.)39 b(This)28 b(is)h(kno)m(wn)f(as)h(executing)h(the)f(command)g(in)f(the)h -Fr(bac)m(kground)p Fu(,)150 767 y(and)42 b(these)i(are)f(referred)g(to) +Fr(bac)m(kground)p Fu(,)150 992 y(and)42 b(these)i(are)f(referred)g(to) g(as)h Fr(async)m(hronous)i Fu(commands.)78 b(The)43 -b(shell)g(do)s(es)g(not)g(w)m(ait)h(for)f(the)150 877 +b(shell)g(do)s(es)g(not)g(w)m(ait)h(for)f(the)150 1102 y(command)34 b(to)h(\014nish,)f(and)f(the)h(return)f(status)i(is)f(0)g (\(true\).)53 b(When)34 b(job)g(con)m(trol)h(is)f(not)h(activ)m(e)h -(\(see)150 986 y(Chapter)27 b(7)h([Job)f(Con)m(trol],)i(page)g(113\),)h -(the)d(standard)g(input)f(for)i(async)m(hronous)f(commands,)h(in)f(the) -150 1096 y(absence)k(of)f(an)m(y)h(explicit)h(redirections,)f(is)f -(redirected)h(from)f Ft(/dev/null)p Fu(.)275 1236 y(Commands)19 +(\(see)150 1211 y(Chapter)27 b(7)h([Job)f(Con)m(trol],)i(page)g(113\),) +h(the)d(standard)g(input)f(for)i(async)m(hronous)f(commands,)h(in)f +(the)150 1321 y(absence)k(of)f(an)m(y)h(explicit)h(redirections,)f(is)f +(redirected)h(from)f Ft(/dev/null)p Fu(.)275 1448 y(Commands)19 b(separated)j(b)m(y)f(a)g(`)p Ft(;)p Fu(')g(are)h(executed)g(sequen)m (tially;)k(the)21 b(shell)g(w)m(aits)h(for)f(eac)m(h)h(command)150 -1345 y(to)31 b(terminate)h(in)e(turn.)39 b(The)30 b(return)f(status)i +1558 y(to)31 b(terminate)h(in)e(turn.)39 b(The)30 b(return)f(status)i (is)f(the)h(exit)g(status)g(of)g(the)f(last)h(command)f(executed.)275 -1485 y Fm(and)g Fu(and)h Fm(or)g Fu(lists)h(are)g(sequences)f(of)h(one) +1685 y Fm(and)g Fu(and)h Fm(or)g Fu(lists)h(are)g(sequences)f(of)h(one) g(or)f(more)h(pip)s(elines)e(separated)i(b)m(y)g(the)f(con)m(trol)i(op) -s(er-)150 1594 y(ators)e(`)p Ft(&&)p Fu(')f(and)g(`)p +s(er-)150 1795 y(ators)e(`)p Ft(&&)p Fu(')f(and)g(`)p Ft(||)p Fu(',)h(resp)s(ectiv)m(ely)-8 b(.)42 b Fm(and)30 b Fu(and)f Fm(or)h Fu(lists)h(are)g(executed)g(with)f(left)h(asso)s -(ciativit)m(y)-8 b(.)275 1734 y(An)30 b Fm(and)f Fu(list)i(has)f(the)h -(form)390 1874 y Fj(command1)46 b Ft(&&)h Fj(command2)150 -2013 y Fr(command2)38 b Fu(is)30 b(executed)i(if,)e(and)g(only)g(if,)h +(ciativit)m(y)-8 b(.)275 1923 y(An)30 b Fm(and)f Fu(list)i(has)f(the)h +(form)390 2050 y Fj(command1)46 b Ft(&&)h Fj(command2)150 +2178 y Fr(command2)38 b Fu(is)30 b(executed)i(if,)e(and)g(only)g(if,)h Fr(command1)38 b Fu(returns)29 b(an)h(exit)h(status)g(of)g(zero)g -(\(success\).)275 2153 y(An)f Fm(or)f Fu(list)i(has)f(the)h(form)390 -2293 y Fj(command1)46 b Ft(||)h Fj(command2)150 2432 +(\(success\).)275 2305 y(An)f Fm(or)f Fu(list)i(has)f(the)h(form)390 +2432 y Fj(command1)46 b Ft(||)h Fj(command2)150 2560 y Fr(command2)38 b Fu(is)30 b(executed)i(if,)e(and)g(only)g(if,)h Fr(command1)38 b Fu(returns)29 b(a)i(non-zero)g(exit)g(status.)275 -2572 y(The)h(return)g(status)i(of)f Fm(and)f Fu(and)h +2687 y(The)h(return)g(status)i(of)f Fm(and)f Fu(and)h Fm(or)f Fu(lists)i(is)f(the)g(exit)h(status)g(of)f(the)g(last)h -(command)f(executed)150 2681 y(in)d(the)h(list.)150 2886 -y Fk(3.2.5)63 b(Comp)s(ound)42 b(Commands)150 3033 y +(command)f(executed)150 2797 y(in)d(the)h(list.)150 2982 +y Fk(3.2.5)63 b(Comp)s(ound)42 b(Commands)150 3129 y Fu(Comp)s(ound)29 b(commands)h(are)i(the)f(shell)g(programming)f (language)j(constructs.)42 b(Eac)m(h)32 b(construct)f(b)s(e-)150 -3142 y(gins)25 b(with)f(a)i(reserv)m(ed)f(w)m(ord)f(or)h(con)m(trol)h +3239 y(gins)25 b(with)f(a)i(reserv)m(ed)f(w)m(ord)f(or)h(con)m(trol)h (op)s(erator)f(and)g(is)g(terminated)g(b)m(y)g(a)g(corresp)s(onding)f -(reserv)m(ed)150 3252 y(w)m(ord)i(or)g(op)s(erator.)40 +(reserv)m(ed)150 3348 y(w)m(ord)i(or)g(op)s(erator.)40 b(An)m(y)26 b(redirections)g(\(see)i(Section)f(3.6)g([Redirections],)h -(page)f(38\))h(asso)s(ciated)f(with)150 3361 y(a)k(comp)s(ound)f +(page)f(38\))h(asso)s(ciated)f(with)150 3458 y(a)k(comp)s(ound)f (command)h(apply)f(to)i(all)g(commands)f(within)f(that)i(comp)s(ound)d -(command)i(unless)f(ex-)150 3471 y(plicitly)i(o)m(v)m(erridden.)275 -3611 y(In)20 b(most)h(cases)g(a)g(list)h(of)f(commands)f(in)g(a)h(comp) +(command)i(unless)f(ex-)150 3568 y(plicitly)i(o)m(v)m(erridden.)275 +3695 y(In)20 b(most)h(cases)g(a)g(list)h(of)f(commands)f(in)g(a)h(comp) s(ound)f(command's)g(description)h(ma)m(y)g(b)s(e)f(separated)150 -3720 y(from)30 b(the)h(rest)g(of)g(the)g(command)g(b)m(y)f(one)h(or)g +3805 y(from)30 b(the)h(rest)g(of)g(the)g(command)g(b)m(y)f(one)h(or)g (more)g(newlines,)g(and)f(ma)m(y)i(b)s(e)e(follo)m(w)m(ed)i(b)m(y)f(a)g -(newline)150 3830 y(in)f(place)h(of)g(a)g(semicolon.)275 -3969 y(Bash)45 b(pro)m(vides)h(lo)s(oping)g(constructs,)j(conditional)e +(newline)150 3914 y(in)f(place)h(of)g(a)g(semicolon.)275 +4042 y(Bash)45 b(pro)m(vides)h(lo)s(oping)g(constructs,)j(conditional)e (commands,)j(and)44 b(mec)m(hanisms)i(to)g(group)150 -4079 y(commands)30 b(and)g(execute)i(them)e(as)g(a)h(unit.)150 -4283 y Fk(3.2.5.1)63 b(Lo)s(oping)43 b(Constructs)150 -4430 y Fu(Bash)31 b(supp)s(orts)d(the)j(follo)m(wing)g(lo)s(oping)g -(constructs.)275 4570 y(Note)k(that)f(wherev)m(er)g(a)g(`)p +4151 y(commands)30 b(and)g(execute)i(them)e(as)g(a)h(unit.)150 +4336 y Fk(3.2.5.1)63 b(Lo)s(oping)43 b(Constructs)150 +4483 y Fu(Bash)31 b(supp)s(orts)d(the)j(follo)m(wing)g(lo)s(oping)g +(constructs.)275 4611 y(Note)k(that)f(wherev)m(er)g(a)g(`)p Ft(;)p Fu(')g(app)s(ears)f(in)h(the)g(description)g(of)g(a)g(command's) -g(syn)m(tax,)i(it)e(ma)m(y)h(b)s(e)150 4680 y(replaced)c(with)f(one)h -(or)f(more)g(newlines.)150 4847 y Ft(until)240 b Fu(The)30 +g(syn)m(tax,)i(it)e(ma)m(y)h(b)s(e)150 4720 y(replaced)c(with)f(one)h +(or)f(more)g(newlines.)150 4866 y Ft(until)240 b Fu(The)30 b(syn)m(tax)h(of)f(the)h Ft(until)e Fu(command)h(is:)870 -4984 y Ft(until)46 b Fj(test-commands)p Ft(;)e(do)j Fj +4993 y Ft(until)46 b Fj(test-commands)p Ft(;)e(do)j Fj (consequent-commands)p Ft(;)c(done)630 5121 y Fu(Execute)f Fr(consequen)m(t-commands)k Fu(as)41 b(long)h(as)f Fr(test-commands)46 b Fu(has)41 b(an)g(exit)h(status)630 5230 y(whic)m(h)c(is)h(not)g @@ -9243,55 +9242,58 @@ b(its)g(o)m(wn)f(rules.)68 b(The)39 b(in)m(ten)m(tion)i(is)e(to)h(a)m y(things)31 b(t)m(wice)h(as)f(m)m(uc)m(h)f(as)h(p)s(ossible,)g(so)g (shell)g(quoting)g(should)f(b)s(e)g(su\016cien)m(t)h(to)g(quote)630 737 y(sp)s(ecial)g(pattern)f(c)m(haracters)i(where)e(that's)h -(necessary)-8 b(.)630 878 y(The)39 b(arra)m(y)h(v)-5 +(necessary)-8 b(.)630 867 y(The)39 b(arra)m(y)h(v)-5 b(ariable)40 b Ft(BASH_REMATCH)c Fu(records)j(whic)m(h)g(parts)g(of)g -(the)h(string)f(matc)m(hed)630 987 y(the)34 b(pattern.)51 +(the)h(string)f(matc)m(hed)630 977 y(the)34 b(pattern.)51 b(The)33 b(elemen)m(t)i(of)f Ft(BASH_REMATCH)d Fu(with)i(index)g(0)h -(con)m(tains)h(the)f(p)s(ortion)630 1097 y(of)39 b(the)g(string)g(matc) +(con)m(tains)h(the)f(p)s(ortion)630 1086 y(of)39 b(the)g(string)g(matc) m(hing)h(the)g(en)m(tire)f(regular)h(expression.)66 b(Substrings)37 -b(matc)m(hed)j(b)m(y)630 1207 y(paren)m(thesized)k(sub)s(expressions)e +b(matc)m(hed)j(b)m(y)630 1196 y(paren)m(thesized)k(sub)s(expressions)e (within)i(the)g(regular)g(expression)g(are)g(sa)m(v)m(ed)h(in)f(the)630 -1316 y(remaining)33 b Ft(BASH_REMATCH)c Fu(indices.)49 +1306 y(remaining)33 b Ft(BASH_REMATCH)c Fu(indices.)49 b(The)32 b(elemen)m(t)i(of)f Ft(BASH_REMATCH)d Fu(with)i(index)g -Fr(n)630 1426 y Fu(is)e(the)h(p)s(ortion)f(of)g(the)h(string)f(matc)m +Fr(n)630 1415 y Fu(is)e(the)h(p)s(ortion)f(of)g(the)h(string)f(matc)m (hing)i(the)e Fr(n)p Fu(th)g(paren)m(thesized)h(sub)s(expression.)630 -1567 y(Expressions)23 b(ma)m(y)h(b)s(e)e(com)m(bined)i(using)f(the)h +1545 y(Bash)26 b(sets)h Ft(BASH_REMATCH)c Fu(in)j(the)g(global)i(scop)s +(e;)f(declaring)g(it)g(as)g(a)f(lo)s(cal)i(v)-5 b(ariable)27 +b(will)630 1655 y(lead)k(to)g(unexp)s(ected)f(results.)630 +1785 y(Expressions)23 b(ma)m(y)h(b)s(e)e(com)m(bined)i(using)f(the)h (follo)m(wing)h(op)s(erators,)g(listed)f(in)f(decreasing)630 -1676 y(order)30 b(of)g(precedence:)630 1848 y Ft(\()g -Fj(expression)e Ft(\))1110 1957 y Fu(Returns)i(the)h(v)-5 +1895 y(order)30 b(of)g(precedence:)630 2045 y Ft(\()g +Fj(expression)e Ft(\))1110 2155 y Fu(Returns)i(the)h(v)-5 b(alue)31 b(of)g Fr(expression)p Fu(.)42 b(This)30 b(ma)m(y)i(b)s(e)e -(used)g(to)i(o)m(v)m(erride)g(the)1110 2067 y(normal)e(precedence)h(of) -g(op)s(erators.)630 2239 y Ft(!)f Fj(expression)1110 -2348 y Fu(T)-8 b(rue)30 b(if)g Fr(expression)g Fu(is)h(false.)630 -2520 y Fj(expression1)c Ft(&&)j Fj(expression2)1110 2630 +(used)g(to)i(o)m(v)m(erride)g(the)1110 2264 y(normal)e(precedence)h(of) +g(op)s(erators.)630 2415 y Ft(!)f Fj(expression)1110 +2524 y Fu(T)-8 b(rue)30 b(if)g Fr(expression)g Fu(is)h(false.)630 +2675 y Fj(expression1)c Ft(&&)j Fj(expression2)1110 2784 y Fu(T)-8 b(rue)30 b(if)g(b)s(oth)g Fr(expression1)38 b Fu(and)29 b Fr(expression2)38 b Fu(are)31 b(true.)630 -2801 y Fj(expression1)c Ft(||)j Fj(expression2)1110 2911 +2935 y Fj(expression1)c Ft(||)j Fj(expression2)1110 3045 y Fu(T)-8 b(rue)30 b(if)g(either)h Fr(expression1)38 b Fu(or)30 b Fr(expression2)38 b Fu(is)30 b(true.)630 -3083 y(The)24 b Ft(&&)h Fu(and)f Ft(||)g Fu(op)s(erators)h(do)g(not)g +3195 y(The)24 b Ft(&&)h Fu(and)f Ft(||)g Fu(op)s(erators)h(do)g(not)g (ev)-5 b(aluate)27 b Fr(expression2)32 b Fu(if)25 b(the)g(v)-5 -b(alue)25 b(of)g Fr(expression1)630 3192 y Fu(is)30 b(su\016cien)m(t)h +b(alue)25 b(of)g Fr(expression1)630 3305 y Fu(is)30 b(su\016cien)m(t)h (to)g(determine)g(the)f(return)g(v)-5 b(alue)31 b(of)f(the)h(en)m(tire) -g(conditional)h(expression.)150 3404 y Fk(3.2.5.3)63 -b(Grouping)43 b(Commands)150 3551 y Fu(Bash)30 b(pro)m(vides)g(t)m(w)m +g(conditional)h(expression.)150 3495 y Fk(3.2.5.3)63 +b(Grouping)43 b(Commands)150 3642 y Fu(Bash)30 b(pro)m(vides)g(t)m(w)m (o)h(w)m(a)m(ys)f(to)h(group)e(a)h(list)g(of)g(commands)f(to)i(b)s(e)e -(executed)h(as)g(a)h(unit.)40 b(When)29 b(com-)150 3661 +(executed)h(as)g(a)h(unit.)40 b(When)29 b(com-)150 3752 y(mands)h(are)i(group)s(ed,)f(redirections)h(ma)m(y)g(b)s(e)e(applied)i (to)g(the)f(en)m(tire)h(command)g(list.)44 b(F)-8 b(or)32 -b(example,)150 3770 y(the)f(output)f(of)g(all)h(the)g(commands)f(in)g +b(example,)150 3861 y(the)f(output)f(of)g(all)h(the)g(commands)f(in)g (the)h(list)g(ma)m(y)g(b)s(e)e(redirected)i(to)g(a)g(single)g(stream.) -150 3948 y Ft(\(\))870 4089 y(\()47 b Fj(list)g Ft(\))630 -4229 y Fu(Placing)42 b(a)g(list)g(of)f(commands)g(b)s(et)m(w)m(een)h +150 4012 y Ft(\(\))870 4142 y(\()47 b Fj(list)g Ft(\))630 +4272 y Fu(Placing)42 b(a)g(list)g(of)f(commands)g(b)s(et)m(w)m(een)h (paren)m(theses)f(forces)h(the)f(shell)h(to)g(create)h(a)630 -4339 y(subshell)33 b(\(see)h(Section)g(3.7.3)i([Command)c(Execution)j -(En)m(vironmen)m(t],)g(page)f(43\),)i(and)630 4449 y(eac)m(h)g(of)f +4381 y(subshell)33 b(\(see)h(Section)g(3.7.3)i([Command)c(Execution)j +(En)m(vironmen)m(t],)g(page)f(43\),)i(and)630 4491 y(eac)m(h)g(of)f (the)h(commands)e(in)h Fr(list)i Fu(is)e(executed)h(in)f(that)h -(subshell)e(en)m(vironmen)m(t.)55 b(Since)630 4558 y(the)33 +(subshell)e(en)m(vironmen)m(t.)55 b(Since)630 4601 y(the)33 b Fr(list)j Fu(is)e(executed)g(in)f(a)g(subshell,)h(v)-5 b(ariable)34 b(assignmen)m(ts)g(do)f(not)g(remain)g(in)g(e\013ect)630 -4668 y(after)e(the)f(subshell)g(completes.)150 4839 y -Ft({})870 4980 y({)47 b Fj(list)p Ft(;)g(})630 5121 y +4710 y(after)e(the)f(subshell)g(completes.)150 4861 y +Ft({})870 4991 y({)47 b Fj(list)p Ft(;)g(})630 5121 y Fu(Placing)30 b(a)g(list)g(of)g(commands)f(b)s(et)m(w)m(een)h(curly)f (braces)g(causes)h(the)f(list)h(to)g(b)s(e)f(executed)630 5230 y(in)d(the)h(curren)m(t)g(shell)f(con)m(text.)42 @@ -10792,17 +10794,18 @@ Ft(^)p Fu(')g(then)f(an)m(y)630 4655 y(c)m(haracter)c(not)f(enclosed)g (matc)m(hed)h(b)m(y)f(including)h(it)g(as)g(the)630 4765 y(\014rst)32 b(or)h(last)h(c)m(haracter)h(in)e(the)g(set.)50 b(A)33 b(`)p Ft(])p Fu(')g(ma)m(y)h(b)s(e)e(matc)m(hed)i(b)m(y)f -(including)g(it)g(as)h(the)630 4875 y(\014rst)25 b(c)m(haracter)i(in)e -(the)h(set.)40 b(The)25 b(sorting)h(order)f(of)h(c)m(haracters)h(in)f -(range)g(expressions)f(is)630 4984 y(determined)h(b)m(y)h(the)g(curren) -m(t)f(lo)s(cale)j(and)d(the)h(v)-5 b(alues)27 b(of)g(the)g -Ft(LC_COLLATE)d Fu(and)i Ft(LC_ALL)630 5094 y Fu(shell)31 -b(v)-5 b(ariables,)31 b(if)f(set.)630 5230 y(F)-8 b(or)34 -b(example,)g(in)f(the)g(default)g(C)f(lo)s(cale,)k(`)p -Ft([a-dx-z])p Fu(')31 b(is)i(equiv)-5 b(alen)m(t)34 b(to)g(`)p -Ft([abcdxyz])p Fu('.)630 5340 y(Man)m(y)68 b(lo)s(cales)h(sort)f(c)m -(haracters)h(in)e(dictionary)i(order,)76 b(and)67 b(in)g(these)h(lo)s -(cales)p eop end +(including)g(it)g(as)h(the)630 4875 y(\014rst)c(c)m(haracter)j(in)d +(the)h(set.)43 b(The)31 b(sorting)g(order)g(of)g(c)m(haracters)h(in)f +(range)g(expressions,)630 4984 y(and)f(the)h(c)m(haracters)h(included)e +(in)h(the)f(range,)i(are)f(determined)f(b)m(y)h(the)g(curren)m(t)f(lo)s +(cale)630 5094 y(and)g(the)g(v)-5 b(alues)31 b(of)g(the)f +Ft(LC_COLLATE)e Fu(and)h Ft(LC_ALL)g Fu(shell)i(v)-5 +b(ariables,)31 b(if)f(set.)630 5230 y(F)-8 b(or)34 b(example,)g(in)f +(the)g(default)g(C)f(lo)s(cale,)k(`)p Ft([a-dx-z])p Fu(')31 +b(is)i(equiv)-5 b(alen)m(t)34 b(to)g(`)p Ft([abcdxyz])p +Fu('.)630 5340 y(Man)m(y)68 b(lo)s(cales)h(sort)f(c)m(haracters)h(in)e +(dictionary)i(order,)76 b(and)67 b(in)g(these)h(lo)s(cales)p +eop end %%Page: 37 43 TeXDict begin 37 42 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(37)630 299 @@ -14922,37 +14925,37 @@ Fu(v)-5 b(ariable)150 3044 y(and)30 b(commands)g(are)g(read)h(and)e (read.)150 3362 y Fk(In)m(v)m(ok)m(ed)40 b(b)m(y)g(remote)h(shell)h (daemon)150 3509 y Fu(Bash)36 b(attempts)h(to)g(determine)f(when)f(it)i (is)f(b)s(eing)g(run)e(with)i(its)g(standard)g(input)f(connected)i(to)g -(a)150 3618 y(net)m(w)m(ork)h(connection,)j(as)c(when)g(executed)h(b)m -(y)f(the)h(remote)g(shell)g(daemon,)h(usually)e Ft(rshd)p -Fu(,)h(or)g(the)150 3728 y(secure)c(shell)f(daemon)h -Ft(sshd)p Fu(.)49 b(If)33 b(Bash)g(determines)h(it)g(is)f(b)s(eing)g -(run)f(in)i(this)f(fashion,)h(it)g(reads)g(and)150 3837 -y(executes)29 b(commands)e(from)g Ft(~/.bashrc)p Fu(,)e(if)j(that)g -(\014le)f(exists)h(and)f(is)g(readable.)41 b(It)27 b(will)h(not)f(do)h -(this)f(if)150 3947 y(in)m(v)m(ok)m(ed)k(as)f Ft(sh)p -Fu(.)40 b(The)29 b Ft(--norc)f Fu(option)i(ma)m(y)g(b)s(e)f(used)f(to)j -(inhibit)e(this)g(b)s(eha)m(vior,)h(and)f(the)h Ft(--rcfile)150 -4057 y Fu(option)36 b(ma)m(y)g(b)s(e)e(used)h(to)h(force)g(another)f -(\014le)h(to)g(b)s(e)e(read,)j(but)d(neither)i Ft(rshd)e -Fu(nor)h Ft(sshd)f Fu(generally)150 4166 y(in)m(v)m(ok)m(e)e(the)f -(shell)f(with)h(those)f(options)h(or)f(allo)m(w)i(them)f(to)g(b)s(e)e -(sp)s(eci\014ed.)150 4375 y Fk(In)m(v)m(ok)m(ed)40 b(with)g(unequal)h -(e\013ectiv)m(e)e(and)i(real)g Fg(uid/gid)p Fk(s)150 -4522 y Fu(If)34 b(Bash)h(is)g(started)g(with)f(the)h(e\013ectiv)m(e)i -(user)d(\(group\))h(id)f(not)h(equal)g(to)g(the)g(real)g(user)f -(\(group\))h(id,)150 4631 y(and)26 b(the)i Ft(-p)e Fu(option)h(is)g -(not)h(supplied,)e(no)h(startup)g(\014les)g(are)g(read,)h(shell)f -(functions)g(are)g(not)g(inherited)150 4741 y(from)41 -b(the)g(en)m(vironmen)m(t,)j(the)d Ft(SHELLOPTS)p Fu(,)h -Ft(BASHOPTS)p Fu(,)g Ft(CDPATH)p Fu(,)g(and)e Ft(GLOBIGNORE)e -Fu(v)-5 b(ariables,)45 b(if)150 4850 y(they)28 b(app)s(ear)f(in)h(the)g -(en)m(vironmen)m(t,)i(are)e(ignored,)h(and)e(the)h(e\013ectiv)m(e)j -(user)c(id)h(is)g(set)g(to)h(the)f(real)h(user)150 4960 -y(id.)62 b(If)38 b(the)f Ft(-p)h Fu(option)g(is)f(supplied)g(at)h(in)m -(v)m(o)s(cation,)k(the)c(startup)f(b)s(eha)m(vior)h(is)g(the)g(same,)i -(but)d(the)150 5070 y(e\013ectiv)m(e)c(user)d(id)g(is)g(not)h(reset.) -150 5324 y Fs(6.3)68 b(In)l(teractiv)l(e)47 b(Shells)p -eop end +(a)150 3618 y(net)m(w)m(ork)29 b(connection,)g(as)f(when)f(executed)i +(b)m(y)e(the)h(historical)h(remote)g(shell)f(daemon,)g(usually)g +Ft(rshd)p Fu(,)150 3728 y(or)e(the)g(secure)g(shell)g(daemon)f +Ft(sshd)p Fu(.)38 b(If)26 b(Bash)g(determines)f(it)i(is)e(b)s(eing)h +(run)e(non-in)m(teractiv)m(ely)29 b(in)c(this)150 3837 +y(fashion,)i(it)g(reads)e(and)h(executes)h(commands)f(from)f +Ft(~/.bashrc)p Fu(,)g(if)h(that)h(\014le)f(exists)h(and)e(is)h +(readable.)150 3947 y(It)g(will)f(not)h(do)g(this)f(if)g(in)m(v)m(ok)m +(ed)i(as)f Ft(sh)p Fu(.)39 b(The)25 b Ft(--norc)e Fu(option)j(ma)m(y)g +(b)s(e)f(used)g(to)h(inhibit)f(this)h(b)s(eha)m(vior,)150 +4057 y(and)g(the)h Ft(--rcfile)e Fu(option)j(ma)m(y)f(b)s(e)f(used)g +(to)i(force)g(another)f(\014le)g(to)g(b)s(e)g(read,)h(but)e(neither)h +Ft(rshd)e Fu(nor)150 4166 y Ft(sshd)k Fu(generally)j(in)m(v)m(ok)m(e)g +(the)f(shell)f(with)g(those)h(options)g(or)f(allo)m(w)i(them)e(to)i(b)s +(e)d(sp)s(eci\014ed.)150 4375 y Fk(In)m(v)m(ok)m(ed)40 +b(with)g(unequal)h(e\013ectiv)m(e)e(and)i(real)g Fg(uid/gid)p +Fk(s)150 4522 y Fu(If)34 b(Bash)h(is)g(started)g(with)f(the)h +(e\013ectiv)m(e)i(user)d(\(group\))h(id)f(not)h(equal)g(to)g(the)g +(real)g(user)f(\(group\))h(id,)150 4631 y(and)26 b(the)i +Ft(-p)e Fu(option)h(is)g(not)h(supplied,)e(no)h(startup)g(\014les)g +(are)g(read,)h(shell)f(functions)g(are)g(not)g(inherited)150 +4741 y(from)41 b(the)g(en)m(vironmen)m(t,)j(the)d Ft(SHELLOPTS)p +Fu(,)h Ft(BASHOPTS)p Fu(,)g Ft(CDPATH)p Fu(,)g(and)e +Ft(GLOBIGNORE)e Fu(v)-5 b(ariables,)45 b(if)150 4850 +y(they)28 b(app)s(ear)f(in)h(the)g(en)m(vironmen)m(t,)i(are)e(ignored,) +h(and)e(the)h(e\013ectiv)m(e)j(user)c(id)h(is)g(set)g(to)h(the)f(real)h +(user)150 4960 y(id.)62 b(If)38 b(the)f Ft(-p)h Fu(option)g(is)f +(supplied)g(at)h(in)m(v)m(o)s(cation,)k(the)c(startup)f(b)s(eha)m(vior) +h(is)g(the)g(same,)i(but)d(the)150 5070 y(e\013ectiv)m(e)c(user)d(id)g +(is)g(not)h(reset.)150 5324 y Fs(6.3)68 b(In)l(teractiv)l(e)47 +b(Shells)p eop end %%Page: 95 101 TeXDict begin 95 100 bop 150 -116 a Fu(Chapter)30 b(6:)41 b(Bash)30 b(F)-8 b(eatures)2484 b(95)150 299 y Fk(6.3.1)63 @@ -16060,294 +16063,301 @@ b(Enabling)32 b Fm(posix)f Fu(mo)s(de)h(has)g(the)h(e\013ect)g(of)g b(so)e(n)m(umeric)330 408 y(argumen)m(ts)f(to)g Ft(shift)f Fu(that)h(exceed)h(the)e(n)m(um)m(b)s(er)g(of)h(p)s(ositional)g (parameters)g(will)g(result)g(in)f(an)330 518 y(error)g(message.)154 -652 y(46.)61 b(When)43 b(the)g Ft(alias)f Fu(builtin)g(displa)m(ys)i +662 y(46.)61 b(When)43 b(the)g Ft(alias)f Fu(builtin)g(displa)m(ys)i (alias)g(de\014nitions,)i(it)d(do)s(es)g(not)g(displa)m(y)h(them)f -(with)g(a)330 762 y(leading)31 b(`)p Ft(alias)e Fu(')i(unless)f(the)g -Ft(-p)g Fu(option)h(is)f(supplied.)154 896 y(47.)61 b(When)40 +(with)g(a)330 771 y(leading)31 b(`)p Ft(alias)e Fu(')i(unless)f(the)g +Ft(-p)g Fu(option)h(is)f(supplied.)154 915 y(47.)61 b(When)40 b(the)g Ft(set)f Fu(builtin)h(is)g(in)m(v)m(ok)m(ed)h(without)f (options,)j(it)e(do)s(es)f(not)g(displa)m(y)g(shell)g(function)330 -1005 y(names)30 b(and)g(de\014nitions.)154 1139 y(48.)61 +1025 y(names)30 b(and)g(de\014nitions.)154 1169 y(48.)61 b(When)36 b(the)g Ft(set)g Fu(builtin)g(is)g(in)m(v)m(ok)m(ed)i (without)e(options,)i(it)f(displa)m(ys)f(v)-5 b(ariable)37 -b(v)-5 b(alues)37 b(without)330 1249 y(quotes,)26 b(unless)d(they)i +b(v)-5 b(alues)37 b(without)330 1278 y(quotes,)26 b(unless)d(they)i (con)m(tain)g(shell)f(metac)m(haracters,)k(ev)m(en)d(if)f(the)g(result) -g(con)m(tains)i(nonprin)m(ting)330 1358 y(c)m(haracters.)154 -1492 y(49.)61 b(When)35 b(the)h Ft(cd)e Fu(builtin)h(is)h(in)m(v)m(ok)m +g(con)m(tains)i(nonprin)m(ting)330 1388 y(c)m(haracters.)154 +1532 y(49.)61 b(When)35 b(the)h Ft(cd)e Fu(builtin)h(is)h(in)m(v)m(ok)m (ed)g(in)f(logical)j(mo)s(de,)e(and)f(the)h(pathname)f(constructed)g -(from)330 1602 y Ft($PWD)i Fu(and)h(the)h(directory)f(name)h(supplied)e +(from)330 1641 y Ft($PWD)i Fu(and)h(the)h(directory)f(name)h(supplied)e (as)i(an)f(argumen)m(t)h(do)s(es)f(not)g(refer)h(to)g(an)f(existing)330 -1711 y(directory)-8 b(,)32 b Ft(cd)d Fu(will)i(fail)g(instead)g(of)f +1751 y(directory)-8 b(,)32 b Ft(cd)d Fu(will)i(fail)g(instead)g(of)f (falling)h(bac)m(k)h(to)f(ph)m(ysical)g(mo)s(de.)154 -1845 y(50.)61 b(When)37 b(the)h Ft(cd)f Fu(builtin)g(cannot)h(c)m +1895 y(50.)61 b(When)37 b(the)h Ft(cd)f Fu(builtin)g(cannot)h(c)m (hange)h(a)f(directory)g(b)s(ecause)g(the)g(length)g(of)f(the)h -(pathname)330 1955 y(constructed)27 b(from)g Ft($PWD)f +(pathname)330 2004 y(constructed)27 b(from)g Ft($PWD)f Fu(and)h(the)g(directory)h(name)f(supplied)f(as)i(an)f(argumen)m(t)g -(exceeds)h Ft(PATH_)330 2064 y(MAX)d Fu(when)g(all)h(sym)m(b)s(olic)g +(exceeds)h Ft(PATH_)330 2114 y(MAX)d Fu(when)g(all)h(sym)m(b)s(olic)g (links)g(are)g(expanded,)g Ft(cd)f Fu(will)h(fail)h(instead)f(of)g -(attempting)h(to)f(use)g(only)330 2174 y(the)31 b(supplied)e(directory) -i(name.)154 2308 y(51.)61 b(The)36 b Ft(pwd)f Fu(builtin)h(v)m +(attempting)h(to)f(use)g(only)330 2224 y(the)31 b(supplied)e(directory) +i(name.)154 2367 y(51.)61 b(The)36 b Ft(pwd)f Fu(builtin)h(v)m (eri\014es)h(that)g(the)f(v)-5 b(alue)37 b(it)g(prin)m(ts)e(is)i(the)f (same)h(as)f(the)h(curren)m(t)f(directory)-8 b(,)330 -2418 y(ev)m(en)31 b(if)f(it)h(is)g(not)f(ask)m(ed)h(to)g(c)m(hec)m(k)h +2477 y(ev)m(en)31 b(if)f(it)h(is)g(not)f(ask)m(ed)h(to)g(c)m(hec)m(k)h (the)f(\014le)f(system)h(with)f(the)h Ft(-P)e Fu(option.)154 -2552 y(52.)61 b(When)35 b(listing)g(the)g(history)-8 +2621 y(52.)61 b(When)35 b(listing)g(the)g(history)-8 b(,)36 b(the)f Ft(fc)g Fu(builtin)f(do)s(es)g(not)h(include)g(an)f -(indication)i(of)f(whether)f(or)330 2661 y(not)d(a)f(history)h(en)m -(try)f(has)g(b)s(een)g(mo)s(di\014ed.)154 2795 y(53.)61 +(indication)i(of)f(whether)f(or)330 2730 y(not)d(a)f(history)h(en)m +(try)f(has)g(b)s(een)g(mo)s(di\014ed.)154 2874 y(53.)61 b(The)30 b(default)g(editor)h(used)f(b)m(y)g Ft(fc)g -Fu(is)g Ft(ed)p Fu(.)154 2929 y(54.)61 b(The)37 b Ft(type)g +Fu(is)g Ft(ed)p Fu(.)154 3018 y(54.)61 b(The)37 b Ft(type)g Fu(and)g Ft(command)f Fu(builtins)i(will)g(not)g(rep)s(ort)f(a)i (non-executable)g(\014le)f(as)g(ha)m(ving)h(b)s(een)330 -3039 y(found,)26 b(though)h(the)g(shell)g(will)g(attempt)h(to)g +3128 y(found,)26 b(though)h(the)g(shell)g(will)g(attempt)h(to)g (execute)g(suc)m(h)f(a)g(\014le)g(if)g(it)g(is)g(the)g(only)g(so-named) -g(\014le)330 3148 y(found)i(in)h Ft($PATH)p Fu(.)154 -3282 y(55.)61 b(The)33 b Ft(vi)f Fu(editing)i(mo)s(de)f(will)g(in)m(v)m +g(\014le)330 3237 y(found)i(in)h Ft($PATH)p Fu(.)154 +3381 y(55.)61 b(The)33 b Ft(vi)f Fu(editing)i(mo)s(de)f(will)g(in)m(v)m (ok)m(e)i(the)e Ft(vi)g Fu(editor)h(directly)f(when)f(the)i(`)p -Ft(v)p Fu(')f(command)g(is)g(run,)330 3392 y(instead)e(of)f(c)m(hec)m -(king)i Ft($VISUAL)d Fu(and)g Ft($EDITOR)p Fu(.)154 3526 +Ft(v)p Fu(')f(command)g(is)g(run,)330 3491 y(instead)e(of)f(c)m(hec)m +(king)i Ft($VISUAL)d Fu(and)g Ft($EDITOR)p Fu(.)154 3634 y(56.)61 b(When)41 b(the)g Ft(xpg_echo)e Fu(option)i(is)g(enabled,)j (Bash)d(do)s(es)g(not)g(attempt)h(to)g(in)m(terpret)f(an)m(y)h(ar-)330 -3635 y(gumen)m(ts)35 b(to)g Ft(echo)e Fu(as)i(options.)54 +3744 y(gumen)m(ts)35 b(to)g Ft(echo)e Fu(as)i(options.)54 b(Eac)m(h)35 b(argumen)m(t)g(is)f(displa)m(y)m(ed,)j(after)e(escap)s(e) -g(c)m(haracters)h(are)330 3745 y(con)m(v)m(erted.)154 -3879 y(57.)61 b(The)30 b Ft(ulimit)f Fu(builtin)g(uses)h(a)h(blo)s(c)m +g(c)m(haracters)h(are)330 3854 y(con)m(v)m(erted.)154 +3998 y(57.)61 b(The)30 b Ft(ulimit)f Fu(builtin)g(uses)h(a)h(blo)s(c)m (k)g(size)g(of)g(512)g(b)m(ytes)g(for)f(the)h Ft(-c)f -Fu(and)g Ft(-f)f Fu(options.)154 4013 y(58.)61 b(The)39 +Fu(and)g Ft(-f)f Fu(options.)154 4141 y(58.)61 b(The)39 b(arriv)-5 b(al)41 b(of)f Ft(SIGCHLD)e Fu(when)h(a)h(trap)g(is)g(set)h (on)f Ft(SIGCHLD)e Fu(do)s(es)h(not)h(in)m(terrupt)g(the)g -Ft(wait)330 4122 y Fu(builtin)c(and)h(cause)g(it)h(to)f(return)f +Ft(wait)330 4251 y Fu(builtin)c(and)h(cause)g(it)h(to)f(return)f (immediately)-8 b(.)62 b(The)37 b(trap)f(command)h(is)g(run)e(once)j -(for)f(eac)m(h)330 4232 y(c)m(hild)31 b(that)g(exits.)154 -4366 y(59.)61 b(The)27 b Ft(read)f Fu(builtin)g(ma)m(y)i(b)s(e)e(in)m +(for)f(eac)m(h)330 4361 y(c)m(hild)31 b(that)g(exits.)154 +4504 y(59.)61 b(The)27 b Ft(read)f Fu(builtin)g(ma)m(y)i(b)s(e)e(in)m (terrupted)h(b)m(y)g(a)h(signal)f(for)g(whic)m(h)g(a)h(trap)f(has)g(b)s -(een)f(set.)40 b(If)27 b(Bash)330 4475 y(receiv)m(es)41 +(een)f(set.)40 b(If)27 b(Bash)330 4614 y(receiv)m(es)41 b(a)f(trapp)s(ed)e(signal)i(while)f(executing)h Ft(read)p Fu(,)h(the)e(trap)h(handler)e(executes)i(and)f Ft(read)330 -4585 y Fu(returns)29 b(an)h(exit)i(status)e(greater)i(than)e(128.)154 -4719 y(60.)61 b(Bash)27 b(remo)m(v)m(es)h(an)e(exited)i(bac)m(kground)e -(pro)s(cess's)h(status)g(from)f(the)h(list)g(of)g(suc)m(h)f(statuses)h -(after)330 4829 y(the)k Ft(wait)e Fu(builtin)h(is)g(used)g(to)h(obtain) -g(it.)275 4987 y(There)j(is)g(other)h Fm(posix)f Fu(b)s(eha)m(vior)h -(that)g(Bash)g(do)s(es)f(not)h(implemen)m(t)g(b)m(y)g(default)f(ev)m -(en)i(when)d(in)150 5096 y Fm(posix)d Fu(mo)s(de.)40 -b(Sp)s(eci\014cally:)199 5230 y(1.)61 b(The)30 b Ft(fc)f -Fu(builtin)h(c)m(hec)m(ks)i Ft($EDITOR)c Fu(as)j(a)f(program)g(to)h -(edit)g(history)f(en)m(tries)h(if)f Ft(FCEDIT)f Fu(is)h(unset,)330 -5340 y(rather)g(than)g(defaulting)h(directly)g(to)g Ft(ed)p -Fu(.)40 b Ft(fc)30 b Fu(uses)g Ft(ed)g Fu(if)g Ft(EDITOR)f -Fu(is)h(unset.)p eop end +4724 y Fu(returns)29 b(an)h(exit)i(status)e(greater)i(than)e(128.)154 +4867 y(60.)61 b(The)29 b Ft(printf)f Fu(builting)i(uses)f +Ft(double)f Fu(\(via)j Ft(strtod)p Fu(\))d(to)i(con)m(v)m(ert)i +(argumen)m(ts)e(corresp)s(onding)e(to)330 4977 y(\015oating)40 +b(p)s(oin)m(t)f(con)m(v)m(ersion)h(sp)s(eci\014ers,)h(instead)e(of)g +Ft(long)29 b(double)38 b Fu(if)h(it's)g(a)m(v)-5 b(ailable.)69 +b(The)39 b(`)p Ft(L)p Fu(')330 5087 y(length)31 b(mo)s(di\014er)e +(forces)i Ft(printf)e Fu(to)i(use)f Ft(long)f(double)g +Fu(if)h(it's)h(a)m(v)-5 b(ailable.)154 5230 y(61.)61 +b(Bash)27 b(remo)m(v)m(es)h(an)e(exited)i(bac)m(kground)e(pro)s(cess's) +h(status)g(from)f(the)h(list)g(of)g(suc)m(h)f(statuses)h(after)330 +5340 y(the)k Ft(wait)e Fu(builtin)h(is)g(used)g(to)h(obtain)g(it.)p +eop end %%Page: 110 116 TeXDict begin 110 115 bop 150 -116 a Fu(Chapter)30 b(6:)41 -b(Bash)30 b(F)-8 b(eatures)2439 b(110)199 299 y(2.)61 +b(Bash)30 b(F)-8 b(eatures)2439 b(110)275 299 y(There)34 +b(is)g(other)h Fm(posix)f Fu(b)s(eha)m(vior)h(that)g(Bash)g(do)s(es)f +(not)h(implemen)m(t)g(b)m(y)g(default)f(ev)m(en)i(when)d(in)150 +408 y Fm(posix)d Fu(mo)s(de.)40 b(Sp)s(eci\014cally:)199 +539 y(1.)61 b(The)30 b Ft(fc)f Fu(builtin)h(c)m(hec)m(ks)i +Ft($EDITOR)c Fu(as)j(a)f(program)g(to)h(edit)g(history)f(en)m(tries)h +(if)f Ft(FCEDIT)f Fu(is)h(unset,)330 648 y(rather)g(than)g(defaulting)h +(directly)g(to)g Ft(ed)p Fu(.)40 b Ft(fc)30 b Fu(uses)g +Ft(ed)g Fu(if)g Ft(EDITOR)f Fu(is)h(unset.)199 778 y(2.)61 b(As)29 b(noted)g(ab)s(o)m(v)m(e,)i(Bash)e(requires)g(the)g Ft(xpg_echo)e Fu(option)j(to)g(b)s(e)e(enabled)h(for)g(the)g -Ft(echo)f Fu(builtin)330 408 y(to)j(b)s(e)f(fully)g(conforman)m(t.)275 -570 y(Bash)c(can)g(b)s(e)f(con\014gured)h(to)g(b)s(e)g +Ft(echo)f Fu(builtin)330 888 y(to)j(b)s(e)f(fully)g(conforman)m(t.)275 +1038 y(Bash)c(can)g(b)s(e)f(con\014gured)h(to)g(b)s(e)g Fm(posix)p Fu(-conforman)m(t)g(b)m(y)g(default,)h(b)m(y)f(sp)s -(ecifying)g(the)g Ft(--enable-)150 680 y(strict-posix-default)c +(ecifying)g(the)g Ft(--enable-)150 1148 y(strict-posix-default)c Fu(to)27 b Ft(configure)e Fu(when)h(building)h(\(see)h(Section)g(10.8)g -([Optional)g(F)-8 b(eatures],)150 789 y(page)31 b(161\).)150 -1032 y Fs(6.12)68 b(Shell)46 b(Compatibilit)l(y)h(Mo)t(de)150 -1192 y Fu(Bash-4.0)33 b(in)m(tro)s(duced)f(the)f(concept)i(of)f(a)g +([Optional)g(F)-8 b(eatures],)150 1258 y(page)31 b(161\).)150 +1489 y Fs(6.12)68 b(Shell)46 b(Compatibilit)l(y)h(Mo)t(de)150 +1649 y Fu(Bash-4.0)33 b(in)m(tro)s(duced)f(the)f(concept)i(of)f(a)g Fr(shell)g(compatibilit)m(y)i(lev)m(el)p Fu(,)g(sp)s(eci\014ed)d(as)h -(a)g(set)h(of)f(options)150 1301 y(to)f(the)f(shopt)g(builtin)g(\()p +(a)g(set)h(of)f(options)150 1758 y(to)f(the)f(shopt)g(builtin)g(\()p Ft(compat31)p Fu(,)e Ft(compat32)p Fu(,)h Ft(compat40)p Fu(,)f Ft(compat41)p Fu(,)g(and)i(so)g(on\).)41 b(There)30 -b(is)g(only)150 1411 y(one)f(curren)m(t)f(compatibilit)m(y)j(lev)m(el)f +b(is)g(only)150 1868 y(one)f(curren)m(t)f(compatibilit)m(y)j(lev)m(el)f ({)f(eac)m(h)h(option)f(is)g(m)m(utually)g(exclusiv)m(e.)41 -b(The)28 b(compatibilit)m(y)j(lev)m(el)150 1520 y(is)39 +b(The)28 b(compatibilit)m(y)j(lev)m(el)150 1978 y(is)39 b(in)m(tended)g(to)h(allo)m(w)g(users)e(to)i(select)h(b)s(eha)m(vior)e (from)f(previous)h(v)m(ersions)g(that)h(is)f(incompatible)150 -1630 y(with)d(new)m(er)g(v)m(ersions)g(while)g(they)g(migrate)h +2087 y(with)d(new)m(er)g(v)m(ersions)g(while)g(they)g(migrate)h (scripts)f(to)h(use)f(curren)m(t)f(features)i(and)e(b)s(eha)m(vior.)58 -b(It's)150 1740 y(in)m(tended)30 b(to)h(b)s(e)f(a)h(temp)s(orary)f -(solution.)275 1876 y(This)k(section)j(do)s(es)e(not)h(men)m(tion)g(b)s +b(It's)150 2197 y(in)m(tended)30 b(to)h(b)s(e)f(a)h(temp)s(orary)f +(solution.)275 2327 y(This)k(section)j(do)s(es)e(not)h(men)m(tion)g(b)s (eha)m(vior)g(that)g(is)f(standard)g(for)g(a)h(particular)g(v)m(ersion) -g(\(e.g.,)150 1985 y(setting)24 b Ft(compat32)e Fu(means)h(that)h +g(\(e.g.,)150 2436 y(setting)24 b Ft(compat32)e Fu(means)h(that)h (quoting)g(the)f(rhs)g(of)g(the)h(regexp)f(matc)m(hing)i(op)s(erator)e -(quotes)h(sp)s(ecial)150 2095 y(regexp)31 b(c)m(haracters)g(in)g(the)f +(quotes)h(sp)s(ecial)150 2546 y(regexp)31 b(c)m(haracters)g(in)g(the)f (w)m(ord,)g(whic)m(h)g(is)h(default)f(b)s(eha)m(vior)h(in)f(bash-3.2)h -(and)f(ab)s(o)m(v)m(e\).)275 2231 y(If)f(a)h(user)f(enables,)h(sa)m(y) +(and)f(ab)s(o)m(v)m(e\).)275 2676 y(If)f(a)h(user)f(enables,)h(sa)m(y) -8 b(,)31 b Ft(compat32)p Fu(,)d(it)i(ma)m(y)g(a\013ect)h(the)f(b)s (eha)m(vior)g(of)g(other)g(compatibilit)m(y)h(lev)m(els)150 -2340 y(up)23 b(to)h(and)f(including)h(the)g(curren)m(t)f(compatibilit)m +2786 y(up)23 b(to)h(and)f(including)h(the)g(curren)m(t)f(compatibilit)m (y)j(lev)m(el.)41 b(The)23 b(idea)h(is)g(that)g(eac)m(h)h(compatibilit) -m(y)h(lev)m(el)150 2450 y(con)m(trols)35 b(b)s(eha)m(vior)f(that)g(c)m +m(y)h(lev)m(el)150 2895 y(con)m(trols)35 b(b)s(eha)m(vior)f(that)g(c)m (hanged)g(in)f(that)h(v)m(ersion)g(of)g(Bash,)h(but)e(that)h(b)s(eha)m -(vior)g(ma)m(y)g(ha)m(v)m(e)h(b)s(een)150 2559 y(presen)m(t)f(in)g +(vior)g(ma)m(y)g(ha)m(v)m(e)h(b)s(een)150 3005 y(presen)m(t)f(in)g (earlier)g(v)m(ersions.)52 b(F)-8 b(or)35 b(instance,)g(the)f(c)m (hange)h(to)g(use)f(lo)s(cale-based)h(comparisons)f(with)150 -2669 y(the)e Ft([[)f Fu(command)g(came)h(in)g(bash-4.1,)h(and)d +3114 y(the)e Ft([[)f Fu(command)g(came)h(in)g(bash-4.1,)h(and)d (earlier)j(v)m(ersions)f(used)f(ASCI)s(I-based)f(comparisons,)i(so)150 -2779 y(enabling)27 b Ft(compat32)e Fu(will)i(enable)g(ASCI)s(I-based)e +3224 y(enabling)27 b Ft(compat32)e Fu(will)i(enable)g(ASCI)s(I-based)e (comparisons)i(as)g(w)m(ell.)41 b(That)26 b(gran)m(ularit)m(y)i(ma)m(y) -g(not)150 2888 y(b)s(e)i(su\016cien)m(t)i(for)f(all)g(uses,)g(and)g(as) +g(not)150 3334 y(b)s(e)i(su\016cien)m(t)i(for)f(all)g(uses,)g(and)g(as) g(a)g(result)g(users)f(should)g(emplo)m(y)i(compatibilit)m(y)h(lev)m -(els)g(carefully)-8 b(.)150 2998 y(Read)31 b(the)f(do)s(cumen)m(tation) +(els)g(carefully)-8 b(.)150 3443 y(Read)31 b(the)f(do)s(cumen)m(tation) h(for)g(a)f(particular)h(feature)g(to)g(\014nd)e(out)h(the)h(curren)m -(t)f(b)s(eha)m(vior.)275 3134 y(Bash-4.3)44 b(in)m(tro)s(duced)e(a)h +(t)f(b)s(eha)m(vior.)275 3573 y(Bash-4.3)44 b(in)m(tro)s(duced)e(a)h (new)f(shell)h(v)-5 b(ariable:)65 b Ft(BASH_COMPAT)p Fu(.)75 b(The)42 b(v)-5 b(alue)43 b(assigned)g(to)g(this)150 -3243 y(v)-5 b(ariable)32 b(\(a)g(decimal)h(v)m(ersion)e(n)m(um)m(b)s +3683 y(v)-5 b(ariable)32 b(\(a)g(decimal)h(v)m(ersion)e(n)m(um)m(b)s (er)f(lik)m(e)j(4.2,)g(or)e(an)h(in)m(teger)g(corresp)s(onding)f(to)h -(the)f Ft(compat)p Fr(NN)150 3353 y Fu(option,)g(lik)m(e)h(42\))f +(the)f Ft(compat)p Fr(NN)150 3792 y Fu(option,)g(lik)m(e)h(42\))f (determines)g(the)f(compatibilit)m(y)j(lev)m(el.)275 -3489 y(Starting)e(with)g(bash-4.4,)h(Bash)f(has)g(b)s(egun)f +3923 y(Starting)e(with)g(bash-4.4,)h(Bash)f(has)g(b)s(egun)f (deprecating)h(older)h(compatibilit)m(y)h(lev)m(els.)44 -b(Ev)m(en)m(tu-)150 3598 y(ally)-8 b(,)32 b(the)e(options)h(will)g(b)s +b(Ev)m(en)m(tu-)150 4032 y(ally)-8 b(,)32 b(the)e(options)h(will)g(b)s (e)f(remo)m(v)m(ed)h(in)f(fa)m(v)m(or)i(of)e Ft(BASH_COMPAT)p -Fu(.)275 3734 y(Bash-5.0)36 b(is)f(the)g(\014nal)f(v)m(ersion)i(for)e +Fu(.)275 4162 y(Bash-5.0)36 b(is)f(the)g(\014nal)f(v)m(ersion)i(for)e (whic)m(h)h(there)g(will)g(b)s(e)f(an)h(individual)f(shopt)h(option)g -(for)g(the)150 3844 y(previous)30 b(v)m(ersion.)41 b(Users)30 +(for)g(the)150 4272 y(previous)30 b(v)m(ersion.)41 b(Users)30 b(should)g(use)g Ft(BASH_COMPAT)d Fu(on)j(bash-5.0)h(and)f(later)i(v)m -(ersions.)275 3980 y(The)24 b(follo)m(wing)i(table)g(describ)s(es)e +(ersions.)275 4402 y(The)24 b(follo)m(wing)i(table)g(describ)s(es)e (the)i(b)s(eha)m(vior)f(c)m(hanges)h(con)m(trolled)g(b)m(y)f(eac)m(h)h -(compatibilit)m(y)h(lev)m(el)150 4090 y(setting.)43 b(The)30 +(compatibilit)m(y)h(lev)m(el)150 4511 y(setting.)43 b(The)30 b Ft(compat)p Fr(NN)39 b Fu(tag)32 b(is)f(used)f(as)h(shorthand)e(for)h (setting)i(the)f(compatibilit)m(y)i(lev)m(el)f(to)g Fr(NN)150 -4199 y Fu(using)37 b(one)h(of)g(the)g(follo)m(wing)h(mec)m(hanisms.)63 +4621 y Fu(using)37 b(one)h(of)g(the)g(follo)m(wing)h(mec)m(hanisms.)63 b(F)-8 b(or)39 b(v)m(ersions)f(prior)f(to)h(bash-5.0,)j(the)d -(compatibilit)m(y)150 4309 y(lev)m(el)d(ma)m(y)f(b)s(e)e(set)i(using)e +(compatibilit)m(y)150 4731 y(lev)m(el)d(ma)m(y)f(b)s(e)e(set)i(using)e (the)i(corresp)s(onding)e Ft(compat)p Fr(NN)41 b Fu(shopt)33 b(option.)50 b(F)-8 b(or)34 b(bash-4.3)f(and)g(later)150 -4418 y(v)m(ersions,)40 b(the)e Ft(BASH_COMPAT)d Fu(v)-5 +4840 y(v)m(ersions,)40 b(the)e Ft(BASH_COMPAT)d Fu(v)-5 b(ariable)39 b(is)e(preferred,)i(and)e(it)i(is)f(required)f(for)g -(bash-5.1)i(and)e(later)150 4528 y(v)m(ersions.)150 4689 -y Ft(compat31)705 4825 y Fq(\017)60 b Fu(quoting)34 b(the)g(rhs)e(of)i +(bash-5.1)i(and)e(later)150 4950 y(v)m(ersions.)150 5100 +y Ft(compat31)705 5230 y Fq(\017)60 b Fu(quoting)34 b(the)g(rhs)e(of)i (the)f Ft([[)g Fu(command's)h(regexp)f(matc)m(hing)i(op)s(erator)f(\(=) -p Ft(~)p Fu(\))f(has)810 4934 y(no)d(sp)s(ecial)h(e\013ect)150 -5095 y Ft(compat32)705 5230 y Fq(\017)60 b Fu(in)m(terrupting)28 -b(a)g(command)g(list)h(suc)m(h)f(as)g Ft(")p Fu(a)g(;)h(b)f(;)h(c)p -Ft(")f Fu(causes)h(the)f(execution)h(of)g(the)810 5340 -y(next)j(command)f(in)g(the)h(list)g(\(in)f(bash-4.0)h(and)f(later)i(v) -m(ersions,)f(the)g(shell)f(acts)i(as)p eop end +p Ft(~)p Fu(\))f(has)810 5340 y(no)d(sp)s(ecial)h(e\013ect)p +eop end %%Page: 111 117 TeXDict begin 111 116 bop 150 -116 a Fu(Chapter)30 b(6:)41 -b(Bash)30 b(F)-8 b(eatures)2439 b(111)810 299 y(if)35 -b(it)i(receiv)m(ed)f(the)g(in)m(terrupt,)h(so)f(in)m(terrupting)f(one)h -(command)f(in)g(a)h(list)g(ab)s(orts)810 408 y(the)31 -b(execution)g(of)g(the)f(en)m(tire)i(list\))150 560 y -Ft(compat40)705 690 y Fq(\017)60 b Fu(the)35 b(`)p Ft(<)p -Fu(')g(and)f(`)p Ft(>)p Fu(')g(op)s(erators)h(to)g(the)g +b(Bash)30 b(F)-8 b(eatures)2439 b(111)150 299 y Ft(compat32)705 +429 y Fq(\017)60 b Fu(in)m(terrupting)28 b(a)g(command)g(list)h(suc)m +(h)f(as)g Ft(")p Fu(a)g(;)h(b)f(;)h(c)p Ft(")f Fu(causes)h(the)f +(execution)h(of)g(the)810 539 y(next)j(command)f(in)g(the)h(list)g +(\(in)f(bash-4.0)h(and)f(later)i(v)m(ersions,)f(the)g(shell)f(acts)i +(as)810 649 y(if)i(it)i(receiv)m(ed)f(the)g(in)m(terrupt,)h(so)f(in)m +(terrupting)f(one)h(command)f(in)g(a)h(list)g(ab)s(orts)810 +758 y(the)31 b(execution)g(of)g(the)f(en)m(tire)i(list\))150 +909 y Ft(compat40)705 1040 y Fq(\017)60 b Fu(the)35 b(`)p +Ft(<)p Fu(')g(and)f(`)p Ft(>)p Fu(')g(op)s(erators)h(to)g(the)g Ft([[)f Fu(command)h(do)f(not)h(consider)f(the)h(curren)m(t)810 -800 y(lo)s(cale)41 b(when)d(comparing)i(strings;)k(they)c(use)f(ASCI)s -(I)f(ordering.)67 b(Bash)40 b(v)m(ersions)810 909 y(prior)f(to)i +1149 y(lo)s(cale)41 b(when)d(comparing)i(strings;)k(they)c(use)f(ASCI)s +(I)f(ordering.)67 b(Bash)40 b(v)m(ersions)810 1259 y(prior)f(to)i (bash-4.1)f(use)g(ASCI)s(I)e(collation)k(and)d(strcmp\(3\);)45 -b(bash-4.1)c(and)e(later)810 1019 y(use)30 b(the)h(curren)m(t)f(lo)s +b(bash-4.1)c(and)e(later)810 1369 y(use)30 b(the)h(curren)m(t)f(lo)s (cale's)i(collation)h(sequence)d(and)g(strcoll\(3\).)150 -1170 y Ft(compat41)705 1301 y Fq(\017)60 b Fu(in)29 b(p)s(osix)f(mo)s +1520 y Ft(compat41)705 1650 y Fq(\017)60 b Fu(in)29 b(p)s(osix)f(mo)s (de,)i Ft(time)e Fu(ma)m(y)h(b)s(e)g(follo)m(w)m(ed)i(b)m(y)e(options)g -(and)g(still)h(b)s(e)e(recognized)j(as)810 1410 y(a)g(reserv)m(ed)f(w)m +(and)g(still)h(b)s(e)e(recognized)j(as)810 1760 y(a)g(reserv)m(ed)f(w)m (ord)g(\(this)h(is)f Fm(posix)g Fu(in)m(terpretation)i(267\))705 -1541 y Fq(\017)60 b Fu(in)37 b(p)s(osix)f(mo)s(de,)i(the)g(parser)e +1891 y Fq(\017)60 b Fu(in)37 b(p)s(osix)f(mo)s(de,)i(the)g(parser)e (requires)g(that)i(an)f(ev)m(en)g(n)m(um)m(b)s(er)f(of)h(single)g -(quotes)810 1650 y(o)s(ccur)28 b(in)g(the)h Fr(w)m(ord)i +(quotes)810 2000 y(o)s(ccur)28 b(in)g(the)h Fr(w)m(ord)i Fu(p)s(ortion)d(of)h(a)g(double-quoted)f($)p Fi({)6 b Fu(.)23 b(.)f(.)11 b Fi(})29 b Fu(parameter)g(expansion)810 -1760 y(and)34 b(treats)h(them)f(sp)s(ecially)-8 b(,)37 +2110 y(and)34 b(treats)h(them)f(sp)s(ecially)-8 b(,)37 b(so)e(that)g(c)m(haracters)g(within)f(the)h(single)g(quotes)g(are)810 -1870 y(considered)30 b(quoted)h(\(this)f(is)h Fm(posix)e -Fu(in)m(terpretation)j(221\))150 2021 y Ft(compat42)705 -2151 y Fq(\017)60 b Fu(the)29 b(replacemen)m(t)i(string)e(in)g +2219 y(considered)30 b(quoted)h(\(this)f(is)h Fm(posix)e +Fu(in)m(terpretation)j(221\))150 2371 y Ft(compat42)705 +2501 y Fq(\017)60 b Fu(the)29 b(replacemen)m(t)i(string)e(in)g (double-quoted)h(pattern)f(substitution)g(do)s(es)g(not)h(un-)810 -2261 y(dergo)h(quote)g(remo)m(v)-5 b(al,)32 b(as)e(it)h(do)s(es)f(in)g -(v)m(ersions)h(after)g(bash-4.2)705 2392 y Fq(\017)60 +2611 y(dergo)h(quote)g(remo)m(v)-5 b(al,)32 b(as)e(it)h(do)s(es)f(in)g +(v)m(ersions)h(after)g(bash-4.2)705 2741 y Fq(\017)60 b Fu(in)39 b(p)s(osix)g(mo)s(de,)j(single)e(quotes)g(are)g(considered)f -(sp)s(ecial)h(when)f(expanding)g(the)810 2501 y Fr(w)m(ord)d +(sp)s(ecial)h(when)f(expanding)g(the)810 2851 y Fr(w)m(ord)d Fu(p)s(ortion)c(of)g(a)h(double-quoted)g($)p Fi({)6 b Fu(.)22 b(.)h(.)11 b Fi(})33 b Fu(parameter)g(expansion)f(and)g(can)h -(b)s(e)810 2611 y(used)40 b(to)i(quote)g(a)f(closing)h(brace)f(or)g +(b)s(e)810 2960 y(used)40 b(to)i(quote)g(a)f(closing)h(brace)f(or)g (other)h(sp)s(ecial)f(c)m(haracter)i(\(this)e(is)g(part)g(of)810 -2720 y Fm(posix)36 b Fu(in)m(terpretation)h(221\);)42 +3070 y Fm(posix)36 b Fu(in)m(terpretation)h(221\);)42 b(in)36 b(later)h(v)m(ersions,)h(single)f(quotes)g(are)g(not)f(sp)s -(ecial)810 2830 y(within)30 b(double-quoted)g(w)m(ord)g(expansions)150 -2981 y Ft(compat43)705 3112 y Fq(\017)60 b Fu(the)31 +(ecial)810 3180 y(within)30 b(double-quoted)g(w)m(ord)g(expansions)150 +3331 y Ft(compat43)705 3461 y Fq(\017)60 b Fu(the)31 b(shell)g(do)s(es)g(not)g(prin)m(t)f(a)h(w)m(arning)g(message)h(if)f -(an)g(attempt)h(is)f(made)f(to)i(use)f(a)810 3221 y(quoted)22 +(an)g(attempt)h(is)f(made)f(to)i(use)f(a)810 3571 y(quoted)22 b(comp)s(ound)f(assignmen)m(t)i(as)f(an)g(argumen)m(t)h(to)g(declare)g -(\(declare)g(-a)g(fo)s(o='\(1)810 3331 y(2\)'\).)42 b(Later)31 +(\(declare)g(-a)g(fo)s(o='\(1)810 3680 y(2\)'\).)42 b(Later)31 b(v)m(ersions)g(w)m(arn)f(that)h(this)f(usage)h(is)f(deprecated)705 -3461 y Fq(\017)60 b Fu(w)m(ord)21 b(expansion)g(errors)g(are)h +3811 y Fq(\017)60 b Fu(w)m(ord)21 b(expansion)g(errors)g(are)h (considered)f(non-fatal)h(errors)f(that)h(cause)g(the)f(curren)m(t)810 -3571 y(command)k(to)g(fail,)i(ev)m(en)e(in)g(p)s(osix)f(mo)s(de)h +3921 y(command)k(to)g(fail,)i(ev)m(en)e(in)g(p)s(osix)f(mo)s(de)h (\(the)g(default)g(b)s(eha)m(vior)g(is)g(to)g(mak)m(e)h(them)810 -3680 y(fatal)32 b(errors)d(that)i(cause)g(the)g(shell)f(to)i(exit\))705 -3811 y Fq(\017)60 b Fu(when)37 b(executing)i(a)g(shell)f(function,)i +4030 y(fatal)32 b(errors)d(that)i(cause)g(the)g(shell)f(to)i(exit\))705 +4161 y Fq(\017)60 b Fu(when)37 b(executing)i(a)g(shell)f(function,)i (the)f(lo)s(op)f(state)h(\(while/un)m(til/etc.\))68 b(is)38 -b(not)810 3921 y(reset,)c(so)g Ft(break)d Fu(or)i Ft(continue)e +b(not)810 4270 y(reset,)c(so)g Ft(break)d Fu(or)i Ft(continue)e Fu(in)h(that)i(function)f(will)g(break)g(or)g(con)m(tin)m(ue)h(lo)s -(ops)810 4030 y(in)h(the)g(calling)h(con)m(text.)57 b(Bash-4.4)37 +(ops)810 4380 y(in)h(the)g(calling)h(con)m(text.)57 b(Bash-4.4)37 b(and)d(later)i(reset)g(the)f(lo)s(op)g(state)i(to)e(prev)m(en)m(t)810 -4140 y(this)150 4291 y Ft(compat44)705 4422 y Fq(\017)60 +4489 y(this)150 4641 y Ft(compat44)705 4771 y Fq(\017)60 b Fu(the)41 b(shell)g(sets)g(up)e(the)i(v)-5 b(alues)41 b(used)f(b)m(y)h Ft(BASH_ARGV)d Fu(and)i Ft(BASH_ARGC)e -Fu(so)j(they)810 4531 y(can)26 b(expand)f(to)h(the)g(shell's)g(p)s +Fu(so)j(they)810 4881 y(can)26 b(expand)f(to)h(the)g(shell's)g(p)s (ositional)g(parameters)g(ev)m(en)h(if)e(extended)h(debugging)810 -4641 y(mo)s(de)k(is)g(not)h(enabled)705 4771 y Fq(\017)60 +4990 y(mo)s(de)k(is)g(not)h(enabled)705 5121 y Fq(\017)60 b Fu(a)40 b(subshell)f(inherits)g(lo)s(ops)h(from)g(its)g(paren)m(t)g (con)m(text,)k(so)c Ft(break)e Fu(or)i Ft(continue)810 -4881 y Fu(will)35 b(cause)g(the)f(subshell)f(to)i(exit.)54 +5230 y Fu(will)35 b(cause)g(the)f(subshell)f(to)i(exit.)54 b(Bash-5.0)36 b(and)d(later)j(reset)f(the)f(lo)s(op)h(state)g(to)810 -4990 y(prev)m(en)m(t)c(the)g(exit)705 5121 y Fq(\017)60 -b Fu(v)-5 b(ariable)28 b(assignmen)m(ts)h(preceding)f(builtins)f(lik)m -(e)i Ft(export)d Fu(and)h Ft(readonly)e Fu(that)j(set)810 -5230 y(attributes)37 b(con)m(tin)m(ue)h(to)g(a\013ect)g(v)-5 -b(ariables)37 b(with)g(the)f(same)h(name)g(in)g(the)f(calling)810 -5340 y(en)m(vironmen)m(t)31 b(ev)m(en)g(if)f(the)h(shell)g(is)f(not)h -(in)f(p)s(osix)f(mo)s(de)p eop end +5340 y(prev)m(en)m(t)c(the)g(exit)p eop end %%Page: 112 118 TeXDict begin 112 117 bop 150 -116 a Fu(Chapter)30 b(6:)41 -b(Bash)30 b(F)-8 b(eatures)2439 b(112)150 299 y Ft(compat50)28 -b(\(set)h(using)g(BASH_COMPAT\))705 408 y Fq(\017)60 -b Fu(Bash-5.1)29 b(c)m(hanged)g(the)f(w)m(a)m(y)g Ft($RANDOM)e -Fu(is)i(generated)h(to)f(in)m(tro)s(duce)g(sligh)m(tly)h(more)810 -518 y(randomness.)39 b(If)30 b(the)f(shell)h(compatibilit)m(y)i(lev)m -(el)f(is)f(set)g(to)h(50)f(or)g(lo)m(w)m(er,)h(it)f(rev)m(erts)810 -628 y(to)e(the)g(metho)s(d)f(from)g(bash-5.0)h(and)f(previous)g(v)m -(ersions,)i(so)e(seeding)h(the)g(random)810 737 y(n)m(um)m(b)s(er)36 -b(generator)j(b)m(y)e(assigning)h(a)g(v)-5 b(alue)38 -b(to)g Ft(RANDOM)e Fu(will)i(pro)s(duce)e(the)i(same)810 -847 y(sequence)31 b(as)f(in)g(bash-5.0)705 981 y Fq(\017)60 -b Fu(If)22 b(the)g(command)g(hash)f(table)i(is)f(empt)m(y)-8 -b(,)25 b(Bash)d(v)m(ersions)g(prior)g(to)h(bash-5.1)f(prin)m(ted)810 -1091 y(an)29 b(informational)i(message)g(to)f(that)g(e\013ect,)h(ev)m -(en)g(when)d(pro)s(ducing)g(output)h(that)810 1200 y(can)40 -b(b)s(e)g(reused)f(as)h(input.)69 b(Bash-5.1)42 b(suppresses)c(that)j -(message)g(when)e(the)i Ft(-l)810 1310 y Fu(option)31 -b(is)f(supplied.)150 1469 y Ft(compat51)e(\(set)h(using)g -(BASH_COMPAT\))705 1579 y Fq(\017)60 b Fu(The)38 b Ft(unset)g -Fu(builtin)g(will)h(unset)f(the)h(arra)m(y)g Ft(a)g Fu(giv)m(en)g(an)g -(argumen)m(t)g(lik)m(e)h(`)p Ft(a[@])p Fu('.)810 1689 -y(Bash-5.2)32 b(will)f(unset)f(an)g(elemen)m(t)i(with)e(k)m(ey)i(`)p -Ft(@)p Fu(')e(\(asso)s(ciativ)m(e)k(arra)m(ys\))d(or)f(remo)m(v)m(e)810 -1798 y(all)h(the)g(elemen)m(ts)h(without)e(unsetting)g(the)h(arra)m(y)g -(\(indexed)f(arra)m(ys\))705 1933 y Fq(\017)60 b Fu(arithmetic)36 -b(commands)e(\()h(\(\(...\)\))55 b(\))f(and)34 b(the)g(expressions)h -(in)f(an)g(arithmetic)i(for)810 2042 y(statemen)m(t)c(can)f(b)s(e)f -(expanded)f(more)i(than)f(once)705 2177 y Fq(\017)60 -b Fu(expressions)22 b(used)g(as)h(argumen)m(ts)g(to)h(arithmetic)f(op)s -(erators)g(in)g(the)g Ft([[)f Fu(conditional)810 2286 -y(command)30 b(can)h(b)s(e)f(expanded)f(more)i(than)f(once)705 -2421 y Fq(\017)60 b Fu(the)35 b(expressions)g(in)g(substring)e +b(Bash)30 b(F)-8 b(eatures)2439 b(112)705 299 y Fq(\017)60 +b Fu(v)-5 b(ariable)28 b(assignmen)m(ts)h(preceding)f(builtins)f(lik)m +(e)i Ft(export)d Fu(and)h Ft(readonly)e Fu(that)j(set)810 +408 y(attributes)37 b(con)m(tin)m(ue)h(to)g(a\013ect)g(v)-5 +b(ariables)37 b(with)g(the)f(same)h(name)g(in)g(the)f(calling)810 +518 y(en)m(vironmen)m(t)31 b(ev)m(en)g(if)f(the)h(shell)g(is)f(not)h +(in)f(p)s(osix)f(mo)s(de)150 677 y Ft(compat50)f(\(set)h(using)g +(BASH_COMPAT\))705 787 y Fq(\017)60 b Fu(Bash-5.1)29 +b(c)m(hanged)g(the)f(w)m(a)m(y)g Ft($RANDOM)e Fu(is)i(generated)h(to)f +(in)m(tro)s(duce)g(sligh)m(tly)h(more)810 897 y(randomness.)39 +b(If)30 b(the)f(shell)h(compatibilit)m(y)i(lev)m(el)f(is)f(set)g(to)h +(50)f(or)g(lo)m(w)m(er,)h(it)f(rev)m(erts)810 1006 y(to)e(the)g(metho)s +(d)f(from)g(bash-5.0)h(and)f(previous)g(v)m(ersions,)i(so)e(seeding)h +(the)g(random)810 1116 y(n)m(um)m(b)s(er)36 b(generator)j(b)m(y)e +(assigning)h(a)g(v)-5 b(alue)38 b(to)g Ft(RANDOM)e Fu(will)i(pro)s +(duce)e(the)i(same)810 1225 y(sequence)31 b(as)f(in)g(bash-5.0)705 +1360 y Fq(\017)60 b Fu(If)22 b(the)g(command)g(hash)f(table)i(is)f +(empt)m(y)-8 b(,)25 b(Bash)d(v)m(ersions)g(prior)g(to)h(bash-5.1)f +(prin)m(ted)810 1469 y(an)29 b(informational)i(message)g(to)f(that)g +(e\013ect,)h(ev)m(en)g(when)d(pro)s(ducing)g(output)h(that)810 +1579 y(can)40 b(b)s(e)g(reused)f(as)h(input.)69 b(Bash-5.1)42 +b(suppresses)c(that)j(message)g(when)e(the)i Ft(-l)810 +1689 y Fu(option)31 b(is)f(supplied.)150 1848 y Ft(compat51)e(\(set)h +(using)g(BASH_COMPAT\))705 1958 y Fq(\017)60 b Fu(The)38 +b Ft(unset)g Fu(builtin)g(will)h(unset)f(the)h(arra)m(y)g +Ft(a)g Fu(giv)m(en)g(an)g(argumen)m(t)g(lik)m(e)h(`)p +Ft(a[@])p Fu('.)810 2067 y(Bash-5.2)32 b(will)f(unset)f(an)g(elemen)m +(t)i(with)e(k)m(ey)i(`)p Ft(@)p Fu(')e(\(asso)s(ciativ)m(e)k(arra)m +(ys\))d(or)f(remo)m(v)m(e)810 2177 y(all)h(the)g(elemen)m(ts)h(without) +e(unsetting)g(the)h(arra)m(y)g(\(indexed)f(arra)m(ys\))705 +2311 y Fq(\017)60 b Fu(arithmetic)36 b(commands)e(\()h(\(\(...\)\))55 +b(\))f(and)34 b(the)g(expressions)h(in)f(an)g(arithmetic)i(for)810 +2421 y(statemen)m(t)c(can)f(b)s(e)f(expanded)f(more)i(than)f(once)705 +2555 y Fq(\017)60 b Fu(expressions)22 b(used)g(as)h(argumen)m(ts)g(to)h +(arithmetic)f(op)s(erators)g(in)g(the)g Ft([[)f Fu(conditional)810 +2665 y(command)30 b(can)h(b)s(e)f(expanded)f(more)i(than)f(once)705 +2800 y Fq(\017)60 b Fu(the)35 b(expressions)g(in)g(substring)e (parameter)j(brace)f(expansion)g(can)g(b)s(e)g(expanded)810 -2531 y(more)c(than)f(once)705 2665 y Fq(\017)60 b Fu(the)39 +2909 y(more)c(than)f(once)705 3044 y Fq(\017)60 b Fu(the)39 b(expressions)f(in)g(the)h($\(\()h(...)66 b(\)\))f(w)m(ord)39 -b(expansion)f(can)h(b)s(e)f(expanded)g(more)810 2775 -y(than)30 b(once)705 2909 y Fq(\017)60 b Fu(arithmetic)36 +b(expansion)f(can)h(b)s(e)f(expanded)g(more)810 3153 +y(than)30 b(once)705 3288 y Fq(\017)60 b Fu(arithmetic)36 b(expressions)f(used)f(as)h(indexed)f(arra)m(y)i(subscripts)d(can)i(b)s -(e)g(expanded)810 3019 y(more)c(than)f(once)705 3153 +(e)g(expanded)810 3397 y(more)c(than)f(once)705 3532 y Fq(\017)60 b Ft(test)29 b(-v)p Fu(,)35 b(when)f(giv)m(en)h(an)g (argumen)m(t)g(of)f(`)p Ft(A[@])p Fu(',)h(where)f Fr(A)h -Fu(is)f(an)h(existing)g(asso-)810 3263 y(ciativ)m(e)h(arra)m(y)-8 +Fu(is)f(an)h(existing)g(asso-)810 3641 y(ciativ)m(e)h(arra)m(y)-8 b(,)37 b(will)d(return)f(true)g(if)h(the)h(arra)m(y)f(has)g(an)m(y)g -(set)g(elemen)m(ts.)53 b(Bash-5.2)810 3372 y(will)31 +(set)g(elemen)m(ts.)53 b(Bash-5.2)810 3751 y(will)31 b(lo)s(ok)g(for)f(and)g(rep)s(ort)f(on)i(a)f(k)m(ey)i(named)d(`)p -Ft(@)p Fu(')705 3507 y Fq(\017)60 b Fu(the)40 b($)p Fi({)p +Ft(@)p Fu(')705 3885 y Fq(\017)60 b Fu(the)40 b($)p Fi({)p Fr(parameter)7 b Fu([:]=)p Fr(v)-5 b(alue)5 b Fi(})42 b Fu(w)m(ord)e(expansion)f(will)i(return)d Fr(v)-5 b(alue)p -Fu(,)43 b(b)s(efore)d(an)m(y)810 3616 y(v)-5 b(ariable-sp)s(eci\014c)34 +Fu(,)43 b(b)s(efore)d(an)m(y)810 3995 y(v)-5 b(ariable-sp)s(eci\014c)34 b(transformations)f(ha)m(v)m(e)h(b)s(een)e(p)s(erformed)f(\(e.g.,)36 -b(con)m(v)m(erting)e(to)810 3726 y(lo)m(w)m(ercase\).)43 +b(con)m(v)m(erting)e(to)810 4105 y(lo)m(w)m(ercase\).)43 b(Bash-5.2)32 b(will)f(return)e(the)i(\014nal)f(v)-5 b(alue)31 b(assigned)f(to)i(the)e(v)-5 b(ariable.)p eop end @@ -16633,39 +16643,43 @@ b Fu(argumen)m(t)30 b(restricts)h(op)s(eration)g(to)g(running)e(jobs.) 150 1275 y Ft(suspend)870 1410 y(suspend)46 b([-f])630 1544 y Fu(Susp)s(end)31 b(the)i(execution)h(of)g(this)f(shell)g(un)m (til)h(it)g(receiv)m(es)h(a)e Ft(SIGCONT)f Fu(signal.)50 -b(A)33 b(login)630 1654 y(shell)28 b(cannot)g(b)s(e)f(susp)s(ended;)g -(the)g Ft(-f)g Fu(option)i(can)f(b)s(e)f(used)g(to)h(o)m(v)m(erride)h -(this)e(and)g(force)630 1763 y(the)k(susp)s(ension.)275 -1923 y(When)f(job)f(con)m(trol)j(is)e(not)h(activ)m(e,)i(the)d +b(A)33 b(login)630 1654 y(shell,)25 b(or)f(a)g(shell)f(without)h(job)f +(con)m(trol)i(enabled,)g(cannot)f(b)s(e)f(susp)s(ended;)h(the)g +Ft(-f)e Fu(option)630 1763 y(can)35 b(b)s(e)g(used)f(to)i(o)m(v)m +(erride)g(this)f(and)f(force)i(the)f(susp)s(ension.)53 +b(The)34 b(return)g(status)h(is)h(0)630 1873 y(unless)43 +b(the)g(shell)h(is)f(a)h(login)g(shell)g(or)f(job)g(con)m(trol)i(is)e +(not)h(enabled)f(and)g Ft(-f)f Fu(is)i(not)630 1983 y(supplied.)275 +2142 y(When)30 b(job)f(con)m(trol)j(is)e(not)h(activ)m(e,)i(the)d Ft(kill)f Fu(and)h Ft(wait)f Fu(builtins)g(do)h(not)h(accept)h -Fr(jobsp)s(ec)j Fu(argu-)150 2032 y(men)m(ts.)41 b(They)30 +Fr(jobsp)s(ec)j Fu(argu-)150 2252 y(men)m(ts.)41 b(They)30 b(m)m(ust)g(b)s(e)g(supplied)f(pro)s(cess)h Fm(id)p Fu(s.)150 -2273 y Fs(7.3)68 b(Job)45 b(Con)l(trol)h(V)-11 b(ariables)150 -2457 y Ft(auto_resume)630 2567 y Fu(This)31 b(v)-5 b(ariable)32 +2492 y Fs(7.3)68 b(Job)45 b(Con)l(trol)h(V)-11 b(ariables)150 +2677 y Ft(auto_resume)630 2786 y Fu(This)31 b(v)-5 b(ariable)32 b(con)m(trols)g(ho)m(w)g(the)f(shell)h(in)m(teracts)h(with)e(the)h -(user)e(and)h(job)g(con)m(trol.)45 b(If)630 2677 y(this)28 +(user)e(and)h(job)g(con)m(trol.)45 b(If)630 2896 y(this)28 b(v)-5 b(ariable)30 b(exists)f(then)f(single)h(w)m(ord)f(simple)h -(commands)f(without)g(redirections)i(are)630 2786 y(treated)h(as)g +(commands)f(without)g(redirections)i(are)630 3005 y(treated)h(as)g (candidates)f(for)g(resumption)g(of)g(an)g(existing)h(job.)41 -b(There)29 b(is)h(no)h(am)m(biguit)m(y)630 2896 y(allo)m(w)m(ed;)f(if)d +b(There)29 b(is)h(no)h(am)m(biguit)m(y)630 3115 y(allo)m(w)m(ed;)f(if)d (there)g(is)g(more)g(than)f(one)h(job)g(b)s(eginning)f(with)g(the)h -(string)g(t)m(yp)s(ed,)g(then)g(the)630 3005 y(most)j(recen)m(tly)h +(string)g(t)m(yp)s(ed,)g(then)g(the)630 3225 y(most)j(recen)m(tly)h (accessed)f(job)f(will)h(b)s(e)f(selected.)42 b(The)29 -b(name)g(of)h(a)g(stopp)s(ed)e(job,)i(in)f(this)630 3115 +b(name)g(of)h(a)g(stopp)s(ed)e(job,)i(in)f(this)630 3334 y(con)m(text,)h(is)e(the)g(command)g(line)g(used)f(to)h(start)g(it.)41 b(If)27 b(this)h(v)-5 b(ariable)28 b(is)g(set)g(to)h(the)e(v)-5 -b(alue)630 3225 y(`)p Ft(exact)p Fu(',)33 b(the)g(string)g(supplied)f +b(alue)630 3444 y(`)p Ft(exact)p Fu(',)33 b(the)g(string)g(supplied)f (m)m(ust)h(matc)m(h)g(the)h(name)f(of)g(a)g(stopp)s(ed)f(job)h -(exactly;)j(if)630 3334 y(set)29 b(to)h(`)p Ft(substring)p +(exactly;)j(if)630 3553 y(set)29 b(to)h(`)p Ft(substring)p Fu(',)d(the)i(string)g(supplied)e(needs)i(to)g(matc)m(h)h(a)f -(substring)f(of)h(the)g(name)630 3444 y(of)38 b(a)f(stopp)s(ed)g(job.) +(substring)f(of)h(the)g(name)630 3663 y(of)38 b(a)f(stopp)s(ed)g(job.) 62 b(The)37 b(`)p Ft(substring)p Fu(')e(v)-5 b(alue)38 b(pro)m(vides)f(functionalit)m(y)i(analogous)g(to)630 -3553 y(the)c(`)p Ft(\045?)p Fu(')g(job)g Fm(id)g Fu(\(see)h(Section)g +3773 y(the)c(`)p Ft(\045?)p Fu(')g(job)g Fm(id)g Fu(\(see)h(Section)g (7.1)g([Job)e(Con)m(trol)i(Basics],)i(page)e(113\).)56 -b(If)34 b(set)i(to)g(an)m(y)630 3663 y(other)c(v)-5 b(alue,)32 +b(If)34 b(set)i(to)g(an)m(y)630 3882 y(other)c(v)-5 b(alue,)32 b(the)g(supplied)e(string)i(m)m(ust)f(b)s(e)g(a)h(pre\014x)f(of)h(a)g -(stopp)s(ed)e(job's)i(name;)g(this)630 3773 y(pro)m(vides)e +(stopp)s(ed)e(job's)i(name;)g(this)630 3992 y(pro)m(vides)e (functionalit)m(y)i(analogous)g(to)f(the)g(`)p Ft(\045)p Fu(')f(job)g Fm(id)p Fu(.)p eop end %%Page: 117 123 diff --git a/doc/bashref.texi b/doc/bashref.texi index c5e7e2b5..27dbe369 100644 --- a/doc/bashref.texi +++ b/doc/bashref.texi @@ -801,7 +801,9 @@ the time information. If the pipeline is not executed asynchronously (@pxref{Lists}), the shell waits for all commands in the pipeline to complete. -Each command in a pipeline is executed in its own @dfn{subshell}, which is a +Each command in a multi-command pipeline, +where pipes are created, +is executed in its own @dfn{subshell}, which is a separate process (@pxref{Command Execution Environment}). If the @code{lastpipe} option is enabled using the @code{shopt} builtin (@pxref{The Shopt Builtin}), @@ -1333,6 +1335,11 @@ expression are saved in the remaining @code{BASH_REMATCH} indices. The element of @code{BASH_REMATCH} with index @var{n} is the portion of the string matching the @var{n}th parenthesized subexpression. +Bash sets +@code{BASH_REMATCH} +in the global scope; declaring it as a local variable will lead to +unexpected results. + Expressions may be combined using the following operators, listed in decreasing order of precedence: @@ -2863,7 +2870,9 @@ then any character not enclosed is matched. A @samp{@minus{}} may be matched by including it as the first or last character in the set. A @samp{]} may be matched by including it as the first character in the set. -The sorting order of characters in range expressions is determined by +The sorting order of characters in range expressions, +and the characters included in the range, +are determined by the current locale and the values of the @env{LC_COLLATE} and @env{LC_ALL} shell variables, if set. @@ -7101,10 +7110,12 @@ No other startup files are read. @subsubheading Invoked by remote shell daemon Bash attempts to determine when it is being run with its standard input -connected to a network connection, as when executed by the remote shell -daemon, usually @code{rshd}, or the secure shell daemon @code{sshd}. -If Bash determines it is being run in -this fashion, it reads and executes commands from @file{~/.bashrc}, if that +connected to a network connection, as when executed by +the historical remote shell daemon, usually @code{rshd}, +or the secure shell daemon @code{sshd}. +If Bash +determines it is being run non-interactively in this fashion, +it reads and executes commands from @file{~/.bashrc}, if that file exists and is readable. It will not do this if invoked as @code{sh}. The @option{--norc} option may be used to inhibit this behavior, and the @@ -8398,6 +8409,12 @@ has been set. If Bash receives a trapped signal while executing @code{read}, the trap handler executes and @code{read} returns an exit status greater than 128. +@item +The @code{printf} builting uses @code{double} (via @code{strtod}) to convert +arguments corresponding to floating point conversion specifiers, instead of +@code{long double} if it's available. The @samp{L} length modifier forces +@code{printf} to use @code{long double} if it's available. + @item Bash removes an exited background process's status from the list of such statuses after the @code{wait} builtin is used to obtain it. @@ -8905,8 +8922,16 @@ suspend [-f] Suspend the execution of this shell until it receives a @code{SIGCONT} signal. -A login shell cannot be suspended; the @option{-f} +A login shell, +or a shell without job control enabled, +cannot be suspended; the @option{-f} option can be used to override this and force the suspension. +The return status is 0 unless the shell is a login shell +or job control is not enabled +and +@option{-f} +is not supplied. + @end table When job control is not active, the @code{kill} and @code{wait} diff --git a/doc/builtins.0 b/doc/builtins.0 index ea5b1030..ff5ee7ac 100644 --- a/doc/builtins.0 +++ b/doc/builtins.0 @@ -1679,28 +1679,29 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS ssuussppeenndd [--ff] Suspend the execution of this shell until it receives a SSIIGGCCOONNTT - signal. A login shell cannot be suspended; the --ff option can be - used to override this and force the suspension. The return sta- - tus is 0 unless the shell is a login shell and --ff is not sup- - plied, or if job control is not enabled. + signal. A login shell, or a shell without job control enabled, + cannot be suspended; the --ff option can be used to override this + and force the suspension. The return status is 0 unless the + shell is a login shell or job control is not enabled and --ff is + not supplied. tteesstt _e_x_p_r [[ _e_x_p_r ]] Return a status of 0 (true) or 1 (false) depending on the evalu- ation of the conditional expression _e_x_p_r. Each operator and op- - erand must be a separate argument. Expressions are composed of - the primaries described in the bbaasshh manual page under CCOONNDDII-- - TTIIOONNAALL EEXXPPRREESSSSIIOONNSS. tteesstt does not accept any options, nor does - it accept and ignore an argument of ---- as signifying the end of + erand must be a separate argument. Expressions are composed of + the primaries described in the bbaasshh manual page under CCOONNDDII-- + TTIIOONNAALL EEXXPPRREESSSSIIOONNSS. tteesstt does not accept any options, nor does + it accept and ignore an argument of ---- as signifying the end of options. - Expressions may be combined using the following operators, - listed in decreasing order of precedence. The evaluation de- - pends on the number of arguments; see below. Operator prece- + Expressions may be combined using the following operators, + listed in decreasing order of precedence. The evaluation de- + pends on the number of arguments; see below. Operator prece- dence is used when there are five or more arguments. !! _e_x_p_r True if _e_x_p_r is false. (( _e_x_p_r )) - Returns the value of _e_x_p_r. This may be used to override + Returns the value of _e_x_p_r. This may be used to override the normal precedence of operators. _e_x_p_r_1 -aa _e_x_p_r_2 True if both _e_x_p_r_1 and _e_x_p_r_2 are true. @@ -1717,139 +1718,139 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS null. 2 arguments If the first argument is !!, the expression is true if and - only if the second argument is null. If the first argu- - ment is one of the unary conditional operators listed - above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the expression is + only if the second argument is null. If the first argu- + ment is one of the unary conditional operators listed + above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the expression is true if the unary test is true. If the first argument is not a valid unary conditional operator, the expression is false. 3 arguments The following conditions are applied in the order listed. - If the second argument is one of the binary conditional + If the second argument is one of the binary conditional operators listed above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the result of the expression is the result of the binary test - using the first and third arguments as operands. The --aa - and --oo operators are considered binary operators when - there are three arguments. If the first argument is !!, - the value is the negation of the two-argument test using + using the first and third arguments as operands. The --aa + and --oo operators are considered binary operators when + there are three arguments. If the first argument is !!, + the value is the negation of the two-argument test using the second and third arguments. If the first argument is exactly (( and the third argument is exactly )), the result - is the one-argument test of the second argument. Other- + is the one-argument test of the second argument. Other- wise, the expression is false. 4 arguments The following conditions are applied in the order listed. If the first argument is !!, the result is the negation of - the three-argument expression composed of the remaining - arguments. the two-argument test using the second and - third arguments. If the first argument is exactly (( and - the fourth argument is exactly )), the result is the two- - argument test of the second and third arguments. Other- + the three-argument expression composed of the remaining + arguments. the two-argument test using the second and + third arguments. If the first argument is exactly (( and + the fourth argument is exactly )), the result is the two- + argument test of the second and third arguments. Other- wise, the expression is parsed and evaluated according to precedence using the rules listed above. 5 or more arguments - The expression is parsed and evaluated according to + The expression is parsed and evaluated according to precedence using the rules listed above. - When used with tteesstt or [[, the << and >> operators sort lexico- + When used with tteesstt or [[, the << and >> operators sort lexico- graphically using ASCII ordering. - ttiimmeess Print the accumulated user and system times for the shell and + ttiimmeess Print the accumulated user and system times for the shell and for processes run from the shell. The return status is 0. ttrraapp [--llpp] [[_a_r_g] _s_i_g_s_p_e_c ...] - The command _a_r_g is to be read and executed when the shell re- + The command _a_r_g is to be read and executed when the shell re- ceives signal(s) _s_i_g_s_p_e_c. If _a_r_g is absent (and there is a sin- - gle _s_i_g_s_p_e_c) or --, each specified signal is reset to its origi- - nal disposition (the value it had upon entrance to the shell). - If _a_r_g is the null string the signal specified by each _s_i_g_s_p_e_c - is ignored by the shell and by the commands it invokes. If _a_r_g - is not present and --pp has been supplied, then the trap commands + gle _s_i_g_s_p_e_c) or --, each specified signal is reset to its origi- + nal disposition (the value it had upon entrance to the shell). + If _a_r_g is the null string the signal specified by each _s_i_g_s_p_e_c + is ignored by the shell and by the commands it invokes. If _a_r_g + is not present and --pp has been supplied, then the trap commands associated with each _s_i_g_s_p_e_c are displayed. If no arguments are - supplied or if only --pp is given, ttrraapp prints the list of com- - mands associated with each signal. The --ll option causes the - shell to print a list of signal names and their corresponding - numbers. Each _s_i_g_s_p_e_c is either a signal name defined in <_s_i_g_- - _n_a_l_._h>, or a signal number. Signal names are case insensitive + supplied or if only --pp is given, ttrraapp prints the list of com- + mands associated with each signal. The --ll option causes the + shell to print a list of signal names and their corresponding + numbers. Each _s_i_g_s_p_e_c is either a signal name defined in <_s_i_g_- + _n_a_l_._h>, or a signal number. Signal names are case insensitive and the SSIIGG prefix is optional. - If a _s_i_g_s_p_e_c is EEXXIITT (0) the command _a_r_g is executed on exit - from the shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, the command _a_r_g is exe- - cuted before every _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, - _s_e_l_e_c_t command, every arithmetic _f_o_r command, and before the - first command executes in a shell function (see SSHHEELLLL GGRRAAMMMMAARR - above). Refer to the description of the eexxttddeebbuugg option to the + If a _s_i_g_s_p_e_c is EEXXIITT (0) the command _a_r_g is executed on exit + from the shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, the command _a_r_g is exe- + cuted before every _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, + _s_e_l_e_c_t command, every arithmetic _f_o_r command, and before the + first command executes in a shell function (see SSHHEELLLL GGRRAAMMMMAARR + above). Refer to the description of the eexxttddeebbuugg option to the sshhoopptt builtin for details of its effect on the DDEEBBUUGG trap. If a _s_i_g_s_p_e_c is RREETTUURRNN, the command _a_r_g is executed each time a shell function or a script executed with the .. or ssoouurrccee builtins fin- ishes executing. - If a _s_i_g_s_p_e_c is EERRRR, the command _a_r_g is executed whenever a + If a _s_i_g_s_p_e_c is EERRRR, the command _a_r_g is executed whenever a pipeline (which may consist of a single simple command), a list, or a compound command returns a non-zero exit status, subject to - the following conditions. The EERRRR trap is not executed if the + the following conditions. The EERRRR trap is not executed if the failed command is part of the command list immediately following - a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, + a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, part of a command executed in a &&&& or |||| list except the command - following the final &&&& or ||||, any command in a pipeline but the - last, or if the command's return value is being inverted using + following the final &&&& or ||||, any command in a pipeline but the + last, or if the command's return value is being inverted using !!. These are the same conditions obeyed by the eerrrreexxiitt (--ee) op- tion. Signals ignored upon entry to the shell cannot be trapped or re- - set. Trapped signals that are not being ignored are reset to + set. Trapped signals that are not being ignored are reset to their original values in a subshell or subshell environment when - one is created. The return status is false if any _s_i_g_s_p_e_c is + one is created. The return status is false if any _s_i_g_s_p_e_c is invalid; otherwise ttrraapp returns true. ttyyppee [--aaffttppPP] _n_a_m_e [_n_a_m_e ...] - With no options, indicate how each _n_a_m_e would be interpreted if + With no options, indicate how each _n_a_m_e would be interpreted if used as a command name. If the --tt option is used, ttyyppee prints a - string which is one of _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or - _f_i_l_e if _n_a_m_e is an alias, shell reserved word, function, - builtin, or disk file, respectively. If the _n_a_m_e is not found, - then nothing is printed, and an exit status of false is re- - turned. If the --pp option is used, ttyyppee either returns the name - of the disk file that would be executed if _n_a_m_e were specified - as a command name, or nothing if ``type -t name'' would not re- - turn _f_i_l_e. The --PP option forces a PPAATTHH search for each _n_a_m_e, + string which is one of _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or + _f_i_l_e if _n_a_m_e is an alias, shell reserved word, function, + builtin, or disk file, respectively. If the _n_a_m_e is not found, + then nothing is printed, and an exit status of false is re- + turned. If the --pp option is used, ttyyppee either returns the name + of the disk file that would be executed if _n_a_m_e were specified + as a command name, or nothing if ``type -t name'' would not re- + turn _f_i_l_e. The --PP option forces a PPAATTHH search for each _n_a_m_e, even if ``type -t name'' would not return _f_i_l_e. If a command is hashed, --pp and --PP print the hashed value, which is not necessar- - ily the file that appears first in PPAATTHH. If the --aa option is - used, ttyyppee prints all of the places that contain an executable + ily the file that appears first in PPAATTHH. If the --aa option is + used, ttyyppee prints all of the places that contain an executable named _n_a_m_e. This includes aliases and functions, if and only if the --pp option is not also used. The table of hashed commands is - not consulted when using --aa. The --ff option suppresses shell + not consulted when using --aa. The --ff option suppresses shell function lookup, as with the ccoommmmaanndd builtin. ttyyppee returns true if all of the arguments are found, false if any are not found. uulliimmiitt [--HHSS] --aa uulliimmiitt [--HHSS] [--bbccddeeffiikkllmmnnppqqrrssttuuvvxxPPRRTT [_l_i_m_i_t]] - Provides control over the resources available to the shell and - to processes started by it, on systems that allow such control. + Provides control over the resources available to the shell and + to processes started by it, on systems that allow such control. The --HH and --SS options specify that the hard or soft limit is set - for the given resource. A hard limit cannot be increased by a - non-root user once it is set; a soft limit may be increased up - to the value of the hard limit. If neither --HH nor --SS is speci- + for the given resource. A hard limit cannot be increased by a + non-root user once it is set; a soft limit may be increased up + to the value of the hard limit. If neither --HH nor --SS is speci- fied, both the soft and hard limits are set. The value of _l_i_m_i_t can be a number in the unit specified for the resource or one of the special values hhaarrdd, ssoofftt, or uunnlliimmiitteedd, which stand for the - current hard limit, the current soft limit, and no limit, re- - spectively. If _l_i_m_i_t is omitted, the current value of the soft + current hard limit, the current soft limit, and no limit, re- + spectively. If _l_i_m_i_t is omitted, the current value of the soft limit of the resource is printed, unless the --HH option is given. - When more than one resource is specified, the limit name and - unit, if appropriate, are printed before the value. Other op- + When more than one resource is specified, the limit name and + unit, if appropriate, are printed before the value. Other op- tions are interpreted as follows: --aa All current limits are reported; no limits are set --bb The maximum socket buffer size --cc The maximum size of core files created --dd The maximum size of a process's data segment --ee The maximum scheduling priority ("nice") - --ff The maximum size of files written by the shell and its + --ff The maximum size of files written by the shell and its children --ii The maximum number of pending signals --kk The maximum number of kqueues that may be allocated --ll The maximum size that may be locked into memory - --mm The maximum resident set size (many systems do not honor + --mm The maximum resident set size (many systems do not honor this limit) --nn The maximum number of open file descriptors (most systems do not allow this value to be set) @@ -1858,132 +1859,132 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS --rr The maximum real-time scheduling priority --ss The maximum stack size --tt The maximum amount of cpu time in seconds - --uu The maximum number of processes available to a single + --uu The maximum number of processes available to a single user - --vv The maximum amount of virtual memory available to the + --vv The maximum amount of virtual memory available to the shell and, on some systems, to its children --xx The maximum number of file locks --PP The maximum number of pseudoterminals - --RR The maximum time a real-time process can run before + --RR The maximum time a real-time process can run before blocking, in microseconds --TT The maximum number of threads - If _l_i_m_i_t is given, and the --aa option is not used, _l_i_m_i_t is the - new value of the specified resource. If no option is given, - then --ff is assumed. Values are in 1024-byte increments, except - for --tt, which is in seconds; --RR, which is in microseconds; --pp, - which is in units of 512-byte blocks; --PP, --TT, --bb, --kk, --nn, and - --uu, which are unscaled values; and, when in posix mode, --cc and - --ff, which are in 512-byte increments. The return status is 0 - unless an invalid option or argument is supplied, or an error + If _l_i_m_i_t is given, and the --aa option is not used, _l_i_m_i_t is the + new value of the specified resource. If no option is given, + then --ff is assumed. Values are in 1024-byte increments, except + for --tt, which is in seconds; --RR, which is in microseconds; --pp, + which is in units of 512-byte blocks; --PP, --TT, --bb, --kk, --nn, and + --uu, which are unscaled values; and, when in posix mode, --cc and + --ff, which are in 512-byte increments. The return status is 0 + unless an invalid option or argument is supplied, or an error occurs while setting a new limit. uummaasskk [--pp] [--SS] [_m_o_d_e] The user file-creation mask is set to _m_o_d_e. If _m_o_d_e begins with - a digit, it is interpreted as an octal number; otherwise it is - interpreted as a symbolic mode mask similar to that accepted by - _c_h_m_o_d(1). If _m_o_d_e is omitted, the current value of the mask is - printed. The --SS option causes the mask to be printed in sym- - bolic form; the default output is an octal number. If the --pp + a digit, it is interpreted as an octal number; otherwise it is + interpreted as a symbolic mode mask similar to that accepted by + _c_h_m_o_d(1). If _m_o_d_e is omitted, the current value of the mask is + printed. The --SS option causes the mask to be printed in sym- + bolic form; the default output is an octal number. If the --pp option is supplied, and _m_o_d_e is omitted, the output is in a form that may be reused as input. The return status is 0 if the mode - was successfully changed or if no _m_o_d_e argument was supplied, + was successfully changed or if no _m_o_d_e argument was supplied, and false otherwise. uunnaalliiaass [-aa] [_n_a_m_e ...] - Remove each _n_a_m_e from the list of defined aliases. If --aa is - supplied, all alias definitions are removed. The return value + Remove each _n_a_m_e from the list of defined aliases. If --aa is + supplied, all alias definitions are removed. The return value is true unless a supplied _n_a_m_e is not a defined alias. uunnsseett [-ffvv] [-nn] [_n_a_m_e ...] - For each _n_a_m_e, remove the corresponding variable or function. + For each _n_a_m_e, remove the corresponding variable or function. If the --vv option is given, each _n_a_m_e refers to a shell variable, - and that variable is removed. Read-only variables may not be - unset. If --ff is specified, each _n_a_m_e refers to a shell func- - tion, and the function definition is removed. If the --nn option - is supplied, and _n_a_m_e is a variable with the _n_a_m_e_r_e_f attribute, - _n_a_m_e will be unset rather than the variable it references. --nn - has no effect if the --ff option is supplied. If no options are - supplied, each _n_a_m_e refers to a variable; if there is no vari- - able by that name, a function with that name, if any, is unset. - Each unset variable or function is removed from the environment - passed to subsequent commands. If any of BBAASSHH__AALLIIAASSEESS, + and that variable is removed. Read-only variables may not be + unset. If --ff is specified, each _n_a_m_e refers to a shell func- + tion, and the function definition is removed. If the --nn option + is supplied, and _n_a_m_e is a variable with the _n_a_m_e_r_e_f attribute, + _n_a_m_e will be unset rather than the variable it references. --nn + has no effect if the --ff option is supplied. If no options are + supplied, each _n_a_m_e refers to a variable; if there is no vari- + able by that name, a function with that name, if any, is unset. + Each unset variable or function is removed from the environment + passed to subsequent commands. If any of BBAASSHH__AALLIIAASSEESS, BBAASSHH__AARRGGVV00, BBAASSHH__CCMMDDSS, BBAASSHH__CCOOMMMMAANNDD, BBAASSHH__SSUUBBSSHHEELLLL, BBAASSHHPPIIDD, - CCOOMMPP__WWOORRDDBBRREEAAKKSS, DDIIRRSSTTAACCKK, EEPPOOCCHHRREEAALLTTIIMMEE, EEPPOOCCHHSSEECCOONNDDSS, FFUUNNCC-- - NNAAMMEE, GGRROOUUPPSS, HHIISSTTCCMMDD, LLIINNEENNOO, RRAANNDDOOMM, SSEECCOONNDDSS, or SSRRAANNDDOOMM are + CCOOMMPP__WWOORRDDBBRREEAAKKSS, DDIIRRSSTTAACCKK, EEPPOOCCHHRREEAALLTTIIMMEE, EEPPOOCCHHSSEECCOONNDDSS, FFUUNNCC-- + NNAAMMEE, GGRROOUUPPSS, HHIISSTTCCMMDD, LLIINNEENNOO, RRAANNDDOOMM, SSEECCOONNDDSS, or SSRRAANNDDOOMM are unset, they lose their special properties, even if they are sub- sequently reset. The exit status is true unless a _n_a_m_e is read- only or may not be unset. wwaaiitt [--ffnn] [--pp _v_a_r_n_a_m_e] [_i_d _._._.] Wait for each specified child process and return its termination - status. Each _i_d may be a process ID or a job specification; if - a job spec is given, all processes in that job's pipeline are - waited for. If _i_d is not given, wwaaiitt waits for all running - background jobs and the last-executed process substitution, if + status. Each _i_d may be a process ID or a job specification; if + a job spec is given, all processes in that job's pipeline are + waited for. If _i_d is not given, wwaaiitt waits for all running + background jobs and the last-executed process substitution, if its process id is the same as $$!!, and the return status is zero. - If the --nn option is supplied, wwaaiitt waits for a single job from + If the --nn option is supplied, wwaaiitt waits for a single job from the list of _i_ds or, if no _i_ds are supplied, any job, to complete - and returns its exit status. If none of the supplied arguments + and returns its exit status. If none of the supplied arguments is a child of the shell, or if no arguments are supplied and the - shell has no unwaited-for children, the exit status is 127. If - the --pp option is supplied, the process or job identifier of the - job for which the exit status is returned is assigned to the - variable _v_a_r_n_a_m_e named by the option argument. The variable - will be unset initially, before any assignment. This is useful - only when the --nn option is supplied. Supplying the --ff option, - when job control is enabled, forces wwaaiitt to wait for _i_d to ter- + shell has no unwaited-for children, the exit status is 127. If + the --pp option is supplied, the process or job identifier of the + job for which the exit status is returned is assigned to the + variable _v_a_r_n_a_m_e named by the option argument. The variable + will be unset initially, before any assignment. This is useful + only when the --nn option is supplied. Supplying the --ff option, + when job control is enabled, forces wwaaiitt to wait for _i_d to ter- minate before returning its status, instead of returning when it - changes status. If _i_d specifies a non-existent process or job, - the return status is 127. Otherwise, the return status is the + changes status. If _i_d specifies a non-existent process or job, + the return status is 127. Otherwise, the return status is the exit status of the last process or job waited for. SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE - Bash-4.0 introduced the concept of a _s_h_e_l_l _c_o_m_p_a_t_i_b_i_l_i_t_y _l_e_v_e_l, speci- - fied as a set of options to the shopt builtin ( ccoommppaatt3311, ccoommppaatt3322, - ccoommppaatt4400, ccoommppaatt4411, and so on). There is only one current compatibil- - ity level -- each option is mutually exclusive. The compatibility - level is intended to allow users to select behavior from previous ver- - sions that is incompatible with newer versions while they migrate - scripts to use current features and behavior. It's intended to be a + Bash-4.0 introduced the concept of a _s_h_e_l_l _c_o_m_p_a_t_i_b_i_l_i_t_y _l_e_v_e_l, speci- + fied as a set of options to the shopt builtin ( ccoommppaatt3311, ccoommppaatt3322, + ccoommppaatt4400, ccoommppaatt4411, and so on). There is only one current compatibil- + ity level -- each option is mutually exclusive. The compatibility + level is intended to allow users to select behavior from previous ver- + sions that is incompatible with newer versions while they migrate + scripts to use current features and behavior. It's intended to be a temporary solution. - This section does not mention behavior that is standard for a particu- - lar version (e.g., setting ccoommppaatt3322 means that quoting the rhs of the - regexp matching operator quotes special regexp characters in the word, + This section does not mention behavior that is standard for a particu- + lar version (e.g., setting ccoommppaatt3322 means that quoting the rhs of the + regexp matching operator quotes special regexp characters in the word, which is default behavior in bash-3.2 and above). - If a user enables, say, ccoommppaatt3322, it may affect the behavior of other - compatibility levels up to and including the current compatibility - level. The idea is that each compatibility level controls behavior - that changed in that version of bbaasshh, but that behavior may have been - present in earlier versions. For instance, the change to use locale- - based comparisons with the [[[[ command came in bash-4.1, and earlier + If a user enables, say, ccoommppaatt3322, it may affect the behavior of other + compatibility levels up to and including the current compatibility + level. The idea is that each compatibility level controls behavior + that changed in that version of bbaasshh, but that behavior may have been + present in earlier versions. For instance, the change to use locale- + based comparisons with the [[[[ command came in bash-4.1, and earlier versions used ASCII-based comparisons, so enabling ccoommppaatt3322 will enable - ASCII-based comparisons as well. That granularity may not be suffi- - cient for all uses, and as a result users should employ compatibility - levels carefully. Read the documentation for a particular feature to + ASCII-based comparisons as well. That granularity may not be suffi- + cient for all uses, and as a result users should employ compatibility + levels carefully. Read the documentation for a particular feature to find out the current behavior. - Bash-4.3 introduced a new shell variable: BBAASSHH__CCOOMMPPAATT. The value as- + Bash-4.3 introduced a new shell variable: BBAASSHH__CCOOMMPPAATT. The value as- signed to this variable (a decimal version number like 4.2, or an inte- - ger corresponding to the ccoommppaatt_N_N option, like 42) determines the com- + ger corresponding to the ccoommppaatt_N_N option, like 42) determines the com- patibility level. - Starting with bash-4.4, Bash has begun deprecating older compatibility - levels. Eventually, the options will be removed in favor of BBAASSHH__CCOOMM-- + Starting with bash-4.4, Bash has begun deprecating older compatibility + levels. Eventually, the options will be removed in favor of BBAASSHH__CCOOMM-- PPAATT. - Bash-5.0 is the final version for which there will be an individual - shopt option for the previous version. Users should use BBAASSHH__CCOOMMPPAATT on + Bash-5.0 is the final version for which there will be an individual + shopt option for the previous version. Users should use BBAASSHH__CCOOMMPPAATT on bash-5.0 and later versions. - The following table describes the behavior changes controlled by each + The following table describes the behavior changes controlled by each compatibility level setting. The ccoommppaatt_N_N tag is used as shorthand for setting the compatibility level to _N_N using one of the following mecha- - nisms. For versions prior to bash-5.0, the compatibility level may be - set using the corresponding ccoommppaatt_N_N shopt option. For bash-4.3 and - later versions, the BBAASSHH__CCOOMMPPAATT variable is preferred, and it is re- + nisms. For versions prior to bash-5.0, the compatibility level may be + set using the corresponding ccoommppaatt_N_N shopt option. For bash-4.3 and + later versions, the BBAASSHH__CCOOMMPPAATT variable is preferred, and it is re- quired for bash-5.1 and later versions. ccoommppaatt3311 @@ -1991,85 +1992,85 @@ SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE ator (=~) has no special effect ccoommppaatt3322 - +o interrupting a command list such as "a ; b ; c" causes - the execution of the next command in the list (in - bash-4.0 and later versions, the shell acts as if it re- - ceived the interrupt, so interrupting one command in a + +o interrupting a command list such as "a ; b ; c" causes + the execution of the next command in the list (in + bash-4.0 and later versions, the shell acts as if it re- + ceived the interrupt, so interrupting one command in a list aborts the execution of the entire list) ccoommppaatt4400 - +o the << and >> operators to the [[[[ command do not consider + +o the << and >> operators to the [[[[ command do not consider the current locale when comparing strings; they use ASCII ordering. Bash versions prior to bash-4.1 use ASCII col- - lation and _s_t_r_c_m_p(3); bash-4.1 and later use the current + lation and _s_t_r_c_m_p(3); bash-4.1 and later use the current locale's collation sequence and _s_t_r_c_o_l_l(3). ccoommppaatt4411 - +o in _p_o_s_i_x mode, ttiimmee may be followed by options and still + +o in _p_o_s_i_x mode, ttiimmee may be followed by options and still be recognized as a reserved word (this is POSIX interpre- tation 267) +o in _p_o_s_i_x mode, the parser requires that an even number of - single quotes occur in the _w_o_r_d portion of a double- - quoted parameter expansion and treats them specially, so - that characters within the single quotes are considered + single quotes occur in the _w_o_r_d portion of a double- + quoted parameter expansion and treats them specially, so + that characters within the single quotes are considered quoted (this is POSIX interpretation 221) ccoommppaatt4422 +o the replacement string in double-quoted pattern substitu- - tion does not undergo quote removal, as it does in ver- + tion does not undergo quote removal, as it does in ver- sions after bash-4.2 - +o in posix mode, single quotes are considered special when - expanding the _w_o_r_d portion of a double-quoted parameter - expansion and can be used to quote a closing brace or - other special character (this is part of POSIX interpre- - tation 221); in later versions, single quotes are not + +o in posix mode, single quotes are considered special when + expanding the _w_o_r_d portion of a double-quoted parameter + expansion and can be used to quote a closing brace or + other special character (this is part of POSIX interpre- + tation 221); in later versions, single quotes are not special within double-quoted word expansions ccoommppaatt4433 - +o the shell does not print a warning message if an attempt - is made to use a quoted compound assignment as an argu- - ment to declare (declare -a foo='(1 2)'). Later versions + +o the shell does not print a warning message if an attempt + is made to use a quoted compound assignment as an argu- + ment to declare (declare -a foo='(1 2)'). Later versions warn that this usage is deprecated - +o word expansion errors are considered non-fatal errors - that cause the current command to fail, even in posix - mode (the default behavior is to make them fatal errors + +o word expansion errors are considered non-fatal errors + that cause the current command to fail, even in posix + mode (the default behavior is to make them fatal errors that cause the shell to exit) - +o when executing a shell function, the loop state + +o when executing a shell function, the loop state (while/until/etc.) is not reset, so bbrreeaakk or ccoonnttiinnuuee in that function will break or continue loops in the calling - context. Bash-4.4 and later reset the loop state to pre- + context. Bash-4.4 and later reset the loop state to pre- vent this ccoommppaatt4444 - +o the shell sets up the values used by BBAASSHH__AARRGGVV and - BBAASSHH__AARRGGCC so they can expand to the shell's positional + +o the shell sets up the values used by BBAASSHH__AARRGGVV and + BBAASSHH__AARRGGCC so they can expand to the shell's positional parameters even if extended debugging mode is not enabled - +o a subshell inherits loops from its parent context, so - bbrreeaakk or ccoonnttiinnuuee will cause the subshell to exit. - Bash-5.0 and later reset the loop state to prevent the + +o a subshell inherits loops from its parent context, so + bbrreeaakk or ccoonnttiinnuuee will cause the subshell to exit. + Bash-5.0 and later reset the loop state to prevent the exit - +o variable assignments preceding builtins like eexxppoorrtt and + +o variable assignments preceding builtins like eexxppoorrtt and rreeaaddoonnllyy that set attributes continue to affect variables with the same name in the calling environment even if the shell is not in posix mode ccoommppaatt5500 - +o Bash-5.1 changed the way $$RRAANNDDOOMM is generated to intro- + +o Bash-5.1 changed the way $$RRAANNDDOOMM is generated to intro- duce slightly more randomness. If the shell compatibility - level is set to 50 or lower, it reverts to the method - from bash-5.0 and previous versions, so seeding the ran- - dom number generator by assigning a value to RRAANNDDOOMM will + level is set to 50 or lower, it reverts to the method + from bash-5.0 and previous versions, so seeding the ran- + dom number generator by assigning a value to RRAANNDDOOMM will produce the same sequence as in bash-5.0 - +o If the command hash table is empty, bash versions prior - to bash-5.1 printed an informational message to that ef- - fect, even when producing output that can be reused as - input. Bash-5.1 suppresses that message when the --ll op- + +o If the command hash table is empty, bash versions prior + to bash-5.1 printed an informational message to that ef- + fect, even when producing output that can be reused as + input. Bash-5.1 suppresses that message when the --ll op- tion is supplied. ccoommppaatt5511 - +o The uunnsseett builtin treats attempts to unset array sub- - scripts @@ and ** differently depending on whether the ar- - ray is indexed or associative, and differently than in + +o The uunnsseett builtin treats attempts to unset array sub- + scripts @@ and ** differently depending on whether the ar- + ray is indexed or associative, and differently than in previous versions. SSEEEE AALLSSOO diff --git a/doc/builtins.ps b/doc/builtins.ps index cd172991..2a0a4795 100644 --- a/doc/builtins.ps +++ b/doc/builtins.ps @@ -1,6 +1,6 @@ %!PS-Adobe-3.0 %%Creator: groff version 1.22.4 -%%CreationDate: Fri Apr 8 15:46:03 2022 +%%CreationDate: Mon Jun 13 11:04:35 2022 %%DocumentNeededResources: font Times-Roman %%+ font Times-Bold %%+ font Times-Italic @@ -2782,195 +2782,194 @@ he)184 283.2 R/F3 10/Times-Italic@0 SF({varname})3.24 E F0(redi-)3.24 E (ving them open when the com-)-.2 F(mand completes.)184 307.2 Q F1 (xpg_echo)144 324 Q F0(If set, the)184 336 Q F1(echo)2.5 E F0 -.2(bu)2.5 G(iltin e).2 E(xpands backslash-escape sequences by def)-.15 E(ault.)-.1 -E F1(suspend)108 352.8 Q F0([)2.5 E F1A F0(])A 1.001 -(Suspend the e)144 364.8 R -.15(xe)-.15 G 1.001 -(cution of this shell until it recei).15 F -.15(ve)-.25 G 3.501(sa).15 G -F2(SIGCONT)A F0 3.502(signal. A)3.252 F 1.002(login shell cannot be) -3.502 F .023(suspended; the)144 376.8 R F12.523 E F0 .023 -(option can be used to o)2.523 F -.15(ve)-.15 G .022 -(rride this and force the suspension.).15 F .022(The return status is) -5.022 F 2.5(0u)144 388.8 S(nless the shell is a login shell and)-2.5 E -F12.5 E F0(is not supplied, or if job control is not enabled.)2.5 -E F1(test)108 405.6 Q F3 -.2(ex)2.5 G(pr).2 E F1([)108 417.6 Q F3 -.2 -(ex)2.5 G(pr).2 E F1(])2.5 E F0 .877 -(Return a status of 0 \(true\) or 1 \(f)144 417.6 R .878 -(alse\) depending on the e)-.1 F -.25(va)-.25 G .878 -(luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 429.6 +E F1(suspend)108 352.8 Q F0([)2.5 E F1A F0(])A .909(Suspend the e) +144 364.8 R -.15(xe)-.15 G .909(cution of this shell until it recei).15 +F -.15(ve)-.25 G 3.41(sa).15 G F2(SIGCONT)A F0 3.41(signal. A)3.16 F .91 +(login shell, or a shell)3.41 F .753 +(without job control enabled, cannot be suspended; the)144 376.8 R F1 +3.253 E F0 .752(option can be used to o)3.252 F -.15(ve)-.15 G +.752(rride this and).15 F .107(force the suspension.)144 388.8 R .107(T\ +he return status is 0 unless the shell is a login shell or job control \ +is not en-)5.107 F(abled and)144 400.8 Q F12.5 E F0 +(is not supplied.)2.5 E F1(test)108 417.6 Q F3 -.2(ex)2.5 G(pr).2 E F1 +([)108 429.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .878 +(Return a status of 0 \(true\) or 1 \(f)144 429.6 R .877 +(alse\) depending on the e)-.1 F -.25(va)-.25 G .877 +(luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 441.6 S(pr).2 E F0 5.53(.E).73 G .53 (ach operator and operand must be a separate ar)-5.53 F 3.03 -(gument. Expressions)-.18 F .53(are composed of the)3.03 F .072 -(primaries described in the)144 441.6 R F1(bash)2.573 E F0 .073 +(gument. Expressions)-.18 F .53(are composed of the)3.03 F .073 +(primaries described in the)144 453.6 R F1(bash)2.573 E F0 .073 (manual page under)2.573 F F2(CONDITION)2.573 E .073(AL EXPRESSIONS)-.18 -F/F4 9/Times-Roman@0 SF(.)A F1(test)4.573 E F0 .073(does not)2.573 F -.695(accept an)144 453.6 R 3.195(yo)-.15 G .695 -(ptions, nor does it accept and ignore an ar)-3.195 F .694(gument of) --.18 F F13.194 E F0 .694(as signifying the end of op-)3.194 F -(tions.)144 465.6 Q .785(Expressions may be combined using the follo)144 -483.6 R .786(wing operators, listed in decreasing order of prece-)-.25 F -3.412(dence. The)144 495.6 R -.25(eva)3.412 G .912 -(luation depends on the number of ar).25 F .911(guments; see belo)-.18 F -4.711 -.65(w. O)-.25 H .911(perator precedence is).65 F -(used when there are \214v)144 507.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G -(ore ar)-2.5 E(guments.)-.18 E F1(!)144 519.6 Q F3 -.2(ex)2.5 G(pr).2 E -F0 -.35(Tr)180 519.6 S(ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 -E(alse.)-.1 E F1(\()144 531.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 -.26(Returns the v)180 531.6 R .26(alue of)-.25 F F3 -.2(ex)2.76 G(pr).2 +F/F4 9/Times-Roman@0 SF(.)A F1(test)4.573 E F0 .072(does not)2.572 F +.694(accept an)144 465.6 R 3.194(yo)-.15 G .694 +(ptions, nor does it accept and ignore an ar)-3.194 F .695(gument of) +-.18 F F13.195 E F0 .695(as signifying the end of op-)3.195 F +(tions.)144 477.6 Q .786(Expressions may be combined using the follo)144 +495.6 R .785(wing operators, listed in decreasing order of prece-)-.25 F +3.411(dence. The)144 507.6 R -.25(eva)3.411 G .911 +(luation depends on the number of ar).25 F .912(guments; see belo)-.18 F +4.712 -.65(w. O)-.25 H .912(perator precedence is).65 F +(used when there are \214v)144 519.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G +(ore ar)-2.5 E(guments.)-.18 E F1(!)144 531.6 Q F3 -.2(ex)2.5 G(pr).2 E +F0 -.35(Tr)180 531.6 S(ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 +E(alse.)-.1 E F1(\()144 543.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 +.26(Returns the v)180 543.6 R .26(alue of)-.25 F F3 -.2(ex)2.76 G(pr).2 E F0 5.26(.T)C .26(his may be used to o)-5.26 F -.15(ve)-.15 G .26 -(rride the normal precedence of opera-).15 F(tors.)180 543.6 Q F3 -.2 -(ex)144 555.6 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 --.35(Tr)180 567.6 S(ue if both).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(and)2.5 -E F3 -.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F3 -.2(ex)144 579.6 S +(rride the normal precedence of opera-).15 F(tors.)180 555.6 Q F3 -.2 +(ex)144 567.6 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 +-.35(Tr)180 579.6 S(ue if both).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(and)2.5 +E F3 -.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F3 -.2(ex)144 591.6 S (pr1).2 E F02.5 E F1(o)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 -591.6 S(ue if either).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F3 -.2 -(ex)2.5 G(pr2).2 E F0(is true.)2.52 E F1(test)144 608.4 Q F0(and)2.5 E +603.6 S(ue if either).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F3 -.2 +(ex)2.5 G(pr2).2 E F0(is true.)2.52 E F1(test)144 620.4 Q F0(and)2.5 E F1([)2.5 E F0 -.25(eva)2.5 G(luate conditional e).25 E (xpressions using a set of rules based on the number of ar)-.15 E -(guments.)-.18 E 2.5(0a)144 626.4 S -.18(rg)-2.5 G(uments).18 E(The e) -180 638.4 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 650.4 S -.18 -(rg)-2.5 G(ument).18 E(The e)180 662.4 Q +(guments.)-.18 E 2.5(0a)144 638.4 S -.18(rg)-2.5 G(uments).18 E(The e) +180 650.4 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 662.4 S -.18 +(rg)-2.5 G(ument).18 E(The e)180 674.4 Q (xpression is true if and only if the ar)-.15 E(gument is not null.)-.18 -E 2.5(2a)144 674.4 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) -180 686.4 R .37(gument is)-.18 F F1(!)2.87 E F0 2.87(,t)C .37(he e)-2.87 +E 2.5(2a)144 686.4 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) +180 698.4 R .37(gument is)-.18 F F1(!)2.87 E F0 2.87(,t)C .37(he e)-2.87 F .37(xpression is true if and only if the second ar)-.15 F .37 -(gument is null.)-.18 F .379(If the \214rst ar)180 698.4 R .38 -(gument is one of the unary conditional operators listed abo)-.18 F .68 --.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.88 E(TION)180 710.4 Q .553 -(AL EXPRESSIONS)-.18 F F4(,)A F0 .552(the e)2.802 F .552 -(xpression is true if the unary test is true.)-.15 F .552 -(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 722.4 Q -(alid unary conditional operator)-.25 E 2.5(,t)-.4 G(he e)-2.5 E -(xpression is f)-.15 E(alse.)-.1 E(GNU Bash 5.2)72 768 Q(2021 No)136.385 -E -.15(ve)-.15 G(mber 22).15 E(22)185.545 E 0 Cg EP +(gument is null.)-.18 F .38(If the \214rst ar)180 710.4 R .38 +(gument is one of the unary conditional operators listed abo)-.18 F .679 +-.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.879 E(TION)180 722.4 Q 2.264 +(AL EXPRESSIONS)-.18 F F4(,)A F0 2.264(the e)4.514 F 2.264 +(xpression is true if the unary test is true.)-.15 F 2.265 +(If the \214rst)7.265 F(GNU Bash 5.2)72 768 Q(2021 No)136.385 E -.15(ve) +-.15 G(mber 22).15 E(22)185.545 E 0 Cg EP %%Page: 23 23 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35 -E(UIL)-.1 E(TINS\(1\))-.92 E 2.5(3a)144 84 S -.18(rg)-2.5 G(uments).18 E -.236(The follo)180 96 R .236 +E(UIL)-.1 E(TINS\(1\))-.92 E(ar)180 84 Q(gument is not a v)-.18 E +(alid unary conditional operator)-.25 E 2.5(,t)-.4 G(he e)-2.5 E +(xpression is f)-.15 E(alse.)-.1 E 2.5(3a)144 96 S -.18(rg)-2.5 G +(uments).18 E .236(The follo)180 108 R .236 (wing conditions are applied in the order listed.)-.25 F .236 (If the second ar)5.236 F .236(gument is one of)-.18 F .855 -(the binary conditional operators listed abo)180 108 R 1.155 -.15(ve u) +(the binary conditional operators listed abo)180 120 R 1.155 -.15(ve u) -.15 H(nder).15 E/F1 9/Times-Bold@0 SF(CONDITION)3.355 E .855 -(AL EXPRESSIONS)-.18 F/F2 9/Times-Roman@0 SF(,)A F0(the)3.104 E .578 -(result of the e)180 120 R .578(xpression is the result of the binary t\ -est using the \214rst and third ar)-.15 F(guments)-.18 E 1.333 -(as operands.)180 132 R(The)6.333 E/F3 10/Times-Bold@0 SF3.833 E -F0(and)3.833 E F33.832 E F0 1.332 +(AL EXPRESSIONS)-.18 F/F2 9/Times-Roman@0 SF(,)A F0(the)3.105 E .579 +(result of the e)180 132 R .578(xpression is the result of the binary t\ +est using the \214rst and third ar)-.15 F(guments)-.18 E 1.332 +(as operands.)180 144 R(The)6.332 E/F3 10/Times-Bold@0 SF3.832 E +F0(and)3.832 E F33.832 E F0 1.333 (operators are considered binary operators when there are)3.832 F .558 -(three ar)180 144 R 3.058(guments. If)-.18 F .558(the \214rst ar)3.058 F +(three ar)180 156 R 3.058(guments. If)-.18 F .558(the \214rst ar)3.058 F .558(gument is)-.18 F F3(!)3.058 E F0 3.058(,t)C .558(he v)-3.058 F .558 (alue is the ne)-.25 F -.05(ga)-.15 G .558(tion of the tw).05 F(o-ar)-.1 -E(gument)-.18 E .521(test using the second and third ar)180 156 R 3.021 -(guments. If)-.18 F .521(the \214rst ar)3.021 F .52(gument is e)-.18 F -(xactly)-.15 E F3(\()3.02 E F0 .52(and the third)3.02 F(ar)180 168 Q +E(gument)-.18 E .52(test using the second and third ar)180 168 R 3.021 +(guments. If)-.18 F .521(the \214rst ar)3.021 F .521(gument is e)-.18 F +(xactly)-.15 E F3(\()3.021 E F0 .521(and the third)3.021 F(ar)180 180 Q .485(gument is e)-.18 F(xactly)-.15 E F3(\))2.985 E F0 2.985(,t)C .485 (he result is the one-ar)-2.985 F .485(gument test of the second ar)-.18 -F 2.985(gument. Other)-.18 F(-)-.2 E(wise, the e)180 180 Q -(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 192 S -.18(rg)-2.5 G -(uments).18 E .43(The follo)180 204 R .43 -(wing conditions are applied in the order listed.)-.25 F .429 -(If the \214rst ar)5.429 F .429(gument is)-.18 F F3(!)2.929 E F0 2.929 -(,t)C .429(he re-)-2.929 F 1.314(sult is the ne)180 216 R -.05(ga)-.15 G -1.314(tion of the three-ar).05 F 1.314(gument e)-.18 F 1.314 -(xpression composed of the remaining ar)-.15 F(gu-)-.18 E 2.745 -(ments. the)180 228 R(tw)2.745 E(o-ar)-.1 E .245 -(gument test using the second and third ar)-.18 F 2.744(guments. If)-.18 -F .244(the \214rst ar)2.744 F(gument)-.18 E .309(is e)180 240 R(xactly) --.15 E F3(\()2.809 E F0 .309(and the fourth ar)2.809 F .309(gument is e) --.18 F(xactly)-.15 E F3(\))2.809 E F0 2.809(,t)C .31 -(he result is the tw)-2.809 F(o-ar)-.1 E .31(gument test of the)-.18 F -.184(second and third ar)180 252 R 2.684(guments. Otherwise,)-.18 F .184 -(the e)2.684 F .183(xpression is parsed and e)-.15 F -.25(va)-.25 G .183 -(luated according).25 F(to precedence using the rules listed abo)180 264 -Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 276 S 2.5(rm)-2.5 G(ore ar)-2.5 E -(guments)-.18 E 1.635(The e)180 288 R 1.635(xpression is parsed and e) +F 2.985(gument. Other)-.18 F(-)-.2 E(wise, the e)180 192 Q +(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 204 S -.18(rg)-2.5 G +(uments).18 E .429(The follo)180 216 R .429 +(wing conditions are applied in the order listed.)-.25 F .43 +(If the \214rst ar)5.429 F .43(gument is)-.18 F F3(!)2.93 E F0 2.93(,t)C +.43(he re-)-2.93 F 1.315(sult is the ne)180 228 R -.05(ga)-.15 G 1.314 +(tion of the three-ar).05 F 1.314(gument e)-.18 F 1.314 +(xpression composed of the remaining ar)-.15 F(gu-)-.18 E 2.744 +(ments. the)180 240 R(tw)2.744 E(o-ar)-.1 E .245 +(gument test using the second and third ar)-.18 F 2.745(guments. If)-.18 +F .245(the \214rst ar)2.745 F(gument)-.18 E .31(is e)180 252 R(xactly) +-.15 E F3(\()2.81 E F0 .31(and the fourth ar)2.81 F .31(gument is e)-.18 +F(xactly)-.15 E F3(\))2.809 E F0 2.809(,t)C .309(he result is the tw) +-2.809 F(o-ar)-.1 E .309(gument test of the)-.18 F .183 +(second and third ar)180 264 R 2.683(guments. Otherwise,)-.18 F .184 +(the e)2.684 F .184(xpression is parsed and e)-.15 F -.25(va)-.25 G .184 +(luated according).25 F(to precedence using the rules listed abo)180 276 +Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 288 S 2.5(rm)-2.5 G(ore ar)-2.5 E +(guments)-.18 E 1.635(The e)180 300 R 1.635(xpression is parsed and e) -.15 F -.25(va)-.25 G 1.635 -(luated according to precedence using the rules listed).25 F(abo)180 300 -Q -.15(ve)-.15 G(.).15 E(When used with)144 318 Q F3(test)2.5 E F0(or) +(luated according to precedence using the rules listed).25 F(abo)180 312 +Q -.15(ve)-.15 G(.).15 E(When used with)144 330 Q F3(test)2.5 E F0(or) 2.5 E F3([)2.5 E F0 2.5(,t)C(he)-2.5 E F3(<)2.5 E F0(and)2.5 E F3(>)2.5 E F0(operators sort le)2.5 E(xicographically using ASCII ordering.)-.15 -E F3(times)108 334.8 Q F0 1.229(Print the accumulated user and system t\ -imes for the shell and for processes run from the shell.)144 334.8 R -(The return status is 0.)144 346.8 Q F3(trap)108 363.6 Q F0([)2.5 E F3 +E F3(times)108 346.8 Q F0 1.229(Print the accumulated user and system t\ +imes for the shell and for processes run from the shell.)144 346.8 R +(The return status is 0.)144 358.8 Q F3(trap)108 375.6 Q F0([)2.5 E F3 (\255lp)A F0 2.5(][)C([)-2.5 E/F4 10/Times-Italic@0 SF(ar)A(g)-.37 E F0 -(])A F4(sigspec)2.5 E F0(...])2.5 E .682(The command)144 375.6 R F4(ar) -3.512 E(g)-.37 E F0 .682(is to be read and e)3.402 F -.15(xe)-.15 G .682 -(cuted when the shell recei).15 F -.15(ve)-.25 G 3.183(ss).15 G -(ignal\(s\))-3.183 E F4(sigspec)3.523 E F0 5.683(.I).31 G(f)-5.683 E F4 -(ar)3.513 E(g)-.37 E F0(is)3.403 E .609(absent \(and there is a single) -144 387.6 R F4(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F33.108 E +(])A F4(sigspec)2.5 E F0(...])2.5 E .683(The command)144 387.6 R F4(ar) +3.513 E(g)-.37 E F0 .683(is to be read and e)3.403 F -.15(xe)-.15 G .682 +(cuted when the shell recei).15 F -.15(ve)-.25 G 3.182(ss).15 G +(ignal\(s\))-3.182 E F4(sigspec)3.522 E F0 5.682(.I).31 G(f)-5.682 E F4 +(ar)3.512 E(g)-.37 E F0(is)3.402 E .608(absent \(and there is a single) +144 399.6 R F4(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F33.108 E F0 3.108(,e)C .608 (ach speci\214ed signal is reset to its original disposition)-3.108 F -.658(\(the v)144 399.6 R .658(alue it had upon entrance to the shell\).) --.25 F(If)5.658 E F4(ar)3.488 E(g)-.37 E F0 .659 +.659(\(the v)144 411.6 R .659(alue it had upon entrance to the shell\).) +-.25 F(If)5.658 E F4(ar)3.488 E(g)-.37 E F0 .658 (is the null string the signal speci\214ed by each)3.378 F F4(sigspec) -144.34 411.6 Q F0 .581 -(is ignored by the shell and by the commands it in)3.391 F -.2(vo)-.4 G --.1(ke).2 G 3.08(s. If).1 F F4(ar)3.41 E(g)-.37 E F0 .58 -(is not present and)3.3 F F33.08 E F0(has)3.08 E 1.214 -(been supplied, then the trap commands associated with each)144 423.6 R -F4(sigspec)4.054 E F0 1.215(are displayed.)4.024 F 1.215(If no ar)6.215 -F(gu-)-.18 E .86(ments are supplied or if only)144 435.6 R F33.36 +144.34 423.6 Q F0 .58(is ignored by the shell and by the commands it in) +3.39 F -.2(vo)-.4 G -.1(ke).2 G 3.081(s. If).1 F F4(ar)3.411 E(g)-.37 E +F0 .581(is not present and)3.301 F F33.081 E F0(has)3.081 E 1.215 +(been supplied, then the trap commands associated with each)144 435.6 R +F4(sigspec)4.054 E F0 1.214(are displayed.)4.024 F 1.214(If no ar)6.214 +F(gu-)-.18 E .86(ments are supplied or if only)144 447.6 R F33.36 E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F3(trap)3.36 E F0 .86 (prints the list of commands associated with each)3.36 F 2.83 -(signal. The)144 447.6 R F32.83 E F0 .33(option causes the shell \ -to print a list of signal names and their corresponding num-)2.83 F -4.311(bers. Each)144 459.6 R F4(sigspec)4.651 E F0 1.811 -(is either a signal name de\214ned in <)4.621 F F4(signal.h)A F0 1.81 -(>, or a signal number)B 6.81(.S)-.55 G(ignal)-6.81 E -(names are case insensiti)144 471.6 Q .3 -.15(ve a)-.25 H(nd the).15 E -F1(SIG)2.5 E F0(pre\214x is optional.)2.25 E .666(If a)144 489.6 R F4 -(sigspec)3.506 E F0(is)3.476 E F1(EXIT)3.166 E F0 .666 -(\(0\) the command)2.916 F F4(ar)3.496 E(g)-.37 E F0 .666(is e)3.386 F --.15(xe)-.15 G .666(cuted on e).15 F .667(xit from the shell.)-.15 F -.667(If a)5.667 F F4(sigspec)3.507 E F0(is)3.477 E F1(DE-)3.167 E -.09 -(BU)144 501.6 S(G).09 E F2(,)A F0 .484(the command)2.734 F F4(ar)3.314 E -(g)-.37 E F0 .484(is e)3.204 F -.15(xe)-.15 G .484(cuted before e).15 F --.15(ve)-.25 G(ry).15 E F4 .483(simple command)2.984 F F0(,)A F4(for) -2.983 E F0(command,)2.983 E F4(case)2.983 E F0(command,)2.983 E F4 -(select)144 513.6 Q F0 .562(command, e)3.062 F -.15(ve)-.25 G .563 +(signal. The)144 459.6 R F32.83 E F0 .33(option causes the shell \ +to print a list of signal names and their corresponding num-)2.83 F 4.31 +(bers. Each)144 471.6 R F4(sigspec)4.65 E F0 1.811 +(is either a signal name de\214ned in <)4.62 F F4(signal.h)A F0 1.811 +(>, or a signal number)B 6.811(.S)-.55 G(ignal)-6.811 E +(names are case insensiti)144 483.6 Q .3 -.15(ve a)-.25 H(nd the).15 E +F1(SIG)2.5 E F0(pre\214x is optional.)2.25 E .667(If a)144 501.6 R F4 +(sigspec)3.507 E F0(is)3.477 E F1(EXIT)3.167 E F0 .667 +(\(0\) the command)2.917 F F4(ar)3.496 E(g)-.37 E F0 .666(is e)3.386 F +-.15(xe)-.15 G .666(cuted on e).15 F .666(xit from the shell.)-.15 F +.666(If a)5.666 F F4(sigspec)3.506 E F0(is)3.476 E F1(DE-)3.166 E -.09 +(BU)144 513.6 S(G).09 E F2(,)A F0 .483(the command)2.733 F F4(ar)3.313 E +(g)-.37 E F0 .483(is e)3.203 F -.15(xe)-.15 G .484(cuted before e).15 F +-.15(ve)-.25 G(ry).15 E F4 .484(simple command)2.984 F F0(,)A F4(for) +2.984 E F0(command,)2.984 E F4(case)2.984 E F0(command,)2.984 E F4 +(select)144 525.6 Q F0 .563(command, e)3.063 F -.15(ve)-.25 G .563 (ry arithmetic).15 F F4(for)3.063 E F0 .563 -(command, and before the \214rst command e)3.063 F -.15(xe)-.15 G .563 -(cutes in a shell).15 F .623(function \(see)144 525.6 R F1 .622 +(command, and before the \214rst command e)3.063 F -.15(xe)-.15 G .562 +(cutes in a shell).15 F .622(function \(see)144 537.6 R F1 .622 (SHELL GRAMMAR)3.122 F F0(abo)2.872 E -.15(ve)-.15 G 3.122(\). Refer).15 F .622(to the description of the)3.122 F F3(extdeb)3.122 E(ug)-.2 E F0 -.622(option to the)3.122 F F3(shopt)144 537.6 Q F0 -.2(bu)2.996 G .496 +.622(option to the)3.122 F F3(shopt)144 549.6 Q F0 -.2(bu)2.996 G .496 (iltin for details of its ef).2 F .496(fect on the)-.25 F F3(DEB)2.996 E (UG)-.1 E F0 2.996(trap. If)2.996 F(a)2.996 E F4(sigspec)3.336 E F0(is) 3.306 E F1(RETURN)2.996 E F2(,)A F0 .496(the command)2.746 F F4(ar) -144.33 549.6 Q(g)-.37 E F0 .18(is e)2.9 F -.15(xe)-.15 G .18 +144.33 561.6 Q(g)-.37 E F0 .18(is e)2.9 F -.15(xe)-.15 G .18 (cuted each time a shell function or a script e).15 F -.15(xe)-.15 G .18 (cuted with the).15 F F3(.)2.68 E F0(or)2.68 E F3(sour)2.68 E(ce)-.18 E -F0 -.2(bu)2.68 G .18(iltins \214nishes).2 F -.15(exe)144 561.6 S -(cuting.).15 E .96(If a)144 579.6 R F4(sigspec)3.8 E F0(is)3.77 E F1 -(ERR)3.46 E F2(,)A F0 .96(the command)3.21 F F4(ar)3.791 E(g)-.37 E F0 -.961(is e)3.681 F -.15(xe)-.15 G .961(cuted whene).15 F -.15(ve)-.25 G -3.461(rap).15 G .961(ipeline \(which may consist of a)-3.461 F .185(sin\ +F0 -.2(bu)2.68 G .18(iltins \214nishes).2 F -.15(exe)144 573.6 S +(cuting.).15 E .961(If a)144 591.6 R F4(sigspec)3.801 E F0(is)3.771 E F1 +(ERR)3.461 E F2(,)A F0 .961(the command)3.211 F F4(ar)3.791 E(g)-.37 E +F0 .961(is e)3.681 F -.15(xe)-.15 G .961(cuted whene).15 F -.15(ve)-.25 +G 3.461(ra).15 G .96(pipeline \(which may consist of a)-.001 F .185(sin\ gle simple command\), a list, or a compound command returns a non\255ze\ -ro e)144 591.6 R .184(xit status, subject to)-.15 F .451(the follo)144 -603.6 R .451(wing conditions.)-.25 F(The)5.451 E F1(ERR)2.951 E F0 .451 -(trap is not e)2.701 F -.15(xe)-.15 G .451(cuted if the f).15 F .452 -(ailed command is part of the com-)-.1 F .388 -(mand list immediately follo)144 615.6 R .388(wing a)-.25 F F3(while) -2.888 E F0(or)2.888 E F3(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388 -(ord, part of the test in an)-.1 F F4(if)2.897 E F0 .387 -(statement, part)4.847 F .777(of a command e)144 627.6 R -.15(xe)-.15 G +ro e)144 603.6 R .185(xit status, subject to)-.15 F .452(the follo)144 +615.6 R .452(wing conditions.)-.25 F(The)5.452 E F1(ERR)2.952 E F0 .451 +(trap is not e)2.701 F -.15(xe)-.15 G .451(cuted if the f).15 F .451 +(ailed command is part of the com-)-.1 F .387 +(mand list immediately follo)144 627.6 R .387(wing a)-.25 F F3(while) +2.887 E F0(or)2.887 E F3(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388 +(ord, part of the test in an)-.1 F F4(if)2.898 E F0 .388 +(statement, part)4.848 F .778(of a command e)144 639.6 R -.15(xe)-.15 G .778(cuted in a).15 F F3(&&)3.278 E F0(or)3.278 E F3(||)3.278 E F0 .778 (list e)3.278 F .778(xcept the command follo)-.15 F .778 -(wing the \214nal)-.25 F F3(&&)3.278 E F0(or)3.278 E F3(||)3.278 E F0 -3.278(,a)C -.15(ny)-3.278 G 1.28(command in a pipeline b)144 639.6 R +(wing the \214nal)-.25 F F3(&&)3.278 E F0(or)3.278 E F3(||)3.277 E F0 +3.277(,a)C -.15(ny)-3.277 G 1.28(command in a pipeline b)144 651.6 R 1.28(ut the last, or if the command')-.2 F 3.78(sr)-.55 G 1.28(eturn v) -3.78 F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F -F3(!)3.78 E F0(.)A(These are the same conditions obe)144 651.6 Q +F3(!)3.78 E F0(.)A(These are the same conditions obe)144 663.6 Q (yed by the)-.15 E F3(err)2.5 E(exit)-.18 E F0(\()2.5 E F3A F0 2.5 -(\)o)C(ption.)-2.5 E .132 +(\)o)C(ption.)-2.5 E .133 (Signals ignored upon entry to the shell cannot be trapped or reset.)144 -669.6 R -.35(Tr)5.133 G .133(apped signals that are not be-).35 F .117 -(ing ignored are reset to their original v)144 681.6 R .117 +681.6 R -.35(Tr)5.132 G .132(apped signals that are not be-).35 F .117 +(ing ignored are reset to their original v)144 693.6 R .117 (alues in a subshell or subshell en)-.25 F .117 -(vironment when one is cre-)-.4 F 2.5(ated. The)144 693.6 R +(vironment when one is cre-)-.4 F 2.5(ated. The)144 705.6 R (return status is f)2.5 E(alse if an)-.1 E(y)-.15 E F4(sigspec)2.84 E F0 (is in)2.81 E -.25(va)-.4 G(lid; otherwise).25 E F3(trap)2.5 E F0 (returns true.)2.5 E(GNU Bash 5.2)72 768 Q(2021 No)136.385 E -.15(ve) @@ -2983,74 +2982,74 @@ BP (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35 E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(type)108 84 Q F0([) 2.5 E F1(\255aftpP)A F0(])A/F2 10/Times-Italic@0 SF(name)2.5 E F0([)2.5 -E F2(name)A F0(...])2.5 E -.4(Wi)144 96 S .173 -(th no options, indicate ho).4 F 2.673(we)-.25 G(ach)-2.673 E F2(name) -3.033 E F0 -.1(wo)2.853 G .174 -(uld be interpreted if used as a command name.).1 F .174(If the)5.174 F +E F2(name)A F0(...])2.5 E -.4(Wi)144 96 S .174 +(th no options, indicate ho).4 F 2.674(we)-.25 G(ach)-2.674 E F2(name) +3.034 E F0 -.1(wo)2.854 G .173 +(uld be interpreted if used as a command name.).1 F .173(If the)5.173 F F1144 108 Q F0 .715(option is used,)3.215 F F1(type)3.215 E F0 .715(prints a string which is one of)3.215 F F2(alias)3.545 E F0(,).27 E F2 -.1(ke)3.215 G(ywor)-.2 E(d)-.37 E F0(,).77 E F2(function)5.185 E F0 (,).24 E F2 -.2(bu)3.215 G(iltin).2 E F0 3.215(,o).24 G(r)-3.215 E F2 -(\214le)5.125 E F0(if)3.395 E F2(name)144.36 120 Q F0 .086 -(is an alias, shell reserv)2.766 F .086(ed w)-.15 F .086 -(ord, function, b)-.1 F .087(uiltin, or disk \214le, respecti)-.2 F -.15 -(ve)-.25 G(ly).15 E 5.087(.I)-.65 G 2.587(ft)-5.087 G(he)-2.587 E F2 -(name)2.947 E F0 .087(is not)2.767 F .119 +(\214le)5.125 E F0(if)3.395 E F2(name)144.36 120 Q F0 .087 +(is an alias, shell reserv)2.767 F .087(ed w)-.15 F .087 +(ord, function, b)-.1 F .086(uiltin, or disk \214le, respecti)-.2 F -.15 +(ve)-.25 G(ly).15 E 5.086(.I)-.65 G 2.586(ft)-5.086 G(he)-2.586 E F2 +(name)2.946 E F0 .086(is not)2.766 F .118 (found, then nothing is printed, and an e)144 132 R .118 -(xit status of f)-.15 F .118(alse is returned.)-.1 F .118(If the)5.118 F -F12.618 E F0 .118(option is used,)2.618 F F1(type)2.618 E F0 .855 +(xit status of f)-.15 F .118(alse is returned.)-.1 F .119(If the)5.119 F +F12.619 E F0 .119(option is used,)2.619 F F1(type)2.619 E F0 .855 (either returns the name of the disk \214le that w)144 144 R .855 (ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F F2(name)3.715 E F0 -.855(were speci\214ed as a com-)3.535 F .529(mand name, or nothing if) +.855(were speci\214ed as a com-)3.535 F .528(mand name, or nothing if) 144 156 R/F3 10/Courier@0 SF .528(type -t name)3.028 F F0 -.1(wo)3.028 G .528(uld not return).1 F F2(\214le)4.938 E F0 5.528(.T).18 G(he)-5.528 E -F13.028 E F0 .528(option forces a)3.028 F/F4 9/Times-Bold@0 SF --.666(PA)3.028 G(TH)-.189 E F0 .006(search for each)144 168 R F2(name) -2.506 E F0 2.506(,e)C -.15(ve)-2.756 G 2.506(ni).15 G(f)-2.506 E F3 .007 -(type -t name)2.506 F F0 -.1(wo)2.507 G .007(uld not return).1 F F2 -(\214le)4.417 E F0 5.007(.I).18 G 2.507(fac)-5.007 G .007 -(ommand is hashed,)-2.507 F F12.507 E F0(and)144 180 Q F1 -3.231 E F0 .731(print the hashed v)3.231 F .73 +F13.028 E F0 .529(option forces a)3.028 F/F4 9/Times-Bold@0 SF +-.666(PA)3.029 G(TH)-.189 E F0 .007(search for each)144 168 R F2(name) +2.507 E F0 2.507(,e)C -.15(ve)-2.757 G 2.507(ni).15 G(f)-2.507 E F3 .007 +(type -t name)2.507 F F0 -.1(wo)2.507 G .007(uld not return).1 F F2 +(\214le)4.417 E F0 5.006(.I).18 G 2.506(fac)-5.006 G .006 +(ommand is hashed,)-2.506 F F12.506 E F0(and)144 180 Q F1 +3.23 E F0 .73(print the hashed v)3.23 F .731 (alue, which is not necessarily the \214le that appears \214rst in)-.25 -F F4 -.666(PA)3.23 G(TH)-.189 E/F5 9/Times-Roman@0 SF(.)A F0 .73(If the) -5.23 F F1144 192 Q F0 .823(option is used,)3.323 F F1(type)3.323 E -F0 .824(prints all of the places that contain an e)3.323 F -.15(xe)-.15 -G .824(cutable named).15 F F2(name)3.684 E F0 5.824(.T).18 G .824 -(his in-)-5.824 F 1.176 +F F4 -.666(PA)3.231 G(TH)-.189 E/F5 9/Times-Roman@0 SF(.)A F0 .731 +(If the)5.231 F F1144 192 Q F0 .824(option is used,)3.324 F F1 +(type)3.324 E F0 .824(prints all of the places that contain an e)3.324 F +-.15(xe)-.15 G .823(cutable named).15 F F2(name)3.683 E F0 5.823(.T).18 +G .823(his in-)-5.823 F 1.176 (cludes aliases and functions, if and only if the)144 204 R F1 -3.676 E F0 1.176(option is not also used.)3.676 F 1.176 +3.676 E F0 1.176(option is not also used.)3.676 F 1.177 (The table of hashed)6.176 F 1.223(commands is not consulted when using) 144 216 R F13.723 E F0 6.223(.T)C(he)-6.223 E F13.723 E F0 -1.223(option suppresses shell function lookup, as)3.723 F .326(with the) -144 228 R F1(command)2.826 E F0 -.2(bu)2.826 G(iltin.).2 E F1(type)5.326 -E F0 .326(returns true if all of the ar)2.826 F .325 -(guments are found, f)-.18 F .325(alse if an)-.1 F 2.825(ya)-.15 G .325 -(re not)-2.825 F(found.)144 240 Q F1(ulimit)108 256.8 Q F0([)2.5 E F1 +1.223(option suppresses shell function lookup, as)3.723 F .325(with the) +144 228 R F1(command)2.825 E F0 -.2(bu)2.825 G(iltin.).2 E F1(type)5.325 +E F0 .325(returns true if all of the ar)2.825 F .326 +(guments are found, f)-.18 F .326(alse if an)-.1 F 2.826(ya)-.15 G .326 +(re not)-2.826 F(found.)144 240 Q F1(ulimit)108 256.8 Q F0([)2.5 E F1 (\255HS)A F0(])A F12.5 E(ulimit)108 268.8 Q F0([)2.5 E F1(\255HS)A F0 2.5(][)C F1(\255bcde\214klmnpqrstuvxPR)-2.5 E(T)-.4 E F0([)2.5 E F2 -(limit)A F0(]])A(Pro)144 280.8 Q .243(vides control o)-.15 F -.15(ve) --.15 G 2.743(rt).15 G .243(he resources a)-2.743 F -.25(va)-.2 G .244 +(limit)A F0(]])A(Pro)144 280.8 Q .244(vides control o)-.15 F -.15(ve) +-.15 G 2.744(rt).15 G .244(he resources a)-2.744 F -.25(va)-.2 G .244 (ilable to the shell and to processes started by it, on systems).25 F -.944(that allo)144 292.8 R 3.444(ws)-.25 G .944(uch control.)-3.444 F -(The)5.944 E F13.444 E F0(and)3.444 E F13.444 E F0 .943 +.943(that allo)144 292.8 R 3.443(ws)-.25 G .943(uch control.)-3.443 F +(The)5.943 E F13.443 E F0(and)3.443 E F13.444 E F0 .944 (options specify that the hard or soft limit is set for the)3.444 F(gi) -144 304.8 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208 +144 304.8 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208 (hard limit cannot be increased by a non-root user once it is set; a so\ -ft limit may)2.708 F .426(be increased up to the v)144 316.8 R .426 -(alue of the hard limit.)-.25 F .425(If neither)5.426 F F12.925 E -F0(nor)2.925 E F12.925 E F0 .425 -(is speci\214ed, both the soft and)2.925 F .139(hard limits are set.)144 +ft limit may)2.709 F .425(be increased up to the v)144 316.8 R .425 +(alue of the hard limit.)-.25 F .426(If neither)5.425 F F12.926 E +F0(nor)2.926 E F12.926 E F0 .426 +(is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144 328.8 R .139(The v)5.139 F .139(alue of)-.25 F F2(limit)2.729 E F0 .139 (can be a number in the unit speci\214ed for the resource or one)3.319 F -.742(of the special v)144 340.8 R(alues)-.25 E F1(hard)3.242 E F0(,)A F1 +.741(of the special v)144 340.8 R(alues)-.25 E F1(hard)3.241 E F0(,)A F1 (soft)3.241 E F0 3.241(,o)C(r)-3.241 E F1(unlimited)3.241 E F0 3.241(,w) -C .741(hich stand for the current hard limit, the current)-3.241 F .023 +C .741(hich stand for the current hard limit, the current)-3.241 F .024 (soft limit, and no limit, respecti)144 352.8 R -.15(ve)-.25 G(ly).15 E 5.023(.I)-.65 G(f)-5.023 E F2(limit)2.613 E F0 .023 (is omitted, the current v)3.203 F .023 -(alue of the soft limit of the re-)-.25 F .985 -(source is printed, unless the)144 364.8 R F13.485 E F0 .984 -(option is gi)3.485 F -.15(ve)-.25 G 3.484(n. When).15 F .984 +(alue of the soft limit of the re-)-.25 F .984 +(source is printed, unless the)144 364.8 R F13.484 E F0 .984 +(option is gi)3.484 F -.15(ve)-.25 G 3.484(n. When).15 F .985 (more than one resource is speci\214ed, the)3.484 F .7 (limit name and unit, if appropriate, are printed before the v)144 376.8 R 3.2(alue. Other)-.25 F .7(options are interpreted as)3.2 F(follo)144 @@ -3072,7 +3071,7 @@ Q F0(The maximum size of a process')180 436.8 Q 2.5(sd)-.55 G(ata se) (The maximum resident set size \(man)180 508.8 Q 2.5(ys)-.15 G (ystems do not honor this limit\))-2.5 E F1144 520.8 Q F0 .791(Th\ e maximum number of open \214le descriptors \(most systems do not allo) -180 520.8 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F +180 520.8 R 3.291(wt)-.25 G .791(his v)-3.291 F .791(alue to)-.25 F (be set\))180 532.8 Q F1144 544.8 Q F0 (The pipe size in 512-byte blocks \(this may not be set\))180 544.8 Q F1 144 556.8 Q F0 @@ -3092,18 +3091,18 @@ Q F1144 580.8 Q F0(The maximum stack size)180 580.8 Q F1144 E F0 .468(is gi)3.648 F -.15(ve)-.25 G .468(n, and the).15 F F1 2.968 E F0 .468(option is not used,)2.968 F F2(limit)2.968 E F0 .468 (is the ne)2.968 F 2.968(wv)-.25 G .468 -(alue of the speci\214ed resource.)-3.218 F(If)5.468 E .044 -(no option is gi)144 705.6 R -.15(ve)-.25 G .044(n, then).15 F F1 -2.544 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045 -(lues are in 1024-byte increments, e)1.11 F .045(xcept for)-.15 F F1 -2.545 E F0 2.545(,w)C .045(hich is)-2.545 F .67(in seconds;)144 +(alue of the speci\214ed resource.)-3.218 F(If)5.468 E .045 +(no option is gi)144 705.6 R -.15(ve)-.25 G .045(n, then).15 F F1 +2.545 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045 +(lues are in 1024-byte increments, e)1.11 F .044(xcept for)-.15 F F1 +2.544 E F0 2.544(,w)C .044(hich is)-2.544 F .67(in seconds;)144 717.6 R F13.17 E F0 3.17(,w)C .67(hich is in microseconds;)-3.17 F F13.17 E F0 3.17(,w)C .67(hich is in units of 512-byte blocks;) -3.17 F F13.17 E F0(,)A F13.17 E F0(,)A F13.17 E F0(,) -A F1144 729.6 Q F0(,)A F13.736 E F0 3.736(,a)C(nd)-3.736 E +A F1144 729.6 Q F0(,)A F13.737 E F0 3.737(,a)C(nd)-3.737 E F13.736 E F0 3.736(,w)C 1.236(hich are unscaled v)-3.736 F 1.236 (alues; and, when in posix mode,)-.25 F F13.736 E F0(and)3.736 E -F13.736 E F0 3.736(,w)C 1.237(hich are in)-3.736 F(GNU Bash 5.2)72 +F13.736 E F0 3.736(,w)C 1.236(hich are in)-3.736 F(GNU Bash 5.2)72 768 Q(2021 No)136.385 E -.15(ve)-.15 G(mber 22).15 E(24)185.545 E 0 Cg EP %%Page: 25 25 @@ -3112,8 +3111,8 @@ BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35 -E(UIL)-.1 E(TINS\(1\))-.92 E .239(512-byte increments.)144 84 R .238 -(The return status is 0 unless an in)5.239 F -.25(va)-.4 G .238 +E(UIL)-.1 E(TINS\(1\))-.92 E .238(512-byte increments.)144 84 R .238 +(The return status is 0 unless an in)5.238 F -.25(va)-.4 G .238 (lid option or ar).25 F .238(gument is supplied, or an)-.18 F (error occurs while setting a ne)144 96 Q 2.5(wl)-.25 G(imit.)-2.5 E/F1 10/Times-Bold@0 SF(umask)108 112.8 Q F0([)2.5 E F1A F0 2.5(][)C F1 @@ -3123,87 +3122,87 @@ E(UIL)-.1 E(TINS\(1\))-.92 E .239(512-byte increments.)144 84 R .238 (gins with a digit, it is interpreted as an octal)-.15 F .066(number; o\ therwise it is interpreted as a symbolic mode mask similar to that acce\ pted by)144 136.8 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 -148.8 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382 +148.8 Q F2(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382 (alue of the mask is printed.)-.25 F(The)5.382 E F12.882 E F0 .382 (option causes the mask to be)2.882 F .547 (printed in symbolic form; the def)144 160.8 R .547 (ault output is an octal number)-.1 F 5.547(.I)-.55 G 3.047(ft)-5.547 G (he)-3.047 E F13.047 E F0 .547(option is supplied, and)3.047 F F2 -(mode)144.38 172.8 Q F0 .551 -(is omitted, the output is in a form that may be reused as input.)3.231 -F .552(The return status is 0 if the)5.552 F(mode w)144 184.8 Q +(mode)144.38 172.8 Q F0 .552 +(is omitted, the output is in a form that may be reused as input.)3.232 +F .551(The return status is 0 if the)5.551 F(mode w)144 184.8 Q (as successfully changed or if no)-.1 E F2(mode)2.5 E F0(ar)2.5 E (gument w)-.18 E(as supplied, and f)-.1 E(alse otherwise.)-.1 E F1 (unalias)108 201.6 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 -(...])2.5 E(Remo)144 213.6 Q 1.058 -.15(ve e)-.15 H(ach).15 E F2(name) -3.258 E F0 .758(from the list of de\214ned aliases.)3.258 F(If)5.758 E -F13.258 E F0 .757(is supplied, all alias de\214nitions are re-) +(...])2.5 E(Remo)144 213.6 Q 1.057 -.15(ve e)-.15 H(ach).15 E F2(name) +3.257 E F0 .757(from the list of de\214ned aliases.)3.257 F(If)5.758 E +F13.258 E F0 .758(is supplied, all alias de\214nitions are re-) 3.258 F(mo)144 225.6 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E (alue is true unless a supplied)-.25 E F2(name)2.86 E F0 (is not a de\214ned alias.)2.68 E F1(unset)108 242.4 Q F0<5bad>2.5 E F1 (fv)A F0 2.5(][)C-2.5 E F1(n)A F0 2.5(][)C F2(name)-2.5 E F0(...]) -2.5 E -.15(Fo)144 254.4 S 3.803(re).15 G(ach)-3.803 E F2(name)4.163 E F0 -3.803(,r).18 G(emo)-3.803 E 1.603 -.15(ve t)-.15 H 1.303 +2.5 E -.15(Fo)144 254.4 S 3.804(re).15 G(ach)-3.804 E F2(name)4.164 E F0 +3.804(,r).18 G(emo)-3.804 E 1.604 -.15(ve t)-.15 H 1.304 (he corresponding v).15 F 1.303(ariable or function.)-.25 F 1.303 -(If the)6.303 F F13.804 E F0 1.304(option is gi)3.804 F -.15(ve) --.25 G 1.304(n, each).15 F F2(name)144.36 266.4 Q F0 .465 -(refers to a shell v)3.145 F .464(ariable, and that v)-.25 F .464 -(ariable is remo)-.25 F -.15(ve)-.15 G 2.964(d. Read-only).15 F -.25(va) -2.964 G .464(riables may not be un-).25 F 2.768(set. If)144 278.4 R F1 -2.768 E F0 .269(is speci\214ed, each)2.768 F F2(name)3.129 E F0 +(If the)6.303 F F13.803 E F0 1.303(option is gi)3.803 F -.15(ve) +-.25 G 1.303(n, each).15 F F2(name)144.36 266.4 Q F0 .464 +(refers to a shell v)3.144 F .464(ariable, and that v)-.25 F .464 +(ariable is remo)-.25 F -.15(ve)-.15 G 2.965(d. Read-only).15 F -.25(va) +2.965 G .465(riables may not be un-).25 F 2.769(set. If)144 278.4 R F1 +2.769 E F0 .269(is speci\214ed, each)2.769 F F2(name)3.129 E F0 .269(refers to a shell function, and the function de\214nition is remo) -2.949 F -.15(ve)-.15 G(d.).15 E .404(If the)144 290.4 R F12.904 E +2.949 F -.15(ve)-.15 G(d.).15 E .403(If the)144 290.4 R F12.903 E F0 .404(option is supplied, and)2.904 F F2(name)2.904 E F0 .404(is a v) 2.904 F .404(ariable with the)-.25 F F2(namer)2.904 E(ef)-.37 E F0 -(attrib)2.904 E(ute,)-.2 E F2(name)2.904 E F0 .403(will be unset)2.904 F -.719(rather than the v)144 302.4 R .719(ariable it references.)-.25 F F1 -5.719 E F0 .719(has no ef)3.219 F .719(fect if the)-.25 F F1 -3.22 E F0 .72(option is supplied.)3.22 F .72(If no options)5.72 F .737 -(are supplied, each)144 314.4 R F2(name)3.237 E F0 .737(refers to a v) -3.237 F .737(ariable; if there is no v)-.25 F .736 -(ariable by that name, a function with)-.25 F 1.761(that name, if an)144 -326.4 R 3.061 -.65(y, i)-.15 H 4.261(su).65 G 4.261(nset. Each)-4.261 F +(attrib)2.904 E(ute,)-.2 E F2(name)2.904 E F0 .404(will be unset)2.904 F +.72(rather than the v)144 302.4 R .72(ariable it references.)-.25 F F1 +5.72 E F0 .72(has no ef)3.22 F .719(fect if the)-.25 F F1 +3.219 E F0 .719(option is supplied.)3.219 F .719(If no options)5.719 F +.736(are supplied, each)144 314.4 R F2(name)3.236 E F0 .736 +(refers to a v)3.236 F .737(ariable; if there is no v)-.25 F .737 +(ariable by that name, a function with)-.25 F 1.762(that name, if an)144 +326.4 R 3.062 -.65(y, i)-.15 H 4.262(su).65 G 4.261(nset. Each)-4.262 F 1.761(unset v)4.261 F 1.761(ariable or function is remo)-.25 F -.15(ve) --.15 G 4.262(df).15 G 1.762(rom the en)-4.262 F(vironment)-.4 E 3.172 +-.15 G 4.261(df).15 G 1.761(rom the en)-4.261 F(vironment)-.4 E 3.171 (passed to subsequent commands.)144 338.4 R 3.172(If an)8.172 F 5.672 (yo)-.15 G(f)-5.672 E/F3 9/Times-Bold@0 SF -.27(BA)5.672 G(SH_ALIASES) -.27 E/F4 9/Times-Roman@0 SF(,)A F3 -.27(BA)5.421 G(SH_ARGV0).27 E F4(,)A -F3 -.27(BA)5.421 G(SH_CMDS).27 E F4(,)A F3 -.27(BA)144 350.4 S -(SH_COMMAND).27 E F4(,)A F3 -.27(BA)11.481 G(SH_SUBSHELL).27 E F4(,)A F3 +.27 E/F4 9/Times-Roman@0 SF(,)A F3 -.27(BA)5.422 G(SH_ARGV0).27 E F4(,)A +F3 -.27(BA)5.422 G(SH_CMDS).27 E F4(,)A F3 -.27(BA)144 350.4 S +(SH_COMMAND).27 E F4(,)A F3 -.27(BA)11.482 G(SH_SUBSHELL).27 E F4(,)A F3 -.27(BA)11.482 G(SHPID).27 E F4(,)A F3(COMP_W)11.482 E(ORDBREAKS)-.09 E -F4(,)A F3(DIRST)11.482 E -.495(AC)-.81 G(K).495 E F4(,)A F3(EPOCHREAL) +F4(,)A F3(DIRST)11.481 E -.495(AC)-.81 G(K).495 E F4(,)A F3(EPOCHREAL) 144 362.4 Q(TIME)-.828 E F4(,)A F3(EPOCHSECONDS)2.67 E F4(,)A F3(FUNCN) 2.67 E(AME)-.18 E F4(,)A F3(GR)2.67 E(OUPS)-.27 E F4(,)A F3(HISTCMD)2.67 E F4(,)A F3(LINENO)2.67 E F4(,)A F3(RANDOM)2.67 E F4(,)A F3(SECONDS)144 -374.4 Q F4(,)A F0(or)4.029 E F3(SRANDOM)4.279 E F0 1.779(are unset, the) -4.029 F 4.279(yl)-.15 G 1.779(ose their special properties, e)-4.279 F --.15(ve)-.25 G 4.279(ni).15 G 4.28(ft)-4.279 G(he)-4.28 E 4.28(ya)-.15 G -1.78(re subse-)-4.28 F(quently reset.)144 386.4 Q(The e)5 E +374.4 Q F4(,)A F0(or)4.03 E F3(SRANDOM)4.28 E F0 1.779(are unset, the) +4.03 F 4.279(yl)-.15 G 1.779(ose their special properties, e)-4.279 F +-.15(ve)-.25 G 4.279(ni).15 G 4.279(ft)-4.279 G(he)-4.279 E 4.279(ya) +-.15 G 1.779(re subse-)-4.279 F(quently reset.)144 386.4 Q(The e)5 E (xit status is true unless a)-.15 E F2(name)2.86 E F0 (is readonly or may not be unset.)2.68 E F1(wait)108 403.2 Q F0([)2.5 E F1(\255fn)A F0 2.5(][)C F1-2.5 E F2(varname)2.5 E F0 2.5(][)C F2 (id ...)-2.5 E F0(])A -.8(Wa)144 415.2 S .659(it for each speci\214ed c\ hild process and return its termination status.).8 F(Each)5.659 E F2(id) -3.169 E F0 .658(may be a process)3.928 F .008 +3.169 E F0 .659(may be a process)3.929 F .009 (ID or a job speci\214cation; if a job spec is gi)144 427.2 R -.15(ve) --.25 G .009(n, all processes in that job').15 F 2.509(sp)-.55 G .009 -(ipeline are w)-2.509 F .009(aited for)-.1 F 5.009(.I)-.55 G(f)-5.009 E -F2(id)144.01 439.2 Q F0 .442(is not gi)3.712 F -.15(ve)-.25 G(n,).15 E -F1(wait)2.942 E F0 -.1(wa)2.942 G .441 +-.25 G .008(n, all processes in that job').15 F 2.508(sp)-.55 G .008 +(ipeline are w)-2.508 F .008(aited for)-.1 F 5.008(.I)-.55 G(f)-5.008 E +F2(id)144.01 439.2 Q F0 .441(is not gi)3.711 F -.15(ve)-.25 G(n,).15 E +F1(wait)2.941 E F0 -.1(wa)2.941 G .441 (its for all running background jobs and the last-e).1 F -.15(xe)-.15 G -.441(cuted process substitu-).15 F .597 +.442(cuted process substitu-).15 F .598 (tion, if its process id is the same as)144 451.2 R F1($!)3.098 E F0 -3.098(,a)C .598(nd the return status is zero.)-3.098 F .598(If the)5.598 -F F13.098 E F0 .598(option is supplied,)3.098 F F1(wait)144 463.2 -Q F0 -.1(wa)3.083 G .583(its for a single job from the list of).1 F F2 +3.098(,a)C .598(nd the return status is zero.)-3.098 F .597(If the)5.597 +F F13.097 E F0 .597(option is supplied,)3.097 F F1(wait)144 463.2 +Q F0 -.1(wa)3.082 G .583(its for a single job from the list of).1 F F2 (id)3.083 E F0 3.083(so)C 1.383 -.4(r, i)-3.083 H 3.083(fn).4 G(o)-3.083 E F2(id)3.083 E F0 3.083(sa)C .583(re supplied, an)-3.083 F 3.083(yj) --.15 G .582(ob, to complete and)-3.083 F .403(returns its e)144 475.2 R -.403(xit status.)-.15 F .403(If none of the supplied ar)5.403 F .403 -(guments is a child of the shell, or if no ar)-.18 F(guments)-.18 E .573 +-.15 G .583(ob, to complete and)-3.083 F .404(returns its e)144 475.2 R +.404(xit status.)-.15 F .403(If none of the supplied ar)5.403 F .403 +(guments is a child of the shell, or if no ar)-.18 F(guments)-.18 E .572 (are supplied and the shell has no unw)144 487.2 R .573 -(aited-for children, the e)-.1 F .573(xit status is 127.)-.15 F .572 -(If the)5.573 F F13.072 E F0 .572(option is)3.072 F .39 +(aited-for children, the e)-.1 F .573(xit status is 127.)-.15 F .573 +(If the)5.573 F F13.073 E F0 .573(option is)3.073 F .39 (supplied, the process or job identi\214er of the job for which the e) 144 499.2 R .39(xit status is returned is assigned to)-.15 F .905(the v) 144 511.2 R(ariable)-.25 E F2(varname)3.405 E F0 .905 @@ -3212,51 +3211,51 @@ E F2(id)3.083 E F0 3.083(sa)C .583(re supplied, an)-3.083 F 3.083(yj) (an)144 523.2 Q 3.89(ya)-.15 G 3.89(ssignment. This)-3.89 F 1.39 (is useful only when the)3.89 F F13.89 E F0 1.39 (option is supplied.)3.89 F 1.39(Supplying the)6.39 F F13.89 E F0 -(option,)3.89 E .575(when job control is enabled, forces)144 535.2 R F1 +(option,)3.89 E .574(when job control is enabled, forces)144 535.2 R F1 (wait)3.075 E F0 .575(to w)3.075 F .575(ait for)-.1 F F2(id)3.075 E F0 -.574(to terminate before returning its status, in-)3.075 F .635 +.575(to terminate before returning its status, in-)3.075 F .635 (stead of returning when it changes status.)144 547.2 R(If)5.635 E F2 (id)3.145 E F0 .635(speci\214es a non-e)3.905 F .635 (xistent process or job, the return)-.15 F(status is 127.)144 559.2 Q (Otherwise, the return status is the e)5 E (xit status of the last process or job w)-.15 E(aited for)-.1 E(.)-.55 E /F5 10.95/Times-Bold@0 SF(SHELL COMP)72 576 Q -1.04(AT)-.81 G -(IBILITY MODE)1.04 E F0 1.355(Bash-4.0 introduced the concept of a)108 +(IBILITY MODE)1.04 E F0 1.354(Bash-4.0 introduced the concept of a)108 588 R F2 1.355(shell compatibility le)3.855 F(vel)-.15 E F0 3.855(,s)C -1.354(peci\214ed as a set of options to the shopt)-3.855 F -.2(bu)108 -600 S .398(iltin \().2 F F1(compat31)2.898 E F0(,)A F1(compat32)2.898 E -F0(,)A F1(compat40)2.898 E F0(,)A F1(compat41)2.898 E F0 2.898(,a)C .399 -(nd so on\).)-2.898 F .399(There is only one current compatibility)5.399 -F(le)108 612 Q -.15(ve)-.25 G 3.254(l-).15 G 3.254(-e)-3.254 G .754 -(ach option is mutually e)-3.254 F(xclusi)-.15 E -.15(ve)-.25 G 5.754 -(.T).15 G .754(he compatibility le)-5.754 F -.15(ve)-.25 G 3.253(li).15 -G 3.253(si)-3.253 G .753(ntended to allo)-3.253 F 3.253(wu)-.25 G .753 -(sers to select be-)-3.253 F(ha)108 624 Q 1.083(vior from pre)-.2 F -1.083(vious v)-.25 F 1.083(ersions that is incompatible with ne)-.15 F -1.083(wer v)-.25 F 1.083(ersions while the)-.15 F 3.584(ym)-.15 G 1.084 -(igrate scripts to use)-3.584 F(current features and beha)108 636 Q +1.355(peci\214ed as a set of options to the shopt)-3.855 F -.2(bu)108 +600 S .399(iltin \().2 F F1(compat31)2.899 E F0(,)A F1(compat32)2.899 E +F0(,)A F1(compat40)2.899 E F0(,)A F1(compat41)2.899 E F0 2.899(,a)C .399 +(nd so on\).)-2.899 F .398(There is only one current compatibility)5.398 +F(le)108 612 Q -.15(ve)-.25 G 3.253(l-).15 G 3.253(-e)-3.253 G .753 +(ach option is mutually e)-3.253 F(xclusi)-.15 E -.15(ve)-.25 G 5.753 +(.T).15 G .753(he compatibility le)-5.753 F -.15(ve)-.25 G 3.254(li).15 +G 3.254(si)-3.254 G .754(ntended to allo)-3.254 F 3.254(wu)-.25 G .754 +(sers to select be-)-3.254 F(ha)108 624 Q 1.084(vior from pre)-.2 F +1.084(vious v)-.25 F 1.083(ersions that is incompatible with ne)-.15 F +1.083(wer v)-.25 F 1.083(ersions while the)-.15 F 3.583(ym)-.15 G 1.083 +(igrate scripts to use)-3.583 F(current features and beha)108 636 Q (vior)-.2 E 2.5(.I)-.55 G(t')-2.5 E 2.5(si)-.55 G -(ntended to be a temporary solution.)-2.5 E 1.457 +(ntended to be a temporary solution.)-2.5 E 1.456 (This section does not mention beha)108 652.8 R 1.457 -(vior that is standard for a particular v)-.2 F 1.456 -(ersion \(e.g., setting)-.15 F F1(compat32)3.956 E F0 .886 +(vior that is standard for a particular v)-.2 F 1.457 +(ersion \(e.g., setting)-.15 F F1(compat32)3.957 E F0 .887 (means that quoting the rhs of the re)108 664.8 R(ge)-.15 E .886 -(xp matching operator quotes special re)-.15 F(ge)-.15 E .887 +(xp matching operator quotes special re)-.15 F(ge)-.15 E .886 (xp characters in the w)-.15 F(ord,)-.1 E(which is def)108 676.8 Q (ault beha)-.1 E(vior in bash-3.2 and abo)-.2 E -.15(ve)-.15 G(\).).15 E -.523(If a user enables, say)108 693.6 R(,)-.65 E F1(compat32)3.023 E F0 +.522(If a user enables, say)108 693.6 R(,)-.65 E F1(compat32)3.023 E F0 3.023(,i)C 3.023(tm)-3.023 G .523(ay af)-3.023 F .523(fect the beha)-.25 -F .523(vior of other compatibility le)-.2 F -.15(ve)-.25 G .522 -(ls up to and includ-).15 F .259(ing the current compatibility le)108 -705.6 R -.15(ve)-.25 G 2.759(l. The).15 F .259 -(idea is that each compatibility le)2.759 F -.15(ve)-.25 G 2.76(lc).15 G -.26(ontrols beha)-2.76 F .26(vior that changed)-.2 F 1.646(in that v)108 -717.6 R 1.646(ersion of)-.15 F F1(bash)4.146 E F0 4.146(,b)C 1.646 -(ut that beha)-4.346 F 1.646(vior may ha)-.2 F 1.946 -.15(ve b)-.2 H -1.646(een present in earlier v).15 F 4.146(ersions. F)-.15 F 1.645 -(or instance, the)-.15 F .76 +F .523(vior of other compatibility le)-.2 F -.15(ve)-.25 G .523 +(ls up to and includ-).15 F .26(ing the current compatibility le)108 +705.6 R -.15(ve)-.25 G 2.76(l. The).15 F .259 +(idea is that each compatibility le)2.759 F -.15(ve)-.25 G 2.759(lc).15 +G .259(ontrols beha)-2.759 F .259(vior that changed)-.2 F 1.645 +(in that v)108 717.6 R 1.646(ersion of)-.15 F F1(bash)4.146 E F0 4.146 +(,b)C 1.646(ut that beha)-4.346 F 1.646(vior may ha)-.2 F 1.946 -.15 +(ve b)-.2 H 1.646(een present in earlier v).15 F 4.146(ersions. F)-.15 F +1.646(or instance, the)-.15 F .761 (change to use locale-based comparisons with the)108 729.6 R F1([[)3.261 -E F0 .761(command came in bash-4.1, and earlier v)3.261 F .761 +E F0 .76(command came in bash-4.1, and earlier v)3.261 F .76 (ersions used)-.15 F(GNU Bash 5.2)72 768 Q(2021 No)136.385 E -.15(ve) -.15 G(mber 22).15 E(25)185.545 E 0 Cg EP %%Page: 26 26 @@ -3265,42 +3264,42 @@ BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35 -E(UIL)-.1 E(TINS\(1\))-.92 E 1.905(ASCII-based comparisons, so enabling) -108 84 R/F1 10/Times-Bold@0 SF(compat32)4.405 E F0 1.904 -(will enable ASCII-based comparisons as well.)4.405 F(That)6.904 E .295 +E(UIL)-.1 E(TINS\(1\))-.92 E 1.904(ASCII-based comparisons, so enabling) +108 84 R/F1 10/Times-Bold@0 SF(compat32)4.404 E F0 1.905 +(will enable ASCII-based comparisons as well.)4.404 F(That)6.905 E .296 (granularity may not be suf)108 96 R .296 (\214cient for all uses, and as a result users should emplo)-.25 F 2.796 -(yc)-.1 G .296(ompatibility le)-2.796 F -.15(ve)-.25 G .296(ls care-).15 +(yc)-.1 G .295(ompatibility le)-2.796 F -.15(ve)-.25 G .295(ls care-).15 F(fully)108 108 Q 5(.R)-.65 G(ead the documentation for a particular fe\ -ature to \214nd out the current beha)-5 E(vior)-.2 E(.)-.55 E .532 -(Bash-4.3 introduced a ne)108 124.8 R 3.032(ws)-.25 G .531(hell v)-3.032 +ature to \214nd out the current beha)-5 E(vior)-.2 E(.)-.55 E .531 +(Bash-4.3 introduced a ne)108 124.8 R 3.031(ws)-.25 G .531(hell v)-3.031 F(ariable:)-.25 E/F2 9/Times-Bold@0 SF -.27(BA)3.031 G(SH_COMP).27 E -.855(AT)-.666 G/F3 9/Times-Roman@0 SF(.).855 E F0 .531(The v)5.031 F -.531(alue assigned to this v)-.25 F .531(ariable \(a decimal)-.25 F -.15 -(ve)108 136.8 S .107(rsion number lik).15 F 2.607(e4)-.1 G .107 -(.2, or an inte)-2.607 F .107(ger corresponding to the)-.15 F F1(compat) -2.608 E/F4 10/Times-Italic@0 SF(NN)A F0 .108(option, lik)2.608 F 2.608 -(e4)-.1 G .108(2\) determines the com-)-2.608 F(patibility le)108 148.8 -Q -.15(ve)-.25 G(l.).15 E .388(Starting with bash-4.4, Bash has be)108 +.531(alue assigned to this v)-.25 F .532(ariable \(a decimal)-.25 F -.15 +(ve)108 136.8 S .108(rsion number lik).15 F 2.608(e4)-.1 G .108 +(.2, or an inte)-2.608 F .108(ger corresponding to the)-.15 F F1(compat) +2.607 E/F4 10/Times-Italic@0 SF(NN)A F0 .107(option, lik)2.607 F 2.607 +(e4)-.1 G .107(2\) determines the com-)-2.607 F(patibility le)108 148.8 +Q -.15(ve)-.25 G(l.).15 E .387(Starting with bash-4.4, Bash has be)108 165.6 R .388(gun deprecating older compatibility le)-.15 F -.15(ve)-.25 -G 2.887(ls. Ev).15 F(entually)-.15 E 2.887(,t)-.65 G .387 -(he options will)-2.887 F(be remo)108 177.6 Q -.15(ve)-.15 G 2.5(di).15 +G 2.888(ls. Ev).15 F(entually)-.15 E 2.888(,t)-.65 G .388 +(he options will)-2.888 F(be remo)108 177.6 Q -.15(ve)-.15 G 2.5(di).15 G 2.5(nf)-2.5 G -.2(avo)-2.6 G 2.5(ro).2 G(f)-2.5 E F2 -.27(BA)2.5 G -(SH_COMP).27 E -.855(AT)-.666 G F3(.).855 E F0 1.163 -(Bash-5.0 is the \214nal v)108 194.4 R 1.163 -(ersion for which there will be an indi)-.15 F 1.164 -(vidual shopt option for the pre)-.25 F 1.164(vious v)-.25 F(ersion.) +(SH_COMP).27 E -.855(AT)-.666 G F3(.).855 E F0 1.164 +(Bash-5.0 is the \214nal v)108 194.4 R 1.164 +(ersion for which there will be an indi)-.15 F 1.163 +(vidual shopt option for the pre)-.25 F 1.163(vious v)-.25 F(ersion.) -.15 E(Users should use)108 206.4 Q F2 -.27(BA)2.5 G(SH_COMP).27 E -.855 -(AT)-.666 G F0(on bash-5.0 and later v)3.105 E(ersions.)-.15 E 1.614 +(AT)-.666 G F0(on bash-5.0 and later v)3.105 E(ersions.)-.15 E 1.613 (The follo)108 223.2 R 1.613(wing table describes the beha)-.25 F 1.613 (vior changes controlled by each compatibility le)-.2 F -.15(ve)-.25 G -4.113(ls).15 G 4.113(etting. The)-4.113 F F1(compat)108 235.2 Q F4(NN)A -F0 1.186(tag is used as shorthand for setting the compatibility le)3.685 +4.113(ls).15 G 4.114(etting. The)-4.113 F F1(compat)108 235.2 Q F4(NN)A +F0 1.186(tag is used as shorthand for setting the compatibility le)3.686 F -.15(ve)-.25 G 3.686(lt).15 G(o)-3.686 E F4(NN)3.686 E F0 1.186 -(using one of the follo)3.686 F(wing)-.25 E 3.807(mechanisms. F)108 -247.2 R 1.307(or v)-.15 F 1.307 +(using one of the follo)3.686 F(wing)-.25 E 3.806(mechanisms. F)108 +247.2 R 1.306(or v)-.15 F 1.306 (ersions prior to bash-5.0, the compatibility le)-.15 F -.15(ve)-.25 G -3.806(lm).15 G 1.306(ay be set using the corresponding)-3.806 F F1 +3.807(lm).15 G 1.307(ay be set using the corresponding)-3.807 F F1 (compat)108 259.2 Q F4(NN)A F0 .502(shopt option.)3.002 F -.15(Fo)5.502 G 3.002(rb).15 G .502(ash-4.3 and later v)-3.002 F .502(ersions, the) -.15 F F2 -.27(BA)3.002 G(SH_COMP).27 E -.855(AT)-.666 G F0 -.25(va) @@ -3311,63 +3310,63 @@ G 3.002(rb).15 G .502(ash-4.3 and later v)-3.002 F .502(ersions, the) 2.5(pm).15 G(atching operator \(=~\) has no special ef)-2.5 E(fect)-.25 E F1(compat32)108 316.8 Q F0<83>144 328.8 Q .35 (interrupting a command list such as "a ; b ; c" causes the e)180 328.8 -R -.15(xe)-.15 G .35(cution of the ne).15 F .35(xt command)-.15 F .017 +R -.15(xe)-.15 G .35(cution of the ne).15 F .35(xt command)-.15 F .018 (in the list \(in bash-4.0 and later v)180 340.8 R .018 -(ersions, the shell acts as if it recei)-.15 F -.15(ve)-.25 G 2.518(dt) -.15 G .018(he interrupt, so in-)-2.518 F +(ersions, the shell acts as if it recei)-.15 F -.15(ve)-.25 G 2.517(dt) +.15 G .017(he interrupt, so in-)-2.517 F (terrupting one command in a list aborts the e)180 352.8 Q -.15(xe)-.15 G(cution of the entire list\)).15 E F1(compat40)108 369.6 Q F0<83>144 -381.6 Q(the)180 381.6 Q F1(<)2.674 E F0(and)2.674 E F1(>)2.673 E F0 .173 +381.6 Q(the)180 381.6 Q F1(<)2.673 E F0(and)2.673 E F1(>)2.673 E F0 .173 (operators to the)2.673 F F1([[)2.673 E F0 .173 (command do not consider the current locale when compar)2.673 F(-)-.2 E -.067(ing strings; the)180 393.6 R 2.567(yu)-.15 G .067 -(se ASCII ordering.)-2.567 F .068(Bash v)5.068 F .068 +.068(ing strings; the)180 393.6 R 2.568(yu)-.15 G .068 +(se ASCII ordering.)-2.568 F .068(Bash v)5.068 F .067 (ersions prior to bash-4.1 use ASCII collation)-.15 F(and)180 405.6 Q F4 -(str)4.743 E(cmp)-.37 E F0 1.903 -(\(3\); bash-4.1 and later use the current locale').19 F 4.402(sc)-.55 G -1.902(ollation sequence and)-4.402 F F4(str)4.742 E(-)-.2 E(coll)180 +(str)4.742 E(cmp)-.37 E F0 1.902 +(\(3\); bash-4.1 and later use the current locale').19 F 4.403(sc)-.55 G +1.903(ollation sequence and)-4.403 F F4(str)4.743 E(-)-.2 E(coll)180 417.6 Q F0(\(3\).).51 E F1(compat41)108 434.4 Q F0<83>144 446.4 Q(in)180 446.4 Q F4(posix)3.79 E F0(mode,)3.79 E F1(time)3.79 E F0 1.29 (may be follo)3.79 F 1.29 (wed by options and still be recognized as a reserv)-.25 F(ed)-.15 E -.1 (wo)180 458.4 S(rd \(this is POSIX interpretation 267\)).1 E<83>144 -470.4 Q(in)180 470.4 Q F4(posix)2.709 E F0 .208 -(mode, the parser requires that an e)2.709 F -.15(ve)-.25 G 2.708(nn).15 -G .208(umber of single quotes occur in the)-2.708 F F4(wor)2.708 E(d) --.37 E F0 .281(portion of a double-quoted parameter e)180 482.4 R .282 -(xpansion and treats them specially)-.15 F 2.782(,s)-.65 G 2.782(ot) --2.782 G .282(hat charac-)-2.782 F(ters within the single quotes are co\ +470.4 Q(in)180 470.4 Q F4(posix)2.708 E F0 .208 +(mode, the parser requires that an e)2.708 F -.15(ve)-.25 G 2.708(nn).15 +G .208(umber of single quotes occur in the)-2.708 F F4(wor)2.709 E(d) +-.37 E F0 .282(portion of a double-quoted parameter e)180 482.4 R .282 +(xpansion and treats them specially)-.15 F 2.781(,s)-.65 G 2.781(ot) +-2.781 G .281(hat charac-)-2.781 F(ters within the single quotes are co\ nsidered quoted \(this is POSIX interpretation 221\))180 494.4 Q F1 -(compat42)108 511.2 Q F0<83>144 523.2 Q 1.056(the replacement string in\ - double-quoted pattern substitution does not under)180 523.2 R 1.055 +(compat42)108 511.2 Q F0<83>144 523.2 Q 1.055(the replacement string in\ + double-quoted pattern substitution does not under)180 523.2 R 1.056 (go quote re-)-.18 F(mo)180 535.2 Q -.25(va)-.15 G(l, as it does in v) .25 E(ersions after bash-4.2)-.15 E<83>144 547.2 Q .021 (in posix mode, single quotes are considered special when e)180 547.2 R -.021(xpanding the)-.15 F F4(wor)2.521 E(d)-.37 E F0 .021(portion of a) -2.521 F .018(double-quoted parameter e)180 559.2 R .017 +.021(xpanding the)-.15 F F4(wor)2.52 E(d)-.37 E F0 .02(portion of a)2.52 +F .017(double-quoted parameter e)180 559.2 R .017 (xpansion and can be used to quote a closing brace or other spe-)-.15 F -.998(cial character \(this is part of POSIX interpretation 221\); in la\ -ter v)180 571.2 R .999(ersions, single quotes)-.15 F +.999(cial character \(this is part of POSIX interpretation 221\); in la\ +ter v)180 571.2 R .998(ersions, single quotes)-.15 F (are not special within double-quoted w)180 583.2 Q(ord e)-.1 E -(xpansions)-.15 E F1(compat43)108 600 Q F0<83>144 612 Q 1.071 -(the shell does not print a w)180 612 R 1.07 -(arning message if an attempt is made to use a quoted com-)-.1 F .248 -(pound assignment as an ar)180 624 R .249 -(gument to declare \(declare -a foo='\(1 2\)'\). Later v)-.18 F .249 +(xpansions)-.15 E F1(compat43)108 600 Q F0<83>144 612 Q 1.07 +(the shell does not print a w)180 612 R 1.071 +(arning message if an attempt is made to use a quoted com-)-.1 F .249 +(pound assignment as an ar)180 624 R .248 +(gument to declare \(declare -a foo='\(1 2\)'\). Later v)-.18 F .248 (ersions w)-.15 F(arn)-.1 E(that this usage is deprecated)180 636 Q<83> -144 648 Q -.1(wo)180 648 S .501(rd e).1 F .501 +144 648 Q -.1(wo)180 648 S .5(rd e).1 F .501 (xpansion errors are considered non-f)-.15 F .501 (atal errors that cause the current command to)-.1 F -.1(fa)180 660 S .605(il, e).1 F -.15(ve)-.25 G 3.105(ni).15 G 3.105(np)-3.105 G .605 (osix mode \(the def)-3.105 F .605(ault beha)-.1 F .605(vior is to mak) -.2 F 3.105(et)-.1 G .605(hem f)-3.105 F .605 (atal errors that cause the)-.1 F(shell to e)180 672 Q(xit\))-.15 E<83> -144 684 Q .355(when e)180 684 R -.15(xe)-.15 G .354 -(cuting a shell function, the loop state \(while/until/etc.\)).15 F .354 -(is not reset, so)5.354 F F1(br)2.854 E(eak)-.18 E F0(or)2.854 E F1 +144 684 Q .354(when e)180 684 R -.15(xe)-.15 G .354 +(cuting a shell function, the loop state \(while/until/etc.\)).15 F .355 +(is not reset, so)5.354 F F1(br)2.855 E(eak)-.18 E F0(or)2.855 E F1 (continue)180 696 Q F0 .052 (in that function will break or continue loops in the calling conte) -2.552 F .053(xt. Bash-4.4 and)-.15 F(later reset the loop state to pre) +2.553 F .052(xt. Bash-4.4 and)-.15 F(later reset the loop state to pre) 180 708 Q -.15(ve)-.25 G(nt this).15 E(GNU Bash 5.2)72 768 Q(2021 No) 136.385 E -.15(ve)-.15 G(mber 22).15 E(26)185.545 E 0 Cg EP %%Page: 27 27 @@ -3379,42 +3378,42 @@ BP E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(compat44)108 84 Q F0 <83>144 96 Q .719(the shell sets up the v)180 96 R .719(alues used by) -.25 F/F2 9/Times-Bold@0 SF -.27(BA)3.219 G(SH_ARGV).27 E F0(and)2.969 E -F2 -.27(BA)3.219 G(SH_ARGC).27 E F0 .719(so the)2.969 F 3.218(yc)-.15 G -.718(an e)-3.218 F(xpand)-.15 E(to the shell')180 108 Q 2.5(sp)-.55 G +F2 -.27(BA)3.219 G(SH_ARGC).27 E F0 .719(so the)2.969 F 3.219(yc)-.15 G +.719(an e)-3.219 F(xpand)-.15 E(to the shell')180 108 Q 2.5(sp)-.55 G (ositional parameters e)-2.5 E -.15(ve)-.25 G 2.5(ni).15 G 2.5(fe)-2.5 G -(xtended deb)-2.65 E(ugging mode is not enabled)-.2 E<83>144 120 Q 2.634 -(as)180 120 S .134(ubshell inherits loops from its parent conte)-2.634 F +(xtended deb)-2.65 E(ugging mode is not enabled)-.2 E<83>144 120 Q 2.635 +(as)180 120 S .135(ubshell inherits loops from its parent conte)-2.635 F .135(xt, so)-.15 F F1(br)2.635 E(eak)-.18 E F0(or)2.635 E F1(continue) -2.635 E F0 .135(will cause the sub-)2.635 F(shell to e)180 132 Q 2.5 +2.634 E F0 .134(will cause the sub-)2.634 F(shell to e)180 132 Q 2.5 (xit. Bash-5.0)-.15 F(and later reset the loop state to pre)2.5 E -.15 -(ve)-.25 G(nt the e).15 E(xit)-.15 E<83>144 144 Q -.25(va)180 144 S .619 +(ve)-.25 G(nt the e).15 E(xit)-.15 E<83>144 144 Q -.25(va)180 144 S .618 (riable assignments preceding b).25 F .618(uiltins lik)-.2 F(e)-.1 E F1 (export)3.118 E F0(and)3.118 E F1 -.18(re)3.118 G(adonly).18 E F0 .618 -(that set attrib)3.118 F .618(utes con-)-.2 F .119(tinue to af)180 156 R -.119(fect v)-.25 F .119(ariables with the same name in the calling en) --.25 F .12(vironment e)-.4 F -.15(ve)-.25 G 2.62(ni).15 G 2.62(ft)-2.62 -G .12(he shell is)-2.62 F(not in posix mode)180 168 Q F1(compat50)108 -184.8 Q F0<83>144 196.8 Q 1.209(Bash-5.1 changed the w)180 196.8 R(ay) --.1 E F2($RANDOM)3.709 E F0 1.209 -(is generated to introduce slightly more random-)3.459 F 1.018 +(that set attrib)3.118 F .619(utes con-)-.2 F .12(tinue to af)180 156 R +.12(fect v)-.25 F .119(ariables with the same name in the calling en) +-.25 F .119(vironment e)-.4 F -.15(ve)-.25 G 2.619(ni).15 G 2.619(ft) +-2.619 G .119(he shell is)-2.619 F(not in posix mode)180 168 Q F1 +(compat50)108 184.8 Q F0<83>144 196.8 Q 1.209(Bash-5.1 changed the w)180 +196.8 R(ay)-.1 E F2($RANDOM)3.709 E F0 1.209 +(is generated to introduce slightly more random-)3.459 F 1.019 (ness. If the shell compatibility le)180 208.8 R -.15(ve)-.25 G 3.518 (li).15 G 3.518(ss)-3.518 G 1.018(et to 50 or lo)-3.518 F(wer)-.25 E -3.518(,i)-.4 G 3.518(tr)-3.518 G -2.15 -.25(ev e)-3.518 H 1.019 -(rts to the method from).25 F .733(bash-5.0 and pre)180 220.8 R .733 -(vious v)-.25 F .732 +3.518(,i)-.4 G 3.518(tr)-3.518 G -2.15 -.25(ev e)-3.518 H 1.018 +(rts to the method from).25 F .732(bash-5.0 and pre)180 220.8 R .732 +(vious v)-.25 F .733 (ersions, so seeding the random number generator by assigning a)-.15 F -.25(va)180 232.8 S(lue to).25 E F2(RANDOM)2.5 E F0 (will produce the same sequence as in bash-5.0)2.25 E<83>144 244.8 Q -.695(If the command hash table is empty)180 244.8 R 3.196(,b)-.65 G .696 -(ash v)-3.196 F .696(ersions prior to bash-5.1 printed an informa-)-.15 -F 1.321(tional message to that ef)180 256.8 R 1.321(fect, e)-.25 F -.15 +.696(If the command hash table is empty)180 244.8 R 3.196(,b)-.65 G .696 +(ash v)-3.196 F .695(ersions prior to bash-5.1 printed an informa-)-.15 +F 1.32(tional message to that ef)180 256.8 R 1.321(fect, e)-.25 F -.15 (ve)-.25 G 3.821(nw).15 G 1.321 (hen producing output that can be reused as input.)-3.821 F (Bash-5.1 suppresses that message when the)180 268.8 Q F12.5 E F0 (option is supplied.)2.5 E F1(compat51)108 285.6 Q F0<83>144 297.6 Q -(The)180 297.6 Q F1(unset)2.954 E F0 -.2(bu)2.954 G .454 -(iltin treats attempts to unset array subscripts).2 F F1(@)2.955 E F0 -(and)2.955 E F1(*)2.955 E F0(dif)2.955 E .455(ferently depending)-.25 F +(The)180 297.6 Q F1(unset)2.955 E F0 -.2(bu)2.955 G .455 +(iltin treats attempts to unset array subscripts).2 F F1(@)2.954 E F0 +(and)2.954 E F1(*)2.954 E F0(dif)2.954 E .454(ferently depending)-.25 F (on whether the array is inde)180 309.6 Q -.15(xe)-.15 G 2.5(do).15 G 2.5(ra)-2.5 G(ssociati)-2.5 E -.15(ve)-.25 G 2.5(,a).15 G(nd dif)-2.5 E (ferently than in pre)-.25 E(vious v)-.25 E(ersions.)-.15 E/F3 10.95 diff --git a/doc/rbash.ps b/doc/rbash.ps index 37b254a2..3a2fdfae 100644 --- a/doc/rbash.ps +++ b/doc/rbash.ps @@ -1,6 +1,6 @@ %!PS-Adobe-3.0 %%Creator: groff version 1.22.4 -%%CreationDate: Fri Apr 8 15:46:03 2022 +%%CreationDate: Mon Jun 13 11:04:35 2022 %%DocumentNeededResources: font Times-Roman %%+ font Times-Bold %%DocumentSuppliedResources: procset grops 1.22 4 diff --git a/doc/version.texi b/doc/version.texi index 78e22b8e..1cdb444a 100644 --- a/doc/version.texi +++ b/doc/version.texi @@ -2,10 +2,10 @@ Copyright (C) 1988-2022 Free Software Foundation, Inc. @end ignore -@set LASTCHANGE Thu Feb 24 14:43:35 EST 2022 +@set LASTCHANGE Fri Jun 3 10:47:05 EDT 2022 @set EDITION 5.2 @set VERSION 5.2 -@set UPDATED 24 February 2022 -@set UPDATED-MONTH February 2022 +@set UPDATED 3 June 2022 +@set UPDATED-MONTH June 2022 diff --git a/examples/loadables/Makefile.in b/examples/loadables/Makefile.in index 60aef04c..a3cf3725 100644 --- a/examples/loadables/Makefile.in +++ b/examples/loadables/Makefile.in @@ -249,7 +249,7 @@ pushd.c: ${topdir}/builtins/pushd.def pushd.o: pushd.c $(RM) $@ - $(SHOBJ_CC) -DHAVE_CONFIG_H -DPUSHD_AND_POPD -DLOADABLE_BUILTIN $(SHOBJ_CFLAGS) $(CFLAGS) $(CPPFLAGS) $(INC) -c -o $@ $< + $(SHOBJ_CC) -Wno-format-security -DHAVE_CONFIG_H -DPUSHD_AND_POPD -DLOADABLE_BUILTIN $(SHOBJ_CFLAGS) $(CFLAGS) $(CPPFLAGS) $(INC) -c -o $@ $< pushd: pushd.o $(SHOBJ_LD) $(SHOBJ_LDFLAGS) $(SHOBJ_XLDFLAGS) -o $@ pushd.o $(SHOBJ_LIBS) @@ -262,7 +262,7 @@ mostlyclean: clean -( cd perl && ${MAKE} ${MFLAGS} $@ ) distclean maintainer-clean: clean - $(RM) Makefile Makefile.inc pushd.c + $(RM) Makefile Makefile.inc Makefile.sample pushd.c -( cd perl && ${MAKE} ${MFLAGS} $@ ) installdirs: @@ -270,6 +270,7 @@ installdirs: install-dev: installdirs @$(INSTALL_DATA) Makefile.inc $(DESTDIR)$(loadablesdir)/Makefile.inc + @$(INSTALL_DATA) Makefile.sample $(DESTDIR)$(loadablesdir)/Makefile.sample @$(INSTALL_DATA) $(srcdir)/loadables.h $(DESTDIR)$(loadablesdir)/loadables.h @( cd $(BUILD_DIR) && ${MAKE} ${MFLAGS} DESTDIR="$(DESTDIR)" install-headers) @@ -281,7 +282,8 @@ install-supported: all installdirs install-dev done uninstall-dev: - -$(RM) $(DESTDIR)$(loadablesdir)/Makefile.inc $(DESTDIR)$(loadablesdir)/loadables.h + -$(RM) $(DESTDIR)$(loadablesdir)/Makefile.inc $(DESTDIR)$(loadablesdir)/Makefile.sample + -$(RM) $(DESTDIR)$(loadablesdir)/loadables.h -( cd $(BUILD_DIR) && ${MAKE} ${MFLAGS} DESTDIR="$(DESTDIR)" uninstall-headers) uninstall-supported: uninstall-dev diff --git a/examples/loadables/Makefile.inc.in b/examples/loadables/Makefile.inc.in index 8b419a78..ee3c3035 100644 --- a/examples/loadables/Makefile.inc.in +++ b/examples/loadables/Makefile.inc.in @@ -1,7 +1,7 @@ # # Sample makefile for bash loadable builtin development # -# Copyright (C) 2015 Free Software Foundation, Inc. +# Copyright (C) 2015-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -99,10 +99,3 @@ INC = -I$(headersdir) -I$(headersdir)/include -I$(headersdir)/builtins .c.o: $(SHOBJ_CC) $(SHOBJ_CFLAGS) $(CCFLAGS) $(INC) -c -o $@ $< - -all: example - -example: example.o - $(SHOBJ_LD) $(SHOBJ_LDFLAGS) $(SHOBJ_XLDFLAGS) -o $@ example.o $(SHOBJ_LIBS) - -example.o: example.c diff --git a/examples/loadables/Makefile.sample.in b/examples/loadables/Makefile.sample.in new file mode 100644 index 00000000..fe9b06ad --- /dev/null +++ b/examples/loadables/Makefile.sample.in @@ -0,0 +1,44 @@ +# +# Sample makefile for bash loadable builtin development +# +# Copyright (C) 2022 Free Software Foundation, Inc. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + +# these should match the ones in Makefile.in (for the make install target) + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +libdir = @libdir@ + +# ${loadablesdir} is where the example loadable builtins and data files +# are installed (make install target in Makefile.in) + +loadablesdir = @loadablesdir@ +DESTDIR = + +# include Makefile.inc for all boilerplate definitions + +include $(DESTDIR)$(loadablesdir)/Makefile.inc + +# here, `example' is the name of the shared object +# replace `example' with the appropriate filename + +all: example + +example: example.o + $(SHOBJ_LD) $(SHOBJ_LDFLAGS) $(SHOBJ_XLDFLAGS) -o $@ example.o $(SHOBJ_LIBS) + +example.o: example.c diff --git a/examples/loadables/cat.c b/examples/loadables/cat.c index 0b082d33..71685f33 100644 --- a/examples/loadables/cat.c +++ b/examples/loadables/cat.c @@ -5,7 +5,7 @@ */ /* - Copyright (C) 1999-2009 Free Software Foundation, Inc. + Copyright (C) 1999-2009,2022 Free Software Foundation, Inc. This file is part of GNU Bash. Bash is free software: you can redistribute it and/or modify @@ -40,7 +40,7 @@ fcopy(fd, fn) int fd; char *fn; { - char buf[1024], *s; + char buf[4096], *s; int n, w, e; while (n = read(fd, buf, sizeof (buf))) { diff --git a/examples/loadables/print.c b/examples/loadables/print.c index 0120dbf4..d6c59035 100644 --- a/examples/loadables/print.c +++ b/examples/loadables/print.c @@ -181,7 +181,8 @@ printargs (list, ofp) for (sawc = 0, l = list; l; l = l->next) { ostr = ansicstr (l->word->word, strlen (l->word->word), 0, &sawc, (int *)0); - fprintf (ofp, "%s", ostr); + if (ostr) + fprintf (ofp, "%s", ostr); free (ostr); if (sawc) return (0); diff --git a/examples/loadables/seq.c b/examples/loadables/seq.c index e5624079..f8eec5bb 100644 --- a/examples/loadables/seq.c +++ b/examples/loadables/seq.c @@ -35,6 +35,18 @@ extern int errno; #endif +#if defined (PRI_MACROS_BROKEN) +# undef PRIdMAX +#endif + +#if !defined (PRIdMAX) +# if HAVE_LONG_LONG +# define PRIdMAX "lld" +# else +# define PRIdMAX "ld" +# endif +#endif + #if defined (HAVE_LONG_DOUBLE) && HAVE_DECL_STRTOLD && !defined(STRTOLD_BROKEN) typedef long double floatmax_t; # define FLOATMAX_CONV "L" diff --git a/examples/scripts/bcalc b/examples/scripts/bcalc new file mode 100644 index 00000000..bc7e2b40 --- /dev/null +++ b/examples/scripts/bcalc @@ -0,0 +1,104 @@ +#! /bin/bash +# +# bcalc - a coproc example that uses bc to evaluate floating point expressions +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +# If supplied command-line arguments, it uses them as the expression to have +# bc evaluate, and exits after reading the result. Otherwise, it enters an +# interactive mode, reading expressions and passing them to bc for evaluation, +# with line editing and history. +# +# You could even use this to write bc programs, but you'd have to rework the +# single-line REPL a little bit to do that (and get over the annoying timeout +# on the read) +# +# Chet Ramey +# chet.ramey@case.edu + +# we force stderr to avoid synchronization issues on calculation errors, even +# with the read timeout +init() +{ + coproc BC { bc -q 2>&1; } + # set scale + printf "scale = 10\n" >&${BC[1]} + # bash automatically sets BC_PID to the coproc pid; we store it so we + # can be sure to use it even after bash reaps the coproc and unsets + # the variables + coproc_pid=$BC_PID +} + +# not strictly necessary; the pipes will be closed when the program exits +# but we can use it in reset() below +fini() +{ + eval exec "${BC[1]}>&- ${BC[0]}<&-" +} + +reset() +{ + fini # close the old pipes + + sleep 1 + kill -1 $coproc_pid >/dev/null 2>&1 # make sure the coproc is dead + unset coproc_pid + + init +} + +# set a read timeout of a half second to avoid synchronization problems +calc() +{ + printf "%s\n" "$1" >&${BC[1]} + read -t 0.5 ANSWER <&${BC[0]} +} + +init + +# if we have command line options, process them as a single expression and +# print the result. we could just run `bc <<<"scale = 10 ; $*"' and be done +# with it, but we init the coproc before this and run the calculation through +# the pipes in case we want to do something else with the answer + +if [ $# -gt 0 ] ; then + calc "$*" + printf "%s\n" "$ANSWER" + fini + exit 0 +fi + +# we don't want to save the history anywhere +unset HISTFILE + +while read -e -p 'equation: ' EQN +do + case "$EQN" in + '') continue ;; + exit|quit) break ;; + reset) reset ; continue ;; + esac + + # save to the history list + history -s "$EQN" + + # run it through bc + calc "$EQN" + if [ -n "$ANSWER" ] ; then + printf "%s\n" "$ANSWER" + fi +done +fini + +exit 0 diff --git a/execute_cmd.c b/execute_cmd.c index 48706435..dd35c7d1 100644 --- a/execute_cmd.c +++ b/execute_cmd.c @@ -2655,7 +2655,11 @@ execute_pipeline (command, asynchronous, pipe_in, pipe_out, fds_to_close) lstdin = wait_for (lastpid, 0); } else - lstdin = wait_for_single_pid (lastpid, 0); /* checks bgpids list */ + { + lstdin = wait_for_single_pid (lastpid, 0); /* checks bgpids list */ + if (lstdin > 256) /* error sentinel */ + lstdin = 127; + } #else lstdin = wait_for (lastpid, 0); #endif diff --git a/jobs.c b/jobs.c index 77d9dc35..2c91fb0e 100644 --- a/jobs.c +++ b/jobs.c @@ -2606,7 +2606,7 @@ wait_for_single_pid (pid, flags) { if (flags & JWAIT_PERROR) internal_error (_("wait: pid %ld is not a child of this shell"), (long)pid); - return (127); + return (257); } alive = 0; @@ -2690,7 +2690,7 @@ wait_for_background_pids (ps) if (ps) { ps->pid = pid; - ps->status = (r < 0) ? 127 : r; + ps->status = (r < 0 || r > 256) ? 127 : r; } if (r == -1 && errno == ECHILD) { @@ -3695,7 +3695,7 @@ kill_pid (pid, sig, group) result = killpg (pid, sig); /* If we're killing using job control notification, for example, without job control active, we have to do things ourselves. */ - else if (jobs[job]->pgrp == shell_pgrp) + else if (jobs[job]->pgrp == shell_pgrp) /* XXX - IS_JOBCONTROL(job) == 0? */ { p = jobs[job]->pipe; do diff --git a/lib/glob/glob.c b/lib/glob/glob.c index c8577945..b66af85c 100644 --- a/lib/glob/glob.c +++ b/lib/glob/glob.c @@ -121,7 +121,7 @@ void wcdequote_pathname PARAMS((wchar_t *)); static void wdequote_pathname PARAMS((char *)); static void dequote_pathname PARAMS((char *)); #else -# define dequote_pathname udequote_pathname +# define dequote_pathname(p) udequote_pathname(p) #endif static int glob_testdir PARAMS((char *, int)); static char **glob_dir_to_array PARAMS((char *, char **, int)); diff --git a/lib/malloc/imalloc.h b/lib/malloc/imalloc.h index d07adac2..bebd1364 100644 --- a/lib/malloc/imalloc.h +++ b/lib/malloc/imalloc.h @@ -32,6 +32,11 @@ #define MALLOC_WRAPFUNCS +/* If defined, as it is by default, use the lesscore() function to attempt + to reduce the top of the heap when freeing memory blocks larger than a + defined threshold. */ +#define USE_LESSCORE + /* Generic pointer type. */ #ifndef PTR_T # if defined (__STDC__) diff --git a/lib/malloc/malloc.c b/lib/malloc/malloc.c index 146d7f23..f61f0271 100644 --- a/lib/malloc/malloc.c +++ b/lib/malloc/malloc.c @@ -597,6 +597,7 @@ _malloc_unblock_signals (setp, osetp) #endif } +#if defined (USE_LESSCORE) /* Return some memory to the system by reducing the break. This is only called with NU > pagebucket, so we're always assured of giving back more than one page of memory. */ @@ -617,6 +618,7 @@ lesscore (nu) /* give system back some memory */ _mstats.nlesscore[nu]++; #endif } +#endif /* USE_LESSCORE */ /* Ask system for more memory; add to NEXTF[NU]. BUSY[NU] must be set to 1. */ static void @@ -1024,11 +1026,9 @@ internal_free (mem, file, line, flags) } #endif -#if GLIBC21 - if (nunits >= LESSCORE_MIN && ((char *)p + binsize(nunits) == sbrk (0))) -#else +#if defined (USE_LESSCORE) + /* We take care of the mmap case and munmap above */ if (nunits >= LESSCORE_MIN && ((char *)p + binsize(nunits) == memtop)) -#endif { /* If above LESSCORE_FRC, give back unconditionally. This should be set high enough to be infrequently encountered. If between LESSCORE_MIN @@ -1041,6 +1041,7 @@ internal_free (mem, file, line, flags) goto free_return; } } +#endif /* USE_LESSCORE */ #ifdef MEMSCRAMBLE if (p->mh_nbytes) diff --git a/lib/readline/callback.c b/lib/readline/callback.c index 1a3235f1..69df77df 100644 --- a/lib/readline/callback.c +++ b/lib/readline/callback.c @@ -279,8 +279,11 @@ rl_callback_read_char (void) } /* Make sure application hooks can see whether we saw EOF. */ - if (rl_eof_found = eof) - RL_SETSTATE(RL_STATE_EOF); + if (eof > 0) + { + rl_eof_found = eof; + RL_SETSTATE(RL_STATE_EOF); + } if (rl_done) { diff --git a/lib/readline/doc/rltech.texi b/lib/readline/doc/rltech.texi index 6f7ffb93..fe64a42c 100644 --- a/lib/readline/doc/rltech.texi +++ b/lib/readline/doc/rltech.texi @@ -2368,6 +2368,7 @@ history list. #include #include #include +#include #if defined (HAVE_STRING_H) # include @@ -2448,6 +2449,8 @@ main (argc, argv) @{ char *line, *s; + setlocale (LC_ALL, ""); + progname = argv[0]; initialize_readline (); /* Bind our completer. */ diff --git a/lib/readline/examples/excallback.c b/lib/readline/examples/excallback.c index 4206acfc..923c9238 100644 --- a/lib/readline/examples/excallback.c +++ b/lib/readline/examples/excallback.c @@ -50,6 +50,8 @@ Copyright (C) 1999 Jeff Solomon #include #include /* xxx - should make this more general */ +#include + #ifdef READLINE_LIBRARY # include "readline.h" #else @@ -104,6 +106,8 @@ main() { fd_set fds; + setlocale (LC_ALL, ""); + /* Adjust the terminal slightly before the handler is installed. Disable * canonical mode processing and set the input character time flag to be * non-blocking. diff --git a/lib/readline/examples/histexamp.c b/lib/readline/examples/histexamp.c index 3b43674f..309d769b 100644 --- a/lib/readline/examples/histexamp.c +++ b/lib/readline/examples/histexamp.c @@ -27,8 +27,11 @@ # include #endif +#include +#include #include +int main (argc, argv) int argc; char **argv; diff --git a/lib/readline/examples/rl-callbacktest.c b/lib/readline/examples/rl-callbacktest.c index 0f00e57c..7febacd1 100644 --- a/lib/readline/examples/rl-callbacktest.c +++ b/lib/readline/examples/rl-callbacktest.c @@ -7,9 +7,13 @@ #include #include +#include + #include #include +#include + /* Standard readline include files. */ #if defined (READLINE_LIBRARY) # include "readline.h" @@ -22,10 +26,19 @@ extern int errno; static void cb_linehandler (char *); +static void signandler (int); -int running; +int running, sigwinch_received; const char *prompt = "rltest$ "; +/* Handle SIGWINCH and window size changes when readline is not active and + reading a character. */ +static void +sighandler (int sig) +{ + sigwinch_received = 1; +} + /* Callback function called for each line when accept-line executed, EOF seen, or EOF character read. This sets a flag and returns; it could also call exit(3). */ @@ -60,6 +73,11 @@ main (int c, char **v) fd_set fds; int r; + setlocale (LC_ALL, ""); + + /* Handle SIGWINCH */ + signal (SIGWINCH, sighandler); + /* Install the line handler. */ rl_callback_handler_install (prompt, cb_linehandler); @@ -80,6 +98,13 @@ main (int c, char **v) rl_callback_handler_remove (); break; } + if (sigwinch_received) + { + rl_resize_terminal (); + sigwinch_received = 0; + } + if (r < 0) + continue; if (FD_ISSET (fileno (rl_instream), &fds)) rl_callback_read_char (); diff --git a/lib/readline/examples/rl.c b/lib/readline/examples/rl.c index a5cf276c..39e5b8eb 100644 --- a/lib/readline/examples/rl.c +++ b/lib/readline/examples/rl.c @@ -38,6 +38,10 @@ extern void exit(); #endif +#ifdef HAVE_LOCALE_H +# include +#endif + #if defined (READLINE_LIBRARY) # include "posixstat.h" # include "readline.h" @@ -93,6 +97,10 @@ main (argc, argv) else progname++; +#ifdef HAVE_SETLOCALE + setlocale (LC_ALL, ""); +#endif + /* defaults */ prompt = "readline$ "; fd = nch = 0; diff --git a/lib/readline/examples/rlcat.c b/lib/readline/examples/rlcat.c index b4942413..aabe0ca3 100644 --- a/lib/readline/examples/rlcat.c +++ b/lib/readline/examples/rlcat.c @@ -45,6 +45,10 @@ extern void exit(); #endif +#ifdef HAVE_LOCALE_H +# include +#endif + #ifndef errno extern int errno; #endif @@ -79,6 +83,10 @@ main (argc, argv) char *temp; int opt, Vflag, Nflag; +#ifdef HAVE_SETLOCALE + setlocale (LC_ALL, ""): +#endif + progname = strrchr(argv[0], '/'); if (progname == 0) progname = argv[0]; diff --git a/lib/readline/examples/rltest.c b/lib/readline/examples/rltest.c index 65abe87c..8b7c00c8 100644 --- a/lib/readline/examples/rltest.c +++ b/lib/readline/examples/rltest.c @@ -36,6 +36,10 @@ extern void exit(); #endif +#ifdef HAVE_LOCALE_H +# include +#endif + #ifdef READLINE_LIBRARY # include "readline.h" # include "history.h" @@ -52,6 +56,10 @@ main () char *temp, *prompt; int done; +#ifdef HAVE_SETLOCALE + setlocale (LC_ALL, ""); +#endif + temp = (char *)NULL; prompt = "readline$ "; done = 0; diff --git a/lib/readline/input.c b/lib/readline/input.c index 44d14872..6f038d45 100644 --- a/lib/readline/input.c +++ b/lib/readline/input.c @@ -79,7 +79,7 @@ extern int errno; # define O_NDELAY O_NONBLOCK /* Posix style */ #endif -#if defined (HAVE_PSELECT) +#if defined (HAVE_PSELECT) || defined (HAVE_SELECT) extern sigset_t _rl_orig_sigset; #endif diff --git a/lib/sh/oslib.c b/lib/sh/oslib.c index 65eb99d9..edc5c6f2 100644 --- a/lib/sh/oslib.c +++ b/lib/sh/oslib.c @@ -167,8 +167,8 @@ getdtablesize () # endif void bcopy (s,d,n) - char *d, *s; - int n; + void *d, *s; + size_t n; { FASTCOPY (s, d, n); } @@ -180,8 +180,8 @@ bcopy (s,d,n) # endif void bzero (s, n) - char *s; - int n; + void *s; + size_t n; { register int i; register char *r; @@ -197,7 +197,7 @@ bzero (s, n) int gethostname (name, namelen) char *name; - int namelen; + size_t namelen; { int i; struct utsname ut; @@ -214,7 +214,7 @@ gethostname (name, namelen) int gethostname (name, namelen) char *name; - int namelen; + size_t namelen; { strncpy (name, "unknown", namelen); name[namelen] = '\0'; @@ -237,7 +237,7 @@ killpg (pgrp, sig) int mkfifo (path, mode) char *path; - int mode; + mode_t mode; { #if defined (S_IFIFO) return (mknod (path, (mode | S_IFIFO), 0)); diff --git a/lib/sh/shmatch.c b/lib/sh/shmatch.c index d6e7f904..a717d45c 100644 --- a/lib/sh/shmatch.c +++ b/lib/sh/shmatch.c @@ -2,7 +2,7 @@ * shmatch.c -- shell interface to posix regular expression matching. */ -/* Copyright (C) 2003-2015 Free Software Foundation, Inc. +/* Copyright (C) 2003-2022 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -41,6 +41,10 @@ extern int glob_ignore_case, match_ignore_case; +#if defined (ARRAY_VARS) +extern SHELL_VAR *builtin_find_indexed_array (char *, int); +#endif + int sh_regmatch (string, pattern, flags) const char *string; @@ -92,11 +96,16 @@ sh_regmatch (string, pattern, flags) /* Store the parenthesized subexpressions in the array BASH_REMATCH. Element 0 is the portion that matched the entire regexp. Element 1 is the part that matched the first subexpression, and so on. */ - unbind_variable_noref ("BASH_REMATCH"); +#if 1 + unbind_global_variable_noref ("BASH_REMATCH"); rematch = make_new_array_variable ("BASH_REMATCH"); - amatch = array_cell (rematch); +#else + /* TAG:bash-5.3 */ + rematch = builtin_find_indexed_array ("BASH_REMATCH", 1); +#endif + amatch = rematch ? array_cell (rematch) : (ARRAY *)0; - if (matches && (flags & SHMAT_SUBEXP) && result == EXECUTION_SUCCESS && subexp_str) + if (matches && amatch && (flags & SHMAT_SUBEXP) && result == EXECUTION_SUCCESS && subexp_str) { for (subexp_ind = 0; subexp_ind <= regex.re_nsub; subexp_ind++) { diff --git a/lib/sh/strvis.c b/lib/sh/strvis.c index 97eee1fc..7a11d579 100644 --- a/lib/sh/strvis.c +++ b/lib/sh/strvis.c @@ -69,7 +69,11 @@ sh_charvis (s, sindp, slen, ret, rindp) ri = *rindp; c = s[*sindp]; +#if defined (HANDLE_MULTIBYTE) send = (locale_mb_cur_max > 1) ? s + slen : 0; +#else + send = 0; +#endif if (SAFECHAR (c)) { @@ -88,10 +92,12 @@ sh_charvis (s, sindp, slen, ret, rindp) ret[ri++] = UNCTRL (c); si++; } +#if defined (HANDLE_MULTIBYTE) else if (locale_utf8locale && (c & 0x80)) COPY_CHAR_I (ret, ri, s, send, si); else if (locale_mb_cur_max > 1 && is_basic (c) == 0) COPY_CHAR_I (ret, ri, s, send, si); +#endif else if (META_CHAR (c)) { ret[ri++] = 'M'; diff --git a/lib/sh/zgetline.c b/lib/sh/zgetline.c index 8ded1442..5e1ef724 100644 --- a/lib/sh/zgetline.c +++ b/lib/sh/zgetline.c @@ -68,7 +68,8 @@ zgetline (fd, lineptr, n, delim, unbuffered_read) int delim; int unbuffered_read; { - int nr, retval; + int retval; + size_t nr; char *line, c; if (lineptr == 0 || n == 0 || (*lineptr == 0 && *n != 0)) diff --git a/lib/sh/zmapfd.c b/lib/sh/zmapfd.c index f9e9ed71..9ff50a47 100644 --- a/lib/sh/zmapfd.c +++ b/lib/sh/zmapfd.c @@ -54,7 +54,7 @@ zmapfd (fd, ostr, fn) int rval; char lbuf[ZBUFSIZ]; char *result; - int rsize, rind; + size_t rsize, rind; rval = 0; result = (char *)xmalloc (rsize = ZBUFSIZ); diff --git a/m4/strtoimax.m4 b/m4/strtoimax.m4 new file mode 100644 index 00000000..30985723 --- /dev/null +++ b/m4/strtoimax.m4 @@ -0,0 +1,35 @@ +dnl Copyright (C) 2022 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl Make sure we replace strtoimax if we don't have a declaration +dnl We can use this as a template for future function checks + +AC_DEFUN([BASH_FUNC_STRTOIMAX], [ +AC_MSG_CHECKING([for usable strtoimax]) +AC_CACHE_VAL(bash_cv_func_strtoimax, +[ + HAVE_STRTOIMAX=0 HAVE_DECL_STRTOIMAX=0 + + AC_CHECK_FUNCS([strtoimax]) + AC_CHECK_DECLS([strtoimax]) + + if test "$ac_cv_func_strtoimax" = "yes" ; then + HAVE_STRTOIMAX=1 + fi + if test "$ac_cv_have_decl_strtoimax" = "yes" ; then + HAVE_DECL_STRTOIMAX=1 + fi + + if test "$HAVE_STRTOIMAX" = 0 || test "$HAVE_DECL_STRTOIMAX" = 0 ; then + bash_cv_func_strtoimax=no REPLACE_STRTOIMAX=1 + else + bash_cv_func_strtoimax=yes + fi +]) +AC_MSG_RESULT($bash_cv_func_strtoimax) +if test $bash_cv_func_strtoimax = yes; then +AC_LIBOBJ(strtoimax) +fi +]) diff --git a/nojobs.c b/nojobs.c index b5e3ee62..b7504cd8 100644 --- a/nojobs.c +++ b/nojobs.c @@ -664,7 +664,7 @@ wait_for_single_pid (pid, flags) if (pstatus == PROC_BAD) { internal_error (_("wait: pid %ld is not a child of this shell"), (long)pid); - return (127); + return (257); } if (pstatus != PROC_STILL_ALIVE) diff --git a/parse.y b/parse.y index 63ce5c95..42361177 100644 --- a/parse.y +++ b/parse.y @@ -2832,7 +2832,7 @@ push_token (x) static char *token = (char *)NULL; /* Current size of the token buffer. */ -static int token_buffer_size; +static size_t token_buffer_size; /* Command to read_token () explaining what we want it to do. */ #define READ 0 @@ -4063,7 +4063,12 @@ parse_comsub (qc, open, close, lenp, flags) pushed_string_list = (STRING_SAVER *)NULL; /* State flags we don't want to persist into command substitutions. */ - parser_state &= ~(PST_REGEXP|PST_EXTPAT|PST_CONDCMD|PST_CONDEXPR); + parser_state &= ~(PST_REGEXP|PST_EXTPAT|PST_CONDCMD|PST_CONDEXPR|PST_COMPASSIGN); + /* Could do PST_CASESTMT too, but that also affects history. Setting + expecting_in_token below should take care of the parsing requirements. + Unsetting PST_REDIRLIST isn't strictly necessary because of how we set + token_to_read below, but we do it anyway. */ + parser_state &= ~(PST_CASEPAT|PST_ALEXPNEXT|PST_SUBSHELL|PST_REDIRLIST); /* State flags we want to set for this run through the parser. */ parser_state |= PST_CMDSUBST|PST_EOFTOKEN|PST_NOEXPAND; @@ -4102,7 +4107,14 @@ parse_comsub (qc, open, close, lenp, flags) else if (r != 0) { /* parser_error (start_lineno, _("could not parse command substitution")); */ - jump_to_top_level (DISCARD); + /* Non-interactive shells exit on parse error in a command substitution. */ + if (last_command_exit_value == 0) + last_command_exit_value = EXECUTION_FAILURE; + set_exit_status (last_command_exit_value); + if (interactive_shell == 0) + jump_to_top_level (FORCE_EOF); /* This is like reader_loop() */ + else + jump_to_top_level (DISCARD); } if (current_token != shell_eof_token) @@ -4218,7 +4230,8 @@ xparse_dolparen (base, string, indp, flags) clear_shell_input_line (); /* XXX */ if (bash_input.type != st_string) /* paranoia */ parser_state &= ~(PST_CMDSUBST|PST_EOFTOKEN); - jump_to_top_level (-nc); /* XXX */ + if ((flags & SX_NOLONGJMP) == 0) + jump_to_top_level (-nc); /* XXX */ } /* Need to find how many characters parse_string() consumed, update @@ -6284,31 +6297,26 @@ parse_string_to_word_list (s, flags, whom) const char *whom; { WORD_LIST *wl; - int tok, orig_current_token, orig_line_number, orig_input_terminator; - int orig_line_count, orig_parser_state; - int old_echo_input, old_expand_aliases, ea; -#if defined (HISTORY) - int old_remember_on_history, old_history_expansion_inhibited; -#endif + int tok, orig_current_token, orig_line_number; + int orig_parser_state; + sh_parser_state_t ps; + int ea; #if defined (HISTORY) - old_remember_on_history = remember_on_history; -# if defined (BANG_HISTORY) - old_history_expansion_inhibited = history_expansion_inhibited; -# endif bash_history_disable (); #endif orig_line_number = line_number; - orig_line_count = current_command_line_count; - orig_input_terminator = shell_input_line_terminator; - old_echo_input = echo_input_at_read; - old_expand_aliases = expand_aliases; + save_parser_state (&ps); push_stream (1); if (ea = expanding_alias ()) parser_save_alias (); - last_read_token = WORD; /* WORD to allow reserved words here */ + + /* WORD to avoid parsing reserved words as themselves and just parse them as + WORDs. */ + last_read_token = WORD; + current_command_line_count = 0; echo_input_at_read = expand_aliases = 0; @@ -6317,9 +6325,11 @@ parse_string_to_word_list (s, flags, whom) if (flags & 1) { - orig_parser_state = parser_state; - parser_state |= PST_COMPASSIGN|PST_REPARSE; + orig_parser_state = parser_state; /* XXX - not needed? */ + /* State flags we don't want to persist into compound assignments. */ parser_state &= ~PST_NOEXPAND; /* parse_comsub sentinel */ + /* State flags we want to set for this run through the tokenizer. */ + parser_state |= PST_COMPASSIGN|PST_REPARSE; } while ((tok = read_token (READ)) != yacc_EOF) @@ -6349,21 +6359,10 @@ parse_string_to_word_list (s, flags, whom) if (ea) parser_restore_alias (); -#if defined (HISTORY) - remember_on_history = old_remember_on_history; -# if defined (BANG_HISTORY) - history_expansion_inhibited = old_history_expansion_inhibited; -# endif /* BANG_HISTORY */ -#endif /* HISTORY */ - - echo_input_at_read = old_echo_input; - expand_aliases = old_expand_aliases; - - current_command_line_count = orig_line_count; - shell_input_line_terminator = orig_input_terminator; + restore_parser_state (&ps); if (flags & 1) - parser_state = orig_parser_state; + parser_state = orig_parser_state; /* XXX - not needed? */ if (wl == &parse_string_error) { @@ -6382,28 +6381,31 @@ parse_compound_assignment (retlenp) int *retlenp; { WORD_LIST *wl, *rl; - int tok, orig_line_number, orig_token_size, orig_last_token, assignok; - int orig_parser_state; - char *saved_token, *ret; + int tok, orig_line_number, assignok; + sh_parser_state_t ps; + char *ret; - saved_token = token; - orig_token_size = token_buffer_size; orig_line_number = line_number; - orig_last_token = last_read_token; - orig_parser_state = parser_state; + save_parser_state (&ps); - last_read_token = WORD; /* WORD to allow reserved words here */ + /* WORD to avoid parsing reserved words as themselves and just parse them as + WORDs. Plus it means we won't be in a command position and so alias + expansion won't happen. */ + last_read_token = WORD; token = (char *)NULL; token_buffer_size = 0; + wl = (WORD_LIST *)NULL; /* ( */ assignok = parser_state&PST_ASSIGNOK; /* XXX */ - wl = (WORD_LIST *)NULL; /* ( */ - orig_parser_state = parser_state; - parser_state &= ~PST_NOEXPAND; + /* State flags we don't want to persist into compound assignments. */ + parser_state &= ~(PST_NOEXPAND|PST_CONDCMD|PST_CONDEXPR|PST_REGEXP|PST_EXTPAT); + /* State flags we want to set for this run through the tokenizer. */ parser_state |= PST_COMPASSIGN; + esacs_needed_count = expecting_in_token = 0; + while ((tok = read_token (READ)) != ')') { if (tok == '\n') /* Allow newlines in compound assignments */ @@ -6427,11 +6429,7 @@ parse_compound_assignment (retlenp) wl = make_word_list (yylval.word, wl); } - FREE (token); - token = saved_token; - token_buffer_size = orig_token_size; - - parser_state = orig_parser_state; + restore_parser_state (&ps); if (wl == &parse_string_error) { @@ -6443,8 +6441,6 @@ parse_compound_assignment (retlenp) jump_to_top_level (DISCARD); } - last_read_token = orig_last_token; /* XXX - was WORD? */ - if (wl) { rl = REVERSE_LIST (wl, WORD_LIST *); diff --git a/pathexp.c b/pathexp.c index cfa87e81..379128e7 100644 --- a/pathexp.c +++ b/pathexp.c @@ -42,12 +42,7 @@ static int glob_name_is_acceptable PARAMS((const char *)); static void ignore_globbed_names PARAMS((char **, sh_ignore_func_t *)); static char *split_ignorespec PARAMS((char *, int *)); -#if defined (USE_POSIX_GLOB_LIBRARY) -# include -typedef int posix_glob_errfunc_t PARAMS((const char *, int)); -#else -# include -#endif +#include /* Control whether * matches .files in globbing. */ int glob_dot_filenames; @@ -413,54 +408,6 @@ shell_glob_filename (pathname, qflags) const char *pathname; int qflags; { -#if defined (USE_POSIX_GLOB_LIBRARY) - register int i; - char *temp, **results; - glob_t filenames; - int glob_flags; - - temp = quote_string_for_globbing (pathname, QGLOB_FILENAME|qflags); - - filenames.gl_offs = 0; - -# if defined (GLOB_PERIOD) - glob_flags = glob_dot_filenames ? GLOB_PERIOD : 0; -# else - glob_flags = 0; -# endif /* !GLOB_PERIOD */ - - glob_flags |= (GLOB_ERR | GLOB_DOOFFS); - - i = glob (temp, glob_flags, (posix_glob_errfunc_t *)NULL, &filenames); - - free (temp); - - if (i == GLOB_NOSPACE || i == GLOB_ABORTED) - return ((char **)NULL); - else if (i == GLOB_NOMATCH) - filenames.gl_pathv = (char **)NULL; - else if (i != 0) /* other error codes not in POSIX.2 */ - filenames.gl_pathv = (char **)NULL; - - results = filenames.gl_pathv; - - if (results && ((GLOB_FAILED (results)) == 0)) - { - if (should_ignore_glob_matches ()) - ignore_glob_matches (results); - if (results && results[0]) - strvec_sort (results, 1); /* posix sort */ - else - { - FREE (results); - results = (char **)NULL; - } - } - - return (results); - -#else /* !USE_POSIX_GLOB_LIBRARY */ - char *temp, **results; int gflags, quoted_pattern; @@ -485,7 +432,6 @@ shell_glob_filename (pathname, qflags) } return (results); -#endif /* !USE_POSIX_GLOB_LIBRARY */ } /* Stuff for GLOBIGNORE. */ diff --git a/pathexp.h b/pathexp.h index 7ed0d2ad..b96f92af 100644 --- a/pathexp.h +++ b/pathexp.h @@ -21,13 +21,10 @@ #if !defined (_PATHEXP_H_) #define _PATHEXP_H_ -#if defined (USE_POSIX_GLOB_LIBRARY) -# define GLOB_FAILED(glist) !(glist) -#else /* !USE_POSIX_GLOB_LIBRARY */ -# define GLOB_FAILED(glist) (glist) == (char **)&glob_error_return +#define GLOB_FAILED(glist) (glist) == (char **)&glob_error_return + extern int noglob_dot_filenames; extern char *glob_error_return; -#endif /* !USE_POSIX_GLOB_LIBRARY */ /* Flag values for quote_string_for_globbing */ #define QGLOB_CVTNULL 0x01 /* convert QUOTED_NULL strings to '\0' */ diff --git a/pcomplete.c b/pcomplete.c index 08cd7524..9612406d 100644 --- a/pcomplete.c +++ b/pcomplete.c @@ -414,6 +414,7 @@ init_itemlist_from_varlist (itp, svfunc) sl->list[i] = savestring (vlist[i]->name); sl->list[sl->list_len = n] = (char *)NULL; itp->slist = sl; + free (vlist); } static int @@ -884,16 +885,18 @@ gen_action_completions (cs, text) TEXT as a match prefix, or just go without? Currently, the code does not use TEXT, just globs CS->globpat and returns the results. If we do decide to use TEXT, we should call quote_string_for_globbing before the call to - glob_filename. */ + glob_filename (in which case we could use shell_glob_filename). */ static STRINGLIST * gen_globpat_matches (cs, text) COMPSPEC *cs; const char *text; { STRINGLIST *sl; + int gflags; sl = strlist_create (0); - sl->list = glob_filename (cs->globpat, 0); + gflags = glob_star ? GX_GLOBSTAR : 0; + sl->list = glob_filename (cs->globpat, gflags); if (GLOB_FAILED (sl->list)) sl->list = (char **)NULL; if (sl->list) diff --git a/po/ro.gmo b/po/ro.gmo index f1661443eafad896139ac7036520f813c3faf60b..44e32512092483fb8e9b12fa520466d4b9fb6919 100644 GIT binary patch literal 189265 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�mg{PtwY6SigDqPSuk_sR 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 literal 13353 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, 2003. # Daniel Șerbănescu , 2019. +# Remus-Gabriel Chelu , 2022. +# +# Cronologia traducerii fișierului „bash”: +# Traducerea inițială, făcută de EH, pentru versiunea bash 3.2 (19% - tradus). +# Actualizare a traducerii pentru versiunea 4.0, făcută de EH (24% - tradus). +# Actualizare a traducerii pentru versiunea 5.0, făcută de DȘ (29% - tradus). +# Actualizare a traducerii pentru versiunea 5.1, făcută de R-GC (100% - tradus). # msgid "" msgstr "" "Project-Id-Version: bash 5.1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-11-28 12:51-0500\n" -"PO-Revision-Date: 2021-12-16 15:48+0100\n" -"Last-Translator: Daniel Șerbănescu \n" +"PO-Revision-Date: 2022-05-30 00:19+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" "Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || ((n%100) > 0 && (n%100) < 20)) ? 1 : 2);\n" "X-Bugs: Report translation errors to the Language-Team address.\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && n%100<=19) ? 1 : 2);\n" -"X-Generator: Poedit 3.0\n" +"X-Generator: Poedit 3.0.1\n" "X-Poedit-SourceCharset: UTF-8\n" #: arrayfunc.c:66 msgid "bad array subscript" -msgstr "incluziune greșită în interval" +msgstr "indice de matrice greșit" #: arrayfunc.c:421 builtins/declare.def:638 variables.c:2274 variables.c:2300 #: variables.c:3133 #, c-format msgid "%s: removing nameref attribute" -msgstr "" +msgstr "%s: se elimină atributul nameref" #: arrayfunc.c:446 builtins/declare.def:851 #, c-format msgid "%s: cannot convert indexed to associative array" -msgstr "" +msgstr "%s: nu se poate converti matricea indexată în asociativă" #: arrayfunc.c:700 #, c-format msgid "%s: invalid associative array key" -msgstr "" +msgstr "%s: cheie de matrice asociativă nevalidă" #: arrayfunc.c:702 #, c-format msgid "%s: cannot assign to non-numeric index" -msgstr "%s: nu se poate atribui către index ne-numeric" +msgstr "%s: nu se poate atribui la index ne-numeric" #: arrayfunc.c:747 #, c-format msgid "%s: %s: must use subscript when assigning associative array" -msgstr "" +msgstr "%s: %s: trebuie să fie folosit un indice atunci când se atribuie unei matrice asociative" #: bashhist.c:452 #, c-format @@ -58,43 +66,44 @@ msgstr "%s: nu s-a putut crea: %s" #: bashline.c:4310 msgid "bash_execute_unix_command: cannot find keymap for command" -msgstr "" +msgstr "bash_execute_unix_command: nu se poate găsi combinația de taste pentru comandă" #: bashline.c:4459 #, c-format msgid "%s: first non-whitespace character is not `\"'" -msgstr "" +msgstr "%s: primul caracter care nu este spațiu în alb nu este «\"» (ghilimele duble)" #: bashline.c:4488 #, c-format msgid "no closing `%c' in %s" -msgstr "" +msgstr "nu se închide „%c” în %s" #: bashline.c:4519 #, c-format msgid "%s: missing colon separator" -msgstr "%s: lipsește separatorul două puncte" +msgstr "%s: lipsește separatorul două puncte (:)" #: bashline.c:4555 -#, fuzzy, c-format -#| msgid "%s: command not found" +#, c-format msgid "`%s': cannot unbind in command keymap" -msgstr "%s: comandă negăsită" +msgstr "„%s”: nu se poate înlătura combinația de taste atribuită la comandă" +# Aici, trebuie folosit forma de plural, așa cum am făcut-o, sau cea de singular: +# extindere (de) acoladă? #: braces.c:327 #, c-format msgid "brace expansion: cannot allocate memory for %s" -msgstr "" +msgstr "expansiunea de acolade: nu se poate aloca memorie pentru %s" #: braces.c:406 #, c-format msgid "brace expansion: failed to allocate memory for %u elements" -msgstr "" +msgstr "expansiunea de acolade: a eșuat alocarea memoriei pentru %u elemente" #: braces.c:451 #, c-format msgid "brace expansion: failed to allocate memory for `%s'" -msgstr "" +msgstr "expansiunea de acolade: a eșuat alocarea memoriei pentru „%s”" #: builtins/alias.def:131 variables.c:1844 #, c-format @@ -103,24 +112,22 @@ msgstr "„%s”: nume alias nevalid" #: builtins/bind.def:122 builtins/bind.def:125 msgid "line editing not enabled" -msgstr "sfârșitul de linie nu este activat" +msgstr "editarea liniilor nu este activată" #: builtins/bind.def:212 #, c-format msgid "`%s': invalid keymap name" -msgstr "" +msgstr "`%s': nume de combinație de taste nevalid" #: builtins/bind.def:252 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot read: %s" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu s-a putut citii: %s" #: builtins/bind.def:328 builtins/bind.def:358 -#, fuzzy, c-format -#| msgid "%s: readonly function" +#, c-format msgid "`%s': unknown function name" -msgstr "%s: funcție doar în citire (readonly)" +msgstr "„%s”: nume de funcție necunoscut" #: builtins/bind.def:336 #, c-format @@ -130,13 +137,12 @@ msgstr "%s nu este asociat niciunei taste.\n" #: builtins/bind.def:340 #, c-format msgid "%s can be invoked via " -msgstr "%s poate fi invocat prin " +msgstr "%s poate fi invocat via " #: builtins/bind.def:378 builtins/bind.def:395 -#, fuzzy, c-format -#| msgid "%s: command not found" +#, c-format msgid "`%s': cannot unbind" -msgstr "%s: comandă negăsită" +msgstr "„%s”: atribuirea nu poate fi ștearsă" #: builtins/break.def:77 builtins/break.def:119 msgid "loop count" @@ -157,10 +163,18 @@ msgid "" " The value of EXPR indicates how many call frames to go back before the\n" " current one; the top frame is frame 0." msgstr "" +"Returnează contextul apelului subrutinei curente.\n" +" \n" +" Fără EXPR, returnează „$linie $nume_fișier”. Cu EXPR, returnează\n" +" „$linie $subrutină $nume_fișier”; aceste informații suplimentare pot să fie\n" +" folosite pentru a furniza o urmărire a stivei.\n" +" \n" +" Valoarea EXPR indică cîte cadre de apel trebuie să se întoarcă înaintea celui\n" +" curent; cadrul superior este cadrul 0." #: builtins/cd.def:327 msgid "HOME not set" -msgstr "HOME nu este stabilit" +msgstr "variabila $HOME nu este definită" #: builtins/cd.def:335 builtins/common.c:161 test.c:901 msgid "too many arguments" @@ -168,11 +182,11 @@ msgstr "prea mulți parametri" #: builtins/cd.def:342 msgid "null directory" -msgstr "director null" +msgstr "director nul" #: builtins/cd.def:353 msgid "OLDPWD not set" -msgstr "OLDPWD nu este stabilit" +msgstr "variabila $OLDPWD nu este definită" #: builtins/common.c:96 #, c-format @@ -192,7 +206,7 @@ msgstr "%s: utilizare: " #: builtins/common.c:193 shell.c:516 shell.c:844 #, c-format msgid "%s: option requires an argument" -msgstr "%s: opțiunea necesită un parametru" +msgstr "%s: opțiunea necesită un argument" #: builtins/common.c:200 #, c-format @@ -200,279 +214,341 @@ msgid "%s: numeric argument required" msgstr "%s: argument numeric necesar" #: builtins/common.c:207 -#, fuzzy, c-format -#| msgid "%s: command not found" +#, c-format msgid "%s: not found" -msgstr "%s: comandă negăsită" +msgstr "%s: nu s-a găsit" #: builtins/common.c:216 shell.c:857 -#, fuzzy, c-format -#| msgid "%c%c: bad option" +#, c-format msgid "%s: invalid option" -msgstr "%c%c: opțiune invalidă" +msgstr "%s: opțiune nevalidă" #: builtins/common.c:223 -#, fuzzy, c-format -#| msgid "%c%c: bad option" +#, c-format msgid "%s: invalid option name" -msgstr "%c%c: opțiune invalidă" +msgstr "%s: nume de opțiune nevalid" #: builtins/common.c:230 execute_cmd.c:2373 general.c:368 general.c:373 -#, fuzzy, c-format -#| msgid "`%s' is not a valid identifier" +#, c-format msgid "`%s': not a valid identifier" -msgstr "`%s' nu este un identificator valid" +msgstr "„%s” nu este un identificator valid" #: builtins/common.c:240 -#, fuzzy -#| msgid "bad signal number" msgid "invalid octal number" -msgstr "număr de semnal invalid" +msgstr "număr octal nevalid" #: builtins/common.c:242 -#, fuzzy -#| msgid "bad signal number" msgid "invalid hex number" -msgstr "număr de semnal invalid" +msgstr "număr hexazecimal nevalid" #: builtins/common.c:244 expr.c:1569 -#, fuzzy -#| msgid "bad signal number" msgid "invalid number" -msgstr "număr de semnal invalid" +msgstr "număr nevalid" #: builtins/common.c:252 #, c-format msgid "%s: invalid signal specification" -msgstr "" +msgstr "%s: specificație de semnal nevalidă" +# spec = specificare +# sau +# spec = specificație +# ??? +# de rezolvat +# ------------------------------------ +# Opinii/Idei? +# *** +# după revizarea fișierului, DȘ, spune: +# 1. „→ și eu aș păstra specificație aici și în restul fișierului” +# === +# Ok, rămînem cu «spec, specification = specificație» +# . +# 2. → iar job spec l-aș traduce cu „specificația serviciului” (fiind vorba de un proces care rulează pe computer) +# === +# am tradus «job spec» ca specificație de lucru, +# datorită faptului că «job-urile», nu sunt +# întotdeauna niște servicii, și mai ales datorită +# faptului că adesea sunt o pleiadă de procese, +# grupate (cel mai adesea un proces părinte +# cu fii săi), alteori un grup de procese +# interacționate. #: builtins/common.c:259 #, c-format msgid "`%s': not a pid or valid job spec" -msgstr "" +msgstr "„%s”: nu este un pid sau o specificație validă de lucru" #: builtins/common.c:266 error.c:510 #, c-format msgid "%s: readonly variable" -msgstr "%s: variabilă doar în citire" +msgstr "%s: variabilă protejată la scriere" #: builtins/common.c:274 #, c-format msgid "%s: %s out of range" -msgstr "" +msgstr "%s: %s în afara intervalului" #: builtins/common.c:274 builtins/common.c:276 -#, fuzzy -#| msgid "argument expected" msgid "argument" -msgstr "se așteaptă parametru" +msgstr "argument" #: builtins/common.c:276 #, c-format msgid "%s out of range" -msgstr "" +msgstr "%s în afara intervalului" +# R-GC, scrie: +# după revizarea fișierului, DȘ, spune: +# «→ la fel și aici, și la următoarele apariții ale lui job, → „nu există asemenea serviciu”» +# === +# am tradus «job» ca lucrare, datorită faptului +# că «job-urile», nu sunt întotdeauna niște +# servicii, și mai ales datorită faptului că +# adesea sunt o pleiadă de procese, grupate +# (cel mai adesea un proces părinte cu fii săi), +# alteori un grup de procese interacționate. #: builtins/common.c:284 #, c-format msgid "%s: no such job" -msgstr "" +msgstr "%s: nu există această lucrare" #: builtins/common.c:292 -#, fuzzy, c-format -#| msgid "no job control in this shell" +#, c-format msgid "%s: no job control" -msgstr "nici un control de job în acest shell" +msgstr "%s: nu există un control de lucrări" #: builtins/common.c:294 -#, fuzzy -#| msgid "no job control in this shell" msgid "no job control" -msgstr "nici un control de job în acest shell" +msgstr "nu există un control de lucrări" #: builtins/common.c:304 -#, fuzzy, c-format -#| msgid "%s: job has terminated" +#, c-format msgid "%s: restricted" -msgstr "%s: jobul a fost terminat" +msgstr "%s: restricționat" #: builtins/common.c:306 msgid "restricted" -msgstr "" +msgstr "restricționat" +# R-GC, întreabă: +# Ce facem cu „Shell”? +# Cum îl traducem? +# *** +# după revizarea fișierului, DȘ, spune: +# „→ mă trem că „shell” ar trebui să rămână tot „shell”: https://ro.wikipedia.org/wiki/Shell_(informatic%C4%83)” +# === +# Mda, un răspuns la care mă așteptam; ca un +# fapt divers: nici alte echipe de traducători, +# n-au reușit să „translate” «shell» în altceva +# decît în «shell», au fost încercări (traduceri +# reale) → scoică, cochilie, carapace sau +# ambalaj; cu toate că unele dintre ele, au +# avut oarecare succes, niciuna n-a rezistat +# cu trecerea timpului. #: builtins/common.c:314 #, c-format msgid "%s: not a shell builtin" -msgstr "" +msgstr "%s: nu este o comandă internă" #: builtins/common.c:323 -#, fuzzy, c-format -#| msgid "pipe error: %s" +#, c-format msgid "write error: %s" -msgstr "eroare de legătură (pipe): %s" +msgstr "eroare de scriere: %s" #: builtins/common.c:331 #, c-format msgid "error setting terminal attributes: %s" -msgstr "" +msgstr "eroare la configurarea atributelor terminalului: %s" #: builtins/common.c:333 #, c-format msgid "error getting terminal attributes: %s" -msgstr "" +msgstr "eroare la obținerea atributelor terminalului: %s" +# - Eroare la preluarea... +# - Eroare la obținerea... +# - Eroare la recuperarea... +# Am ales prima variantă, dar este cea mai bună, +# în contextul dat? #: builtins/common.c:635 #, c-format msgid "%s: error retrieving current directory: %s: %s\n" -msgstr "" +msgstr "%s: eroare la preluarea directorului curent: %s: %s\n" #: builtins/common.c:701 builtins/common.c:703 -#, fuzzy, c-format -#| msgid "%s: Ambiguous redirect" +#, c-format msgid "%s: ambiguous job spec" -msgstr "%s: Redirectare ambiguă" +msgstr "%s: specificație de lucrare, ambiguă" #: builtins/common.c:964 msgid "help not available in this version" -msgstr "" +msgstr "ajutorul nu este disponibil în această versiune" +# R-GC, scrie: +# după revizarea fișierului, DȘ, spune: +# „→ ce zici de „readonly” = „protejat la scriere” (cam lung dar parcă este mai sugestiv)” +# === +# nu cred c-ar fi o problemă asta, odată ce face +# ca mesajul să fie mai clar, mai sugestiv; dar +# cred că introduce o întrebare: +# de cine/contra cui este protejat? +# *** +# cel puțin de moment, dacă nu definitiv, voi +# aplica sugestia făcută, asupra acestui mesaj +# și aaltora asemănătoare... #: builtins/common.c:1008 builtins/set.def:953 variables.c:3839 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot unset: readonly %s" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu se poate deconfigura: %s este protejat la scriere" #: builtins/common.c:1013 builtins/set.def:932 variables.c:3844 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot unset" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu se poate deconfigura" #: builtins/complete.def:287 #, c-format msgid "%s: invalid action name" -msgstr "" +msgstr "%s: nume de acțiune nevalid" +# Întrebare: +# nicio... +# sau +# nu există (o)... #: builtins/complete.def:486 builtins/complete.def:634 #: builtins/complete.def:865 #, c-format msgid "%s: no completion specification" -msgstr "" +msgstr "%s: nicio specificație de completare" #: builtins/complete.def:688 msgid "warning: -F option may not work as you expect" -msgstr "" +msgstr "avertisment: este posibil ca opțiunea „-F” să nu funcționeze așa cum vă așteptați" #: builtins/complete.def:690 msgid "warning: -C option may not work as you expect" -msgstr "" +msgstr "avertisment: este posibil ca opțiunea „-C” să nu funcționeze așa cum vă așteptați" +# Întrebare: +# - În prezent ... +# - În acest moment ... +# - În momentul actual ... +# este formula adecvată contextului? #: builtins/complete.def:838 msgid "not currently executing completion function" -msgstr "" +msgstr "în prezent funcția de completare nu rulează" #: builtins/declare.def:134 -#, fuzzy -#| msgid "can only be used within a function; it makes the variable NAME" msgid "can only be used in a function" -msgstr "poate fi folosit doar într-o funcție, și face ca variabila NUME" +msgstr "poate fi folosit doar într-o funcție" #: builtins/declare.def:363 builtins/declare.def:756 #, c-format msgid "%s: reference variable cannot be an array" -msgstr "" +msgstr "%s: variabila de referință nu poate fi o matrice" #: builtins/declare.def:374 variables.c:3385 #, c-format msgid "%s: nameref variable self references not allowed" -msgstr "" +msgstr "%s: nu sunt permise auto-referințele la variabile nameref" #: builtins/declare.def:379 variables.c:2104 variables.c:3304 variables.c:3312 #: variables.c:3382 #, c-format msgid "%s: circular name reference" -msgstr "" +msgstr "%s: referință de nume circulară" +# R-GC, scrie: +# după revizarea fișierului, DȘ, spune: +# „→ cred că s-ar putea pune ghilimele românești” +# === +# corecție aplicată #: builtins/declare.def:384 builtins/declare.def:762 builtins/declare.def:773 #, c-format msgid "`%s': invalid variable name for name reference" -msgstr "" +msgstr "„%s”: nume de variabilă nevalid pentru referință la nume" #: builtins/declare.def:514 msgid "cannot use `-f' to make functions" -msgstr "" +msgstr "nu se poate utiliza „-f” pentru a face funcții" #: builtins/declare.def:526 execute_cmd.c:5986 #, c-format msgid "%s: readonly function" -msgstr "%s: funcție doar în citire (readonly)" +msgstr "%s: funcție protejată la scriere" +# Întrebare: +# - se poate formula mai bine, de exp.: +# alocarea matricei compuse, între ghilimele; este perimată-învechită #: builtins/declare.def:824 #, c-format msgid "%s: quoted compound array assignment deprecated" -msgstr "" +msgstr "%s: alocarea de matrice compusă între ghilimele este perimată" +# Problemă: +# in this way = în acest fel +# in this way = în acest mod +# in this way = de această formă +# Mă refer la această intrare, care dintre cele +# 3 opțiuni, este cea mai bună? #: builtins/declare.def:838 -#, fuzzy, c-format -#| msgid "$%s: cannot assign in this way" +#, c-format msgid "%s: cannot destroy array variables in this way" -msgstr "$%s: nu se poate asigna în acest mod" +msgstr "%s: nu se pot distruge variabilele matrice în acest fel" #: builtins/declare.def:845 builtins/read.def:815 #, c-format msgid "%s: cannot convert associative to indexed array" -msgstr "" +msgstr "%s: nu se poate converti o matrice asociativă într-o matrice indexată" #: builtins/enable.def:143 builtins/enable.def:151 msgid "dynamic loading not available" -msgstr "" +msgstr "încărcarea dinamică nu este disponibilă" #: builtins/enable.def:343 -#, fuzzy, c-format -#| msgid "cannot open named pipe %s for %s: %s" +#, c-format msgid "cannot open shared object %s: %s" -msgstr "nu pot deschide legătura numită %s pentru %s: %s" +msgstr "nu poate deschide obiectul partajat %s: %s" #: builtins/enable.def:371 #, c-format msgid "cannot find %s in shared object %s: %s" -msgstr "" +msgstr "nu se poate găsi %s în obiectul partajat %s: %s" #: builtins/enable.def:388 #, c-format msgid "%s: dynamic builtin already loaded" -msgstr "" +msgstr "%s: comanda internă dinamică a «bash», este deja încărcată" +# De revizat... #: builtins/enable.def:392 #, c-format msgid "load function for %s returns failure (%d): not loaded" -msgstr "" +msgstr "funcția de încărcare pentru %s returnează eroarea (%d): încărcarea a eșuat" #: builtins/enable.def:517 #, c-format msgid "%s: not dynamically loaded" -msgstr "" +msgstr "%s: nu este încărcat dinamic" #: builtins/enable.def:543 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot delete: %s" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu se poate șterge: %s" #: builtins/evalfile.c:138 builtins/hash.def:185 execute_cmd.c:5818 #, c-format msgid "%s: is a directory" -msgstr "%s: este director" +msgstr "%s: este un director" #: builtins/evalfile.c:144 -#, fuzzy, c-format -#| msgid "%s: cannot execute binary file" +#, c-format msgid "%s: not a regular file" -msgstr "%s: nu se poate executa fișierul binar" +msgstr "%s: nu este un fișier normal" #: builtins/evalfile.c:153 #, c-format msgid "%s: file is too large" -msgstr "" +msgstr "%s: fișierul este prea mare" #: builtins/evalfile.c:188 builtins/evalfile.c:206 shell.c:1647 #, c-format @@ -480,10 +556,9 @@ msgid "%s: cannot execute binary file" msgstr "%s: nu se poate executa fișierul binar" #: builtins/exec.def:158 builtins/exec.def:160 builtins/exec.def:246 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot execute: %s" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu se poate executa: %s" #: builtins/exit.def:64 #, c-format @@ -492,43 +567,40 @@ msgstr "deautentificare\n" #: builtins/exit.def:89 msgid "not login shell: use `exit'" -msgstr "" +msgstr "nu este un shell de autentificare: utilizați „exit”" #: builtins/exit.def:121 #, c-format msgid "There are stopped jobs.\n" -msgstr "" +msgstr "Sunt(există) lucrări oprite.\n" #: builtins/exit.def:123 #, c-format msgid "There are running jobs.\n" -msgstr "" +msgstr "Sunt(există) lucrări în execuție.\n" #: builtins/fc.def:275 builtins/fc.def:373 builtins/fc.def:417 -#, fuzzy -#| msgid "%s: command not found" msgid "no command found" -msgstr "%s: comandă negăsită" +msgstr "nu s-a găsit nici-o comandă" #: builtins/fc.def:363 builtins/fc.def:368 builtins/fc.def:407 #: builtins/fc.def:412 msgid "history specification" -msgstr "" +msgstr "specificație de istoric" #: builtins/fc.def:444 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot open temp file: %s" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu se poate deschide fișierul temporal: %s" #: builtins/fg_bg.def:152 builtins/jobs.def:284 msgid "current" -msgstr "" +msgstr "actual" #: builtins/fg_bg.def:161 #, c-format msgid "job %d started without job control" -msgstr "" +msgstr "lucrarea %d a început fără controlul lucrării" #: builtins/getopt.c:110 #, c-format @@ -540,14 +612,21 @@ msgstr "%s: opțiune ilegală -- %c\n" msgid "%s: option requires an argument -- %c\n" msgstr "%s: opțiunea necesită un parametru: -- %c\n" +# NOTĂ: +# cred că aceasta este cea mai bună traducere posibilă! +# Am frunzărit traducerile celorlalte echipe de traducere latine (nu mi-a scăpat niciuna, în afară de cea galiciană, care obligă la descărcarea fișierului pentru al vedea) +# În cea a echipei spaniole, a tradus mesajul ca: +# asociación desactivada +# ce mi s-a părut cea mai apropiată contextului în care apare mesajul: +# #: builtins/hash.def:91 #: builtins/hash.def:91 msgid "hashing disabled" -msgstr "" +msgstr "asocierea este desactivată" #: builtins/hash.def:139 #, c-format msgid "%s: hash table empty\n" -msgstr "" +msgstr "%s: tabelul de asociere este gol\n" #: builtins/hash.def:267 #, c-format @@ -557,26 +636,27 @@ msgstr "potriviri\tcomandă\n" #: builtins/help.def:133 msgid "Shell commands matching keyword `" msgid_plural "Shell commands matching keywords `" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Comenzile Shell care se potrivesc cu cuvântul cheie „" +msgstr[1] "Comenzile Shell care se potrivesc cu cuvintele cheie „" +msgstr[2] "Comenzile Shell care se potrivesc cu cuvintele cheie „" #: builtins/help.def:135 msgid "" "'\n" "\n" msgstr "" +"”\n" +"\n" #: builtins/help.def:185 #, c-format msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." -msgstr "" +msgstr "niciun subiect de ajutor nu se potrivește cu „%s”. Încercați «help help» sau «man -k %s» sau «info %s»." #: builtins/help.def:224 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot open: %s" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu se poate deschide: %s" #: builtins/help.def:524 #, c-format @@ -589,47 +669,56 @@ msgid "" "A star (*) next to a name means that the command is disabled.\n" "\n" msgstr "" +"Aceste comenzi shell, sunt definite intern. Tastează «help», pentru a vedea\n" +"această listă.\n" +"Tastează «help nume_funcție» pentru a afla mai multe despre funcția „nume_funcție”.\n" +"Utilizați «info bash» pentru a afla mai multe despre shell în general.\n" +"Utilizați «man -k» sau «info» pentru a afla mai multe despre comenzile care nu\n" +"sunt în această listă.\n" +"\n" +"O stea (*) în dreptul unui nume înseamnă că acea comandă este dezactivată.\n" +"\n" +# Propunere: +# Mă gîndesc dacă n-ar suna mai bine fraza, dacă +# înlocuiesc „unul” cu „un argument”, așa: +# nu se poate folosi mai mult de un argument dintre -anrw #: builtins/history.def:155 msgid "cannot use more than one of -anrw" -msgstr "" +msgstr "nu se poate folosi mai mult de o opțiune dintre „-a, -n, -r sau -w”" #: builtins/history.def:188 builtins/history.def:198 builtins/history.def:213 #: builtins/history.def:230 builtins/history.def:242 builtins/history.def:249 msgid "history position" -msgstr "" +msgstr "poziție în registrul istoric al comenzilor" #: builtins/history.def:340 #, c-format msgid "%s: invalid timestamp" -msgstr "" +msgstr "%s: marcaj de timp nevalid" #: builtins/history.def:451 -#, fuzzy, c-format -#| msgid "%s: integer expression expected" +#, c-format msgid "%s: history expansion failed" -msgstr "%s: se așteaptă expresie întreagă (integer)" +msgstr "%s: a eșuat expansiunea istoriei" #: builtins/inlib.def:71 -#, fuzzy, c-format -#| msgid "%s: unbound variable" +#, c-format msgid "%s: inlib failed" -msgstr "%s: variabilă fără limită" +msgstr "%s: a eșuat inlib" #: builtins/jobs.def:109 msgid "no other options allowed with `-x'" -msgstr "" +msgstr "nu sunt permise alte opțiuni cu „-x”" #: builtins/kill.def:211 #, c-format msgid "%s: arguments must be process or job IDs" -msgstr "" +msgstr "%s: argumentele trebuie să fie ID-uri de proces sau de lucrări" #: builtins/kill.def:274 -#, fuzzy -#| msgid "Unknown error %d" msgid "Unknown error" -msgstr "Eroare necunoscută %d" +msgstr "Eroare necunoscută" #: builtins/let.def:97 builtins/let.def:122 expr.c:639 expr.c:657 msgid "expression expected" @@ -638,85 +727,83 @@ msgstr "se așteaptă expresie" #: builtins/mapfile.def:178 #, c-format msgid "%s: not an indexed array" -msgstr "" +msgstr "%s: nu este o matrice indexată" #: builtins/mapfile.def:271 builtins/read.def:308 #, c-format msgid "%s: invalid file descriptor specification" -msgstr "" +msgstr "%s: specificație de descriptor de fișier nevalidă" #: builtins/mapfile.def:279 builtins/read.def:315 #, c-format msgid "%d: invalid file descriptor: %s" -msgstr "" +msgstr "%d: descriptor de fișier nevalid: %s" #: builtins/mapfile.def:288 builtins/mapfile.def:326 #, c-format msgid "%s: invalid line count" -msgstr "" +msgstr "%s: contorizare de linii nevalidă" #: builtins/mapfile.def:299 -#, fuzzy, c-format -#| msgid "%s: bad array subscript" +#, c-format msgid "%s: invalid array origin" -msgstr "%s:subscriere interval invalid" +msgstr "%s: origine matrice nevalid" #: builtins/mapfile.def:316 #, c-format msgid "%s: invalid callback quantum" -msgstr "" +msgstr "%s: cuantum de apel invers nevalid" #: builtins/mapfile.def:349 msgid "empty array variable name" -msgstr "" +msgstr "nume de variabilă matrice gol" #: builtins/mapfile.def:370 msgid "array variable support required" -msgstr "" +msgstr "este necesar suport pentru variabilă matrice" #: builtins/printf.def:419 #, c-format msgid "`%s': missing format character" -msgstr "" +msgstr "„%s”: lipsește caracterul de format" #: builtins/printf.def:474 #, c-format msgid "`%c': invalid time format specification" -msgstr "" +msgstr "„%c”: specificație a formatului de timp nevalidă" #: builtins/printf.def:676 #, c-format msgid "`%c': invalid format character" -msgstr "" +msgstr "„%c”: caracter de format nevalid" #: builtins/printf.def:702 #, c-format msgid "warning: %s: %s" -msgstr "" +msgstr "avertizare: %s: %s" #: builtins/printf.def:788 #, c-format msgid "format parsing problem: %s" -msgstr "" +msgstr "problemă cu analizarea formatului: %s" #: builtins/printf.def:885 msgid "missing hex digit for \\x" -msgstr "" +msgstr "lipsește o cifră hexazecimală pentru \\x" #: builtins/printf.def:900 #, c-format msgid "missing unicode digit for \\%c" -msgstr "" +msgstr "lipsește o cifră unicode pentru \\%c" #: builtins/pushd.def:199 msgid "no other directory" msgstr "niciun alt director" #: builtins/pushd.def:360 -#, fuzzy, c-format -#| msgid "%s requires an argument" +#, c-format msgid "%s: invalid argument" -msgstr "%s necesită un parametru" +msgstr "%s argument nevalid" #: builtins/pushd.def:480 msgid "" @@ -724,12 +811,22 @@ msgstr "" #: builtins/pushd.def:524 msgid "directory stack empty" -msgstr "" +msgstr "stiva de directoare este goală" #: builtins/pushd.def:526 msgid "directory stack index" -msgstr "" +msgstr "indexul stivei de directoare" +# R-GC, scrie: +# după revizarea fișierului, DȘ, spune: +# «→ aș pune „directorul personal” în loc de „acasă”» +# === +# nu-mi prea place să amestec numele lucurilor, +# cu definiția lor, în acest caz: +# „directorul acasă → directorul personal al utilizatorului” +# voi face aceasă schimbare, în cazul în care, +# autorul numește home folder, în loc de +# home directory #: builtins/pushd.def:701 msgid "" "Display the list of currently remembered directories. Directories\n" @@ -751,6 +848,24 @@ msgid "" " -N\tDisplays the Nth entry counting from the right of the list shown by\n" "\tdirs when invoked without options, starting with zero." msgstr "" +"Afișează lista curentă a directoarelor memorate. Directoarele\n" +" sunt adăugate la această listă cu comanda «pushd» și sunt eliminate din\n" +" ea, cu comanda «popd».\n" +" \n" +" Opțiuni:\n" +" -c\tgolește stiva de directoare prin ștergerea tuturor elementelor\n" +" -l\tnu afișează versiuni scurtate (cu ~) ale directoarelor în raport cu\n" +" \tdirectorul dumneavoastră «acasă»\n" +" -p\timprimă stiva de directoare cu o intrare pe linie\n" +" -v\timprimă stiva de directoare cu o intrare pe linie, prefixată cu poziția\n" +" \tsa în stivă\n" +" \n" +" Argumente:\n" +" +N\tAfișează a N-a intrare numărând din stânga listei afișate de «dirs»,\n" +" \tatunci când este invocată fără opțiuni, începând cu zero.\n" +" \n" +" -N\tAfișează a N-a intrare numărând din dreapta listei afișate de «dirs»,\n" +"\tatunci când este invocată fără opțiuni, începând cu zero." #: builtins/pushd.def:723 msgid "" @@ -776,6 +891,27 @@ msgid "" " \n" " The `dirs' builtin displays the directory stack." msgstr "" +"Adaugă un director în partea de sus a stivei de directoare sau rotește\n" +" stiva, făcând din noul director din partea de sus a stivei, directorul de\n" +" lucru curent. Fără argumente, interschimbă primele două directoare.\n" +" \n" +" Opțiuni:\n" +" -n\tSuprimă schimbarea normală a directorului atunci când se\n" +" \tadaugă directoare la stivă, astfel încât numai stiva este manipulată.\n" +" \n" +" Argumente:\n" +" +N\tRotește stiva astfel încât al N-lea director (numărând din\n" +" \tstânga listei afișate de «dirs», începând cu zero) să fie în\n" +" \tpartea de sus.\n" +" \n" +" -N\tRotește stiva astfel încât al N-lea director (numărând din\n" +" \tdreapta listei afișate de «dirs», începând cu zero) să fie în\n" +" \tpartea de sus.\n" +" \n" +" dir\tAdaugă DIR la stiva de directoare din partea de sus,\n" +" \tfăcându-l noul director de lucru curent.\n" +" \n" +" Comanda internă «dirs» arată stiva curentă de directoare." #: builtins/pushd.def:748 msgid "" @@ -797,74 +933,105 @@ msgid "" " \n" " The `dirs' builtin displays the directory stack." msgstr "" +"Elimină intrările din stiva de directoare. Fără argumente, elimină directorul\n" +" din partea de sus a stivei, și trece la cel cea devenit noul director de sus\n" +" a stivei.\n" +" \n" +" Opțiuni:\n" +" -n\tSuprimă schimbarea normală a directorului atunci când se elimină\n" +" \tdirectoare din stivă, astfel încât numai stiva este manipulată.\n" +" \n" +" Argumente:\n" +" +N\tElimină intrarea a N-a numărând din stânga listei afișate de «dirs»,\n" +" \tîncepând cu zero. De exemplu: «popd +0» elimină primul director,\n" +" \t«popd +1» al doilea director, șamd.\n" +" \n" +" -N\tElimină intrarea a N-a numărând din dreapta listei afișate de «dirs»,\n" +" \tîncepând cu zero. De exemplu: «popd -0» elimină ultimul director,\n" +" \t„popd -1” penultimul director, șamd.\n" +" \n" +" Comanda internă «dirs» arată stiva curentă de directoare." #: builtins/read.def:280 #, c-format msgid "%s: invalid timeout specification" -msgstr "" +msgstr "%s: specificație a timpului de expirare nevalidă" #: builtins/read.def:755 -#, fuzzy, c-format -#| msgid "pipe error: %s" +#, c-format msgid "read error: %d: %s" -msgstr "eroare de legătură (pipe): %s" +msgstr "eroare de citire: %d: %s" +# Comentariu: +# Eram un pic indecis asupra formei finale a traducerii, +# așa că am început să trag cu ochiul la traducerile +# celorlalți latini, așa am descoperit la brazilieni, +# francezi și spanioli(în ordine alfabetică), formula +# magică pentru această traducere: +# 1. +# msgstr "possível retornar (`return') apenas de uma função ou script carregado (com `source')" +# 2. +# msgstr "« return » n'est possible que depuis une fonction ou depuis un script exécuté par « source »" +# 3. +# msgstr "sólo se puede usar `return' desde una función o un script leído con `source'" #: builtins/return.def:68 msgid "can only `return' from a function or sourced script" -msgstr "" +msgstr "„return”, se poate utiliza doar de la o funcție sau script executat(ă) de la „source”" +# R-GC, scrie: +# după revizarea fișierului, DȘ, spune: +# „→ nu se pot anula...” +# === +# Ok, corecție aplicată #: builtins/set.def:869 -#, fuzzy -#| msgid "can only be used within a function; it makes the variable NAME" msgid "cannot simultaneously unset a function and a variable" -msgstr "poate fi folosit doar într-o funcție, și face ca variabila NUME" +msgstr "nu se pot anula simultan o funcție și o variabilă" #: builtins/set.def:966 -#, fuzzy, c-format -#| msgid "%s: unbound variable" +#, c-format msgid "%s: not an array variable" -msgstr "%s: variabilă fără limită" +msgstr "%s: nu este o variabilă matrice" #: builtins/setattr.def:189 -#, fuzzy, c-format -#| msgid "%s: readonly function" +#, c-format msgid "%s: not a function" -msgstr "%s: funcție doar în citire (readonly)" +msgstr "%s: nu este o funcție" #: builtins/setattr.def:194 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot export" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu se poate exporta" #: builtins/shift.def:72 builtins/shift.def:79 -#, fuzzy -#| msgid "shift [n]" msgid "shift count" -msgstr "shift [n]" +msgstr "contor deplasare(shift)" +# R-GC, scrie: +# după revizarea fișierului, DȘ, spune: +# «→ similar și aici: „nu se pot activa ... ”» +# === +# Ok, corecție aplicată #: builtins/shopt.def:310 msgid "cannot set and unset shell options simultaneously" -msgstr "" +msgstr "nu se pot activa și dezactiva simultan opțiunile de shell" #: builtins/shopt.def:428 #, c-format msgid "%s: invalid shell option name" -msgstr "" +msgstr "%s: nume nevalid al opțiunii shell" #: builtins/source.def:128 msgid "filename argument required" -msgstr "" +msgstr "este necesar argumentul nume_de_fișier" #: builtins/source.def:154 -#, fuzzy, c-format -#| msgid "%s: command not found" +#, c-format msgid "%s: file not found" -msgstr "%s: comandă negăsită" +msgstr "%s: nu s-a găsit fișierul" #: builtins/suspend.def:102 msgid "cannot suspend" -msgstr "" +msgstr "nu se poate suspenda" #: builtins/suspend.def:112 msgid "cannot suspend a login shell" @@ -873,12 +1040,12 @@ msgstr "nu se poate suspenda un shell de autentificare" #: builtins/type.def:235 #, c-format msgid "%s is aliased to `%s'\n" -msgstr "" +msgstr "%s este un alias pentru „%s”\n" #: builtins/type.def:256 #, c-format msgid "%s is a shell keyword\n" -msgstr "" +msgstr "%s este un cuvânt cheie shell\n" #: builtins/type.def:275 #, c-format @@ -888,71 +1055,65 @@ msgstr "%s este o funcție\n" #: builtins/type.def:299 #, c-format msgid "%s is a special shell builtin\n" -msgstr "" +msgstr "%s este o comandă internă specială a shell\n" #: builtins/type.def:301 #, c-format msgid "%s is a shell builtin\n" -msgstr "" +msgstr "%s este o comandă internă a shell\n" #: builtins/type.def:323 builtins/type.def:408 #, c-format msgid "%s is %s\n" -msgstr "" +msgstr "%s este %s\n" +# sau: este mărunțit/fragmentat ? #: builtins/type.def:343 #, c-format msgid "%s is hashed (%s)\n" -msgstr "" +msgstr "%s este asociat(hashed) (%s)\n" #: builtins/ulimit.def:400 #, c-format msgid "%s: invalid limit argument" -msgstr "" +msgstr "%s: limită de argument nevalidă" #: builtins/ulimit.def:426 -#, fuzzy, c-format -#| msgid "%c%c: bad option" +#, c-format msgid "`%c': bad command" -msgstr "%c%c: opțiune invalidă" +msgstr "„%c”: comandă incorectă" #: builtins/ulimit.def:455 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot get limit: %s" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu se poate obține limita: %s" #: builtins/ulimit.def:481 -#, fuzzy -#| msgid "CPU limit" msgid "limit" -msgstr "limită CPU" +msgstr "limită" #: builtins/ulimit.def:493 builtins/ulimit.def:793 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot modify limit: %s" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu se poate modifica limita: %s" #: builtins/umask.def:115 -#, fuzzy -#| msgid "bad signal number" msgid "octal number" -msgstr "număr de semnal invalid" +msgstr "număr octal" #: builtins/umask.def:232 #, c-format msgid "`%c': invalid symbolic mode operator" -msgstr "" +msgstr "„%c”: operator de mod simbolic nevalid" #: builtins/umask.def:287 #, c-format msgid "`%c': invalid symbolic mode character" -msgstr "" +msgstr "„%c”: caracter de mod simbolic nevalid" #: error.c:89 error.c:347 error.c:349 error.c:351 msgid " line " -msgstr "" +msgstr " linie " #: error.c:164 #, c-format @@ -962,13 +1123,13 @@ msgstr "ultima comandă: %s\n" #: error.c:172 #, c-format msgid "Aborting..." -msgstr "" +msgstr "Se abandonează..." #. TRANSLATORS: this is a prefix for informational messages. #: error.c:287 #, c-format msgid "INFORM: " -msgstr "" +msgstr "RAPORT: " #: error.c:462 msgid "unknown command error" @@ -976,67 +1137,69 @@ msgstr "eroare de comandă necunoscută" #: error.c:463 msgid "bad command type" -msgstr "tip rău de comandă" +msgstr "tip de comandă greșit" #: error.c:464 -#, fuzzy -#| msgid "bad connector `%d'" msgid "bad connector" -msgstr "conector greșit `%d'" +msgstr "conector greșit" #: error.c:465 msgid "bad jump" -msgstr "salt rău" +msgstr "salt eronat" #: error.c:503 #, c-format msgid "%s: unbound variable" -msgstr "%s: variabilă fără limită" +msgstr "%s: variabilă neasociată" #: eval.c:242 msgid "\atimed out waiting for input: auto-logout\n" -msgstr "\aa expirat așteptând introducerea datelor: auto-logout\n" +msgstr "\atimed expirat așteptând introducerea datelor: auto-logout\n" #: execute_cmd.c:537 #, c-format msgid "cannot redirect standard input from /dev/null: %s" -msgstr "" +msgstr "nu se poate redirecționa intrarea standard de la /dev/null: %s" #: execute_cmd.c:1297 #, c-format msgid "TIMEFORMAT: `%c': invalid format character" -msgstr "" +msgstr "TIMEFORMAT: „%c”: caracter de format nevalid" #: execute_cmd.c:2362 #, c-format msgid "execute_coproc: coproc [%d:%s] still exists" -msgstr "" +msgstr "execute_coproc: coproc [%d:%s] încă există" #: execute_cmd.c:2486 -#, fuzzy -#| msgid "pipe error: %s" msgid "pipe error" -msgstr "eroare de legătură (pipe): %s" +msgstr "eroare de linie de conectare" +# Opinie/Motivație: +# am ales să traduc nesting = suprapunere +# și nu +# nesting = imbricare +# pentru că consider că este vorba de efectul procesului (evaluările, ce vin una după alta,suprapunîndu-se) și nu de-a numi procesul în sine +# În plus, mi se pare că sună mult mai normal la ureche #: execute_cmd.c:4793 #, c-format msgid "eval: maximum eval nesting level exceeded (%d)" -msgstr "" +msgstr "eval: s-a depășit nivelul maxim de suprapunere de «eval» (%d)" #: execute_cmd.c:4805 #, c-format msgid "%s: maximum source nesting level exceeded (%d)" -msgstr "" +msgstr "%s: s-a depășit nivelul maxim de suprapunere de citiri cu «source» (%d)" #: execute_cmd.c:4913 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" -msgstr "" +msgstr "%s: s-a depășit nivelul maxim de suprapunere de funcții (%d)" #: execute_cmd.c:5467 #, c-format msgid "%s: restricted: cannot specify `/' in command names" -msgstr "%s: limitat: nu se poate specifica `/' în numele comenzilor" +msgstr "%s: limitat: nu se poate specifica „/” în numele comenzilor" #: execute_cmd.c:5574 #, c-format @@ -1046,30 +1209,27 @@ msgstr "%s: comandă negăsită" #: execute_cmd.c:5816 #, c-format msgid "%s: %s" -msgstr "" +msgstr "%s: %s" #: execute_cmd.c:5854 -#, fuzzy, c-format -#| msgid "%s: is a directory" +#, c-format msgid "%s: %s: bad interpreter" -msgstr "%s: este director" +msgstr "%s: %s: interpret greșit" #: execute_cmd.c:5891 -#, fuzzy, c-format -#| msgid "%s: cannot execute binary file" +#, c-format msgid "%s: cannot execute binary file: %s" -msgstr "%s: nu se poate executa fișierul binar" +msgstr "%s: nu se poate executa fișierul binar: %s" #: execute_cmd.c:5977 #, c-format msgid "`%s': is a special builtin" -msgstr "" +msgstr "„%s”: este o comandă internă specială" #: execute_cmd.c:6029 -#, fuzzy, c-format -#| msgid "cannot duplicate fd %d to fd 0: %s" +#, c-format msgid "cannot duplicate fd %d to fd %d" -msgstr "nu se poate duplica fd %d în fd 0: %s" +msgstr "nu se poate duplica descriptorul de fișier %d în descriptorul de fișier %d" #: expr.c:263 msgid "expression recursion level exceeded" @@ -1077,7 +1237,7 @@ msgstr "nivel de recursivitate al expresiei depășit" #: expr.c:291 msgid "recursion stack underflow" -msgstr "stivă recursivă prea puțin folosită (underflow)" +msgstr "stivă recursivă sub nivelul de depășire" #: expr.c:477 msgid "syntax error in expression" @@ -1096,36 +1256,32 @@ msgid "division by 0" msgstr "împărțire la 0" #: expr.c:592 -#, fuzzy -#| msgid "bug: bad expassign token %d" msgid "bug: bad expassign token" -msgstr "bug: identificator(token) expassign greșit %d" +msgstr "eroare: simbol de atribuire al expresiei greșit" #: expr.c:646 msgid "`:' expected for conditional expression" -msgstr "`:' așteptat după expresie condițională" +msgstr "se aștepta „:” după expresia condițională" #: expr.c:972 msgid "exponent less than 0" -msgstr "" +msgstr "exponent mai mic de 0" #: expr.c:1029 msgid "identifier expected after pre-increment or pre-decrement" -msgstr "" +msgstr "se aștepta un identificator după pre-increment sau pre-decrement" #: expr.c:1056 msgid "missing `)'" -msgstr "`)' lipsă" +msgstr "„)” lipsește" #: expr.c:1107 expr.c:1487 -#, fuzzy -#| msgid "syntax error: unexpected end of file" msgid "syntax error: operand expected" -msgstr "eroare de sintaxă: sfârșit de fișier neașteptat" +msgstr "eroare de sintaxă: se aștepta un operand" #: expr.c:1489 msgid "syntax error: invalid arithmetic operator" -msgstr "" +msgstr "eroare de sintaxă: operator aritmetic nevalid" #: expr.c:1513 #, c-format @@ -1134,11 +1290,20 @@ msgstr "%s%s%s: %s (identificatorul erorii este „%s”)" #: expr.c:1573 msgid "invalid arithmetic base" -msgstr "" +msgstr "bază aritmetică nevalidă" +# R-GC, scrie: +# cum „constantă întreagă nevalidă”, nu mă +# atrăgea prea mult, am adaptat traducerea +# la ce se vede +# *** +# după revizarea fișierului, DȘ, spune: +# «→ un mic typo la „întreg”» +# === +# Ok, corecție aplicată; graba... e de vină #: expr.c:1582 msgid "invalid integer constant" -msgstr "" +msgstr "constantă de număr întreg nevalidă" #: expr.c:1598 msgid "value too great for base" @@ -1150,56 +1315,52 @@ msgid "%s: expression error\n" msgstr "%s: eroare în expresie\n" #: general.c:70 -#, fuzzy -#| msgid "getwd: cannot access parent directories" msgid "getcwd: cannot access parent directories" -msgstr "getwd: nu s-au putut accesa directoarele părinte" +msgstr "getcwd: nu s-au putut accesa directoarele părinte" #: input.c:99 subst.c:6069 #, c-format msgid "cannot reset nodelay mode for fd %d" -msgstr "" +msgstr "nu se poate redefini modul „nodelay” pentru descriptorul de fișier %d" #: input.c:266 -#, fuzzy, c-format -#| msgid "cannot allocate new file descriptor for bash input from fd %d: %s" +#, c-format msgid "cannot allocate new file descriptor for bash input from fd %d" -msgstr "nu se poate aloca descriptor de fișier nou pentru inputul bash din fd %d: %s" +msgstr "nu se poate aloca un nou descriptor de fișier pentru intrarea bash din fd %d" #: input.c:274 -#, fuzzy, c-format -#| msgid "check_bash_input: buffer already exists for new fd %d" +#, c-format msgid "save_bash_input: buffer already exists for new fd %d" -msgstr "check_bash_input: buffer deja existent pentru fd nou %d" +msgstr "save_bash_input: memorie tampon deja existentă pentru noul descriptor de fișier %d" #: jobs.c:543 msgid "start_pipeline: pgrp pipe" -msgstr "" +msgstr "start_pipeline: linie de conectare pgrp" #: jobs.c:906 #, c-format msgid "bgp_delete: LOOP: psi (%d) == storage[psi].bucket_next" -msgstr "" +msgstr "bgp_delete: BUCLĂ: psi (%d) == storage[psi].bucket_next" #: jobs.c:959 #, c-format msgid "bgp_search: LOOP: psi (%d) == storage[psi].bucket_next" -msgstr "" +msgstr "bgp_search: BUCLĂ: psi (%d) == storage[psi].bucket_next" #: jobs.c:1283 #, c-format msgid "forked pid %d appears in running job %d" -msgstr "" +msgstr "pid-ul bifurcat %d apare în lucrarea în execuție %d" #: jobs.c:1402 #, c-format msgid "deleting stopped job %d with process group %ld" -msgstr "" +msgstr "se șterge lucrarea oprită %d cu grupul de procese %ld" #: jobs.c:1511 #, c-format msgid "add_process: pid %5ld (%s) marked as still alive" -msgstr "" +msgstr "add_process: pid %5ld (%s) marcat ca încă în viață" #: jobs.c:1850 #, c-format @@ -1217,7 +1378,7 @@ msgstr "Finalizat" #: jobs.c:1884 siglist.c:122 msgid "Stopped" -msgstr "Stopat" +msgstr "Oprit" #: jobs.c:1888 #, c-format @@ -1247,56 +1408,65 @@ msgstr "Stare necunoscută" msgid "(core dumped) " msgstr "(core dumped) " +# NOTĂ: de aflat ce înseamnă: +# wd = +# ===================================== +# NOTA_BENE: +# pe viitor „istețule” uită-te în fișierul de traducere, +# deschis ca text, și vei avea mari șanse să afli +# răspunsul; fără a «gonglear» ca bezmeticul în Internet #: jobs.c:2020 #, c-format msgid " (wd: %s)" -msgstr " (wd: %s)" +msgstr " (dir.lucru: %s)" #: jobs.c:2259 #, c-format msgid "child setpgid (%ld to %ld)" -msgstr "setpgid copil (de la%ld la %ld)" +msgstr "setpgid proces-copil (de la %ld la %ld)" +# NOTĂ: +# «wait», nu se traduce; aici, și în mesajele următoare, +# face parte din categoria cuvintelor ce nu se traduc. +# Datorită contextului în care se află. #: jobs.c:2617 nojobs.c:664 -#, fuzzy, c-format -#| msgid "wait: pid %d is not a child of this shell" +#, c-format msgid "wait: pid %ld is not a child of this shell" -msgstr "așteptați: pid-ul %d nu este rezultat(child) al acestui shell" +msgstr "wait: pid %ld nu este un proces-copil al acestui shell" #: jobs.c:2893 #, c-format msgid "wait_for: No record of process %ld" -msgstr "" +msgstr "wait_for: Nu există nicio înregistrare a procesului %ld" #: jobs.c:3236 #, c-format msgid "wait_for_job: job %d is stopped" -msgstr "" +msgstr "wait_for_job: lucrarea %d este oprită" #: jobs.c:3564 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: no current jobs" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu există lucrări actuale" #: jobs.c:3571 #, c-format msgid "%s: job has terminated" -msgstr "%s: jobul a fost terminat" +msgstr "%s: lucrarea a fost terminată" #: jobs.c:3580 #, c-format msgid "%s: job %d already in background" -msgstr "" +msgstr "%s: lucrarea %d se află deja în fundal" #: jobs.c:3806 msgid "waitchld: turning on WNOHANG to avoid indefinite block" -msgstr "" +msgstr "waitchld: se activează WNOHANG pentru a evita blocarea pe termen nedefinit" #: jobs.c:4320 #, c-format msgid "%s: line %d: " -msgstr "" +msgstr "%s: linie %d: " #: jobs.c:4334 nojobs.c:919 #, c-format @@ -1306,43 +1476,37 @@ msgstr " (core dumped)" #: jobs.c:4346 jobs.c:4359 #, c-format msgid "(wd now: %s)\n" -msgstr "(wd actual: %s)\n" +msgstr "(dir.lucru actual: %s)\n" #: jobs.c:4391 -#, fuzzy -#| msgid "initialize_jobs: getpgrp failed: %s" msgid "initialize_job_control: getpgrp failed" -msgstr "initialize_jobs: getpgrp eșuat: %s" +msgstr "initialize_job_control: getpgrp a eșuat" #: jobs.c:4447 msgid "initialize_job_control: no job control in background" -msgstr "" +msgstr "initialize_job_control: nu există control de lucrări în fundal" #: jobs.c:4463 -#, fuzzy -#| msgid "initialize_jobs: line discipline: %s" msgid "initialize_job_control: line discipline" -msgstr "initialize_jobs: disciplină linie: %s" +msgstr "initialize_job_control: disciplină linie" #: jobs.c:4473 -#, fuzzy -#| msgid "initialize_jobs: getpgrp failed: %s" msgid "initialize_job_control: setpgid" -msgstr "initialize_jobs: getpgrp eșuat: %s" +msgstr "initialize_job_control: setpgid" #: jobs.c:4494 jobs.c:4503 #, c-format msgid "cannot set terminal process group (%d)" -msgstr "" +msgstr "nu se poate configura grupul de procese din terminal (%d)" #: jobs.c:4508 msgid "no job control in this shell" -msgstr "nici un control de job în acest shell" +msgstr "nu există niciun control de lucrări în acest shell" #: lib/malloc/malloc.c:353 #, c-format msgid "malloc: failed assertion: %s\n" -msgstr "" +msgstr "malloc: a eșuat aserțiunea: %s\n" #: lib/malloc/malloc.c:369 #, c-format @@ -1350,109 +1514,118 @@ msgid "" "\r\n" "malloc: %s:%d: assertion botched\r\n" msgstr "" +"\r\n" +"malloc: %s:%d: aserțiune greșită\r\n" #: lib/malloc/malloc.c:370 lib/malloc/malloc.c:933 msgid "unknown" msgstr "necunoscut" +# Altă formulă de traducere al mesajului, este: +# „malloc: bloc șters din lista disponibilă ” +# Notă, pentru a decide care dintre aceste traduceri, +# rămîne, e nevoie de colaborarea(opinii, sugestii, +# comentarii, etc) ale utilizatorilor de «bash»... #: lib/malloc/malloc.c:882 msgid "malloc: block on free list clobbered" -msgstr "" +msgstr "malloc: bloc suprascris pe lista liberă" #: lib/malloc/malloc.c:972 msgid "free: called with already freed block argument" -msgstr "" +msgstr "free: apelat cu un argument bloc deja eliberat" #: lib/malloc/malloc.c:975 msgid "free: called with unallocated block argument" -msgstr "" +msgstr "free: apelat cu un argument de bloc nealocat" +# Am tradus inițial mesajul, ca: +# „free: depășire insuficientă detectată; mh_nbytes în afara intervalului” +# formulă actuală mi se pare mai adecvată. contextului, precum și a mesajului din engleză #: lib/malloc/malloc.c:994 msgid "free: underflow detected; mh_nbytes out of range" -msgstr "" +msgstr "free: s-a detectat o depășire insuficientă; mh_nbytes în afara intervalului" #: lib/malloc/malloc.c:1001 msgid "free: underflow detected; magic8 corrupted" -msgstr "" +msgstr "free: s-a detectat o depășire insuficientă; magic8 corupt" #: lib/malloc/malloc.c:1009 msgid "free: start and end chunk sizes differ" -msgstr "" +msgstr "free: dimensiunile bucăților de început și de sfârșit sunt diferite" #: lib/malloc/malloc.c:1119 msgid "realloc: called with unallocated block argument" -msgstr "" +msgstr "realloc: apelat cu un argument de bloc nealocat" #: lib/malloc/malloc.c:1134 msgid "realloc: underflow detected; mh_nbytes out of range" -msgstr "" +msgstr "realloc: s-a detectat o depășire insuficientă; mh_nbytes țn afara intervalului" #: lib/malloc/malloc.c:1141 msgid "realloc: underflow detected; magic8 corrupted" -msgstr "" +msgstr "realloc: s-a detectat o depășire insuficientă; magic8 corupt" #: lib/malloc/malloc.c:1150 msgid "realloc: start and end chunk sizes differ" -msgstr "" +msgstr "realloc: dimensiunile bucăților de început și de sfârșit, diferă" #: lib/malloc/table.c:191 #, c-format msgid "register_alloc: alloc table is full with FIND_ALLOC?\n" -msgstr "" +msgstr "register_alloc: tabelul de alocare este plin cu FIND_ALLOC?\n" #: lib/malloc/table.c:200 #, c-format msgid "register_alloc: %p already in table as allocated?\n" -msgstr "" +msgstr "register_alloc: %p deja în tabel ca fiind alocat?\n" #: lib/malloc/table.c:253 #, c-format msgid "register_free: %p already in table as free?\n" -msgstr "" +msgstr "register_alloc: %p deja în tabel ca liber?\n" #: lib/sh/fmtulong.c:102 msgid "invalid base" -msgstr "" +msgstr "bază nevalidă" #: lib/sh/netopen.c:168 -#, fuzzy, c-format -#| msgid "unknown" +#, c-format msgid "%s: host unknown" -msgstr "necunoscut" +msgstr "%s: gazdă necunoscută" #: lib/sh/netopen.c:175 #, c-format msgid "%s: invalid service" -msgstr "" +msgstr "%s: serviciu nevalid" #: lib/sh/netopen.c:306 #, c-format msgid "%s: bad network path specification" -msgstr "" +msgstr "%s: specificație incorectă pentru ruta rețelei" #: lib/sh/netopen.c:347 msgid "network operations not supported" -msgstr "" +msgstr "operațiunile de rețea nu sunt acceptate" #: locale.c:217 #, c-format msgid "setlocale: LC_ALL: cannot change locale (%s)" -msgstr "" +msgstr "setlocale: LC_ALL: nu se poate schimba parametrul de limbă (%s)" #: locale.c:219 #, c-format msgid "setlocale: LC_ALL: cannot change locale (%s): %s" -msgstr "" +msgstr "setlocale: LC_ALL: nu se poate schimba parametrul de limbă (%s): %s" #: locale.c:292 #, c-format msgid "setlocale: %s: cannot change locale (%s)" -msgstr "" +msgstr "setlocale: %s: nu se poate schimba parametrul de limbă (%s)" #: locale.c:294 #, c-format msgid "setlocale: %s: cannot change locale (%s): %s" -msgstr "" +msgstr "setlocale: %s: nu se poate schimba parametrul de limbă (%s): %s" #: mailcheck.c:439 msgid "You have mail in $_" @@ -1472,16 +1645,13 @@ msgid "syntax error: arithmetic expression required" msgstr "eroare de sintaxă: expresie aritmetică necesară" #: make_cmd.c:319 -#, fuzzy -#| msgid "syntax error: unexpected end of file" msgid "syntax error: `;' unexpected" -msgstr "eroare de sintaxă: sfârșit de fișier neașteptat" +msgstr "eroare de sintaxă: „;” neașteptat" #: make_cmd.c:320 -#, fuzzy, c-format -#| msgid "syntax error" +#, c-format msgid "syntax error: `((%s))'" -msgstr "eroare de sintaxă" +msgstr "eroare de sintaxă: „((%s))”" #: make_cmd.c:572 #, c-format @@ -1491,36 +1661,35 @@ msgstr "make_here_document: tip de instrucțiune greșit %d" #: make_cmd.c:657 #, c-format msgid "here-document at line %d delimited by end-of-file (wanted `%s')" -msgstr "" +msgstr "«here-document» la linia %d delimitat de sfârșitul fișierului (se aștepta „%s”)" #: make_cmd.c:756 #, c-format msgid "make_redirection: redirection instruction `%d' out of range" -msgstr "" +msgstr "make_redirection: instrucțiunea de redirecționare „%d” este în afara intervalului" #: parse.y:2393 #, c-format msgid "shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line truncated" -msgstr "" +msgstr "shell_getc: shell_input_line_size (%zu) depășește SIZE_MAX (%lu): linie trunchiată" #: parse.y:2826 msgid "maximum here-document count exceeded" -msgstr "" +msgstr "numărul maxim de «here-document» a fost depășit" #: parse.y:3581 parse.y:3957 parse.y:4556 #, c-format msgid "unexpected EOF while looking for matching `%c'" -msgstr "EOF neașteptat în căutare după potrivirea „%c”" +msgstr "sfârșit neașteptat al fișierului(EOF) în timp ce se căuta coincidența pentru „%c”" #: parse.y:4696 msgid "unexpected EOF while looking for `]]'" -msgstr "EOF neașteptat în căutare după „]]”" +msgstr "sfârșit neașteptat al fișierului(EOF) în timp ce se căuta „]]”" #: parse.y:4701 -#, fuzzy, c-format -#| msgid "syntax error near unexpected token `%s'" +#, c-format msgid "syntax error in conditional expression: unexpected token `%s'" -msgstr "eroare de sintaxă neașteptată lângă `%s'" +msgstr "eroare de sintaxă în expresia condițională: simbol neașteptat „%s”" #: parse.y:4705 msgid "syntax error in conditional expression" @@ -1529,7 +1698,7 @@ msgstr "eroare de sintaxă în expresia condițională" #: parse.y:4783 #, c-format msgid "unexpected token `%s', expected `)'" -msgstr "" +msgstr "simbol neașteptat „%s”, așteptat „)”" #: parse.y:4787 msgid "expected `)'" @@ -1538,61 +1707,54 @@ msgstr "se aștepta „)”" #: parse.y:4815 #, c-format msgid "unexpected argument `%s' to conditional unary operator" -msgstr "" +msgstr "argument neașteptat „%s” pentru operatorul unar condițional" #: parse.y:4819 msgid "unexpected argument to conditional unary operator" -msgstr "" +msgstr "argument neașteptat pentru operatorul unar condițional" #: parse.y:4865 -#, fuzzy, c-format -#| msgid "%s: binary operator expected" +#, c-format msgid "unexpected token `%s', conditional binary operator expected" -msgstr "%s: se așteaptă operator binar" +msgstr "identificator neașteptat „%s”, se aștepta operator binar condițional" #: parse.y:4869 -#, fuzzy -#| msgid "%s: binary operator expected" msgid "conditional binary operator expected" -msgstr "%s: se așteaptă operator binar" +msgstr "se aștepta operator binar condițional" #: parse.y:4891 #, c-format msgid "unexpected argument `%s' to conditional binary operator" -msgstr "" +msgstr "argument neașteptat „%s” pentru operatorul binar condițional" #: parse.y:4895 msgid "unexpected argument to conditional binary operator" -msgstr "" +msgstr "argument neașteptat pentru operatorul binar condițional" #: parse.y:4906 -#, fuzzy, c-format -#| msgid "`:' expected for conditional expression" +#, c-format msgid "unexpected token `%c' in conditional command" -msgstr "`:' așteptat după expresie condițională" +msgstr "identificator neașteptat „%c” în comanda condițională" #: parse.y:4909 -#, fuzzy, c-format -#| msgid "`:' expected for conditional expression" +#, c-format msgid "unexpected token `%s' in conditional command" -msgstr "`:' așteptat după expresie condițională" +msgstr "identificator neașteptat „%s” în comanda condițională" #: parse.y:4913 -#, fuzzy, c-format -#| msgid "`:' expected for conditional expression" +#, c-format msgid "unexpected token %d in conditional command" -msgstr "`:' așteptat după expresie condițională" +msgstr "identificator neașteptat %d în comanda condițională" #: parse.y:6336 #, c-format msgid "syntax error near unexpected token `%s'" -msgstr "eroare de sintaxă neașteptată lângă `%s'" +msgstr "eroare de sintaxă neașteptată lângă „%s”" #: parse.y:6355 -#, fuzzy, c-format -#| msgid "syntax error near unexpected token `%s'" +#, c-format msgid "syntax error near `%s'" -msgstr "eroare de sintaxă neașteptată lângă `%s'" +msgstr "eroare de sintaxă neașteptată lângă „%s”" #: parse.y:6365 msgid "syntax error: unexpected end of file" @@ -1605,151 +1767,154 @@ msgstr "eroare de sintaxă" #: parse.y:6428 #, c-format msgid "Use \"%s\" to leave the shell.\n" -msgstr "Folosiți \"%s\" pentru a părăsi shellul.\n" +msgstr "Utilizați „%s” pentru a părăsi shell-ul.\n" #: parse.y:6602 msgid "unexpected EOF while looking for matching `)'" -msgstr "EOF neașteptat în căutare după perechea lui „)”" +msgstr "sfârșit neașteptat al fișierului în timp ce se căuta după perechea lui „)”" #: pcomplete.c:1132 #, c-format msgid "completion: function `%s' not found" -msgstr "" +msgstr "completare: funcția „%s” nu a fost găsită" #: pcomplete.c:1722 #, c-format msgid "programmable_completion: %s: possible retry loop" -msgstr "" +msgstr "programable_completion: %s: posibilă buclă de reîncercare" #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" -msgstr "" +msgstr "progcomp_insert: %s: COMPSPEC null" #: print_cmd.c:302 #, c-format msgid "print_command: bad connector `%d'" -msgstr "print_command: conector greșitr `%d'" +msgstr "print_command: conector greșit „%d”" #: print_cmd.c:375 #, c-format msgid "xtrace_set: %d: invalid file descriptor" -msgstr "" +msgstr "xtrace_set: %d: descriptor de fișier nevalid" #: print_cmd.c:380 msgid "xtrace_set: NULL file pointer" -msgstr "" +msgstr "xtrace_set: indicatorul pentru fișier este NULL" #: print_cmd.c:384 #, c-format msgid "xtrace fd (%d) != fileno xtrace fp (%d)" -msgstr "" +msgstr "xtrace fd (%d) != nrfișier xtrace fp (%d)" #: print_cmd.c:1540 #, c-format msgid "cprintf: `%c': invalid format character" -msgstr "" +msgstr "cprintf: „%c”: caracter de format nevalid" #: redir.c:149 redir.c:197 msgid "file descriptor out of range" -msgstr "" +msgstr "descriptor de fișier în afara intervalului" #: redir.c:204 -#, fuzzy, c-format -#| msgid "%s: Ambiguous redirect" +#, c-format msgid "%s: ambiguous redirect" -msgstr "%s: Redirectare ambiguă" +msgstr "%s: redirectare ambiguă" #: redir.c:208 -#, fuzzy, c-format -#| msgid "%s: Cannot clobber existing file" +#, c-format msgid "%s: cannot overwrite existing file" -msgstr "%s: nu se poate accesa(clobber) fișierul existent" +msgstr "%s: nu se poate suprascrie fișierul existent" #: redir.c:213 -#, fuzzy, c-format -#| msgid "%s: restricted: cannot specify `/' in command names" +#, c-format msgid "%s: restricted: cannot redirect output" -msgstr "%s: limitat: nu se poate specifica `/' în numele comenzilor" +msgstr "%s: restricționat: nu se poate redirecționa ieșirea" #: redir.c:218 -#, fuzzy, c-format -#| msgid "cannot make pipe for process subsitution: %s" +#, c-format msgid "cannot create temp file for here-document: %s" -msgstr "nu pot face legătură (pipe) pentru substituția procesului: %s" +msgstr "nu se poate crea un fișier temporar pentru «here-document»: %s" #: redir.c:222 -#, fuzzy, c-format -#| msgid "%s: cannot assign list to array member" +#, c-format msgid "%s: cannot assign fd to variable" -msgstr "%s: nu pot asigna listă membrului intervalului" +msgstr "%s: nu se poate atribui descriptorul de fișier variabilei" +# Întrebare: este mai bine/corect +# „..... fără o conexiune de rețea” +# sau, +# ”fără a avea o conexiune la rețea”? +# *** +# după revizarea fișierului, DȘ, spune: +# «→conexiunea trebuie să fie LA rețea în ambele cazuri, „conexiune de rețea” este doar un tip de conexiune (fizică sau virtuală), iar „conexiunea la rețea” reprezintă accesul calculatorului la o rețea anume. (aici se subînțelege o rețea de alte calulatoare fie ea LAN sau WAN)» +# === +# Ok, corecție aplicată #: redir.c:649 msgid "/dev/(tcp|udp)/host/port not supported without networking" -msgstr "" +msgstr "nu se admite «/dev/(tcp|udp)/host/port» fără a avea o conexiune la rețea" #: redir.c:938 redir.c:1053 redir.c:1114 redir.c:1284 -#, fuzzy -#| msgid "redirection error" msgid "redirection error: cannot duplicate fd" -msgstr "eroare de redirectare" +msgstr "eroare de redirectare: nu se poate duplica descriptorul de fișier" #: shell.c:347 msgid "could not find /tmp, please create!" -msgstr "" +msgstr "nu s-a putut găsi «/tmp», vă rugăm să-l creați!" #: shell.c:351 msgid "/tmp must be a valid directory name" -msgstr "" +msgstr "«/tmp» trebuie să fie un nume de director valid" #: shell.c:804 msgid "pretty-printing mode ignored in interactive shells" -msgstr "" +msgstr "modul de imprimare „drăguț” este ignorat în shell-urile interactive" #: shell.c:948 -#, fuzzy, c-format -#| msgid "%c%c: bad option" +#, c-format msgid "%c%c: invalid option" -msgstr "%c%c: opțiune invalidă" +msgstr "%c%c: opțiune nevalidă" #: shell.c:1319 #, c-format msgid "cannot set uid to %d: effective uid %d" -msgstr "" +msgstr "nu se poate stabili uid la %d: uid efectiv %d" #: shell.c:1330 #, c-format msgid "cannot set gid to %d: effective gid %d" -msgstr "" +msgstr "nu se poate stabili gid la %d: gid efectiv %d" #: shell.c:1518 msgid "cannot start debugger; debugging mode disabled" -msgstr "" +msgstr "nu se poate porni depanatorul; modul de depanare a fost dezactivat" #: shell.c:1632 -#, fuzzy, c-format -#| msgid "%s: is a directory" +#, c-format msgid "%s: Is a directory" -msgstr "%s: este director" +msgstr "%s: Este un director" #: shell.c:1881 msgid "I have no name!" msgstr "Nu am nici un nume!" #: shell.c:2035 -#, fuzzy, c-format -#| msgid "GNU %s, version %s\n" +#, c-format msgid "GNU bash, version %s-(%s)\n" -msgstr "GNU %s, versiunea %s\n" +msgstr "GNU bash, versiunea %s-(%s)\n" +# R-GC, scrie: +# acest mesaj, și următoarele, pot să fie +# vizualizate, rulînd comanda: +# «bash --help». #: shell.c:2036 #, c-format msgid "" "Usage:\t%s [GNU long option] [option] ...\n" "\t%s [GNU long option] [option] script-file ...\n" msgstr "" -"Folosire:\t%s [GNU opțiune lungă] [opțiune] ...\n" -"\t%s [GNU opțiune lungă] [opțiune] fișier script ...\n" +"Utilizare:\t%s [GNU opțiune lungă] [opțiune] ...\n" +"\t%s [GNU opțiune lungă] [opțiune] fișier-script ...\n" #: shell.c:2038 msgid "GNU long options:\n" @@ -1760,10 +1925,8 @@ msgid "Shell options:\n" msgstr "Opțiuni ale shell-ului:\n" #: shell.c:2043 -#, fuzzy -#| msgid "\t-irsD or -c command\t\t(invocation only)\n" msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" -msgstr "\t-irsD sau -c comandă\t\t(doar invocație)\n" +msgstr "\t-ilrsD sau -c comandă sau -O shopt_option\t\t(doar invocare)\n" #: shell.c:2062 #, c-format @@ -1773,32 +1936,32 @@ msgstr "\t-%s sau -o opțiune\n" #: shell.c:2068 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" -msgstr "Tastați `%s -c \"help set\"' pentru mai multe informații despre opțiunile shell-ului.\n" +msgstr "Tastați «%s -c \"help set\"» pentru mai multe informații despre opțiunile shell-ului.\n" #: shell.c:2069 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" -msgstr "Tastați `%s -c help' pentru mai multe informații despre comenzile interne ale shell-ului.\n" +msgstr "Tastați «%s -c help» pentru mai multe informații despre comenzile interne ale shell-ului.\n" #: shell.c:2070 #, c-format msgid "Use the `bashbug' command to report bugs.\n" -msgstr "" +msgstr "Utilizați comanda «bashbug» pentru a raporta erori.\n" #: shell.c:2072 #, c-format msgid "bash home page: \n" -msgstr "" +msgstr "Pagina principală a lui „bash”: \n" #: shell.c:2073 #, c-format msgid "General help using GNU software: \n" -msgstr "" +msgstr "Ajutor general pentru utilizarea software-ului GNU: \n" #: sig.c:757 #, c-format msgid "sigprocmask: %d: invalid operation" -msgstr "" +msgstr "sigprocmask: %d: operație nevalidă" #: siglist.c:47 msgid "Bogus signal" @@ -1806,7 +1969,7 @@ msgstr "Semnal fals" #: siglist.c:50 msgid "Hangup" -msgstr "Deconectare" +msgstr "Deconectare/Terminare anormală(Hangup)" #: siglist.c:54 msgid "Interrupt" @@ -1822,7 +1985,7 @@ msgstr "Instrucțiune ilegală" #: siglist.c:66 msgid "BPT trace/trap" -msgstr "BPT trace/trap" +msgstr "Punct de întrerupere de urmărire/capturare" #: siglist.c:74 msgid "ABORT instruction" @@ -1834,31 +1997,31 @@ msgstr "Instrucțiune EMT" #: siglist.c:82 msgid "Floating point exception" -msgstr "Excepție virgulă mobilă" +msgstr "Excepție de virgulă mobilă" #: siglist.c:86 msgid "Killed" -msgstr "Terminat(killed)" +msgstr "Omorât" #: siglist.c:90 msgid "Bus error" -msgstr "Eroare de bus" +msgstr "Eroare de magistrală de date(bus)" #: siglist.c:94 msgid "Segmentation fault" -msgstr "Eroare de segmentare (Segmentation fault)" +msgstr "Eroare de segmentare" #: siglist.c:98 msgid "Bad system call" -msgstr "Apelare sistem invalidă" +msgstr "Apel de sistem incorect" #: siglist.c:102 msgid "Broken pipe" -msgstr "Legătură(pipe) întreruptă" +msgstr "Linie de conectare întreruptă" #: siglist.c:106 msgid "Alarm clock" -msgstr "Ceas alarmă" +msgstr "Ceas cu alarmă" #: siglist.c:110 msgid "Terminated" @@ -1866,7 +2029,7 @@ msgstr "Terminat" #: siglist.c:114 msgid "Urgent IO condition" -msgstr "Condiție IO urgentă" +msgstr "Condiție In/Ieș urgentă" #: siglist.c:118 msgid "Stopped (signal)" @@ -1878,7 +2041,7 @@ msgstr "Continuare" #: siglist.c:134 msgid "Child death or stop" -msgstr "Succesor mort sau oprit" +msgstr "Proces-copil mort sau oprit" #: siglist.c:138 msgid "Stopped (tty input)" @@ -1888,9 +2051,10 @@ msgstr "Oprit (tty input)" msgid "Stopped (tty output)" msgstr "Oprit (tty output)" +# Se referă la: dispozitiv(de intrare/de ieșire) #: siglist.c:146 msgid "I/O ready" -msgstr "I/O pregătit" +msgstr "In/Ieș pregătită" #: siglist.c:150 msgid "CPU limit" @@ -1912,9 +2076,15 @@ msgstr "Alarmă (profil)" msgid "Window changed" msgstr "Fereastră schimbată" +# De moment rămîne traducerea veche: +# „Reținere (lock) înregistrare” +# Dar, cred că: +# Blocare înregistrare, este formula corectă... +# *** +# l-am modificat la revizare #: siglist.c:170 msgid "Record lock" -msgstr "Reținere (lock) înregistrare" +msgstr "Blocare înregistrare" #: siglist.c:174 msgid "User signal 1" @@ -1926,7 +2096,7 @@ msgstr "Semnal utilizator 2" #: siglist.c:182 msgid "HFT input data pending" -msgstr "Date de intrare HFT în curs de rezolvare(pending)" +msgstr "Date de intrare HFT în curs de rezolvare" #: siglist.c:186 msgid "power failure imminent" @@ -1934,7 +2104,7 @@ msgstr "probleme electrice iminente" #: siglist.c:190 msgid "system crash imminent" -msgstr "crash de sistem iminent" +msgstr "cădere iminentă a sistemului" #: siglist.c:194 msgid "migrate process to another CPU" @@ -1946,115 +2116,98 @@ msgstr "eroare de programare" #: siglist.c:202 msgid "HFT monitor mode granted" -msgstr "Mod monitor HFT acordat" +msgstr "Modul de monitor HFT a fost acordat" #: siglist.c:206 msgid "HFT monitor mode retracted" -msgstr "Mod monitor HFT retras" +msgstr "Modul de monitor HFT a fost retras" #: siglist.c:210 msgid "HFT sound sequence has completed" -msgstr "Secvență de sunet HFT completată" +msgstr "Secvența de sunet HFT a fost completată" #: siglist.c:214 msgid "Information request" -msgstr "" +msgstr "Solicitare de informație" #: siglist.c:222 siglist.c:224 #, c-format msgid "Unknown Signal #%d" -msgstr "Semnal Necunoscut #%d" +msgstr "Semnal necunoscut #%d" #: subst.c:1476 subst.c:1666 -#, fuzzy, c-format -#| msgid "bad substitution: no `%s' in %s" +#, c-format msgid "bad substitution: no closing `%s' in %s" -msgstr "substituție invalidă: nu există '%s' în %s" +msgstr "înlocuire greșită: nu se închide „%s” în %s" #: subst.c:3281 #, c-format msgid "%s: cannot assign list to array member" -msgstr "%s: nu pot asigna listă membrului intervalului" +msgstr "%s: nu se poate atribui o listă unui membru al matricei" #: subst.c:5910 subst.c:5926 -#, fuzzy -#| msgid "cannot make pipe for process subsitution: %s" msgid "cannot make pipe for process substitution" -msgstr "nu pot face legătură (pipe) pentru substituția procesului: %s" +msgstr "nu se poate crea linia de conectare pentru substituția procesului" #: subst.c:5985 -#, fuzzy -#| msgid "cannot make a child for process substitution: %s" msgid "cannot make child for process substitution" -msgstr "nu pot crea un proces copil pentru substituirea procesului: %s" +msgstr "nu se poate crea un proces-copil pentru substituirea procesului: %s" #: subst.c:6059 -#, fuzzy, c-format -#| msgid "cannot open named pipe %s for %s: %s" +#, c-format msgid "cannot open named pipe %s for reading" -msgstr "nu pot deschide legătura numită %s pentru %s: %s" +msgstr "nu se poate deschide linia de conectare numită %s pentru citire" #: subst.c:6061 -#, fuzzy, c-format -#| msgid "cannot open named pipe %s for %s: %s" +#, c-format msgid "cannot open named pipe %s for writing" -msgstr "nu pot deschide legătura numită %s pentru %s: %s" +msgstr "nu se poate deschide linia de conectare numită %s pentru scriere" #: subst.c:6084 #, c-format msgid "cannot duplicate named pipe %s as fd %d" -msgstr "nu se poate duplica țeava numită %s ca fd %d" +msgstr "nu se poate duplica linia de conectare numită %s ca fd %d" #: subst.c:6213 -#, fuzzy -#| msgid "bad substitution: no ending `}' in %s" msgid "command substitution: ignored null byte in input" -msgstr "substituție invalidă: nu există ')' de final în %s" +msgstr "substituție de comandă: octetul null din intrare este ignorat" #: subst.c:6353 -#, fuzzy -#| msgid "can't make pipes for command substitution: %s" msgid "cannot make pipe for command substitution" -msgstr "nu pot face legături(pipes) pentru substituția de comenzi: %s" +msgstr "nu se poate crea linia de conectare pentru substituția de comandă" #: subst.c:6397 -#, fuzzy -#| msgid "can't make a child for command substitution: %s" msgid "cannot make child for command substitution" -msgstr "nu pot crea un copil pentru substituția de comenzi: %s" +msgstr "nu se poate crea un proces-copil pentru substituția de comandă" #: subst.c:6423 -#, fuzzy -#| msgid "command_substitute: cannot duplicate pipe as fd 1: %s" msgid "command_substitute: cannot duplicate pipe as fd 1" -msgstr "command_substitute: nu se poate duplica legătura (pipe) ca fd 1: %s" +msgstr "command_substitute: nu se poate duplica linia de conectare ca descriptor de fișier 1(fd 1)" #: subst.c:6883 subst.c:9952 #, c-format msgid "%s: invalid variable name for name reference" -msgstr "" +msgstr "%s: nume de variabilă nevalid pentru referința numelui" #: subst.c:6979 subst.c:6997 subst.c:7169 #, c-format msgid "%s: invalid indirect expansion" -msgstr "" +msgstr "%s: extindere indirectă nevalidă" #: subst.c:7013 subst.c:7177 -#, fuzzy, c-format -#| msgid "%s: unbound variable" +#, c-format msgid "%s: invalid variable name" -msgstr "%s: variabilă fără limită" +msgstr "%s: nume de variabilă nevalid" #: subst.c:7256 -#, fuzzy, c-format -#| msgid "%s: parameter null or not set" +#, c-format msgid "%s: parameter not set" -msgstr "%s: parametru null sau nesetat" +msgstr "%s: parametru nedefinit" #: subst.c:7258 #, c-format msgid "%s: parameter null or not set" -msgstr "%s: parametru null sau nesetat" +msgstr "%s: parametru nul sau nedefinit" #: subst.c:7503 subst.c:7518 #, c-format @@ -2064,7 +2217,7 @@ msgstr "%s: expresie subșir < 0" #: subst.c:9281 subst.c:9302 #, c-format msgid "%s: bad substitution" -msgstr "%s: substituție invalidă" +msgstr "%s: substituție nevalidă" #: subst.c:9390 #, c-format @@ -2073,36 +2226,35 @@ msgstr "$%s: nu se poate asigna în acest mod" #: subst.c:9814 msgid "future versions of the shell will force evaluation as an arithmetic substitution" -msgstr "" +msgstr "versiunile viitoare ale shell-ului vor forța evaluarea ca o substituție aritmetică" #: subst.c:10367 -#, fuzzy, c-format -#| msgid "bad substitution: no ending `}' in %s" +#, c-format msgid "bad substitution: no closing \"`\" in %s" -msgstr "substituție invalidă: nu există ')' de final în %s" +msgstr "înlocuire greșită: fără „`” de închidere în %s" #: subst.c:11434 #, c-format msgid "no match: %s" -msgstr "" +msgstr "nicio potrivire: %s" #: test.c:147 msgid "argument expected" -msgstr "se așteaptă parametru" +msgstr "se aștepta un parametru" #: test.c:156 #, c-format msgid "%s: integer expression expected" -msgstr "%s: se așteaptă expresie întreagă (integer)" +msgstr "%s: se aștepta o expresie întreagă (integer)" #: test.c:265 msgid "`)' expected" -msgstr "se așteaptă `)'" +msgstr "se aștepta „)'”" #: test.c:267 #, c-format msgid "`)' expected, found %s" -msgstr "se așteaptă `)', s-a primit %s" +msgstr "se aștepta „)”, s-a găsit %s" #: test.c:466 test.c:799 #, c-format @@ -2116,173 +2268,164 @@ msgstr "%s: se așteaptă operator unar" #: test.c:881 msgid "missing `]'" -msgstr "lipsește ']'" +msgstr "lipsește „]”" #: test.c:899 -#, fuzzy, c-format -#| msgid "syntax error: unexpected end of file" +#, c-format msgid "syntax error: `%s' unexpected" -msgstr "eroare de sintaxă: sfârșit de fișier neașteptat" +msgstr "eroare de sintaxă: „%s” neașteptat" #: trap.c:220 -#, fuzzy -#| msgid "bad signal number" msgid "invalid signal number" -msgstr "număr de semnal invalid" +msgstr "număr de semnal nevalid" #: trap.c:325 #, c-format msgid "trap handler: maximum trap handler level exceeded (%d)" -msgstr "" +msgstr "gestionarul de capturare: nivelul maxim de gestionări de capturare a fost depășit (%d)" #: trap.c:414 #, c-format msgid "run_pending_traps: bad value in trap_list[%d]: %p" -msgstr "" +msgstr "run_pending_traps: valoare greșită în trap_list[%d]: %p" #: trap.c:418 #, c-format msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" -msgstr "" +msgstr "run_pending_traps: gestionarul de semnal este SIG_DFL, se retrimite %d (%s) către mine" #: trap.c:487 -#, fuzzy, c-format -#| msgid "trap_handler: Bad signal %d" +#, c-format msgid "trap_handler: bad signal %d" -msgstr "trap_handler: Semnal invalid %d" +msgstr "trap_handler: semnal nevalid %d" #: variables.c:421 #, c-format msgid "error importing function definition for `%s'" -msgstr "eroare în importarea definiției funcției pentru '%s'" +msgstr "eroare în importarea definiției funcției pentru „%s”" #: variables.c:833 #, c-format msgid "shell level (%d) too high, resetting to 1" -msgstr "" +msgstr "nivelul shell-ului (%d) prea mare, se reinițializează la 1" #: variables.c:2674 msgid "make_local_variable: no function context at current scope" -msgstr "" +msgstr "make_local_variable: nu există context de funcție în domeniul actual" #: variables.c:2693 #, c-format msgid "%s: variable may not be assigned value" -msgstr "" +msgstr "%s: nu este posibil ca variabilei să i se atribuie o valoare" #: variables.c:3475 #, c-format msgid "%s: assigning integer to name reference" -msgstr "" +msgstr "%s: se atribuie un număr întreg referinței de nume" #: variables.c:4404 msgid "all_local_variables: no function context at current scope" -msgstr "" +msgstr "all_local_variables: nu există context de funcție în domeniul actual" #: variables.c:4771 -#, fuzzy, c-format -#| msgid "%s: parameter null or not set" +#, c-format msgid "%s has null exportstr" -msgstr "%s: parametru null sau nesetat" +msgstr "%s are exportstr nul" #: variables.c:4776 variables.c:4785 #, c-format msgid "invalid character %d in exportstr for %s" -msgstr "" +msgstr "caracter nevalid %d în exportstr pentru %s" #: variables.c:4791 #, c-format msgid "no `=' in exportstr for %s" -msgstr "" +msgstr "nu există „=” în exportstr pentru %s" #: variables.c:5331 msgid "pop_var_context: head of shell_variables not a function context" -msgstr "" +msgstr "pop_var_context: partea de sus din shell_variables nu este un context de funcție" #: variables.c:5344 msgid "pop_var_context: no global_variables context" -msgstr "" +msgstr "pop_var_context: nu există un context global_variables" #: variables.c:5424 msgid "pop_scope: head of shell_variables not a temporary environment scope" -msgstr "" +msgstr "pop_scope: partea de sus din shell_variables nu este un domeniu de mediu temporar" #: variables.c:6387 #, c-format msgid "%s: %s: cannot open as FILE" -msgstr "" +msgstr "%s: %s: nu se poate deschide ca FIȘIER" #: variables.c:6392 #, c-format msgid "%s: %s: invalid value for trace file descriptor" -msgstr "" +msgstr "%s: %s: valoare nevalidă pentru descriptorul fișierului de urmărire" #: variables.c:6437 #, c-format msgid "%s: %s: compatibility value out of range" -msgstr "" +msgstr "%s: %s: valoarea de compatibilitate în afara intervalului" #: version.c:46 version2.c:46 msgid "Copyright (C) 2020 Free Software Foundation, Inc." -msgstr "" +msgstr "Drepturi de autor © 2020 Free Software Foundation, Inc." #: version.c:47 version2.c:47 msgid "License GPLv3+: GNU GPL version 3 or later \n" -msgstr "" +msgstr "Licență GPLv3+: GNU GPL versiunea 3 sau ulterioară \n" #: version.c:86 version2.c:86 -#, fuzzy, c-format -#| msgid "GNU %s, version %s\n" +#, c-format msgid "GNU bash, version %s (%s)\n" -msgstr "GNU %s, versiunea %s\n" +msgstr "GNU bash, versiunea %s (%s)\n" #: version.c:91 version2.c:91 msgid "This is free software; you are free to change and redistribute it." -msgstr "" +msgstr "Acesta este un software liber; sunteți liber să îl modificați și să îl redistribuiți." #: version.c:92 version2.c:92 msgid "There is NO WARRANTY, to the extent permitted by law." -msgstr "" +msgstr "NU EXISTĂ NICIO GARANȚIE, în măsura permisă de lege." #: xmalloc.c:93 -#, fuzzy, c-format -#| msgid "xmalloc: cannot allocate %lu bytes (%lu bytes allocated)" +#, c-format msgid "%s: cannot allocate %lu bytes (%lu bytes allocated)" -msgstr "xmalloc: nu pot aloca %lu octeți (%lu octeți alocați)" +msgstr "%s: nu se pot aloca %lu octeți (%lu octeți alocați)" #: xmalloc.c:95 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: cannot allocate %lu bytes" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: nu se pot aloca %lu octeți" #: xmalloc.c:165 -#, fuzzy, c-format -#| msgid "xmalloc: cannot allocate %lu bytes (%lu bytes allocated)" +#, c-format msgid "%s: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)" -msgstr "xmalloc: nu pot aloca %lu octeți (%lu octeți alocați)" +msgstr "%s: %s:%d: nu se pot aloca %lu octeți (%lu octeți alocați)" #: xmalloc.c:167 -#, fuzzy, c-format -#| msgid "%s: cannot create: %s" +#, c-format msgid "%s: %s:%d: cannot allocate %lu bytes" -msgstr "%s: nu s-a putut crea: %s" +msgstr "%s: %s:%d: nu se pot aloca %lu octeți" +# R-GC, scrie: +# acest mesaj, și următoarele, pot să fie +# vizualizate, rulînd comanda: +# «bash -c help», dintr-un shell diferit de «bash»; +# «help», dintr-un shell «bash». #: builtins.c:45 msgid "alias [-p] [name[=value] ... ]" msgstr "alias [-p] [nume[=valoare] ... ]" #: builtins.c:49 -#, fuzzy -#| msgid "unalias [-a] [name ...]" msgid "unalias [-a] name [name ...]" -msgstr "unalias [-a] [nume ...]" +msgstr "unalias [-a] nume [nume ...]" #: builtins.c:53 -#, fuzzy -#| msgid "bind [-lpvsPVS] [-m keymap] [-f filename] [-q name] [-r keyseq] [keyseq:readline-function]" msgid "bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]" -msgstr "bind [-lpvsPVS] [-m keymap] [-f nume_fișier] [-q nume] [-r keyseq] [keyseq:funcție readline]" +msgstr "bind [-lpsvPSVX] [-m comb_taste] [-f nume_fișier] [-q nume] [-u nume] [-r secv_taste] [-x secv_taste:comandă_shell] [secv_taste:funcție-readline sau comandă-readline]" #: builtins.c:56 msgid "break [n]" @@ -2294,47 +2437,35 @@ msgstr "continue [n]" #: builtins.c:60 msgid "builtin [shell-builtin [arg ...]]" -msgstr "builtin [shell-builtin [arg ...]]" +msgstr "builtin [comandă_internă-shell [arg ...]]" #: builtins.c:63 -#, fuzzy -#| msgid "test [expr]" msgid "caller [expr]" -msgstr "test [expr]" +msgstr "caller [expr]" #: builtins.c:66 -#, fuzzy -#| msgid "cd [-PL] [dir]" msgid "cd [-L|[-P [-e]] [-@]] [dir]" -msgstr "cd [-PL] [dir]" +msgstr "cd [-L|[-P [-e]] [-@]] [dir]" #: builtins.c:68 -#, fuzzy -#| msgid "pwd [-PL]" msgid "pwd [-LP]" -msgstr "pwd [-PL]" +msgstr "pwd [-LP]" #: builtins.c:76 msgid "command [-pVv] command [arg ...]" msgstr "command [-pVv] comandă [arg ...]" #: builtins.c:78 -#, fuzzy -#| msgid "declare [-afFrxi] [-p] name[=value] ..." msgid "declare [-aAfFgiIlnrtux] [-p] [name[=value] ...]" -msgstr "declare [-afFrxi] [-p] nume[=valoare] ..." +msgstr "declare [-aAfFgiIlnrtux] [-p] [nume[=valoare] ...]" #: builtins.c:80 -#, fuzzy -#| msgid "typeset [-afFrxi] [-p] name[=value] ..." msgid "typeset [-aAfFgiIlnrtux] [-p] name[=value] ..." -msgstr "typeset [-afFrxi] [-p] nume[=valoare] ..." +msgstr "typeset [-aAfFgiIlnrtux] [-p] nume[=valoare] ..." #: builtins.c:82 -#, fuzzy -#| msgid "local name[=value] ..." msgid "local [option] name[=value] ..." -msgstr "local nume[=valoare] ..." +msgstr "local [opțiune] nume[=valoare] ..." #: builtins.c:85 msgid "echo [-neE] [arg ...]" @@ -2345,86 +2476,64 @@ msgid "echo [-n] [arg ...]" msgstr "echo [-n] [arg ...]" #: builtins.c:92 -#, fuzzy -#| msgid "enable [-pnds] [-a] [-f filename] [name ...]" msgid "enable [-a] [-dnps] [-f filename] [name ...]" -msgstr "enable [-pnds] [-a] [-f nume_fișier] [nume ...]" +msgstr "enable [-a] [-dnps] [-f nume_fișier]] [nume ...]" #: builtins.c:94 msgid "eval [arg ...]" msgstr "eval [arg ...]" #: builtins.c:96 -#, fuzzy -#| msgid "getopts optstring name [arg]" msgid "getopts optstring name [arg ...]" -msgstr "getopts optstring nume [arg]" +msgstr "getopts șir_opțiuni nume [arg ...]" #: builtins.c:98 -#, fuzzy -#| msgid "exec [-cl] [-a name] file [redirection ...]" msgid "exec [-cl] [-a name] [command [argument ...]] [redirection ...]" -msgstr "exec [-cl] [-a nume] fișier [redirectare ...]" +msgstr "exec [-cl] [-a nume] [comandă [argument ...]] [redirectare ...]" #: builtins.c:100 msgid "exit [n]" msgstr "exit [n]" #: builtins.c:102 -#, fuzzy -#| msgid "logout" msgid "logout [n]" -msgstr "logout" +msgstr "logout [n]" #: builtins.c:105 -#, fuzzy -#| msgid "fc [-e ename] [-nlr] [first] [last] or fc -s [pat=rep] [cmd]" msgid "fc [-e ename] [-lnr] [first] [last] or fc -s [pat=rep] [command]" -msgstr "fc [-e enume] [-nlr] [prim] [u8ltim] sau fc -s [pat=rep] [cmd]" +msgstr "fc [-e enume] [-lnr] [prim] [ultim] sau fc -s [pat=rep] [comandă]" #: builtins.c:109 msgid "fg [job_spec]" -msgstr "fg [job_spec]" +msgstr "fg [id_lucrare]" #: builtins.c:113 -#, fuzzy -#| msgid "bg [job_spec]" msgid "bg [job_spec ...]" -msgstr "bg [job_spec]" +msgstr "bg [id_lucrare ...]" #: builtins.c:116 -#, fuzzy -#| msgid "hash [-r] [-p pathname] [name ...]" msgid "hash [-lr] [-p pathname] [-dt] [name ...]" -msgstr "hash [-r] [-p nume_cale] [nume ...]" +msgstr "hash [-lr] [-p nume_rută [-dt] [nume ...]" #: builtins.c:119 -#, fuzzy -#| msgid "help [pattern ...]" msgid "help [-dms] [pattern ...]" -msgstr "help [tipar ...]" +msgstr "help [-dms] [tipar ...]" #: builtins.c:123 -#, fuzzy -#| msgid "history [-c] [n] or history -awrn [filename] or history -ps arg [arg...]" msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]" -msgstr "history [-c] [n] sau history -awrn [nume_fișier] sau history -ps arg [arg...]" +msgstr "history [-c] [-d decalaj] [n] sau history -anrw [nume_fișier] sau history -ps arg [arg...]" #: builtins.c:127 msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" -msgstr "jobs [-lnprs] [jobspec ...] sau jobs -x comandă [args]" +msgstr "jobs [-lnprs] [id_lucrare ...] sau jobs -x comandă [args]" #: builtins.c:131 -#, fuzzy -#| msgid "disown [jobspec ...]" msgid "disown [-h] [-ar] [jobspec ... | pid ...]" -msgstr "disown [jobspec ...]" +msgstr "disown [-h] [-ar] [id_lucrare ... | pid ...]" #: builtins.c:134 -#, fuzzy -#| msgid "kill [-s sigspec | -n signum | -sigspec] [pid | job]... or kill -l [sigspec]" msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" -msgstr "kill [-s sigspec | -n signum | -sigspec] [pid | job]... sau kill -l [sigspec]" +msgstr "kill [-s id_semnal | -n num_semnal | -id_semnal] pid | id_lucrare ... sau kill -l [id_semnal]" #: builtins.c:136 msgid "let arg [arg ...]" @@ -2432,51 +2541,39 @@ msgstr "let arg [arg ...]" #: builtins.c:138 msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" -msgstr "" +msgstr "read [-ers] [-a matrice] [-d delim] [-i text] [-n nr_carac] [-N nr_carac [-p prompt] [-t timp] [-u fd] [nume ...]" #: builtins.c:140 msgid "return [n]" msgstr "return [n]" #: builtins.c:142 -#, fuzzy -#| msgid "set [--abefhkmnptuvxBCHP] [-o option] [arg ...]" msgid "set [-abefhkmnptuvxBCHP] [-o option-name] [--] [arg ...]" -msgstr "set [--abefhkmnptuvxBCHP] [-o opțiune] [arg ...]" +msgstr "set [-abefhkmnptuvxBCHP] [-o nume-opțiune] [--] [arg ...]" #: builtins.c:144 -#, fuzzy -#| msgid "unset [-f] [-v] [name ...]" msgid "unset [-f] [-v] [-n] [name ...]" -msgstr "unset [-f] [-v] [nume ...]" +msgstr "unset [-f] [-v] [-n] [nume ...]" #: builtins.c:146 -#, fuzzy -#| msgid "export [-nf] [name ...] or export -p" msgid "export [-fn] [name[=value] ...] or export -p" -msgstr "export [-nf] [nume ...] sau export -p" +msgstr "export [-fn] [nume[=valoare] ...] sau export -p" #: builtins.c:148 -#, fuzzy -#| msgid "readonly [-anf] [name ...] or readonly -p" msgid "readonly [-aAf] [name[=value] ...] or readonly -p" -msgstr "readonly [-anf] [nume ...] sau readonly -p" +msgstr "readonly [-aAf] [nume[=valoare] ...] sau readonly -p" #: builtins.c:150 msgid "shift [n]" msgstr "shift [n]" #: builtins.c:152 -#, fuzzy -#| msgid "source filename" msgid "source filename [arguments]" -msgstr "nume fișier sursă" +msgstr "source nume_fișier [argumente]" #: builtins.c:154 -#, fuzzy -#| msgid ". filename" msgid ". filename [arguments]" -msgstr ". nume fișier" +msgstr ". nume_fișier [argumente]" #: builtins.c:157 msgid "suspend [-f]" @@ -2491,64 +2588,48 @@ msgid "[ arg... ]" msgstr "[ arg... ]" #: builtins.c:166 -#, fuzzy -#| msgid "trap [arg] [signal_spec] or trap -l" msgid "trap [-lp] [[arg] signal_spec ...]" -msgstr "trap [arg] [signal_spec] sau trap -l" +msgstr "trap [-lp] [[arg] id_semnal ...]" #: builtins.c:168 -#, fuzzy -#| msgid "type [-apt] name [name ...]" msgid "type [-afptP] name [name ...]" -msgstr "type [-apt] nume [nume ...]" +msgstr "type [-afptP] nume [nume ...]" #: builtins.c:171 -#, fuzzy -#| msgid "ulimit [-SHacdfmstpnuv] [limit]" msgid "ulimit [-SHabcdefiklmnpqrstuvxPT] [limit]" -msgstr "ulimit [-SHacdfmstpnuv] [limită]" +msgstr "ulimit [-SHabcdefiklmnpqrstuvxPT] [limită]" #: builtins.c:174 -#, fuzzy -#| msgid "umask [-S] [mode]" msgid "umask [-p] [-S] [mode]" -msgstr "umask [-S] [mod]" +msgstr "umask [-p] [-S] [mod]" #: builtins.c:177 -#, fuzzy -#| msgid "echo [-n] [arg ...]" msgid "wait [-fn] [-p var] [id ...]" -msgstr "echo [-n] [arg ...]" +msgstr "wait [-fn] [-p var] [id ...]" #: builtins.c:181 -#, fuzzy -#| msgid "wait [n]" msgid "wait [pid ...]" -msgstr "wait [n]" +msgstr "wait [pid ...]" #: builtins.c:184 -#, fuzzy -#| msgid "for NAME [in WORDS ... ;] do COMMANDS; done" msgid "for NAME [in WORDS ... ] ; do COMMANDS; done" -msgstr "for NUME [în EXPRESIE ... ;] execută COMENZI; done" +msgstr "for NUME [in CUVINTE ... ] ; do COMENZI; done" #: builtins.c:186 -#, fuzzy -#| msgid "for NAME [in WORDS ... ;] do COMMANDS; done" msgid "for (( exp1; exp2; exp3 )); do COMMANDS; done" -msgstr "for NUME [în EXPRESIE ... ;] execută COMENZI; done" +msgstr "for (( exp1; exp2; exp3 )); do COMENZI; done" #: builtins.c:188 msgid "select NAME [in WORDS ... ;] do COMMANDS; done" -msgstr "select NUME [în EXPRESIE ... ;] execută COMENZI; done" +msgstr "select NUME [in CUVINTE ... ;] do COMENZI; done" #: builtins.c:190 msgid "time [-p] pipeline" -msgstr "" +msgstr "time [-p] secvența_de_comenzi(pipeline)" #: builtins.c:192 msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" -msgstr "case EXPRESIE în [TIPAR[[TIPAR]..) COMENZI ;;]... esac" +msgstr "case CUVÂNT in [MODEL[[MODEL]..) COMENZI ;;]... esac" #: builtins.c:194 msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" @@ -2564,90 +2645,78 @@ msgstr "until COMENZI; do COMENZI; done" #: builtins.c:200 msgid "coproc [NAME] command [redirections]" -msgstr "" +msgstr "coproc [NUME] comanda [redirecționări]" #: builtins.c:202 -#, fuzzy -#| msgid "function NAME { COMMANDS ; } or NAME () { COMMANDS ; }" msgid "function name { COMMANDS ; } or name () { COMMANDS ; }" -msgstr "function NUME { COMENZI ; } sau NUME () { COMENZI ; }" +msgstr "function nume { COMENZI ; } sau nume () { COMENZI ; }" #: builtins.c:204 -#, fuzzy -#| msgid "{ COMMANDS }" msgid "{ COMMANDS ; }" -msgstr "{ COMENZI }" +msgstr "{ COMENZI ; }" #: builtins.c:206 -#, fuzzy -#| msgid "fg [job_spec]" msgid "job_spec [&]" -msgstr "fg [job_spec]" +msgstr "id_lucrare [&]" #: builtins.c:208 -#, fuzzy -#| msgid "expression expected" msgid "(( expression ))" -msgstr "se așteaptă expresie" +msgstr "(( expresie ))" #: builtins.c:210 -#, fuzzy -#| msgid "expression expected" msgid "[[ expression ]]" -msgstr "se așteaptă expresie" +msgstr "[[ expresie ]]" #: builtins.c:212 msgid "variables - Names and meanings of some shell variables" -msgstr "variabile - Numele și înțelesurile unor variabile din shell" +msgstr "variables - Numele și semnificațiile unor variabile din shell" #: builtins.c:215 -#, fuzzy -#| msgid "pushd [dir | +N | -N] [-n]" msgid "pushd [-n] [+N | -N | dir]" -msgstr "pushd [dir | +N | -N] [-n]" +msgstr "pushd [-n] [+N | -N | dir]" #: builtins.c:219 -#, fuzzy -#| msgid "popd [+N | -N] [-n]" msgid "popd [-n] [+N | -N]" -msgstr "popd [+N | -N] [-n]" +msgstr "popd [-n] [+N | -N]" #: builtins.c:223 msgid "dirs [-clpv] [+N] [-N]" msgstr "dirs [-clpv] [+N] [-N]" #: builtins.c:226 -#, fuzzy -#| msgid "shopt [-pqsu] [-o long-option] optname [optname...]" msgid "shopt [-pqsu] [-o] [optname ...]" -msgstr "shopt [-pqsu] [-o opțiune lungă] nume_opt [nume_opt...]" +msgstr "shopt [-pqsu] [-o] [nume_opțiune ...]" #: builtins.c:228 msgid "printf [-v var] format [arguments]" -msgstr "" +msgstr "printf [-v var] format [argumente]" #: builtins.c:231 msgid "complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" -msgstr "" +msgstr "complete [-abcdefgjksuv] [-pr] [-DEI] [-o opțiune] [-A acțiune] [-G tipar_glob] [-W listă_cuvinte] [-F funcție] [-C comandă] [-X tipar_filtru [- P prefix] [-S sufix] [nume ...]" #: builtins.c:235 msgid "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" -msgstr "" +msgstr "compgen [-abcdefgjksuv] [-o opțiune] [-A acțiune] [-G tipar_glob] [-W listă_cuvinte] [-F funcție] [-C comandă] [-X tipar_filtru] [-P prefix] [-S sufix] [cuvânt]" #: builtins.c:239 -#, fuzzy -#| msgid "unset [-f] [-v] [name ...]" msgid "compopt [-o|+o option] [-DEI] [name ...]" -msgstr "unset [-f] [-v] [nume ...]" +msgstr "compopt [-o|+o opțiune] [-DEI] [nume ...]" #: builtins.c:242 msgid "mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" -msgstr "" +msgstr "mapfile [-d delim] [-n cont] [-O origin] [-s cont] [-t] [-u fd] [-C apelare] [-c cantitate] [matrice]" #: builtins.c:244 msgid "readarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" -msgstr "" +msgstr "readarray [-d delim] [-n cantitate] [-O origine] [-s cantitate] [-t] [-u fd] [-C apelare] [-c sumă_de] [matrice]" +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help alias», din «bash»; +# «bash -c "help alias"», din «bash», sau dintr-un +# shell, diferit de «bash». #: builtins.c:256 msgid "" "Define or display aliases.\n" @@ -2666,7 +2735,28 @@ msgid "" " alias returns true unless a NAME is supplied for which no alias has been\n" " defined." msgstr "" +"Definește sau afișează alias.\n" +" \n" +" Fără argumente, «alias» imprimă lista de alias în forma reutilizabilă\n" +" „alias NUME=VALOARE” la ieșirea standard (pe ecran).\n" +" \n" +" În caz contrar, un alias este definit pentru fiecare NUME a cărui VALOARE\n" +" este dată. Un spațiu final în VALOARE, face ca următorul cuvânt să fie\n" +" verificat pentru înlocuirea aliasului atunci când aliasul este extins.\n" +" \n" +" Opțiuni:\n" +" -p\timprimă toate alias definite într-un format reutilizabil\n" +" \n" +" Starea de ieșire:\n" +" «alias» returnează adevărat, cu excepția cazului în care este furnizat\n" +" un NUME pentru care nu a fost definit niciun alias." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help unalias», din «bash»; +# «bash -c "help unalias"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:278 msgid "" "Remove each NAME from the list of defined aliases.\n" @@ -2676,7 +2766,19 @@ msgid "" " \n" " Return success unless a NAME is not an existing alias." msgstr "" +"Elimină fiecare NUME din lista de aliasuri definite.\n" +" \n" +" Opțiuni:\n" +" -a\telimină toate definițiile de alias\n" +" \n" +" Returnează succes, cu excepția cazului în care un NUME nu este un alias existent." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help bind», din «bash»; +# «bash -c "help bind"», din «bash», sau dintr-un +# shell, diferit de «bash». #: builtins.c:291 msgid "" "Set Readline key bindings and variables.\n" @@ -2713,7 +2815,47 @@ msgid "" " Exit Status:\n" " bind returns 0 unless an unrecognized option is given or an error occurs." msgstr "" +"Configurează legăturile de taste și variabilele Readline.\n" +" \n" +" Asociază o secvență de taste cu o funcție Readline sau cu o macrocomandă\n" +" sau configurează o variabilă Readline. Sintaxa argumentului fără opțiune \n" +" este echivalentă cu cea găsită în ~/.inputrc, dar trebuie transmisă ca un\n" +" singur argument; de exp.: bind '\"\\C-x\\C-r\": re-read-init-file'.\n" +" \n" +" Opțiuni:\n" +" -m keymap Utilizează KEYMAP ca hartă de taste pe durata acestei\n" +" comenzi. Numele valabile pentru hărți de taste sunt emacs,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" +" vi-command, și vi-insert.\n" +" -l Enumeră numele funcțiilor.\n" +" -P Enumeră numele și asocierile funcțiilor.\n" +" -p Enumeră funcțiile și asocierile într-o formă care poate fi\n" +" reutilizată ca intrare.\n" +" -S Enumeră secvențele de chei care invocă macrocomenzi și\n" +" valorile acestora\n" +" -s Enumeră secvențele de chei care invocă macrocomenzi și\n" +" valorile acestora într-o formă care poate fi reutilizată ca intrare.\n" +" -V Enumeră numele și valorile variabilelor\n" +" -v Enumeră numele și valorile variabilelor într-o formă care\n" +" poate fi reutilizată ca intrare.\n" +" -q nume-funcție Se utilizează pentru a afla care taste invocă funcția numită.\n" +" -u nume-funcție Dezasociază toate tastele care sunt asociate cu funcția numită.\n" +" -r sec-taste Elimină asocierea pentru sec-taste numită.\n" +" -f nume-fișier Citește asocierile de taste din fișierul al cărui nume a fost dat.\n" +" -x sec-taste:comandă-shell\tDetermină executarea comandă-shell când este\n" +" \t\t\t\tintrodusă sec-taste.\n" +" -X Enumeră secvențele de taste asociate cu -x și comenzile asociate într-o\n" +" formă care poate fi reutilizată ca intrare.\n" +" \n" +" Starea de ieșire:\n" +" «bind» returnează 0, cu excepția cazului în care este dată o opțiune nerecunoscută, sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help break», din «bash»; +# «bash -c "help break"», din «bash», sau dintr-un +# shell, diferit de «bash». #: builtins.c:330 msgid "" "Exit for, while, or until loops.\n" @@ -2724,7 +2866,20 @@ msgid "" " Exit Status:\n" " The exit status is 0 unless N is not greater than or equal to 1." msgstr "" +"Termină buclele for, while, sau until.\n" +" \n" +" Termină o buclă FOR, WHILE sau UNTIL. Dacă se specifică N, termină\n" +" numărul de bucle specificat.\n" +" \n" +" Starea de ieșire:\n" +" Starea de ieșire este 0, cu excepția cazului în care N nu este mai mare sau egal cu 1." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help continue», din «bash»; +# «bash -c "help continue"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:342 msgid "" "Resume for, while, or until loops.\n" @@ -2735,7 +2890,20 @@ msgid "" " Exit Status:\n" " The exit status is 0 unless N is not greater than or equal to 1." msgstr "" +"Reia buclele for, while, sau until.\n" +" \n" +" Reia următoarea iterație a buclei curente FOR, WHILE sau UNTIL.\n" +" Dacă se specifică N, reia bucla și continuă pentru N niveluri în continuare.\n" +" \n" +" Starea de ieșire:\n" +" Starea de ieșire este 0, cu excepția cazului în care N nu este mai mare sau egal cu 1." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help builtin», din «bash»; +# «bash -c "help builtin"», din «bash», sau dintr-un +# shell, diferit de «bash». #: builtins.c:354 msgid "" "Execute shell builtins.\n" @@ -2748,7 +2916,22 @@ msgid "" " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" " not a shell builtin." msgstr "" +"Execută comenzile interne de shell.\n" +" \n" +" Execută SHELL-BUILTIN cu argumentele ARG fără a efectua căutarea comenzilor.\n" +" Acest lucru este util atunci când doriți să reimplementați o comandă internă de shell\n" +" ca o funcție shell, dar trebuie să executați comanda internă în cadrul funcției.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea de ieșire a lui SHELL-BUILTIN sau false dacă SHELL-BUILTIN nu\n" +" este o comandă internă de shell." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help caller», din «bash»; +# «bash -c "help caller"», din «bash», sau dintr-un +# shell, diferit de «bash». #: builtins.c:369 msgid "" "Return the context of the current subroutine call.\n" @@ -2764,7 +2947,25 @@ msgid "" " Returns 0 unless the shell is not executing a shell function or EXPR\n" " is invalid." msgstr "" +"Returnează contextul apelului subrutinei curente.\n" +" \n" +" Fără EXPR, returnează „$line $filename”. Cu EXPR, returnează\n" +" „$line $subroutine $filename”; aceste informații suplimentare pot fi\n" +" utilizate pentru a furniza o urmărire a stivei.\n" +" \n" +" Valoarea EXPR indică câte cadre de apel trebuie să se întoarcă înaintea\n" +" celui curent; cadrul superior este cadrul 0.\n" +" \n" +" Starea de ieșire:\n" +" Returnează 0, cu excepția cazului în care shell-ul nu execută o funcție shell\n" +" sau EXPR nu este validă." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help cd», din «bash»; +# «bash -c "help cd"», din «bash», sau dintr-un +# shell, diferit de «bash». #: builtins.c:387 msgid "" "Change the shell working directory.\n" @@ -2801,7 +3002,46 @@ msgid "" " Returns 0 if the directory is changed, and if $PWD is set successfully when\n" " -P is used; non-zero otherwise." msgstr "" +"Schimbă directorul de lucru al shell-ului.\n" +" \n" +" Schimbă directorul actual cu DIR. DIR implicit este valoarea variabilei de \n" +" shell HOME.\n" +" \n" +" Variabila CDPATH definește calea de căutare pentru directorul care conține\n" +" DIR. Numele alternative ale directoarelor din CDPATH sunt separate prin\n" +" două puncte (:). Numele unui director nul este același cu directorul curent.\n" +" Dacă DIR începe cu o bară oblică (/), atunci CDPATH nu este utilizat.\n" +" \n" +" Dacă directorul nu este găsit și opțiunea de shell „cdable_vars” este setată,\n" +" cuvântul se presupune a fi un nume de variabilă. Dacă acea variabilă are o\n" +" valoare, valoarea ei este utilizată pentru DIR.\n" +" \n" +" Opțiuni:\n" +" -L\tforțează ca legăturile simbolice să fie urmate: rezolvă \n" +" \t\tlegăturile simbolice din DIR după procesarea instanțelor de „..”\n" +" -P\tutilizează structura fizică a directorului fără a urma legăturile\n" +" \t\tsimbolice: rezolvă legăturile simbolice din DIR înainte de a\n" +" \t\tprocesa instanțe de „..”\n" +" -e\tdacă este furnizată opțiunea „-P” și directorul de lucru curent\n" +" \t\tnu poate fi determinat cu succes, iese cu o stare diferită de\n" +" \t\tzero\n" +" -@\tpe sistemele care acceptă acest lucru, prezintă un fișier cu\n" +" \t\tatribute extinse, ca un director care conține atributele fișierului\n" +" \n" +" Modul implicit este să urmeze legături simbolice, ca și cum ar fi fost specificat „-L”.\n" +" „..” este procesat prin eliminarea componentei de cale imediat anterioară până\n" +" la o bară oblică sau la începutul DIR.\n" +" \n" +" Starea de ieșire:\n" +" Returnează 0 dacă directorul este schimbat și dacă $PWD este stabilit cu succes atunci\n" +" când este utilizat „-P”; diferit de zero, în caz contrar." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help pwd», din «bash»; +# «bash -c "help pwd"», din «bash», sau dintr-un +# shell, diferit de «bash». #: builtins.c:425 msgid "" "Print the name of the current working directory.\n" @@ -2817,10 +3057,26 @@ msgid "" " Returns 0 unless an invalid option is given or the current directory\n" " cannot be read." msgstr "" +"Imprimă numele directorului de lucru curent.\n" +" \n" +" Opțiuni:\n" +" -L\timprimă valoarea lui $PWD dacă aceasta numește directorul de\n" +" \t\tlucru curent\n" +" -P\timprimă directorul fizic, fără nicio legătură simbolică\n" +" \n" +" În mod implicit, „pwd” se comportă ca și cum „-L” ar fi fost specificat.\n" +" \n" +" Starea de ieșire:\n" +" Returnează 0, cu excepția cazului în care este dată o opțiune nevalidă\n" +" sau directorul curent nu poate fi citit." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help :», din «bash»; +# «bash -c "help :"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:442 -#, fuzzy -#| msgid "No effect; the command does nothing. A zero exit code is returned." msgid "" "Null command.\n" " \n" @@ -2828,8 +3084,20 @@ msgid "" " \n" " Exit Status:\n" " Always succeeds." -msgstr "Nici un efect, comanda nu face nimic. Un cod de ieșire zero este returnat." +msgstr "" +"Comandă nulă.\n" +" \n" +" Fără efect; comanda nu face nimic.\n" +" \n" +" Starea de ieșire:\n" +" Întotdeauna reușește(0)." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help true», din «bash»; +# «bash -c "help true"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:453 msgid "" "Return a successful result.\n" @@ -2837,7 +3105,17 @@ msgid "" " Exit Status:\n" " Always succeeds." msgstr "" +"Returnează un rezultat de succes(0).\n" +" \n" +" Starea de ieșire:\n" +" Întotdeauna reușește(0)." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help false», din «bash»; +# «bash -c "help false"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:462 msgid "" "Return an unsuccessful result.\n" @@ -2845,7 +3123,17 @@ msgid "" " Exit Status:\n" " Always fails." msgstr "" +"Returnează un rezultat nereușit(≠0).\n" +" \n" +" Starea de ieșire:\n" +" Întotdeauna eșuează(≠0)." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help command», din «bash»; +# «bash -c "help command"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:471 msgid "" "Execute a simple command or display information about commands.\n" @@ -2863,7 +3151,38 @@ msgid "" " Exit Status:\n" " Returns exit status of COMMAND, or failure if COMMAND is not found." msgstr "" +"Execută o comandă simplă sau afișează informații despre comenzi.\n" +" \n" +" Rulează COMANDA cu ARGumente care suprimă căutarea funcției shell sau afișează\n" +" informații despre COMENZILE specificate. Se poate utiliza pentru a invoca comenzi\n" +" de pe disc atunci când există o funcție cu același nume.\n" +" \n" +" Opțiuni:\n" +" -p utilizează o valoare implicită pentru PATH ce garantează că se\n" +" vor găsi toate utilitățile standard\n" +" -v imprimă o descriere a COMENZII, similară cu cea a comenzii\n" +" interne «type».\n" +" -V imprimă o descriere mai detaliată pentru fiecare COMANDĂ\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea de ieșire a COMENZII sau eșuează dacă COMANDA nu este găsită." +# R-GC, scrie: +# am tradus: +# „-I if ... with the same name at a previous scope”, ca: +# „-I dacă ... cu același nume dintr-un scop anterior” +# *** +# Întrebare: +# dacă se traduce, ca: +# „-I dacă ... cu același nume dintr-o sferă de aplicare anterioară”, +# ar fi o traducere mai bună? +# Opinii/Idei? +# ================================== +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help declare», din «bash»; +# «bash -c "help declare"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:490 msgid "" "Set variable values and attributes.\n" @@ -2904,14 +3223,66 @@ msgid "" " Returns success unless an invalid option is supplied or a variable\n" " assignment error occurs." msgstr "" +"Stabilește valorile și atributele variabilelor.\n" +" \n" +" Declară variabilele și-le atribuie atribute. Dacă nu sunt date NUME,\n" +" afișează atributele și valorile tuturor variabilelor.\n" +" \n" +" Opțiuni:\n" +" -f\trestricționează acțiunea sau afișarea, la numele și definițiile funcțiilor\n" +" -F\trestricționează afișarea numai la numele funcțiilor (plus numărul de\n" +" \t\tlinie și fișierul sursă, la depanare)\n" +" -g\tcreează variabile globale atunci când sunt utilizate într-o funcție shell;\n" +" \t\taltfel sunt ignorate\n" +" -I\tdacă se creează o variabilă locală, moștenește atributele și valoarea\n" +" \t\tunei variabile cu același nume dintr-un scop anterior\n" +" -p\tafișează atributele și valoarea fiecărui NUME\n" +" \n" +" Opțiuni care stabilesc atributele:\n" +" -a\tstabilește NUME ca matrice indexată (dacă este acceptat)\n" +" -A\tstabilește NUME ca matrice asociativă (dacă este acceptat)\n" +" -i\tstabilește ca NUME să aibă atributul „integer”\n" +" -l\tpentru a converti valoarea fiecărui NUME în minuscule, la atribuire\n" +" -n\tface din NUME o referință la variabila numită după valoarea acesteia\n" +" -r\tcreează NUME ca numai-citire\n" +" -t\tstabilește ca NUME să aibă atributul „trace”\n" +" -u\tpentru a converti valoarea fiecărui NUME în majuscule, la atribuire\n" +" -x\tpentru a exporta NUME\n" +" \n" +" Utilizarea a „+” în loc de „-”, dezactivează atributul dat.\n" +" \n" +" Variabilele cu atributul întreg au o evaluare aritmetică (vezi comanda\n" +" «let») efectuată atunci când variabilei i se atribuie o valoare.\n" +" \n" +" Când este folosită într-o funcție, «declare» face ca NUME să fie local, ca\n" +" și în cazul comenzii «local». Opțiunea „-g” suprimă acest comportament.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este furnizată o opțiune\n" +" nevalidă sau apare o eroare de atribuire a variabilelor." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help typeset», din «bash»; +# «bash -c "help typeset"», din «bash», sau dintr-un +# shell, diferit de «bash». #: builtins.c:532 msgid "" "Set variable values and attributes.\n" " \n" " A synonym for `declare'. See `help declare'." msgstr "" +"Stabilește valorile și atributele variabilelor.\n" +" \n" +" Un sinonim pentru „declare”. A se vedea „help declare”." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help local», din «bash»; +# «bash -c "help local"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:540 msgid "" "Define local variables.\n" @@ -2926,7 +3297,26 @@ msgid "" " Returns success unless an invalid option is supplied, a variable\n" " assignment error occurs, or the shell is not executing a function." msgstr "" +"Definește variabilele locale.\n" +" \n" +" Creează o variabilă locală numită NUME și îi dă această VALOARE.\n" +" OPȚIUNE poate fi orice opțiune acceptată de «declare».\n" +" \n" +" Variabilele locale pot fi utilizate numai în cadrul unei funcții; sunt\n" +" vizibile numai pentru funcția în care sunt definite și pentru copiii\n" +" acesteia.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes cu excepția cazului în care este furnizată o opțiune\n" +" nevalidă, apare o eroare de atribuire a variabilei sau shell-ul nu execută\n" +" o funcție." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help echo», din «bash»; +# «bash -c "help echo"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:557 msgid "" "Write arguments to the standard output.\n" @@ -2963,6 +3353,39 @@ msgid "" " Exit Status:\n" " Returns success unless a write error occurs." msgstr "" +"Scrie argumente la ieșirea standard.\n" +" \n" +" Afișează ARGumentele, separate printr-un singur caracter de spațiu și urmate\n" +" de o nouă linie, în ieșirea standard.\n" +" \n" +" Opțiuni:\n" +" -n\tnu adaugă o nouă linie\n" +" -e\tactivează interpretarea următoarelor eludări de bară oblică inversă\n" +" -E\tsuprimă în mod explicit interpretarea eludărilor de bară oblică inversă\n" +" \n" +" «echo» interpretează următoarele caractere de eludare de bară oblică inversă:\n" +" \a\talertă (clopoțel)\n" +" \\b\tmută cursorul înapoi cu unul sau mai multe spații\n" +" \\c\tsuprimă ieșirea ulterioară\n" +" \\e\tcaracter de eludare\n" +" \\E\tcaracter de eludare\n" +" \\f\talimentare cu „hîrtie”\n" +" \\n\tlinie nouă\n" +" \\r\treturul de caret↵\n" +" \\t\ttabulator orizontal\n" +" \\v\ttabulator vertical\n" +" \\\\\tbară oblică inversă\n" +" \\0nnn\tcaracterul al cărui cod ASCII este NNN (octal). NNN poate fi\n" +" \t\tde la 0 la 3 digiți octali\n" +" \\xHH\tcaracterul de opt biți a cărui valoare este HH (hexazecimal). HH\n" +" \t\tpoate fi unu sau doi digiți hexazecimali\n" +" \\uHHHH\tcaracterul Unicode a cărui valoare este valoarea hexazecimală HHHH.\n" +" \t\tHHHH poate fi de la unu până la patru digiți hexazecimali.\n" +" \\UHHHHHHHH caracterul Unicode a cărui valoare este valoarea hexazecimală\n" +" \t\tHHHHHHHH. HHHHHHHH poate fi de la unu până la opt digiți hexazecimali.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes cu excepția cazului în care apare o eroare de scriere." #: builtins.c:597 msgid "" @@ -2976,7 +3399,22 @@ msgid "" " Exit Status:\n" " Returns success unless a write error occurs." msgstr "" +"Scrie argumente la ieșirea standard.\n" +" \n" +" Afișează ARGumentele la ieșirea standard urmate de o linie nouă.\n" +" \n" +" Opțiuni:\n" +" -n\tnu adaugă o nouă linie\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes cu excepția cazului în care apare o eroare de scriere." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help enable», din «bash»; +# «bash -c "help enable"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:612 msgid "" "Enable and disable shell builtins.\n" @@ -3003,7 +3441,37 @@ msgid "" " Exit Status:\n" " Returns success unless NAME is not a shell builtin or an error occurs." msgstr "" +"Activează și dezactivează comenzile interne ale shell-ului.\n" +" \n" +" Activează și dezactivează comenzile interne ale shell-ului. Dezactivarea\n" +" vă permite să executați o comandă de pe disc care are același nume ca\n" +" și comanda internă a shell-ului, fără a utiliza calea completă.\n" +" \n" +" Opțiuni:\n" +" -a\tafișează lista comenzilor interne indicând dacă sunt activate sau nu\n" +" -n\tdezactivează fiecare NUME sau afișează o listă de comenzi interne\n" +" \t\tdezactivate\n" +" -p\tafișează lista comenzilor interne într-un format reutilizabil\n" +" -s\tafișează numai numele comenzilor interne „speciale” Posix\n" +" \n" +" Opțiuni care controlează încărcarea dinamică:\n" +" -f\tÎncarcă comanda internă NUME de la obiectul partajat NUME_FIȘIER\n" +" -d\tElimină o comandă internă încărcată cu -f\n" +" \n" +" Fără opțiuni, fiecare NUME este activat.\n" +" \n" +" Pentru a utiliza comanda «test» găsită în $PATH în loc de comanda internă\n" +" de shell, tastați «enable -n test».\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care NUME nu este o comandă shell internă sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help eval», din «bash»; +# «bash -c "help eval"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:640 msgid "" "Execute arguments as a shell command.\n" @@ -3014,7 +3482,20 @@ msgid "" " Exit Status:\n" " Returns exit status of command or success if command is null." msgstr "" +"Execută argumente ca o comandă de shell.\n" +" \n" +" Combină ARGumentele într-un singur șir, folosește rezultatul ca intrare în\n" +" shell și execută comenzile rezultate.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea de ieșire a comenzii, sau succes dacă comanda este nulă." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help getopts», din «bash»; +# «bash -c "help getopts"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:652 msgid "" "Parse option arguments.\n" @@ -3055,7 +3536,50 @@ msgid "" " Returns success if an option is found; fails if the end of options is\n" " encountered or an error occurs." msgstr "" +"Analizează argumentele opțiunii.\n" +" \n" +" «getopts» este folosit de procedurile shell pentru a analiza parametrii\n" +" poziționali ca opțiuni.\n" +" \n" +" ȘIR_OPȚIUNI conține literele de opțiune care trebuie recunoscute; dacă\n" +" o literă este urmată de două puncte, se așteaptă ca opțiunea să aibă un\n" +" argument, care ar trebui să fie separat de aceasta prin spațiu alb.\n" +" \n" +" De fiecare dată când este invocată, «getopts» va plasa următoarea opțiune\n" +" în variabila shell $nume, inițializând nume dacă nu există, iar indexul\n" +" următorului argument va fi procesat în variabila shell OPTIND. OPTIND este\n" +" inițializată la 1 de fiecare dată când shell-ul sau un script shell este\n" +" invocat. Când o opțiune necesită un argument, «getopts» plasează acel\n" +" argument în variabila shell OPTARG.\n" +" \n" +" «getopts» raportează erorile într-unul dintre următoarele două moduri. Dacă\n" +" primul caracter al lui ȘIR_OPȚIUNI este două puncte, «getopts» utilizează \n" +" raportarea silențioasă a erorilor. În acest mod, nu este afișat niciun mesaj\n" +" de eroare. Dacă se găsește o opțiune nevalidă, «getopts» plasează caracterul\n" +" de opțiune găsit în OPTARG. Dacă nu este găsit un argument necesar, «getopts»\n" +" plasează un „:” în NUME și pune în OPTARG caracterul de opțiune găsit. Dacă\n" +" «getopts» nu este în modul silențios și se găsește o opțiune nevalidă, «getopts»\n" +" plasează „?” în NUME și dezactivează OPTARG. Dacă nu este găsit un argument\n" +" necesar, un „?” este plasat în NUME, OPTARG este dezactivată și este afișat un\n" +" mesaj de diagnosticare.\n" +" \n" +" Dacă variabila shell OPTERR are valoarea 0, «getopts» dezactivează afișarea\n" +" mesajelor de eroare, chiar dacă primul caracter al lui ȘIR_OPȚIUNI nu este \n" +" două puncte „:”. OPTERR are valoarea 1 implicit.\n" +" \n" +" «getopts» analizează în mod normal parametrii de poziție, dar dacă argumentele\n" +" sunt furnizate ca valori ARG, acestea sunt analizate în schimb.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes dacă este găsită o opțiune; eșuează dacă se întâlnește\n" +" sfârșitul opțiunilor sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help exec», din «bash»; +# «bash -c "help exec"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:694 msgid "" "Replace the shell with the given command.\n" @@ -3075,7 +3599,30 @@ msgid "" " Exit Status:\n" " Returns success unless COMMAND is not found or a redirection error occurs." msgstr "" +"Înlocuiește shell-ul cu comanda dată.\n" +" \n" +" Execută COMANDA, înlocuind acest shell cu programul specificat.\n" +" ARGUMENTELE devin argumente pentru COMANDA. Dacă COMANDA nu este\n" +" specificată, orice redirecționare va avea efect în shell-ul curent.\n" +" \n" +" Opțiuni:\n" +" -a nume\tpasează NUME ca argument zero la COMANDA\n" +" -c\texecută COMANDA într-un mediu gol\n" +" -l\tplasează o liniuță în argumentul zero la COMANDA\n" +" \n" +" Dacă comanda nu poate fi executată, un shell non-interactiv se va închide, \n" +" cu excepția cazului în care opțiunea shell „execfail” este setată.\n" +" \n" +" Starea de ieșire\n" +" Returnează succes, cu excepția cazului în care COMANDA nu este găsită sau\n" +" apare o eroare de redirecționare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help exit», din «bash»; +# «bash -c "help exit"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:715 msgid "" "Exit the shell.\n" @@ -3083,11 +3630,17 @@ msgid "" " Exits the shell with a status of N. If N is omitted, the exit status\n" " is that of the last command executed." msgstr "" -"Ieste din shell.\n" +"Iese din shell.\n" " \n" -" Iese din shell cu starea lui N. Dacă N este omis, starea de ieșire\n" -" este starea ultimei comenzi executate." +" Iese din shell cu starea lui N. Dacă N este omis, starea de ieșire\n" +" este starea ultimei comenzi executate." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help logout», din «bash»; +# «bash -c "help logout"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:724 msgid "" "Exit a login shell.\n" @@ -3095,7 +3648,17 @@ msgid "" " Exits a login shell with exit status N. Returns an error if not executed\n" " in a login shell." msgstr "" +"Iese din shell-ul de autentificare.\n" +" \n" +" Iese din shell-ul de autentificare cu starea de ieșire N. Returnează o eroare\n" +" dacă nu este executată într-un shell de autentificare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help fc», din «bash»; +# «bash -c "help fc"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:734 msgid "" "Display or execute commands from the history list.\n" @@ -3122,7 +3685,38 @@ msgid "" " Exit Status:\n" " Returns success or status of executed command; non-zero if an error occurs." msgstr "" +"Afișează sau execută comenzi din lista istoricului.\n" +" \n" +" «fc» se utilizează pentru a lista sau edita și re-executa comenzi din lista\n" +" istoricului.\n" +" PRIMA și ULTIMA pot fi numere care specifică intervalul sau PRIMA poate fi\n" +" un șir, ceea ce înseamnă cea mai recentă comandă care începe cu acel șir.\n" +" \n" +" Opțiuni:\n" +" -e NUME_EDIT\n" +" \t\tselectează ce editor să utilizat. Implicit este FCEDIT, apoi \n" +" \t\tEDITOR, apoi vi\n" +" -l \tlistează linii în loc să editeze\n" +" -n\tomite numerele de rând la listare\n" +" -r\tinversează ordinea liniilor (cele mai noi sunt listate primele)\n" +" \n" +" Cu formatul «fc -s [tipar=înloc ...] [comanda]», COMANDA este re-executată\n" +" după ce este efectuată înlocuirea VECHE=NOUĂ.\n" +" \n" +" Un alias util de folosit cu aceasta, este «r='fc -s'», astfel încât tastând \n" +" «r cc» se execută ultima comandă ce începe cu „cc” și tastând «r» se execută\n" +" din nou ultima comandă folosită.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succesul sau starea comenzii executate; diferit de zero dacă\n" +" apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help fg», din «bash»; +# «bash -c "help fg"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:764 msgid "" "Move job to the foreground.\n" @@ -3134,7 +3728,21 @@ msgid "" " Exit Status:\n" " Status of command placed in foreground, or failure if an error occurs." msgstr "" +"Mută procesul în primul plan.\n" +" \n" +" Plasează procesul identificat de ID_PROC în primul plan, făcându-l procesul\n" +" curent. Dacă ID_PROC nu este prezent, este utilizată noțiunea shell-ului\n" +" despre procesul curent\n" +" \n" +" Starea de ieșire:\n" +" Starea comenzii plasată în prim-plan sau eșec dacă apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help bg», din «bash»; +# «bash -c "help bg"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:779 msgid "" "Move jobs to the background.\n" @@ -3146,7 +3754,22 @@ msgid "" " Exit Status:\n" " Returns success unless job control is not enabled or an error occurs." msgstr "" +"Mută procesul în fundal.\n" +" \n" +" Plasează procesele identificate de fiecare ID_PROC în fundal, ca și cum ar fi\n" +" fost pornite cu „&”. Dacă ID_PROC nu este prezent, se folosește noțiunea\n" +" shell-ului despre procesul curent.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care controlul procesului nu este\n" +" activat sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help hash», din «bash»; +# «bash -c "help hash"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:793 msgid "" "Remember or display program locations.\n" @@ -3169,7 +3792,33 @@ msgid "" " Exit Status:\n" " Returns success unless NAME is not found or an invalid option is given." msgstr "" +"Memorizează sau afișează locațiile programelor.\n" +" \n" +" Determină și memorizează calea completă a fiecărei comenzi NUME. Dacă nu\n" +" sunt date argumente, sunt afișate informații despre comenzile memorate.\n" +" \n" +" Opțiuni:\n" +" -d\tuită locația reținută pentru fiecare NUME\n" +" -l\tafișează într-un format care poate fi reutilizat ca intrare\n" +" -p calenume\n" +" \tutilizează CALENUME drept calea completă a NUME\n" +" -r\tuită toate locațiile memorizate\n" +" -t\tafișează locația reținută a fiecărui NUME, precedând fiecare\n" +" \t\tlocație cu NUMELE corespunzător dacă sunt date mai multe NUME\n" +" Argumente:\n" +" NUME\tFiecare NUME este căutat în $PATH și adăugat la lista comenzilor\n" +" \t\tmemorate.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care NUME nu este găsit sau\n" +" este dată o opțiune nevalidă." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help help», din «bash»; +# «bash -c "help help"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:818 msgid "" "Display information about builtin commands.\n" @@ -3190,7 +3839,31 @@ msgid "" " Exit Status:\n" " Returns success unless PATTERN is not found or an invalid option is given." msgstr "" +"Afișează informații despre comenzile interne.\n" +" \n" +" Afișează scurte rezumate ale comenzilor interne. Dacă TIPAR, este\n" +" specificat, oferă ajutor detaliat pentru toate comenzile care se potrivesc\n" +" cu TIPARul, în caz contrar, este afișată lista temelor de ajutor.\n" +" \n" +" Opțiuni:\n" +" -d\tafișează o scurtă descriere pentru fiecare temă\n" +" -m\tafișează utilizarea în format pseudo-pagină de manual\n" +" -s\tafișează doar un scurt rezumat de utilizare pentru\n" +" \t\tfiecare temă care se potrivește cu TIPAR\n" +" \n" +" Argumente:\n" +" TIPAR \tTIPAR care specifică o temă de ajutor\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care TIPAR nu este găsit sau este\n" +" dată o opțiune nevalidă." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help history», din «bash»; +# «bash -c "help history"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:842 msgid "" "Display or manipulate the history list.\n" @@ -3224,7 +3897,47 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." msgstr "" +"Afișează sau manipulează lista istoricului.\n" +" \n" +" Afișează lista istoricului cu numere de linie, prefixând fiecare intrare\n" +" modificată cu un „*”. Un argument de N, listează numai ultimele N intrări.\n" +" \n" +" Opțiuni:\n" +" -c\tșterge lista istoricului ștergând toate intrările\n" +" -d poziție\n" +" \t\tșterge intrarea din istoric de la poziția POZIȚIE. Pozițiile\n" +" \t\tnegative se numără înapoi de la sfârșitul listei istoricului\n" +" \n" +" -a\tadaugă linii istorice din această sesiune la fișierul istoricului\n" +" -n\tcitește toate liniile istorice care nu sunt deja citite din\n" +" \t\tfișierul istoricului și le adaugă la lista istoricului\n" +" -r\tcitește fișierul istoricului și îi adaugă conținutul la lista\n" +" \t\tistoricului\n" +" -w\tscrie istoricul curent în fișierul istoricului\n" +" \n" +" -p\tefectuează extinderea istoricului pentru fiecare ARG și afișează\n" +" \t\trezultatul fără a-l stoca în lista istoricului\n" +" -s\tadaugă ARGumentele la lista istoricului ca o singură intrare\n" +" \n" +" Dacă NUME_FIȘIER este dat, acesta este utilizat ca fișierul istoricului.\n" +" Altfel, dacă HISTFILE are o valoare, aceasta este folosită, dacă nu are,\n" +" se folosește ~/.bash_history.\n" +" \n" +" Dacă variabila HISTTIMEFORMAT este definită și nu este nulă, valoarea ei este\n" +" utilizată ca șir de format pentru strftime(3) pentru a imprima marcajul de\n" +" timp asociat cu fiecare intrare din istoric afișată. În caz contrar, nu se\n" +" imprimă marcajele de timp.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este dată o opțiune nevalidă\n" +" sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help jobs», din «bash»; +# «bash -c "help jobs"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:879 msgid "" "Display status of jobs.\n" @@ -3248,7 +3961,33 @@ msgid "" " Returns success unless an invalid option is given or an error occurs.\n" " If -x is used, returns the exit status of COMMAND." msgstr "" +"Afișează starea proceselor.\n" +" \n" +" Listează procesele active. ID_PROC, restrânge afișarea la acel proces.\n" +" Fără opțiuni, se afișează starea tuturor proceselor active.\n" +" \n" +" Opțiuni:\n" +" -l\tlistează ID-urile proceselor, pe lângă informațiile normale\n" +" -n\tlistează numai procesele care s-au schimbat de la ultima notificare\n" +" -p\tlistează numai ID-urile proceselor\n" +" -r\trestrânge afișarea, la procesele în execuție\n" +" -s\trestrânge afișarea, la procesele oprite\n" +" \n" +" Dacă este furnizată -x, COMANDA este rulată după ce toate specificațiile\n" +" procesului care apar în ARGumente au fost înlocuite cu ID-ul de proces al\n" +" liderului grupului de procese, al procesului respectiv.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este dată o opțiune nevalidă\n" +" sau apare o eroare.\n" +" Dacă se utilizează „-x”, returnează starea de ieșire a COMENZII." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help disown», din «bash»; +# «bash -c "help disown"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:906 msgid "" "Remove jobs from current shell.\n" @@ -3265,7 +4004,27 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option or JOBSPEC is given." msgstr "" +"Elimină procese din shell-ul actual.\n" +" \n" +" Elimină fiecare argument ID_PROC din tabelul de procese active. Fără\n" +" niciun ID_PROC, shell-ul folosește noțiunea sa de proces curent.\n" +" \n" +" Opțiuni:\n" +" -a\telimină toate procesele dacă ID_PROC nu este furnizat\n" +" -h\tmarchează fiecare ID_PROC astfel încât SIGHUP să nu fie trimis\n" +" \t\tla proces dacă shell-ul primește un semnal SIGHUP\n" +" -r\telimină numai procesele care rulează\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este dată o opțiune nevalidă\n" +" sau ID_PROC." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help kill», din «bash»; +# «bash -c "help kill"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:925 msgid "" "Send a signal to a job.\n" @@ -3288,7 +4047,34 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." msgstr "" +"Trimite un semnal către un proces.\n" +" \n" +" Trimite proceselor identificate prin PID sau JOBSPEC semnalul numit de\n" +" SIGSPEC sau de SIGNUM. Dacă nici SIGSPEC, nici SIGNUM nu sunt\n" +" prezente, atunci se presupune SIGTERM.\n" +" \n" +" Opțiuni:\n" +" -s sig\tSIG este un nume de semnal\n" +" -n sig\tSIG este un număr de semnal\n" +" -l\tlistează numele semnalelor; dacă după „-l” urmează argumente, se\n" +" \t\tpresupune că sunt numere de semnal pentru care ar trebui listate\n" +" \t\tnume\n" +" -L\tsinonim cu -l\n" +" \n" +" Kill este o comandă internă de shell din două motive: permite utilizarea\n" +" ID-urilor de job în locul ID-urilor de proces și permite omorârea proceselor\n" +" dacă este atinsă limita de procese pe care le puteți crea.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este dată o opțiune nevalidă\n" +" sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help let», din «bash»; +# «bash -c "help let"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:949 msgid "" "Evaluate arithmetic expressions.\n" @@ -3332,7 +4118,54 @@ msgid "" " Exit Status:\n" " If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise." msgstr "" +"Evaluează expresii aritmetice.\n" +" \n" +" Evaluează fiecare ARGument ca o expresie aritmetică. Evaluarea se face\n" +" în numere întregi cu lățime fixă, fără verificarea depășirii, dar împărțirea\n" +" la 0 este detectată și semnalată ca o eroare. Următoarea listă de operatori\n" +" este grupată în grupuri de operatori cu prioritate egală. Nivelurile sunt\n" +" listate în ordinea descrescătoare a priorității.\n" +" \n" +" \tid++, id--\tpost-incrementare, post-decrementare a variabilei\n" +" \t++id, --id\tpre-incrementare, pre-decrementare a variabilei\n" +" \t-, +\t\tminus unar, plus unar\n" +" \t!, ~\t\tnegații logice și binare\n" +" \t**\t\texponențial\n" +" \t*, /, %\t\tînmulțire, împărțire, rest\n" +" \t+, -\t\tadunare, scădere\n" +" \t<<, >>\t\tdeplasare binară la stânga și la dreapta\n" +" \t<=, >=, <, >\tcomparare\n" +" \t==, !=\t\tegalitate, inegalitate\n" +" \t&\t\tși (AND) binar\n" +" \t^\t\tsau exclusiv (XOR) binar\n" +" \t|\t\tsau (OR) binar\n" +" \t&&\t\tlși (AND) logic\n" +" \t||\t\tsau (OR) logic\n" +" \texpr ? expr : expr\n" +" \t\t\toperator condițional\n" +" \t=, *=, /=, %=,\n" +" \t+=, -=, <<=, >>=,\n" +" \t&=, ^=, |=\tasignare\n" +" \n" +" Variabilele shell sunt permise ca operanzi. Numele variabilei este\n" +" înlocuit cu valoarea acesteia (constrânsă la un număr întreg cu \n" +" lățime fixă) în cadrul unei expresii. Nu este necesar ca variabila să\n" +" aibă atributul întreg activat pentru a fi utilizată într-o expresie.\n" +" \n" +" Operatorii sunt evaluați în ordinea de prioritate. Subexpresiile din\n" +" paranteze sunt evaluate mai întâi și pot suprascrie regulile de\n" +" precedență de mai sus.\n" +" \n" +" Starea de ieșire:\n" +" Dacă ultimul ARGument este evaluat la 0, «let» returnează 1; în caz contrar,\n" +" «let» returnează 0." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help read», din «bash»; +# «bash -c "help read"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:994 msgid "" "Read a line from the standard input and split it into fields.\n" @@ -3378,7 +4211,58 @@ msgid "" " (in which case it's greater than 128), a variable assignment error occurs,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" +"Citește o linie din intrarea standard și o împarte în câmpuri.\n" +" \n" +" Citește o singură linie din intrarea standard sau din descriptorul de fișier\n" +" FD dacă este furnizată opțiunea -u. Linia este împărțită în câmpuri ca în\n" +" cazul împărțirii cuvintelor, iar primul cuvânt este atribuit primului NUME, \n" +" al doilea cuvânt celui de-al doilea NUME și așa mai departe, ultimul NUME\n" +" preluând lista cuvintelor rămase. Doar caracterele găsite în $IFS sunt\n" +" recunoscute ca delimitatori de cuvinte.\n" +" \n" +" Dacă nu sunt furnizate NUME, linia citită este stocată în variabila REPLY.\n" +" \n" +" Opțiuni:\n" +" -a matrice\n" +" \t\tatribuie cuvintele citite indicilor secvențiali ai variabilei\n" +" \t\tmatrice MATRICE, începând de la zero\n" +" -d delim\tcontinuă până când este citit primul caracter din DELIM, în loc\n" +" \t\tde linia nouă\n" +" -e\tutilizează Readline pentru a obține linia\n" +" -i text\tutilizează TEXT ca text inițial pentru Readline\n" +" -n ncarac\treturnează după citirea caracterelor NCARAC în loc să aștepte\n" +" \t\to nouă linie, dar respectă delimitatorul dacă sunt citite mai\n" +" \t\tpuțin de NCARAC caractere înainte de delimitator\n" +" -N ncarac\treturnează numai după citirea exactă a caracterelor NCARS, cu\n" +" \t\texcepția cazului în care se întâlnește sfârșitul fișierului sau \n" +" \t\tdacă timpul de citire expiră, eliminând orice delimitatori\n" +" -p prompt\tafișează șirul PROMPT fără un caracter de linie nouă la final,\n" +" \t\tînainte de a încerca să citească\n" +" -r\tnu permite barelor oblice inverse să eludeze niciun caracter\n" +" -s\tnu afișează ieșirea ce vine de la un terminal\n" +" -t timeout\n" +" \t\texpiră și returnează un cod de eroare dacă o linie completă de\n" +" \t\tintrare nu este citită în TIMEOUT secunde. Valoarea variabilei\n" +" \t\tTIMEOUT este timpul de expirare implicit. TIMEOUT poate fi un\n" +" \t\tnumăr fracțional. Dacă TIMEOUT este zero, citirea se termină\n" +" \t\timediat fără a încerca să citească date, și returnează un cod de\n" +" \t\tsucces numai dacă intrarea este disponibilă pe descriptorul de\n" +" \t\tfișier specificat. Starea de ieșire este mai mare de 128 dacă\n" +" \t\ttimpul de expirare este depășit\n" +" -u fd\tcitește din descriptorul de fișier FD în loc de intrarea standard\n" +" \n" +" Starea de ieșire:\n" +" Codul de returnare este zero, cu excepția cazului în care se întâlnește\n" +" sfârșitul fișierului, expirarea timpului de citire (caz în care este mai mare\n" +" de 128), apare o eroare de atribuire a variabilei sau este furnizat un\n" +" descriptor de fișier nevalid ca argument pentru opțiunea „-u”." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help return», din «bash»; +# «bash -c "help return"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1041 msgid "" "Return from a shell function.\n" @@ -3390,7 +4274,28 @@ msgid "" " Exit Status:\n" " Returns N, or failure if the shell is not executing a function or script." msgstr "" +"Returnează dintr-o funcție shell.\n" +" \n" +" Determină ieșirea unei funcții sau a unui script sursă cu valoarea de\n" +" returnare specificată de N. Dacă N este omis, starea de returnare\n" +" este cea a ultimei comenzi executate în funcție sau script.\n" +" \n" +" Starea de ieșire:\n" +" Returnează N sau eșec dacă shell-ul nu execută o funcție sau un script." +# R-GC, scrie: +# unele dintre definițiile acestui(lung) mesaj, +# sunt adaptări ale muncii altor echipe din TP. +# *** +# Mulțumesc, tuturor acestor echipe: es, fr, pt_BR, pt, it, nl, pl, uk; sper să nu fi uitat +# niciuna dintre cele ce mi-au folosit ca +# inspirație, în traducerea acestui mesaj. +# ================================= +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help set», din «bash»; +# «bash -c "help set"», din «bash», sau dintr-un +# shell, diferit de «bash». #: builtins.c:1054 msgid "" "Set or unset values of shell options and positional parameters.\n" @@ -3474,7 +4379,99 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given." msgstr "" +"Stabilește sau anulează valorile opțiunilor de shell și ale parametrilor\n" +"poziționali.\n" +" \n" +" Modifică valoarea atributelor shell și a parametrilor poziționali sau \n" +" afișează numele și valorile variabilelor shell.\n" +" \n" +" Opțiuni:\n" +" -a Marchează variabilele care sunt modificate sau create, pentru export.\n" +" -b Notifică imediat când o sarcină este finalizată.\n" +" -e Termină imediat dacă o comandă termină cu o stare diferită de zero.\n" +" -f Dezactivează folosirea metacaracterelor pentru completarea numelor\n" +" fișierelor (fără „globbing”).\n" +" -h Memorizează locația comenzilor pe măsură ce sunt căutate.\n" +" -k Toate argumentele de atribuire sunt plasate în mediul(environment)\n" +" unei comenzi, nu doar cele care preced numele comenzii.\n" +" -m Activează controlul sarcinii.\n" +" -n Citește comenzile, dar nu le execută.\n" +" -o nume-opțiune\n" +" Stabilește variabila corespunzătoare → nume-opțiune:\n" +" allexport la fel ca -a\n" +" braceexpand la fel ca -B\n" +" emacs utilizează o interfață de editare a liniilor în\n" +" stilul «emacs»\n" +" errexit la fel ca -e\n" +" errtrace la fel ca -E\n" +" functrace la fel ca -T\n" +" hashall la fel ca -h\n" +" histexpand la fel ca -H\n" +" history activează istoricul comenzilor\n" +" ignoreeof shell-ul nu va termina după citirea „EOF”\n" +" interactive-comments\n" +" permite comentariilor să apară în comenzile interactive\n" +" keyword la fel ca -k\n" +" monitor la fel ca -m\n" +" noclobber la fel ca -C\n" +" noexec la fel ca -n\n" +" noglob la fel ca -f\n" +" nolog acceptat în prezent, dar ignorat\n" +" notify la fel ca -b\n" +" nounset la fel ca -u\n" +" onecmd la fel ca -t\n" +" physical la fel ca -P\n" +" pipefail valoarea returnată a unei linii de conectare este\n" +" starea ultimei comenzi care a ieșit cu o stare diferită\n" +" de zero sau zero dacă nicio comandă nu a ieșit cu o\n" +" stare diferită de zero\n" +" posix modifică comportamentul lui «bash» în cazul în care\n" +" operația implicită diferă de standardul Posix, pentru\n" +" a se potrivi cu standardul Posix\n" +" privileged la fel ca -p\n" +" verbose la fel ca -v\n" +" vi utilizează o interfață de editare a liniilor în\n" +" stilul «vi»\n" +" xtrace la fel ca -x\n" +" -p Modul cu privilegii: Activat ori de câte ori ID-urile de utilizator\n" +" reale și efective nu se potrivesc. Dezactivează procesarea \n" +" fișierului $ENV și importul funcțiilor shell. Dezactivarea acestei\n" +" opțiuni face ca uid-ul și gid-ul efectiv să fie stabilite la uid-ul și\n" +" gid-ul real\n" +" -t Termină după citirea și executarea unei comenzi.\n" +" -u Tratează variabilele nedefinite ca pe o eroare la substituire.\n" +" -v Afișează liniile de intrare ale shell-ului pe măsură ce sunt citite.\n" +" -x Afișează comenzile și argumentele lor pe măsură ce sunt executate.\n" +" -B Shell-ul va efectua înlocuirea acoladelor (de exp.: a{b,c} → ab ac)\n" +" -C Dacă este specificată, nu permite ca fișierele obișnuite existente să\n" +" fie suprascrise prin redirecționarea ieșirii.\n" +" -E Dacă este specificată, capturarea ERR este moștenită de funcțiile shell.\n" +" -H Permite înlocuirea istoricului cu un „!”. Această opțiune este activată\n" +" în mod implicit atunci când shell-ul este interactiv.\n" +" -P Dacă este specificată, legăturile simbolice nu sunt urmate la executarea\n" +" comenzilor precum «cd» care schimbă directorul curent.\n" +" -T Dacă este specificată, capturile DEBUG și RETURN sunt moștenite de\n" +" funcțiile shell.\n" +" -- Atribuie toate argumentele rămase parametrilor de poziție.\n" +" Dacă nu există argumente rămase, parametrii de poziție sunt eliminați.\n" +" - Atribuie toate argumentele rămase parametrilor de poziție.\n" +" Opțiunile -x și -v sunt dezactivate.\n" +" \n" +" Utilizarea lui „+” în loc de „-”, face ca aceste opțiuni să fie dezactivate.\n" +" Opțiunile pot fi folosite și la invocarea shell-ului. Setul actual de \n" +" opțiuni poate fi găsit în $-. Restul de n ARG sunt parametri poziționali și\n" +" sunt alocați, în ordine, la $1, $2, .. $n. Dacă nu sunt date ARG, toate \n" +" variabilele shell sunt afișate.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes cu excepția cazului în care este dată o opțiune nevalidă." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help unset», din «bash»; +# «bash -c "help unset"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1139 msgid "" "Unset values and attributes of shell variables and functions.\n" @@ -3495,7 +4492,31 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given or a NAME is read-only." msgstr "" +"Anulează valorile și atributele variabilelor și funcțiilor shell.\n" +" \n" +" Pentru fiecare NUME, elimină variabila sau funcția corespunzătoare.\n" +" \n" +" Opțiuni:\n" +" -f\ttratează fiecare NUME ca pe o funcție shell\n" +" -v\ttratează fiecare NUME ca pe o variabilă shell\n" +" -n\ttratează fiecare NUME ca referință de nume și anulează variabila\n" +" \t\tîn sine, în loc de variabila la care face referire\n" +" \n" +" Fără opțiuni, „unset” încearcă mai întâi să anuleze o variabilă și, dacă\n" +" aceasta nu reușește, încearcă să anuleze o funcție.\n" +" \n" +" Unele variabile nu pot fi anulate; consultați, de asemenea, «readonly».\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este dată o opțiune nevalidă\n" +" sau un NUME este doar pentru citire." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help export», din «bash»; +# «bash -c "help export"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1161 msgid "" "Set export attribute for shell variables.\n" @@ -3513,7 +4534,29 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" +"Stabilește atributul de export pentru variabilele shell.\n" +" \n" +" Marchează fiecare NUME pentru export automat în mediul(environment)\n" +" comenzilor executate ulterior. Dacă este furnizată VALOAREa, atribuie\n" +" VALOAREa înainte de a exporta.\n" +" \n" +" Opțiuni:\n" +" -f\tse referă la funcțiile shell\n" +" -n\telimină proprietatea de export din fiecare NUME\n" +" -p\tafișează o listă cu toate variabilele și funcțiile exportate\n" +" \n" +" Un argument de „--” dezactivează procesarea ulterioară a opțiunilor.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este dată o opțiune nevalidă\n" +" sau NUME nu este valid." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help readonly», din «bash»; +# «bash -c "help readonly"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1180 msgid "" "Mark shell variables as unchangeable.\n" @@ -3534,7 +4577,31 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is given or NAME is invalid." msgstr "" +"Marchează variabilele shell ca neschimbabile.\n" +" \n" +" Marchează fiecare NUME ca fiind doar pentru citire; valorile acestor NUME\n" +" nu pot fi modificate prin atribuirea ulterioară. Dacă este furnizată VALOARE,\n" +" atribuie VALOARE înainte de a marca ca doar pentru citire.\n" +" \n" +" Opțiuni:\n" +" -a\tse referă la variabilele matrice indexate\n" +" -A\tse referă la variabile matrice asociative\n" +" -f\tse referă la funcțiile shell\n" +" -p\tafișează o listă cu toate variabilele sau funcțiile protejate\n" +" \t\tla scriere, în funcție de dacă este dată sau nu opțiunea „-f”\n" +" \n" +" Un argument de „--” dezactivează procesarea ulterioară a opțiunilor.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este dată o opțiune nevalidă\n" +" sau NUME nu este valid." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help shift», din «bash»; +# «bash -c "help shift"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1202 msgid "" "Shift positional parameters.\n" @@ -3545,7 +4612,21 @@ msgid "" " Exit Status:\n" " Returns success unless N is negative or greater than $#." msgstr "" +"Schimbă parametrii poziționali.\n" +" \n" +" Redenumește parametrii de poziție $N+1,$N+2 ... la $1,$2 ... Dacă N\n" +" nu este dat, se presupune că este 1.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care N este negativ sau mai\n" +" mare decât $#." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help source», din «bash»; +# «bash -c "help source"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1214 builtins.c:1229 msgid "" "Execute commands from a file in the current shell.\n" @@ -3559,7 +4640,23 @@ msgid "" " Returns the status of the last command executed in FILENAME; fails if\n" " FILENAME cannot be read." msgstr "" +"Execută comenzi dintr-un fișier în shell-ul curent.\n" +" \n" +" Citește și execută comenzi din NUME_FIȘIER în shell-ul curent. Intrările \n" +" din $PATH sunt utilizate pentru a găsi directorul care conține NUME_FIȘIER.\n" +" Dacă sunt furnizate ARGUMENTE, acestea devin parametrii de poziție atunci\n" +" când este executat NUME_FIȘIER.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimei comenzi executate în NUME_FIȘIER; eșuează dacă\n" +" NUME_FIȘIER nu poate fi citit." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help suspend», din «bash»; +# «bash -c "help suspend"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1245 msgid "" "Suspend shell execution.\n" @@ -3573,7 +4670,26 @@ msgid "" " Exit Status:\n" " Returns success unless job control is not enabled or an error occurs." msgstr "" +"Suspendă execuția shell-ului.\n" +" \n" +" Suspendă execuția acestui shell până când primește un semnal SIGCONT.\n" +" Cu excepția cazului în care sunt forțate, shell-urile de autentificare nu pot \n" +" fi suspendate.\n" +" \n" +" Opțiuni:\n" +" -f\tforțează suspendarea, chiar dacă shell-ul este un shell de\n" +" \tautentificare\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care controlul sarcinii nu este\n" +" activat sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help test», din «bash»; +# «bash -c "help test"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1261 msgid "" "Evaluate conditional expression.\n" @@ -3654,7 +4770,84 @@ msgid "" " Returns success if EXPR evaluates to true; fails if EXPR evaluates to\n" " false or an invalid argument is given." msgstr "" +"Evaluează expresia condițională.\n" +" \n" +" Termină cu starea 0 (adevărat) sau 1 (fals) în funcție de evaluarea EXPR.\n" +" Expresiile pot fi unare sau binare. Expresiile unare sunt adesea folosite\n" +" pentru a examina starea unui fișier. Există de-asemeni operatori de șir și\n" +" operatori de comparație numerică.\n" +" \n" +" Comportamentul testului depinde de numărul de argumente. Citiți pagina\n" +" de manual, «bash», pentru specificația completă.\n" +" \n" +" Operatori de fișiere:\n" +" \n" +" -a FIȘIER Adevărat dacă fișierul există.\n" +" -b FIȘIER Adevărat dacă fișierul este un dispozitiv de blocuri.\n" +" -c FIȘIER Adevărat dacă fișierul este un dispozitiv de caractere.\n" +" -d FIȘIER Adevărat dacă fișierul este un director.\n" +" -e FIȘIER Adevărat dacă fișierul există.\n" +" -f FIȘIER Adevărat dacă fișierul există și este un fișier normal.\n" +" -g FIȘIER Adevărat dacă fișierul are activat bitul „set-group-id”.\n" +" -h FIȘIER Adevărat dacă fișierul este o legătură simbolică.\n" +" -L FIȘIER Adevărat dacă fișierul este o legătură simbolică..\n" +" -k FIȘIER Adevărat dacă fișierul are activat bitul „sticky” (lipicios).\n" +" -p FIȘIER Adevărat dacă fișierul este o linie de conectare numită.\n" +" -r FIȘIER Adevărat dacă fișierul poate fi citit de dumneavoastră.\n" +" -s FIȘIER Adevărat dacă fișierul există și nu este gol.\n" +" -S FIȘIER Adevărat dacă fișierul este un soclu.\n" +" -t DF Adevărat dacă DF(descriptorul de fișier) este deschis pe un terminal.\n" +" -u FIȘIER Adevărat dacă fișierul are activat bitul „set-user-id”.\n" +" -w FIȘIER Adevărat dacă fișierul poate fi scris de dumneavoastră.\n" +" -x FIȘIER Adevărat dacă fișierul poate fi executat de dumneavoastră.\n" +" -O FIȘIER Adevărat dacă fișierul este deținut efectiv de dumneavoastră.\n" +" -G FIȘIER Adevărat dacă fișierul este deținut efectiv de grupul dumneavoastră.\n" +" -N FIȘIER Adevărat dacă fișierul a fost modificat de la ultima citire.\n" +" \n" +" FIȘI1 -nt FIȘI2 Adevărat dacă fișierul 1 este mai nou decât fișierul 2 (conform\n" +" datei modificării).\n" +" \n" +" FIȘI1 -ot FIȘI2 Adevărat dacă fișierul1 este mai vechi decât fișierul2.\n" +" \n" +" FIȘI1 -ef FIȘI2 Adevărat dacă fișierul1 este o legătură dură către fișierul2.\n" +" \n" +" Operatori de șir:\n" +" \n" +" -z ȘIR Adevărat dacă șirul este gol.\n" +" \n" +" -n ȘIR Adevărat dacă șirul nu este gol.\n" +" ȘIR Adevărat dacă șirul nu este gol.\n" +" \n" +" ȘIR1 = ȘIR2 Adevărat dacă șirurile sunt egale.\n" +" ȘIR1 != ȘIR2 Adevărat dacă șirurile nu sunt egale.\n" +" ȘIR1 < ȘIR2 Adevărat dacă ȘIR1 se ordonează lexicografic înainte de ȘIR2.\n" +" ȘIR1 > ȘIR2 Adevărat dacă ȘIR1 se ordonează lexicografic după ȘIR2.n\n" +" \n" +" Alți operatori:\n" +" \n" +" -o OPȚIUNE Adevărat dacă opțiunea shell OPȚIUNE este activată.\n" +" -v VAR Adevărat dacă este definită variabila shell VAR.\n" +" -R VAR Adevărat dacă variabila shell VAR este definită și este o referință\n" +" de nume.\n" +" ! EXPR Adevărat dacă expresia EXPR este falsă.\n" +" EXPR1 -a EXPR2 Adevărat dacă amândouă expresiile EXPR1 și EXPR2 sunt adevărate.\n" +" EXPR1 -o EXPR2 Adevărat dacă fie expresia EXPR1, fie expresia EXPR2 este adevărată.\n" +" \n" +" ARG1 OP ARG2 Teste aritmetice. OP este unul dintre -eq, -ne, -lt, -le, -gt, sau -ge.\n" +" \n" +" Operatorii binari aritmetici returnează adevărat dacă ARG1 este egal, inegal, mai mic\n" +" decât, mai mic decât sau egal, mai mare decât, sau mai mare decât sau egal cu ARG2.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes dacă EXPR este evaluată ca adevărată; eșuează dacă EXPR este\n" +" evaluată ca fiind falsă sau este dat un argument nevalid." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help [», din «bash»; +# «bash -c "help ["», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1343 msgid "" "Evaluate conditional expression.\n" @@ -3662,7 +4855,17 @@ msgid "" " This is a synonym for the \"test\" builtin, but the last argument must\n" " be a literal `]', to match the opening `['." msgstr "" +"Evaluează expresia condițională.\n" +" \n" +" Acesta este un sinonim pentru comanda internă «test», dar ultimul argument\n" +" trebuie să fie un „]” literal, pentru a se potrivi cu „[” de deschidere." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help times», din «bash»; +# «bash -c "help times"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1352 msgid "" "Display process times.\n" @@ -3673,7 +4876,20 @@ msgid "" " Exit Status:\n" " Always succeeds." msgstr "" +"Afișează timpii procesului.\n" +" \n" +" Afișează timpii acumulați de utilizator și sistem pentru shell și pentru toate\n" +" procesele sale secundare.\n" +" \n" +" Starea de ieșire:\n" +" Întotdeauna reușește(0)." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help trap», din «bash»; +# «bash -c "help trap"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1364 msgid "" "Trap signals and other events.\n" @@ -3708,7 +4924,48 @@ msgid "" " Exit Status:\n" " Returns success unless a SIGSPEC is invalid or an invalid option is given." msgstr "" +"Capturează semnale și alte evenimente.\n" +" \n" +" Definește și activează operatorii care urmează să fie rulați atunci când\n" +" shell-ul primește semnale sau apar alte evenimente.\n" +" \n" +" ARG este o comandă care trebuie citită și executată atunci când shell-ul\n" +" primește semnalul(ele) SIGNAL_SPEC. Dacă ARG este absentă (și este\n" +" furnizat un singur SIGNAL_SPEC) sau „-”, fiecare semnal specificat este\n" +" restabilit la valoarea sa originală. Dacă ARG este un șir nul, fiecare\n" +" SIGNAL_SPEC este ignorat de către shell și de comenzile pe care le invocă.\n" +" \n" +" Dacă un SIGNAL_SPEC este EXIT (0), ARG este executat la ieșirea din shell.\n" +" Dacă un SIGNAL_SPEC este DEBUG, ARG este executat înainte de fiecare comandă\n" +" simplă. Dacă un SIGNAL_SPEC este RETURN, ARG este executat de fiecare dată \n" +" când o funcție shell sau un script rulat din . sau comanda internă «source»\n" +" se termină de executat. Un SIGNAL_SPEC de ERR face ca ARG să fie executat\n" +" de fiecare dată când eșecul unei comenzi ar determina terminarea shell-ului\n" +" atunci când opțiunea „-e” este activată. \n" +" \n" +" Dacă nu sunt furnizate argumente, «trap» afișează lista de comenzi asociate\n" +" fiecărui semnal.\n" +" \n" +" Opțiuni:\n" +" -l\tafișează o listă de nume de semnale și numerele corespunzătoare\n" +" \tale acestora\n" +" -p\tafișează comenzile de captură asociate fiecărui SIGNAL_SPEC\n" +" \n" +" Fiecare SIGNAL_SPEC este fie un nume de semnal în , fie un număr\n" +" de semnal. Numele semnalelor nu fac distincție între majuscule și minuscule,\n" +" iar prefixul SIG este opțional. Un semnal poate fi trimis către shell cu\n" +" «kill -signal $$».\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care un SIGSPEC este nevalid sau \n" +" este dată o opțiune nevalidă." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help type», din «bash»; +# «bash -c "help type"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1400 msgid "" "Display information about command type.\n" @@ -3737,7 +4994,38 @@ msgid "" " Exit Status:\n" " Returns success if all of the NAMEs are found; fails if any are not found." msgstr "" +"Afișează informații despre comanda «type».\n" +" \n" +" Pentru fiecare NUME, indică cum ar fi interpretat dacă ar fi folosit ca\n" +" nume de comandă.\n" +" \n" +" Opțiuni:\n" +" -a\tafișează toate locațiile care conțin un executabil numit NUME; \n" +" \t\tinclude alias, componente integrate și funcții, dacă și numai\n" +" \t\tdacă opțiunea „-p” nu este, de asemenea, utilizată\n" +" -f\tsuprimă căutarea funcției de shell\n" +" -P\tforțează o căutare PATH pentru fiecare NUME, chiar dacă este un\n" +" \t\talias, o comandă internă sau o funcție, și returnează numele\n" +" \t\tfișierului din disc care va fi executat\n" +" -p\treturnează fie numele fișierului de pe disc care va fi executat,\n" +" \t\tfie nimic dacă «type -t NUME» nu va returna „file”\n" +" -t\tafișează un singur cuvânt care este unul dintre „alias”, „keyword”,\n" +" \t\t„function”, „builtin”, „file” sau „”, dacă NUME este un alias,\n" +" \t\tcuvânt rezervat shell, funcție shell, comandă internă shell,\n" +" \t\tfișier pe disc, sau, respectiv, negăsit\n" +" \n" +" Argumente:\n" +" NUME\tNumele comenzii de interpretat.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes dacă toate NUMEle sunt găsite; eșuează dacă nu sunt găsite." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help ulimit», din «bash»; +# «bash -c "help ulimit"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1431 msgid "" "Modify shell resource limits.\n" @@ -3786,7 +5074,60 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" +"Modifică limitele resurselor shell.\n" +" \n" +" Oferă control asupra resurselor disponibile shell-ului și proceselor pe care\n" +" acesta le creează, pe sisteme care permit un astfel de control.\n" +" \n" +" Opțiuni:\n" +" -S\tutilizează limita de resurse „soft”\n" +" -H\tutilizează limita de resurse „hard”\n" +" -a\tsunt raportate toate limitele curente\n" +" -b\tdimensiunea memoriei tampon a soclului\n" +" -c\tdimensiunea maximă a fișierelor create cu conținutul memoriei (core)\n" +" -d\tdimensiunea maximă a segmentului de date al unui proces\n" +" -e\tprioritatea maximă de planificare („nice”)\n" +" -f\tdimensiunea maximă a fișierelor scrise de shell și subprocesele sale\n" +" -i\tnumărul maxim de semnale în așteptare\n" +" -k\tnumărul maxim de Kcozi alocate pentru acest proces\n" +" -l\tdimensiunea maximă pe care un proces o poate bloca în memorie\n" +" -m\tcantitatea maximă de memorie fizică a unui proces\n" +" -n\tnumărul maxim de descriptori de fișier deschise\n" +" -p\tdimensiunea memoriei tampon a liniei de conectare\n" +" -q\tnumărul maxim de octeți din cozile de mesaje POSIX\n" +" -r\tprioritatea maximă a procesului în timp real\n" +" -s\tdimensiunea maximă a stivei\n" +" -t\tcantitatea maximă de timp a CPU-ului în secunde\n" +" -u\tnumărul maxim de procese ale utilizatorului\n" +" -v\tdimensiunea memoriei virtuale\n" +" -x\tnumărul maxim de blocări ale fișierelor\n" +" -P\tnumărul maxim de pseudoterminale\n" +" -R\ttimpul maxim pe care îl poate rula un proces în timp real înainte\n" +" \tde blocare\n" +" -T\tnumărul maxim de fire(threads)\n" +" \n" +" Nu toate opțiunile sunt disponibile pe toate platformele.\n" +" \n" +" Dacă se dă LIMITA, aceasta este noua valoare a resursei specificate;\n" +" valorile speciale de LIMITĂ: „soft”, „hard” și „unlimited” reprezintă\n" +" limita curentă maleabilă, limita curentă dură și, respectiv, fără limită.\n" +" Altminteri, este afișată valoarea curentă a resursei specificate. Dacă\n" +" nu este dată nicio opțiune, atunci se presupune „-f”.\n" +" \n" +" Valorile sunt în incremente de 1024 de octeți, cu excepția lui „-t”, care\n" +" este în secunde, a lui „-p”, care este în incremente de 512 octeți și a lui\n" +" „-u”, care este un număr nescalat de procese.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este furnizată o opțiune\n" +" nevalidă sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help umask», din «bash»; +# «bash -c "help umask"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1482 msgid "" "Display or set file mode mask.\n" @@ -3804,7 +5145,30 @@ msgid "" " Exit Status:\n" " Returns success unless MODE is invalid or an invalid option is given." msgstr "" +"Afișează sau modifică masca pentru accesarea fișierelor nou create.\n" +" \n" +" Stabilește masca de creare a fișierelor de utilizator la MOD. Dacă MOD\n" +" este omis, afișează valoarea curentă a măștii.\n" +" \n" +" Dacă MOD începe cu o cifră, acesta este interpretat ca un număr octal;\n" +" altminteri este interpretat ca un șir în format simbolic ca cel acceptat\n" +" de chmod(1).\n" +" \n" +" Opșiuni\n" +" -p\tdacă MOD este omis, arată ieșirea într-o formă care poate fi\n" +" \treutilizată ca intrare\n" +" -S\tafișează MODul în formatul simbolic; altminteri în formatul octal\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care MOD este nevalid sau\n" +" este dată o opțiune nevalidă." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help wait», din «bash»; +# «bash -c "help wait"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1502 msgid "" "Wait for job completion and return exit status.\n" @@ -3832,6 +5196,33 @@ msgid "" " option is given, or if -n is supplied and the shell has no unwaited-for\n" " children." msgstr "" +"Așteaptă finalizarea lucrării și returnează starea de ieșire.\n" +" \n" +" Așteaptă fiecare proces identificat printr-un ID, care poate fi un ID de\n" +" proces sau o specificație de lucrare și raportează starea de terminare\n" +" a acestuia. Dacă ID-ul nu este dat, așteaptă toate procesele secundare\n" +" active în prezent și starea de returnare este zero. Dacă ID-ul este o\n" +" specificație de lucrare, așteaptă toate procesele din secvența de comenzi\n" +" respectivă a lucrării.\n" +" \n" +" Dacă este furnizată opțiunea „-n”, așteaptă o singură lucrare din lista de\n" +" ID-uri sau, dacă nu sunt furnizate ID-uri, pentru finalizarea următoarei\n" +" lucrări și returnează starea de ieșire.\n" +" \n" +" Dacă este furnizată opțiunea „-p”, identificatorul de proces sau de lucrare al\n" +" lucrării pentru care este returnată starea de ieșire este atribuit variabilei\n" +" VAR numită de argumentul opțiunii. Variabila va fi anulată inițial, înainte\n" +" de orice atribuire. Acest lucru este util numai atunci când este furnizată\n" +" opțiunea „-n”.\n" +" \n" +" Dacă este furnizată opțiunea „-f” și controlul lucrării este activat, \n" +" așteaptă ca ID-ul specificat să se termine, în loc să aștepte ca acesta să\n" +" își schimbe starea.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimului ID; eșuează dacă ID-ul este nevalid sau este\n" +" dată o opțiune nevalidă sau dacă „-n” este furnizată și shell-ul nu are\n" +" niciun copil pe care să-l aștepte." #: builtins.c:1533 msgid "" @@ -3845,7 +5236,22 @@ msgid "" " Returns the status of the last PID; fails if PID is invalid or an invalid\n" " option is given." msgstr "" +"Așteaptă finalizarea procesului și returnează starea de ieșire.\n" +" \n" +" Așteaptă fiecare proces specificat de un PID și raportează starea de terminare a\n" +" acestuia. Dacă nu este dat PID, așteaptă toate procesele copil active în prezent,\n" +" iar starea returnată este zero. PID trebuie să fie un ID de proces.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimului PID; eșuează dacă PID este nevalid sau este dată\n" +" o opțiune nevalidă." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help for», din «bash»; +# «bash -c "help for"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1548 msgid "" "Execute commands for each member in a list.\n" @@ -3858,7 +5264,22 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" +"Execută comenzi pentru fiecare membru dintr-o listă.\n" +" \n" +" Bucla „for” execută o secvență de comenzi pentru fiecare membru dintr-o\n" +" listă de elemente. Dacă „in CUVINTE ...;” nu este prezent, atunci se\n" +" presupune „in \"$@\"”. Pentru fiecare element din CUVINTE, se definește\n" +" NUME ca acel element, și se execută COMENZILE.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimei comenzi executate." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help 'for (('», din «bash»; +# «bash -c "help 'for (('"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1562 msgid "" "Arithmetic for loop.\n" @@ -3875,7 +5296,26 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" +"Buclă aritmetică „for”.\n" +" \n" +" Echivalentă cu:\n" +" \t(( EXP1 ))\n" +" \twhile (( EXP2 )); do\n" +" \t\tCOMENZI\n" +" \t\t(( EXP3 ))\n" +" \tdone\n" +" EXP1, EXP2, și EXP3 sunt expresii aritmetice. Dacă orice expresie este\n" +" omisă, se comportă ca și cum aceasta ar avea valoarea 1.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimei comenzi executate." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help select», din «bash»; +# «bash -c "help select"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1580 msgid "" "Select words from a list and execute commands.\n" @@ -3895,7 +5335,30 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" +"Selectează cuvinte dintr-o listă și execută comenzi.\n" +" \n" +" CUVINTELE sunt expandate, generând o listă de cuvinte. Setul\n" +" de cuvinte expandate este afișat la ieșirea de eroare standard,\n" +" fiecare precedat de un număr. Dacă „în CUVINTE” nu este prezent,\n" +" se presupune „in \"$@\"”. Se afișează apoi promptul PS3 și se citește\n" +" o linie de la intrarea standard. Dacă linia constă din numărul\n" +" corespunzător unuia dintre cuvintele afișate, atunci se definește NUME\n" +" ca acest cuvânt. Dacă linia este goală, CUVINTE și promptul sunt\n" +" reafișate. Dacă este citit sfârșitul fișierului(EOF), comanda se\n" +" finalizează. Orice altă valoare citită face ca NUME să fie definit ca\n" +" null. Linia citită este salvată în variabila „REPLY”. COMENZILE sunt\n" +" executate după fiecare selecție până când este executată o comandă\n" +" de întrerupere(break).\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimei comenzi executate." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help time», din «bash»; +# «bash -c "help time"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1601 msgid "" "Report time consumed by pipeline's execution.\n" @@ -3911,7 +5374,26 @@ msgid "" " Exit Status:\n" " The return status is the return status of PIPELINE." msgstr "" +"Raportează timpul consumat de execuția secvenței de comenzi.\n" +" \n" +" Execută SECVENȚA_DE_COMENZI și imprimă un rezumat al timpului real,\n" +" al timpului CPU al utilizatorului și al timpului CPU al sistemului\n" +" petrecut executând SECVENȚA_DE_COMENZI atunci când aceasta termină.\n" +" \n" +" Opțiuni:\n" +" -p\tafișează rezumatul cronometrajului în formatul Posix portabil\n" +" \n" +" Valoarea variabilei TIMEFORMAT este utilizată drept format de ieșire.\n" +" \n" +" Starea de ieșire:\n" +" Starea de returnare este starea de returnare a SECVENȚEI_DE_COMENZI." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help case», din «bash»; +# «bash -c "help case"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1618 msgid "" "Execute commands based on pattern matching.\n" @@ -3922,7 +5404,20 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" +"Execută comenzi bazate pe potrivirea modelelor.\n" +" \n" +" Execută COMENZI selectiv, pe baza potrivirilor dintre CUVÂNT și MODEL.\n" +" „|” este folosit pentru a separa mai multe modele.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimei comenzi executate." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help if», din «bash»; +# «bash -c "help if"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1630 msgid "" "Execute commands based on conditional.\n" @@ -3938,7 +5433,26 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" +"Execută comenzi bazate pe condițional.\n" +" \n" +" Lista „if COMENZI” este executată. Dacă starea sa de ieșire este zero,\n" +" atunci este executată lista „then COMENZI”. În caz contrar, fiecare listă \n" +" „elif COMENZI” este executată pe rând, iar dacă starea sa de ieșire este\n" +" zero, lista corespunzătoare „then COMENZI” este executată și comanda\n" +" «if» se completează. În caz contrar, lista „else COMENZI” este executată,\n" +" dacă este prezentă. Starea de ieșire a întregii construcții este starea de\n" +" ieșire a ultimei comenzi executate sau zero dacă nicio condiție nu a fost\n" +" evaluată ca adevărată.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimei comenzi executate." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help while», din «bash»; +# «bash -c "help while"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1647 msgid "" "Execute commands as long as a test succeeds.\n" @@ -3949,7 +5463,20 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" +"Execută comenzi atâta timp cât un test reușește.\n" +" \n" +" Expandează și execută COMENZI atâta timp cât comanda finală din\n" +" COMENZI „while” are o stare de ieșire zero.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimei comenzi executate." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help until», din «bash»; +# «bash -c "help until"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1659 msgid "" "Execute commands as long as a test does not succeed.\n" @@ -3960,7 +5487,20 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" +"Execută comenzi atâta timp cât un test nu reușește.\n" +" \n" +" Expandează și execută COMENZI atâta timp cât comanda finală din\n" +" „until” COMENZI are o stare de ieșire diferită de zero.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimei comenzi executate." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help coproc», din «bash»; +# «bash -c "help coproc"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1671 msgid "" "Create a coprocess named NAME.\n" @@ -3973,7 +5513,22 @@ msgid "" " Exit Status:\n" " The coproc command returns an exit status of 0." msgstr "" +"Creează un coproces numit NUME.\n" +" \n" +" Execută COMANDA în mod asincron, cu ieșirea standard și intrarea standard a\n" +" comenzii conectate printr-o conductă la descriptorii de fișiere alocați\n" +" indicilor 0 și 1 ai unei variabile matrice NUME din shell-ul de execuție.\n" +" NUMELE implicit este „COPROC”.\n" +" \n" +" Starea de ieșire:\n" +" Comanda «coproc» returnează o stare de ieșire de 0." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help function», din «bash»; +# «bash -c "help function"», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1685 msgid "" "Define shell function.\n" @@ -3986,7 +5541,22 @@ msgid "" " Exit Status:\n" " Returns success unless NAME is readonly." msgstr "" +"Definește funcția shell.\n" +" \n" +" Creează o funcție de shell numită NUME. Când se invocă ca o comandă simplă,\n" +" NUME rulează COMENZI în contextul shell-ului apelant. Când NUME este \n" +" invocat, argumentele sunt transmise funcției ca $1...$n, iar numele\n" +" funcției este în $FUNCNAME.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care NUME este protejat la scriere" +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help -m {», din «bash»; +# «bash -c "help -m {», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1699 msgid "" "Group commands as a unit.\n" @@ -3997,6 +5567,13 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" +"Grupează comenzile ca o unitate.\n" +" \n" +" Rulează un set de comenzi dintr-un grup. Aceasta este o modalitate\n" +" de a redirecționa un întreg set de comenzi.\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea ultimei comenzi executate." #: builtins.c:1711 msgid "" @@ -4011,7 +5588,23 @@ msgid "" " Exit Status:\n" " Returns the status of the resumed job." msgstr "" +"Reia lucrarea în prim-plan.\n" +" \n" +" Echivalent cu argumentul JOB_SPEC al comenzii «fg». Reia o lucrare\n" +" oprită sau în fundal. JOB_SPEC poate specifica fie un nume de lucrare,\n" +" fie un număr de lucrare. JOB_SPEC urmat de un „&” plasează lucrarea\n" +" în fundal, ca și cum specificația lucrării ar fi fost furnizată ca argument\n" +" pentru «bg».\n" +" \n" +" Starea de ieșire:\n" +" Returnează starea lucrării reluate." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help '(('», din «bash»; +# «bash -c "help '(('», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1726 msgid "" "Evaluate arithmetic expression.\n" @@ -4022,7 +5615,20 @@ msgid "" " Exit Status:\n" " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgstr "" +"Evaluează expresia aritmetică.\n" +" \n" +" EXPRESIA este evaluată conform regulilor de evaluare aritmetică.\n" +" Echivalent cu „let \"EXPRESIA\"”.\n" +" \n" +" Starea de ieșire:\n" +" Returnează 1 dacă EXPRESIA este evaluată la 0; în caz contrar, returnează 0." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help '[['», din «bash»; +# «bash -c "help '[['», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1738 msgid "" "Execute conditional command.\n" @@ -4047,7 +5653,36 @@ msgid "" " Exit Status:\n" " 0 or 1 depending on value of EXPRESSION." msgstr "" +"Execută comanda condițională.\n" +" \n" +" Returnează o stare de 0 sau 1, în funcție de evaluarea expresiei condiționale\n" +" EXPRESIA. Expresiile sunt compuse din aceleași elemente primare folosite de\n" +" comanda INTERNĂ «test» și pot fi combinate folosind următorii operatori:\n" +" \n" +" ( EXPRESIA )\tReturnează valoarea EXPRESIEI\n" +" ! EXPRESIA\tAdevărat dacă EXPRESIA este falsă; altfel fals\n" +" EXPR1 && EXPR2\tAdevărat dacă atât EXPR1 cât și EXPR2 sunt adevărate;\n" +" \t\t\taltfel fals\n" +" EXPR1 || EXPR2\tAdevărat dacă fie EXPR1, fie EXPR2 este adevărată;\n" +" \t\t\taltfel fals\n" +" \n" +" Când se utilizează operatorii „==” și „!=”, șirul din dreapta operatorului\n" +" este utilizat ca model și se realizează potrivirea modelului.\n" +" Când se utilizează operatorul „=~”, șirul din dreapta operatorului se\n" +" potrivește ca expresie regulată.\n" +" \n" +" Operatorii „&&” și „||” nu evaluează EXPR2 dacă EXPR1 este suficientă pentru\n" +" a determina valoarea expresiei.\n" +" \n" +" Starea de ieșire:\n" +" 0 sau 1, în funcție de valoarea EXPRESIEI." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help variables», din «bash»; +# «bash -c "help variables», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1764 msgid "" "Common shell variable names and usage.\n" @@ -4101,7 +5736,66 @@ msgid "" " HISTIGNORE\tA colon-separated list of patterns used to decide which\n" " \t\tcommands should be saved on the history list.\n" msgstr "" +"Numele și utilizarea variabilelor shell comune.\n" +" \n" +" BASH_VERSION\n" +" \tInformații despre versiunea acestui Bash.\n" +" CDPATH\tO listă de directoare separate prin două puncte\n" +" \t\tpentru a căuta directoare date ca argumente pentru «cd».\n" +" GLOBIGNORE\tO listă de modele, separate prin două puncte, care descriu nume\n" +" \t\tde fișiere care trebuie ignorate de extinderea numelui de cale.\n" +" HISTFILE\tNumele fișierului în care este stocat istoricul comenzilor.\n" +" HISTFILESIZE\n" +" \tNumărul maxim de linii pe care acest fișier le poate conține.\n" +" HISTSIZE\tNumărul maxim de linii de istoric pe care le poate accesa un\n" +" \t\tshell care rulează.\n" +" HOME\tCalea completă către directorul dumneavoastră de conectare.\n" +" HOSTNAME\tNumele gazdei curente.\n" +" HOSTTYPE\tTipul de CPU pe care rulează această versiune de Bash.\n" +" IGNOREEOF\tControlează acțiunea shell-ului la primirea unui caracter „EOF”\n" +" \t\tca unică intrare. Dacă este definită, atunci valoarea acesteia\n" +" \t\teste numărul de caractere „EOF” care pot fi văzute într-un rând\n" +" \t\tpe o linie goală înainte ca shell-ul să iasă (implicit 10).\n" +" \t\tCând nu este definită, „EOF” înseamnă sfârșitul intrării.\n" +" MACHTYPE\tUn șir care descrie sistemul curent pe care rulează Bash.\n" +" MAILCHECK\tCât de des, în secunde, verifică Bash dacă există e-mailuri noi.\n" +" MAILPATH\tO listă de nume de fișiere, separate prin două puncte, pe care\n" +" \t\tBash le verifică pentru e-mailuri noi.\n" +" OSTYPE\tVersiunea de Unix pe care rulează această versiune de Bash.\n" +" PATH\tO listă de directoare separate prin două puncte în care se caută,\n" +" \t\tatunci când se caută comenzi.\n" +" PROMPT_COMMAND\n" +" \tO comandă care trebuie executată înainte de afișarea\n" +" \t\tfiecărui prompt primar.\n" +" PS1\t\tȘirul de prompt primar.\n" +" PS2\t\tȘirul de prompt secundar.\n" +" PWD\t\tCalea completă a directorului curent.\n" +" SHELLOPTS\tO listă separată de două puncte, de opțiuni de shell activate.\n" +" TERM\tNumele tipului actual de terminal.\n" +" TIMEFORMAT\tFormatul de ieșire pentru statisticile de timp afișat de\n" +" \t\tcuvântul rezervat „time”.\n" +" auto_resume\tNon-null înseamnă că un cuvânt de comandă care apare singur pe o\n" +" \t\tlinie este căutat mai întâi în lista de lucrări opriteîn prezent.\n" +" \t\tDacă se găsește acolo, lucrarea este în prim plan. O valoare\n" +" \t\t„exact” înseamnă că cuvântul de comandă trebuie să se potrivească\n" +" \t\texact cu o comandă din lista de lucrări oprite. O valoare „sub-\n" +" \t\tstring” înseamnă că cuvântul de comandă trebuie să se potrivească\n" +" \t\tcu un subșir al lucrării. Orice altă valoare înseamnă că\n" +" \t\tcomanda trebuie să fie un prefix al unei lucrări oprite.\n" +" histchars\tCaractere care controlează extinderea istoricului și\n" +" \t\tînlocuirea rapidă. Primul caracter este caracterul\n" +" \t\tde înlocuire a istoricului, de obicei „!”. Al doilea este\n" +" \t\tcaracterul „înlocuire rapidă”, de obicei „^”. Al treilea\n" +" \t\teste caracterul „comentare istoric”, de obicei „#”.\n" +" HISTIGNORE\tO listă de modele separate prin două puncte, utilizată pentru a\n" +" \t\tdecide ce comenzi ar trebui salvate în lista istoricului.\n" +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help pushd», din «bash»; +# «bash -c "help pushd», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1821 msgid "" "Add directories to stack.\n" @@ -4132,7 +5826,40 @@ msgid "" " Returns success unless an invalid argument is supplied or the directory\n" " change fails." msgstr "" +"Adaugă directoare la stivă.\n" +" \n" +" Adaugă un director în partea de sus a stivei de directoare sau \n" +" rotește stiva, făcând din partea de sus a stivei directorul de lucru\n" +" curent. Fără argumente, interschimbă primele două directoare.\n" +" \n" +" Opțiuni:\n" +" -n\tSuprimă schimbarea normală a directorului atunci când se adaugă\n" +" \t\tdirectoare la stivă, astfel încât numai stiva este manipulată.\n" +" \n" +" Argumente:\n" +" +N\tRotește stiva astfel încât al N-lea director (numărând \n" +" \t\tdin stânga listei afișate de «dirs», începând cu zero) să fie\n" +" \t\tîn partea de sus.\n" +" \n" +" -N\tRotește stiva astfel încât al N-lea director (numărând \n" +" \t\tdin dreapta listei afișate de «dirs», începând cu zero) să fie\n" +" \t\tîn partea de sus.\n" +" \n" +" dir\tAdaugă DIR la stiva de directoare din partea de sus, făcându-l\n" +" \t\tnoul director de lucru curent.\n" +" \n" +" Comanda internă «dirs» afișează stiva de directoare.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este furnizat un argument\n" +" nevalid sau dacă schimbarea directorului eșuează." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help popd», din «bash»; +# «bash -c "help popd», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1855 msgid "" "Remove directories from stack.\n" @@ -4159,7 +5886,36 @@ msgid "" " Returns success unless an invalid argument is supplied or the directory\n" " change fails." msgstr "" +"Elimină directoare din stivă.\n" +" \n" +" Elimină intrările din stiva de directoare. Fără argumente, elimină\n" +" directorul de sus din stivă, și trece la noul director de sus.\n" +" \n" +" Opțiuni:\n" +" -n\tSuprimă schimbarea normală a directorului atunci când se elimină\n" +" \t\tdirectoare la stivă, astfel încât numai stiva este manipulată.\n" +" \n" +" Argumente:\n" +" +N\tElimină intrarea a N-a numărând din stânga listei afișate\n" +" \t\tde «dirs», începând cu zero. De exemplu: «popd +0»\n" +" \t\telimină primul director, «popd +1» al doilea.\n" +" \n" +" -N\tElimină intrarea a N-a numărând din dreapta listei afișate\n" +" \t\tde «dirs», începând cu zero. De exemplu: «popd -0»\n" +" \t\telimină ultimul director, «popd -1» penultimul.\n" +" \n" +" Comanda internă «dirs» afișează stiva de directoare.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este furnizat un argument\n" +" nevalid sau dacă schimbarea directorului eșuează." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help dirs», din «bash»; +# «bash -c "help dirs», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1885 msgid "" "Display directory stack.\n" @@ -4188,7 +5944,39 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" +"Afișează stiva de directoare.\n" +" \n" +" Afișează lista directoarelor memorate în prezent. Directoarele\n" +" sunt adăugate la această listă cu comanda «pushd» și eliminate\n" +" cu comanda «popd».\n" +" \n" +" Opțiuni:\n" +" -c\tcurăță stiva de directoare ștergând toate elementele\n" +" -l\tnu afișează versiuni de directoare cu prefix „~” în raport \n" +" \t\tcu directorul dumneavoastră «acasă»\n" +" -p\tafișează stiva de directoare cu o intrare pe linie\n" +" -v\tafișează stiva de directoare cu o intrare pe linie, prefixată\n" +" \t\tcu poziția sa în stivă\n" +" \n" +" Argumente:\n" +" +N\tAfișează a N-a intrare numărând din stânga listei afișate\n" +" \t\tde «dirs» atunci când este invocată fără opțiuni, începând\n" +" \t\tcu zero.\n" +" \n" +" -N\tAfișează a N-a intrare numărând din dreapta listei afișate\n" +" \t\tde «dirs» atunci când este invocată fără opțiuni, începând\n" +" \t\tcu zero.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este furnizată o opțiune\n" +" nevalidă sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help shopt», din «bash»; +# «bash -c "help shopt», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1916 msgid "" "Set and unset shell options.\n" @@ -4208,7 +5996,31 @@ msgid "" " Returns success if OPTNAME is enabled; fails if an invalid option is\n" " given or OPTNAME is disabled." msgstr "" +"Activează sau dezactivează opțiunile de shell.\n" +" \n" +" Schimbă configurarea fiecărei opțiuni de shell NUME_OPȚIUNE. Fără\n" +" niciun argument de opțiune, listează fiecare NUME_OPȚIUNE furnizat, \n" +" sau toate opțiunile de shell dacă nu sunt date NUME_OPȚIUNE, cu o\n" +" indicație dacă fiecare este sau nu definită.\n" +" \n" +" Opțiuni:\n" +" -o\trestricționează NUME_OPȚIUNE la cele definite pentru a fi\n" +" \tutilizate cu «set -o»\n" +" -p\tafișează fiecare opțiune de shell cu o indicație a stării acesteia\n" +" -q\tsuprimă ieșirea\n" +" -s\tactivează (definește) fiecare NUME_OPȚIUNE\n" +" -u\tdezactivează (șterge) fiecare NUME_OPȚIUNE\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes dacă NUME_OPȚIUNE este activată; eșuează dacă\n" +" este dată o opțiune nevalidă sau NUME_OPȚIUNE este dezactivată." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help printf», din «bash»; +# «bash -c "help printf», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1937 msgid "" "Formats and prints ARGUMENTS under control of the FORMAT.\n" @@ -4240,7 +6052,43 @@ msgid "" " Returns success unless an invalid option is given or a write or assignment\n" " error occurs." msgstr "" +"Formatează și imprimă ARGUMENTELE sub controlul FORMATului.\n" +" \n" +" Opțiuni:\n" +" -v var\tasignează ieșirea variabilei shell VAR, în loc să o\n" +" \t\tafișeze pe ieșirea standard\n" +" \n" +" FORMAT este un șir de caractere care conține trei tipuri de obiecte: \n" +" caractere simple, care sunt pur și simplu copiate la ieșirea standard; \n" +" secvențe de eludare de caractere, care sunt convertite și copiate la \n" +" ieșirea standard; și specificații de format, fiecare dintre acestea \n" +" determinând imprimarea următorului argument succesiv.\n" +" \n" +" În plus față de specificațiile de format standard descrise în printf(1),\n" +" «printf» interpretează:\n" +" \n" +" %b\texpandează secvențele de eludare de bară inversată,\n" +" \tîn argumentul corespunzător\n" +" %q\tcitează argumentul într-un mod care poate fi reutilizat\n" +" \tca intrare shell\n" +" %(fmt)T\tafișează șirul dată-oră rezultat din utilizarea FMT,\n" +" \tca șir de format pentru strftime(3)\n" +" \n" +" Formatul este reutilizat după cum este necesar pentru a consuma toate\n" +" argumentele. Dacă există mai puține argumente decât necesită formatul,\n" +" specificațiile de format suplimentare se comportă ca și cum ar fi fost\n" +" furnizată o valoare zero sau un șir nul, după caz.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes cu excepția cazului în care este dată o opțiune nevalidă\n" +" sau apare o eroare de scriere sau de atribuire." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help complete», din «bash»; +# «bash -c "help complete», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:1971 msgid "" "Specify how arguments are to be completed by Readline.\n" @@ -4267,7 +6115,39 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" +"Specifică modul în care argumentele vor fi completate de Readline.\n" +" \n" +" Pentru fiecare NUME, specifică cum vor fi completate argumentele. Dacă\n" +" nu sunt furnizate opțiuni, specificațiile de completare existente sunt\n" +" imprimate într-un mod care să permită reutilizarea lor ca intrare\n" +" \n" +" Opțiuni:\n" +" -p\tafișează specificațiile de completare existente într-un format\n" +" \t\treutilizabil\n" +" -r\telimină o specificație de completare pentru fiecare NUME sau,\n" +" \t\tdacă nu sunt furnizate NUME, toate specificațiile de completare\n" +" -D\taplicați completările și acțiunile ca implicite pentru comenzi\n" +" \t\tfără nicio completare specifică definită\n" +" -E\taplică completările și acțiunile pentru comenzile „goale” --\n" +" \t\tcând se încearcă completarea într-o linie goală\n" +" -I\taplică completările și acțiunile la cuvântul inițial (de obicei\n" +" \t\tcomanda).\n" +" \n" +" Când se încearcă completarea, acțiunile sunt aplicate în ordinea în care\n" +" opțiunile cu litere mari sunt listate mai sus. Dacă sunt furnizate mai multe\n" +" opțiuni, opțiunea „-D” are prioritate față de „-E” și ambele au prioritate\n" +" față de opțiunea „-I”.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este furnizată o opțiune\n" +" nevalidă sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help compgen», din «bash»; +# «bash -c "help compgen», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:2001 msgid "" "Display possible completions depending on the options.\n" @@ -4279,7 +6159,22 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" +"Afișează posibilele completări în funcție de opțiuni.\n" +" \n" +" Aceasta este destinată să fie utilizată dintr-o funcție shell care generează\n" +" posibile completări. Dacă este furnizat argumentul opțional CUVÂNT, se\n" +" generează potriviri cu CUVÂNT.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este furnizată o opțiune\n" +" nevalidă sau apare o eroare." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help compopt», din «bash»; +# «bash -c "help compopt», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:2016 msgid "" "Modify or display completion options.\n" @@ -4308,7 +6203,40 @@ msgid "" " Returns success unless an invalid option is supplied or NAME does not\n" " have a completion specification defined." msgstr "" +"Modifică sau afișează opțiunile de completare.\n" +" \n" +" Modifică opțiunile de completare pentru fiecare NUME sau, dacă nu sunt \n" +" furnizate NUME, completarea aflată în curs de executare. Dacă nu sunt \n" +" date OPȚIUNI, afișează opțiunile de completare pentru fiecare NUME sau \n" +" specificația de completare curentă.\n" +" \n" +" Opțiuni:\n" +" \t-o opțiune\n" +" \t\tStabilește opțiunea de completare OPȚIUNE pentru fiecare NUME\n" +" \t-D\tSchimbă opțiunile pentru completarea comenzii „implicite”.\n" +" \t-E\tSchimbă opțiunile pentru completarea comenzii „goale”.\n" +" \t-I\tSchimbă opțiunile de completare a cuvântului inițial\n" +" \n" +" Utilizarea lui „+o” în loc de „-o” dezactivează opțiunea specificată.\n" +" \n" +" Argumente:\n" +" \n" +" Fiecare NUME se referă la o comandă pentru care o specificație de completare\n" +" trebuie să fi fost definită anterior folosind comanda internă «complete». \n" +" Dacă nu sunt furnizate NUME, «compopt» trebuie să fie apelată de o funcție \n" +" care generează completări în acest moment și opțiunile pentru acest \n" +" generator de completare care se execută acum, sunt modificate.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este furnizată o opțiune \n" +" nevalidă sau NUME nu are o specificație de completare definită." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help mapfile», din «bash»; +# «bash -c "help mapfile», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:2047 msgid "" "Read lines from the standard input into an indexed array variable.\n" @@ -4343,1925 +6271,55 @@ msgid "" " Returns success unless an invalid option is given or ARRAY is readonly or\n" " not an indexed array." msgstr "" +"Citește linii de la intrarea standard într-o variabilă matrice indexată.\n" +" \n" +" Citește linii de la intrarea standard în variabila matrice indexată MATRICE,\n" +" sau din descriptorul de fișier „FD” dacă este furnizată opțiunea „-u”.\n" +" Variabila MAPFILE este MATRICEA implicită.\n" +" \n" +" Opțiuni:\n" +" -d delim Utilizează DELIM pentru a termina liniile, în loc de linie nouă\n" +" -n număr Copiază cel mult NUMĂRul de rânduri. Dacă NUMĂR este 0,\n" +" toate liniile sunt copiate\n" +" -O origin Începe alocarea către MATRICE la indexul ORIGIN. Indicele\n" +" implicit este 0\n" +" -s count Renunță la primele COUNT rânduri citite\n" +" -t Elimină un DELIM final din fiecare linie citită (implicit,\n" +" linie nouă)\n" +" -u fd Citește linii din descriptorul de fișier „FD” în loc de la\n" +" intrarea standard\n" +" -C apelare\n" +" Evaluează APELARE de fiecare dată când sunt citite linii CANTITATE\n" +" -c cantitate\n" +" Specifică numărul de linii citite între fiecare apel către APELARE\n" +" \n" +" Argumente:\n" +" MATRICE\tNume variabilă matrice de utilizat pentru datele fișierului\n" +" \n" +" Dacă „-C” este furnizată fără „-c”, cantitatea implicită este 5000. Când se\n" +" evaluează APELARE, i se furnizează indexul următorului element din matrice\n" +" care urmează să fie atribuit și linia care urmează să fie atribuită\n" +" acelui element ca argumente suplimentare.\n" +" \n" +" Dacă nu este furnizat cu o origine explicită, «mapfile» va șterge MATRICE\n" +" înainte de a-o utiliza pentru asignare.\n" +" \n" +" Starea de ieșire:\n" +" Returnează succes, cu excepția cazului în care este dată o opțiune nevalidă\n" +" sau MATRICE este protejată la scriere sau nu este o matrice indexată." +# R-GC, scrie: +# acest mesaj, poate să fie vizualizat, rulînd +# comanda: +# «help readarray», din «bash»; +# «bash -c "help array», din «bash», sau +# dintr-un shell, diferit de «bash». #: builtins.c:2083 msgid "" "Read lines from a file into an array variable.\n" " \n" " A synonym for `mapfile'." msgstr "" - -#~ msgid "" -#~ "Returns the context of the current subroutine call.\n" -#~ " \n" -#~ " Without EXPR, returns " -#~ msgstr "" -#~ "Returnează contextul apelului subrutină curent.\n" -#~ " \n" -#~ " Fără EXPR, returnează " - -#~ msgid "Unknown Signal #" -#~ msgstr "Semnal Necunoscut #" - -#~ msgid "Missing `}'" -#~ msgstr "`}' lipsă" - -#~ msgid "brace_expand> " -#~ msgstr "brace_expand> " - -#~ msgid "Attempt to free unknown command type `%d'.\n" -#~ msgstr "Încercare de eliberare(free) tip comandă necunoscută `%d'.\n" - -#~ msgid "Report this to %s\n" -#~ msgstr "Raportaţi asta la %s\n" - -#~ msgid "Stopping myself..." -#~ msgstr "Mă opresc..." - -#~ msgid "Tell %s to fix this someday.\n" -#~ msgstr "Spuneţi lui %s să repare asta într-o bun zi.\n" - -#~ msgid "execute_command: bad command type `%d'" -#~ msgstr "execute_command: tip de comandă greşită `%d'" - -#~ msgid "real\t" -#~ msgstr "real\t" - -#~ msgid "user\t" -#~ msgstr "user\t" - -#~ msgid "sys\t" -#~ msgstr "sis\t" - -#~ msgid "" -#~ "real\t0m0.00s\n" -#~ "user\t0m0.00s\n" -#~ "sys\t0m0.00s\n" -#~ msgstr "" -#~ "real\t0m0.00s\n" -#~ "user\t0m0.00s\n" -#~ "sis\t0m0.00s\n" - -#~ msgid "cannot duplicate fd %d to fd 1: %s" -#~ msgstr "nu se poate duplica fd %d în fd 1: %s" - -#~ msgid "%s: output redirection restricted" -#~ msgstr "%s redirectare spre output limitată" - -#~ msgid "Out of memory!" -#~ msgstr "Memorie plină!" - -#~ msgid "You have already added item `%s'\n" -#~ msgstr "Aţi adăugat deja elementul `%s'\n" - -#~ msgid "You have entered %d (%d) items. The distribution is:\n" -#~ msgstr "Aţi introdus %d (%d) elemente. Distribuţia este:\n" - -#~ msgid "slot %3d: " -#~ msgstr "slot %3d: " - -#~ msgid "" -#~ msgstr "" - -#~ msgid "%s: bg background job?" -#~ msgstr "%s: bg job din fundal?" - -#~ msgid "" -#~ "Redirection instruction from yyparse () '%d' is\n" -#~ "out of range in make_redirection ()." -#~ msgstr "" -#~ "Redirectare instrucţiune din yyparse () '%d' is\n" -#~ "în afara intervalului în make_redirection ()." - -#~ msgid "clean_simple_command () got a command with type %d." -#~ msgstr "clean_simple_command () a primit o comandă de tipul %d." - -#~ msgid "got errno %d while waiting for %d" -#~ msgstr "s-a primit errno %d în aşteptarea lui %d" - -#~ msgid "syntax error near unexpected token `%c'" -#~ msgstr "eroare de sintaxă neaşteptată lângă `%c'" - -#~ msgid "print_command: bad command type `%d'" -#~ msgstr "print_command: tip comandă greşit `%d'" - -#~ msgid "cprintf: bad `%%' argument (%c)" -#~ msgstr "cprintf: parametru `%%' invalid (%c)" - -#~ msgid "option `%s' requires an argument" -#~ msgstr "opţiunea `%s' necesită un parametru" - -#~ msgid "%s: unrecognized option" -#~ msgstr "%s: opţiune necunoscută" - -#~ msgid "`-c' requires an argument" -#~ msgstr "`-c' necesită un parametru" - -#~ msgid "%s: cannot execute directories" -#~ msgstr "%s: directoarele nu se pot executa" - -#~ msgid "Bad code in sig.c: sigprocmask" -#~ msgstr "Cod invalid în sig.c: sigprocmask" - -#~ msgid "can't make pipes for process substitution: %s" -#~ msgstr "nu pot face legături (pipes) pentru substituţia procesului: %s" - -#~ msgid "reading" -#~ msgstr "în citire" - -#~ msgid "writing" -#~ msgstr "în scriere" - -#~ msgid "process substitution" -#~ msgstr "substituire de proces" - -#~ msgid "command substitution" -#~ msgstr "substituire de comenzi" - -#~ msgid "Can't reopen pipe to command substitution (fd %d): %s" -#~ msgstr "Nu se poate redeschide legătura (pipe) către substituţia de comenzi (fd %d): %s" - -#~ msgid "$%c: unbound variable" -#~ msgstr "$%c: variabilă fără limită" - -#~ msgid "%s: bad arithmetic substitution" -#~ msgstr "%s: substituţie aritmetică greşită" - -#~ msgid "-%s: binary operator expected" -#~ msgstr "-%s: se aşteaptă operator binar" - -#~ msgid "%s[%s: bad subscript" -#~ msgstr "%s[%s: subsctipţie invalidă" - -#~ msgid "[%s: bad subscript" -#~ msgstr "[%s: subscripţie invalidă" - -#~ msgid "xrealloc: cannot reallocate %lu bytes (%lu bytes allocated)" -#~ msgstr "xrealloc: nu pot realoca %lu octeţi (%lu octeţi alocaţi)" - -#~ msgid "digits occur in two different argv-elements.\n" -#~ msgstr "se regăsesc digiţi în două elemente argv diferite.\n" - -#~ msgid "option %c\n" -#~ msgstr "opţiunea %c\n" - -#~ msgid "option a\n" -#~ msgstr "opţiunea a\n" - -#~ msgid "option b\n" -#~ msgstr "opţiunea b\n" - -#~ msgid "option c with value `%s'\n" -#~ msgstr "opţiunea c cu valoarea '%s'\n" - -#~ msgid "?? sh_getopt returned character code 0%o ??\n" -#~ msgstr "?? sh_getopt a returnat codul de caracter 0%o ??\n" - -#~ msgid "non-option ARGV-elements: " -#~ msgstr "elemente ARGV fără opţiuni: " - -#~ msgid "%s: Unknown flag %s.\n" -#~ msgstr "%s: Marcaj (flag) necunoscut %s.\n" - -#~ msgid "Unknown directive `%s'" -#~ msgstr "Directivă necunoscută '%s'" - -#~ msgid "%s must be inside of a $BUILTIN block" -#~ msgstr "%s trebuie sa fie înăuntrul unui bloc $BUILTIN" - -#~ msgid "%s found before $END" -#~ msgstr "s-a găsit %s înainte de $END" - -#~ msgid "%s already has a function (%s)" -#~ msgstr "%s avea deja o funcţie (%s)" - -#~ msgid "%s already had a docname (%s)" -#~ msgstr "%s avea deja un docname (%s)" - -#~ msgid "%s already has short documentation (%s)" -#~ msgstr "%s are deja documentaţie scurtă (%s)" - -#~ msgid "%s already has a %s definition" -#~ msgstr "%s are deja o definiţie %s" - -#~ msgid "mkbuiltins: Out of virtual memory!\n" -#~ msgstr "mkbuiltins: Memorie virtuală plină!\n" - -#~ msgid ":" -#~ msgstr ":" - -#~ msgid "read [-r] [-p prompt] [-a array] [-e] [name ...]" -#~ msgstr "read [-r] [-p prompt] [-a interval] [-e] [nume ...]" - -#~ msgid "times" -#~ msgstr "ori" - -#~ msgid "%[DIGITS | WORD] [&]" -#~ msgstr "%[DIGIŢI | CUVÂNT] [&]" - -#~ msgid "variables - Some variable names and meanings" -#~ msgstr "variabile - Câteva nume de variabile şi ce înseamnă" - -#~ msgid "`alias' with no arguments or with the -p option prints the list" -#~ msgstr "`alias' fără parametri sau cu opţiunea -p printează lista" - -#~ msgid "of aliases in the form alias NAME=VALUE on standard output." -#~ msgstr "aliasurilor în forma alias NUME=VALOARE la ieşirea standard" - -#~ msgid "Otherwise, an alias is defined for each NAME whose VALUE is given." -#~ msgstr "În caz contrar, aliasul este definit pentru fiecare NUME a cărui VALOARE este dată." - -#~ msgid "A trailing space in VALUE causes the next word to be checked for" -#~ msgstr "Un spaţiu la sfârşit în VALOARE va face ca următorul cuvânt sa fie interogat de" - -#~ msgid "alias substitution when the alias is expanded. Alias returns" -#~ msgstr "substituţii de alias când aliasul este extins. Aliasul returnează" - -#~ msgid "true unless a NAME is given for which no alias has been defined." -#~ msgstr "adevărat în afară de cazul în care NUME nu este dat şi pentru care nu a fost definit nici un alias." - -#~ msgid "Remove NAMEs from the list of defined aliases. If the -a option is given," -#~ msgstr "Elimină NUME din lista de aliasuri definite. Dacă este dată opţiunea -a," - -#~ msgid "then remove all alias definitions." -#~ msgstr "atunci şterge toate definiţiile aliasurilor." - -#~ msgid "Bind a key sequence to a Readline function, or to a macro. The" -#~ msgstr "Leagă (bind) o secvenţă de taste de o funcţie Readline, sau de un macro. " - -#~ msgid "syntax is equivalent to that found in ~/.inputrc, but must be" -#~ msgstr "Sintaxa este echivalentă cu cea întâlnită în ~/.inputrc, dar trebuie" - -#~ msgid "passed as a single argument: bind '\"\\C-x\\C-r\": re-read-init-file'." -#~ msgstr "trimisă parametru singular: bind '\"\\C-x\\C-r\": re-read-init-file'." - -#~ msgid "Arguments we accept:" -#~ msgstr "Parametri acceptaţi:" - -#~ msgid " -m keymap Use `keymap' as the keymap for the duration of this" -#~ msgstr " -m keymap Foloseşte `keymap' ca şi mapare de taste pentru durata" - -#~ msgid " command. Acceptable keymap names are emacs," -#~ msgstr " acestei comenzi. Nume acceptate de keymaps sunt emacs," - -#~ msgid " emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move," -#~ msgstr " emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move," - -#~ msgid " vi-command, and vi-insert." -#~ msgstr " vi-command, şi vi-insert." - -#~ msgid " -l List names of functions." -#~ msgstr " -l Listează numele funcţiilor." - -#~ msgid " -P List function names and bindings." -#~ msgstr " -P Listează numele funcţiilor şi legăturile (bindings)." - -#~ msgid " -p List functions and bindings in a form that can be" -#~ msgstr " -p Listează funcţiile şi legăturile (bindings) într-o formă care" - -#~ msgid " reused as input." -#~ msgstr " poate fi refolosită ca intrare(input)." - -#~ msgid " -r keyseq Remove the binding for KEYSEQ." -#~ msgstr " -r keyseq Elimină legăturile(bindings) pentru KEYSEQ." - -#~ msgid " -f filename Read key bindings from FILENAME." -#~ msgstr " -f nume_fişier Citeşte legăturile (bindings) din NUME_FIŞIER" - -#~ msgid " -q function-name Query about which keys invoke the named function." -#~ msgstr " -q nume_funcţie Verifică tastele care invocă funcţia numită." - -#~ msgid " -V List variable names and values" -#~ msgstr " -V Listează numele variabilelor şi valorile" - -#~ msgid " -v List variable names and values in a form that can" -#~ msgstr " -v Listează numele variabilelor şi valorile într-o formă care poate" - -#~ msgid " be reused as input." -#~ msgstr " fi reutilizată ca date de intrare." - -#~ msgid " -S List key sequences that invoke macros and their values" -#~ msgstr " -S Listează secvenţele de taste care invocă macrourile şi valorile lor" - -#~ msgid " -s List key sequences that invoke macros and their values in" -#~ msgstr " -s Listează secvenţele de taste care invocă macrourile şi valorile lorîntr-o" - -#~ msgid " a form that can be reused as input." -#~ msgstr " formă care poate fi reutilizată ca date de intrare." - -#~ msgid "Exit from within a FOR, WHILE or UNTIL loop. If N is specified," -#~ msgstr "Ieşire dintr-un ciclu FOR, WHILE sau UNTIL. Daca N este specificat," - -#~ msgid "break N levels." -#~ msgstr "întrerupe N nivele" - -#~ msgid "Resume the next iteration of the enclosing FOR, WHILE or UNTIL loop." -#~ msgstr "Continuă urmatoarea iteraţie din ciclul închis FOR, WHILE sau UNTIL." - -#~ msgid "If N is specified, resume at the N-th enclosing loop." -#~ msgstr "Dacă N este specificat, continuă al N-ulea ciclu închis." - -#~ msgid "Run a shell builtin. This is useful when you wish to rename a" -#~ msgstr "Rulează un shell intern. Aceasta este folositoare când doriţi sa redenumiţi " - -#~ msgid "shell builtin to be a function, but need the functionality of the" -#~ msgstr "un shell intern drept funcţie, dar aveţi nevoie de funcţionalitatea" - -#~ msgid "builtin within the function itself." -#~ msgstr "funcţiei interne de asemenea." - -#~ msgid "Change the current directory to DIR. The variable $HOME is the" -#~ msgstr "Schimbă directorul curent cu DIR. Variabila $HOME este" - -#~ msgid "default DIR. The variable $CDPATH defines the search path for" -#~ msgstr "DIR implicit. Variabila $CDPATH defineşte calea de căutare pentru" - -#~ msgid "the directory containing DIR. Alternative directory names in CDPATH" -#~ msgstr "directorul care conţine DIR. Numele de directoare alternative în CDPATH" - -#~ msgid "are separated by a colon (:). A null directory name is the same as" -#~ msgstr "sunt separate de două puncte (:). Un nume de director nul reprezintă referire la" - -#~ msgid "the current directory, i.e. `.'. If DIR begins with a slash (/)," -#~ msgstr "directorul curent, i.e. `.'. Dacă DIR începe cu un slash (/)," - -#~ msgid "then $CDPATH is not used. If the directory is not found, and the" -#~ msgstr "atunci $CDPATH nu este folosită. Dacă directorul nu este găsit, şi" - -#~ msgid "shell option `cdable_vars' is set, then try the word as a variable" -#~ msgstr "opţiunea de shell `cdable_vars' este setată, atunci cuvântul este un nume" - -#~ msgid "name. If that variable has a value, then cd to the value of that" -#~ msgstr "de variabilă. Dacă variabila are o valoare, se va face cd pe valoarea acelei" - -#~ msgid "variable. The -P option says to use the physical directory structure" -#~ msgstr "variabile. Opţiunea -P trimite la folosirea structurii fizice de directoare" - -#~ msgid "instead of following symbolic links; the -L option forces symbolic links" -#~ msgstr "în loc de urmarea legăturilor simbolice; opţiunea -L forţează urmarea" - -#~ msgid "to be followed." -#~ msgstr "legăturilor simbolice." - -#~ msgid "Print the current working directory. With the -P option, pwd prints" -#~ msgstr "Afişează directorul de lucru curent. Cu opţiunea -P, pwd afişează" - -#~ msgid "the physical directory, without any symbolic links; the -L option" -#~ msgstr "directoarele simbolice, fără nici o legătură simbolică; opţiunea -L" - -#~ msgid "makes pwd follow symbolic links." -#~ msgstr "face ca pwd să urmeze legăturile simbolice." - -#~ msgid "Runs COMMAND with ARGS ignoring shell functions. If you have a shell" -#~ msgstr "Rulează COMANDA cu PARAMETRI ignorând funcţiile shellului. Dacă aveţi" - -#~ msgid "function called `ls', and you wish to call the command `ls', you can" -#~ msgstr "o funcţie a shellului care se cheamă `ls', şi doriţi sa numiţi comanda `ls', puteţi" - -#~ msgid "say \"command ls\". If the -p option is given, a default value is used" -#~ msgstr "spune \"command ls\". Daca este dată opţiunea -p este folosită o valoare implicită" - -#~ msgid "for PATH that is guaranteed to find all of the standard utilities. If" -#~ msgstr "pentru CALE care e garantată să găsească toate utilitarele standard. Dacă" - -#~ msgid "the -V or -v option is given, a string is printed describing COMMAND." -#~ msgstr "sunt date opţiunile -V sau -v, este tipărit un şir care descrie COMANDA." - -#~ msgid "The -V option produces a more verbose description." -#~ msgstr "Opţiunea -V produce o descriere mult mai detaliată." - -#~ msgid "Declare variables and/or give them attributes. If no NAMEs are" -#~ msgstr "Declară variabile şi/sau le dă atribute. Dacă nu e dat nici un NUME," - -#~ msgid "given, then display the values of variables instead. The -p option" -#~ msgstr "va afişa în loc valorile variabilelor. Opţiunea -p" - -#~ msgid "will display the attributes and values of each NAME." -#~ msgstr "va afişa atributele şi valorile fiecărui NUME." - -#~ msgid "The flags are:" -#~ msgstr "Marcajele(flags) sunt:" - -#~ msgid " -a\tto make NAMEs arrays (if supported)" -#~ msgstr " -a\tpentru a crea intervale de NUME (dacă este suportat)" - -#~ msgid " -f\tto select from among function names only" -#~ msgstr " -f\tpentru a selecta doar prin numele funcţiilor" - -#~ msgid " -F\tto display function names without definitions" -#~ msgstr " -F\tpentru a afişa numele funcţiilor fără definiţii" - -#~ msgid " -r\tto make NAMEs readonly" -#~ msgstr " -r\tpentru a face NUME doar în citire (readonly)" - -#~ msgid " -x\tto make NAMEs export" -#~ msgstr " -x\tpentru a exporta NUME" - -#~ msgid " -i\tto make NAMEs have the `integer' attribute set" -#~ msgstr " -i\tpentru ca NUME să aibe setat atributul de `integer'" - -#~ msgid "Variables with the integer attribute have arithmetic evaluation (see" -#~ msgstr "Variabilele cu atributul integer au evaluarea aritmetică (vezi" - -#~ msgid "`let') done when the variable is assigned to." -#~ msgstr "`let') efectuată când îi este atribuită variabila." - -#~ msgid "When displaying values of variables, -f displays a function's name" -#~ msgstr "La afişarea valorilor variabilelor, -f afişează numele funcţiei" - -#~ msgid "and definition. The -F option restricts the display to function" -#~ msgstr "şi definiţia. Opţiunea -F restrânge afişarea doar la" - -#~ msgid "name only." -#~ msgstr "numele funcţiei." - -#~ msgid "Using `+' instead of `-' turns off the given attribute instead. When" -#~ msgstr "Folosirea `+' în locul `-' dezactivează atributul dat. Când" - -#~ msgid "used in a function, makes NAMEs local, as with the `local' command." -#~ msgstr "este folosit într-o funcţie, se consideră NUME locale, ca şi în comanda `local'." - -#~ msgid "Obsolete. See `declare'." -#~ msgstr "Învechit. Vezi `declare'." - -#~ msgid "Create a local variable called NAME, and give it VALUE. LOCAL" -#~ msgstr "Creează o variabilă locală denumită NUME, şi îi atribuie VALOARE. LOCAL" - -#~ msgid "have a visible scope restricted to that function and its children." -#~ msgstr "să aibă un domeniu vizibil restrâns la acea funcţie şi copilul (children) ei." - -#~ msgid "Output the ARGs. If -n is specified, the trailing newline is" -#~ msgstr "Afişează (output) ARGumenetele. Dacă -n este specificat,sfârşitul de linie este" - -#~ msgid "suppressed. If the -e option is given, interpretation of the" -#~ msgstr "suprimat. Dacă este dată opţiunea -e, interpretarea" - -#~ msgid "following backslash-escaped characters is turned on:" -#~ msgstr "următorului caracterelor speciale (backslash-escaped) este activată:" - -#~ msgid "\t\\a\talert (bell)" -#~ msgstr "\t\\a\talertă (clopoţel (bell))" - -#~ msgid "\t\\b\tbackspace" -#~ msgstr "\t\\b\tbackspace" - -#~ msgid "\t\\c\tsuppress trailing newline" -#~ msgstr "\t\\c\tsuprimă sfârşitul de linie" - -#~ msgid "\t\\E\tescape character" -#~ msgstr "\t\\E\tcaracterul escape" - -#~ msgid "\t\\f\tform feed" -#~ msgstr "\t\\f\ttrecere la început de linie (form feed)" - -#~ msgid "\t\\n\tnew line" -#~ msgstr "\t\\n\tlinie nouă" - -#~ msgid "\t\\r\tcarriage return" -#~ msgstr "\t\\r\tretur de car (carriage return)" - -#~ msgid "\t\\t\thorizontal tab" -#~ msgstr "\t\\t\ttab orizontal" - -#~ msgid "\t\\v\tvertical tab" -#~ msgstr "\t\\v\ttab vertical" - -#~ msgid "\t\\\\\tbackslash" -#~ msgstr "\t\\\\\tbackslash" - -#~ msgid "\t\\num\tthe character whose ASCII code is NUM (octal)." -#~ msgstr "\t\\num\tcaracterul al cărui cod ASCII este NUM (octal)." - -#~ msgid "You can explicitly turn off the interpretation of the above characters" -#~ msgstr "Puteţi dezactiva explicit interpretarea caracterelor de mai sus" - -#~ msgid "with the -E option." -#~ msgstr "cu ajutorul opţiunii -E." - -#~ msgid "Output the ARGs. If -n is specified, the trailing newline is suppressed." -#~ msgstr "Afişează (output) ARGumentele. Dacă este specificat -n, sfârşitul de linie este suprimat." - -#~ msgid "Enable and disable builtin shell commands. This allows" -#~ msgstr "Activează şi dezactivează comenzile interne ale shell-ului. Aceasta vă" - -#~ msgid "you to use a disk command which has the same name as a shell" -#~ msgstr "permite utilizarea unei comenzi disk care să aibă acelaşi nume ca şi cea " - -#~ msgid "builtin. If -n is used, the NAMEs become disabled; otherwise" -#~ msgstr "internă a shell-ului. Dacă este folosit -n, NUME devine dezactivat; în caz contrar" - -#~ msgid "NAMEs are enabled. For example, to use the `test' found on your" -#~ msgstr "NUME este activat. De exemplu, pentru a folosi funcţia `test; aflată în" - -#~ msgid "path instead of the shell builtin version, type `enable -n test'." -#~ msgstr "calea(path) dumneavoastră în loc de versiunea internă, tastaţi `enable -n test'." - -#~ msgid "On systems supporting dynamic loading, the -f option may be used" -#~ msgstr "Pe sistemele care suportă încărcarea dinamică, opţiunea -f poate fi folosită" - -#~ msgid "to load new builtins from the shared object FILENAME. The -d" -#~ msgstr "pentru a încărca noile elemente (builtins) din obiectul distribuit (shared object) NUME_FIŞIER. Opţiunea -d" - -#~ msgid "option will delete a builtin previously loaded with -f. If no" -#~ msgstr "va şterge un element (builtin) deja încărcat cu -f. Dacă nu" - -#~ msgid "non-option names are given, or the -p option is supplied, a list" -#~ msgstr "este dat nici un nume non-opţiune, sau este prezentă opţiunea -p, o listă" - -#~ msgid "of builtins is printed. The -a option means to print every builtin" -#~ msgstr "de elemente(builtins) este tipărită. Opţiunea -a înseamnă tipărirea fiecărui " - -#~ msgid "with an indication of whether or not it is enabled. The -s option" -#~ msgstr "element(builtin) cu o indicaţie dacă este sau nu activ. Opţiunea -s" - -#~ msgid "restricts the output to the Posix.2 `special' builtins. The -n" -#~ msgstr "restricţionează output-ul la elementele(builtins) `speciale' Posix 2. Opţiunea" - -#~ msgid "option displays a list of all disabled builtins." -#~ msgstr "-n afişează o listă a tuturor elementelor(builtins) inactive." - -#~ msgid "Read ARGs as input to the shell and execute the resulting command(s)." -#~ msgstr "Citeşte ARGumente ca input al shell-ului şi execută comanda(comenzile) rezultată(e)." - -#~ msgid "Getopts is used by shell procedures to parse positional parameters." -#~ msgstr "Getopts este folosit de procedurile de shell pentru a analiza(parse) parametrii poziţionali." - -#~ msgid "OPTSTRING contains the option letters to be recognized; if a letter" -#~ msgstr "OPTSTRING conţine literele optiunilor care vor fi recunoscute; dacă o literă" - -#~ msgid "is followed by a colon, the option is expected to have an argument," -#~ msgstr "e urmată de două puncte, opţiunea va trebui să aibă un parametru," - -#~ msgid "which should be separated from it by white space." -#~ msgstr "care va fi separat de aceasta printr-un spaţiu." - -#~ msgid "Each time it is invoked, getopts will place the next option in the" -#~ msgstr "De fiecare dată când este invocat, getopts va pune următoarea opţiune în" - -#~ msgid "shell variable $name, initializing name if it does not exist, and" -#~ msgstr "variabile de shell $name, iniţializând name dacă nu există, şi" - -#~ msgid "the index of the next argument to be processed into the shell" -#~ msgstr "indexul următorilor parametri care vor fi procesaţi în variabila" - -#~ msgid "variable OPTIND. OPTIND is initialized to 1 each time the shell or" -#~ msgstr "de shell OPTIND. OPTIND este iniţializată cu 1 de fiecare dată când shellul sau" - -#~ msgid "a shell script is invoked. When an option requires an argument," -#~ msgstr "un script al shellului este invocat. Când opţiunea necesită un parametru," - -#~ msgid "getopts places that argument into the shell variable OPTARG." -#~ msgstr "getopts plasează acest parametru în variabila de shell OPTARG." - -#~ msgid "getopts reports errors in one of two ways. If the first character" -#~ msgstr "getopts raportează erori în două feluri. Dacă primul caracter" - -#~ msgid "of OPTSTRING is a colon, getopts uses silent error reporting. In" -#~ msgstr "al OPTSTRING este 'două puncte', getopts va folosi raportarea silenţioasă. În" - -#~ msgid "this mode, no error messages are printed. If an illegal option is" -#~ msgstr "acest mod, nici un mesaj de eroare nu este tipărit. Dacă o opţiune ilegală este" - -#~ msgid "seen, getopts places the option character found into OPTARG. If a" -#~ msgstr "întâlnită, getopts plasează caracterul opţiunii în OPTARG. Dacă un" - -#~ msgid "required argument is not found, getopts places a ':' into NAME and" -#~ msgstr "parametru necesar nu este întâlnit, getopts pune ':' la NUME şi" - -#~ msgid "sets OPTARG to the option character found. If getopts is not in" -#~ msgstr "setează OPTARG la caracterul întâlnit al opţiunii. Dacă getopts nu este în" - -#~ msgid "silent mode, and an illegal option is seen, getopts places '?' into" -#~ msgstr "modul silenţios, şi se întâlneşte o opţiune ilegală, getopts pune '?' în" - -#~ msgid "NAME and unsets OPTARG. If a required option is not found, a '?'" -#~ msgstr "NUME şi desetează OPTARG. Dacă o opţiune necesară nu este întâlnită, un '?'" - -#~ msgid "is placed in NAME, OPTARG is unset, and a diagnostic message is" -#~ msgstr "va fi pus în NUME, OPTARG va fi desetat, şi un mesaj de diagnosticare va fi" - -#~ msgid "printed." -#~ msgstr "afişat." - -#~ msgid "If the shell variable OPTERR has the value 0, getopts disables the" -#~ msgstr "Dacă variabila de shell OPTERR are valoarea 0, getopts dezactivează" - -#~ msgid "printing of error messages, even if the first character of" -#~ msgstr "afişarea mesajelor de eroare, chiar daca primul caracter al" - -#~ msgid "OPTSTRING is not a colon. OPTERR has the value 1 by default." -#~ msgstr "OPTSTRING nu este 'două puncte'. OPTERR are implicit valoarea 1." - -#~ msgid "Getopts normally parses the positional parameters ($0 - $9), but if" -#~ msgstr "Getopts analizează(parses) normal parametrii poziţionali ($0 - $9), dar dacă" - -#~ msgid "more arguments are given, they are parsed instead." -#~ msgstr "sunt daţi mai mulţi parametri, aceştia sunt analizaţi în loc." - -#~ msgid "Exec FILE, replacing this shell with the specified program." -#~ msgstr "Exec FIŞIER, înlocuind acest shell cu un program specificat." - -#~ msgid "If FILE is not specified, the redirections take effect in this" -#~ msgstr "Dacă FIŞIER nu este specificat, redirectările au efect în acest" - -#~ msgid "shell. If the first argument is `-l', then place a dash in the" -#~ msgstr "shell. Dacă primul parametru este `-l', atunci se va plasa o liniuţă în" - -#~ msgid "zeroth arg passed to FILE, as login does. If the `-c' option" -#~ msgstr "al zero-ulea arg pasat FIŞIERului, cum face login-ul. Dacă opţiunea `-c'" - -#~ msgid "is supplied, FILE is executed with a null environment. The `-a'" -#~ msgstr "este furnizată, FIŞIER este executat cu un mediu null. Opţiunea" - -#~ msgid "option means to make set argv[0] of the executed process to NAME." -#~ msgstr "'-a' înseamnă setarea argv[0] a procesului executat la NUME." - -#~ msgid "If the file cannot be executed and the shell is not interactive," -#~ msgstr "Dacă fişierul nu poate fi executat şi shell-ul nu este interactiv," - -#~ msgid "then the shell exits, unless the variable \"no_exit_on_failed_exec\"" -#~ msgstr "atunci shell-ul iese, dacă variabila \"no_exit_on_failed_exec\"" - -#~ msgid "is set." -#~ msgstr "nu este setată." - -#~ msgid "is that of the last command executed." -#~ msgstr "este aceea a ultimei comenzi executate." - -#~ msgid "FIRST and LAST can be numbers specifying the range, or FIRST can be a" -#~ msgstr "PRIMUL şi ULTIMUL pot fi numere care specifică intervalul, sau PRIMUL poate fi" - -#~ msgid "string, which means the most recent command beginning with that" -#~ msgstr "un şir care reprezintă cea mai recentă comandă care începea cu acest" - -#~ msgid "string." -#~ msgstr "şir." - -#~ msgid " -e ENAME selects which editor to use. Default is FCEDIT, then EDITOR," -#~ msgstr " -e ENUME selectează editorul de folosit. implicit este FCEDIT, apoi EDITOR," - -#~ msgid " then the editor which corresponds to the current readline editing" -#~ msgstr " apoi editorul care corespunde cu modul de editare al liniei(readline)" - -#~ msgid " mode, then vi." -#~ msgstr " curente, şi apoi vi." - -#~ msgid " -l means list lines instead of editing." -#~ msgstr " -l reprezintă afişarea liniilor în locul editării acestora." - -#~ msgid " -n means no line numbers listed." -#~ msgstr " -n înseamnă că nu vor fi afişate numerele liniilor." - -#~ msgid " -r means reverse the order of the lines (making it newest listed first)." -#~ msgstr " -r reprezintă inversarea ordinii liniilor (cele mai noi fiind listate primele)." - -#~ msgid "With the `fc -s [pat=rep ...] [command]' format, the command is" -#~ msgstr "Cu `fc -s [pat=rep ...] [comandă]' format, comanda este" - -#~ msgid "re-executed after the substitution OLD=NEW is performed." -#~ msgstr "reexecutată după ce s-a produs substituţia VECHI=NOU." - -#~ msgid "A useful alias to use with this is r='fc -s', so that typing `r cc'" -#~ msgstr "Un alias folositor este r='fc -s', aşa că tastând `r cc'" - -#~ msgid "runs the last command beginning with `cc' and typing `r' re-executes" -#~ msgstr "se rulează ultima comandă care începe cu `cc' şi tastând `r' se reexecută" - -#~ msgid "Place JOB_SPEC in the foreground, and make it the current job. If" -#~ msgstr "Aduce JOB_SPEC în prim plan(foreground), ?şi îl face jobul curent. Dacă" - -#~ msgid "JOB_SPEC is not present, the shell's notion of the current job is" -#~ msgstr "JOB_SPEC nu este prezent, este folosită noţiunea shell-ului despre jobul" - -#~ msgid "used." -#~ msgstr "curent." - -#~ msgid "Place JOB_SPEC in the background, as if it had been started with" -#~ msgstr "Pune JOB_SPEC în fundal(background), ca şi cum ar fi fost pornit cu" - -#~ msgid "`&'. If JOB_SPEC is not present, the shell's notion of the current" -#~ msgstr "`&'. Dacă JOB_SPEC nu este prezent, va fi folosită noţiunea shell-ului despre" - -#~ msgid "job is used." -#~ msgstr "jobul curent." - -#~ msgid "For each NAME, the full pathname of the command is determined and" -#~ msgstr "Pentru fiecare NUME, calea întreagă a comenzii este determinată şi" - -#~ msgid "remembered. If the -p option is supplied, PATHNAME is used as the" -#~ msgstr "reţinută. Daca este furnizată şi opţiunea -p, CALE este folosită ca şi" - -#~ msgid "full pathname of NAME, and no path search is performed. The -r" -#~ msgstr "cale de căutare întreagă a NUMElui, şi nu se mai face căutare în calea curentă. " - -#~ msgid "option causes the shell to forget all remembered locations. If no" -#~ msgstr "Opţiunea -r face ca shell-ul să uite toate locaţiile reţinute. Dacă nu" - -#~ msgid "arguments are given, information about remembered commands is displayed." -#~ msgstr "este furnizat nici un parametru sunt afişate informaţii despre comenzile reţinute." - -#~ msgid "Display helpful information about builtin commands. If PATTERN is" -#~ msgstr "Se afişează informaţii folositoare despre comenzile interne. Dacă TIPAR este" - -#~ msgid "specified, gives detailed help on all commands matching PATTERN," -#~ msgstr "specificat, se dă ajutor detaliat pentru toate comenzile potrivite TIPARului," - -#~ msgid "otherwise a list of the builtins is printed." -#~ msgstr "în caz contrar se va tipări o listă a comenzilor interne." - -#~ msgid "Display the history list with line numbers. Lines listed with" -#~ msgstr "Afişează istoricul cu numerele liniilor. Liniile listate cu" - -#~ msgid "with a `*' have been modified. Argument of N says to list only" -#~ msgstr "un `*' au fost modificate. Parametrul N va aduce afişarea doar " - -#~ msgid "the last N lines. The -c option causes the history list to be" -#~ msgstr "a ultimelor N linii. Opţiunea -c face ca lista istoricului să fie" - -#~ msgid "cleared by deleting all of the entries. The `-w' option writes out the" -#~ msgstr "ştearsă prin ştergerea tuturor intrărilor. Opţiunea `-w' scrie" - -#~ msgid "current history to the history file; `-r' means to read the file and" -#~ msgstr "istoricul curent în fişierul de istoric; `-r' înseamnă citirea fişierului şi" - -#~ msgid "append the contents to the history list instead. `-a' means" -#~ msgstr "adăugare a conţinutului listei istoricului în loc. `-a' înseamnă" - -#~ msgid "to append history lines from this session to the history file." -#~ msgstr "adăugare a liniilor istoricului din această sesiune la fişierul de istoric." - -#~ msgid "Argument `-n' means to read all history lines not already read" -#~ msgstr "Parametrul `-n' înseamnă citirea tuturor liniilor istoricului care nu sunt deja citite" - -#~ msgid "from the history file and append them to the history list. If" -#~ msgstr "din fişierul de istoric şi adăugarea lor la lista istoricului. Dacă" - -#~ msgid "FILENAME is given, then that is used as the history file else" -#~ msgstr "este dat NUME_FIŞIER, acesta va fi utilizat ca fişier de istoric, în caz contrar" - -#~ msgid "if $HISTFILE has a value, that is used, else ~/.bash_history." -#~ msgstr "dacă $HISTFILE are valoare, aceasta este utilizată, altfel ~/.bash_history." - -#~ msgid "If the -s option is supplied, the non-option ARGs are appended to" -#~ msgstr "Dacă este furnizată opţiunea -s ARGumentele non-opţiuni sunt adăugate la" - -#~ msgid "the history list as a single entry. The -p option means to perform" -#~ msgstr "lista istoricului ca intrări singure. Opţiunea -p înseamnă" - -#~ msgid "history expansion on each ARG and display the result, without storing" -#~ msgstr "expandarea istoricului la fiecare ARGument şi afişarea rezultatului, fără a stoca" - -#~ msgid "anything in the history list." -#~ msgstr "nimic în lista istoricului." - -#~ msgid "Lists the active jobs. The -l option lists process id's in addition" -#~ msgstr "Listează joburile active. Opţiunea -l listează id-urile proceselor în plus faţă de" - -#~ msgid "to the normal information; the -p option lists process id's only." -#~ msgstr "informaţiile normale; optiunea -p listează doar id-urile proceselor." - -#~ msgid "If -n is given, only processes that have changed status since the last" -#~ msgstr "Dacă este dat -n,sunt afişate doar procesele care şi-au schimbat starea" - -#~ msgid "notification are printed. JOBSPEC restricts output to that job. The" -#~ msgstr "de la ultima notificare. JOBSPEC restricţionează output-ul spre acel job. " - -#~ msgid "-r and -s options restrict output to running and stopped jobs only," -#~ msgstr "Opţiunile -r şi -s restricţionează output-ul doar spre joburile care rulează şi respectiv," - -#~ msgid "respectively. Without options, the status of all active jobs is" -#~ msgstr "care sunt stopate. Fără opţiuni, este afişată starea joburilor" - -#~ msgid "printed. If -x is given, COMMAND is run after all job specifications" -#~ msgstr "active. Dacă este furnizat -x, COMANDĂ este rulată după ce toate specificaţiile" - -#~ msgid "that appear in ARGS have been replaced with the process ID of that job's" -#~ msgstr "joburilor care aparîn ARGS au fost înlocuite cu ID-urile proceselor a" - -#~ msgid "process group leader." -#~ msgstr "liderului de grup al proceselor acelui job(process group-leader)." - -#~ msgid "Removes each JOBSPEC argument from the table of active jobs." -#~ msgstr "Şterge fiecare parametru JOBSPEC din tabela de joburi active." - -#~ msgid "Send the processes named by PID (or JOB) the signal SIGSPEC. If" -#~ msgstr "Trimite proceselor numite de PID (sau JOB) semnalul SIGSPEC. Dacă" - -#~ msgid "SIGSPEC is not present, then SIGTERM is assumed. An argument of `-l'" -#~ msgstr "SIGSPEC nu este prezent, atunci se asumă SIGTERM. Parametrul `-l'" - -#~ msgid "lists the signal names; if arguments follow `-l' they are assumed to" -#~ msgstr "listează numele semnalelor; dacă urmează parametri după `-l' se asumă că" - -#~ msgid "be signal numbers for which names should be listed. Kill is a shell" -#~ msgstr "sunt numere de semnale pentru care numele ar trebui listate. Kill este comandă" - -#~ msgid "builtin for two reasons: it allows job IDs to be used instead of" -#~ msgstr "internă a sehll-ului din două motive: permite utilizarea ID-urilor de joburi în locul" - -#~ msgid "process IDs, and, if you have reached the limit on processes that" -#~ msgstr "ID-urilor de procese, şi, daca s-a ajuns la limita de procese care " - -#~ msgid "you can create, you don't have to start a process to kill another one." -#~ msgstr "se pot crea, nu mai e nevoie să se pornească un proces pentru a omorî altul." - -#~ msgid "Each ARG is an arithmetic expression to be evaluated. Evaluation" -#~ msgstr "Fiecare ARGument este o expresie aritmetică ce va fi evaluată. Evaluarea" - -#~ msgid "is done in long integers with no check for overflow, though division" -#~ msgstr "se face în întregi lungi (long integers) fără verificări de overflow, totuşi împărţirea" - -#~ msgid "by 0 is trapped and flagged as an error. The following list of" -#~ msgstr "la 0 este reţinută şi marcată ca eroare. Următoarea listă de" - -#~ msgid "operators is grouped into levels of equal-precedence operators." -#~ msgstr "operatori este grupată în nivele de operatori 'equal-precedence'." - -#~ msgid "The levels are listed in order of decreasing precedence." -#~ msgstr "Nivelele sunt listate în ordinea inversă a întâietăţii." - -#~ msgid "\t-, +\t\tunary minus, plus" -#~ msgstr "\t-, +\t\tplus, minus unar" - -#~ msgid "\t!, ~\t\tlogical and bitwise negation" -#~ msgstr "\t!, ~\t\tnegare logică" - -#~ msgid "\t*, /, %\t\tmultiplication, division, remainder" -#~ msgstr "\t*, /, %\t\tînmulţire, împărţire, rest" - -#~ msgid "\t+, -\t\taddition, subtraction" -#~ msgstr "\t+, -\t\tadăugare, scădere" - -#~ msgid "\t<<, >>\t\tleft and right bitwise shifts" -#~ msgstr "\t<<, >>\t\toperaţii pe un bit la stânga şi la dreapta" - -#~ msgid "\t<=, >=, <, >\tcomparison" -#~ msgstr "\t<=, >=, <, >\tcomparare" - -#~ msgid "\t==, !=\t\tequality, inequality" -#~ msgstr "\t==, !=\t\tegalitate, inegalitate" - -#~ msgid "\t&\t\tbitwise AND" -#~ msgstr "\t&\t\tŞI pe un bit" - -#~ msgid "\t^\t\tbitwise XOR" -#~ msgstr "\t^\t\tSAU exclusiv(XOR) pe un bit" - -#~ msgid "\t|\t\tbitwise OR" -#~ msgstr "\t|\t\tSAU pe un bit" - -#~ msgid "\t&&\t\tlogical AND" -#~ msgstr "\t&&\t\tŞI logic" - -#~ msgid "\t||\t\tlogical OR" -#~ msgstr "\t||\t\tSAU logic" - -#~ msgid "\texpr ? expr : expr" -#~ msgstr "\texpr ? expr : expr" - -#~ msgid "\t\t\tconditional expression" -#~ msgstr "\t\t\texpresie condiţională" - -#~ msgid "\t=, *=, /=, %=," -#~ msgstr "\t=, *=, /=, %=," - -#~ msgid "\t+=, -=, <<=, >>=," -#~ msgstr "\t+=, -=, <<=, >>=," - -#~ msgid "\t&=, ^=, |=\tassignment" -#~ msgstr "\t&=, ^=, |=\tatribuire" - -#~ msgid "is replaced by its value (coerced to a long integer) within" -#~ msgstr "este înlocuit de valoarea sa (trunchiată la un întreg lung) într-o" - -#~ msgid "an expression. The variable need not have its integer attribute" -#~ msgstr "expresie. Variabila nu trebuie să aibă atributul său întreg" - -#~ msgid "turned on to be used in an expression." -#~ msgstr "activat pentru a fi folosită într-o expresie." - -#~ msgid "Operators are evaluated in order of precedence. Sub-expressions in" -#~ msgstr "Operatorii sunt evaluaţi în ordinea întâietăţii. Subexpresiile din" - -#~ msgid "parentheses are evaluated first and may override the precedence" -#~ msgstr "paranteze sunt evaluate primele şi pot suprascrie regulile de" - -#~ msgid "rules above." -#~ msgstr "întâietate de mai sus." - -#~ msgid "If the last ARG evaluates to 0, let returns 1; 0 is returned" -#~ msgstr "Dacă ultimul ARGument este evaluat la 0 let returnează 1; 0 este returnat" - -#~ msgid "otherwise." -#~ msgstr "în caz contrar." - -#~ msgid "One line is read from the standard input, and the first word is" -#~ msgstr "Linia este citită de la intrarea(input) standard, şi primul cuvânt este" - -#~ msgid "assigned to the first NAME, the second word to the second NAME, and so" -#~ msgstr "atribuit primului NUME, al doilea cuvânt celui de-al doilea NUME, şi aşa" - -#~ msgid "on, with leftover words assigned to the last NAME. Only the characters" -#~ msgstr "mai departe, cu cele rămase atribuite ultimelor NUME. Doar caracterele" - -#~ msgid "found in $IFS are recognized as word delimiters. The return code is" -#~ msgstr "găsite în $IFS sunt recunoscute ca delimitatoare de cuvinte. Codul returnat este" - -#~ msgid "zero, unless end-of-file is encountered. If no NAMEs are supplied, the" -#~ msgstr "zero, cu excepţia cazului în care este întâlnit sfârşit de fişier. Dacă nici un NUME" - -#~ msgid "line read is stored in the REPLY variable. If the -r option is given," -#~ msgstr "nu este furnizat, linia citită este stocată în variabila RĂSPUNS. Dacă e dată " - -#~ msgid "this signifies `raw' input, and backslash escaping is disabled. If" -#~ msgstr "opţiunea -r, aceasta înseamnă intrare `brută' şi caractere speciale dezactivate." - -#~ msgid "the `-p' option is supplied, the string supplied as an argument is" -#~ msgstr "Dacă este dată opţiunea `-p', şirul furnizat ca argument este" - -#~ msgid "output without a trailing newline before attempting to read. If -a is" -#~ msgstr "trimis la output cu linie nouă înainte de citire. Dacă -a este" - -#~ msgid "supplied, the words read are assigned to sequential indices of ARRAY," -#~ msgstr "furnizată, cuvintele citite sunt atribuite indicilor secvenţiali de INTERVAL," - -#~ msgid "starting at zero. If -e is supplied and the shell is interactive," -#~ msgstr "începând de la zero. Dacă -e este furnizat şi shell-ul este interactiv," - -#~ msgid "readline is used to obtain the line." -#~ msgstr "se va citi linia pentru obţinerea acesteia." - -#~ msgid "Causes a function to exit with the return value specified by N. If N" -#~ msgstr "Cauzează terminarea unei funcţii cu valoarea specificată de N. Dacă N" - -#~ msgid "is omitted, the return status is that of the last command." -#~ msgstr "este omis, starea returnată va fi aceea a ultimei comenzi." - -#~ msgid " -a Mark variables which are modified or created for export." -#~ msgstr " -a Marchează variabilele de modificat sau create pentru export." - -#~ msgid " -b Notify of job termination immediately." -#~ msgstr " -b Notificare de terminare de job imediată." - -#~ msgid " -e Exit immediately if a command exits with a non-zero status." -#~ msgstr " -e Iese imediat dacă există o comandă cu stare diferită de zero." - -#~ msgid " -f Disable file name generation (globbing)." -#~ msgstr " -f Inhibă generarea de nume de fişiere (globalizare)." - -#~ msgid " -h Remember the location of commands as they are looked up." -#~ msgstr " -h Reţine locaţiile comenzilor pe măsura verificării lor." - -#~ msgid " -i Force the shell to be an \"interactive\" one. Interactive shells" -#~ msgstr " -i Forţează shell-ul să fie unul \"interactiv\". Shell-urile interactive" - -#~ msgid " always read `~/.bashrc' on startup." -#~ msgstr " citesc întotdeauna `~/.bashrc' la rulare." - -#~ msgid " -k All assignment arguments are placed in the environment for a" -#~ msgstr " -k Toţi parametrii atribuirii sunt plasaţi în mediu pentru o" - -#~ msgid " command, not just those that precede the command name." -#~ msgstr " comandă, nu doar cele care preced numele comenzii." - -#~ msgid " -m Job control is enabled." -#~ msgstr " -m Controlul job-urilor este activat." - -#~ msgid " -n Read commands but do not execute them." -#~ msgstr " -n Citeşte comenzile, dar nu le execută." - -#~ msgid " -o option-name" -#~ msgstr " -o nume-opţiune" - -#~ msgid " Set the variable corresponding to option-name:" -#~ msgstr " Setează variabila corespunzătoare numelui opţiunii:" - -#~ msgid " allexport same as -a" -#~ msgstr " allexport la fel ca -a" - -#~ msgid " braceexpand same as -B" -#~ msgstr " braceexpand la fel ca -B" - -#~ msgid " emacs use an emacs-style line editing interface" -#~ msgstr " emacs foloseşte o interfaţă de editare de linii stil emacs" - -#~ msgid " errexit same as -e" -#~ msgstr " errexit la fel ca -e" - -#~ msgid " hashall same as -h" -#~ msgstr " hashall la fel ca -h" - -#~ msgid " histexpand same as -H" -#~ msgstr " histexpand la fel ca -H" - -#~ msgid " ignoreeof the shell will not exit upon reading EOF" -#~ msgstr " ignoreeof shellul nu va ieşi după citirea EOF" - -#~ msgid " interactive-comments" -#~ msgstr " interactive-comments" - -#~ msgid " allow comments to appear in interactive commands" -#~ msgstr " permite comentariilor să apară în comenzi interactive." - -#~ msgid " keyword same as -k" -#~ msgstr " keyword la fel ca -k" - -#~ msgid " monitor same as -m" -#~ msgstr " monitor sla fel ca -m" - -#~ msgid " noclobber same as -C" -#~ msgstr " noclobber la fel ca -C" - -#~ msgid " noexec same as -n" -#~ msgstr " noexec la fel ca -n" - -#~ msgid " noglob same as -f" -#~ msgstr " noglob la fel ca -f" - -#~ msgid " notify save as -b" -#~ msgstr " notify la fel ca -b" - -#~ msgid " nounset same as -u" -#~ msgstr " nounset la fel ca -u" - -#~ msgid " onecmd same as -t" -#~ msgstr " onecmd la fel ca -t" - -#~ msgid " physical same as -P" -#~ msgstr " physical la fel ca -P" - -#~ msgid " posix change the behavior of bash where the default" -#~ msgstr " posix schimbă comportamentul bash în care implicit" - -#~ msgid " operation differs from the 1003.2 standard to" -#~ msgstr " operaţiile diferă de standardul 1003.2 pentru" - -#~ msgid " match the standard" -#~ msgstr " a se potrivi standardului" - -#~ msgid " privileged same as -p" -#~ msgstr " privileged la fel ca -p" - -#~ msgid " verbose same as -v" -#~ msgstr " verbose la fel ca -v" - -#~ msgid " vi use a vi-style line editing interface" -#~ msgstr " vi foloseşte o interfaţă de editare de linii stil vi" - -#~ msgid " xtrace same as -x" -#~ msgstr " xtrace la fel ca -x" - -#~ msgid " -p Turned on whenever the real and effective user ids do not match." -#~ msgstr " -p Activat de fiecare dată când id-urile de user real şi efectiv nu se potrivesc." - -#~ msgid " Disables processing of the $ENV file and importing of shell" -#~ msgstr " Inhibă procesarea fişierului $ENV şi importarea funcţiilor" - -#~ msgid " functions. Turning this option off causes the effective uid and" -#~ msgstr " shell-ului. Dezactivarea acestei opţiuni face ca uid-ul şi gid-ul" - -#~ msgid " gid to be set to the real uid and gid." -#~ msgstr " efectiv să fie setate drept uid-ul şi gid-ul real." - -#~ msgid " -t Exit after reading and executing one command." -#~ msgstr " -t Iese după citirea şi executarea unei comenzi." - -#~ msgid " -u Treat unset variables as an error when substituting." -#~ msgstr " -u Tratează variabilele nesetate drept erori în substituţie." - -#~ msgid " -v Print shell input lines as they are read." -#~ msgstr " -v Tipăreşte liniile de intrare(input) ale shell-ului pe măsură ce sunt citite." - -#~ msgid " -x Print commands and their arguments as they are executed." -#~ msgstr " -x Tipăreşte comenzile şi parametrii acestora pe măsura executării." - -#~ msgid " -B the shell will perform brace expansion" -#~ msgstr " -B shell-ul va executa expansiune de legături(brace)" - -#~ msgid " -H Enable ! style history substitution. This flag is on" -#~ msgstr " -H Activează substituţia istoricului stil ! . Acest marcaj(flag) este activat" - -#~ msgid " by default." -#~ msgstr " în mod implicit." - -#~ msgid " -C If set, disallow existing regular files to be overwritten" -#~ msgstr " -C Dacă este setat, nu va permite suprascrierea fişierelor existente" - -#~ msgid " by redirection of output." -#~ msgstr " prin redirectarea output-ului." - -#~ msgid " -P If set, do not follow symbolic links when executing commands" -#~ msgstr " -P Dacă este setat, nu va urma legăturile simbolice în executarea comenzilor" - -#~ msgid " such as cd which change the current directory." -#~ msgstr " precum cd care schimbă directorul curent." - -#~ msgid "Using + rather than - causes these flags to be turned off. The" -#~ msgstr "Folosind + în locul lui - provoacă dezactivarea acestor marcaje(flags)." - -#~ msgid "flags can also be used upon invocation of the shell. The current" -#~ msgstr " Marcajele pot fi folosite de asemenea pentru invocarea shell-ului. Setul" - -#~ msgid "set of flags may be found in $-. The remaining n ARGs are positional" -#~ msgstr "curent de marcaje(flags) poate fi găsit în $-. ARGumentele n rămase sunt" - -#~ msgid "parameters and are assigned, in order, to $1, $2, .. $n. If no" -#~ msgstr "parametri poziţionali şi sunt atribuiţi, în ordine, lui $1, $2, .. $n. Dacă nu" - -#~ msgid "ARGs are given, all shell variables are printed." -#~ msgstr "este dat nici un ARGument, sunt tipărite toate variabilele shell-ului." - -#~ msgid "For each NAME, remove the corresponding variable or function. Given" -#~ msgstr "Pentru fiecare NUME, şterge variabila sau funcţia corespunzătoare. Dacă se" - -#~ msgid "the `-v', unset will only act on variables. Given the `-f' flag," -#~ msgstr "dă `-v', desetarea(unset) va acţiona numai pe variabile. Dacă se dă `-f'," - -#~ msgid "unset will only act on functions. With neither flag, unset first" -#~ msgstr "desetarea(unset) va acţiona numai pe funcţii. Fără nici un marcaj(flag), " - -#~ msgid "tries to unset a variable, and if that fails, then tries to unset a" -#~ msgstr "desetarea(unset) va încerca întâi pe variabile, şi dacă eşueazăm va încerca" - -#~ msgid "function. Some variables (such as PATH and IFS) cannot be unset; also" -#~ msgstr "pe o funcţie. Anumite variabile ( precum PATH şi IFS) nu pot fi desetate(unset);" - -#~ msgid "see readonly." -#~ msgstr "de asemenea, vedeţi readonly." - -#~ msgid "NAMEs are marked for automatic export to the environment of" -#~ msgstr "NUMEle sunt marcate pentru exportul automat către mediul" - -#~ msgid "subsequently executed commands. If the -f option is given," -#~ msgstr "comenzilor executate ulterior. Dacă este dată opţiunea -f," - -#~ msgid "the NAMEs refer to functions. If no NAMEs are given, or if `-p'" -#~ msgstr "NUMEle se referă la funcţii. Dacă nu este dat nici un NUME, sau este dat `-p'`," - -#~ msgid "is given, a list of all names that are exported in this shell is" -#~ msgstr "va fi tipărită o listă a tuturor numelor care sunt exportate în acest" - -#~ msgid "printed. An argument of `-n' says to remove the export property" -#~ msgstr "shell. Parametrul `-n' va elimina proprietatea de export " - -#~ msgid "from subsequent NAMEs. An argument of `--' disables further option" -#~ msgstr "din NUMEle ulterioare. Parametrul `--' dezactivează procesarea opţiunilor" - -#~ msgid "processing." -#~ msgstr "viitoare." - -#~ msgid "The given NAMEs are marked readonly and the values of these NAMEs may" -#~ msgstr "NUMEle date sunt marcate readonly şi valorile acestor NUME nu poate" - -#~ msgid "not be changed by subsequent assignment. If the -f option is given," -#~ msgstr "fi schimbat de atribuiri ulterioare. Dacă este dată opţiunea -f," - -#~ msgid "then functions corresponding to the NAMEs are so marked. If no" -#~ msgstr "atunci funcţiile corespunzătoare NUMElor sunt marcate. Dacă nu" - -#~ msgid "arguments are given, or if `-p' is given, a list of all readonly names" -#~ msgstr "sunt furnizaţidaţ paramet, sau este dat parametrul `-p'` o listă de nume readonlyri " - -#~ msgid "is printed. An argument of `-n' says to remove the readonly property" -#~ msgstr "va fi tipărită. Parametrul `-n' va elimina proprietatea de readonly" - -#~ msgid "from subsequent NAMEs. The `-a' option means to treat each NAME as" -#~ msgstr "pentru NUMEle ulterioare. Opţiunea `-a' reprezintă tratarea fiecărui NUME ca" - -#~ msgid "an array variable. An argument of `--' disables further option" -#~ msgstr "o variabilă interval. Parametrul `--' dezactivează alte opţiuni" - -#~ msgid "The positional parameters from $N+1 ... are renamed to $1 ... If N is" -#~ msgstr "Parametrii poziţionali de la $N+1 ... sunt redenumiţi în $1 ... Dacă N nu este" - -#~ msgid "not given, it is assumed to be 1." -#~ msgstr "furnizat, se presupune că e 1." - -#~ msgid "Read and execute commands from FILENAME and return. The pathnames" -#~ msgstr "Citeşte şi execută comenzi din NUME_FIŞIER şi returnare. Căile" - -#~ msgid "in $PATH are used to find the directory containing FILENAME." -#~ msgstr "din $PATH sunt folosite pentru a găsi directorul care conţine NUME_FIŞIER." - -#~ msgid "Suspend the execution of this shell until it receives a SIGCONT" -#~ msgstr "Suspendă execuţia acestui shell până se va primi un semnal de SIGCONT." - -#~ msgid "signal. The `-f' if specified says not to complain about this" -#~ msgstr " Dacă este specificat `-f' va elimina avertismentele despre acest " - -#~ msgid "being a login shell if it is; just suspend anyway." -#~ msgstr "login shell; va suspenda oricum." - -#~ msgid "Exits with a status of 0 (trueness) or 1 (falseness) depending on" -#~ msgstr "Iese cu o stare de 0 (adevăr) sau 1 (falsitate) depinzând de" - -#~ msgid "the evaluation of EXPR. Expressions may be unary or binary. Unary" -#~ msgstr "evaluarea EXPR. Expresiile pot fi unare sau binare. Expresiile" - -#~ msgid "expressions are often used to examine the status of a file. There" -#~ msgstr "unare sunt des folosite pentru a examina starea unui fişier. Mai există" - -#~ msgid "are string operators as well, and numeric comparison operators." -#~ msgstr "operatori de şir de asemenea, şi operator de comparare numerică." - -#~ msgid "File operators:" -#~ msgstr "Operatori de fişier:" - -#~ msgid " -b FILE True if file is block special." -#~ msgstr " -b FIŞIER Adevărat dacă fişierul este bloc special." - -#~ msgid " -c FILE True if file is character special." -#~ msgstr " -c FIŞIER Adevărat dacă fişierul este caracter special." - -#~ msgid " -d FILE True if file is a directory." -#~ msgstr " -b FIŞIER Adevărat dacă fişierul este director." - -#~ msgid " -e FILE True if file exists." -#~ msgstr " -e FIŞIER Adevărat dacă fişierul există." - -#~ msgid " -f FILE True if file exists and is a regular file." -#~ msgstr " -b FIŞIER Adevărat dacă fişierul există şi este fişier obişnuit (regular)." - -#~ msgid " -g FILE True if file is set-group-id." -#~ msgstr " -g FIŞIER Adevărat dacă fişierul are setat id-ul de grup." - -#~ msgid " -h FILE True if file is a symbolic link. Use \"-L\"." -#~ msgstr " -h FIŞIER Adevărat dacă fişierul este legătură simbolică. Folosiţi \"-L\"." - -#~ msgid " -L FILE True if file is a symbolic link." -#~ msgstr " -L FIŞIER Adevărat dacă fişierul este legătură simbolică." - -#~ msgid " -k FILE True if file has its \"sticky\" bit set." -#~ msgstr " -k FIŞIER Adevărat dacă fişierul are setat \"sticky\" bit." - -#~ msgid " -p FILE True if file is a named pipe." -#~ msgstr " -p FIŞIER Adevărat dacă fişierul este o legătură(pipe) numită." - -#~ msgid " -r FILE True if file is readable by you." -#~ msgstr " -r FIŞIER Adevărat dacă fişierul poate fi citit de tine." - -#~ msgid " -s FILE True if file exists and is not empty." -#~ msgstr " -s FIŞIER Adevărat dacă fişierul există şi nu este vid." - -#~ msgid " -S FILE True if file is a socket." -#~ msgstr " -S FIŞIER Adevărat dacă fişierul este un socket." - -#~ msgid " -t FD True if FD is opened on a terminal." -#~ msgstr " -t FD Adevărat dacă FD este deschis într-un terminal." - -#~ msgid " -u FILE True if the file is set-user-id." -#~ msgstr " -u FIŞIER Adevărat dacă fişierul are setat user id-ul." - -#~ msgid " -w FILE True if the file is writable by you." -#~ msgstr " -w FIŞIER Adevărat dacă fişierul poate fi scris de tine." - -#~ msgid " -x FILE True if the file is executable by you." -#~ msgstr " -x FIŞIER Adevărat dacă fişierul poate fi executat de către tine." - -#~ msgid " -O FILE True if the file is effectively owned by you." -#~ msgstr " -O FIŞIER Adevărat dacă fişierul este efectiv propriu(owned) ţie." - -#~ msgid " -G FILE True if the file is effectively owned by your group." -#~ msgstr " -O FIŞIER Adevărat dacă fişierul este efectiv propriu(owned) grupului tău." - -#~ msgid " FILE1 -nt FILE2 True if file1 is newer than (according to" -#~ msgstr " FIŞIER1 -nt FIŞIER2 Adevărat dacă fişier1 este mai nou decât (potrivit " - -#~ msgid " modification date) file2." -#~ msgstr " datei modificării) fişier2." - -#~ msgid " FILE1 -ot FILE2 True if file1 is older than file2." -#~ msgstr " FIŞIER1 -ot FIŞIER2 Adevărat dacă fişier1 este mai vechi decât fişier2." - -#~ msgid " FILE1 -ef FILE2 True if file1 is a hard link to file2." -#~ msgstr " FIŞIER1 -ef FIŞIER2 Adevărat dacă fişier1 este hard link către fişier2." - -#~ msgid "String operators:" -#~ msgstr "Operatori de şiruri:" - -#~ msgid " -z STRING True if string is empty." -#~ msgstr " -z ŞIR Adevărat dacă şirul este vid." - -#~ msgid " -n STRING" -#~ msgstr " -n ŞIR" - -#~ msgid " STRING True if string is not empty." -#~ msgstr " ŞIR Adevărat dacă şirul nu este vid." - -#~ msgid " STRING1 = STRING2" -#~ msgstr " ŞIR1 = ŞIR2" - -#~ msgid " True if the strings are equal." -#~ msgstr " Adevărat dacă şirurile sunt egale." - -#~ msgid " STRING1 != STRING2" -#~ msgstr " ŞIR1 != ŞIR2" - -#~ msgid " True if the strings are not equal." -#~ msgstr " Adevărat dacă şirurile nu sunt egale." - -#~ msgid " STRING1 < STRING2" -#~ msgstr " ŞIR1 < ŞIR2" - -#~ msgid " True if STRING1 sorts before STRING2 lexicographically" -#~ msgstr " Adevărat dacă ŞIR1 se ordonează lexical înaintea lui ŞIR2" - -#~ msgid " STRING1 > STRING2" -#~ msgstr " ŞIR1 > ŞIR2" - -#~ msgid " True if STRING1 sorts after STRING2 lexicographically" -#~ msgstr " Adevărat dacă ŞIR1 se ordonează lexical după ŞIR2" - -#~ msgid "Other operators:" -#~ msgstr "Alţi operatori:" - -#~ msgid " ! EXPR True if expr is false." -#~ msgstr " ! EXPR Adevărat dacă expr e falsă." - -#~ msgid " EXPR1 -a EXPR2 True if both expr1 AND expr2 are true." -#~ msgstr " EXPR1 -a EXPR2 Adevărat dacă şi expr1 ŞI expr2 sunt adevărate." - -#~ msgid " EXPR1 -o EXPR2 True if either expr1 OR expr2 is true." -#~ msgstr " EXPR1 -a EXPR2 Adevărat dacă una din expr1 sau expr2 e adevărată." - -#~ msgid " arg1 OP arg2 Arithmetic tests. OP is one of -eq, -ne," -#~ msgstr " arg1 OP arg2 Teste aritmetice. OP este unul din -eq, -ne," - -#~ msgid " -lt, -le, -gt, or -ge." -#~ msgstr " -lt, -le, -gt, or -ge." - -#~ msgid "Arithmetic binary operators return true if ARG1 is equal, not-equal," -#~ msgstr "Operatorii aritmetici binari returnează adevărat(true) dacă ARG1 " - -#~ msgid "less-than, less-than-or-equal, greater-than, or greater-than-or-equal" -#~ msgstr "este egal cu, nu este egal cu,mai mic, mai mic sau egal, mai mare, mai mare sau egal" - -#~ msgid "than ARG2." -#~ msgstr "decât ARG2." - -#~ msgid "This is a synonym for the \"test\" builtin, but the last" -#~ msgstr "Acesta este un sinonim pentru comanda internă \"test\", dar ultimul" - -#~ msgid "argument must be a literal `]', to match the opening `['." -#~ msgstr "argument trebuie să fie un `]' literal, pentru a închide un `['." - -#~ msgid "Print the accumulated user and system times for processes run from" -#~ msgstr "Afişează timpurile acumulate de user şi sistem pentru procesele rulate din" - -#~ msgid "the shell." -#~ msgstr "shell." - -#~ msgid "The command ARG is to be read and executed when the shell receives" -#~ msgstr "ARGumentele comenzii vor fi citite şi executate când shell-ul primeşte" - -#~ msgid "signal(s) SIGNAL_SPEC. If ARG is absent all specified signals are" -#~ msgstr "semnal(e). SIGNAL_SPEC. Dacă ARGumentul este absent toate semnalele" - -#~ msgid "reset to their original values. If ARG is the null string each" -#~ msgstr "specifice sunt resetate la valorile lor originale. Dacă ARGumentul este un şir vid" - -#~ msgid "SIGNAL_SPEC is ignored by the shell and by the commands it invokes." -#~ msgstr "fiecare SIGNAL_SPEC este ignorat de shell şi de comanda invocată de acesta." - -#~ msgid "If SIGNAL_SPEC is EXIT (0) the command ARG is executed on exit from" -#~ msgstr "Dacă SIGNAL_SPEC este EXIT (0) ARGumentele comenzii sunt executate la " - -#~ msgid "the shell. If SIGNAL_SPEC is DEBUG, ARG is executed after every" -#~ msgstr "ieşirea din shell. Dacă SIGNAL_SPEC este DEBUG, ARGument este executat" - -#~ msgid "command. If ARG is `-p' then the trap commands associated with" -#~ msgstr "după fiecare comandă. Dacă ARGument este `-' atunci vor fi afişate comenzile" - -#~ msgid "each SIGNAL_SPEC are displayed. If no arguments are supplied or if" -#~ msgstr "trap asociate cu fiecare SIGNAL_SPEC. Dacă nu sunt furnizaţi " - -#~ msgid "only `-p' is given, trap prints the list of commands associated with" -#~ msgstr "parametri sau este dat doar `-p', trap afişează lista de comenzi asociate cu " - -#~ msgid "each signal number. SIGNAL_SPEC is either a signal name in " -#~ msgstr "fiecare număr de semnal. SIGNAL_SPEC este ori un nume de semnal din " - -#~ msgid "or a signal number. `trap -l' prints a list of signal names and their" -#~ msgstr "sau un număr de semnal. `trap -l' tipăreşte o listă de numere de semnale şi " - -#~ msgid "corresponding numbers. Note that a signal can be sent to the shell" -#~ msgstr "numerele corespunzătoare. Notaţi că un semnal poate fi trimis shell-ului" - -#~ msgid "with \"kill -signal $$\"." -#~ msgstr "cu \"kill -signal $$\"." - -#~ msgid "For each NAME, indicate how it would be interpreted if used as a" -#~ msgstr "Pentru fiecare NUME, indică în ce mod va fi interpretat dacă este utilizat ca" - -#~ msgid "If the -t option is used, returns a single word which is one of" -#~ msgstr "Dacă este folosită opţiunea -t, returnează un singur cuvânt care este unul din" - -#~ msgid "`alias', `keyword', `function', `builtin', `file' or `', if NAME is an" -#~ msgstr "`alias', `keyword', `function', `builtin', `file' or `', dacă NUME este un" - -#~ msgid "alias, shell reserved word, shell function, shell builtin, disk file," -#~ msgstr "alias, cuvânt rezervat de shell, funcţie de shell, comandă internă, fişier de pe disk," - -#~ msgid "or unfound, respectively." -#~ msgstr "sau negăsit, respectiv." - -#~ msgid "If the -p flag is used, either returns the name of the disk file" -#~ msgstr "Dacă este utilizat marcajul(flag) -p se returnează fie numele fişierului de disk" - -#~ msgid "that would be executed, or nothing if -t would not return `file'." -#~ msgstr "care urmează să fie executat, sau nimic dacă -t nu va returna `fişier'." - -#~ msgid "If the -a flag is used, displays all of the places that contain an" -#~ msgstr "Dacă este folosit -a, se vor afişa toate locurile care conţin" - -#~ msgid "executable named `file'. This includes aliases and functions, if and" -#~ msgstr "un executabil numit `fişier'. Aceasta include aliasuri şi funcţii, şi numai" - -#~ msgid "only if the -p flag is not also used." -#~ msgstr "marcajul(flag) -p nu este folosit de asemenea." - -#~ msgid "Type accepts -all, -path, and -type in place of -a, -p, and -t," -#~ msgstr "Type acceptă -all, -path şi -type în loc de -a, -p şi -t," - -#~ msgid "respectively." -#~ msgstr "respectiv" - -#~ msgid "Ulimit provides control over the resources available to processes" -#~ msgstr "Ulimit oferă control al resurselor disponibile pentru procesele" - -#~ msgid "started by the shell, on systems that allow such control. If an" -#~ msgstr "rulate de shell, în sisteme care permit acest tip de control. Dacă este" - -#~ msgid "option is given, it is interpreted as follows:" -#~ msgstr "dată o opţiune, este interpretată precum urmează:" - -#~ msgid " -S\tuse the `soft' resource limit" -#~ msgstr " -S\tfoloseşte limita `soft' a resursei" - -#~ msgid " -H\tuse the `hard' resource limit" -#~ msgstr " -H\tfoloseşte limita `hard' a resursei" - -#~ msgid " -a\tall current limits are reported" -#~ msgstr " -a\tsunt raportate toate limitele curente" - -#~ msgid " -c\tthe maximum size of core files created" -#~ msgstr " -c\tmărimea maximă de fişiere core creată" - -#~ msgid " -d\tthe maximum size of a process's data segment" -#~ msgstr " -d\ttmărimea maximă a unui segment de date al procesului" - -#~ msgid " -m\tthe maximum resident set size" -#~ msgstr " -m\tmărimea maximă de rezidenţă" - -#~ msgid " -s\tthe maximum stack size" -#~ msgstr " -s\tmărimea maximă a stivei(stack)" - -#~ msgid " -t\tthe maximum amount of cpu time in seconds" -#~ msgstr " -t\tsuma maximă a timpului cpu în secunde" - -#~ msgid " -f\tthe maximum size of files created by the shell" -#~ msgstr " -f\ttmărimea maximă a fişierelor create de shell" - -#~ msgid " -p\tthe pipe buffer size" -#~ msgstr " -p\tmărimea tamponului de legătură (pipe buffer)" - -#~ msgid " -n\tthe maximum number of open file descriptors" -#~ msgstr " -n\tnumărul maxim de fişiere deschise" - -#~ msgid " -u\tthe maximum number of user processes" -#~ msgstr " -u\tnumărul maxim de procese utilizator" - -#~ msgid " -v\tthe size of virtual memory" -#~ msgstr " -v\tmărimea memoriei virtuale" - -#~ msgid "If LIMIT is given, it is the new value of the specified resource." -#~ msgstr "Dacă este dată LIMITĂ, va fi noua valoare a resursei specificate." - -#~ msgid "Otherwise, the current value of the specified resource is printed." -#~ msgstr "În caz contrar, este tipărită valoarea curentă a resursei specificate." - -#~ msgid "If no option is given, then -f is assumed. Values are in 1k" -#~ msgstr "Dacă nu este dată nici o opţiune se presupune -f. Valorile sunt exprimate" - -#~ msgid "increments, except for -t, which is in seconds, -p, which is in" -#~ msgstr "în incrementări de 1k, exceptând -t, care este în secunde, -p, care este în" - -#~ msgid "increments of 512 bytes, and -u, which is an unscaled number of" -#~ msgstr "incrementări de 512 octeţi, şi -u, care este un număr nescalat de" - -#~ msgid "processes." -#~ msgstr "procese." - -#~ msgid "The user file-creation mask is set to MODE. If MODE is omitted, or if" -#~ msgstr "Masca de crearecreation mask) a fişierului utilizatorului e setată la MOD. Dacă" - -#~ msgid "`-S' is supplied, the current value of the mask is printed. The `-S'" -#~ msgstr "MOD este omis sau este dat `-S', este tipărită valoarea curentă a măştii. Opţiunea" - -#~ msgid "option makes the output symbolic; otherwise an octal number is output." -#~ msgstr "`-S' returnează output simbolic; în caz contrar outputul este un număr octal." - -#~ msgid "If MODE begins with a digit, it is interpreted as an octal number," -#~ msgstr "Dacă MOD începe cu un digit, este interpretat ca număr octal," - -#~ msgid "otherwise it is a symbolic mode string like that accepted by chmod(1)." -#~ msgstr "în caz contrar este un şir mod simbolic premis de chmod(1)." - -#~ msgid "Wait for the specified process and report its termination status. If" -#~ msgstr "Aşteaptă după procesul specificat şi raportează starea de terminare. Dacă" - -#~ msgid "N is not given, all currently active child processes are waited for," -#~ msgstr "N nu este dat,se aşteaptă după toate procesele copil(child) curente," - -#~ msgid "and the return code is zero. N may be a process ID or a job" -#~ msgstr "şi codul returnat este zero. N poate fi un ID de proces sau o specificaţie" - -#~ msgid "specification; if a job spec is given, all processes in the job's" -#~ msgstr "de job; Dacă este dată o specificaţie de job,se aşteaptă după" - -#~ msgid "pipeline are waited for." -#~ msgstr " toate procesele din legătură(pipeline)." - -#~ msgid "and the return code is zero. N is a process ID; if it is not given," -#~ msgstr "şi codul returnat este zero. N este un ID de proces; dacă nu este dat," - -#~ msgid "all child processes of the shell are waited for." -#~ msgstr "se va aştepta după doate procesele copil(child) din shell." - -#~ msgid "The `for' loop executes a sequence of commands for each member in a" -#~ msgstr "Ciclul `for' execută o secvenţă de comenzi pentru fiecare membru dintr-o" - -#~ msgid "list of items. If `in WORDS ...;' is not present, then `in \"$@\"' is" -#~ msgstr "listă de elemente. Dacă `in CUVINTE...;' nu este prezent, atunci `in \"$@\"'" - -#~ msgid "assumed. For each element in WORDS, NAME is set to that element, and" -#~ msgstr "este presupus. Pentru fiecare element din CUVINTE, NUME este setat ca acel" - -#~ msgid "the COMMANDS are executed." -#~ msgstr "element şi COMENZI sunt executate." - -#~ msgid "The WORDS are expanded, generating a list of words. The" -#~ msgstr "CUVINTEle sunt expandate, generând o listă de cuvinte. Setul de" - -#~ msgid "set of expanded words is printed on the standard error, each" -#~ msgstr "de cuvinte expandate este tipărit la dispozitivul de eroare standard, fiecare" - -#~ msgid "preceded by a number. If `in WORDS' is not present, `in \"$@\"'" -#~ msgstr "fiind precedat de un număr. Dacă `in CUVINTE' nu este prezent, `in \"$@\"'" - -#~ msgid "is assumed. The PS3 prompt is then displayed and a line read" -#~ msgstr "este presupus. Promptul PS3 este apoi afişat şi o linie va fi citită de" - -#~ msgid "from the standard input. If the line consists of the number" -#~ msgstr "la intrare(input) standard. Dacă linia e alcătuită dintr-unul din numerele" - -#~ msgid "corresponding to one of the displayed words, then NAME is set" -#~ msgstr "corespunzătoare unuia din cuvintele afişate, atunci NUME este setat" - -#~ msgid "to that word. If the line is empty, WORDS and the prompt are" -#~ msgstr "drept cuvântul respectiv. Dacă linia este vidă, CUVINTEle şi promptul sunt" - -#~ msgid "redisplayed. If EOF is read, the command completes. Any other" -#~ msgstr "reafişate. Dacă se citeşte EOF, comanda ajunge la sfârşit. Orice altă" - -#~ msgid "value read causes NAME to be set to null. The line read is saved" -#~ msgstr "valoare citită va face ca NUMEle setat să fie setat null. Linia citită este salvată" - -#~ msgid "in the variable REPLY. COMMANDS are executed after each selection" -#~ msgstr "în variabila RĂSPUNS. COMENZIle sunt executate după fiecare selecţie" - -#~ msgid "until a break or return command is executed." -#~ msgstr "până când se execută o comandă break sau return." - -#~ msgid "Selectively execute COMMANDS based upon WORD matching PATTERN. The" -#~ msgstr "Execută selectiv COMENZI bazându-se pe potrivirea CUVÂNTului în TIPAR." - -#~ msgid "`|' is used to separate multiple patterns." -#~ msgstr " `|' este folosit pentru a separa mai multe tipare." - -#~ msgid "The if COMMANDS are executed. If the exit status is zero, then the then" -#~ msgstr "COMENZIle if sunt executate. Dacă starea de ieşire este zero, atunc" - -#~ msgid "COMMANDS are executed. Otherwise, each of the elif COMMANDS are executed" -#~ msgstr "COMENZIle then sunt executate. În caz contrar, fiecare din COMENZIle elif sunt executate" - -#~ msgid "in turn, and if the exit status is zero, the corresponding then COMMANDS" -#~ msgstr "pe rând, şi dacă starea de ieşire este zero, atunci COMENZIle then corespunzătoare" - -#~ msgid "are executed and the if command completes. Otherwise, the else COMMANDS" -#~ msgstr "sunt executate şi comanda if se termină. În caz contrar, COMENZIle else" - -#~ msgid "are executed, if present. The exit status is the exit status of the last" -#~ msgstr "sunt executate, în cazul în care sunt prezente. Starea de ieşire este starea de ieşire" - -#~ msgid "command executed, or zero if no condition tested true." -#~ msgstr "a ultimei comenzi executate, sau zero dacă nici o condiţie nu s-a dovedit adevărată." - -#~ msgid "Expand and execute COMMANDS as long as the final command in the" -#~ msgstr "Expandează şi execută COMENZI atâta timp cât comanda finală din" - -#~ msgid "`while' COMMANDS has an exit status of zero." -#~ msgstr "COMENZIle `while' au o stare de ieşire de zero." - -#~ msgid "`until' COMMANDS has an exit status which is not zero." -#~ msgstr "COMENZIle `until' au o stare de ieşire diferită de zero." - -#~ msgid "Create a simple command invoked by NAME which runs COMMANDS." -#~ msgstr "Crează o comandă simplă invocată de NUME care rulează COMENZI." - -#~ msgid "Arguments on the command line along with NAME are passed to the" -#~ msgstr "Parametrii din linia de comandă împreună cu NUMEle sunt pasaţi" - -#~ msgid "function as $0 .. $n." -#~ msgstr "funcţiei drept $0 .. $n." - -#~ msgid "Run a set of commands in a group. This is one way to redirect an" -#~ msgstr "Rulează un set de comenzi dintr-un grup. Aceasta este o cale de a redirecta un" - -#~ msgid "entire set of commands." -#~ msgstr "întreg set de comenzi." - -#~ msgid "This is similar to the `fg' command. Resume a stopped or background" -#~ msgstr "Aceasta este similară comenzii `fg'. Continuă(resume) un job stopat sau din" - -#~ msgid "job. If you specifiy DIGITS, then that job is used. If you specify" -#~ msgstr "fundal(background). Dacă se specifică DIGIŢI, atunci este folosit acel job. Dacă" - -#~ msgid "WORD, then the job whose name begins with WORD is used. Following the" -#~ msgstr "se specifică CUVÂNT, atunci e folosit jobul al cărui nume începe cu CUVÂNT." - -#~ msgid "job specification with a `&' places the job in the background." -#~ msgstr "Specificând jobului un `&' după, va plasa jobul în fundal(background)." - -#~ msgid "BASH_VERSION The version numbers of this Bash." -#~ msgstr "BASH_VERSION Numărul de versiune a acestui Bash." - -#~ msgid "CDPATH A colon separated list of directories to search" -#~ msgstr "CDPATH O listă de directoare separată prin două-puncte pentru a se" - -#~ msgid "\t\twhen the argument to `cd' is not found in the current" -#~ msgstr "\t\tcăuta atunci când parametrii specificaţi comenzii `cd' nu sunt găsiţi în" - -#~ msgid "\t\tdirectory." -#~ msgstr "\t\tdirectorul curent." - -#~ msgid "HISTFILE The name of the file where your command history is stored." -#~ msgstr "HISTFILE Numele fişierului unde istoricul comenzilor voastre este stocat." - -#~ msgid "HISTFILESIZE The maximum number of lines this file can contain." -#~ msgstr "HISTFILESIZE Numărul maxim de linii pe care acest fişier poate să le conţină." - -#~ msgid "HISTSIZE The maximum number of history lines that a running" -#~ msgstr "HISTSIZE Numărul maxim de linii de istoric care pot fi accesate" - -#~ msgid "\t\tshell can access." -#~ msgstr "\t\tde un shell activ." - -#~ msgid "HOME The complete pathname to your login directory." -#~ msgstr "HOME Calea completă către directorul vostru de login." - -#~ msgid "HOSTTYPE The type of CPU this version of Bash is running under." -#~ msgstr "HOSTTYPE Tipul de CPU pe care rulează această versiune de Bash." - -#~ msgid "IGNOREEOF Controls the action of the shell on receipt of an EOF" -#~ msgstr "IGNOREEOF Controlează acţiunea shell-ului la întâlnirea unui caracter" - -#~ msgid "\t\tcharacter as the sole input. If set, then the value" -#~ msgstr "\t\tEOF ca singură intrare(input). Dacă este setat, atunci valoarea" - -#~ msgid "\t\tof it is the number of EOF characters that can be seen" -#~ msgstr "\t\tacestuia este numărul de caractere EOF care pot fi întâlnite" - -#~ msgid "\t\tin a row on an empty line before the shell will exit" -#~ msgstr "\t\tpe rând într-o linie vidă înainte de ieşirea shell-ului." - -#~ msgid "\t\t(default 10). When unset, EOF signifies the end of input." -#~ msgstr "\t\t(implicit 10). Când este desetat(unset), EOF semnifică sfârşitul intrării(input)." - -#~ msgid "MAILCHECK\tHow often, in seconds, Bash checks for new mail." -#~ msgstr "MAILCHECK\tCât de des, în secunde, Bash-ul să verifice dacă există mail nou." - -#~ msgid "MAILPATH\tA colon-separated list of filenames which Bash checks" -#~ msgstr "MAILPATH\tO listă de fişiere separate prin două-puncte pe care Bash o verifică" - -#~ msgid "\t\tfor new mail." -#~ msgstr "\t\tpentru mail nou." - -#~ msgid "OSTYPE\t\tThe version of Unix this version of Bash is running on." -#~ msgstr "OSTYPE\t\tVersiunea de Unix pe care această versiune de Bash rulează." - -#~ msgid "PATH A colon-separated list of directories to search when" -#~ msgstr "PATH O listă de directoare separată prin două-puncte care se va" - -#~ msgid "\t\tlooking for commands." -#~ msgstr "\t\tindexa în căutarea comenzilor." - -#~ msgid "PROMPT_COMMAND A command to be executed before the printing of each" -#~ msgstr "PROMPT_COMMAND O comandă care va fi executată înainte de tipărirea fiecărui" - -#~ msgid "\t\tprimary prompt." -#~ msgstr "\t\tprompt primar." - -#~ msgid "PS1 The primary prompt string." -#~ msgstr "PS1 Şirul promptului primar." - -#~ msgid "PS2 The secondary prompt string." -#~ msgstr "PS2 Şirul promptului secundar." - -#~ msgid "TERM The name of the current terminal type." -#~ msgstr "TERM Numele tipului de terminal curent." - -#~ msgid "auto_resume Non-null means a command word appearing on a line by" -#~ msgstr "auto_resume Dacă nu e vid rezultă că un cuvânt comandă ce apare pe o linie" - -#~ msgid "\t\titself is first looked for in the list of currently" -#~ msgstr "\t\tsingur este prima dată căutat în lista " - -#~ msgid "\t\tstopped jobs. If found there, that job is foregrounded." -#~ msgstr "\t\tjoburilor.curente stopate. Dacă este găsit acolo, acel job este adus în prim-plan(foreground)." - -#~ msgid "\t\tA value of `exact' means that the command word must" -#~ msgstr "\t\tO valoare de `exact' înseamnă că acel cuvânt comandă trebuie" - -#~ msgid "\t\texactly match a command in the list of stopped jobs. A" -#~ msgstr "\t\tsă se potrivească perfect unei comenzi din lista de joburi stopate. O" - -#~ msgid "\t\tvalue of `substring' means that the command word must" -#~ msgstr "\t\tvaloare de `substring' înseamnă că acel cuvânt comandă trebuie" - -#~ msgid "\t\tmatch a substring of the job. Any other value means that" -#~ msgstr "\t\tsă se potrivească unui subşir al jobului. Orice altă valoare înseamnă că" - -#~ msgid "\t\tthe command must be a prefix of a stopped job." -#~ msgstr "\t\tacea comandă trebuie să fie prefixul unui job stopat." - -#~ msgid "command_oriented_history" -#~ msgstr "command_oriented_history" - -#~ msgid " Non-null means to save multiple-line commands together on" -#~ msgstr " Nevid reprezintă salvarea mai multor linii de comandă împreună într-o" - -#~ msgid " a single history line." -#~ msgstr " singură linie de istoric." - -#~ msgid "histchars Characters controlling history expansion and quick" -#~ msgstr "histchars Caractere care controlează expansiunea istoricului şi" - -#~ msgid "\t\tsubstitution. The first character is the history" -#~ msgstr "\t\tsubstituţii rapide. Primul caracter este caracterul de substituţie al" - -#~ msgid "\t\tsubstitution character, usually `!'. The second is" -#~ msgstr "\t\tistoricului, de obicei `!'. Al doilea este" - -#~ msgid "\t\tthe `quick substitution' character, usually `^'. The" -#~ msgstr "\t\tcaracterul de `quick substitution', de obicei `^'. Al treilea" - -#~ msgid "\t\tthird is the `history comment' character, usually `#'." -#~ msgstr "\t\teste caracterul de `history comment', de obicei `#'." - -#~ msgid "HISTCONTROL\tSet to a value of `ignorespace', it means don't enter" -#~ msgstr "HISTCONTROL\tSetează o valoare de `ignorespace', care înseamnă să nu" - -#~ msgid "\t\tlines which begin with a space or tab on the history" -#~ msgstr "\t\tintroduci în lista de istoric linii care încep cu un" - -#~ msgid "\t\tlist. Set to a value of `ignoredups', it means don't" -#~ msgstr "\t\tspaţiu sau un tab. Setează o valoare de `ignoredups', care înseamnă" - -#~ msgid "\t\tenter lines which match the last entered line. Set to" -#~ msgstr "\t\ta nu se introduce linii care sunt asemănătoare ultimei linii introduse." - -#~ msgid "\t\t`ignoreboth' means to combine the two options. Unset," -#~ msgstr "\t\tSetează o valaore de `ignoreboth' însemnând combinarea celor două opţiuni." - -#~ msgid "\t\tor set to any other value than those above means to save" -#~ msgstr "\t\t Desetat(unset) sau setat la orice altă valoare decât acelea de mai sus" - -#~ msgid "\t\tall lines on the history list." -#~ msgstr "\t\taînseamnă salvarea tuturor liniilor în lista istoricului." - -#~ msgid "Adds a directory to the top of the directory stack, or rotates" -#~ msgstr "Adaugă un director în partea superioară a stivei de directoare, sau roteşte" - -#~ msgid "the stack, making the new top of the stack the current working" -#~ msgstr "stiva, făcând noul element superior al listei directorul curent" - -#~ msgid "directory. With no arguments, exchanges the top two directories." -#~ msgstr "de lucru. Fără parametri, interchimbă cele două directoare superioare." - -#~ msgid "+N\tRotates the stack so that the Nth directory (counting" -#~ msgstr "+N\tRoteşte stiva astfel încât al N-ulea director (numărând" - -#~ msgid "\tfrom the left of the list shown by `dirs') is at the top." -#~ msgstr "\tde la stânga listei afişată de `dirs') va fi în vârf(top)." - -#~ msgid "-N\tRotates the stack so that the Nth directory (counting" -#~ msgstr "-N\tRoteşte stiva astfel încât al N-ulea director (numărând" - -#~ msgid "\tfrom the right) is at the top." -#~ msgstr "\tde la dreapta) va fi în vârf." - -#~ msgid "-n\tsuppress the normal change of directory when adding directories" -#~ msgstr "-n\tinhibă schimbarea normală de directoare la adăugarea directoarelor" - -#~ msgid "\tto the stack, so only the stack is manipulated." -#~ msgstr "\tîn stivă, astfel încât doar stiva să fie manipulată." - -#~ msgid "dir\tadds DIR to the directory stack at the top, making it the" -#~ msgstr "dir\tadaugă DIR în vârful stivei de directoare, făcându-l" - -#~ msgid "You can see the directory stack with the `dirs' command." -#~ msgstr "Puteţi vedea stiva de directoare cu ajutorul comenzii `dirs'." - -#~ msgid "Removes entries from the directory stack. With no arguments," -#~ msgstr "Şterge intrările din stiva de directoare. Fără parametri, " - -#~ msgid "removes the top directory from the stack, and cd's to the new" -#~ msgstr "şterge directorul superior din stivă, şi face cd la noul" - -#~ msgid "+N\tremoves the Nth entry counting from the left of the list" -#~ msgstr "+N\tşterge al N-ulea element numărând din stânga listei" - -#~ msgid "\tshown by `dirs', starting with zero. For example: `popd +0'" -#~ msgstr "\tafişate de `dirs', începând cu zero. De exemplu: `popd +0'" - -#~ msgid "\tremoves the first directory, `popd +1' the second." -#~ msgstr "\tşterge primul director, `popd +1' al doilea." - -#~ msgid "-N\tremoves the Nth entry counting from the right of the list" -#~ msgstr "-N\tşterge al N-ulea element numărând din dreapta listei" - -#~ msgid "\tshown by `dirs', starting with zero. For example: `popd -0'" -#~ msgstr "\tafişate de `dirs', începând cu zero. De exemplu: `popd -0'" - -#~ msgid "\tremoves the last directory, `popd -1' the next to last." -#~ msgstr "\tşterge ultimul director, `popd -1' penultimul." - -#~ msgid "-n\tsuppress the normal change of directory when removing directories" -#~ msgstr "-n\tinhibă schimbarea normală de directoare când se şterg diurectoare" - -#~ msgid "\tfrom the stack, so only the stack is manipulated." -#~ msgstr "\tdin stivă, astfel încât numai stiva să fie manipulată." - -#~ msgid "Display the list of currently remembered directories. Directories" -#~ msgstr "Afişează lista curentă de directoare reţinute. Directoarele" - -#~ msgid "find their way onto the list with the `pushd' command; you can get" -#~ msgstr "îşi gasesc locul în listă cu ajutorul comenzii `pushd'; puteţi merge" - -#~ msgid "back up through the list with the `popd' command." -#~ msgstr "prin listă cu ajutorul comenzii `popd'." - -#~ msgid "The -l flag specifies that `dirs' should not print shorthand versions" -#~ msgstr "Parametrul(flag) -l specifică faptul că `dirs' nu ar trebui să tipărească " - -#~ msgid "of directories which are relative to your home directory. This means" -#~ msgstr "versiuni prescurtate ale directoarelor care au legătură(relative) cu home-directory-ul." - -#~ msgid "that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag" -#~ msgstr " Aceasta înseamnă că `~/bin' poate fi afişat ca `/homes/bfox/bin' Parametrul" - -#~ msgid "causes `dirs' to print the directory stack with one entry per line," -#~ msgstr "-v face ca `dirs' să afişeze stiva de directoare doar câte o intrare pe linie," - -#~ msgid "prepending the directory name with its position in the stack. The -p" -#~ msgstr "prefixând numele directorului cu poziţia în stivă. Parametrul -p" - -#~ msgid "flag does the same thing, but the stack position is not prepended." -#~ msgstr "face acelaşi lucru, dar poziţia în stivă nu este prefix." - -#~ msgid "The -c flag clears the directory stack by deleting all of the elements." -#~ msgstr "Parametrul(flag) -c şterge stiva de directoare prin ştergerea tuturor elementelor." - -#~ msgid "+N\tdisplays the Nth entry counting from the left of the list shown by" -#~ msgstr "+N\tafişează a N-a intrare numărând de la stânga listei afişate de" - -#~ msgid "\tdirs when invoked without options, starting with zero." -#~ msgstr "\tdirs atunci când e invocată fără opţiuni, începând cu zero." - -#~ msgid "-N\tdisplays the Nth entry counting from the right of the list shown by" -#~ msgstr "-N\tafişează a N-a intrare numărând de la dreapta listei afişate de" - -#~ msgid "Toggle the values of variables controlling optional behavior." -#~ msgstr "Schimbă(toggle) valorile variabilelor, controlând comportamentul opţional." - -#~ msgid "The -s flag means to enable (set) each OPTNAME; the -u flag" -#~ msgstr "Parametrul -s înseamnă activarea(setarea) fiecărei NUME_OPT; parametrul -u" - -#~ msgid "unsets each OPTNAME. The -q flag suppresses output; the exit" -#~ msgstr "desetează(unset) fiecare NUME_OPT. Parametrul -q inhibă output-ul;" - -#~ msgid "status indicates whether each OPTNAME is set or unset. The -o" -#~ msgstr "starea de ieşire indică dacă fiecare NUME_OPT este setat sau desetat." - -#~ msgid "option restricts the OPTNAMEs to those defined for use with" -#~ msgstr " Parametrul -o restricţionează NUME_OPT la acelea definite pentru a fi " - -#~ msgid "`set -o'. With no options, or with the -p option, a list of all" -#~ msgstr "folosite cu `set -o'. Fără nici o opţiune, sau cu opţiunea -p, este afişată" - -#~ msgid "settable options is displayed, with an indication of whether or" -#~ msgstr "o listă a tuturor opţiunilor setabile, ceea ce indică dacă fiecare este" - -#~ msgid "not each is set." -#~ msgstr "setată sau nu." +"Citește linii dintr-un fișier într-o variabilă de tip matrice.\n" +" \n" +" Un sinonim pentru «mapfile»." diff --git a/po/tr.gmo b/po/tr.gmo index 49558623c784bb928b20eb9b73652a6863cb5484..ecd482e3a2b19548df610e56b5b5c57788743c04 100644 GIT binary patch delta 19662 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 delta 17189 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, 2006. # Volkan Gezer , 2013, 2014, 2017. +# Emir SARI , 2022 +# msgid "" msgstr "" -"Project-Id-Version: bash 4.4\n" +"Project-Id-Version: bash-5.1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-11-28 12:51-0500\n" -"PO-Revision-Date: 2017-05-05 11:49+0100\n" -"Last-Translator: Volkan Gezer \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2022-04-11 23:00+0300\n" +"Last-Translator: Emir SARI \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,23 +24,23 @@ msgstr "" #: arrayfunc.c:66 msgid "bad array subscript" -msgstr "hatalı dizi indisi" +msgstr "hatalı dizilim indisi" #: arrayfunc.c:421 builtins/declare.def:638 variables.c:2274 variables.c:2300 #: variables.c:3133 #, c-format msgid "%s: removing nameref attribute" -msgstr "%s: removing nameref niteliği kaldırılıyor" +msgstr "%s: nameref özniteliği kaldırılıyor" #: arrayfunc.c:446 builtins/declare.def:851 #, c-format msgid "%s: cannot convert indexed to associative array" -msgstr "%s: indisli dizi, ilişkisel diziye dönüştürülemez" +msgstr "%s: indisli dizilim, ilişkisel dizilime dönüştürülemez" #: arrayfunc.c:700 #, c-format msgid "%s: invalid associative array key" -msgstr "%s: geçersiz ilişkisel dizi anahtarı" +msgstr "%s: geçersiz ilişkisel dizilim anahtarı" #: arrayfunc.c:702 #, c-format @@ -48,7 +50,7 @@ msgstr "%s: sayısal olmayan indise atama yapılamaz" #: arrayfunc.c:747 #, c-format msgid "%s: %s: must use subscript when assigning associative array" -msgstr "%s: %s: ilişkisel bir dizi ataması yapılırken indis kullanılmalıdır" +msgstr "%s: %s: ilişkisel bir dizilim ataması yapılırken indis kullanılmalıdır" #: bashhist.c:452 #, c-format @@ -72,12 +74,12 @@ msgstr "%2$s içinde kapatan `%1$c' yok" #: bashline.c:4519 #, c-format msgid "%s: missing colon separator" -msgstr "%s: ikinokta imi eksik" +msgstr "%s: iki nokta imi eksik" #: bashline.c:4555 -#, fuzzy, c-format +#, c-format msgid "`%s': cannot unbind in command keymap" -msgstr "`%s': kısayol değiştirilemiyor" +msgstr "`%s': komut düğme eşleminde bağıntı kaldırılamıyor" #: braces.c:327 #, c-format @@ -85,9 +87,9 @@ msgid "brace expansion: cannot allocate memory for %s" msgstr "destek genişletme: %s için bellek ayrılamıyor" #: braces.c:406 -#, fuzzy, c-format +#, c-format msgid "brace expansion: failed to allocate memory for %u elements" -msgstr "destek genişletme: %d öge için bellek ayrılamıyor" +msgstr "destek genişletme: %u öge için bellek ayrılamıyor" #: braces.c:451 #, c-format @@ -97,7 +99,7 @@ msgstr "destek genişletme: `%s' için bellek ayrılamıyor" #: builtins/alias.def:131 variables.c:1844 #, c-format msgid "`%s': invalid alias name" -msgstr "`%s': geçersiz takma isim" +msgstr "`%s': geçersiz takma ad" #: builtins/bind.def:122 builtins/bind.def:125 msgid "line editing not enabled" @@ -106,7 +108,7 @@ msgstr "satır düzenleme etkin değil" #: builtins/bind.def:212 #, c-format msgid "`%s': invalid keymap name" -msgstr "`%s': kısayol ismi geçersiz" +msgstr "`%s': düğme eşlem adı geçersiz" #: builtins/bind.def:252 #, c-format @@ -116,7 +118,7 @@ msgstr "%s: okunamıyor: %s" #: builtins/bind.def:328 builtins/bind.def:358 #, c-format msgid "`%s': unknown function name" -msgstr "`%s': işlev ismi bilinmiyor" +msgstr "`%s': işlev adı bilinmiyor" #: builtins/bind.def:336 #, c-format @@ -139,10 +141,9 @@ msgstr "döngü sayısı" #: builtins/break.def:139 msgid "only meaningful in a `for', `while', or `until' loop" -msgstr "sadece bir `for', `while' veya `until' döngüsünde anlamlı" +msgstr "yalnızca bir `for', `while' veya `until' döngüsünde anlamlı" #: builtins/caller.def:136 -#, fuzzy msgid "" "Returns the context of the current subroutine call.\n" " \n" @@ -153,19 +154,14 @@ msgid "" " The value of EXPR indicates how many call frames to go back before the\n" " current one; the top frame is frame 0." msgstr "" -"Geçerli alt yordam çağrısının bağlamını döndürür.\n" +"Geçerli altrutin çağrısının bağlamını döndürür.\n" " \n" -" İFADE olmadan, \"$satır $dosyaadı\" döndürür. İFADE ile " -"kullanıldığında\n" -" \"$satır $altyordam $dosyaadı\" döndürür; bu ek bilgi bir yığın izi " -"sağlamak\n" -" için kullanılabilir.\n" +" İFADE olmadan, \"$satır $dosyaadı\" döndürür. İFADE ile \"$satır\n" +" $altrutin $dosyaadı\" döndürür; bu ek bilgi bir yığın izlemesi sağlamak\n" +" için kullanılabilir.\n" " \n" -" İFADE değeri, geçerli çerçeveden önce kaç tane çerçeve çağrılacağını\n" -" belirtir. Üst çerçeve 0. çerçevedir. \n" -" Çıkış Durumu:\n" -" İFADE geçersiz olmadığı ve bir kabuk işlevi çalıştırmadığı durumda 0 " -"döndürür." +" İFADE'nin değeri, geçerli çağrı biriminden önce kaç tane geri gidilmesi\n" +" gerektiğini belirtir; en üst çerçeve, 0. çerçevedir." #: builtins/cd.def:327 msgid "HOME not set" @@ -173,7 +169,7 @@ msgstr "HOME atanmamış" #: builtins/cd.def:335 builtins/common.c:161 test.c:901 msgid "too many arguments" -msgstr "çok fazla argüman" +msgstr "pek fazla argüman" #: builtins/cd.def:342 msgid "null directory" @@ -186,7 +182,7 @@ msgstr "OLDPWD boş" #: builtins/common.c:96 #, c-format msgid "line %d: " -msgstr "satır %d: " +msgstr "%d. satır: " #: builtins/common.c:134 error.c:264 #, c-format @@ -201,17 +197,17 @@ msgstr "%s: kullanım: " #: builtins/common.c:193 shell.c:516 shell.c:844 #, c-format msgid "%s: option requires an argument" -msgstr "%s: seçenek bir argüman gerektirir" +msgstr "%s: seçenek bir argüman gerektiriyor" #: builtins/common.c:200 #, c-format msgid "%s: numeric argument required" -msgstr "%s: sayısal argüman gerekli" +msgstr "%s: sayısal argüman gerekiyor" #: builtins/common.c:207 #, c-format msgid "%s: not found" -msgstr "%s:yok" +msgstr "%s: yok" #: builtins/common.c:216 shell.c:857 #, c-format @@ -221,12 +217,12 @@ msgstr "%s: seçenek geçersiz" #: builtins/common.c:223 #, c-format msgid "%s: invalid option name" -msgstr "%s: seçenek ismi geçersiz" +msgstr "%s: seçenek adı geçersiz" #: builtins/common.c:230 execute_cmd.c:2373 general.c:368 general.c:373 #, c-format msgid "`%s': not a valid identifier" -msgstr "`%s': geçerli bir belirteç değil" +msgstr "`%s': geçerli bir tanımlayıcı değil" #: builtins/common.c:240 msgid "invalid octal number" @@ -253,12 +249,12 @@ msgstr "`%s': geçerli bir iş belirtimi veya süreç numarası değil" #: builtins/common.c:266 error.c:510 #, c-format msgid "%s: readonly variable" -msgstr "%s: salt okunur değişken" +msgstr "%s: saltokunur değişken" #: builtins/common.c:274 #, c-format msgid "%s: %s out of range" -msgstr "%s: %s aralık dışı" +msgstr "%s: %s erim dışı" #: builtins/common.c:274 builtins/common.c:276 msgid "argument" @@ -267,7 +263,7 @@ msgstr "argüman" #: builtins/common.c:276 #, c-format msgid "%s out of range" -msgstr "%s aralık dışı" +msgstr "%s erim dışı" #: builtins/common.c:284 #, c-format @@ -305,12 +301,12 @@ msgstr "yazma hatası: %s" #: builtins/common.c:331 #, c-format msgid "error setting terminal attributes: %s" -msgstr "uçbirim nitelikleri ayarlanırken hata: %s" +msgstr "uçbirim öznitelikleri ayarlanırken hata: %s" #: builtins/common.c:333 #, c-format msgid "error getting terminal attributes: %s" -msgstr "uçbirim nitelikleri alınırken hata: %s" +msgstr "uçbirim öznitelikleri alınırken hata: %s" #: builtins/common.c:635 #, c-format @@ -329,7 +325,7 @@ msgstr "bu sürümde yardım kullanılamıyor" #: builtins/common.c:1008 builtins/set.def:953 variables.c:3839 #, c-format msgid "%s: cannot unset: readonly %s" -msgstr "%s:unset yapılamaz: %s salt okunur" +msgstr "%s: unset yapılamaz: %s saltokunur" #: builtins/common.c:1013 builtins/set.def:932 variables.c:3844 #, c-format @@ -361,28 +357,28 @@ msgstr "şuan tamamlama işlevi çalıştırılmıyor" #: builtins/declare.def:134 msgid "can only be used in a function" -msgstr "sadece bir işlevde kullanılabilir" +msgstr "yalnızca bir işlevde kullanılabilir" #: builtins/declare.def:363 builtins/declare.def:756 #, c-format msgid "%s: reference variable cannot be an array" -msgstr "%s: referans değeri bir dizi olamaz" +msgstr "%s: başvuru değeri bir dizilim olamaz" #: builtins/declare.def:374 variables.c:3385 #, c-format msgid "%s: nameref variable self references not allowed" -msgstr "%s: nameref değişkeninin kendine yaptığı referanslara izin verilmiyor" +msgstr "%s: nameref değişkeninin kendine yaptığı başvurulara izin verilmiyor" #: builtins/declare.def:379 variables.c:2104 variables.c:3304 variables.c:3312 #: variables.c:3382 #, c-format msgid "%s: circular name reference" -msgstr "%s: çembersel isim referansı" +msgstr "%s: çembersel ad başvurusu" #: builtins/declare.def:384 builtins/declare.def:762 builtins/declare.def:773 #, c-format msgid "`%s': invalid variable name for name reference" -msgstr "`%s': dosya izleme tanımlayıcısı için geçersiz değer" +msgstr "%s: ad başvuarusu için geçersiz değişken adı" #: builtins/declare.def:514 msgid "cannot use `-f' to make functions" @@ -391,7 +387,7 @@ msgstr "işlev yapmak için `-f' kullanılamaz" #: builtins/declare.def:526 execute_cmd.c:5986 #, c-format msgid "%s: readonly function" -msgstr "%s: salt okunur işlev" +msgstr "%s: saltokunur işlev" #: builtins/declare.def:824 #, c-format @@ -406,11 +402,11 @@ msgstr "%s: dizi değişkenleri bu yolla iptal edilemez" #: builtins/declare.def:845 builtins/read.def:815 #, c-format msgid "%s: cannot convert associative to indexed array" -msgstr "%s: ilişkisel dizi, indisli diziye dönüştürülemez" +msgstr "%s: ilişkisel dizilim, indisli dizilime dönüştürülemez" #: builtins/enable.def:143 builtins/enable.def:151 msgid "dynamic loading not available" -msgstr "özdevimli yükleme mümkün değil" +msgstr "devingen yükleme olanaklı değil" #: builtins/enable.def:343 #, c-format @@ -423,19 +419,19 @@ msgid "cannot find %s in shared object %s: %s" msgstr "%2$s paylaşımlı nesnesinde %1$s bulunamıyor: %3$s" #: builtins/enable.def:388 -#, fuzzy, c-format +#, c-format msgid "%s: dynamic builtin already loaded" -msgstr "%s: özdevimli olarak yüklenmemiş" +msgstr "%s: devinen yerleşiği halihazırda yüklenmiş" #: builtins/enable.def:392 #, c-format msgid "load function for %s returns failure (%d): not loaded" -msgstr "%s için yükleme ifadesi hata döndürdü (%d): yüklenmedi" +msgstr "%s için yükleme işlevi hata döndürdü (%d): yüklenmedi" #: builtins/enable.def:517 #, c-format msgid "%s: not dynamically loaded" -msgstr "%s: özdevimli olarak yüklenmemiş" +msgstr "%s: devingen olarak yüklenmemiş" #: builtins/enable.def:543 #, c-format @@ -502,7 +498,7 @@ msgstr "%s: geçici dosya açılamıyor: %s" #: builtins/fg_bg.def:152 builtins/jobs.def:284 msgid "current" -msgstr "şimdiki" +msgstr "geçerli" #: builtins/fg_bg.def:161 #, c-format @@ -512,21 +508,21 @@ msgstr "%d. iş, iş denetimsiz başlamış" #: builtins/getopt.c:110 #, c-format msgid "%s: illegal option -- %c\n" -msgstr "%s: kuraldışı seçenek -- %c\n" +msgstr "%s: kural dışı seçenek -- %c\n" #: builtins/getopt.c:111 #, c-format msgid "%s: option requires an argument -- %c\n" -msgstr "%s: seçenek bir argüman gerektirir -- %c\n" +msgstr "%s: seçenek bir argüman gerektiriyor -- %c\n" #: builtins/hash.def:91 msgid "hashing disabled" -msgstr "çitleme iptal edildi" +msgstr "sağlama iptal edildi" #: builtins/hash.def:139 #, c-format msgid "%s: hash table empty\n" -msgstr "%s: çitleme tablosu boş\n" +msgstr "%s: sağlama tablosu boş\n" #: builtins/hash.def:267 #, c-format @@ -544,14 +540,13 @@ msgid "" "'\n" "\n" msgstr "" +"'\n" +"\n" #: builtins/help.def:185 #, c-format -msgid "" -"no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." -msgstr "" -"`%s' ile ilgili bir yardım metni yok. `help help' veya `man -k %s' ya da " -"`info %s'.yazmayı deneyebilirsiniz." +msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." +msgstr "`%s' ile ilgili yardım konusu yok. `help help', `man -k %s', `info %s' yazmayı deneyin." #: builtins/help.def:224 #, c-format @@ -570,12 +565,12 @@ msgid "" "\n" msgstr "" "Bu kabuk komutları dahili olarak tanımlı. Listeyi görmek için `help'yazın.\n" -"`AD' gibi bir işlev hakkında bilgi almak için `help AD' yazınız.\n" -"Kabuk hakkında genel bir bilgi edinmek için `info bash'yazınız.\n" -"Bu listede olmayan komutlar hakkında bilgi bulmak isterseniz,\n" -"`man -k' veya `info' yazın.\n" +"`AD' gibi bir işlev hakkında bilgi almak için `help AD' yazın. Kabuk hakkında\n" +"genel bir bilgi edinmek için `info bash' yazın.\n" +"Bu listede olmayan\n" +"komutlar hakkında bilgi bulmak isterseniz `man -k' veya `info' yazın.\n" "\n" -"Bir ismin yanında bir yıldız imi (*) varsa komut iptal edilmiş demektir.\n" +"Bir adın yanında bir yıldız imi (*) varsa komut iptal edilmiş demektir.\n" "\n" #: builtins/history.def:155 @@ -632,7 +627,7 @@ msgstr "%s: dosya tanıtıcı belirtimi geçersiz" #: builtins/mapfile.def:279 builtins/read.def:315 #, c-format msgid "%d: invalid file descriptor: %s" -msgstr "%d: dosya tanıtıcı geçersiz: %s" +msgstr "%d: dosya açıklayıcısı geçersiz: %s" #: builtins/mapfile.def:288 builtins/mapfile.def:326 #, c-format @@ -642,7 +637,7 @@ msgstr "%s: geçersiz satır sayısı" #: builtins/mapfile.def:299 #, c-format msgid "%s: invalid array origin" -msgstr "%s: geçersiz dizi kökeni" +msgstr "%s: geçersiz dizilim kökeni" #: builtins/mapfile.def:316 #, c-format @@ -651,7 +646,7 @@ msgstr "%s: geçersiz geri çağırım niceliği" #: builtins/mapfile.def:349 msgid "empty array variable name" -msgstr "boş bir dizi değişken adı" +msgstr "boş bir dizilim değişken adı" #: builtins/mapfile.def:370 msgid "array variable support required" @@ -680,7 +675,7 @@ msgstr "uyarı: %s: %s" #: builtins/printf.def:788 #, c-format msgid "format parsing problem: %s" -msgstr "biçim ayıklama sorunu: %s" +msgstr "biçim ayrıştırma sorunu: %s" #: builtins/printf.def:885 msgid "missing hex digit for \\x" @@ -689,7 +684,7 @@ msgstr "\\x için onaltılık rakam eksik" #: builtins/printf.def:900 #, c-format msgid "missing unicode digit for \\%c" -msgstr "evrensel kod rakamı eksik \\%c" +msgstr "\\%c için unicode rakamı eksik" #: builtins/pushd.def:199 msgid "no other directory" @@ -727,12 +722,10 @@ msgid "" " \twith its position in the stack\n" " \n" " Arguments:\n" -" +N\tDisplays the Nth entry counting from the left of the list shown " -"by\n" +" +N\tDisplays the Nth entry counting from the left of the list shown by\n" " \tdirs when invoked without options, starting with zero.\n" " \n" -" -N\tDisplays the Nth entry counting from the right of the list shown " -"by\n" +" -N\tDisplays the Nth entry counting from the right of the list shown by\n" "\tdirs when invoked without options, starting with zero." msgstr "" "Geçerli hatırlanan dizinlerin listesini görüntüler. Dizinler\n" @@ -778,26 +771,26 @@ msgid "" " \n" " The `dirs' builtin displays the directory stack." msgstr "" -"Dizin yığıtının en üstüne bir dizin ekler, ya da geçerli çalışma\n" -" dizini yığıtın tepesine gelecek şekilde yığıtı döndürür. Hiç\n" +"Dizin yığınının en üstüne bir dizin ekler veya geçerli çalışma\n" +" dizini yığının tepesine gelecek şekilde yığını döndürür. Hiç\n" " argüman verilmemişse en üstteki iki dizini yer değiştirir.\n" " \n" " Seçenekler\n" -" -n\tYığıta dizin eklenirken dizinin normal değişimini yoksayar\n" -" \tböylece sadece yığıt değiştirilir.\n" +" -n\tYığına dizin eklenirken dizinin normal değişimini yok sayar\n" +" \tböylece yalnızca yığın değiştirilir.\n" " Argümanlar:\n" " +N\t(`dirs' tarafından gösterilen listenin solundan saymaya\n" " \tsıfırla başlandığında) N'inci dizin tepeye gelecek şekilde\n" -" \tyığıtı döndürür.\n" +" \tyığını döndürür.\n" " \n" " -N\t(`dirs' tarafından gösterilen listenin sağından saymaya\n" " \tsıfırla başlandığında) N'inci dizin tepeye gelecek şekilde\n" -" \tyığıtı döndürür.\n" +" \tyığını döndürür.\n" " \n" -" dizin\tDiZiNi yeni çalışma dizini yaparak dizin yığıtının\n" +" dizin\tDiZiNi yeni çalışma dizini yaparak dizin yığınının\n" " \ttepesine ekler.\n" " \n" -" Dizin yığıtını `dirs' komutuyla görebilirsiniz." +" Dizin yığınını `dirs' komutuyla görebilirsiniz." #: builtins/pushd.def:748 msgid "" @@ -819,13 +812,13 @@ msgid "" " \n" " The `dirs' builtin displays the directory stack." msgstr "" -"Dizin yığıtından girdileri siler. Hiç argüman verilmemişse,\n" -" yığıtın en üstündeki dizini yığıttan kaldırır ve yığıtın\n" +"Dizin yığınından girdileri siler. Hiç argüman verilmemişse\n" +" yığının en üstündeki dizini yığından kaldırır ve yığının\n" " tepesinde kalan dizine geçer.\n" " \n" " Seçenekler:\n" -" -n\tdizinleri yığıttan silerken normal dizin değişikliğini\n" -" \tengeller, böylece sadece yığıt değiştirilmiş olur. \n" +" -n\tdizinleri yığından silerken normal dizin değişikliğini\n" +" \tengeller, böylece yalnızca yığın değiştirilmiş olur. \n" " \n" " Argümanlar:\n" " +N\t`dirs' tarafından gösterilen listenin solundan saymaya\n" @@ -835,7 +828,7 @@ msgstr "" " \tsıfırla başlandığında N'inci girdiyi siler. Örneğin,\n" " \t`popd -0' son dizini `popd -1' sonuncudan öncekini siler. \n" " \n" -" Dizin yığıtını `dirs' komutuyla görebilirsiniz." +" Dizin yığınını `dirs' komutuyla görebilirsiniz." #: builtins/read.def:280 #, c-format @@ -849,7 +842,7 @@ msgstr "okuma hatası: %d: %s" #: builtins/return.def:68 msgid "can only `return' from a function or sourced script" -msgstr "sadece bir işlev veya betikten kaynaklı olarak `return' yapılabilir" +msgstr "yalnızca bir işlev veya betikten kaynaklı olarak `return' yapılabilir" #: builtins/set.def:869 msgid "cannot simultaneously unset a function and a variable" @@ -881,11 +874,11 @@ msgstr "kabuk seçenekleri aynı anda hem atanıp hem de iptal edilemez" #: builtins/shopt.def:428 #, c-format msgid "%s: invalid shell option name" -msgstr "%s: kabuk seçenek ismi geçersiz" +msgstr "%s: kabuk seçenek adı geçersiz" #: builtins/source.def:128 msgid "filename argument required" -msgstr "dosya ismi argüman gerekir" +msgstr "dosya adı argüman gerekir" #: builtins/source.def:154 #, c-format @@ -991,7 +984,7 @@ msgstr "Çıkılıyor..." #: error.c:287 #, c-format msgid "INFORM: " -msgstr "BİLGİLENDİR:" +msgstr "BİLGİLENDİR: " #: error.c:462 msgid "unknown command error" @@ -1050,7 +1043,7 @@ msgstr "%s: azami kaynak yuvalama sınırı aşıldı (%d)" #: execute_cmd.c:4913 #, c-format msgid "%s: maximum function nesting level exceeded (%d)" -msgstr "%s: azami fonksiyon yuvalama sınırı aşıldı (%d)" +msgstr "%s: azami işlev yuvalama sınırı aşıldı (%d)" #: execute_cmd.c:5467 #, c-format @@ -1093,20 +1086,19 @@ msgstr "ifade özyineleme düzeyi aşıldı" #: expr.c:291 msgid "recursion stack underflow" -msgstr "özyineleme yığıtı alttan taştı" +msgstr "özyineleme yığını alttan taştı" #: expr.c:477 msgid "syntax error in expression" -msgstr "ifadede sözdizimi hatası" +msgstr "ifadede sözdizim hatası" #: expr.c:521 msgid "attempted assignment to non-variable" msgstr "değişken olmayana atama yapmaya çalışıldı" #: expr.c:530 -#, fuzzy msgid "syntax error in variable assignment" -msgstr "ifadede sözdizimi hatası" +msgstr "değişken atamada sözdizim hatası" #: expr.c:544 expr.c:911 msgid "division by 0" @@ -1134,11 +1126,11 @@ msgstr "eksik `)'" #: expr.c:1107 expr.c:1487 msgid "syntax error: operand expected" -msgstr "sözdizimi hatası: terim umuluyordu" +msgstr "sözdizim hatası: terim umuluyordu" #: expr.c:1489 msgid "syntax error: invalid arithmetic operator" -msgstr "sözdizimi hatası: geçersiz aritmetik işleci" +msgstr "sözdizim hatası: geçersiz aritmetik işleci" #: expr.c:1513 #, c-format @@ -1150,9 +1142,8 @@ msgid "invalid arithmetic base" msgstr "geçersiz sayı tabanı" #: expr.c:1582 -#, fuzzy msgid "invalid integer constant" -msgstr "%s: geçersiz satır sayısı" +msgstr "geçersiz tamsayı sabiti" #: expr.c:1598 msgid "value too great for base" @@ -1175,8 +1166,7 @@ msgstr "fd %d için geciktirmeme kipi sıfırlanamıyor" #: input.c:266 #, c-format msgid "cannot allocate new file descriptor for bash input from fd %d" -msgstr "" -"fd %d tanıtıcısındaki bash girdisi için yeni dosya tanıtıcısı ayrılamıyor" +msgstr "fd %d tanıtıcısındaki bash girdisi için yeni dosya tanıtıcısı ayrılamıyor" #: input.c:274 #, c-format @@ -1256,7 +1246,7 @@ msgstr "Bilinmeyen durum" #: jobs.c:2001 #, c-format msgid "(core dumped) " -msgstr "(çekirdek döküldü)" +msgstr "(çekirdek döküldü) " #: jobs.c:2020 #, c-format @@ -1284,9 +1274,9 @@ msgid "wait_for_job: job %d is stopped" msgstr "wait_for_job: iş %d durdu" #: jobs.c:3564 -#, fuzzy, c-format +#, c-format msgid "%s: no current jobs" -msgstr "%s: böyle bir iş yok" +msgstr "%s: geçerli iş yok" #: jobs.c:3571 #, c-format @@ -1322,9 +1312,8 @@ msgid "initialize_job_control: getpgrp failed" msgstr "initialize_job_control: getpgrp başarısız" #: jobs.c:4447 -#, fuzzy msgid "initialize_job_control: no job control in background" -msgstr "initialize_job_control: satır düzeni" +msgstr "initialize_job_control: arka planda iş denetimi yok" #: jobs.c:4463 msgid "initialize_job_control: line discipline" @@ -1378,9 +1367,8 @@ msgid "free: underflow detected; mh_nbytes out of range" msgstr "free: alttan taşma saptandı; mh_nbytes aralık dışında" #: lib/malloc/malloc.c:1001 -#, fuzzy msgid "free: underflow detected; magic8 corrupted" -msgstr "free: alttan taşma saptandı; mh_nbytes aralık dışında" +msgstr "free: alttan taşma saptandı; magic8 hasarlı" #: lib/malloc/malloc.c:1009 msgid "free: start and end chunk sizes differ" @@ -1395,9 +1383,8 @@ msgid "realloc: underflow detected; mh_nbytes out of range" msgstr "realloc: alttan taşma saptandı; mh_nbytes aralık dışında" #: lib/malloc/malloc.c:1141 -#, fuzzy msgid "realloc: underflow detected; magic8 corrupted" -msgstr "realloc: alttan taşma saptandı; mh_nbytes aralık dışında" +msgstr "realloc: alttan taşma saptandı; magic8 hasarlı" #: lib/malloc/malloc.c:1150 msgid "realloc: start and end chunk sizes differ" @@ -1476,16 +1463,16 @@ msgstr "%s'deki posta okundu\n" #: make_cmd.c:317 msgid "syntax error: arithmetic expression required" -msgstr "sözdizimi hatası: aritmetik ifadesi gerekli" +msgstr "sözdizim hatası: aritmetik ifadesi gerekli" #: make_cmd.c:319 msgid "syntax error: `;' unexpected" -msgstr "sözdizimi hatası: `;' beklenmiyordu" +msgstr "sözdizim hatası: `;' beklenmiyordu" #: make_cmd.c:320 #, c-format msgid "syntax error: `((%s))'" -msgstr "sözdizimi hatası: `((%s))'" +msgstr "sözdizim hatası: `((%s))'" #: make_cmd.c:572 #, c-format @@ -1504,12 +1491,8 @@ msgstr "make_redirection: yönlendirme yönergesi `%d' aralık dışında" #: parse.y:2393 #, c-format -msgid "" -"shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line " -"truncated" -msgstr "" -"shell_getc: shell_input_line_size (%zu) SIZE_MAX değerini aşıyor (%lu): " -"satır kırpıldı" +msgid "shell_getc: shell_input_line_size (%zu) exceeds SIZE_MAX (%lu): line truncated" +msgstr "shell_getc: shell_input_line_size (%zu) SIZE_MAX değerini aşıyor (%lu): satır kırpıldı" #: parse.y:2826 msgid "maximum here-document count exceeded" @@ -1527,16 +1510,16 @@ msgstr "`]]' aranırken beklenmedik dosya sonu" #: parse.y:4701 #, c-format msgid "syntax error in conditional expression: unexpected token `%s'" -msgstr "koşullu ifadede sözdizimi hatası: beklenmedik dizgecik `%s'" +msgstr "koşullu ifadede sözdizim hatası: beklenmedik jeton `%s'" #: parse.y:4705 msgid "syntax error in conditional expression" -msgstr "koşullu ifadede sözdizimi hatası" +msgstr "koşullu ifadede sözdizim hatası" #: parse.y:4783 #, c-format msgid "unexpected token `%s', expected `)'" -msgstr "beklenmedik dizgecik `%s', `)' umuluyordu" +msgstr "beklenmedik jeton `%s', `)' umuluyordu" #: parse.y:4787 msgid "expected `)'" @@ -1554,7 +1537,7 @@ msgstr "koşullu tek terimli işlece beklenmedik argüman" #: parse.y:4865 #, c-format msgid "unexpected token `%s', conditional binary operator expected" -msgstr "beklenmedik dizgecik `%s', koşullu iki terimli işleç umuluyordu" +msgstr "beklenmedik jeton `%s', koşullu iki terimli işleç umuluyordu" #: parse.y:4869 msgid "conditional binary operator expected" @@ -1572,35 +1555,35 @@ msgstr "koşullu iki terimli işlece beklenmedik argüman" #: parse.y:4906 #, c-format msgid "unexpected token `%c' in conditional command" -msgstr "koşullu komutta beklenmeyen dizgecik `%c'" +msgstr "koşullu komutta beklenmeyen jeton `%c'" #: parse.y:4909 #, c-format msgid "unexpected token `%s' in conditional command" -msgstr "koşullu komutta beklenmeyen dizgecik `%s'" +msgstr "koşullu komutta beklenmeyen jeton `%s'" #: parse.y:4913 #, c-format msgid "unexpected token %d in conditional command" -msgstr "koşullu komutta beklenmeyen dizgecik %d" +msgstr "koşullu komutta beklenmeyen jeton %d" #: parse.y:6336 #, c-format msgid "syntax error near unexpected token `%s'" -msgstr "beklenmeyen dizgecik `%s' yakınında sözdizimi hatası" +msgstr "beklenmeyen jeton `%s' yakınında sözdizim hatası" #: parse.y:6355 #, c-format msgid "syntax error near `%s'" -msgstr "`%s' yakınında sözdizimi hatası" +msgstr "`%s' yakınında sözdizim hatası" #: parse.y:6365 msgid "syntax error: unexpected end of file" -msgstr "sözdizimi hatası: beklenmeyen dosya sonu" +msgstr "sözdizim hatası: beklenmeyen dosya sonu" #: parse.y:6365 msgid "syntax error" -msgstr "sözdizimi hatası" +msgstr "sözdizim hatası" #: parse.y:6428 #, c-format @@ -1725,7 +1708,7 @@ msgstr "%s: Bir dizin" #: shell.c:1881 msgid "I have no name!" -msgstr "Hiç ismim yok!" +msgstr "Adsızım ben!" #: shell.c:2035 #, c-format @@ -1751,25 +1734,22 @@ msgstr "Kabuk seçenekleri:\n" #: shell.c:2043 msgid "\t-ilrsD or -c command or -O shopt_option\t\t(invocation only)\n" -msgstr "\t-ilrsD veya -c KOMUT veya -O shopt_seçeneği\t\t(sadece çağrı için)\n" +msgstr "\t-ilrsD veya -c KOMUT veya -O shopt_seçeneği\t\t(yalnızca çağrı için)\n" #: shell.c:2062 #, c-format msgid "\t-%s or -o option\n" -msgstr "\t-%s ya da -o seçeneği\n" +msgstr "\t-%s veya -o seçeneği\n" #: shell.c:2068 #, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" -msgstr "" -"Kabuk seçenekleriyle ilgili daha fazla bilgi için `%s -c \"help set\"' " -"yazın.\n" +msgstr "Kabuk seçenekleriyle ilgili daha fazla bilgi için `%s -c \"help set\"' yazın.\n" #: shell.c:2069 #, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" -msgstr "" -"Kabuk yerleşik komutlarıyla ilgili bilgi almak için `%s -c help' yazın.\n" +msgstr "Kabuk yerleşik komutlarıyla ilgili bilgi almak için `%s -c help' yazın.\n" #: shell.c:2070 #, c-format @@ -1786,8 +1766,7 @@ msgstr "bash ana sayfası: \n" #: shell.c:2073 #, c-format msgid "General help using GNU software: \n" -msgstr "" -"GNU yazılımı kullanımı hakkında genel yardım: \n" +msgstr "GNU yazılımı kullanımı hakkında genel yardım: \n" #: sig.c:757 #, c-format @@ -1980,21 +1959,21 @@ msgstr "süreç ikamesi için alt süreç yapılamıyor" #: subst.c:6059 #, c-format msgid "cannot open named pipe %s for reading" -msgstr "isimli boru %s okumak için açılamıyor" +msgstr "adlı boru %s okumak için açılamıyor" #: subst.c:6061 #, c-format msgid "cannot open named pipe %s for writing" -msgstr "isimli boru %s yazmak için açılamıyor" +msgstr "adlı boru %s yazmak için açılamıyor" #: subst.c:6084 #, c-format msgid "cannot duplicate named pipe %s as fd %d" -msgstr "isimli boru %s fd %d olarak yinelenemiyor" +msgstr "adlı boru %s fd %d olarak yinelenemiyor" #: subst.c:6213 msgid "command substitution: ignored null byte in input" -msgstr "komut ikamesi: girdideki null bayt yoksayıldı" +msgstr "komut ikamesi: girdideki null bayt yok sayıldı" #: subst.c:6353 msgid "cannot make pipe for command substitution" @@ -2024,19 +2003,19 @@ msgid "%s: invalid variable name" msgstr "%s: geçersiz değişken adı" #: subst.c:7256 -#, fuzzy, c-format +#, c-format msgid "%s: parameter not set" -msgstr "%s: parametre boş ya da değer atanmamış" +msgstr "%s: parametre ayarlanmamış" #: subst.c:7258 #, c-format msgid "%s: parameter null or not set" -msgstr "%s: parametre boş ya da değer atanmamış" +msgstr "%s: parametre boş veya değer atanmamış" #: subst.c:7503 subst.c:7518 #, c-format msgid "%s: substring expression < 0" -msgstr "%s: altdizge ifadesi < 0" +msgstr "%s: altdizi ifadesi < 0" #: subst.c:9281 subst.c:9302 #, c-format @@ -2049,12 +2028,8 @@ msgid "$%s: cannot assign in this way" msgstr "$%s: bu yolla atama yapılmaz" #: subst.c:9814 -msgid "" -"future versions of the shell will force evaluation as an arithmetic " -"substitution" -msgstr "" -"kabuk gelecekteki sürümlerinde, bir aritmetik ikame olarak değerlendirmeye " -"zorlayacak" +msgid "future versions of the shell will force evaluation as an arithmetic substitution" +msgstr "kabuk gelecekteki sürümlerinde, bir aritmetik ikame olarak değerlendirmeye zorlayacak" #: subst.c:10367 #, c-format @@ -2099,18 +2074,18 @@ msgid "missing `]'" msgstr "eksik `]'" #: test.c:899 -#, fuzzy, c-format +#, c-format msgid "syntax error: `%s' unexpected" -msgstr "sözdizimi hatası: `;' beklenmiyordu" +msgstr "sözdizim hatası: '%s' beklenmiyordu" #: trap.c:220 msgid "invalid signal number" msgstr "geçersiz sinyal numarası" #: trap.c:325 -#, fuzzy, c-format +#, c-format msgid "trap handler: maximum trap handler level exceeded (%d)" -msgstr "eval: azami eval yuvalama sınırı aşıldı (%d)" +msgstr "tuzak işleyicisi: en yüksek tuzak işleyicisi düzeyi aşıldı (%d)" #: trap.c:414 #, c-format @@ -2119,10 +2094,8 @@ msgstr "run_pending_traps:trap_list[%d] içinde hatalı değer: %p" #: trap.c:418 #, c-format -msgid "" -"run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" -msgstr "" -"run_pending_traps: sinyal yakalayıcı SIG_DFL'dir, kendime %d (%s) göndererek" +msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" +msgstr "run_pending_traps: sinyal yakalayıcı SIG_DFL'dir, kendime %d (%s) göndererek" #: trap.c:487 #, c-format @@ -2151,7 +2124,7 @@ msgstr "%s: değişkene değer atanmamış olabilir" #: variables.c:3475 #, c-format msgid "%s: assigning integer to name reference" -msgstr "%s: isim referansına tamsayı ataması" +msgstr "%s: ad başvurusuna tamsayı ataması" #: variables.c:4404 msgid "all_local_variables: no function context at current scope" @@ -2182,8 +2155,7 @@ msgstr "pop_var_context: genel değişkenler bağlamı yok" #: variables.c:5424 msgid "pop_scope: head of shell_variables not a temporary environment scope" -msgstr "" -"pop_scope: kabuk değişkenlerinin başı bir geçici ortam etki alanı değil" +msgstr "pop_scope: kabuk değişkenlerinin başı bir geçici ortam etki alanı değil" #: variables.c:6387 #, c-format @@ -2201,17 +2173,12 @@ msgid "%s: %s: compatibility value out of range" msgstr "%s: %s: uyumlulukdeğeri aralık dışı" #: version.c:46 version2.c:46 -#, fuzzy msgid "Copyright (C) 2020 Free Software Foundation, Inc." -msgstr "Telif Hakkı (C) 2012 Özgür Yazılım Vakfı A.Ş." +msgstr "Telif hakkı (C) 2020 Free Software Foundation, Inc." #: version.c:47 version2.c:47 -msgid "" -"License GPLv3+: GNU GPL version 3 or later \n" -msgstr "" -"Lisans GPLv3+: GNU GPL sürüm 3 veya sonrası \n" +msgid "License GPLv3+: GNU GPL version 3 or later \n" +msgstr "Lisans GPLv3+: GNU GPL sürüm 3 veya sonrası \n" #: version.c:86 version2.c:86 #, c-format @@ -2248,20 +2215,15 @@ msgstr "%s: %s:%d: %lu bayt ayrılamıyor" #: builtins.c:45 msgid "alias [-p] [name[=value] ... ]" -msgstr "alias [-p] [isim[=değer] ... ]" +msgstr "alias [-p] [ad[=değer] ... ]" #: builtins.c:49 msgid "unalias [-a] name [name ...]" -msgstr "unalias [-a] isim [isim ...]" +msgstr "unalias [-a] ad [ad ...]" #: builtins.c:53 -msgid "" -"bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-" -"x keyseq:shell-command] [keyseq:readline-function or readline-command]" -msgstr "" -"bind [-lpvsPVSX] [-m anahtar eşleniği] [-f dosyaadı] [-q isim] [-u isim] [-r " -"anahtar sırası] [-x keyseq:kabuk-komutu] [keyseq:satırokuma-işlevi veya " -"satırokuma-komutu]" +msgid "bind [-lpsvPSVX] [-m keymap] [-f filename] [-q name] [-u name] [-r keyseq] [-x keyseq:shell-command] [keyseq:readline-function or readline-command]" +msgstr "bind [-lpvsPVSX] [-m anahtar eşleniği] [-f dosyaadı] [-q ad] [-u ad] [-r anahtar sırası] [-x keyseq:kabuk-komutu] [keyseq:satırokuma-işlevi veya satırokuma-komutu]" #: builtins.c:56 msgid "break [n]" @@ -2292,18 +2254,16 @@ msgid "command [-pVv] command [arg ...]" msgstr "command [-pVv] command [arg ...]" #: builtins.c:78 -#, fuzzy msgid "declare [-aAfFgiIlnrtux] [-p] [name[=value] ...]" -msgstr "declare [-aAfFgilnrtux] [-p] [isim[=değer] ...]" +msgstr "declare [-aAfFgiIlnrtux] [-p] [ad[=değer] ...]" #: builtins.c:80 -#, fuzzy msgid "typeset [-aAfFgiIlnrtux] [-p] name[=value] ..." -msgstr "typeset [-aAfFgilnrtux] [-p] isim[=değer] ..." +msgstr "typeset [-aAfFgiIlnrtux] [-p] ad[=değer] ..." #: builtins.c:82 msgid "local [option] name[=value] ..." -msgstr "local [seçenek] isim[=değer] ..." +msgstr "local [seçenek] ad[=değer] ..." #: builtins.c:85 msgid "echo [-neE] [arg ...]" @@ -2315,21 +2275,19 @@ msgstr "echo [-n] [arg ...]" #: builtins.c:92 msgid "enable [-a] [-dnps] [-f filename] [name ...]" -msgstr "enable [-a] [-dnps] [-f dosyaadı] [isim ...]" +msgstr "enable [-a] [-dnps] [-f dosyaadı] [ad ...]" #: builtins.c:94 msgid "eval [arg ...]" msgstr "eval [arg ...]" #: builtins.c:96 -#, fuzzy msgid "getopts optstring name [arg ...]" -msgstr "getopts optstring isim [arg]" +msgstr "getopts seçenekdizisi ad [arg ...]" #: builtins.c:98 -#, fuzzy msgid "exec [-cl] [-a name] [command [argument ...]] [redirection ...]" -msgstr "exec [-cl] [-a isim] [komut [argümanlar ...]] [yönlendirme ...]" +msgstr "exec [-cl] [-a ad] [komut [argüman ...]] [y. yönlendirme ...]" #: builtins.c:100 msgid "exit [n]" @@ -2353,19 +2311,15 @@ msgstr "bg [görev_tan ...]" #: builtins.c:116 msgid "hash [-lr] [-p pathname] [-dt] [name ...]" -msgstr "hash [-lr] [-p yoladı] [-dt] [isim ...]" +msgstr "hash [-lr] [-p yoladı] [-dt] [ad ...]" #: builtins.c:119 msgid "help [-dms] [pattern ...]" msgstr "help [-dms] [desen ...]" #: builtins.c:123 -msgid "" -"history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg " -"[arg...]" -msgstr "" -"history [-c] [-d başlangıç] [n] veya history -anrw [dosyaadı] veya history -" -"ps arg [arg...]" +msgid "history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]" +msgstr "history [-c] [-d başlangıç] [n] veya history -anrw [dosyaadı] veya history -ps arg [arg...]" #: builtins.c:127 msgid "jobs [-lnprs] [jobspec ...] or jobs -x command [args]" @@ -2376,24 +2330,16 @@ msgid "disown [-h] [-ar] [jobspec ... | pid ...]" msgstr "disown [-h] [-ar] [görevtan ... | pid ...]" #: builtins.c:134 -msgid "" -"kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l " -"[sigspec]" -msgstr "" -"kill [-s sinspec | -n signum | -sigspec] pid | görevtan ... veya kill -l " -"[sigspec]" +msgid "kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]" +msgstr "kill [-s sinspec | -n signum | -sigspec] pid | görevtan ... veya kill -l [sigspec]" #: builtins.c:136 msgid "let arg [arg ...]" msgstr "let arg [arg ...]" #: builtins.c:138 -msgid "" -"read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p " -"prompt] [-t timeout] [-u fd] [name ...]" -msgstr "" -"read [-ers] [-a dizi] [-d sonlandırıcı] [-i metin] [-n nkarakter] [-N " -"nkarakter] [-p istem] [-t zamanaşımı] [-u fd] [isim ...]" +msgid "read [-ers] [-a array] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]" +msgstr "read [-ers] [-a dizi] [-d sonlandırıcı] [-i metin] [-n nkarakter] [-N nkarakter] [-p istem] [-t zamanaşımı] [-u fd] [ad ...]" #: builtins.c:140 msgid "return [n]" @@ -2405,15 +2351,15 @@ msgstr "set [-abefhkmnptuvxBCHP] [-o option-name] [--] [arg ...]" #: builtins.c:144 msgid "unset [-f] [-v] [-n] [name ...]" -msgstr "unset [-f] [-v] [-n] [isim ...]" +msgstr "unset [-f] [-v] [-n] [ad ...]" #: builtins.c:146 msgid "export [-fn] [name[=value] ...] or export -p" -msgstr "export [-fn] [isim[=değer] ...] veya export -p" +msgstr "export [-fn] [ad[=değer] ...] veya export -p" #: builtins.c:148 msgid "readonly [-aAf] [name[=value] ...] or readonly -p" -msgstr "readonly [-aAf] [isim[=değer] ...] veya readonly -p" +msgstr "readonly [-aAf] [ad[=değer] ...] veya readonly -p" #: builtins.c:150 msgid "shift [n]" @@ -2445,7 +2391,7 @@ msgstr "trap [-lp] [[arg] sinyal_tan ...]" #: builtins.c:168 msgid "type [-afptP] name [name ...]" -msgstr "type [-afptP] isim [isim ...]" +msgstr "type [-afptP] ad [ad ...]" #: builtins.c:171 msgid "ulimit [-SHabcdefiklmnpqrstuvxPT] [limit]" @@ -2456,9 +2402,8 @@ msgid "umask [-p] [-S] [mode]" msgstr "umask [-p] [-S] [kip]" #: builtins.c:177 -#, fuzzy msgid "wait [-fn] [-p var] [id ...]" -msgstr "wait [-n] [id ...]" +msgstr "wait [-fn] [-p değişken] [kimlik ...]" #: builtins.c:181 msgid "wait [pid ...]" @@ -2466,7 +2411,7 @@ msgstr "wait [pid ...]" #: builtins.c:184 msgid "for NAME [in WORDS ... ] ; do COMMANDS; done" -msgstr "for İSİM [in KELİMELER ... ] ; do KOMUTLAR; done" +msgstr "for AD [in SÖZCÜKLER ... ] ; do KOMUTLAR; done" #: builtins.c:186 msgid "for (( exp1; exp2; exp3 )); do COMMANDS; done" @@ -2474,7 +2419,7 @@ msgstr "for (( ifade1; ifade2; ifade3 )); do KOMUTLAR; done" #: builtins.c:188 msgid "select NAME [in WORDS ... ;] do COMMANDS; done" -msgstr "select İSİM [in KELİMELER ... ;] do KOMUTLAR; done" +msgstr "select AD [in SÖZCÜKLER ... ;] do KOMUTLAR; done" #: builtins.c:190 msgid "time [-p] pipeline" @@ -2482,15 +2427,11 @@ msgstr "time [-p] zamantüneli" #: builtins.c:192 msgid "case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac" -msgstr "case KELİME in [DESEN [| DESEN]...) KOMUTLAR ;;]... esac" +msgstr "case SÖZCÜK in [DİZGİ [| DİZGİ]...) KOMUTLAR ;;]... esac" #: builtins.c:194 -msgid "" -"if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else " -"COMMANDS; ] fi" -msgstr "" -"if KOMUTLAR; then KOMUTLAR; [ elif KOMUTLAR; then KOMUTLAR; ]... [ else " -"KOMUTLAR; ] fi" +msgid "if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi" +msgstr "if KOMUTLAR; then KOMUTLAR; [ elif KOMUTLAR; then KOMUTLAR; ]... [ else KOMUTLAR; ] fi" #: builtins.c:196 msgid "while COMMANDS; do COMMANDS; done" @@ -2502,11 +2443,11 @@ msgstr "until KOMUTLAR; do KOMUTLAR; done" #: builtins.c:200 msgid "coproc [NAME] command [redirections]" -msgstr "coproc [isim] command [yönlendirmeler]" +msgstr "coproc [ad] command [yönlendirmeler]" #: builtins.c:202 msgid "function name { COMMANDS ; } or name () { COMMANDS ; }" -msgstr "function isim { KOMUTLAR ; } veya isim () { KOMUTLAR ; }" +msgstr "function ad { KOMUTLAR ; } veya ad () { KOMUTLAR ; }" #: builtins.c:204 msgid "{ COMMANDS ; }" @@ -2526,7 +2467,7 @@ msgstr "[[ ifade ]]" #: builtins.c:212 msgid "variables - Names and meanings of some shell variables" -msgstr "variables - Bazı kabuk değişkenlerinin isim ve anlamları" +msgstr "variables - Bazı kabuk değişkenlerinin ad ve anlamları" #: builtins.c:215 msgid "pushd [-n] [+N | -N | dir]" @@ -2549,47 +2490,24 @@ msgid "printf [-v var] format [arguments]" msgstr "printf [-v var] biçim [argümanlar]" #: builtins.c:231 -#, fuzzy -msgid "" -"complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-" -"W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S " -"suffix] [name ...]" -msgstr "" -"complete [-abcdefgjksuv] [-pr] [-DE] [-o seçenek] [-A işlem] [-G genelyol] [-" -"W kelimelistesi] [-F işlev] [-C komut] [-X süzgeçyolu] [-P önek] [-S sonek] " -"[isim ...]" +msgid "complete [-abcdefgjksuv] [-pr] [-DEI] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [name ...]" +msgstr "complete [-abcdefgjksuv] [-pr] [-DEI] [-o seçenek] [-A eylem] [-G global kısım] [-W sözcük listesi] [-F işlev] [-C komut] [-X süzgeç] [-P önek] [-S sonek] [ad ...]" #: builtins.c:235 -#, fuzzy -msgid "" -"compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-" -"F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" -msgstr "" -"compgen [-abcdefgjksuv] [-o seçenek] [-A işlem] [-G genelyol] [-W " -"kelimelistesi] [-F işlev] [-C komut] [-X süzgeçyolu] [-P önek] [-S sonek] " -"[kelime]" +msgid "compgen [-abcdefgjksuv] [-o option] [-A action] [-G globpat] [-W wordlist] [-F function] [-C command] [-X filterpat] [-P prefix] [-S suffix] [word]" +msgstr "compgen [-abcdefgjksuv] [-o seçenek] [-A eylem] [-G global kısım] [-W sözcük listesi] [-F işlev] [-C komut] [-X süzgeç] [-P önek] [-S sonek] [sözcük]" #: builtins.c:239 -#, fuzzy msgid "compopt [-o|+o option] [-DEI] [name ...]" -msgstr "compopt [-o|+o seçenek] [-DE] [isim ...]" +msgstr "compopt [-o|+o seçenek] [-DEI] [ad ...]" #: builtins.c:242 -msgid "" -"mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C " -"callback] [-c quantum] [array]" -msgstr "" -"mapfile [-d sonlandrc] [-n say] [-O kaynak] [-s say] [-t] [-u fd] [-C " -"geriçağırım] [-c parçacık] [dizi]" +msgid "mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" +msgstr "mapfile [-d sonlandrc] [-n say] [-O kaynak] [-s say] [-t] [-u fd] [-C geriçağırım] [-c parçacık] [dizi]" #: builtins.c:244 -#, fuzzy -msgid "" -"readarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C " -"callback] [-c quantum] [array]" -msgstr "" -"readarray [-n say] [-O kaynak] [-s say] [-t] [-u fd] [-C geriçağırım] [-c " -"parçacık] [dizi]" +msgid "readarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]" +msgstr "readarray [-d sınırlandırıcı] [-n sayım] [-O köken] [-s sayım] [-t] [-u fd] [-C geri çağırma] [-c kuantum] [dizilim]" #: builtins.c:256 msgid "" @@ -2606,25 +2524,23 @@ msgid "" " -p\tprint all defined aliases in a reusable format\n" " \n" " Exit Status:\n" -" alias returns true unless a NAME is supplied for which no alias has " -"been\n" +" alias returns true unless a NAME is supplied for which no alias has been\n" " defined." msgstr "" "Rumuz tanımla veya görüntüle.\n" " \n" -" `alias' argümansız kullanıldığında standart çıktıda kullanılabilecek " -"tüm\n" -" rumuzları `alias İSİM=DEĞER' biçiminde listeler.\n" +" `alias' argümansız kullanıldığında standart çıktıda kullanılabilecek tüm\n" +" rumuzları `alias AD=DEĞER' biçiminde listeler.\n" " \n" -" Diğer durumda DEĞERi verilmiş her İSİM için bir rumuz tanımlanır.\n" -" DEĞERdeki boşluk, rumuz genişletildiğinde sonraki kelimenin rumuz\n" +" Diğer durumda DEĞERi verilmiş her AD için bir rumuz tanımlanır.\n" +" DEĞERdeki boşluk, rumuz genişletildiğinde sonraki sözcüğün rumuz\n" " ikamesi için denetlenmesine sebep olur.\n" " \n" " Seçenekler:\n" -" -p\tTüm rumuzları tekrar kullanılabilir biçimde listele\n" +" -p\tTüm rumuzları yeniden kullanılabilir biçimde listele\n" " \n" " Çıkış Durumu:\n" -" Hiçbir şeyin rumuzu olmayan bir İSİM verilmedikçe alias doğru döndürür." +" Hiçbir şeyin rumuzu olmayan bir AD verilmedikçe alias doğru döndürür." #: builtins.c:278 msgid "" @@ -2640,7 +2556,7 @@ msgstr "" " Seçenekler:\n" " -a\ttüm rumuz tanımlamalarını kaldır\n" " \n" -" İSİM mevcut olmayan bir rumuz olmadığı takdirde doğru\n" +" AD mevcut olmayan bir rumuz olmadığı takdirde doğru\n" " döndür." #: builtins.c:291 @@ -2655,74 +2571,64 @@ msgid "" " Options:\n" " -m keymap Use KEYMAP as the keymap for the duration of this\n" " command. Acceptable keymap names are emacs,\n" -" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-" -"move,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" " vi-command, and vi-insert.\n" " -l List names of functions.\n" " -P List function names and bindings.\n" " -p List functions and bindings in a form that can be\n" " reused as input.\n" -" -S List key sequences that invoke macros and their " -"values\n" -" -s List key sequences that invoke macros and their " -"values\n" +" -S List key sequences that invoke macros and their values\n" +" -s List key sequences that invoke macros and their values\n" " in a form that can be reused as input.\n" " -V List variable names and values\n" " -v List variable names and values in a form that can\n" " be reused as input.\n" " -q function-name Query about which keys invoke the named function.\n" -" -u function-name Unbind all keys which are bound to the named " -"function.\n" +" -u function-name Unbind all keys which are bound to the named function.\n" " -r keyseq Remove the binding for KEYSEQ.\n" " -f filename Read key bindings from FILENAME.\n" " -x keyseq:shell-command\tCause SHELL-COMMAND to be executed when\n" " \t\t\t\tKEYSEQ is entered.\n" -" -X List key sequences bound with -x and associated " -"commands\n" +" -X List key sequences bound with -x and associated commands\n" " in a form that can be reused as input.\n" " \n" " Exit Status:\n" " bind returns 0 unless an unrecognized option is given or an error occurs." msgstr "" -"Readline tuş atamalarını ve değişkenlerini ayarla.\n" +"Readline düğme atamalarını ve değişkenlerini ayarla.\n" " \n" -" Bir tuş dizilimini bir Readline işlevine veya makrosuna bağlar ya da\n" +" Bir düğme dizilimini bir Readline işlevine veya makrosuna bağlar veya\n" " bir Readline değişkeni atar. Seçeneksiz argüman sözdizimi ~/.initrc\n" " içinde bulunana eşdeğerdir, ama tek bir argüman olarak aktarılması\n" " gerekir: bind '\"\\C-x\\C-r\": re-read-init-file'.\n" " \n" " Seçenekler:\n" -" -m TUŞDİZİSİ Bu komut süresince kısayol olarak TUŞDİZİSİ\n" -" kullanılır. Olası kısayol isimleri: emacs,\n" +" -m DÜĞMEEŞLEM Bu komut süresince kısayol olarak DÜĞMEEŞLEM\n" +" kullanılır. Olası kısayol adları: emacs,\n" " emacs-standard, emacs-meta, emacs-ctlx, vi,\n" " vi-move, vi-command ve vi-insert.\n" -" -l İşlev isimlerini listeler.\n" -" -P İşlev isimlerini ve kısayolları listeler.\n" -" -p İşlev isimlerini ve kısayolları, girdi olarak\n" +" -l İşlev adlarını listeler.\n" +" -P İşlev adlarını ve kısayolları listeler.\n" +" -p İşlev adlarını ve kısayolları, girdi olarak\n" " kullanılabilir biçimde listeler.\n" -" -S Makroları çağıran tuş dizilerini ve değerlerini\n" +" -S Makroları çağıran düğme dizilerini ve değerlerini\n" " listeler\n" -" -s Makroları çağıran tuş dizilerini ve değerlerini\n" -" girdi olarak kullanılabilir biçimde listeler. " -"-V Değişken isimlerini ve değerlerini listeler.\n" -" -v Değişken isimlerini ve değerlerini girdi olarak\n" +" -s Makroları çağıran düğme dizilerini ve değerlerini\n" +" girdi olarak kullanılabilir biçimde listeler.\n" +" -V Değişken adlarını ve değerlerini listeler.\n" +" -v Değişken adlarını ve değerlerini girdi olarak\n" " kullanılabilir biçimde listeler.\n" -" -q İŞLEV İsmi belirtilen İŞLEVi çağıran tuşlar hakkında " -"sorgu.\n" -" -u İŞLEV İsmi belirtilen İŞLEVi çağıran tüm tuş " -"kısayollarını\n" +" -q İŞLEV Adı belirtilen İŞLEVi çağıran düğmeler hakkında sorgu.\n" +" -u İŞLEV Adı belirtilen İŞLEVi çağıran tüm düğme kısayollarını\n" " kaldırır.\n" -" -r TUŞDİZİSİ TUŞDİZİSİ için mevcut kısayolları kaldırır.\n" -" -x TUŞDİZİSİ:KABUK-KOMUTU\tTUŞDİZİSİnin her girilişinde KABUK-" -"KOMUTUnun\n" +" -r DÜĞMEDİZİSİ DÜĞMEDİZİSİ için mevcut kısayolları kaldırır.\n" +" -x DÜĞMEDİZİSİ:KABUK-KOMUTU\tDÜĞMEDİZİSİnin her girilişinde KABUK-KOMUTUnun\n" " \t\t\t\tçalıştırılmasını sağlar.\n" -" -X Tuş dizilerini -x ve ilişkili komutlarını tekrar " -"bir girdi olarak kullanılabilecek\n" -" biçimde listeler.\n" +" -X Düğme dizilerini -x ve ilişkili komutlarını yeniden\n" +" bir girdi olarak kullanılabilecek biçimde listeler.\n" " \n" " Çıkış Durumu:\n" -" tanınmayan bir seçenek girilmediği veya bir hata oluşmadığı durumda 0 " -"döndürür." +" tanınmayan bir seçenek girilmediği veya bir hata oluşmadığı durumda 0 döndürür." #: builtins.c:330 msgid "" @@ -2736,8 +2642,7 @@ msgid "" msgstr "" "for, while veya until döngülerinden çık.\n" " \n" -" Bir FOR, WHILE veya UNTIL döngüsünden çık. Eğer N belirtilmişse, N " -"ilişkili\n" +" Bir FOR, WHILE veya UNTIL döngüsünden çık. Eğer N belirtilmişse N ilişkili\n" " döngüden çık.\n" " \n" " Çıkış Durumu:\n" @@ -2756,20 +2661,29 @@ msgstr "" "for, while veya until döngülerine devam et.\n" " \n" " İlişkili FOR, WHILE veya UNTIL döngüsünün sonraki adımına devam eder.\n" -" N tanımlanmışsa, N'inci ilişkili döngüye devam eder.\n" +" N tanımlanmışsa N'inci ilişkili döngüye devam eder.\n" " \n" " Çıkış Durumu:\n" " N, 1 veya daha büyük olmadığında çıkış durumu 0'dır." #: builtins.c:354 #, fuzzy +#| msgid "" +#| "Execute shell builtins.\n" +#| " \n" +#| " Execute SHELL-BUILTIN with arguments ARGs without performing command\n" +#| " lookup. This is useful when you wish to reimplement a shell builtin\n" +#| " as a shell function, but need to execute the builtin within the function.\n" +#| " \n" +#| " Exit Status:\n" +#| " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" +#| " not a shell builtin.." msgid "" "Execute shell builtins.\n" " \n" " Execute SHELL-BUILTIN with arguments ARGs without performing command\n" " lookup. This is useful when you wish to reimplement a shell builtin\n" -" as a shell function, but need to execute the builtin within the " -"function.\n" +" as a shell function, but need to execute the builtin within the function.\n" " \n" " Exit Status:\n" " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" @@ -2778,14 +2692,11 @@ msgstr "" "Kabuk dahillerini çalıştır.\n" " \n" " Komut araması yapmadan KABUK-DAHİLİ, ARGÜMANLAR argümanları ile\n" -" çalıştır. Bu, bir KABUK-DAHİLİ, bir kabuk işlevi olarak tekrar uygulamak " -"isteyip\n" -" işlev içerisinde dahili olanı da çalıştırmanız gerektiğinizde " -"kullanışlıdır.\n" +" çalıştır. Bu, bir KABUK-DAHİLİ, bir kabuk işlevi olarak yeniden uygulamak isteyip\n" +" işlev içerisinde dahili olanı da çalıştırmanız gerektiğinizde kullanışlıdır.\n" " \n" " Çıkış Durumu:\n" -" KABUK-DAHİLİnin çıkış durumunu veya eğer KABUK-DAHİLİ değilse false " -"döndürür." +" KABUK-DAHİLİnin çıkış durumunu veya eğer KABUK-DAHİLİ değilse false döndürür." #: builtins.c:369 msgid "" @@ -2804,38 +2715,29 @@ msgid "" msgstr "" "Geçerli alt yordam çağrısının bağlamını döndürür.\n" " \n" -" İFADE olmadan, \"$satır $dosyaadı\" döndürür. İFADE ile " -"kullanıldığında\n" -" \"$satır $altyordam $dosyaadı\" döndürür; bu ek bilgi bir yığın izi " -"sağlamak\n" +" İFADE olmadan, \"$satır $dosyaadı\" döndürür. İFADE ile kullanıldığında\n" +" \"$satır $altyordam $dosyaadı\" döndürür; bu ek bilgi bir yığın izi sağlamak\n" " için kullanılabilir.\n" " \n" " İFADE değeri, geçerli çerçeveden önce kaç tane çerçeve çağrılacağını\n" " belirtir. Üst çerçeve 0. çerçevedir. \n" " Çıkış Durumu:\n" -" İFADE geçersiz olmadığı ve bir kabuk işlevi çalıştırmadığı durumda 0 " -"döndürür." +" İFADE geçersiz olmadığı ve bir kabuk işlevi çalıştırmadığı durumda 0 döndürür." #: builtins.c:387 msgid "" "Change the shell working directory.\n" " \n" -" Change the current directory to DIR. The default DIR is the value of " -"the\n" +" Change the current directory to DIR. The default DIR is the value of the\n" " HOME shell variable.\n" " \n" -" The variable CDPATH defines the search path for the directory " -"containing\n" -" DIR. Alternative directory names in CDPATH are separated by a colon " -"(:).\n" -" A null directory name is the same as the current directory. If DIR " -"begins\n" +" The variable CDPATH defines the search path for the directory containing\n" +" DIR. Alternative directory names in CDPATH are separated by a colon (:).\n" +" A null directory name is the same as the current directory. If DIR begins\n" " with a slash (/), then CDPATH is not used.\n" " \n" -" If the directory is not found, and the shell option `cdable_vars' is " -"set,\n" -" the word is assumed to be a variable name. If that variable has a " -"value,\n" +" If the directory is not found, and the shell option `cdable_vars' is set,\n" +" the word is assumed to be a variable name. If that variable has a value,\n" " its value is used for DIR.\n" " \n" " Options:\n" @@ -2851,53 +2753,40 @@ msgid "" " \t\tattributes as a directory containing the file attributes\n" " \n" " The default is to follow symbolic links, as if `-L' were specified.\n" -" `..' is processed by removing the immediately previous pathname " -"component\n" +" `..' is processed by removing the immediately previous pathname component\n" " back to a slash or the beginning of DIR.\n" " \n" " Exit Status:\n" -" Returns 0 if the directory is changed, and if $PWD is set successfully " -"when\n" +" Returns 0 if the directory is changed, and if $PWD is set successfully when\n" " -P is used; non-zero otherwise." msgstr "" "Kabuk çalışma dizinini değiştir.\n" " \n" -" Geçerli dizini DİZİN olarak değiştir. Öntanımlı dizin kabuk değişkeninin " -"EV\n" +" Geçerli dizini DİZİN olarak değiştir. Öntanımlı dizin kabuk değişkeninin EV\n" " dizini değeridir.\n" " \n" -" CDPATH değişkeni, DİZİN içeren dizinler için arama yolunu tanımlar. " -"CDPATH\n" -" için alternatif dizin isimleri iki nokta (:) ile ayrılır.\n" -" Boş dizin adı, geçerli dizinle aynıdır. Eğer DİZİN bölü (/) ile " -"başlıyorsa, CDPATH\n" +" CDPATH değişkeni, DİZİN içeren dizinler için arama yolunu tanımlar. CDPATH\n" +" için alternatif dizin adları iki nokta (:) ile ayrılır.\n" +" Boş dizin adı, geçerli dizinle aynıdır. Eğer DİZİN bölü (/) ile başlıyorsa CDPATH\n" " kullanılmaz.\n" " \n" -" Eğer dizin bulunamazsa ve kabuk seçeneği `cdable_vars' ayarlanmışsa, " -"kelime\n" -" bir değişken adı olarak varsayılır. Eğer değişken bir değere sahipse, " -"değeri DİZİN\n" +" Eğer dizin bulunamazsa ve kabuk seçeneği `cdable_vars' ayarlanmışsa sözcük\n" +" bir değişken adı olarak varsayılır. Eğer değişken bir değere sahipse değeri DİZİN\n" " için kullanılır\n" " \n" " Seçenekler:\n" -" -L\tsembolik bağlantıların takip edilmesini zorla: '..' " -"örneklerinin\n" +" -L\tsembolik bağlantıların takip edilmesini zorla: '..' örneklerinin\n" " \t\tişlenmesinden sonra DİZİN içindeki sembolik bağlantıları çöz\n" -" -P\tsembolik bağlantıları takip etmeden fiziksel dizini kullan: '..' " -"örneklerinin\n" +" -P\tsembolik bağlantıları takip etmeden fiziksel dizini kullan: '..' örneklerinin\n" " \t\tişlenmesinden önce DİZİN içindeki sembolik bağlantıları çöz\n" -" -e\teğer -P seçeneği belirtilmişse ve geçerli çalışma dizini " -"başarılı şekilde\n" -" \tbelirlenemiyorsa, sıfır olmayan bir durumla çık\n" -" -@\tdestekleyen sistemlerde, dosya niteliklerini içeren bir dizin " -"olarak uzatılmış\n" +" -e\teğer -P seçeneği belirtilmişse ve geçerli çalışma dizini başarılı şekilde\n" +" \tbelirlenemiyorsa sıfır olmayan bir durumla çık\n" +" -@\tdestekleyen sistemlerde, dosya niteliklerini içeren bir dizin olarak uzatılmış\n" " niteliklere sahip bir dosya sun \n" -" Öntanımlı olan `-L' tanımlanmış gibi sembolik bağlantıları takip " -"etmektir.\n" +" Öntanımlı olan `-L' tanımlanmış gibi sembolik bağlantıları takip etmektir.\n" " \n" " Çıkış Durumu:\n" -" Eğer dizin değişmişse ve -P kullanıldığında $PWD başarılı ayarlanırsa 0; " -"diğer durumda\n" +" Eğer dizin değişmişse ve -P kullanıldığında $PWD başarılı ayarlanırsa 0; diğer durumda\n" " sıfır olmayan bir değer döndürür." #: builtins.c:425 @@ -2915,11 +2804,10 @@ msgid "" " Returns 0 unless an invalid option is given or the current directory\n" " cannot be read." msgstr "" -"Geçerli çalışma dizininin ismini yazdır.\n" +"Geçerli çalışma dizininin adını yazdır.\n" " \n" " Seçenekler:\n" -" -L\teğer geçerli çalışma dizinini isimlendirmişse $PWD değerini " -"yazdır\n" +" -L\teğer geçerli çalışma dizinini adlandırmışsa $PWD değerini yazdır\n" " -P\thiçbir sembolik bağlantı kullanmadan fiziksel dizini yazdır\n" " \n" " Öntanımlı olarak `pwd', `-L' tanımlanmış şekilde davranır.\n" @@ -2972,8 +2860,7 @@ msgid "" "Execute a simple command or display information about commands.\n" " \n" " Runs COMMAND with ARGS suppressing shell function lookup, or display\n" -" information about the specified COMMANDs. Can be used to invoke " -"commands\n" +" information about the specified COMMANDs. Can be used to invoke commands\n" " on disk when a function with the same name exists.\n" " \n" " Options:\n" @@ -2987,15 +2874,12 @@ msgid "" msgstr "" "Basit bir komut çalıştır veya komutlar hakkında bilgi görüntüle.\n" " \n" -" KOMUTU ARGümanları ile kabuk işlevi aramasını ihmal ederek çalıştırır " -"veya\n" -" belirtilen KOMUTlar hakkında bilgi görüntüler. Aynı isimde bir işlev " -"varsa\n" +" KOMUTU ARGümanları ile kabuk işlevi aramasını ihmal ederek çalıştırır veya\n" +" belirtilen KOMUTLAR hakkında bilgi görüntüler. Aynı adda bir işlev varsa\n" " diskte komutları çalıştırmak için kullanılabilir.\n" " \n" " Seçenekler:\n" -" -p YOL için, tüm standart yardımcıları bulabilmek için bir " -"öntanımlı değer\n" +" -p YOL için, tüm standart yardımcıları bulabilmek için bir öntanımlı değer\n" " \tkullan\n" " -v `type' dahilisine benzer bir KOMUT açıklaması göster\n" " -V her KOMUTun fazla açıklamasını göster\n" @@ -3005,6 +2889,42 @@ msgstr "" #: builtins.c:490 #, fuzzy +#| msgid "" +#| "Set variable values and attributes.\n" +#| " \n" +#| " Declare variables and give them attributes. If no NAMEs are given,\n" +#| " display the attributes and values of all variables.\n" +#| " \n" +#| " Options:\n" +#| " -f\trestrict action or display to function names and definitions\n" +#| " -F\trestrict display to function names only (plus line number and\n" +#| " \t\tsource file when debugging)\n" +#| " -g\tcreate global variables when used in a shell function; otherwise\n" +#| " \t\tignored\n" +#| " -p\tdisplay the attributes and value of each NAME\n" +#| " \n" +#| " Options which set attributes:\n" +#| " -a\tto make NAMEs indexed arrays (if supported)\n" +#| " -A\tto make NAMEs associative arrays (if supported)\n" +#| " -i\tto make NAMEs have the `integer' attribute\n" +#| " -l\tto convert NAMEs to lower case on assignment\n" +#| " -n\tmake NAME a reference to the variable named by its value\n" +#| " -r\tto make NAMEs readonly\n" +#| " -t\tto make NAMEs have the `trace' attribute\n" +#| " -u\tto convert NAMEs to upper case on assignment\n" +#| " -x\tto make NAMEs export\n" +#| " \n" +#| " Using `+' instead of `-' turns off the given attribute.\n" +#| " \n" +#| " Variables with the integer attribute have arithmetic evaluation (see\n" +#| " the `let' command) performed when the variable is assigned a value.\n" +#| " \n" +#| " When used in a function, `declare' makes NAMEs local, as with the `local'\n" +#| " command. The `-g' option suppresses this behavior.\n" +#| " \n" +#| " Exit Status:\n" +#| " Returns success unless an invalid option is supplied or a variable\n" +#| " assignment error occurs." msgid "" "Set variable values and attributes.\n" " \n" @@ -3037,8 +2957,7 @@ msgid "" " Variables with the integer attribute have arithmetic evaluation (see\n" " the `let' command) performed when the variable is assigned a value.\n" " \n" -" When used in a function, `declare' makes NAMEs local, as with the " -"`local'\n" +" When used in a function, `declare' makes NAMEs local, as with the `local'\n" " command. The `-g' option suppresses this behavior.\n" " \n" " Exit Status:\n" @@ -3047,43 +2966,37 @@ msgid "" msgstr "" "Değişken değer ve niteliklerini ayarla.\n" " \n" -" Değişkenleri ayarla ve nitelik ver. Eğer İSİM verilmemişse, tüm " -"değişkenlerin, niteliklerini ve değerlerini görüntüle.\n" +" Değişkenleri ayarla ve nitelik ver. Eğer AD verilmemişse tüm değişkenlerin, niteliklerini ve değerlerini görüntüle.\n" " \n" " Seçenekler:\n" -" -f\teylemi veya işlev ismi ile tanımları gösterimini kısıtla\n" -" -F\tsadece işlev isim gösterimlerini kısıtla (ek olarak satır sayısı " -"ve hata ayıklarken\n" +" -f\teylemi veya işlev adı ile tanımları gösterimini kısıtla\n" +" -F\tyalnızca işlev ad gösterimlerini kısıtla (ek olarak satır sayısı ve hata ayıklarken\n" " \t\tkaynak dosyayı)\n" -" -g\tbir kabuk fonksiyonunda kullanıldığında evrensel değişken " -"oluştur,\n" -" \t\taksi takdirde yoksayılır\n" -" -p\ther İSİMin değeri ve niteliklerini görüntüle\n" +" -g\tbir kabuk işlevinde kullanıldığında evrensel değişken oluştur,\n" +" \t\taksi takdirde yok sayılır\n" +" -p\ther AD'ın değeri ve niteliklerini görüntüle\n" " \n" " Nitelik ayarlayan seçenekler:\n" -" -a\tİSİMleri indisli diziler yapmak için (destekleniyorsa)\n" -" -A\tİSİMleri ilişkisel dizi yapmak için (destekleniyorsa)\n" -" -i\tİSİMleri `integer' niteliği sahibi yapmak için\n" -" -l\tİSİMleri atamada küçük harfe dönüştürmek için\n" -" -n\tİSİMi değeriyle isimlendirilmiş bir değişkene referans yapmak " -"için\n" -" -r\tİSİMleri salt okunur yapmak için\n" -" -t\tİSİMlerin `trace' niteliği sahibi yapmak için\n" -" -u\tİSİMleri atamada büyük harfe dönüştürmek için\n" -" -x\tİSİMleri dışarı çıkarabilir yapmak için\n" +" -a\tAD'ları indisli diziler yapmak için (destekleniyorsa)\n" +" -A\tAD'ları ilişkisel dizi yapmak için (destekleniyorsa)\n" +" -i\tAD'ları `integer' niteliği sahibi yapmak için\n" +" -l\tAD'ları atamada küçük harfe dönüştürmek için\n" +" -n\tAD'ı değeriyle ad bir değişkene referans yapmak için\n" +" -r\tAD'ları saltokunur yapmak için\n" +" -t\tAD'ların `trace' niteliği sahibi yapmak için\n" +" -u\tAD'ları atamada büyük harfe dönüştürmek için\n" +" -x\tAD'ları dışarı çıkarabilir yapmak için\n" " \n" " `-' yerine `+' kullanmak belirtilen niteliği kapatır.\n" " \n" -" Tamsayı niteliğine sahip değişkenler, bir değere atandıklarında " -"aritmetik değerlendirmeye tabi tutulurlar (`let' komutuna bakın).\n" +" Tamsayı niteliğine sahip değişkenler, bir değere atandıklarında aritmetik değerlendirmeye tabi tutulurlar (`let' komutuna bakın).\n" " \n" -" Bir fonksiyonda kullanıldığında, `declare' İSİMleri, `local' komutu\n" +" Bir işlevde kullanıldığında, `declare' AD'ları, `local' komutu\n" "gibi yerel\n" " yapar. `-g' seçeneği bu davranışı iptal eder.\n" " \n" " Çıkış Durumu:\n" -" Geçersiz bir değer sağlanmadığı veya değişken atama hatası olmadığı " -"sürece\n" +" Geçersiz bir değer sağlanmadığı veya değişken atama hatası olmadığı sürece\n" " başarılı döner." #: builtins.c:532 @@ -3092,7 +3005,7 @@ msgid "" " \n" " A synonym for `declare'. See `help declare'." msgstr "" -"Değişken isim ve niteliklerini ayarla.\n" +"Değişken ad ve niteliklerini ayarla.\n" " \n" " `declare' ile eş anlamlıdır. Bkz. `help declare'." @@ -3112,25 +3025,52 @@ msgid "" msgstr "" "Yerel değişkenleri tanımla.\n" " \n" -" İSİM adıyla bir yerel değişken oluştur ve DEĞER ata. SEÇENEK `declare'\n" +" AD adıyla bir yerel değişken oluştur ve DEĞER ata. SEÇENEK `declare'\n" " tarafından kabul edilen herhangi bir seçenek olabilir.\n" " \n" -" Yerel değişkenler sadece bir işlev içerisinde kullanılabilirler ve " -"tanımlandıkları\n" +" Yerel değişkenler yalnızca bir işlev içerisinde kullanılabilirler ve tanımlandıkları\n" " işleve ve alt işlevlerine görünebilirler.\n" " \n" " Çıkış Durumu:\n" -" Geçersiz bir seçenek verilmediğinde, bir değişken hatası oluşmadığında " -"veya\n" +" Geçersiz bir seçenek verilmediğinde, bir değişken hatası oluşmadığında veya\n" " kabuk bir işlev çalıştırmıyorsa başarılı döner." #: builtins.c:557 #, fuzzy +#| msgid "" +#| "Write arguments to the standard output.\n" +#| " \n" +#| " Display the ARGs, separated by a single space character and followed by a\n" +#| " newline, on the standard output.\n" +#| " \n" +#| " Options:\n" +#| " -n\tdo not append a newline\n" +#| " -e\tenable interpretation of the following backslash escapes\n" +#| " -E\texplicitly suppress interpretation of backslash escapes\n" +#| " \n" +#| " `echo' interprets the following backslash-escaped characters:\n" +#| " \\a\talert (bell)\n" +#| " \\b\tbackspace\n" +#| " \\c\tsuppress further output\n" +#| " \\e\tescape character\n" +#| " \\E\tescape character\n" +#| " \\f\tform feed\n" +#| " \\n\tnew line\n" +#| " \\r\tcarriage return\n" +#| " \\t\thorizontal tab\n" +#| " \\v\tvertical tab\n" +#| " \\\\\tbackslash\n" +#| " \\0nnn\tthe character whose ASCII code is NNN (octal). NNN can be\n" +#| " \t\t0 to 3 octal digits\n" +#| " \\xHH\tthe eight-bit character whose value is HH (hexadecimal). HH\n" +#| " \t\tcan be one or two hex digits\n" +#| " \n" +#| " Exit Status:\n" +#| " Returns success unless a write error occurs." msgid "" "Write arguments to the standard output.\n" " \n" -" Display the ARGs, separated by a single space character and followed by " -"a\n" +" Display the ARGs, separated by a single space character and followed by a\n" " newline, on the standard output.\n" " \n" " Options:\n" @@ -3154,11 +3094,9 @@ msgid "" " \t\t0 to 3 octal digits\n" " \\xHH\tthe eight-bit character whose value is HH (hexadecimal). HH\n" " \t\tcan be one or two hex digits\n" -" \\uHHHH\tthe Unicode character whose value is the hexadecimal value " -"HHHH.\n" +" \\uHHHH\tthe Unicode character whose value is the hexadecimal value HHHH.\n" " \t\tHHHH can be one to four hex digits.\n" -" \\UHHHHHHHH the Unicode character whose value is the hexadecimal " -"value\n" +" \\UHHHHHHHH the Unicode character whose value is the hexadecimal value\n" " \t\tHHHHHHHH. HHHHHHHH can be one to eight hex digits.\n" " \n" " Exit Status:\n" @@ -3186,8 +3124,7 @@ msgstr "" " \\t\tyatay sekme\n" " \\v\tdikey sekme\n" " \\\\\tters bölü\n" -" \\0nnn\tASCII kodu NNN (sekizlik) olan karakter. NNN 0-3 arası " -"sekizli\n" +" \\0nnn\tASCII kodu NNN (sekizlik) olan karakter. NNN 0-3 arası sekizli\n" " \t\trakamlardan oluşabilir.\n" " \\xHH\tdeğeri HH (onaltılık) olan sekiz bit karakter. HH bir veya iki\n" " \t\tonaltılık rakam olabilir\n" @@ -3245,35 +3182,32 @@ msgid "" msgstr "" "Kabuk yerleşiklerini etkinleştir/devre dışı bırak.\n" " \n" -" Dahili kabuk komutlarını etkinleştirir ve devre dışı bırakır. Devre " -"dışı\n" -" bırakmak bir kabuk yerleşiği ile aynı isme sahip bir disk komutunu tam\n" +" Dahili kabuk komutlarını etkinleştirir ve devre dışı bırakır. Devre dışı\n" +" bırakmak bir kabuk yerleşiği ile aynı ada sahip bir disk komutunu tam\n" " bir yol adı kullanmadan çalıştırmanızı sağlar. \n" " Seçenekler:\n" -" -a\ttüm yerleşikler listesini etkin olup olmadıkları bilgisi ile " -"yazdır\n" -" -n\ther İSİMi devre dışı bırak veya devre dışı olanları listele\n" -" -p\tyerleşik listesini tekrar kullanılabilir biçimde yazdır\n" -" -s\tsadece Posix `özel' yerleşiklerinin isimlerini yazdır\n" +" -a\ttüm yerleşikler listesini etkin olup olmadıkları bilgisi ile yazdır\n" +" -n\ther AD'ı devre dışı bırak veya devre dışı olanları listele\n" +" -p\tyerleşik listesini yeniden kullanılabilir biçimde yazdır\n" +" -s\tyalnızca Posix `özel' yerleşiklerinin adlarını yazdır\n" " \n" " Hareketli yüklemeyi denetleyen seçenekler:\n" -" -f\tİSİM yerleşiğini paylaşılan DOSYAADI nesnesinden yükle\n" +" -f\tAD yerleşiğini paylaşılan DOSYAADI nesnesinden yükle\n" " -d\t-f ile yüklenmiş bir yerleşiği kaldır\n" " \n" -" Seçenek olmazsa her İSİM etkinleştirilir.\n" +" Seçenek olmazsa her AD etkinleştirilir.\n" " \n" " Kabuk yerleşiği sürümü yerine $PATH içerisinde bulunan `test' kullanmak\n" " için `enable -n test' yazın.\n" " \n" " Çıktı Durumu:\n" -" İSİM bir kabuk yerleşiği değilse ve hata oluşmazsa başarılı döner." +" AD bir kabuk yerleşiği değilse ve hata oluşmazsa başarılı döner." #: builtins.c:640 msgid "" "Execute arguments as a shell command.\n" " \n" -" Combine ARGs into a single string, use the result as input to the " -"shell,\n" +" Combine ARGs into a single string, use the result as input to the shell,\n" " and execute the resulting commands.\n" " \n" " Exit Status:\n" @@ -3281,8 +3215,7 @@ msgid "" msgstr "" "Argümanları kabuk komutu olarak çalıştır.\n" " \n" -" ARGümanları tek bir dizgeye birleştir, sonucu kabuğa girdi olarak " -"kullan,\n" +" ARGümanları tek bir diziye birleştir, sonucu kabuğa girdi olarak kullan,\n" " ve sonuçlanan komutları çalıştır.\n" " \n" " Çıkış Durumu:\n" @@ -3290,6 +3223,44 @@ msgstr "" #: builtins.c:652 #, fuzzy +#| msgid "" +#| "Parse option arguments.\n" +#| " \n" +#| " Getopts is used by shell procedures to parse positional parameters\n" +#| " as options.\n" +#| " \n" +#| " OPTSTRING contains the option letters to be recognized; if a letter\n" +#| " is followed by a colon, the option is expected to have an argument,\n" +#| " which should be separated from it by white space.\n" +#| " \n" +#| " Each time it is invoked, getopts will place the next option in the\n" +#| " shell variable $name, initializing name if it does not exist, and\n" +#| " the index of the next argument to be processed into the shell\n" +#| " variable OPTIND. OPTIND is initialized to 1 each time the shell or\n" +#| " a shell script is invoked. When an option requires an argument,\n" +#| " getopts places that argument into the shell variable OPTARG.\n" +#| " \n" +#| " getopts reports errors in one of two ways. If the first character\n" +#| " of OPTSTRING is a colon, getopts uses silent error reporting. In\n" +#| " this mode, no error messages are printed. If an invalid option is\n" +#| " seen, getopts places the option character found into OPTARG. If a\n" +#| " required argument is not found, getopts places a ':' into NAME and\n" +#| " sets OPTARG to the option character found. If getopts is not in\n" +#| " silent mode, and an invalid option is seen, getopts places '?' into\n" +#| " NAME and unsets OPTARG. If a required argument is not found, a '?'\n" +#| " is placed in NAME, OPTARG is unset, and a diagnostic message is\n" +#| " printed.\n" +#| " \n" +#| " If the shell variable OPTERR has the value 0, getopts disables the\n" +#| " printing of error messages, even if the first character of\n" +#| " OPTSTRING is not a colon. OPTERR has the value 1 by default.\n" +#| " \n" +#| " Getopts normally parses the positional parameters ($0 - $9), but if\n" +#| " more arguments are given, they are parsed instead.\n" +#| " \n" +#| " Exit Status:\n" +#| " Returns success if an option is found; fails if the end of options is\n" +#| " encountered or an error occurs." msgid "" "Parse option arguments.\n" " \n" @@ -3331,59 +3302,39 @@ msgid "" msgstr "" "Seçenek argümanlarını ayıklar.\n" " \n" -" Getopts kabuk betikleri tarafından konumsal parametreleri " -"çözümlemekte\n" +" Getopts kabuk betikleri tarafından konumsal parametreleri çözümlemekte\n" " kullanılır.\n" " \n" -" SÇNDİZGESİ tanınan seçenek karakterlerini içerir; bir karakterden " -"sonra\n" -" bir ikinokta imi (:) geliyorsa seçeneğin ondan bir boşlukla ayrılmış " -"bir\n" +" SÇNSİ tanınan seçenek karakterlerini içerir; bir karakterden sonra\n" +" bir ikinokta imi (:) geliyorsa seçeneğin ondan bir boşlukla ayrılmış bir\n" " argümana sahip olacağı umulur.\n" " \n" -" Her çağrılışında getopts işlenecek sonraki argümanın indisini " -"OPTIND\n" -" kabuk değişkenine ve AD değişkenini de mevcut değilse " -"ilklendirerek\n" -" sonraki seçeneği $AD kabuk değişkenine yerleştirir. OPTIND kabuğun ya " -"da\n" -" bir kabuk betiğinin her çağrılışında 1 ile ilklendirilir. Bir " -"seçenek\n" -" bir argüman gerektirdiğinde getopts argümanı OPTARG " -"değişkenine\n" +" Her çağrılışında getopts işlenecek sonraki argümanın indisini OPTIND\n" +" kabuk değişkenine ve AD değişkenini de mevcut değilse ilklendirerek\n" +" sonraki seçeneği $AD kabuk değişkenine yerleştirir. OPTIND kabuğun veya\n" +" bir kabuk betiğinin her çağrılışında 1 ile ilklendirilir. Bir seçenek\n" +" bir argüman gerektirdiğinde getopts argümanı OPTARG değişkenine\n" " yerleştirir.\n" " \n" -" getopts hataları iki yolla raporlayabilir. Eğer SÇNDİZGESİnin " -"ilk\n" -" karakteri bir ':' ise sessiz hata raporlaması kullanılır. Bu " -"kipte\n" -" hiçbir hata iletisi basılmaz. Bir geçersiz seçenek saptanırsa " -"getopt\n" -" OPTARG'a bulunan seçenek karakterini yerleştirir. Bir gerekli " -"argüman\n" -" verilmemişse, getopts AD'a bir ':' yerleştirir. Getopts sessiz " -"kipte\n" -" değilse ve geçersiz bir seçenek görüldüğünde, getopts ? karakterini " -"AD'a\n" -" yerleştirir ve OPTARG değişkenini kaldırır. Eğer bir gerekli " -"argüman\n" -" bulunamazsa ve getopts sessiz kipte değilse AD'a ? " -"karakteri\n" +" getopts hataları iki yolla raporlayabilir. Eğer SÇNSİnin ilk\n" +" karakteri bir ':' ise sessiz hata raporlaması kullanılır. Bu kipte\n" +" hiçbir hata iletisi basılmaz. Bir geçersiz seçenek saptanırsa getopt\n" +" OPTARG'a bulunan seçenek karakterini yerleştirir. Bir gerekli argüman\n" +" verilmemişse getopts AD'a bir ':' yerleştirir. Getopts sessiz kipte\n" +" değilse ve geçersiz bir seçenek görüldüğünde, getopts ? karakterini AD'a\n" +" yerleştirir ve OPTARG değişkenini kaldırır. Eğer bir gerekli argüman\n" +" bulunamazsa ve getopts sessiz kipte değilse AD'a ? karakteri\n" " yerleştirilir, OPTARG kaldırılır ve bir tanı iletisi basılır.\n" " \n" -" OPTERR değişkeninin değeri 0 ise SÇNDİZGESİnin ilk karakteri bir " -"':'\n" -" olmasa bile hata iletileri gösterilmez. OPTERR değişkeninin " -"öntanımlı\n" +" OPTERR değişkeninin değeri 0 ise SÇNSİnin ilk karakteri bir ':'\n" +" olmasa bile hata iletileri gösterilmez. OPTERR değişkeninin öntanımlı\n" " değeri 1'dir.\n" " \n" -" Getopts normalde konumsal parametreleri ($0 - $9) çözümlese de " -"başka\n" +" Getopts normalde konumsal parametreleri ($0 - $9) çözümlese de başka\n" " argümanlar verilmişse bunları çözümler.\n" " \n" " Çıktı Durumu:\n" -" Bir seçenek bulunduğunda başarılı, seçenek sonuna gelindiğinde veya " -"bir hata oluştuğunda başarısız döner.\n" +" Bir seçenek bulunduğunda başarılı, seçenek sonuna gelindiğinde veya bir hata oluştuğunda başarısız döner.\n" " encountered or an error occurs." #: builtins.c:694 @@ -3391,8 +3342,7 @@ msgid "" "Replace the shell with the given command.\n" " \n" " Execute COMMAND, replacing this shell with the specified program.\n" -" ARGUMENTS become the arguments to COMMAND. If COMMAND is not " -"specified,\n" +" ARGUMENTS become the arguments to COMMAND. If COMMAND is not specified,\n" " any redirections take effect in the current shell.\n" " \n" " Options:\n" @@ -3400,27 +3350,24 @@ msgid "" " -c\texecute COMMAND with an empty environment\n" " -l\tplace a dash in the zeroth argument to COMMAND\n" " \n" -" If the command cannot be executed, a non-interactive shell exits, " -"unless\n" +" If the command cannot be executed, a non-interactive shell exits, unless\n" " the shell option `execfail' is set.\n" " \n" " Exit Status:\n" -" Returns success unless COMMAND is not found or a redirection error " -"occurs." +" Returns success unless COMMAND is not found or a redirection error occurs." msgstr "" "Kabuğu verilen komutla değiştir.\n" " \n" " KOMUTU, belirtilen program ile değiştirerek çalıştır.\n" -" ARGÜMANLAR, KOMUTUN argümanları olur. Eğer KOMUT belirtilmemişse, tüm\n" +" ARGÜMANLAR, KOMUTUN argümanları olur. Eğer KOMUT belirtilmemişse tüm\n" " yönlendirmeler geçerli kabukta uygulanır.\n" " \n" " Seçenekler:\n" -" -a isim\tİSMİ, KOMUTun sıfırıncı argümanına ata\n" +" -a ad\tAD'ı, KOMUT'un sıfırıncı argümanına ata\n" " -c\tKOMUTu boş bir ortamla çalıştır\n" " -l\tKOMUTun sıfırıncı argümanına bir çizgi koy\n" " \n" -" Eğer komut çalıştırılamıyorsa, `execfail' ayarlanmadığı sürece " -"etkileşimsiz kabuk\n" +" Eğer komut çalıştırılamıyorsa `execfail' ayarlanmadığı sürece etkileşimsiz kabuk\n" " çıkış yapar.\n" " \n" " Çıkış Durumu:\n" @@ -3442,8 +3389,7 @@ msgstr "" msgid "" "Exit a login shell.\n" " \n" -" Exits a login shell with exit status N. Returns an error if not " -"executed\n" +" Exits a login shell with exit status N. Returns an error if not executed\n" " in a login shell." msgstr "" "Oturum kabuğundan çık.\n" @@ -3455,15 +3401,13 @@ msgstr "" msgid "" "Display or execute commands from the history list.\n" " \n" -" fc is used to list or edit and re-execute commands from the history " -"list.\n" +" fc is used to list or edit and re-execute commands from the history list.\n" " FIRST and LAST can be numbers specifying the range, or FIRST can be a\n" " string, which means the most recent command beginning with that\n" " string.\n" " \n" " Options:\n" -" -e ENAME\tselect which editor to use. Default is FCEDIT, then " -"EDITOR,\n" +" -e ENAME\tselect which editor to use. Default is FCEDIT, then EDITOR,\n" " \t\tthen vi\n" " -l \tlist lines instead of editing\n" " -n\tomit line numbers when listing\n" @@ -3477,18 +3421,14 @@ msgid "" " the last command.\n" " \n" " Exit Status:\n" -" Returns success or status of executed command; non-zero if an error " -"occurs." +" Returns success or status of executed command; non-zero if an error occurs." msgstr "" "Geçmiş listesindeki komutları görüntüle veya çalıştır\n" " \n" -" fc, komut geçmişi listesindeki komutları listelemek, düzenlemek " -"ve\n" -" yeniden çalıştırmak için kullanılır. İLK ve SON olarak numara " -"vererek\n" -" bir aralık belirtilebileceği gibi İLK bir dizge de olabilir, bu " -"takdirde\n" -" bu dizge ile başlayan en son komut anlamına gelir.\n" +" fc, komut geçmişi listesindeki komutları listelemek, düzenlemek ve\n" +" yeniden çalıştırmak için kullanılır. İLK ve SON olarak numara vererek\n" +" bir aralık belirtilebileceği gibi İLK bir dizi de olabilir, bu takdirde\n" +" bu dizi ile başlayan en son komut anlamına gelir.\n" " \n" " Seçenekler:\n" " -e DÜZENLEYİCİ ile hangi düzenleyicinin kullanılacağı belirtilir.\n" @@ -3505,8 +3445,7 @@ msgstr "" " r' yazarak en son komut çalıştırılabilir.\n" " \n" " Çıktı Durumu:\n" -" Başarılı veya çalıştırılan komut durumu döndürülür; hata oluştuğunda " -"sıfır harici değer döner." +" Başarılı veya çalıştırılan komut durumu döndürülür; hata oluştuğunda sıfır harici değer döner." #: builtins.c:764 msgid "" @@ -3532,31 +3471,26 @@ msgstr "" msgid "" "Move jobs to the background.\n" " \n" -" Place the jobs identified by each JOB_SPEC in the background, as if " -"they\n" -" had been started with `&'. If JOB_SPEC is not present, the shell's " -"notion\n" +" Place the jobs identified by each JOB_SPEC in the background, as if they\n" +" had been started with `&'. If JOB_SPEC is not present, the shell's notion\n" " of the current job is used.\n" " \n" " Exit Status:\n" " Returns success unless job control is not enabled or an error occurs." msgstr "" -"İşi arkaplana taşı.\n" +"İşi arka plana taşı.\n" " \n" " `&' ile başlatılmışçasına İŞ_BELİRTİMİni artalana yerleştirir.\n" -" İŞ_BELİRTİMİ verilmemişse, iş belirtimi olarak o an ki iş " -"kullanılır. \n" +" İŞ_BELİRTİMİ verilmemişse iş belirtimi olarak o an ki iş kullanılır. \n" " Çıktı Durumu:\n" -" İş kontrolü etkin olmadığı veya bir hata oluşmadığı sürece başarılı " -"döner." +" İş denetimi etkin olmadığı veya bir hata oluşmadığı sürece başarılı döner." #: builtins.c:793 msgid "" "Remember or display program locations.\n" " \n" " Determine and remember the full pathname of each command NAME. If\n" -" no arguments are given, information about remembered commands is " -"displayed.\n" +" no arguments are given, information about remembered commands is displayed.\n" " \n" " Options:\n" " -d\tforget the remembered location of each NAME\n" @@ -3576,6 +3510,24 @@ msgstr "" #: builtins.c:818 #, fuzzy +#| msgid "" +#| "Display information about builtin commands.\n" +#| " \n" +#| " Displays brief summaries of builtin commands. If PATTERN is\n" +#| " specified, gives detailed help on all commands matching PATTERN,\n" +#| " otherwise the list of help topics is printed.\n" +#| " \n" +#| " Options:\n" +#| " -d\toutput short description for each topic\n" +#| " -m\tdisplay usage in pseudo-manpage format\n" +#| " -s\toutput only a short usage synopsis for each topic matching\n" +#| " \t\tPATTERN\n" +#| " \n" +#| " Arguments:\n" +#| " PATTERN\tPattern specifiying a help topic\n" +#| " \n" +#| " Exit Status:\n" +#| " Returns success unless PATTERN is not found or an invalid option is given." msgid "" "Display information about builtin commands.\n" " \n" @@ -3593,30 +3545,58 @@ msgid "" " PATTERN\tPattern specifying a help topic\n" " \n" " Exit Status:\n" -" Returns success unless PATTERN is not found or an invalid option is " -"given." +" Returns success unless PATTERN is not found or an invalid option is given." msgstr "" "Dahili komutlar hakkında bilgi görüntüle.\n" " \n" -" Dahili komutların özetlerini görüntüler. Eğer DESEN belirtilmişse,\n" -" DESEN ile eşleşen tüm komutlar hakkında ayrıntılı bilgi verir, aksi\n" +" Dahili komutların özetlerini görüntüler. Eğer DİZGİ belirtilmişse\n" +" DİZGİ ile eşleşen tüm komutlar hakkında ayrıntılı bilgi verir, aksi\n" " halde, yardım konuları yazdırılır.\n" " \n" " Seçenekler:\n" " -d\ther konu için kısa açıklama yazdır\n" " -m\tkullanımı pseudo-man sayfası biçiminde yazdır\n" -" -s\tsadece DESEN ile eşleşen konular için kısa kullanım\n" +" -s\tyalnızca DİZGİ ile eşleşen konular için kısa kullanım\n" " \t\tbilgisi yazdır\n" " \n" " Argümanlar:\n" -" DESEN\tBir yardım konusunu belirten desen\n" +" DİZGİ\tBir yardım konusunu belirten desen\n" " \n" " Çıktı Durumu:\n" -" DESEN bulunmadığı veya geçersiz bir seçenek verilmediğinde başarılı " -"döner." +" DİZGİ bulunmadığı veya geçersiz bir seçenek verilmediğinde başarılı döner." #: builtins.c:842 #, fuzzy +#| msgid "" +#| "Display or manipulate the history list.\n" +#| " \n" +#| " Display the history list with line numbers, prefixing each modified\n" +#| " entry with a `*'. An argument of N lists only the last N entries.\n" +#| " \n" +#| " Options:\n" +#| " -c\tclear the history list by deleting all of the entries\n" +#| " -d offset\tdelete the history entry at position OFFSET.\n" +#| " \n" +#| " -a\tappend history lines from this session to the history file\n" +#| " -n\tread all history lines not already read from the history file\n" +#| " \t\tand append them to the history list\n" +#| " -r\tread the history file and append the contents to the history\n" +#| " \t\tlist\n" +#| " -w\twrite the current history to the history file\n" +#| " \n" +#| " -p\tperform history expansion on each ARG and display the result\n" +#| " \t\twithout storing it in the history list\n" +#| " -s\tappend the ARGs to the history list as a single entry\n" +#| " \n" +#| " If FILENAME is given, it is used as the history file. Otherwise,\n" +#| " if HISTFILE has a value, that is used, else ~/.bash_history.\n" +#| " \n" +#| " If the HISTTIMEFORMAT variable is set and not null, its value is used\n" +#| " as a format string for strftime(3) to print the time stamp associated\n" +#| " with each displayed history entry. No time stamps are printed otherwise.\n" +#| " \n" +#| " Exit Status:\n" +#| " Returns success unless an invalid option is given or an error occurs." msgid "" "Display or manipulate the history list.\n" " \n" @@ -3644,8 +3624,7 @@ msgid "" " \n" " If the HISTTIMEFORMAT variable is set and not null, its value is used\n" " as a format string for strftime(3) to print the time stamp associated\n" -" with each displayed history entry. No time stamps are printed " -"otherwise.\n" +" with each displayed history entry. No time stamps are printed otherwise.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is given or an error occurs." @@ -3654,7 +3633,7 @@ msgstr "" " \n" " Seçeneksiz kullanıldığında komut geçmişi listesini satır numaraları ile\n" " gösterir. Değişiklik yapılmış satırlarda numaralardan önce bir `*'\n" -" vardır. Argüman olarak N belirtildiğinde sadece son N satır listelenir.\n" +" vardır. Argüman olarak N belirtildiğinde yalnızca son N satır listelenir.\n" " \n" " Seçenekler:\n" " -c\tkomut geçmişi listesini tüm girdilerini silerek temizler.\n" @@ -3671,16 +3650,15 @@ msgstr "" " \tdepolamadan görüntüle\n" " -s\tARGümanları geçmiş listesine tek bir girdi olarak ekle\n" " \n" -" DOSYAİSMİ verilmezse, HISTFILE değişkenindeki değer, o da yoksa\n" +" DOSYAİSMİ verilmezse HISTFILE değişkenindeki değer, o da yoksa\n" " ~/.bash_history dosyası kullanılır.\n" " \n" " HISTTIMEFORMAT kabuk değişkeni tanımlanmış ve anlamlı bir değere\n" -" sahipse, değeri, gösterilen her geçmiş girdisi ile ilişkili zaman\n" +" sahipse değeri, gösterilen her geçmiş girdisi ile ilişkili zaman\n" " damgasını basacak olan strftime(3) işlevine biçim girdisi olur; aksi\n" " takdirde hiç zaman damgası basılmaz. \n" " Çıktı Durumu:\n" -" Geçersiz bir seçenek girilmediği veya bir hata oluşmadığı takdirde " -"başarılı döner." +" Geçersiz bir seçenek girilmediği veya bir hata oluşmadığı takdirde başarılı döner." #: builtins.c:879 msgid "" @@ -3711,22 +3689,20 @@ msgstr "" " Seçenekler olmadan, tüm etkin görev durumları görüntülenir.\n" " \n" " Seçenekler:\n" -" -l\tile normal bilgilere ek olarak süreç kimliklerini de (PID) " -"listele\n" -" -n\tile sadece kullanıcının durumları hakkında aldığı son uyarıdan\n" +" -l\tile normal bilgilere ek olarak süreç kimliklerini de (PID) listele\n" +" -n\tile yalnızca kullanıcının durumları hakkında aldığı son uyarıdan\n" " \t\tberi durumları değişen işler hakkında bilgi gösterir.\n" -" -p\tile işlerin sadece süreç kimliklerini listeler\n" -" -r\tile sadece çalışmakta olan,\n" -" -s\tile ise sadece durmuş olan işler listelenir.\n" +" -p\tile işlerin yalnızca süreç kimliklerini listeler\n" +" -r\tile yalnızca çalışmakta olan,\n" +" -s\tile ise yalnızca durmuş olan işler listelenir.\n" " \n" -" -x seçeneği verilmişse, ARGümanlar ile belirtilen tüm iş belirtimleri,\n" +" -x seçeneği verilmişse ARGümanlar ile belirtilen tüm iş belirtimleri,\n" " işlerin süreç grup liderinin süreç grup kimliğine yerleştirilip KOMUT\n" " çalıştırılır.\n" " \n" " Çıktı Durumu:\n" -" Geçersiz bir seçenek girilmediği veya bir hata oluşmadığı takdirde " -"başarılı döner.\n" -" -x kullanılmışsa, KOMUTun çıkış durumu döndürülür." +" Geçersiz bir seçenek girilmediği veya bir hata oluşmadığı takdirde başarılı döner.\n" +" -x kullanılmışsa KOMUTun çıkış durumu döndürülür." #: builtins.c:906 msgid "" @@ -3746,16 +3722,14 @@ msgid "" msgstr "" "Görevleri geçerli kabuktan kaldır.\n" " \n" -" Her İŞTANIMı argümanını etkin görevler tablosundan kaldırır. İŞTANIMı " -"olmadan,\n" +" Her İŞTANIMı argümanını etkin görevler tablosundan kaldırır. İŞTANIMı olmadan,\n" " kabuk geçerli görev kavramını kullanır.\n" " \n" " Seçenekler:\n" " -a\tİŞTANIMı belirtilmemişse tüm görevleri kaldır\n" -" -h\ther İŞTANIMını işaretle, böylece kabul bir SIGHUP aldığında göreve " -"SIGHUP\n" +" -h\ther İŞTANIMını işaretle, böylece kabul bir SIGHUP aldığında göreve SIGHUP\n" " \t\tgönderme\n" -" -r\tsadece çalışan görevleri kaldırremove \n" +" -r\tyalnızca çalışan görevleri kaldırremove \n" " \n" " Çıkış Durumu:\n" " Geçersiz bir seçenek veya İŞTANIMı girilmedikçe başarılı döner." @@ -3791,21 +3765,17 @@ msgstr "" " Seçenekler:\n" " -s sig\tSİNYAL bir sinyal\n" " -n sig\tSİNYAL bir sinyal numarası\n" -" -l\t-l seçeneği ile sinyal isimleri listelenir.\n" +" -l\t-l seçeneği ile sinyal adları listelenir.\n" " \t\tArgümanlı -l seçeneğinde argümanların listelenecek\n" -" sinyal isimlerinin numaraları olduğu varsayılır. \n" +" sinyal adlarının numaraları olduğu varsayılır. \n" " -L\t, -l anahtarının eş anlamlısıdır\n" -" Kill iki sebepten dolayı bir kabuk yerleşiğidir: süreç kimlikleri yerine " -"iş\n" -" kimliklerinin kullanımını mümkün kılar ve eğer oluşturabileceğiniz " -"süreç\n" -" sayısı sınırını aşarsanız başka bir süreci öldürecek bir süreci " -"başlatmak\n" +" Kill iki sebepten dolayı bir kabuk yerleşiğidir: süreç kimlikleri yerine iş\n" +" kimliklerinin kullanımını mümkün kılar ve eğer oluşturabileceğiniz süreç\n" +" sayısı sınırını aşarsanız başka bir süreci öldürecek bir süreci başlatmak\n" " zorunda kalmazsınız.\n" " \n" " Çıktı Durumu:\n" -" Geçersiz bir seçenek belirtilmediği veya bir hata oluşmadığında başarılı " -"döner." +" Geçersiz bir seçenek belirtilmediği veya bir hata oluşmadığında başarılı döner." #: builtins.c:949 msgid "" @@ -3814,8 +3784,7 @@ msgid "" " Evaluate each ARG as an arithmetic expression. Evaluation is done in\n" " fixed-width integers with no check for overflow, though division by 0\n" " is trapped and flagged as an error. The following list of operators is\n" -" grouped into levels of equal-precedence operators. The levels are " -"listed\n" +" grouped into levels of equal-precedence operators. The levels are listed\n" " in order of decreasing precedence.\n" " \n" " \tid++, id--\tvariable post-increment, post-decrement\n" @@ -3882,8 +3851,8 @@ msgstr "" " \t&=, ^=, |=\tatamalar\n" " \n" " Kabuk değişkenleri terim olarak kullanılabilir. İfade içinde değişken\n" -" ismi değeriyle değiştirilir (sabit genişlikli tamsayıya zorlanır).\n" -" Bir kabuk değişkeni ifade içinde kullanılırken tamsayı niteliğinin\n" +" adı değeriyle değiştirilir (sabit genişlikli tamsayıya zorlanır).\n" +" Bir kabuk değişkeni ifade içinde kullanılırken tamsayı niteliğinin\n" " etkinleştirilmesini gerektirmez.\n" " \n" " İşleçler öncelik sırasına göre değerlendirilir. Parantez içine alınmış\n" @@ -3898,16 +3867,13 @@ msgid "" "Read a line from the standard input and split it into fields.\n" " \n" " Reads a single line from the standard input, or from file descriptor FD\n" -" if the -u option is supplied. The line is split into fields as with " -"word\n" +" if the -u option is supplied. The line is split into fields as with word\n" " splitting, and the first word is assigned to the first NAME, the second\n" " word to the second NAME, and so on, with any leftover words assigned to\n" -" the last NAME. Only the characters found in $IFS are recognized as " -"word\n" +" the last NAME. Only the characters found in $IFS are recognized as word\n" " delimiters.\n" " \n" -" If no NAMEs are supplied, the line read is stored in the REPLY " -"variable.\n" +" If no NAMEs are supplied, the line read is stored in the REPLY variable.\n" " \n" " Options:\n" " -a array\tassign the words read to sequential indices of the array\n" @@ -3919,8 +3885,7 @@ msgid "" " -n nchars\treturn after reading NCHARS characters rather than waiting\n" " \t\tfor a newline, but honor a delimiter if fewer than\n" " \t\tNCHARS characters are read before the delimiter\n" -" -N nchars\treturn only after reading exactly NCHARS characters, " -"unless\n" +" -N nchars\treturn only after reading exactly NCHARS characters, unless\n" " \t\tEOF is encountered or read times out, ignoring any\n" " \t\tdelimiter\n" " -p prompt\toutput the string PROMPT without a trailing newline before\n" @@ -3938,10 +3903,8 @@ msgid "" " -u fd\tread from file descriptor FD instead of the standard input\n" " \n" " Exit Status:\n" -" The return code is zero, unless end-of-file is encountered, read times " -"out\n" -" (in which case it's greater than 128), a variable assignment error " -"occurs,\n" +" The return code is zero, unless end-of-file is encountered, read times out\n" +" (in which case it's greater than 128), a variable assignment error occurs,\n" " or an invalid file descriptor is supplied as the argument to -u." msgstr "" @@ -3956,14 +3919,14 @@ msgid "" " Exit Status:\n" " Returns N, or failure if the shell is not executing a function or script." msgstr "" -"Bir kabuk fonksiyonundan dön.\n" +"Bir kabuk işlevinden dön.\n" " \n" -" Bir fonksiyon veya kaynak betiğinin N ile belirtilen dönüş değeri ile\n" -" çıkmasına neden olur. N girilmezse, dönüş durumu fonksiyon veya\n" +" Bir işlev veya kaynak betiğinin N ile belirtilen dönüş değeri ile\n" +" çıkmasına neden olur. N girilmezse dönüş durumu işlev veya\n" " betikte çalıştırılmış en son komutun dönüş durumudur.\n" " \n" " Çıkış Durumu:\n" -" N veya kabul bir fonksiyon ya da betik çalıştırmıyorsa başarısız döner." +" N veya kabul bir işlev veya betik çalıştırmıyorsa başarısız döner." #: builtins.c:1054 msgid "" @@ -4008,8 +3971,7 @@ msgid "" " physical same as -P\n" " pipefail the return value of a pipeline is the status of\n" " the last command to exit with a non-zero status,\n" -" or zero if no command exited with a non-zero " -"status\n" +" or zero if no command exited with a non-zero status\n" " posix change the behavior of bash where the default\n" " operation differs from the Posix standard to\n" " match the standard\n" @@ -4033,8 +3995,7 @@ msgid "" " by default when the shell is interactive.\n" " -P If set, do not resolve symbolic links when executing commands\n" " such as cd which change the current directory.\n" -" -T If set, the DEBUG and RETURN traps are inherited by shell " -"functions.\n" +" -T If set, the DEBUG and RETURN traps are inherited by shell functions.\n" " -- Assign any remaining arguments to the positional parameters.\n" " If there are no remaining arguments, the positional parameters\n" " are unset.\n" @@ -4053,24 +4014,21 @@ msgstr "" "Kabuk seçenekleri ve konumsal parametrelerin değerlerini ata veya kaldır\n" " \n" " Kabuk nitelikleri veya konumsal parametre değerlerini değiştir veya\n" -" kabuk değişkenlerinin isim ve değerlerini görüntüle.\n" +" kabuk değişkenlerinin ad ve değerlerini görüntüle.\n" " \n" " Seçenekler:\n" " -a Müteakip komutların ortamına aktarılmak üzere değiştirilen veya\n" " oluşturulan işlev ve değişkenleri imler.\n" -" -b Sonlandırılan artalan işlerin durumunun anında raporlanmasını " -"sağlar.\n" -" -e Bir komut sıfırdan farklı bir çıkış durumu ile çıkarsa anında " -"çıkar.\n" -" -f Dosya ismi üretimini (globbing) iptal eder.\n" -" -h Çalıştırmak için aranan komutları bulur ve yerlerini hatırlar " -"(hash).\n" -" -k Atama deyimleri şeklindeki tüm argümanları komut isminden önce\n" +" -b Sonlandırılan artalan işlerin durumunun anında raporlanmasını sağlar.\n" +" -e Bir komut sıfırdan farklı bir çıkış durumu ile çıkarsa anında çıkar.\n" +" -f Dosya adı üretimini (globbing) iptal eder.\n" +" -h Çalıştırmak için aranan komutları bulur ve yerlerini hatırlar (hash).\n" +" -k Atama deyimleri şeklindeki tüm argümanları komut adından önce\n" " belirtmek yerine ortama yerleştirir.\n" " -m İş denetimi etkinleştirilir.\n" " -n Komutları okur ama onları çalıştırmaz.\n" -" -o seçenek-ismi\n" -" seçenek-ismi olarak aşağıdakilerden biri verildiğinde karşılığı\n" +" -o seçenek-adı\n" +" seçenek-adı olarak aşağıdakilerden biri verildiğinde karşılığı\n" " olan seçenekler kullanılmış olur:\n" " allexport -a ile aynı\n" " braceexpand -B ile aynı\n" @@ -4090,36 +4048,28 @@ msgstr "" " noclobber -C ile aynı\n" " noexec -n ile aynı\n" " noglob -f ile aynı\n" -" nolog o an kabul edilir ama yoksayılır\n" +" nolog o an kabul edilir ama yok sayılır\n" " notify -b ile aynı\n" " nounset -u ile aynı\n" " onecmd -t ile aynı\n" " physical -P ile aynı\n" -" pipefail bir boruhattının dönüş değeri ya sıfırdan farklı " -"bir\n" -" durumla çıkan son (en sağdaki) komutun değeridir " -"ya\n" -" da boruhattındaki tüm komutlar başarılıysa " -"sıfırdır\n" -" posix Standart uyumu için POSIX 1003.2 " -"standardındakinden\n" -" farklı öntanımlı işlemde Bash davranışını " -"değiştirir\n" +" pipefail bir boru hattının dönüş değeri ya sıfırdan farklı bir\n" +" durumla çıkan son (en sağdaki) komutun değeridir ya\n" +" da boru hattındaki tüm komutlar başarılıysa sıfırdır\n" +" posix Standart uyumu için POSIX 1003.2 standardındakinden\n" +" farklı öntanımlı işlemde Bash davranışını değiştirir\n" " privileged -p ile aynı\n" " verbose -v ile aynı\n" " vi vi tarzı bir satır düzenleme arayüzü kullanılır\n" " xtrace -x ile aynı\n" -" -p Ayrıcalıklı kipi etkinleştirir. Bu kipte, $BASH_ENV ve $ENV " -"dosyaları\n" +" -p Ayrıcalıklı kipi etkinleştirir. Bu kipte, $BASH_ENV ve $ENV dosyaları\n" " işlenmez, kabuk işlevleri ortamdan miras alınmaz. Kabuk, gerçek\n" " kullanıcı (grup) kimliği ile aynı olmayan etkin kullanıcı (grup)\n" " kimliği ile başlatılmışsa ve -p seçeneği verilmemişse, bu eylemler\n" " alınır ve etkin kullanıcı (grup) kimliği, gerçek kullanıcı (grup)\n" " kimliğine ayarlanır. Başlatırken -p seçeneği verilmişse, etkin\n" -" kullanıcı (grup) kimliği sıfırlanmaz. Bu seçeneğin kapatılması " -"etkin\n" -" kullanıcı ve grup kimliklerinin gerçek kullanıcı ve grup " -"kimliklerine\n" +" kullanıcı (grup) kimliği sıfırlanmaz. Bu seçeneğin kapatılması etkin\n" +" kullanıcı ve grup kimliklerinin gerçek kullanıcı ve grup kimliklerine\n" " ayarlanmasına sebep olur.\n" " -t Tek bir komutu okuyup çalıştırdıktan sonra çıkar..\n" " -u Parametre yorumlaması uygulanırken bir hata sonucu değişkenlerin\n" @@ -4137,7 +4087,7 @@ msgstr "" " -T Etkinse DEBUG ve RETURN üstündeki tuzaklar kabuk işlevlerince\n" " miras alınır.\n" " -- Geri kalan argümanları konumsal parametrelere ata. Eğer kalan\n" -" argüman yoksa, konumsal parametrelerin ataması kaldırılır.\n" +" argüman yoksa konumsal parametrelerin ataması kaldırılır.\n" " - Seçeneklerin sonunu belirtir. Kalan tüm argümanlar konumsal\n" " parametrelere ayarlanır. -x ve -v seçenekleri kapatılır.\n" "\n" @@ -4162,8 +4112,7 @@ msgid "" " -n\ttreat each NAME as a name reference and unset the variable itself\n" " \t\trather than the variable it references\n" " \n" -" Without options, unset first tries to unset a variable, and if that " -"fails,\n" +" Without options, unset first tries to unset a variable, and if that fails,\n" " tries to unset a function.\n" " \n" " Some variables cannot be unset; also see `readonly'.\n" @@ -4177,8 +4126,7 @@ msgid "" "Set export attribute for shell variables.\n" " \n" " Marks each NAME for automatic export to the environment of subsequently\n" -" executed commands. If VALUE is supplied, assign VALUE before " -"exporting.\n" +" executed commands. If VALUE is supplied, assign VALUE before exporting.\n" " \n" " Options:\n" " -f\trefer to shell functions\n" @@ -4240,9 +4188,8 @@ msgstr "" " \n" " DOSYAİSMİndeki komutlar okunur ve çalıştırılır. DOSYAİSMİ içermiyorsa\n" " DOSYAİSMİnin yerini bulmak için $PATH değişkeni kullanılır. Bash POSIX\n" -" kipinde değilse ve $PATH içinde DOSYAİSMİ yoksa bulunulan dizine " -"bakılır.\n" -" Verilmiş ARGÜMANlar varsa, DOSYAİSMİ çalıştırılırken bunlar konumsal\n" +" kipinde değilse ve $PATH içinde DOSYAİSMİ yoksa bulunulan dizine bakılır.\n" +" Verilmiş ARGÜMANlar varsa DOSYAİSMİ çalıştırılırken bunlar konumsal\n" " parametreler haline gelir. Aksi takdirde, konumsal parametreler\n" " değiştirilmez.\n" " \n" @@ -4298,8 +4245,7 @@ msgid "" " -x FILE True if the file is executable by you.\n" " -O FILE True if the file is effectively owned by you.\n" " -G FILE True if the file is effectively owned by your group.\n" -" -N FILE True if the file has been modified since it was last " -"read.\n" +" -N FILE True if the file has been modified since it was last read.\n" " \n" " FILE1 -nt FILE2 True if file1 is newer than file2 (according to\n" " modification date).\n" @@ -4320,8 +4266,7 @@ msgid "" " STRING1 != STRING2\n" " True if the strings are not equal.\n" " STRING1 < STRING2\n" -" True if STRING1 sorts before STRING2 " -"lexicographically.\n" +" True if STRING1 sorts before STRING2 lexicographically.\n" " STRING1 > STRING2\n" " True if STRING1 sorts after STRING2 lexicographically.\n" " \n" @@ -4348,10 +4293,10 @@ msgid "" msgstr "" "Koşullu ifade değerlendir.\n" " \n" -" İFADEnin değerlendirilmesine bağlı olarak 0 (doğru) veya 1 (yanlış)\n" -" durumu ile çıkar. İfadeler tek terimli ya da iki terimli olabilir.\n" -" Tek terimli ifadeler çoğunlukla bir dosyanın durumunu saptamakta\n" -" kullanılır. Dizge işleçleri ve sayısal karşılaştırma işleçleri de\n" +" İFADE'nin değerlendirilmesine bağlı olarak 0 (doğru) veya 1 (yanlış)\n" +" durumu ile çıkar. İfadeler tek terimli veya iki terimli olabilir.\n" +" Tek terimli ifadeler çoğunlukla bir dosyanın durumunu saptamakta\n" +" kullanılır. Dizi işleçleri ve sayısal karşılaştırma işleçleri de\n" " vardır.\n" " \n" " Dosya işleçleri:\n" @@ -4366,7 +4311,7 @@ msgstr "" " -h DOSYA DOSYA varsa ve bir sembolik bağ ise doğrudur.\n" " -L DOSYA DOSYA varsa ve bir sembolik bağ ise doğrudur.\n" " -k DOSYA DOSYA dosya varsa ve yapışkan biti 1 ise doğrudur.\n" -" -p DOSYA DOSYA varsa ve bir isimli boru (FIFO) ise doğrudur.\n" +" -p DOSYA DOSYA varsa ve bir adlı boru (FIFO) ise doğrudur.\n" " -r DOSYA DOSYA varsa ve okuyabiliyorsanız doğrudur.\n" " -s DOSYA DOSYA varsa ve uzunluğu sıfırdan büyükse doğrudur.\n" " -S DOSYA DOSYA varsa ve bir soketse doğrudur.\n" @@ -4379,51 +4324,47 @@ msgstr "" " -N DOSYA DOSYA varsa ve son okunduğundan beri değiştirilmişse\n" " doğrudur.\n" " \n" -" DOSYA1 -nt DOSYA2 dosya1, dosya2'den değişiklik tarihine göre\n" -" daha yeni ise ya da dosya1 mevcutken dosya2 yoksa\n" -" doğrudur.\n" +" DOSYA1 -nt DOSYA2 dosya1, dosya2'den değişiklik tarihine göre\n" +" daha yeni ise veya dosya1 mevcutken dosya2 yoksa\n" +" doğrudur.\n" " \n" -" DOSYA1 -ot DOSYA2 dosya1, dosya2 den daha eski ise ya da dosya2\n" -" mevcutken dosya1 yoksa doğrudur.\n" +" DOSYA1 -ot DOSYA2 dosya1, dosya2 den daha eski ise veya dosya2\n" +" mevcutken dosya1 yoksa doğrudur.\n" " \n" -" DOSYA1 -ef DOSYA2 dosya1 ile dosya2 aynı aygıt ve aynı dosya " -"düğümünü\n" -" gösteriyorsa (ona sabit bağ ise) doğrudur.\n" +" DOSYA1 -ef DOSYA2 dosya1 ile dosya2 aynı aygıt ve aynı dosya düğümünü\n" +" gösteriyorsa (ona sabit bağ ise) doğrudur.\n" " \n" -" Dizge işleçleri:\n" +" Dizi işleçleri:\n" " \n" -" -z DİZGE dizge uzunluğu sıfırsa doğrudur.\n" +" -z dizi uzunluğu sıfırsa doğrudur.\n" " \n" -" -n DİZGE\n" -" DİZGE dizge uzunluğu sıfırdan farklıysa doğrudur.\n" +" -n \n" +" dizi uzunluğu sıfırdan farklıysa doğrudur.\n" " \n" -" DİZGE1 = DİZGE2 dizgeler aynıysa doğrudur.\n" -" DİZGE1 != DİZGE2 dizgeler aynı değilse doğrudur.\n" -" DİZGE1 < DİZGE2 dizge1 yerele göre sıralamada dizge2'den\n" +" 1 = DİZİ2 diziler aynıysa doğrudur.\n" +" 1 != DİZİ2 diziler aynı değilse doğrudur.\n" +" 1 < DİZİ2 dizi1 yerele göre sıralamada dizi2'den\n" " önceyse doğrudur.\n" -" DİZGE1 > DİZGE2 dizge1 yerele göre sıralamada dizge2'den\n" +" 1 > DİZİ2 dizi1 yerele göre sıralamada dizi2'den\n" " sonraysa doğrudur.\n" " \n" " Diğer işleçler:\n" " \n" " -o SEÇENEK Kabuk seçeneği SEÇENEK etkinse doğrudur.\n" " -v DEĞŞ Kabuk DEĞŞ ayarlanmış ise true.\n" -" -R DEĞŞ Kabuk DEĞŞ ayarlanmış ve bir isim referansı ise true\n" +" -R DEĞŞ Kabuk DEĞŞ ayarlanmış ve bir ad referansı ise true\n" " ! İFADE İFADE yanlışsa doğrudur.\n" " İFADE1 -a İFADE2 İFADE1 ve İFADE2 her ikisi de doğruysa doğrudur.\n" " İFADE1 -o İFADE2 İFADE1 veya İFADE2 doğruysa doğrudur.\n" " \n" -" arg1 İM arg2 Aritmetik sınamalar. İM bunlardan biri " -"olmalıdır:\n" +" arg1 İM arg2 Aritmetik sınamalar. İM bunlardan biri olmalıdır:\n" " -eq, -ne, -lt, -le, -gt veya -ge.\n" " \n" -" Bir aritmetik ifadede ARG1 ve ARG2 arasında, aranan eşitlik, " -"eşitsizlik,\n" +" Bir aritmetik ifadede ARG1 ve ARG2 arasında, aranan eşitlik, eşitsizlik,\n" " küçüklük, büyüklük, küçüklük veya eşitlik, büyüklük veya eşitlik varsa\n" " ifadenin sonucu doğrudur. \n" " Çıktı Durumu:\n" -" Eğer İFADE true olursa başarılı, İFADE false ile sonuçlanırsa veya " -"geçersiz\n" +" Eğer İFADE true olursa başarılı, İFADE false ile sonuçlanırsa veya geçersiz\n" " argümanda başarısız döner." #: builtins.c:1343 @@ -4442,8 +4383,7 @@ msgstr "" msgid "" "Display process times.\n" " \n" -" Prints the accumulated user and system times for the shell and all of " -"its\n" +" Prints the accumulated user and system times for the shell and all of its\n" " child processes.\n" " \n" " Exit Status:\n" @@ -4462,8 +4402,7 @@ msgstr "" msgid "" "Trap signals and other events.\n" " \n" -" Defines and activates handlers to be run when the shell receives " -"signals\n" +" Defines and activates handlers to be run when the shell receives signals\n" " or other conditions.\n" " \n" " ARG is a command to be read and executed when the shell receives the\n" @@ -4472,49 +4411,41 @@ msgid "" " value. If ARG is the null string each SIGNAL_SPEC is ignored by the\n" " shell and by the commands it invokes.\n" " \n" -" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. " -"If\n" -" a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command. " -"If\n" -" a SIGNAL_SPEC is RETURN, ARG is executed each time a shell function or " -"a\n" -" script run by the . or source builtins finishes executing. A " -"SIGNAL_SPEC\n" -" of ERR means to execute ARG each time a command's failure would cause " -"the\n" +" If a SIGNAL_SPEC is EXIT (0) ARG is executed on exit from the shell. If\n" +" a SIGNAL_SPEC is DEBUG, ARG is executed before every simple command. If\n" +" a SIGNAL_SPEC is RETURN, ARG is executed each time a shell function or a\n" +" script run by the . or source builtins finishes executing. A SIGNAL_SPEC\n" +" of ERR means to execute ARG each time a command's failure would cause the\n" " shell to exit when the -e option is enabled.\n" " \n" -" If no arguments are supplied, trap prints the list of commands " -"associated\n" +" If no arguments are supplied, trap prints the list of commands associated\n" " with each signal.\n" " \n" " Options:\n" " -l\tprint a list of signal names and their corresponding numbers\n" " -p\tdisplay the trap commands associated with each SIGNAL_SPEC\n" " \n" -" Each SIGNAL_SPEC is either a signal name in or a signal " -"number.\n" +" Each SIGNAL_SPEC is either a signal name in or a signal number.\n" " Signal names are case insensitive and the SIG prefix is optional. A\n" " signal may be sent to the shell with \"kill -signal $$\".\n" " \n" " Exit Status:\n" -" Returns success unless a SIGSPEC is invalid or an invalid option is " -"given." +" Returns success unless a SIGSPEC is invalid or an invalid option is given." msgstr "" "\rtrap [-lp] [ARG SİNYAL ...]\n" " ARGüman içindeki komutlar, kabuk SİNYAL sinyalini aldığında okunur ve\n" -" çalıştırılır. ARGüman verilmezse (ve tek bir SİNYAL varsa) ya da `-'\n" -" verilirse, belirtilen tüm sinyallere kabuk başlatıldığındaki değerleri\n" -" yerleştirilir. ARGüman bir boş dizge ise her SİNYAL sinyali kabuk ve\n" -" onu çağıran komutlar tarafından yoksayılır. Eğer SİNYAL 0 ya da EXIT\n" +" çalıştırılır. ARGüman verilmezse (ve tek bir SİNYAL varsa) veya `-'\n" +" verilirse belirtilen tüm sinyallere kabuk başlatıldığındaki değerleri\n" +" yerleştirilir. ARGüman bir boş dizi ise her SİNYAL sinyali kabuk ve\n" +" onu çağıran komutlar tarafından yok sayılır. Eğer SİNYAL 0 veya EXIT\n" " ise ARGüman kabuk çıkarken çalıştırılır. Eğer SİNYAL olarak DEBUG\n" -" verilmişse, ARGüman komutu her basit komuttan önce çalıştırılır. -p\n" +" verilmişse ARGüman komutu her basit komuttan önce çalıştırılır. -p\n" " seçeneği verilmişse trap, her SİNYAL ile ilişkili trap komutlarını\n" -" gösterir. Hiç ARGüman verilmemişse veya sadece -p verilmişse, trap\n" +" gösterir. Hiç ARGüman verilmemişse veya yalnızca -p verilmişse trap\n" " her SİNYAL ile ilişkili komutların listesini basar. Her SİNYAL ya\n" -" dosyasındaki bir sinyal ismi ya da bir sinyal numarası\n" -" olarak verilmelidir. Sinyal isimleri harf büyüklüğüne duyarsızdır ve\n" -" SIG öneki isteğe bağlıdır. -l seçeneği kabuğun sinyal isimlerini\n" +" dosyasındaki bir sinyal adı veya bir sinyal numarası\n" +" olarak verilmelidir. Sinyal adları harf büyüklüğüne duyarsızdır ve\n" +" SIG öneki isteğe bağlıdır. -l seçeneği kabuğun sinyal adlarını\n" " numaraları ile birlikte listelemesini sağlar. Kabuğa bir sinyal\n" " göndermek isterseniz \"kill -SİGNAL $$\" sözdizimini kullanabilirsiniz." @@ -4544,17 +4475,60 @@ msgid "" " NAME\tCommand name to be interpreted.\n" " \n" " Exit Status:\n" -" Returns success if all of the NAMEs are found; fails if any are not " -"found." +" Returns success if all of the NAMEs are found; fails if any are not found." msgstr "" #: builtins.c:1431 #, fuzzy +#| msgid "" +#| "Modify shell resource limits.\n" +#| " \n" +#| " Provides control over the resources available to the shell and processes\n" +#| " it creates, on systems that allow such control.\n" +#| " \n" +#| " Options:\n" +#| " -S\tuse the `soft' resource limit\n" +#| " -H\tuse the `hard' resource limit\n" +#| " -a\tall current limits are reported\n" +#| " -b\tthe socket buffer size\n" +#| " -c\tthe maximum size of core files created\n" +#| " -d\tthe maximum size of a process's data segment\n" +#| " -e\tthe maximum scheduling priority (`nice')\n" +#| " -f\tthe maximum size of files written by the shell and its children\n" +#| " -i\tthe maximum number of pending signals\n" +#| " -k\tthe maximum number of kqueues allocated for this process\n" +#| " -l\tthe maximum size a process may lock into memory\n" +#| " -m\tthe maximum resident set size\n" +#| " -n\tthe maximum number of open file descriptors\n" +#| " -p\tthe pipe buffer size\n" +#| " -q\tthe maximum number of bytes in POSIX message queues\n" +#| " -r\tthe maximum real-time scheduling priority\n" +#| " -s\tthe maximum stack size\n" +#| " -t\tthe maximum amount of cpu time in seconds\n" +#| " -u\tthe maximum number of user processes\n" +#| " -v\tthe size of virtual memory\n" +#| " -x\tthe maximum number of file locks\n" +#| " -P\tthe maximum number of pseudoterminals\n" +#| " -T\tthe maximum number of threads\n" +#| " \n" +#| " Not all options are available on all platforms.\n" +#| " \n" +#| " If LIMIT is given, it is the new value of the specified resource; the\n" +#| " special LIMIT values `soft', `hard', and `unlimited' stand for the\n" +#| " current soft limit, the current hard limit, and no limit, respectively.\n" +#| " Otherwise, the current value of the specified resource is printed. If\n" +#| " no option is given, then -f is assumed.\n" +#| " \n" +#| " Values are in 1024-byte increments, except for -t, which is in seconds,\n" +#| " -p, which is in increments of 512 bytes, and -u, which is an unscaled\n" +#| " number of processes.\n" +#| " \n" +#| " Exit Status:\n" +#| " Returns success unless an invalid option is supplied or an error occurs." msgid "" "Modify shell resource limits.\n" " \n" -" Provides control over the resources available to the shell and " -"processes\n" +" Provides control over the resources available to the shell and processes\n" " it creates, on systems that allow such control.\n" " \n" " Options:\n" @@ -4619,7 +4593,7 @@ msgstr "" " -p\tİletişim tüneli tamponunun boyu\n" " -q\tPOSIX ileti kuyruklarındaki azami bayt miktarı\n" " -r\tAzami anında çalıştırma zamanlaması önceliği\n" -" -s\tYığıtın azami boyu\n" +" -s\tYığının azami boyu\n" " -t\tİşlemci zamanının saniye cinsinden azami miktarı\n" " -u\tTek bir kullanıcının kullanabileceği azami süreç sayısı\n" " -v\tBir sürecin kullanabileceği sanal belleğin azami miktarı\n" @@ -4628,7 +4602,7 @@ msgstr "" " \n" " Tüm seçenekler tüm platformlarda kullanılabilir olmayabilir.\n" " \n" -" SINIR verilmişse, belirtilen özkaynağın yeni değeridir; özel sınır\n" +" SINIR verilmişse belirtilen özkaynağın yeni değeridir; özel sınır\n" " değerleri mevcut donanımsal sınır için `hard', mevcut yazılımsal sınır\n" " için `soft' ve sınırsız için `unlimited''dir. Aksi takdirde, belirtilen\n" " özkaynak için mevcut değer gösterilir. Hiç seçenek verilmezse -f\n" @@ -4638,8 +4612,7 @@ msgstr "" " için 512 baytlık blok sayısı olarak, -n ve -u için birimsiz, kalan\n" " seçenekler için 1024 baytlık blok sayısı olarak belirtilmelidir. \n" " Çıktı Durumu:\n" -" Geçersiz bir seçenek girilmediği veya bir hata oluşmadığı takdirde " -"başarılı döner." +" Geçersiz bir seçenek girilmediği veya bir hata oluşmadığı takdirde başarılı döner." #: builtins.c:1482 msgid "" @@ -4661,26 +4634,37 @@ msgstr "" #: builtins.c:1502 #, fuzzy +#| msgid "" +#| "Wait for job completion and return exit status.\n" +#| " \n" +#| " Waits for each process identified by an ID, which may be a process ID or a\n" +#| " job specification, and reports its termination status. If ID is not\n" +#| " given, waits for all currently active child processes, and the return\n" +#| " status is zero. If ID is a a job specification, waits for all processes\n" +#| " in that job's pipeline.\n" +#| " \n" +#| " If the -n option is supplied, waits for the next job to terminate and\n" +#| " returns its exit status.\n" +#| " \n" +#| " Exit Status:\n" +#| " Returns the status of the last ID; fails if ID is invalid or an invalid\n" +#| " option is given." msgid "" "Wait for job completion and return exit status.\n" " \n" -" Waits for each process identified by an ID, which may be a process ID or " -"a\n" +" Waits for each process identified by an ID, which may be a process ID or a\n" " job specification, and reports its termination status. If ID is not\n" " given, waits for all currently active child processes, and the return\n" " status is zero. If ID is a job specification, waits for all processes\n" " in that job's pipeline.\n" " \n" -" If the -n option is supplied, waits for a single job from the list of " -"IDs,\n" -" or, if no IDs are supplied, for the next job to complete and returns " -"its\n" +" If the -n option is supplied, waits for a single job from the list of IDs,\n" +" or, if no IDs are supplied, for the next job to complete and returns its\n" " exit status.\n" " \n" " If the -p option is supplied, the process or job identifier of the job\n" " for which the exit status is returned is assigned to the variable VAR\n" -" named by the option argument. The variable will be unset initially, " -"before\n" +" named by the option argument. The variable will be unset initially, before\n" " any assignment. This is useful only when the -n option is supplied.\n" " \n" " If the -f option is supplied, and job control is enabled, waits for the\n" @@ -4693,45 +4677,36 @@ msgid "" msgstr "" "Sürecin tamamlanmasını bekle ve çıkış durumunu döndür.\n" " \n" -" Belirtilen süreci bekler ve sonlandırma durumunu raporlar. Eğer ID " -"verilmemişse\n" -" geçerli tüm alt süreçler beklenir ve dönüş kodu sıfırdır. Eğer ID bir " -"görev tanımıysa\n" +" Belirtilen süreci bekler ve sonlandırma durumunu raporlar. Eğer ID verilmemişse\n" +" geçerli tüm alt süreçler beklenir ve dönüş kodu sıfırdır. Eğer ID bir görev tanımıysa\n" " görevin iletişim tünelindeki tüm süreçler beklenir.\n" " \n" -" -n seçeneği verilirse, sonraki görevin sonlanması beklenir ve çıkış " -"durumunı döndürür.\n" +" -n seçeneği verilirse sonraki görevin sonlanması beklenir ve çıkış durumunı döndürür.\n" " \n" " Çıkış Durumu:\n" -" Kimlik durumunu döndürür, kimlik geçersizse veya geçersiz bir seçenek " -"verilmişse\n" +" Kimlik durumunu döndürür, kimlik geçersizse veya geçersiz bir seçenek verilmişse\n" " başarısız olur." #: builtins.c:1533 msgid "" "Wait for process completion and return exit status.\n" " \n" -" Waits for each process specified by a PID and reports its termination " -"status.\n" +" Waits for each process specified by a PID and reports its termination status.\n" " If PID is not given, waits for all currently active child processes,\n" " and the return status is zero. PID must be a process ID.\n" " \n" " Exit Status:\n" -" Returns the status of the last PID; fails if PID is invalid or an " -"invalid\n" +" Returns the status of the last PID; fails if PID is invalid or an invalid\n" " option is given." msgstr "" "Sürecin tamamlanmasını bekle ve çıkış durumunu döndür.\n" " \n" -" PID tarafından belirtilen her süreci bekler ve sonlandırma durumunu " -"raporlar.\n" -" Eğer PID verilmemişse geçerli tüm alt süreçler beklenir ve dönüş kodu " -"sıfırdır.\n" +" PID tarafından belirtilen her süreci bekler ve sonlandırma durumunu raporlar.\n" +" Eğer PID verilmemişse geçerli tüm alt süreçler beklenir ve dönüş kodu sıfırdır.\n" " PID bir süreç kimliği olmalıdır.\n" " \n" " Çıkış Durumu:\n" -" Son PID'nin durumunu döndürür, PID geçersizse veya geçersiz bir seçenek " -"verilmişse\n" +" Son PID'nin durumunu döndürür, PID geçersizse veya geçersiz bir seçenek verilmişse\n" " başarısız olur." #: builtins.c:1548 @@ -4748,12 +4723,9 @@ msgid "" msgstr "" "Bir listedeki her üye için komut çalıştır.\n" " \n" -" `for' döngüsü bir öge listesindeki her üye için komut sırasını " -"çalıştırır.\n" -" Eğer `in KELİMELER ...;' belirtilmemişse `in \"$@\"' varsayılır. " -"KELİMELER\n" -" içerisindeki her eleman için, İSİM bu elemana atanır ve KOMUTLAR " -"çalıştırılır.\n" +" `for' döngüsü bir öge listesindeki her üye için komut sırasını çalıştırır.\n" +" Eğer `in SÖZCÜKLER ...;' belirtilmemişse `in \"$@\"' varsayılır. SÖZCÜKLER\n" +" içerisindeki her eleman için, AD bu elemana atanır ve KOMUTLAR çalıştırılır.\n" " \n" " Çıkış Durumu:\n" " Son çalıştırılan komutun durumunu döndürür." @@ -4782,8 +4754,7 @@ msgstr "" " \t\tKOMUTLAR\n" " \t\t(( İFADE3 ))\n" " \tdone\n" -" İFADE1, İFADE2 ve İFADE3 aritmetik ifadelerdir. Eğer ifadelerden biri " -"yoksa\n" +" İFADE1, İFADE2 ve İFADE3 aritmetik ifadelerdir. Eğer ifadelerden biri yoksa\n" " 1'e değerlendirilmiş şekilde davranır.\n" " \n" " Çıkış Durumu:\n" @@ -4808,24 +4779,16 @@ msgid "" " Exit Status:\n" " Returns the status of the last command executed." msgstr "" -"Listeden kelimeleri seç ve komutları çalıştır.\n" +"Listeden sözcükleri seç ve komutları çalıştır.\n" " \n" -" `SÖZ ...;' listesi yorumlanarak öğe listesi üretilir. Öğe " -"listesindeki\n" -" her öğenin başına bir numara eklenerek standart hataya çıktılanır. " -"Eğer\n" -" `in SÖZ ... ;' parçası verilmezse, in \"$@\"' verilmiş gibi konuma " -"bağlı\n" -" parametreler basılır ve standart girdide PS3 istemi ile girdi " -"beklenir.\n" -" Listede belirtilen numaralardan biri girdi olarak verilirse, o " -"konuma\n" -" bağlı SÖZcük ile AD eşleştirilir. Girdi satırı boş verilirse, " -"dosyasonu\n" -" okununcaya kadar komut istemi tekrarlanır. Listede belirtilenler " -"dışında\n" -" verilen her değer için AD null ile eşleştirilir. Okunan satır " -"$REPLY\n" +" `SÖZ ...;' listesi yorumlanarak öğe listesi üretilir. Öğe listesindeki\n" +" her öğenin başına bir numara eklenerek standart hataya çıktılanır. Eğer\n" +" `in SÖZ ... ;' parçası verilmezse in \"$@\"' verilmiş gibi konuma bağlı\n" +" parametreler basılır ve standart girdide PS3 istemi ile girdi beklenir.\n" +" Listede belirtilen numaralardan biri girdi olarak verilirse o konuma\n" +" bağlı SÖZcük ile AD eşleştirilir. Girdi satırı boş verilirse dosyasonu\n" +" okununcaya kadar komut istemi yinelenir. Listede belirtilenler dışında\n" +" verilen her değer için AD null ile eşleştirilir. Okunan satır $REPLY\n" " değişkeninde tutulur. Her seçimden sonra bir break komutu ile\n" " sonlandırılıncaya kadar komutlar çalıştırılır.\n" " \n" @@ -4849,8 +4812,7 @@ msgid "" msgstr "" "Veriyolu çalıştırması tarafından harcanan zamanı bildir.\n" " \n" -" VERİYOLUnu çalıştır ve sonlandığında kullanıcı işlemci zamanı ile " -"sistem\n" +" VERİYOLUnu çalıştır ve sonlandığında kullanıcı işlemci zamanı ile sistem\n" " işlemci zamanını içeren gerçek zamanın bir özetini yazdır.\n" " \n" " Seçenekler:\n" @@ -4883,17 +4845,12 @@ msgstr "" msgid "" "Execute commands based on conditional.\n" " \n" -" The `if COMMANDS' list is executed. If its exit status is zero, then " -"the\n" -" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list " -"is\n" +" The `if COMMANDS' list is executed. If its exit status is zero, then the\n" +" `then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list is\n" " executed in turn, and if its exit status is zero, the corresponding\n" -" `then COMMANDS' list is executed and the if command completes. " -"Otherwise,\n" -" the `else COMMANDS' list is executed, if present. The exit status of " -"the\n" -" entire construct is the exit status of the last command executed, or " -"zero\n" +" `then COMMANDS' list is executed and the if command completes. Otherwise,\n" +" the `else COMMANDS' list is executed, if present. The exit status of the\n" +" entire construct is the exit status of the last command executed, or zero\n" " if no condition tested true.\n" " \n" " Exit Status:\n" @@ -4901,11 +4858,11 @@ msgid "" msgstr "" "Komutları şartlara göre çalıştırır.\n" " \n" -" `if KOMUTlar;' listesi çalıştırılır; çıkış durumu sıfırsa\n" -" `then KOMUTlar;' listesi çalıştırılır, değilse `elif KOMUTlar;'\n" -" listesi çalıştırılır; bunun çıkış durumu sıfırsa `then KOMUTlar;'\n" +" `if KOMUTLAR;' listesi çalıştırılır; çıkış durumu sıfırsa\n" +" `then KOMUTLAR;' listesi çalıştırılır, değilse `elif KOMUTLAR;'\n" +" listesi çalıştırılır; bunun çıkış durumu sıfırsa `then KOMUTLAR;'\n" " listesi çalıştırılır ve if komutu tamamlanır, değilse varsa\n" -" `else KOMUTlar;' listesi çalıştırılır ve if komutu tamamlanır.\n" +" `else KOMUTLAR;' listesi çalıştırılır ve if komutu tamamlanır.\n" " Oluşumun tamamının dönüş durumu çalıştırılmış olan son komutun\n" " çıkış durumudur. Bir komut çalıştırılmamışsa ve hiçbir koşul\n" " doğru sonuç vermemişse sıfır döner. Çıkış Durumu:\n" @@ -4941,8 +4898,8 @@ msgid "" msgstr "" "Bir sınama başarısız oluncaya kadar komutları çalıştır.\n" " \n" -" `until KOMUTlar; listesinin çıkış durumu sıfırdan farklı olduğu sürece\n" -" `do KOMUTlar;' listesi çalıştırılır.\n" +" `until KOMUTLAR; listesinin çıkış durumu sıfırdan farklı olduğu sürece\n" +" `do KOMUTLAR;' listesi çalıştırılır.\n" " \n" " Çıktı Durumu:\n" " Son çalıştırılan komutun durumunu döndürür." @@ -4965,8 +4922,7 @@ msgid "" "Define shell function.\n" " \n" " Create a shell function named NAME. When invoked as a simple command,\n" -" NAME runs COMMANDs in the calling shell's context. When NAME is " -"invoked,\n" +" NAME runs COMMANDs in the calling shell's context. When NAME is invoked,\n" " the arguments are passed to the function as $1...$n, and the function's\n" " name is in $FUNCNAME.\n" " \n" @@ -4986,7 +4942,7 @@ msgid "" msgstr "" "Komutları bir birim olarak grupla.\n" " \n" -" KOMUTlar bir grup olarak çalıştırılır. Bu, bir komut kümesini bir\n" +" KOMUTLAR bir grup olarak çalıştırılır. Bu, bir komut kümesini bir\n" " yönlendirmede kullanmanın tek yoludur.\n" " \n" " Çıktı Durumu:\n" @@ -5009,7 +4965,7 @@ msgstr "" " \n" " `fg' komutunu İŞ_BELİRTİMİ argümanı ile kullanmaya eşdeğerdir.\n" " Durmuş veya artalandaki bir işin önalanda sürdürülmesini sağlar.\n" -" İŞ_BELİRTİMİ bir iş ismi veya iş numarası olarak belirtilebilir.\n" +" İŞ_BELİRTİMİ bir iş adı veya iş numarası olarak belirtilebilir.\n" " İŞ_BELİRTİMİ'nden sonra bir & gelmesi işin `bg' komutununa argüman\n" " olarak kullanılmış gibi artalana yerleştirilmesine sebep olur.\n" " \n" @@ -5018,6 +4974,14 @@ msgstr "" #: builtins.c:1726 #, fuzzy +#| msgid "" +#| "Evaluate arithmetic expression.\n" +#| " \n" +#| " The EXPRESSION is evaluated according to the rules for arithmetic\n" +#| " evaluation. Equivalent to \"let EXPRESSION\".\n" +#| " \n" +#| " Exit Status:\n" +#| " Returns 1 if EXPRESSION evaluates to 0; returns 0 otherwise." msgid "" "Evaluate arithmetic expression.\n" " \n" @@ -5039,12 +5003,9 @@ msgstr "" msgid "" "Execute conditional command.\n" " \n" -" Returns a status of 0 or 1 depending on the evaluation of the " -"conditional\n" -" expression EXPRESSION. Expressions are composed of the same primaries " -"used\n" -" by the `test' builtin, and may be combined using the following " -"operators:\n" +" Returns a status of 0 or 1 depending on the evaluation of the conditional\n" +" expression EXPRESSION. Expressions are composed of the same primaries used\n" +" by the `test' builtin, and may be combined using the following operators:\n" " \n" " ( EXPRESSION )\tReturns the value of EXPRESSION\n" " ! EXPRESSION\t\tTrue if EXPRESSION is false; else false\n" @@ -5064,25 +5025,23 @@ msgid "" msgstr "" "Koşullu komut çalıştır.\n" " \n" -" Koşullu İFADEnin değerine bağlı olarak 0 ya da 1 durumu ile döner.\n" -" İfadeler test yerleşiği tarafından kullanılan aynı ilkelerle " -"oluşturulur\n" +" Koşullu İFADE'nin değerine bağlı olarak 0 veya 1 durumu ile döner.\n" +" İfadeler test yerleşiği tarafından kullanılan aynı ilkelerle oluşturulur\n" " ve aşağıdaki işleçler kullanılarak biraraya getirilebilirler:\n" "\n" -" ( İFADE ) İFADEnin değeri döner\n" +" ( İFADE ) İFADE'nin değeri döner\n" " ! İFADE İFADE yanlışsa doğru, doğruysa yanlıştır.\n" " İFADE1 && İFADE2 İFADE1 ve İFADE2 her ikisi de doğruysa doğrudur\n" " İFADE1 || İFADE2 İFADE1 veya İFADE2 doğruysa doğrudur\n" "\n" -" `==' ve `!=' işleçleri kullanıldığında, işlecin sağındaki dizge bir " -"kalıp\n" +" `==' ve `!=' işleçleri kullanıldığında, işlecin sağındaki dizi bir kalıp\n" " olarak ele alınır ve kalıp eşleştirmesi uygulanır. `=~' kullanıldığında\n" -" işlecin sağındaki dizge düzenli ifade olarak eşleştirilir. \n" -" İFADE1, ifadenin değeri için tek başına yeterli ise && ve || İFADE2'yi\n" -" çalıştırmaz.\n" -" \n" -" Çıkış Durumu:\n" -" İFADE değerine göre 0 veya 1." +" işlecin sağındaki dizi düzenli ifade olarak eşleştirilir.\n" +" İFADE1, ifadenin değeri için tek başına yeterli ise && ve || İFADE2'yi\n" +" çalıştırmaz.\n" +" \n" +" Çıkış Durumu:\n" +" İFADE değerine göre 0 veya 1." #: builtins.c:1764 msgid "" @@ -5142,44 +5101,44 @@ msgstr "" " BASH_VERSION\tBu Bash'in sürüm bilgisi.\n" " CDPATH\t`cd'ye argüman olarak verilecek dizinlerin aranacağı\n" " \t\tdizinlerin iki nokta imi ayraçlı listesi.\n" -" GLOBIGNORE\tDosyayolu yorumlaması tarafından yoksayılacak dosya\n" -" \t\tisimlerini belirten kalıpların ikinokta imi ayraçlı\n" +" GLOBIGNORE\tDosyayolu yorumlaması tarafından yok sayılacak dosya\n" +" \t\tadlarını belirten kalıpların ikinokta imi ayraçlı\n" " \t\tlistesi.\n" -" HISTFILE\tKomut geçmişinizin saklanacağı dosyanın ismi.\n" +" HISTFILE\tKomut geçmişinizin saklanacağı dosyanın adı.\n" " HISTFILESIZE\tBu dosyanın içerebileceği azami satır sayısı.\n" " HISTSIZE\tÇalışan bir kabuğun erişebileceği geçmiş satırlarının\n" " \t\tazami sayısı.\n" " HOME\tKullanıcının ev dizininin tam yolu.\n" -" HOSTNAME\tMakinenizin ağdaki konak ismi.\n" +" HOSTNAME\tMakinenizin ağdaki konak adı.\n" " HOSTTYPE\tBash'in bu sürümünün altında çalıştığı işlemcinin türü\n" " IGNOREEOF\tTek girdi olarak EOF karakteri alındığında kabuğun\n" -" \t\teylemini kontrol eder. Atandığında değeri, kabuk\n" +" \t\teylemini denetler. Atandığında değeri, kabuk\n" " \t\tçıkmadan önce bir girdi satırındaki ilk karakter\n" " \t\tolarak okunabilen ardışık EOF karakterlerinin sayısını\n" -" \t\tgösterir (öntanımlı 10). Eğer değişken mevcut değilse,\n" +" \t\tgösterir (öntanımlı 10). Eğer değişken mevcut değilse\n" " \t\tEOF girdi sonunu belirtir.\n" -" MACHTYPE\tBash'in üzerinde çalıştığı sistemi açıklayan dizge.\n" +" MACHTYPE\tBash'in üzerinde çalıştığı sistemi açıklayan dizi.\n" " MAILCHECK\tBash'in yeni postaya kaç saniyede bir bakacağı.\n" " MAILPATH\tBash'in yeni posta var mı diye bakacağı dosya\n" -" \t\tisimlerinin ikinokta imi ayraçlı listesi.\n" +" \t\tad ikinokta imi ayraçlı listesi.\n" " OSTYPE\tBash'in üzerinde çalıştığı çekirdeğin türü.\n" " PATH\tKomutları ararken bakılacak dizinlerin ikinokta imi\n" " \t\tayraçlı listesi.\n" " PROMPT_COMMAND\tBirincil komut istemi ($PS1) basılmadan önce\n" " \t\tçalıştırılacak komut\n" -" PS1\tBirincil komut istemi dizgesi.\n" -" PS2\tİkincil komut istemi dizgesi.\n" +" PS1\tBirincil komut istemi dizisi.\n" +" PS2\tİkincil komut istemi dizisi.\n" " PWD\tÇalışma dizininizin tam yolu.\n" " SHELLOPTS\tEtkin kabuk seçeneklerinin ikinokta imi ayraçlı listesi\n" -" TERM\tGeçerli uçbirim türünün ismi.\n" +" TERM\tGeçerli uçbirim türünün adı.\n" " TIMEFORMAT\ttime anahtar sözcüğü ile başlayan zamanlama bilgisinin\n" -" \t\tnasıl belirtileceğini gösteren biçim dizgesi.\n" -" auto_resume\tDeğerin boş olmaması durmuş işin isminin onu\n" +" \t\tnasıl belirtileceğini gösteren biçim dizisi.\n" +" auto_resume\tDeğerin boş olmaması durmuş işin adının onu\n" " \t\tbaşlatmakta kullanılan komut satırı olduğudur ve\n" " \t\toradaysa iş önalana alınır. `exact' değeri, komut\n" " \t\tsözcüğünün durmuş işler listesindeki komutla tam\n" " \t\tolarak eşleşmesi gerektiği anlamına gelir. `substring'\n" -" \t\tdeğeri, komut sözcüğünün işin bir altdizgesi ile\n" +" \t\tdeğeri, komut sözcüğünün işin bir altdizisi ile\n" " \t\teşleşmesi gerektiğini belirtir. Bunlar dışında bir\n" " \t\tdeğer komutun durmuş bir işe önek olması gerektiği\n" " \t\tanlamına gelir.\n" @@ -5189,7 +5148,7 @@ msgstr "" " \t\tyorumlama karakteridir ve normalde ! işaretidir.\n" " \t\tİkinci karakter, bir satırdaki ilk karakter olduğunda\n" " \t\t`hızlı ikame'yi imleyen karakterdir ve normalde ^\n" -" \t\timidir. İstemlik olan üçüncü karakter ise, bir\n" +" \t\timidir. İstemlik olan üçüncü karakter ise bir\n" " \t\tsözcüğün ilk karakteri olarak bulunduğunda satırın\n" " \t\tkalanının açıklama olmasını sağlayan karakterdir ve\n" " \t\tnormalde # imidir.\n" @@ -5229,27 +5188,27 @@ msgid "" msgstr "" "Dizinleri yığına ekle.\n" " \n" -" Dizin yığıtının en üstüne bir dizin ekler, ya da geçerli çalışma\n" -" dizini yığıtın tepesine gelecek şekilde yığıtı döndürür. Hiç\n" +" Dizin yığınının en üstüne bir dizin ekler veya geçerli çalışma\n" +" dizini yığının tepesine gelecek şekilde yığını döndürür. Hiç\n" " argüman verilmemişse en üstteki iki dizini yer değiştirir.\n" " \n" " Seçenekler:\n" -" -n\tdizinleri yığıta eklerken normal dizin değişikliğini engeller,\n" -" \t\tböylece sadece yığıt değiştirilmiş olur.\n" +" -n\tdizinleri yığına eklerken normal dizin değişikliğini engeller,\n" +" \t\tböylece yalnızca yığın değiştirilmiş olur.\n" " \n" " Argümanlar:\n" " +N\t(`dirs' tarafından gösterilen listenin solundan saymaya\n" " \t\tsıfırla başlandığında) N'inci dizin tepeye gelecek şekilde\n" -" \t\tyığıtı döndürür.\n" +" \t\tyığını döndürür.\n" " \n" " -N\t(`dirs' tarafından gösterilen listenin sağından saymaya\n" " \t\tsıfırla başlandığında) N'inci dizin tepeye gelecek şekilde\n" -" \t\tyığıtı döndürür.\n" +" \t\tyığını döndürür.\n" " \n" -" dizin\tDİZİNi yeni çalışma dizini yaparak dizin yığıtının\n" +" dizin\tDİZİNi yeni çalışma dizini yaparak dizin yığınının\n" " \t\ttepesine ekler.\n" " \n" -" Dizin yığıtını `dirs' komutuyla görebilirsiniz.\n" +" Dizin yığınını `dirs' komutuyla görebilirsiniz.\n" " \n" " Çıkış Durumu:\n" " Geçersiz bir argüman belirtilmediği veya dizin değişikliği başarısız\n" @@ -5281,15 +5240,15 @@ msgid "" " Returns success unless an invalid argument is supplied or the directory\n" " change fails." msgstr "" -"Dizin yığıtından girdileri sil.\n" +"Dizin yığınından girdileri sil.\n" " \n" -" Dizin yığıtından girdileri siler. Hiç argüman verilmemişse,\n" -" yığıtın en üstündeki dizini yığıttan kaldırır ve yığıtın\n" +" Dizin yığınından girdileri siler. Hiç argüman verilmemişse\n" +" yığının en üstündeki dizini yığından kaldırır ve yığının\n" " tepesinde kalan dizine geçer. \n" " \n" " Seçenekler:\n" -" -n\tdizinleri yığıttan silerken normal dizin değişikliğini\n" -" \t\tengeller, böylece sadece yığıt değiştirilmiş olur. \n" +" -n\tdizinleri yığından silerken normal dizin değişikliğini\n" +" \t\tengeller, böylece yalnızca yığın değiştirilmiş olur. \n" " \n" " Argümanlar:\n" " +N\t\t`dirs' tarafından gösterilen listenin solundan saymaya\n" @@ -5300,7 +5259,7 @@ msgstr "" " \t\tsıfırla başlandığında N'inci girdiyi siler. Örneğin,\n" " \t\t`popd -0' son dizini `popd -1' sonuncudan öncekini siler. \n" " \n" -" Dizin yığıtını `dirs' komutuyla görebilirsiniz. \n" +" Dizin yığınını `dirs' komutuyla görebilirsiniz.\n" " Çıkış Durumu:\n" " Geçersiz bir argüman belirtilmediği veya dizin değişikliği başarısız\n" " olmadıkça başarılı döner." @@ -5333,18 +5292,18 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -"Dizin yığıtını görüntüle.\n" +"Dizin yığınını görüntüle.\n" " \n" " O an anımsanan dizinleri listeler. Dizinler listeye `pushd'\n" " komutuyla eklenir; listeden tek tek geri almak içinse `popd'\n" " komutu kullanılır.\n" " \n" " Seçenekler:\n" -" -c\ttüm girdileri silerek dizin yığıtını boşaltır.\n" +" -c\ttüm girdileri silerek dizin yığınını boşaltır.\n" " -l\t`dirs'in dizinleri ev dizininize göreli kısayollar\n" " \t\tolarak göstermemesine yol açar.\n" -" -p\tyığıttaki konumu göstermemesi dışında aynı çıktıyı verir.\n" -" -v\t`dirs'in dizin yığıtını dizin adının önüne yığıt konumunu\n" +" -p\tyığıntaki konumu göstermemesi dışında aynı çıktıyı verir.\n" +" -v\t`dirs'in dizin yığınını dizin adının önüne yığın konumunu\n" " \t\tekleyerek her satırda bir girdi göstermesini sağlar.\n" " \n" " Argümanlar:\n" @@ -5356,8 +5315,7 @@ msgstr "" " \t\tsıfırla başlayarak sayılan N'inci girdiyi gösterir.\n" " \n" " Çıkış Durumu:\n" -" Geçersiz seçenek belirtilmediği veya bir hata oluşmadığı sürece başarılı " -"döner." +" Geçersiz seçenek belirtilmediği veya bir hata oluşmadığı sürece başarılı döner." #: builtins.c:1916 msgid "" @@ -5387,80 +5345,63 @@ msgid "" " -v var\tassign the output to shell variable VAR rather than\n" " \t\tdisplay it on the standard output\n" " \n" -" FORMAT is a character string which contains three types of objects: " -"plain\n" -" characters, which are simply copied to standard output; character " -"escape\n" +" FORMAT is a character string which contains three types of objects: plain\n" +" characters, which are simply copied to standard output; character escape\n" " sequences, which are converted and copied to the standard output; and\n" -" format specifications, each of which causes printing of the next " -"successive\n" +" format specifications, each of which causes printing of the next successive\n" " argument.\n" " \n" -" In addition to the standard format specifications described in " -"printf(1),\n" +" In addition to the standard format specifications described in printf(1),\n" " printf interprets:\n" " \n" " %b\texpand backslash escape sequences in the corresponding argument\n" " %q\tquote the argument in a way that can be reused as shell input\n" -" %(fmt)T\toutput the date-time string resulting from using FMT as a " -"format\n" +" %(fmt)T\toutput the date-time string resulting from using FMT as a format\n" " \t string for strftime(3)\n" " \n" " The format is re-used as necessary to consume all of the arguments. If\n" " there are fewer arguments than the format requires, extra format\n" -" specifications behave as if a zero value or null string, as " -"appropriate,\n" +" specifications behave as if a zero value or null string, as appropriate,\n" " had been supplied.\n" " \n" " Exit Status:\n" -" Returns success unless an invalid option is given or a write or " -"assignment\n" +" Returns success unless an invalid option is given or a write or assignment\n" " error occurs." msgstr "" -"BİÇİMin denetimi altında ARGümanları standart çıktıya biçimleyerek " -"yazar\n" +"BİÇİM'in denetimi altında ARGÜMAN'ları biçimleyerek yazdırır\n" " \n" " Seçenekler:\n" " -v değişken\tseçeneği çıktının standart çıktıya\n" -" \t\tbasılması yerine DEĞİŞKENe atanmasını sağlar.\n" +" \t\t\tbasılması yerine DEĞİŞKEN'e atanmasını sağlar.\n" " \n" -" BİÇİM üç tür nesne içeren bir dizgedir: salt karakterler\n" -" basitçe standart çıktıya kopyalanır, öncelenmiş karakterler\n" -" dönüştürülüp standart çıktıya kopyalanır ve biçim belirtimleri;\n" -" belirtimlerin her biri sırayla karşı düşen ARGümanların basılmasını\n" -" sağlar.\n" +" BİÇİM, üç tür nesne içeren bir dizidir: Salt karakterler basitçe\n" +" standart çıktıya kopyalanır, öncelenmiş karakterler dönüştürülüp\n" +" standart çıktıya kopyalanır ve biçim belirtimleri; belirtimlerin\n" +" her biri sırayla karşı düşen argümanların basılmasını sağlar.\n" " \n" -" Standart printf(1) biçimlerine ek olarak, printf aşağıdakileri de " -"yorumlar:\n" +" Standart printf(1) biçimlerine ek olarak, printf şunları da yorumlar:\n" " \n" -" %b\ttersbölü öncelemeli karakterlerin karşı düşen ARGümanda " -"yorumlanmasını sağlar\n" -" %q\tARGümanın kabuk girdisi olarak kullanılabilecek biçimde " -"kullanılabilmesi\n" +" %b\ttersbölü öncelemeli karakterlerin karşı düşen argümanda yorumlar\n" +" %q\tagrgümanın kabuk girdisi olarak kullanılabilecek biçimde biçimler\n" " \t\tiçin alıntılar.\n" -" %(fmt)T\tstrftime(3) için bir biçim dizgesi olarak FMT tarafından " -"kullanılmak üzere\n" -" \t\ttarih zaman dizgesi çıktısısı verir\n" +" %(fmt)T\tstrftime(3) için bir biçim dizisi olarak FMT tarafından\n" +" \t\tkullanılmak üzere tarih zaman dizisi çıktısısı verir\n" " \n" -" Biçim argümanların tümünün kullanılabilmesi için gerektiğinde yeniden " -"kullanılır.\n" -" Biçimin gerektirdiğinden daha az argüman varsa, ek biçim tanımlamaları " -"uygun olduğu\n" -" şekilde sıfır değeri veya BOŞ (null) dizge değeri olarak davranırlar.\n" +" Biçim argümanların tümünün kullanılabilmesi için gerektiğinde yeniden\n" +" kullanılır. Biçimin gerektirdiğinden daha az argüman varsa ek biçim\n" +" tanımlamaları uygun olduğu şekilde sıfır değeri veya BOŞ (null) dizi\n" +" değeri olarak davranırlar.\n" " \n" " Çıkış Durumu:\n" -" Geçersiz bir seçenek belirtilmediği veya yazılmadığı takdirde ya da bir " -"atama\n" -" hatası oluşmadığı sürece başarılı döner." +" Geçersiz bir seçenek belirtilmediği veya yazılmadığı takdirde veya bir\n" +" atama hatası oluşmadığı sürece başarılı döner." #: builtins.c:1971 msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" -" For each NAME, specify how arguments are to be completed. If no " -"options\n" -" are supplied, existing completion specifications are printed in a way " -"that\n" +" For each NAME, specify how arguments are to be completed. If no options\n" +" are supplied, existing completion specifications are printed in a way that\n" " allows them to be reused as input.\n" " \n" " Options:\n" @@ -5475,10 +5416,8 @@ msgid "" " \t\tcommand) word\n" " \n" " When completion is attempted, the actions are applied in the order the\n" -" uppercase-letter options are listed above. If multiple options are " -"supplied,\n" -" the -D option takes precedence over -E, and both take precedence over -" -"I.\n" +" uppercase-letter options are listed above. If multiple options are supplied,\n" +" the -D option takes precedence over -E, and both take precedence over -I.\n" " \n" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." @@ -5489,8 +5428,7 @@ msgid "" "Display possible completions depending on the options.\n" " \n" " Intended to be used from within a shell function generating possible\n" -" completions. If the optional WORD argument is supplied, matches " -"against\n" +" completions. If the optional WORD argument is supplied, matches against\n" " WORD are generated.\n" " \n" " Exit Status:\n" @@ -5500,22 +5438,18 @@ msgstr "" " \n" " Olası tamamlamaları üretmek üzere bir kabuk işlevinin içinde kullanmak\n" " amacıyla tasarlanmıştır. İsteğe bağlı SÖZCÜK argümanı sağlandığı\n" -" takdirde eşleşmelerden sadece SÖZCÜK ile eşleşenler üretilir.\n" +" takdirde eşleşmelerden yalnızca SÖZCÜK ile eşleşenler üretilir.\n" " \n" " Çıktı Durumu:\n" -" Geçersiz bir seçenek girilmediği veya bir hata oluşmadığı takdirde " -"başarılı döner." +" Geçersiz bir seçenek girilmediği veya bir hata oluşmadığı takdirde başarılı döner." #: builtins.c:2016 msgid "" "Modify or display completion options.\n" " \n" -" Modify the completion options for each NAME, or, if no NAMEs are " -"supplied,\n" -" the completion currently being executed. If no OPTIONs are given, " -"print\n" -" the completion options for each NAME or the current completion " -"specification.\n" +" Modify the completion options for each NAME, or, if no NAMEs are supplied,\n" +" the completion currently being executed. If no OPTIONs are given, print\n" +" the completion options for each NAME or the current completion specification.\n" " \n" " Options:\n" " \t-o option\tSet completion option OPTION for each NAME\n" @@ -5542,22 +5476,17 @@ msgstr "" msgid "" "Read lines from the standard input into an indexed array variable.\n" " \n" -" Read lines from the standard input into the indexed array variable " -"ARRAY, or\n" -" from file descriptor FD if the -u option is supplied. The variable " -"MAPFILE\n" +" Read lines from the standard input into the indexed array variable ARRAY, or\n" +" from file descriptor FD if the -u option is supplied. The variable MAPFILE\n" " is the default ARRAY.\n" " \n" " Options:\n" " -d delim\tUse DELIM to terminate lines, instead of newline\n" -" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are " -"copied\n" -" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default " -"index is 0\n" +" -n count\tCopy at most COUNT lines. If COUNT is 0, all lines are copied\n" +" -O origin\tBegin assigning to ARRAY at index ORIGIN. The default index is 0\n" " -s count\tDiscard the first COUNT lines read\n" " -t\tRemove a trailing DELIM from each line read (default newline)\n" -" -u fd\tRead lines from file descriptor FD instead of the standard " -"input\n" +" -u fd\tRead lines from file descriptor FD instead of the standard input\n" " -C callback\tEvaluate CALLBACK each time QUANTUM lines are read\n" " -c quantum\tSpecify the number of lines read between each call to\n" " \t\t\tCALLBACK\n" @@ -5570,13 +5499,11 @@ msgid "" " element to be assigned and the line to be assigned to that element\n" " as additional arguments.\n" " \n" -" If not supplied with an explicit origin, mapfile will clear ARRAY " -"before\n" +" If not supplied with an explicit origin, mapfile will clear ARRAY before\n" " assigning to it.\n" " \n" " Exit Status:\n" -" Returns success unless an invalid option is given or ARRAY is readonly " -"or\n" +" Returns success unless an invalid option is given or ARRAY is readonly or\n" " not an indexed array." msgstr "" @@ -5589,837 +5516,3 @@ msgstr "" "Bir dosyadaki satırları bir dizi değişkenine oku.\n" " \n" " `mapfile' ile eşanlamlıdır." - -#, fuzzy -#~ msgid "Copyright (C) 2019 Free Software Foundation, Inc." -#~ msgstr "Telif Hakkı (C) 2016 Özgür Yazılım Vakfı A.Ş." - -#~ msgid "" -#~ "Returns the context of the current subroutine call.\n" -#~ " \n" -#~ " Without EXPR, returns " -#~ msgstr "" -#~ "Geçerli altyordam çağrısının bağlamı döndürür.\n" -#~ " \n" -#~ " İFADE olmadan, şu döner " - -#~ msgid "add_process: process %5ld (%s) in the_pipeline" -#~ msgstr "add_process: %5ld (%s) süreci iletişim_tünelinde" - -#~ msgid "Unknown Signal #" -#~ msgstr "Bilinmeyen Sinyal #" - -#~ msgid ":" -#~ msgstr ":" - -#~ msgid "true" -#~ msgstr "true" - -#~ msgid "false" -#~ msgstr "false" - -#~ msgid "times" -#~ msgstr "times" - -#~ msgid "Copyright (C) 2009 Free Software Foundation, Inc.\n" -#~ msgstr "Telif Hakkı (C) 2009 Free Software Foundation, Inc.\n" - -#~ msgid "" -#~ "License GPLv2+: GNU GPL version 2 or later \n" -#~ msgstr "" -#~ "Lisans GPLv2+: GNU GPL sürüm 2 veya sonrası \n" - -#~ msgid " " -#~ msgstr " " - -#~ msgid "Without EXPR, returns returns \"$line $filename\". With EXPR," -#~ msgstr "İFADE olmaksızın \"$line $filename\" döner. İFADE ile ise" - -#~ msgid "returns \"$line $subroutine $filename\"; this extra information" -#~ msgstr "\"$line $subroutine $filename\" döner; bu ek bilgi" - -#~ msgid "can be used used to provide a stack trace." -#~ msgstr "bir yığıt izini sürmek için kullanılabilir." - -#~ msgid "" -#~ "The value of EXPR indicates how many call frames to go back before the" -#~ msgstr "" -#~ "İFADE değeri şu ankinden önce kaç çağrı çerçevesinin geri döneceğini" - -#~ msgid "current one; the top frame is frame 0." -#~ msgstr "belirtir; tepe çerçeve 0. çerçevedir." - -#~ msgid "%s: invalid number" -#~ msgstr "%s: sayı geçersiz" - -#~ msgid "Shell commands matching keywords `" -#~ msgstr "Bu anahtar sözcüklere uygun kabuk komutları: `" - -#~ msgid "Display the list of currently remembered directories. Directories" -#~ msgstr "" -#~ "\rdirs [-clpv] [+N] [-N]\n" -#~ " O an anımsanan dizinleri listeler. Dizinler listeye" - -#~ msgid "find their way onto the list with the `pushd' command; you can get" -#~ msgstr "`pushd' komutuyla eklenir; listeden tek tek geri almak içinse" - -#~ msgid "back up through the list with the `popd' command." -#~ msgstr "`popd' komutu kullanılır." - -#~ msgid "" -#~ "The -l flag specifies that `dirs' should not print shorthand versions" -#~ msgstr "-l seçeneği `dirs'in dizinleri ev dizininize göreli kısayollar" - -#~ msgid "" -#~ "of directories which are relative to your home directory. This means" -#~ msgstr "" -#~ "olarak göstermemesine yol açar. Yani `~/bin' yerine `/homes/bfox/bin'" - -#~ msgid "that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag" -#~ msgstr "gibi bir gösterimle karşılaşabilirsiniz. -v seçeneği `dirs'in" - -#~ msgid "causes `dirs' to print the directory stack with one entry per line," -#~ msgstr "dizin yığıtını dizin adının önüne yığıt konumunu ekleyerek her" - -#~ msgid "" -#~ "prepending the directory name with its position in the stack. The -p" -#~ msgstr "satırda bir girdi göstermesini sağlar. -p seçeneği yığıttaki" - -#~ msgid "flag does the same thing, but the stack position is not prepended." -#~ msgstr "konumu göstermemesi dışında aynı çıktıyı verir." - -#~ msgid "" -#~ "The -c flag clears the directory stack by deleting all of the elements." -#~ msgstr "-c seçeneği tüm girdileri silerek dizin yığıtını boşaltır." - -#~ msgid "" -#~ "+N displays the Nth entry counting from the left of the list shown by" -#~ msgstr "+N dirs seçeneksiz çağrıldığında gösterdiği listenin solundan" - -#~ msgid " dirs when invoked without options, starting with zero." -#~ msgstr " sıfırla başlayarak sayılan N'inci girdiyi gösterir." - -#~ msgid "" -#~ "-N displays the Nth entry counting from the right of the list shown by" -#~ msgstr "-N dirs seçeneksiz çağrıldığında gösterdiği listenin sağından" - -#~ msgid "Adds a directory to the top of the directory stack, or rotates" -#~ msgstr "Dizin yığıtının en üstüne bir dizin ekler, ya da geçerli çalışma" - -#~ msgid "the stack, making the new top of the stack the current working" -#~ msgstr "dizini yığıtın tepesine gelecek şekilde yığıtı döndürür." - -#~ msgid "directory. With no arguments, exchanges the top two directories." -#~ msgstr "Hiç argüman verilmemişse en üstteki iki dizini yer değiştirir." - -#~ msgid "+N Rotates the stack so that the Nth directory (counting" -#~ msgstr "+N (`dirs' tarafından gösterilen listenin solundan saymaya" - -#~ msgid " from the left of the list shown by `dirs', starting with" -#~ msgstr " sıfırla başlandığında) N'inci dizin tepeye gelecek şekilde" - -#~ msgid " zero) is at the top." -#~ msgstr " yığıtı döndürür." - -#~ msgid "-N Rotates the stack so that the Nth directory (counting" -#~ msgstr "-N (`dirs' tarafından gösterilen listenin sağından saymaya" - -#~ msgid " from the right of the list shown by `dirs', starting with" -#~ msgstr " sıfırla başlandığında) N'inci dizin tepeye gelecek şekilde" - -#~ msgid "-n suppress the normal change of directory when adding directories" -#~ msgstr "+n dizinleri yığıta eklerken normal dizin değişikliğini engeller," - -#~ msgid " to the stack, so only the stack is manipulated." -#~ msgstr " böylece sadece yığıt değiştirilmiş olur." - -#~ msgid "dir adds DIR to the directory stack at the top, making it the" -#~ msgstr "dir DİZİNi yeni çalışma dizini yaparak dizin yığıtının" - -#~ msgid " new current working directory." -#~ msgstr " tepesine ekler." - -#~ msgid "You can see the directory stack with the `dirs' command." -#~ msgstr "Dizin yığıtını `dirs' komutuyla görebilirsiniz." - -#~ msgid "Removes entries from the directory stack. With no arguments," -#~ msgstr "Dizin yığıtından girdileri siler. Hiç argüman verilmemişse," - -#~ msgid "removes the top directory from the stack, and cd's to the new" -#~ msgstr "yığıtın en üstündeki dizini yığıttan kaldırır ve" - -#~ msgid "+N removes the Nth entry counting from the left of the list" -#~ msgstr "+N `dirs' tarafından gösterilen listenin solundan saymaya" - -#~ msgid " shown by `dirs', starting with zero. For example: `popd +0'" -#~ msgstr " sıfırla başlandığında N'inci girdiyi siler. Örneğin," - -#~ msgid " removes the first directory, `popd +1' the second." -#~ msgstr " `popd +0' ilk dizini `popd +1' ikincisini siler." - -#~ msgid "-N removes the Nth entry counting from the right of the list" -#~ msgstr "-N `dirs' tarafından gösterilen listenin sağından saymaya" - -#~ msgid " shown by `dirs', starting with zero. For example: `popd -0'" -#~ msgstr " sıfırla başlandığında N'inci girdiyi siler. Örneğin," - -#~ msgid " removes the last directory, `popd -1' the next to last." -#~ msgstr " `popd -0' son dizini `popd -1' sonuncudan öncekini siler." - -#~ msgid "" -#~ "-n suppress the normal change of directory when removing directories" -#~ msgstr "" -#~ "-n dizinleri yığıttan silerken normal dizin değişikliğini engeller," - -#~ msgid " from the stack, so only the stack is manipulated." -#~ msgstr " böylece sadece yığıt değiştirilmiş olur." - -#~ msgid "allocated" -#~ msgstr "ayrılmış" - -#~ msgid "freed" -#~ msgstr "serbest bırakılmış" - -#~ msgid "requesting resize" -#~ msgstr "yeniden boyutlandırma isteniyor" - -#~ msgid "just resized" -#~ msgstr "yeniden boyutlandırıldı" - -#~ msgid "bug: unknown operation" -#~ msgstr "yazılım hatası: unknown operation" - -#~ msgid "malloc: watch alert: %p %s " -#~ msgstr "malloc: yakalama alarmı: %p %s " - -#~ msgid "xrealloc: cannot reallocate %lu bytes (%lu bytes allocated)" -#~ msgstr "xrealloc: %lu bayt yeniden ayrılamıyor (%lu bayt ayrıldı)" - -#~ msgid "xrealloc: cannot allocate %lu bytes" -#~ msgstr "xrealloc: %lu bayt yeniden ayrılamıyor" - -#~ msgid "xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)" -#~ msgstr "xrealloc: %s:%d: %lu bayt yeniden ayrılamıyor (%lu bayt ayrıldı)" - -#~ msgid "" -#~ "Exit from within a FOR, WHILE or UNTIL loop. If N is specified,\n" -#~ " break N levels." -#~ msgstr "" -#~ "\rbreak [N]\n" -#~ " FOR, WHILE veya UNTIL döngülerinden çıkılmasını sağlar. N " -#~ "verilmişse,\n" -#~ " dışa doğru N. döngüden çıkılır. N >= 1 olmalıdır." - -#~ msgid "" -#~ "Run a shell builtin. This is useful when you wish to rename a\n" -#~ " shell builtin to be a function, but need the functionality of the\n" -#~ " builtin within the function itself." -#~ msgstr "" -#~ "\rbuiltin [kabuk-yerleşiği [argümanlar]]\n" -#~ " Bir kabuk yerleşiğini çalıştırır. Bu bir kabuk işlevinin bir " -#~ "kabul\n" -#~ " yerleşiği ile aynı isimde atanması durumunda faydalıdır, fakat " -#~ "işlevin\n" -#~ " içinde yerleşiğin işlevselliğinin sağlanması gerekir." - -#~ msgid "" -#~ "Print the current working directory. With the -P option, pwd prints\n" -#~ " the physical directory, without any symbolic links; the -L option\n" -#~ " makes pwd follow symbolic links." -#~ msgstr "" -#~ "\rpwd [-LP]\n" -#~ " Geçerli çalışma dizinini basar. -P seçeneği ile sembolik bağlar\n" -#~ " olmaksızın fiziksel dizini basar; -L seçeneği ile sembolik bağları " -#~ "izler." - -#~ msgid "Return a successful result." -#~ msgstr "" -#~ "\rtrue\n" -#~ " Başarılı bir sonuç döndürür." - -#~ msgid "" -#~ "Runs COMMAND with ARGS ignoring shell functions. If you have a shell\n" -#~ " function called `ls', and you wish to call the command `ls', you can\n" -#~ " say \"command ls\". If the -p option is given, a default value is " -#~ "used\n" -#~ " for PATH that is guaranteed to find all of the standard utilities. " -#~ "If\n" -#~ " the -V or -v option is given, a string is printed describing " -#~ "COMMAND.\n" -#~ " The -V option produces a more verbose description." -#~ msgstr "" -#~ "\rcommand [-pVv] KOMUT [ARGümanlar ...]\n" -#~ " KOMUT komutunu KOMUT isimli kabuk işlevini yoksayarak " -#~ "ARGümanlarla\n" -#~ " çalıştırır. Örneğin, `ls' isimli bir kabuk işlevi varsa ve siz " -#~ "`ls'\n" -#~ " komutunu çalıştırmak istiyorsanız \"command ls\" " -#~ "diyebilirsiniz.\n" -#~ " -p seçeneği verilmişse, tüm standart uygulamaların bulunmasını " -#~ "garanti\n" -#~ " eden PATH için bir öntanımlı değer kullanılır. -V ya da -v " -#~ "seçeneği\n" -#~ " verilmişse, KOMUTu açıklayan bir dizge basılır. -V seçeneği " -#~ "daha\n" -#~ " ayrıntılı açıklama üretilmesini sağlar. " - -#~ msgid "" -#~ "Declare variables and/or give them attributes. If no NAMEs are\n" -#~ " given, then display the values of variables instead. The -p option\n" -#~ " will display the attributes and values of each NAME.\n" -#~ " \n" -#~ " The flags are:\n" -#~ " \n" -#~ " -a\tto make NAMEs arrays (if supported)\n" -#~ " -f\tto select from among function names only\n" -#~ " -F\tto display function names (and line number and source file name " -#~ "if\n" -#~ " \tdebugging) without definitions\n" -#~ " -i\tto make NAMEs have the `integer' attribute\n" -#~ " -r\tto make NAMEs readonly\n" -#~ " -t\tto make NAMEs have the `trace' attribute\n" -#~ " -x\tto make NAMEs export\n" -#~ " \n" -#~ " Variables with the integer attribute have arithmetic evaluation (see\n" -#~ " `let') done when the variable is assigned to.\n" -#~ " \n" -#~ " When displaying values of variables, -f displays a function's name\n" -#~ " and definition. The -F option restricts the display to function\n" -#~ " name only.\n" -#~ " \n" -#~ " Using `+' instead of `-' turns off the given attribute instead. " -#~ "When\n" -#~ " used in a function, makes NAMEs local, as with the `local' command." -#~ msgstr "" -#~ "\rdeclare [-afFirtx] [-p] [İSİM[=DEĞER] ...]\n" -#~ " Değişkenlerin özellikleri ile bildirilmesini sağlar. Hiçbir İSİM\n" -#~ " verilmezse değişkenleri ve değerlerini listeler. -p seçeneği ile her\n" -#~ " İSİM için değerler ve özellikleri gösterecektir.\n" -#~ "\n" -#~ " Seçenekler:\n" -#~ "\n" -#~ " -a Her İSİM bir dizi değişkenidir(destekleniyorsa)\n" -#~ " -f Sadece işlev isimleri kullanılır.\n" -#~ " -F Tanımları olmaksızın sadece işlev isimleri (ve hata " -#~ "ayıklaması\n" -#~ " yapılıyorsa kaynak dosya isimleri ve satır sayıları) " -#~ "gösterilir\n" -#~ " -i Her İSİMe `integer' özniteliği verir.\n" -#~ " -r İSİMleri salt-okunur yapar.\n" -#~ " -t Her İSİMe `trace' özniteliği verir.\n" -#~ " -x İSİMleri ihraç edilebilir yapar\n" -#~ "\n" -#~ " Tamsayı öznitelikli değişkenlere bir DEĞER atandığında aritmetik\n" -#~ " değerlendirme uygulanır (bkz, `let').\n" -#~ "\n" -#~ " Değişken değerleri gösterilirken, -f bir işlevin ismini ve " -#~ "tanımını\n" -#~ " gösterir. -F seçeneği ile sadece işlev isminin gösterilmesini " -#~ "sağlar.\n" -#~ "\n" -#~ " `-' yerine `+' kullanarak belirtilen öznitelik kapatılabilir.\n" -#~ " Bir işlevde kullanıldığında declare her İSİMi `local' komutu " -#~ "kullanılmış\n" -#~ " gibi yerel yapar." - -#~ msgid "Obsolete. See `declare'." -#~ msgstr "" -#~ "\rtypeset [-afFirtx] [-p] İSİM[=DEĞER] ...\n" -#~ " Geçersiz (eski). `declare'ye bakın." - -#~ msgid "" -#~ "Create a local variable called NAME, and give it VALUE. LOCAL\n" -#~ " can only be used within a function; it makes the variable NAME\n" -#~ " have a visible scope restricted to that function and its children." -#~ msgstr "" -#~ "\rlocal [seçenek] İSİM[=DEĞER] ...\n" -#~ " İSİM isimli bir yerel değişken oluşturulup, ona DEĞER atar.\n" -#~ " local sadece bir işlev içinde kullanılabilir; İSİM değişkeninin\n" -#~ " sadece işlev ve çocuklarının etki alanında görünür olmasını sağlar." - -#~ msgid "" -#~ "Output the ARGs. If -n is specified, the trailing newline is suppressed." -#~ msgstr "" -#~ "\recho [-neE] [ARG ...]\n" -#~ " ARGümanlarını çıktılar. -n belirtilmişse, satırsonu bastırılır." - -#~ msgid "" -#~ "Enable and disable builtin shell commands. This allows\n" -#~ " you to use a disk command which has the same name as a shell\n" -#~ " builtin without specifying a full pathname. If -n is used, the\n" -#~ " NAMEs become disabled; otherwise NAMEs are enabled. For example,\n" -#~ " to use the `test' found in $PATH instead of the shell builtin\n" -#~ " version, type `enable -n test'. On systems supporting dynamic\n" -#~ " loading, the -f option may be used to load new builtins from the\n" -#~ " shared object FILENAME. The -d option will delete a builtin\n" -#~ " previously loaded with -f. If no non-option names are given, or\n" -#~ " the -p option is supplied, a list of builtins is printed. The\n" -#~ " -a option means to print every builtin with an indication of whether\n" -#~ " or not it is enabled. The -s option restricts the output to the " -#~ "POSIX.2\n" -#~ " `special' builtins. The -n option displays a list of all disabled " -#~ "builtins." -#~ msgstr "" -#~ "\renable [-n] [-p] [-f DOSYAİSMİ] [-ads] [İSİM ...]\n" -#~ " Yerleşik kabuk komutlarını etkinleştirir ve kaldırır. Bir " -#~ "kabuk\n" -#~ " yerleşiği ile aynı isme sahip bir disk komutunun tam dosya " -#~ "yolu\n" -#~ " belirtmeksizin kullanılabilmesini mümkün kılar. -n " -#~ "seçeneği\n" -#~ " kullanılmışsa İSİMler kullanımdan kaldırılır; aksi takdirde " -#~ "İSİMler\n" -#~ " etkin kılınır. Örneğin `test' yerleşiği yerine `test' " -#~ "uygulamasının\n" -#~ " yerleşik komut olarak kullanılmasını sağlamak için `enable -n " -#~ "test'\n" -#~ " yazmalısınız. Dinamik yüklemenin desteklendiği sistemlerde, -" -#~ "f\n" -#~ " seçeneği ile yeni bir İSİM yerleşik komutunun DOSYAİSMİ ile " -#~ "belirtilen\n" -#~ " paylaşımlı nesneden yüklenmesi sağlanır. -d seçeneği -f ile " -#~ "yüklenen\n" -#~ " yerleşiği silmek için kullanılır. Hiç seçenek verilmezse ya da -" -#~ "p\n" -#~ " seçeneği verilirse kabuk yerleşiklerinin bir listesi gösterilir. -" -#~ "a\n" -#~ " seçeneği ile her yerleşik etkin olup olmadığı belirtilerek " -#~ "listelenir.\n" -#~ " -s seçeneği ile sadece POSIX'e özel yerleşikleri içerir. -n " -#~ "seçeneği\n" -#~ " bir İSİM belirtilmeksizin kullanılırsa kullanımdan " -#~ "kaldırılmış\n" -#~ " yerleşikleri listeler." - -#~ msgid "" -#~ "Read ARGs as input to the shell and execute the resulting command(s)." -#~ msgstr "" -#~ "\reval [ARG ...]\n" -#~ " Kabuğa girilmiş biçimleriyle ARG'ları okur ve sonuçlanan komutları " -#~ "çalıştır." - -#~ msgid "" -#~ "Exec FILE, replacing this shell with the specified program.\n" -#~ " If FILE is not specified, the redirections take effect in this\n" -#~ " shell. If the first argument is `-l', then place a dash in the\n" -#~ " zeroth arg passed to FILE, as login does. If the `-c' option\n" -#~ " is supplied, FILE is executed with a null environment. The `-a'\n" -#~ " option means to make set argv[0] of the executed process to NAME.\n" -#~ " If the file cannot be executed and the shell is not interactive,\n" -#~ " then the shell exits, unless the shell option `execfail' is set." -#~ msgstr "" -#~ "\rexec [-cl] [-a AD] DOSYA [YÖNLENDİRMELER]]\n" -#~ " DOSYA'yı yeni bir süreç oluşturmadan kabukla değiştirip çalıştırır.\n" -#~ " Eğer DOSYA belirtilmemişse, kabukta YÖNLENDİRMELER etkili olur.\n" -#~ " Eğer ilk argüman -l ise, login'in yaptığı gibi DOSYAya aktarılan\n" -#~ " sıfırıncı argümana bir tire yerleştirilir. -c seçeneği verilmişse,\n" -#~ " DOSYA boş bir ortamda çalıştırılır. -a seçeneği verilirse kabuk,\n" -#~ " DOSYAya ADı 0. argüman (argv[0]) olarak aktarır. Eğer DOSYA\n" -#~ " çalıştırılamazsa ve kabuk etkileşimli değilse, `execfail' kabuk\n" -#~ " değişkeni etkin olmadıkça kabuk çıkar." - -#~ msgid "Logout of a login shell." -#~ msgstr "" -#~ "\rlogout\n" -#~ " Oturum kabuğundan çıkıp oturumu kapatır." - -#~ msgid "" -#~ "For each NAME, the full pathname of the command is determined and\n" -#~ " remembered. If the -p option is supplied, PATHNAME is used as the\n" -#~ " full pathname of NAME, and no path search is performed. The -r\n" -#~ " option causes the shell to forget all remembered locations. The -d\n" -#~ " option causes the shell to forget the remembered location of each " -#~ "NAME.\n" -#~ " If the -t option is supplied the full pathname to which each NAME\n" -#~ " corresponds is printed. If multiple NAME arguments are supplied " -#~ "with\n" -#~ " -t, the NAME is printed before the hashed full pathname. The -l " -#~ "option\n" -#~ " causes output to be displayed in a format that may be reused as " -#~ "input.\n" -#~ " If no arguments are given, information about remembered commands is " -#~ "displayed." -#~ msgstr "" -#~ "\rhash [-lr] [-p DOSYAYOLU] [-dt] [AD]\n" -#~ " AD argümanları olarak belirtilen komutların tam dosya yollarını\n" -#~ " hatırlar, böylece müteakip çağrılarda aranmalarına gerek kalmaz.\n" -#~ " Komutlar $PATH içinde listelenmiş dizinler aranarak bulunur. -p\n" -#~ " seçeneği dosya yolu aramalarını engeller ve ADın konumu olarak\n" -#~ " DOSYAYOLU kullanılır. -r seçeneği hatırlanan tüm konumları kabuğun\n" -#~ " unutmasına sebep olur. -d seçeneği her AD için hatırlanan konumun\n" -#~ " kabuk tarafından unutulmasına sebep olur. -t seçeneği verildiğinde\n" -#~ " her ADa karşılık gelen dosya konumları basılır. -t seçeneği ile çok\n" -#~ " sayıda AD verilirse, AD hatırlanan tam dosya yolundan önce basılır.\n" -#~ " -l seçeneği çıktının girdi olarak tekrar kullanılmasını sağlayacak\n" -#~ " biçimde basılmasını sağlar. Hiç argüman belirtilmezse ya da sadece\n" -#~ " -l seçeneği belirtilirse hatırlanan komutlar hakkında bilgi basılır." - -#~ msgid "" -#~ "Display helpful information about builtin commands. If PATTERN is\n" -#~ " specified, gives detailed help on all commands matching PATTERN,\n" -#~ " otherwise a list of the builtins is printed. The -s option\n" -#~ " restricts the output for each builtin command matching PATTERN to\n" -#~ " a short usage synopsis." -#~ msgstr "" -#~ "\rhelp [-s] [KALIP]\n" -#~ " Yerleşik komutlar hakkında yardım bilgisi gösterir. KALIP " -#~ "belirtilmişse,\n" -#~ " help KALIP ile eşleşen tüm komutlar için yardım bilgisi gösterir, " -#~ "aksi\n" -#~ " takdirde yerleşikler listelenir. -s seçeneği ile yardım bilgisi " -#~ "yerine\n" -#~ " komutun kullanımını gösteren sözdizimini basar." - -#~ msgid "" -#~ "By default, removes each JOBSPEC argument from the table of active jobs.\n" -#~ " If the -h option is given, the job is not removed from the table, but " -#~ "is\n" -#~ " marked so that SIGHUP is not sent to the job if the shell receives a\n" -#~ " SIGHUP. The -a option, when JOBSPEC is not supplied, means to remove " -#~ "all\n" -#~ " jobs from the job table; the -r option means to remove only running " -#~ "jobs." -#~ msgstr "" -#~ "\rdisown [-h] [-ar] [İŞ_BELİRTİMİ ...]\n" -#~ " Seçeneksiz kullanımda her İŞ_BELİRTİMİ etkin işler tablosundan\n" -#~ " kaldırılır. -h seçeneği ile iş tablodan kaldırılmaz ama imlenir\n" -#~ " böylece kabuk bir SIGHUP alırsa bunu işe göndermez. İŞ_BELİRTİMİ\n" -#~ " verilmeden -a seçeneğinin kullanılması durumunda iş tablosundaki\n" -#~ " tüm işler kaldırılır. İŞ_BELİRTİMİ verilmeden -r seçeneğinin\n" -#~ " kullanılması durumunda ise sadece çalışmakta olan işler kaldırılır." - -#~ msgid "" -#~ "One line is read from the standard input, or from file descriptor FD if " -#~ "the\n" -#~ " -u option is supplied, and the first word is assigned to the first " -#~ "NAME,\n" -#~ " the second word to the second NAME, and so on, with leftover words " -#~ "assigned\n" -#~ " to the last NAME. Only the characters found in $IFS are recognized " -#~ "as word\n" -#~ " delimiters. If no NAMEs are supplied, the line read is stored in the " -#~ "REPLY\n" -#~ " variable. If the -r option is given, this signifies `raw' input, " -#~ "and\n" -#~ " backslash escaping is disabled. The -d option causes read to " -#~ "continue\n" -#~ " until the first character of DELIM is read, rather than newline. If " -#~ "the -p\n" -#~ " option is supplied, the string PROMPT is output without a trailing " -#~ "newline\n" -#~ " before attempting to read. If -a is supplied, the words read are " -#~ "assigned\n" -#~ " to sequential indices of ARRAY, starting at zero. If -e is supplied " -#~ "and\n" -#~ " the shell is interactive, readline is used to obtain the line. If -n " -#~ "is\n" -#~ " supplied with a non-zero NCHARS argument, read returns after NCHARS\n" -#~ " characters have been read. The -s option causes input coming from a\n" -#~ " terminal to not be echoed.\n" -#~ " \n" -#~ " The -t option causes read to time out and return failure if a " -#~ "complete line\n" -#~ " of input is not read within TIMEOUT seconds. If the TMOUT variable " -#~ "is set,\n" -#~ " its value is the default timeout. The return code is zero, unless " -#~ "end-of-file\n" -#~ " is encountered, read times out, or an invalid file descriptor is " -#~ "supplied as\n" -#~ " the argument to -u." -#~ msgstr "" -#~ "\rread [-ers] [-u DSYTNT] [-t ZMAŞM] [-p İSTEM] [-a DİZİ]\n" -#~ " [-n KRKSAY] [-d AYRAÇ] [İSİM ...]\n" -#~ " Standart girdiden ya da -u seçeneği ile sağlanan DoSYaTaNıTıcıdan " -#~ "tek\n" -#~ " satır okur ve ilk sözcük ilk İSİMe, ikinci sözcük ikinci İSİMe ve " -#~ "böyle\n" -#~ " giderek, aradaki sözcükler ve ayraçlar son İSİMe kadar atanır. " -#~ "Satırı\n" -#~ " sözcüklere ayırmakta sadece $IFS değişkeninin değerindeki " -#~ "karakterler\n" -#~ " kullanılır. Tersbölü satırın devam ettirilmesi için ve kendinden " -#~ "sonra\n" -#~ " gelen özel karakterlerin yorumlanması için kullanılabilir. Hiç " -#~ "isim\n" -#~ " verilmemişse, satırın tamamı okunur ve REPLY değişkenine atanır. -" -#~ "r\n" -#~ " verildiğinde tersbölü bir önceleme karakteri olarak ele " -#~ "alınmaz,\n" -#~ " dolayısıyla tersbölü-satırsonu çifti satırın alt satırda devam " -#~ "edeceğini\n" -#~ " belirtmekte kullanılamaz. -d ile satırın satırsonu karakterine " -#~ "kadar\n" -#~ " değil AYRAÇ karakterine kadar okunması sağlanır. -p ile " -#~ "girdi\n" -#~ " beklendiğini belirtecek İSTEM dizgesi satırsonu karakteri " -#~ "olmaksızın\n" -#~ " görüntülenir. İstem sadece girdi bir uçbirimden gelecekse " -#~ "gösterilir.\n" -#~ " -a ile sözcükler sırayla DİZİ dizisinin elemanlarına atanır; dizinin " -#~ "ilk\n" -#~ " elemanının indisi 0'dır; atama yapılmadan önce DİZİ dizisinin " -#~ "tüm\n" -#~ " elemanları silinir; diğer İSİM argümanları yoksayılır. -e ile " -#~ "kabuk\n" -#~ " etkileşimliyse, satırı sağlamak için readline kullanılır. -n " -#~ "ile\n" -#~ " satırın okunması KRKSAYıncı karakterde sona erer; satırın kalanı " -#~ "yok\n" -#~ " sayılır. -s ile sessiz kipe girilir, girdi bir uçbirimden " -#~ "geliyorsa\n" -#~ " karakterler yansılanmaz. -t ile satır ZMAŞM saniye sonra " -#~ "hala\n" -#~ " sonlandırılmamışsa read zamanaşımına düşer ve hata döner. " -#~ "$TMOUT\n" -#~ " değişkeni bir değerle atanmışsa değeri öntanımlı zamanaşımı " -#~ "değeri\n" -#~ " olarak ele alınır. Bu seçenek, girdi bir uçbirim ya da " -#~ "boruhattından\n" -#~ " okunmuyorsa etkisizdir. Dosyasonu karakteri (Ctrl-D) " -#~ "saptanmadıkça,\n" -#~ " okuma zamanaşımına düşmedikçe ya da -u seçeneği ile sağlanan\n" -#~ " DoSYaTaNıTıcı geçersiz olmadıkça dönüş durumu sıfırdır." - -#~ msgid "" -#~ "Causes a function to exit with the return value specified by N. If N\n" -#~ " is omitted, the return status is that of the last command." -#~ msgstr "" -#~ "\rreturn [N]\n" -#~ " Bir işlevin N değeri ile dönerek çıkmasına sebep olur. N verilmezse\n" -#~ " son komutun dönüş durumu döner." - -#~ msgid "" -#~ "For each NAME, remove the corresponding variable or function. Given\n" -#~ " the `-v', unset will only act on variables. Given the `-f' flag,\n" -#~ " unset will only act on functions. With neither flag, unset first\n" -#~ " tries to unset a variable, and if that fails, then tries to unset a\n" -#~ " function. Some variables cannot be unset; also see readonly." -#~ msgstr "" -#~ "\runset [-f] [-v] [AD ...]\n" -#~ " ADı belirtilen her işlev ya da değişken kaldırılır. -v verilmişse,\n" -#~ " işlem sadece kabuk değişkenlerine uygulanır. -f verilmişse, işlem\n" -#~ " sadece kabuk işlevlerine uygulanır ve işlev tanımı kaldırılır.\n" -#~ " Hiçbir seçenek verilmemişse, unset önce bir değişkeni kaldırmayı\n" -#~ " dener, başarısız olursa bir işlevi kaldırmayı dener. Salt-okunur\n" -#~ " değişkenler ve işlevler kaldırılamaz." - -#~ msgid "" -#~ "NAMEs are marked for automatic export to the environment of\n" -#~ " subsequently executed commands. If the -f option is given,\n" -#~ " the NAMEs refer to functions. If no NAMEs are given, or if `-p'\n" -#~ " is given, a list of all names that are exported in this shell is\n" -#~ " printed. An argument of `-n' says to remove the export property\n" -#~ " from subsequent NAMEs. An argument of `--' disables further option\n" -#~ " processing." -#~ msgstr "" -#~ "\rexport [-nf] [İSİM[=DEĞER] ...]\n" -#~ "export -p\n" -#~ " Ortamdaki çocuk sürece aktarılacak her İSİM'i imler. -f " -#~ "verilmişse\n" -#~ " İSİM'ler kabuk işlevleridir, aksi takdirde kabuk " -#~ "değişkenleridir.\n" -#~ " -n seçeneği verilirse aktarılacak İSİM'ler artık imlenmez. " -#~ "İSİM\n" -#~ " verilmemişse veya -p seçeneği verilmişse aktarılan İSİM'lerin " -#~ "listesi\n" -#~ " gösterilir. -p seçeneği çıktının girdi olarak tekrar " -#~ "kullanılabilir\n" -#~ " biçimde gösterilmesini sağlar. Bir değişken isminden sonra " -#~ "=DEĞER\n" -#~ " geliyorsa değer değişkenin değeri yapılır. `--' ile seçenek " -#~ "işlemleri\n" -#~ " kapatılır." - -#~ msgid "" -#~ "The given NAMEs are marked readonly and the values of these NAMEs may\n" -#~ " not be changed by subsequent assignment. If the -f option is given,\n" -#~ " then functions corresponding to the NAMEs are so marked. If no\n" -#~ " arguments are given, or if `-p' is given, a list of all readonly " -#~ "names\n" -#~ " is printed. The `-a' option means to treat each NAME as\n" -#~ " an array variable. An argument of `--' disables further option\n" -#~ " processing." -#~ msgstr "" -#~ "\rreadonly [-af] [İSİM[=DEĞER] ...]\n" -#~ "readonly -p\n" -#~ " Her İSİM'i salt-okunur olarak imler. Bu İSİM'lerin değerleri\n" -#~ " müteakip çağrılarda değiştirilemez. -f seçeneği verilirse, her\n" -#~ " İSİM bir kabuk işlevi olarak imlenir. -a seçeneği verilirse, her\n" -#~ " isim bir dizi değişkeni olarak ele alınır. Hiç argüman verilmezse\n" -#~ " veya -p seçeneği verilirse salt-okunur isimlerin hepsi basılır. Bir\n" -#~ " değişken isminden sonra bir =DEĞER geliyorsa DEĞER değişkenin değeri\n" -#~ " yapılır. `--' ile seçenek işlemleri kapatılır." - -#~ msgid "" -#~ "The positional parameters from $N+1 ... are renamed to $1 ... If N is\n" -#~ " not given, it is assumed to be 1." -#~ msgstr "" -#~ "\rshift [N]\n" -#~ " $N+1 ... konumsal parametreleri $1 ... olarak ele alınır.\n" -#~ " N verilmezse 1 kabul edilir." - -#~ msgid "" -#~ "Suspend the execution of this shell until it receives a SIGCONT\n" -#~ " signal. The `-f' if specified says not to complain about this\n" -#~ " being a login shell if it is; just suspend anyway." -#~ msgstr "" -#~ "\rsuspend [-f]\n" -#~ " Bu kabuğun çalışmasını bir SIGCONT sinyali alana kadar askıya alır.\n" -#~ " -f seçeneği kullanıldığında kabuk bir giriş kabuğu olsa bile askıya " -#~ "alınır." - -#~ msgid "" -#~ "Print the accumulated user and system times for processes run from\n" -#~ " the shell." -#~ msgstr "" -#~ "\rtimes\n" -#~ " Kabukta çalışan süreçlerden toplanan kullanıcı ve sistem zamanlarını " -#~ "basar." - -#~ msgid "" -#~ "For each NAME, indicate how it would be interpreted if used as a\n" -#~ " command name.\n" -#~ " \n" -#~ " If the -t option is used, `type' outputs a single word which is one " -#~ "of\n" -#~ " `alias', `keyword', `function', `builtin', `file' or `', if NAME is " -#~ "an\n" -#~ " alias, shell reserved word, shell function, shell builtin, disk " -#~ "file,\n" -#~ " or unfound, respectively.\n" -#~ " \n" -#~ " If the -p flag is used, `type' either returns the name of the disk\n" -#~ " file that would be executed, or nothing if `type -t NAME' would not\n" -#~ " return `file'.\n" -#~ " \n" -#~ " If the -a flag is used, `type' displays all of the places that " -#~ "contain\n" -#~ " an executable named `file'. This includes aliases, builtins, and\n" -#~ " functions, if and only if the -p flag is not also used.\n" -#~ " \n" -#~ " The -f flag suppresses shell function lookup.\n" -#~ " \n" -#~ " The -P flag forces a PATH search for each NAME, even if it is an " -#~ "alias,\n" -#~ " builtin, or function, and returns the name of the disk file that " -#~ "would\n" -#~ " be executed." -#~ msgstr "" -#~ "\rtype [-afptP] AD [AD ...]\n" -#~ " Her ADın bir komut ismi olarak kullanılırsa nasıl yorumlanması\n" -#~ " gerektiğini belirtir.\n" -#~ "\n" -#~ " -t seçeneği verildiğinde, AD bir takma ad ise `alias', bir işlev ise\n" -#~ " `function', bir yerleşik komut ise `builtin', bir disk dosyası ise \n" -#~ " `file' veya bir anahtar sözcük ise `keyword' sözcüğünü basar.\n" -#~ "\n" -#~ " -p seçeneği verildiğinde, AD, `type -t AD' çıktısı file sonucunu\n" -#~ " vermiyorsa hiçbir şey dönmez, aksi takdirde çalıştırılacak disk\n" -#~ " dosyasının ismi basılır.\n" -#~ "\n" -#~ " -a seçeneği verildiğinde, isim çalıştırılabilir dosyasının\n" -#~ " bulunabileceği yerleri basar. Bu, sadece ve sadece -p seçeneği\n" -#~ " kullanılmamışsa takma adları, yerleşik komutları ve işlevleri\n" -#~ " de içerir.\n" -#~ "\n" -#~ " -f seçeneği belirtilmişse type kabuk işlevlerini bulmaya çalışmaz.\n" -#~ "\n" -#~ " -P seçeneği her ADiçin, bir takma ad, yerleşik komut veya işlev " -#~ "olmasa\n" -#~ " bile bir yol araması yapılmasını için zorlar ve çalıştırılabilir " -#~ "disk\n" -#~ " dosyası ismi ile döner." - -#~ msgid "" -#~ "The user file-creation mask is set to MODE. If MODE is omitted, or if\n" -#~ " `-S' is supplied, the current value of the mask is printed. The `-" -#~ "S'\n" -#~ " option makes the output symbolic; otherwise an octal number is " -#~ "output.\n" -#~ " If `-p' is supplied, and MODE is omitted, the output is in a form\n" -#~ " that may be used as input. If MODE begins with a digit, it is\n" -#~ " interpreted as an octal number, otherwise it is a symbolic mode " -#~ "string\n" -#~ " like that accepted by chmod(1)." -#~ msgstr "" -#~ "\rumask [-p] [-S] [KİP]\n" -#~ " Kabuk sürecinin dosya oluşturma maskesini KİP olarak ayarlar.\n" -#~ " -S seçeneği bir KİP olmaksızın verilirse, maske sembolik kipte\n" -#~ " gösterilir. -S seçeneği çıktının sembolik olmasını sağlar, yoksa\n" -#~ " sekizlik değer basılır. -p seçeneği bir KİP olmaksızın verilirse,\n" -#~ " maske, kabuğa girdi olarak verilebilecek biçemde gösterilir. KİP\n" -#~ " bir rakam ile başlıyorsa sekizlik bir sayı olarak yorumlanır;\n" -#~ " rakamla başlamıyorsa, chmod(1) komutundaki gibi bir sembolik kip\n" -#~ " maskesi olarak yorumlanır. Eğer KİP verilmezse, maskenin mevcut\n" -#~ " değeri gösterilir." - -#~ msgid "" -#~ "Wait for the specified process and report its termination status. If\n" -#~ " N is not given, all currently active child processes are waited for,\n" -#~ " and the return code is zero. N is a process ID; if it is not given,\n" -#~ " all child processes of the shell are waited for." -#~ msgstr "" -#~ "\rwait [N]\n" -#~ " Belirtilen süreci bekler ve sonlandırma durumunu raporlar. N\n" -#~ " verilmezse, o an etkin olan tüm süreçler için beklenir ve sıfır\n" -#~ " durumu ile dönülür. N bir süreç kimliğidir; verilmezse kabuğun\n" -#~ " tüm alt süreçleri için beklenir." - -#~ msgid "" -#~ "Create a simple command invoked by NAME which runs COMMANDS.\n" -#~ " Arguments on the command line along with NAME are passed to the\n" -#~ " function as $0 .. $n." -#~ msgstr "" -#~ "\rfunction AD { KOMUTlar ; }\n" -#~ "\tveya\n" -#~ "AD () { KOMUTlar ; }\n" -#~ " ADıyla çağrılarak KOMUTları çalıştıran basit bir komut oluşturur.\n" -#~ " AD ile birlikte verilen komut satırı argümanları işleve $0 .. $N\n" -#~ " olarak aktarılır." - -#~ msgid "" -#~ "Toggle the values of variables controlling optional behavior.\n" -#~ " The -s flag means to enable (set) each OPTNAME; the -u flag\n" -#~ " unsets each OPTNAME. The -q flag suppresses output; the exit\n" -#~ " status indicates whether each OPTNAME is set or unset. The -o\n" -#~ " option restricts the OPTNAMEs to those defined for use with\n" -#~ " `set -o'. With no options, or with the -p option, a list of all\n" -#~ " settable options is displayed, with an indication of whether or\n" -#~ " not each is set." -#~ msgstr "" -#~ "\rshopt [-pqsu] [-o UZUN-SEÇENEK] SÇNKADI [SÇNKADI...]\n" -#~ " İsteğe bağlı kabuk davranışlarını kontrol eden değişken değerlerini " -#~ "açıp\n" -#~ " kapar. -s ile belirtilen her SÇNKADInı etkinleştirir. -u ile " -#~ "belirtilen\n" -#~ " her SÇNKADInı iptal eder. -q ile normal çıktıyı engeller; dönüş " -#~ "durumu\n" -#~ " SÇNKADInın etkin olup olmadığını gösterir. -o ile set yerleşiğinin " -#~ "-o\n" -#~ " seçeneğinde kullanılabilecek SÇNKADI değerlerini sınırlar. Seçeneksiz " -#~ "ya\n" -#~ " da -p seçeneği ile tüm atanabilir seçenekleri etkin olup " -#~ "olmadıklarını\n" -#~ " belirterek listeler." - -#~ msgid "" -#~ "For each NAME, specify how arguments are to be completed.\n" -#~ " If the -p option is supplied, or if no options are supplied, " -#~ "existing\n" -#~ " completion specifications are printed in a way that allows them to " -#~ "be\n" -#~ " reused as input. The -r option removes a completion specification " -#~ "for\n" -#~ " each NAME, or, if no NAMEs are supplied, all completion " -#~ "specifications." -#~ msgstr "" -#~ "\rcomplete [-abcdefgjksuv] [-pr] [-o SEÇENEK] [-A EYLEM] [-G KALIP]\n" -#~ " [-W SÖZLİST] [-P ÖNEK] [-S SONEK] [-X SÜZGEÇ] [-F İŞLEV]\n" -#~ " [-C KOMUT] [AD ...]\n" -#~ " Her AD için argümanların nasıl tamamlanmaları gerektiği belirtilir.\n" -#~ " -p seçeneği verilirse veya hiç seçenek verilmezse, mevcut tamamlama\n" -#~ " belirtimleri girdi olarak yeniden kullanılabilir şekilde basılır.\n" -#~ " -r seçeneği her AD için tamamlama belirtimini kaldırır,\n" -#~ " hiç AD belirtilmezse tümü kaldırılır." diff --git a/po/zh_TW.gmo b/po/zh_TW.gmo index c9e58a044fb1e7b2e0e080b95d8ea291d00b808b..fff6dfcbb73500a2f706dae9e785cddb6d4ba958 100644 GIT binary patch delta 26978 zcma)?2Yi%88t~tDDH;?(iUkl}=}1BqR8X1}gCYpn8%wf*m1H;WZYZ`5J=CB9mfl2) zbSViCKu^!gd3tx&J3UKwliYFkJN5L=@BhrqyV(f$ec$_I@}HS^$}`VA^UTb<9Nn3= zaZ`in$4%<4uz1FKEUOhf)Wou`sAE~TbdX%jdcLP+T?Jo&yt2-~>)|i3J-oh`Wi^0a zcoEEn_2HwiHJk;T!OgG@JOVF)@51Jm6}A3BB#n$Zy)Elv*bqvAHimtnG&IVjb72$G zv*8tRC2Rx_K?lABMSwVL3eUhxp>?%owFH;J&XR=P>EF7aNPjYxKpD|%upj&aN=IG# zXo0Rb90#R=hhQgI0^7pluo?UqiYC8>B4FdbmW2#fH|W5Lup^u;q<`yKBHiKJhW0f| zHC9i<5wIKY?}ws^#ZWrj1uubbLeX3tUIxF1GSbG^Y5~%rXksLkdJmZNOc-rU#tI@L z={6`8UxLlyCr~Q<3yOf3U#Igk4IhM}p#qozi%k9zC>l5orTuDnIsCUtH$%N*3my8Q z|4WGsBSTboKfDZv;FWL@l!o@eF7S0I8u$*jfK8b<(LgsSf((Pw-d#{eoDXGSbD#sa zKxy|yCEb|@W8g$>~n*aNPGG9{;BOZbz?zw`z@vYVg? zFd0gFk3ligVw2torQPSEL`34(pa}9Q6b<|YWrWQJ=#IO?D@fk}MRoT=F``GIjAV;> zUj}8W-ZlC42kQ5&plGlcYz^;&vRtE&5|M@$Lb1{Vuoa9$8JTC0o|@M10*f+G$`6FN z2`dN696to5!AGHJY9W*nu7XUvwGXy~)ll*q4pv4Rwb~PrhWo-eEe?SPr~80Wvz$OVMV5X|1G?bbe)m9Tw|C7Abvc{8t&_^eAX=5^mN`8l2 z43Lig7^D;4rx)N&sdv{j%i2l%&rC;1%8i~u-%%pt9-~uUlpu@f^Y=#luAAsMH z?l>E7M#C-VSk^Iydj3Mo+Cct`D=ljp9Zig}_DO%Znhxmj4{I#zYtrwowX8|Je|4Q@ zeM7p(MwTq^+ihb0cN1B?*|OfFqv20u>7-k4x2*FhxMByRh3nzFum$25!LMNh_{g)` zSm(k|7{LZ8MjPFyxdw{$ABF?rtMCnY{(fx(f7;Lb7i<4J8B($C0ln5O>G^DHg+ z`xmfiDl~ji8&?DlrQmEhkN2;>uBU4BY0FxU1mhv*V^#mjvZgaN{oc{Wckn}42m67m z;Ts>}<|*g<)Uy6WJB>fHtRE049{t?1mJ<0mVOcU2dDVLETKpYLC*ArC(?Z4l|Iqv% ziZKoN!m?h5i@wCL;MlMAlD@^)Q%eET9=pv78 zwP=h-t7}{LQ1M7J+nRvxE^cmHLrI5PQV^CxWVK#_G6lO@+15lx zN_s+Z>BFEb+k4<>1kHh0kv`Ja78{CMpAr$zb_R+qG-#*U4)!5^J(P+eIE3_X+S}GU zsJdPUo&NJxwl$3W)?IBi@@yy$Xc`p%Fc&_~NS8wqtVuW9x(jxMSJ1x|B_a~7hf?uX z!*^jBBdmZ65nz39-C*ZFw#6)2*T9{;zp}4x_>F$Ha^-)8jLiBTqFBq*-&WgmQz)*t z1MC2Y!uIrUJw&7vEQTUssVVRV6pefhFNY1Tx7DW89?EJN2c^LPyb>;ft>8W=uKP5U zRa6DV<^B^&KNn)@J>bFEh>xBFWm%ns7sFRz8~6ci4}XLrVCw;TWWAth>_#Z{ zZi5}+Jy1HD346nxP}=_pO1qa1w5`6d%RoD-A`{3cAtMI6!LEaBbp*QyN&_pP7~N}7 zH1bC%BR&H~fQts}a;=~YXbijo24M!=17#q8h9cNcPy}r^B&z3rDYoVy<0Vo3G!GUlc>%WqSsJ1SCRg9$#lm?^ z3KZ*J2gkra!p^Y$t$ON4L9wv_Y)t>wDk7qiovniWuN;Aa>W$iPC zgF1gO6kE6piogX>1l$6}Q=W!mq<@F9dKypAf_8*51-*pyZw(_N65j>IaXbn|^5>wk zQi!UoGf+Bc>D2-ZgCf9vP(0`iDCIUnnYuUOHSlLB?Or`mPuUbGQ?da@<>d1g5gEZx zhMlwYGP@m$CZ2?{JP$(|$q6XS_K#4E@mna%s(H5Vs2dc)d{C@^7L(htLK~P38#_$O!9ql&n--I$H9~;)s(VFT8rNdibnawR3$`mx4tW|y; z93=0d2(n~yRC~DnroeBZc&zuKxXO>AY$E@H4s77pBkKyqHg1Bljvs_l?ja~P^aPap ztD$J{02B?q1I0GJfTDqh(TDViGoVO%1FR1xLUFx*s2YS0>D5q{-!Uk*@F|pKc)=8H z0|Ved(%Dc1+6o<524zY6zDx|4`_tXwEo|AgTh=#V}FrNQ^0%-I4i7sd%?ZKL$ne zC!th40HvefK$)7qnEdZe{`n8<@@=7%8v>=h`%F3trQT}Tl>V(lL_`CxLNS^TP5K+? zkgglj6*@p^a1azh?=ks7D090I$`o#g4m=J;Q-6Wd{FBw-b>$3PO== zEfhhH7`|zkfTDr_LNx^uz3e(dNe_i0$i0Tsp>(_gN_*R(IJ8qxR>emV*1wFzF3=S( zfwBqphEg#L%KHK+Q?L*^@L4G9{0%6p=0kWj`~^x!S5MWNx&?}0IZ(7TwX`@L{>g)lJfb_C_qgT? zD9d^)9AdMYpiI>l(I>QL@*s#b)Er8~ZH!>)P#nzlus@z@1e8@WdyZ{Qr@}@k4PUlY zFT*wvv$1Z4C*kwOwq+ww^hw*AOL}IBZFvy%ycM=}r{p(Sg>SBl!&zfn$9b`2gKf>D zqs%SjQ{b)bY$8ae(;8E{ZV+@w*CV5{LZ#+*A=fTOOAAuv$z~}HI1npMAX2O1aVHK-_5qJ2K zWm{p&Km4^`rg1oca{q#}c;Dwo-G14>(Iok&VDxS(Z1Z@mAFu(djz>xM<9Qw{osR09 z?@?CW;{uO$nAiS`Jl20`s109^jv~+%7kjMT@V%xUizRK%xx{1ri*i5mxpX1vuP*bb z)AOS(JnG2y669EEHEropU%~QPd7{=>GKRF)9j|EPQP#Z?_CFb#gw)?=+kH9vRo zSf}W4WxB^=7OXqEd#qe^-M6R5nn=e_5A;~uF|zuDJeEUx?=X*YSigs2Q=dRl{h{Hc zY4_yts7I;%DfBCIv>J-T*lqYC#8|Blp{#-`m`>WcMb{ez#o>&H;z@I%)Sm}$hU+04 zrd17xk-p0T|4sZJb;IcZrGq=*AeakfTiydjr5`{U`9%-uIUfPrlb&X{4oU|v z7=8|=qk2>HRCR}KNZ$oB;B*+3-EA8Yk^Fsl6+ACj&si@h>Dys%SO}%!At);T42p`s zgfeC4=jnPKVIR_&P&$knZZz*t!5-v)mdE`Ij9AA1A%GVvWgwpW<<()U4Gja5)qkIt8WP&+vTMCCbNm zvGQI}HjP10R6H7rQ9cf3PM5%Oa37S0>qN9hnnMw&CmaBWLYd0hupfL5$^iZWMI&_! zbo+gv2o}vEB1X0pijf_IGIw8^bcdK8TmUv|YWgIRD3%!AEf<5?bc(&+$ukzNhOx=%xC?>|shLD$*Z72gBJ z7M_CXa2J$%@6Se3@zod1(GuPWrNaU!a~XwVgbQINJOyQ>X>)Z4!=Ws*0w@jdha$*F zh8NA#^#?+kvIx8du7%Q1Rg{RR@*61IpP^Mxe>;h*%5%6i~$oelQ(ua(Xpfu2Qksi@lcrEE=hOa?U zt!J@jZzvkbhUsvz;ZZ2{5>Px`n9I!pD* zrxTR*I|RzAcnnGdo1u*CMJRLm4HVDzGZZ7dpjh)dC{sEK%1LTI6v4N^&h&4+PDD;J z-$GGolVu*uhPM*rNf4rBZ~?NOCdhg2M)d}F4gYQ8+}zaW(+&N7CccSx-xFpK$X3rU{LM3Q!5f4JP5BHs#l*R5THATY$1e3B z4l1ND&y_TkP97^MYTZKORWj?teuTEF2sc{d7f|R)(pSLNgr5k*NcZO*m!RY`llVeX z*#z0`)(}n+#9rk2j`yPoKH_oMiSU+s!}!l5Ax}iZ;+vxNXA|#1M;U}`$@?2Ye1JR+ ziI0Nvk@05&msyLiD{5YEhVJtOk&8^aH>^inBMBdoe_RTQ{__d9nL^j|@&gmUAIhEm zZo(3RTtM9CQWIYb#nsj!^e4m#SJOs!!p+1F68Lthp0D|P2SJSaWAeCg>-p!#oP1;@ z{NAK~g0l&i(AZ6cfs`9hm_ptiZ~~O4H}Ae6J(_Siae3Mh-%nUU{5JAriC4>ul;<(- zpH@3l;lC6XkJKLyA#V`z#|Y;U{|>f=&+u*_ae4krn5AMkC)l2Me}j*jy!E8z5%=ys z36s~2w(63(j_*&_5h5MPkmolP7*3oI+Ugl&_*+spm@<5EwR#YW$!kg2O8C7gcLThF za?8nEM!b;lEa6JRjpUCc|6;;g!ZoDj{~uYsh%}n@ki$tOl(O>t zMCE{9VEt()XG?l2$r(4w-a)(!)sq5%QVPnq%_!kQRS`3F*t>Sb{uZ z!p{Ugs9D`*PG2G1N#bp|nb4E)JJRxm2+at53{y{I_%yLRD4UHuC4@8tkmo&9?j-S* zCcc-rW8zY#D?#>|(bS3ByckCKM&9r=HVxfHTz0YEgy#uO$nQcqFJT<%Dnbk5@{HH8 zrjs5(_zmegl>a;A7ntO853!dCHL7ngzy$rw!hBf@e*3(`&88gMCL0{Qn4n(^*yD9`2a?}T3n z^9WrD@{FZS7x)?JLBtKoLQnhNPoeL>dse7uGiwW*JU1l)@7UD+&LU1W!NS zO(MKX_>}O8%02tf3f`qYK@wNd-&f>6DC_?&B58y^WbQMCZ!%m>;U5T}n{*rE?I|Zu zN5Tohdy?SUNSV1hs{S74Z!eR67Va=@R2hCs-i!2a-EJ~=8@|blOcQ^N_|_N4 zkx($#2~PEeoXBKfvQF6XPWAe8y%TeNP9&&a=|;VQY$rby%<_f9zOZV{A91omK5xVq zPIrP%zzNR?M|^o<>UblLH#avp%?TG|O*Va%41T{=bX;0Nn0D!JLO7Tc>6GkNi>jJ+ zoQ#`licR*0vj0~xZyLQgSp}hxFAy<r7dtC)}3Om`}h}Q}GCgmZT z+lwz+yIR&{Uv@#RKQM`U{$R)-nc;Mv5b$UDI(2cYM{ zId`%q`*X9=i`$T28Y-E1ThkW#zCgD08TL;KcysksqVp+fk&+3wHIGhtxWHGyh-Ct^ znA~h9CnzT354)pto6J31wxkA}JnsyL2BtXv0A`fu%L|5PxE1qiRm55`NhUDN+=MSm znU#PRX+RK>)tDVjH!I}Nj|4+Wx${+H`Tl(0xhD2uGpdO*FjHi4#*7}9c^C48!`?|g zM~~H&EA%V5ytx?>e;$T&_C&c=!nLY|BVIIYl z&Qx!1fl`QC==r`Ze~v$j?Yge8zm!xmgykg~)9tBxVdIU`oe9d_q&wp5CKLpe|McO1 zm{@Z3LeR~)UPs)Rc0K7z7&o7WqS@{XsT>HpDP%&12*b#op?&jcgbPjchkdo%IM<+3 z#w6p%aRgYS-5e(~M-7i|w00eTG^s0^4>%b)Qo$Pz7vxbv6;^-l5Y_3qz!rP<=yi35 ztQHmvPEXty?%g*%%aVTVPNEgn&CTFPLv3(&Z1X8F{Med4iOMZICy22&I%-ZGR67%8hsg>~3a|*X`#b&|$Lr|VN(o4j6O`>wOX8)u+#nWP(^ym_ z^-UKmpbU~t_D*FbVE>^>%uXPpwW-w{o*XR5WlZ=XA0yB%ITXy36~I6##AJo@y;;7L zu?+JvLE68lb>a_94Nmc8r#q8GRZ(;`&9B!Q#{>~9;G2$LQtMJ?l`J(Dt;VU|kYAk$ z+6TOO7^y$tkFbXPkH|hES)v2P$qu6E0E^r=-5TBTg`++F?_se}=9%5?x*C zh9>Wnb;2|lJ%oG@7x=|?&YBseMU;rI;y{F`a^f*__bcgfO-6YLJb3H~nWU&Wj=9a~ z^9m*r3bC`%fD;U8Z#FIHO!LkNtM#oklH(7BId|b+ycmxj6H2YIT`VhUac=u8iZI(! zuI#eX$Ka4TA~Ao`bim9Kb@PJROfX(V$>MI5+C8K=o03!Cw2X#*;)vZ&lDbGPnWU7g zhXU5SnpUF)aafL5^=s6eouWZ)MXJ_W9eABi{W?io*+J*l!J~#Ht&H_ z#*W4LXh)~Fn;ta^&-RC9)rX@}xu#`V^q5?217VL~TNXbc9sSBmDXyy5vQkmHu~hWL ztFvY4DGn~%*D1$akQ+(yZX=Ap4{%K2$S^~Bc3(L5OFg^A$aKzuOefZ57Nk~+oHfD) z`T4niyaXc_E77~Z^2{?Rjti2VMRdRofOd3mi1?E8+W`8G#ixR6< z51CW7XhmC`Y(;9szCf0o_cFD#_^Yg~Ye(gj`dW^mF;JD-IBV+CB+3C@tzN}p7 z-klloIN9o;BihV!ypc%A&!~LH5wJYP;Pk50=ONV_6NdHZ>p)E%)tDZtNGNBlWJgM= zC8z&+Ni-)7Pe(Ud%nFAS4r3hqlMM!)oPvPP7Jsh=%=YD|oq(g9>Ymf-@S0Zscimus zDeIh{TM*_*grk$KKFVJ2ZWn23=KiYAuhYaSXZt1=Oqzt{C2vNP()69onUoux$ayX~ zBz8n9sB-{oNcnq4?26yt38GSU*itg5rEv}75F1V2?K0DtQPs8>Iy*bppql1o^P@hS zo!I%glx&(6O(%t7w~eqL%Z?_yrP?xO%V5v*P4x#+M7?kp*PNK$$i5_cu2$8GlWk2V zUUi}Vj5a4}b5!64Ra3d2D#4_9)7Vb)yi?^ z|Ed-z#~>$XIk*0=nz|xa&05{5!;Or60=Dm)7OuBx(lKIZ^J)sw-ELP+GLM z_;QC4i**ZdrTZVli?ApA&M`PHbjiUfBRKcim;yC6wwrSgj%!`5o;g7>XG$*h=k~Bz z?1ZkeFDVBmMl&I!lM^WjahMI}XiudaM$HtY_|-eqQ6(xLJdy@$=B%c?Ijph-Cg=HN z_wmVaunQ)nGe-g?ikfcD#GRPbygU|m7l*;gwGO*e3sg!Zrvsm==TfXPswX5xE_E)e zS<&uV=DwD#J!dCn-eF_kYQ?fmri@~O%F}zSk%&!ayclK1q)zUEPgX(5cd>loVxACc zq7UQs2TKM&n#t{>VaeM2JJ{V~8|&Fl>H2zh2Ro{6nlqfqeCtYXH){N2WSFKBOpKIJWKTTDs)mF*l54KFhKZJ1gdBKv5 zvetd&Vw^IJULM1m6lesSGgN7lare(f<==%$Ivt{o3q}#jN0@!0(L^ZA&HHs z<-@)s2Lg2+HIu2ENlO#64YK`v16%=>HZjne=GaHrvT8mI4vYSO^vYDW_2uP9X0&yU zIqYO)n6ag_jpvnOOt!ctzKVDQQ`82hilVX1vpb8PHAZ@qrD3jEPUnI!-*>cLYP!@b zYFaR)cP;foEs_**WKFpe>C0zQjq=$=pM>dmeKyXAo>g1Q6^WP4(Dz!`%#>;8 zVppQ2NI*YIu$+rt%Ru3Pa{_xN0J9Ne{eYTy* z7VStGRisvlOmik{QL-%3Kt2eRzEIzOr(vCkf)iuwo7qE0s!xf0{LxE}Q(NXx_alRR zl4MQRe51@nAWj`hKpIFIjPhmav2UB%?VG533I)+72UaN>>(bo5CaMlqGOCbIysK)1 zuS5~Ha*96U3kCHW)m6RD+3m9cW%H4>BS$j#_Ny&f%?c+3s_`*dzHZj`98uA`QflhC zG^z8{wz>EPCNVi8L5_SkkZLlAvO8oB4eM_W$u%okYMN^r6A`77`bHqlM1oOwQK3&3 zs8#|)k7)7nJ$%bm>PYc+uE_bW9iXY2UZe;210x+uKgr3I??6ffa+Rv1B9lJ!NWGN) zMEzPEOn`WDUoi_Sx#!$5c&utl4r9tcOGDD=Ec zx|J?&X8*I7lQEV09JiyuE$wP$~<&mz0a1u5C3S&QsZ=ef0xJY|3DaogUv!k**C&ouM2C>^)b z&TQxAY&mLobK~zGweNA`eUBw2iiM8ZBi#H`$Ly=!_>afzmL^`>;<(+lL8?Ttk-xPw zYGpk3Tf1MajN`wxuj!I9i0YYT)tlxfidI&x-5X!9q;k!is+6~}MlajLYt_H!WxHFg zj3qDIU2A2Wc)7NkVt;?xF0WN$_bc|mS{YxxV)w6=(c@KnUNl9Hs%^!IP34~#&ax^_ z?M*B{YD}i;;QYj~W!0;f#fy&cQkjeT6JNI@K6hr-jsuB3TdOy3NG#n>3C31=@Ob6n z0~KWpzbs#zC|*`^a&3J764O|`cwv0*5$3vb*CJ6v+s%tBcPyfyZn1b@5Tzt@+uq;>0Ol#!nO_3b%h*Ui5k4V)^j@dEt^T%NL}|s9IvHzsaq!_E>!H8eKzv zTln8KylL^Z8{(S|BxfnHpfIs+febxbbi{3UVp?_KnyMWOD|hXSpV}2KUK!uIJ-)x# zeVvu2M^|xlQDReB{M78kv&$2ki)1+K3Z-bR(%EShWrgv=MO8`dZc+87dGTY#dWiDlr5>UyQBIm(`$qSBmg&yo#rxv>cE#sD zlk7}OT3bNB^cde7T|@DTg~%+LCV!qa6p$6@vB!Zim%uxGN~C!6c<;W+8>`g8}+A*BR{Qj@8;^6C6%Q+ zt2VD^E>wHbq|6Ve>EAE0fW*vw6({D$i(*M>D^4t-!OFvPQW^}U#g`mRte%xvDifA0 znmTi?4#Q?p@lEq8S1wE)aMa0&)Qp66Ks(NjV{Uh7xO!y?3y8_7-2N1E5MQ|$G2A8# zOp|)`R29zE^OGXq)U>MAYZE2AYZO>Z(bH7}(XFCstvF_=_B4)h#ddW}(fG_0m4|1s zMrs!wYi3-lB)+j!#3_ABT*;=x@y#3Xj$)TOUoDyH6{U=E9D{U+G~Vsbt)0?^DpOIm zt$O_ivv`&3rG1@D`X+jbed6Uy4+}i8cs?ele~v_x@dfj%3s=jc+`Evb6RY;=0yTbV z<$m(xh2>wCudQ5gG_iM~`6*N9iVQX0>GQ&wB#h&UKed=d@>fmPX;eBanins6rfTz! z%B{zezDGMc*X_=XD=(&#w4%mYIcKx`epc0@XA5+j0_;U zxT0)HeAYqyfZnATeSD_q15@G$OVyG3Bc86Xyn6Nt6rz5kbduJdv^sjOUcI&A*gVYD z`ISYYh>U#6RKG#Gb<^im&)g8-vVpg%my803))<*KV=O6Yu+{Tp&p&8)iH$C{(=V)E zyszrnt(B|GE0=F9ec@I69Z$4s`_qXH%giW>XEPbKwk!9Gb=8(#W;3duxl~r<@*Nc? z=f(HW7sK1T2EoL9Rejwe^5{luHFv$~Xiu!7?70C>e9xT{i7%cTU$!fLa&Fb0Rm>?Z zC5t8YEun$$KC4?}?EaKe@Pi{g$fIjcWW=PsT6@T&tPHozKNSy4}7^%tRZd zmMk%ULA+?E_<^0r*tDyP=9_--yDJyf5;U=|II(+k{K@io@h(;p4Y@zNB-YJl*cD}q zv^ctj#PXBzqW$jPuU3H5J`m-EuH>sI+ar>xQK(ONj$S2VMGTpBjQz|l5_PiA7p;$P zUld=wk}6e&Seofc^s{<}YOiwHyrjC>!(>lEfVt1q7GQK#{p9G-J7eRA3Vwey9m~?* zr@b@7G}Sn2;p*JP;`tm!D|ej2`*YkBk2(7UR*;lVEWIb~R<1abs)?#?+9VSPW+kHQ z7MM9xhEZFO%67!w&MCV3HO$prt(mErhXwJuJ1ckWlqH|26oX?b-z+SXd(RK9>NG*I%<+?>!4GW)@n^;k#O)16HP*Gxm7#7m1R+Gy@ zL|uNeYW_j@cSF~nWTv&9Q8Oy`RkS~TYA&-9FJFPOYg$(gA{_1LNy5kW!?%hZUmst# zq;kiB0mfRW#O{DJ$=-JCVfvG@rHZARH9|zuzN^|ZM^BFdUB zESH7VgLd4}a&%1W*>biGxm|H8;GFV*Gjp>Dm4!1-G4iOga;yAd+2p}t4 zDMO6^WNVu$wCtt)!kIk_#uL)9TIpIHBl+lx{|bt!i^5VM)e%)b(7+&zR|m!( zRIYf&Z6GsE&wTRQDo4U~yW{Kj>uRWoI+aJu6AMmNltmZfgBduT(y(?7s-?8F__D=_ z_G{G@%PA9Mb?p=_3?<=OU0_y%h$Lg@yeaJ zra3;lFe{aZwqT&utDoj3<8(GgzI7tc=|I?2RUome2ow7;19t6Mlw zyCXd^Is7hrQu_=Jo?`3DDQVlIVLcU$p2>1s;=acAklZ(Jri}Eqd|%bxLbpt$c5lgH zsh=MiROhNwC#sHa?NWO{1^SMmDwsFE-%+C_i zp*mc-t4;U7Ay6%GY+qkH^>K+h@>}6U{6;2XpKXY&sl-mR6lG1R%aZ!lkn*Z&-5V2H zHUAK!l0i@6opGV;Z%>!-4a$6lm~||+xtXVTY+%T4)Y4rF#^=Hnz&FV`P+?x>|rT`BffiQO!Ec6s*_qSut{SE`SsEP5u3PqHS& z7|;3^$7G1vsxL3q^Oq!6?iar@>zM4IbDz<=r6Lyqj&Jq#zAB%~u8f@tBaqIh{NL@n zL&4*O(kizf=kCT?x|YW|r(D!K=U$=4lP11U+KO&9Tg6%9O6hkfX3oIM6VE+`7S2|I z-W`xae^ACO^uDII_+LrK=^h0sDHu|8m}wg`Q9m9g&Goaw<@}4UidF68EVzU_RORXu zct6g^+%{8%FeRUfvEEYiWxG+Gr3{5_qE@-6`mF61jTUk7!D{x&6BX2vj+C5kUx%r%93Rm$s3^E&pzgLY?iGjEi7VnI8lQ=59~ zG;9ZV3_blK}YCaKhpHiRc6Niph z9phGOzL!$cZCsn6K7;9&S(Hu>n%65`M3&iAW7eXj_M`JF_eM8YmabuhOqgofEEn}D z*tIM5LWEYHLw#8Z)J%yiH6^<0v23nHX??XpoPdc8SD>lkuPic;i$9&RA zoozimpZvC&5ujW1Gr*GL#@TM0$(Cg7r?dN$U>AqkLcOMMS6U|c*LRMP zYHX3DLdaG`mVbuCQ;JGG=>PfNbLRQ?`rp^Mo#sg3QBQzi==<8;&|pI{-phDGr<7QnD1W2#^wEQPhO zDmKM3*bhq^6Ee>bDM-dFEP)H$1*@IAQ3aiH>DyS6bm3%UDq|HahK(_Z9Z?M!ff1O6 zWpM^p#N}8McVS)XH@QR_kx{yy?NL`uBmFF@qRprlf8sogD&QBaffZAXiNY3G3J0S` zay+Vmi;ybJ2N=X3Fa`_PN9s38MCxKM=S(b3db{%|#*@xPjYO#iw!&mAL%Jtwc@KBC3IJy8L6#tEdsWhjCcE zp}nsuY6NvKLK@8%zs0!|55iHHp zPrzu@l=Q%gIK|~JL-p)SR0D3J%FEZpF4D57bPZIwX(1wNaaUABhM`7a3Rb|SsETv2 zGVVuJ@EvLqg*CN3sf{|Hj+&}|E`N^mZPWQLD5eR>Bdep1p{g znpIdBccLo(40%kLA5nAs3#!1dblc#Ps2&E9*)$C>8b_n@7a)r^WY!Z=!Mib+5)Wcq z+|<$z*&l7J1>4%|%42KKnChqspK52%kH-f|&q9^A2n*ud&W-qIeq*+wre@2-bf!>< zo)CF}j46*B!^6wW#t~Go8~0#rAEqc^%#FUr^d+6IzcHt2;J^XQKlzO^7_ofD%p1ar zCV#_lV;-ZT-lL4E!}+aQ>?rQL_^dH&DL-x;qr`PzW3v#Ev*Rh06BTKU8WO}}SPQc_ z-wiz;TP zF)xsxf|{CLyNr328uwxs(mnSZGmfcPjaqC$x>cAFjK#&6dc+t8!yG?m%t^|baGZw` z4d`~#m^s+tYhyI>--OQCxte~~n3u_zb&l1|jg`+^2cZ_vJNPNyxxnJWJ(uhhmHW;P zaS)qQaWY<}g3K#4hBPSex_{4|x6>c@gzsT7a7BEzU16Mf*RO zh;FP{&@;`sV0a8=H9<9OXM|@S!=tE* zYnHMNYK?l5j&_FdMUVM^iHHg+SH?4pmZ^bjne-B6U4a!n{}Fu@3vvD`Y9xNa5*Sv= z^B<|Du{!B`SPdV?8W=(~Y_&VT6EzZ-usrpfKZ(R+smh+eeOh1@()}kP0 z4Y-fG@WCkCqjYRS`U#A~*HJw=glgDzR6`@8?VP7MGq4u<^PD?SQ*}8yWFv*Dc_v6k z0w!WtjK(Q0y&6^U8K0J)Y&xTQI2E;)wxFi$V^oJOIK3D<0@0}R{X#_a$Q+MB zT!@;(98^QTM-5?x8lG8+8&M7GQPcBZLdT(|@J-a3_|&COpsu@v8ktJ9>^5$RD!(JD z!J!F6wAj{TX*}e-gj!s`qlT_%Z965YsBP66BXAJvzHwL{=U^HOy-}-sHg>^%SQAUtwNuvwHB$Ys zIL<(g$YPAbEvSxug*~uL0@qQ$8BRn)_%Bos=3^=@$DViw)u4n#+ww=T9_bKP#jU7! z$djlMyMb!hAE+m0RFd6YDX7KS88xDPF{Fw!iKvA$PzAh$DYy+E#vf7pyJ@nu3+5+1 z5Vd`WqPA})>b_a1hV8|0yo7pkUUS|?P4!>N?0-E#>eTc6Pp}O1S2JpneTswdvdeFm zVi)U3)Q`?f&c&z(tVG?n8-sWbwFd5?I$Ey2otk)TOS)No_P>T?1{qp3*{BiNiW<7T zsF68|YVq%=M{slldtWou^_@{u(i_#&dDs${pyvD{#$qtlF5XV4-8CRYB#Fp4)Pv$3 zRE39~H&Kf(qM;r7mZ%=}L=F9D9EIai4ZepiDDsH2S**^;_{MYQz?x zo)?=?Lw^!$X#Za)qD2#tZcikl) z^>jVz{-dad{e+sznAY~)G6B_rbmz#{?0;3X)LpO}^=v-k{0%i!Rod7J8{;L9*Jsoe z#I>_S-VM`9XP_Fg3iX6L;Le{%J+OX8Jt==j{e~24AM*Ug72V$UtR-r33_z{+ai|NY zpcYX!s(|-ULwFE1LO-I`MtBE10x_t!>DH)*_QV1>9@VhP=$98F5+vh2)T%v!S_^-o zwqdo7b`3m=%}7r`HRwYO;xW{e{DN95#X8yi6lYJ=^NjH=YSm{uw_uR;QRKRixk*HG zmcNS~`kKyW7)gFlRLjSq3Z9R;el=>fA9VS5Q9rvSy4oH`p+>Ym>b}0H`!Zd60an%i zUq?hY9z<1i7Bx4&y8PnZY$vATzV1ezV}c=ei$_Zmr!fwmP;4zZbzUp zR-k^kqSNSeRZ)e>5i!T z{)IX}rziVgL%M>DAnrpwST3Ws%`L2lDRJ66QH5NXFc;M`O(kuXwJt2XS`>2lD~?MzCb+#r;yM2Ycts9 z+!rb}%QLH}C~dZ9Zgb)i&c(0h+LjNVZ(mBEM*T)i#1AR(RXjwx+d}4^f~#cnp~Bm1 z>s>c514je(&p`=CUcOf$dOp-QC$AHI*Y= zItz!Ao`mf~4ABon=F-xX{XAgk>Hg2zx0rjtGh?{0#38#qr{QGs7orL*f0&Wu_dAHa zNQa;D%pK-@0IDI6f5Y!Tw^}Q?Gc2b!2kC z_snl9;0OJQgs~uP z|LU2=w7l;f&+MVT-|w^kFK}ZHOZh3rHajd}22ydpk^vLMA*ct_4AkOTjOy8lh=4x= zV^LEu5%oNH*|`Q;i)Iftp!~xaOFDmPdtVaj!PT%drE1!dXopdxpTuZ<0W~t~PzCNqU4I^HVMMKf|LkvqYDjO?hz>(tKLz!o zu^iR&GuROCAWI=+l6V|xyEH_-O0{-AfqLMKbIw7{_1mbP=3pXzhV}6emrmes?u|(g zMBTp(b^d+l4O~Y$IyS%y4*UNIkp^Vk!z4_Jvx{sfMv~4%_4HL#19oEq9z#_Sh!2=_ zEQk8J?S&elX{es>z`A$~t6_9qYg>$@eltQ5oQtYxGit8RVpYtS5b$4{tD$<_4dZbt z*2XQUDLe1dUSh!iwu{9$^82Gkcn)fWm!N*Gw_->)9w(B5zoIIvlVt6HIzJrM<2l#_ z_uw0N4>#e`WP5$5dbU9$P(NmiP!(@Qm9rOB@nzI&ejp_f^7nD=6k9f5P^MV)Vs>S-_3{h6r!KMl1T-b3Agx<30~8G#0N8`eY( zX&Pz~WuR_+3m?Fvs8xO%^;>WSHN?N77G-p*oyuhFPWlnl_Fjt`k)5apeT_}=hY%6X zWvzw*|4*Zjp?dHNYRK22DmaU3Siv;A$m*dMS%1{jEpX{W7$j{P*%6FHb)Y?}fn!l4 zGaa?&Ld%IXC-O1&#r%zJ3!ij8i|Xl2R09@aSKNm&Sh|TVs4=QR{ZMP@71Zw7f~xoc zsv~DmBN5)zKOZvDM6^g6qFUA(HAGLK)@mHw(|3Wo5rnwt2N&TiD5e?Dv_$1Clwfr`!;BelPRB$!abxEkz+Z;8N zPoW+xGf*AbfVyr6w#0)jzgWwF{|#9QHIjWWRF}wNA`y51Rq?l|2hB~?`KVTQ=(?fy zZ6@mcYpCnLK<(=bSP<{wTNvIt;J@du!!e}yU=k*`v5R|f8}`43Jev&dg8isR@om&v zh;3_EZ!6S|nW*zCQ4RPORbjDqnoHh@P>Zk{w!>bio~}TZe-YELSbMiC^!}x7HkJ&z z235cr)SMOV5HKAv1y#{x)DX``J<%4U7S%4)wms+aZ=tR$)6p7@8o3126ZA3ET38q& zqMoit4dH&&kbj5z`Hkpg=ePlCEp&J3r%?@@jk<4(OCLi`$sH_?g*#g-p&As2x-Sj& z016Etq6fip=f|j_x{S3j;$hpsCKx2$6H{<3s(=ls9^JrHtlh=>Bx*#LIuD~p;6BD; zOjqBK=}ts9K9739Y{vq48P${Ps0Q9g4Rx@ay)GTK28N?X>UGqc&tBB_J%`#AWxCt@ z8=*SZ7d4f$v8eX{LLyp(E1f4$6?r{ufsv?|H%9H}L0AP}LJjG9^iZE?*HA}vfEN;F zy5oJ^N?1dv#yK5)ATj?$G|c}|4o6!u3le^_N&i2`E6OK<;c?&}^>7NYj^yb$fqYH* zhel8b4>`jc^#97OG@pO|!NxKb2}MbbQhosv6F7O)o;P8{OOdDJHlaD`R|%2C^}Y87 zp(|-knLbwjeoQ9)8{xb%T^YrQK1BG4{CL9O4_?7TW->W^XZS~o^CEskPH)0d;=BB_ z{HX=ck=DArp0i2AH;!q?_lKE9#zQ3Zqw@D- zwo5d^>73_d$Gk^;DC*#Q)Qly}CbY6y<{wyy3bnUiA)j6B|NjNEi030zCH*!2i=ah# zRrA6Zvj0uKmyGqqwHQCZ7%mPYK8-Mepa+wVCpq_`jr#vhkU!=7|NEX6Vex`~6IhW{RXxoiE~qYNkX5&1L8i-f9#rKC%cAMb9e zNt%yaQ-SnI5gZ!@unJ)c5 zILBSP0E=>cAq>62KN~p7AGl05A@5MbQV6dQ;$7xy&KD*8)1?m)PbCy~=|^x0X&p~s z2|_t4s!909X8Zqx(v!q1+Ur8*I*DN<{=jgX=`Q8rLu|3jTSYvVz&nK5jM3zWV+VqM z=?0PhkkE?o7ik@3iR;*5@xS{bT%OIMoBVOYe_Lsc{C5SDOa*N?`xv1-aUDb4P5X(T zA?UaMKjiJkHwi(m>yKv%`kDSoa-R1M|2Jb3>F)@S5~2v_2<23!hB-eM9VXF@crj&i zY{Kq@rwOqxPx(*iAC6uYlgzok1YU+sPh3KNBV0&$lhBED4bFXlEePr4J%y`KM@YY9 zypo&sIFU@gAI$$?37zE_K>WPBIKgK5|Ncl`v`h1@;U7hCKl$kxM)-x?0;HF^>ylhK zN?sLtoc~|ITS!6#`S}Pph`&vEfsl8+ zOyqe&I^mhW<&*Tk1!WxqUwr=2RM%+!o7%KF2WGBz=JppaD&=A9>61GeX`mgvcKX&gFvQ#1~^B!Z>$BUGm1cYn1gRagPunjCI%CCSHs1GeHNRk*1-GSHr2~)xqI; z{clG`U0umBlQ7AT*?;PB;nyymjk`$a9XE;BrSMW@G$8%}@gu~~xNF|Wo1`OMx*zd- zE?%8$AL9GdTqg5fLK@*|Lf%n~3v@id4f6-a#x$ z9^b0|F_63{!fsu!ZE=b4PZInw%j_Xuns@~9@t8xn##T1sME zLP|nH_ME|9nIekEB{bxcw0f!8n+JQBv$qfN(z6!~@nXuh$rzcDIUs9PW?HbzsEk3w zvVuwR_2QFrN)GixUV*DK*IwTFL3Z{qufB`toEYYvPtHr^yzcdXF#n3Bxf^F^*Ieh- zveBGA>%30kdDpzV*}E0UD{0MEZ)#qALpNiTues705~X!~48WUMIq;2f`}m zY-|-M?&ZvH9|#o5IovytP~^X-hXs}uu*KzU7!{~h%*8KF3=|2t_#e*)Vv7AQTj$nx diff --git a/po/zh_TW.po b/po/zh_TW.po index 01d18837..5a80097f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -11,16 +11,16 @@ msgstr "" "Project-Id-Version: bash 5.1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-11-28 12:51-0500\n" -"PO-Revision-Date: 2021-05-09 20:48+0800\n" +"PO-Revision-Date: 2022-05-10 16:30+0800\n" "Last-Translator: Yi-Jyun Pan \n" "Language-Team: Chinese (traditional) \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Bugs: Report translation errors to the Language-Team address.\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.4.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.0.1\n" #: arrayfunc.c:66 msgid "bad array subscript" @@ -353,7 +353,7 @@ msgstr "警告:-C 選項可能無法按預期工作" #: builtins/complete.def:838 msgid "not currently executing completion function" -msgstr "目前未執行補完功能" +msgstr "目前未執行自動完成功能" #: builtins/declare.def:134 msgid "can only be used in a function" @@ -910,12 +910,12 @@ msgstr "%s 是一個函數\n" #: builtins/type.def:299 #, c-format msgid "%s is a special shell builtin\n" -msgstr "%s 是特別的 shell 內建物件\n" +msgstr "%s 是特別的 shell 內建命令\n" #: builtins/type.def:301 #, c-format msgid "%s is a shell builtin\n" -msgstr "%s 是 shell 內建物件\n" +msgstr "%s 是 shell 內建命令\n" #: builtins/type.def:323 builtins/type.def:408 #, c-format @@ -1596,7 +1596,7 @@ msgstr "尋找符合的「)」時遇到了未預期的檔案結束符" #: pcomplete.c:1132 #, c-format msgid "completion: function `%s' not found" -msgstr "補完: 未找到函數「%s」" +msgstr "自動完成: 未找到函數「%s」" #: pcomplete.c:1722 #, c-format @@ -1606,7 +1606,7 @@ msgstr "programmable_completion:%s:可能重試迴圈" #: pcomplib.c:182 #, c-format msgid "progcomp_insert: %s: NULL COMPSPEC" -msgstr "progcomp_insert: %s: 空的補完規格" +msgstr "progcomp_insert: %s: 空的自動完成規格" #: print_cmd.c:302 #, c-format @@ -2232,7 +2232,7 @@ msgstr "continue [n]" #: builtins.c:60 msgid "builtin [shell-builtin [arg ...]]" -msgstr "builtin [shell 內建物件 [參數 …]]" +msgstr "builtin [shell 內建命令 [參數 …]]" #: builtins.c:63 msgid "caller [expr]" @@ -2668,14 +2668,14 @@ msgid "" " Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is\n" " not a shell builtin." msgstr "" -"執行 shell 內建物件。\n" +"執行 shell 內建命令。\n" " \n" -" 帶 <參數> 執行 而不做指令查詢\n" -" 在希望以 shell 函數的形式來重新實現 shell 內建物件,\n" -" 但需要在函數之內執行該 shell 內建物件的情況下有用處。\n" +" 帶 <參數> 執行 而不做指令查詢\n" +" 在希望以 shell 函數的形式來重新實現 shell 內建命令,\n" +" 但需要在函數之內執行該 shell 內建命令的情況下有用處。\n" " \n" " 結束狀態:\n" -" 以 的結束狀態為準,或者如果 不是一個 shell 內建物件時\n" +" 以 的結束狀態為準,或者如果 不是一個 shell 內建命令時\n" " 回傳 false。" #: builtins.c:369 @@ -2864,43 +2864,6 @@ msgstr "" " 回傳 COMMAND 指令的回傳狀態,或者當找不到 COMMAND 指令時失敗。" #: builtins.c:490 -#, fuzzy -#| msgid "" -#| "Set variable values and attributes.\n" -#| " \n" -#| " Declare variables and give them attributes. If no NAMEs are given,\n" -#| " display the attributes and values of all variables.\n" -#| " \n" -#| " Options:\n" -#| " -f\trestrict action or display to function names and definitions\n" -#| " -F\trestrict display to function names only (plus line number and\n" -#| " \t\tsource file when debugging)\n" -#| " -g\tcreate global variables when used in a shell function; otherwise\n" -#| " \t\tignored\n" -#| " -p\tdisplay the attributes and value of each NAME\n" -#| " \n" -#| " Options which set attributes:\n" -#| " -a\tto make NAMEs indexed arrays (if supported)\n" -#| " -A\tto make NAMEs associative arrays (if supported)\n" -#| " -i\tto make NAMEs have the `integer' attribute\n" -#| " -l\tto convert the value of each NAME to lower case on assignment\n" -#| " -n\tmake NAME a reference to the variable named by its value\n" -#| " -r\tto make NAMEs readonly\n" -#| " -t\tto make NAMEs have the `trace' attribute\n" -#| " -u\tto convert the value of each NAME to upper case on assignment\n" -#| " -x\tto make NAMEs export\n" -#| " \n" -#| " Using `+' instead of `-' turns off the given attribute.\n" -#| " \n" -#| " Variables with the integer attribute have arithmetic evaluation (see\n" -#| " the `let' command) performed when the variable is assigned a value.\n" -#| " \n" -#| " When used in a function, `declare' makes NAMEs local, as with the `local'\n" -#| " command. The `-g' option suppresses this behavior.\n" -#| " \n" -#| " Exit Status:\n" -#| " Returns success unless an invalid option is supplied or a variable\n" -#| " assignment error occurs." msgid "" "Set variable values and attributes.\n" " \n" @@ -2942,19 +2905,21 @@ msgid "" msgstr "" "設定變數值和屬性。\n" " \n" -" 規範變數並且賦予它們屬性。如果沒用指定名稱,\n" -" 則顯示所有變數的屬性和值。\n" +" 宣告變數並賦予其屬性。若未指定 <名稱>,\n" +" 則顯示所有變數的屬性和數值。\n" " \n" " 選項:\n" " -f\t限制動作或顯示為只有函數名稱和定義\n" -" -F\t限制僅顯示函數名稱 (以及列號和原始檔名於偵錯時)\n" -" -g\t當用於 shell 函數內時建立全域變數 ; 否則忽略\n" +" -F\t限制僅顯示函數名稱(偵錯時另包含列號和原始檔名)\n" +" -g\t用於 shell 函數時建立全域變數 ; 否則忽略\n" +" -I\t如果建立的是本地變數,則繼承上個作用域中,\n" +" \t\t同名變數的屬性及數值。\n" " -p\t顯示每個 <名稱> 變數的屬性和值\n" " \n" " 設定屬性的選項:\n" " -a\t使 <名稱> 成為索引陣列 (如果支援)\n" " -A\t使 <名稱> 成為關聯陣列 (如果支援)\n" -" -i\t使 <名稱> 帶有「integer」(整數)屬性\n" +" -i\t使 <名稱> 帶有「integer」(整數)屬性\n" " -l\t將每個 <名稱> 的值在指派時轉為小寫\n" " -n\t使 <名稱> 成為指向一個以其值為名稱的變數引用\n" " -r\t將 <名稱> 變為唯讀\n" @@ -2962,16 +2927,15 @@ msgstr "" " -u\t將每個 <名稱> 的值在指派時轉為大寫\n" " -x\t將 <名稱> 匯出\n" " \n" -" 用「+」代替「-」會關閉指定選項。\n" +" 用「+」代替「-」會關閉指定屬性。\n" " \n" -" 帶有整數屬性的變數在指派時將使用算術求值(見\n" -" 「let」指令)\n" +" 帶有整數屬性的變數,會在指派時執行算術求值(見「let」指令)\n" " \n" " 在函數中使用時,「declare」使 <名稱> 成為本機變數,和「local」\n" -" 指令一致。「-g」選項壓制這個行為\n" +" 指令一致。「-g」選項會壓制本行為\n" " \n" " 結束狀態:\n" -" 回傳成功除非使用了無效選項或者發生錯誤。" +" 回傳成功,除非使用了無效選項,或者發生錯誤。" #: builtins.c:532 msgid "" @@ -3122,7 +3086,7 @@ msgid "" " Exit Status:\n" " Returns success unless NAME is not a shell builtin or an error occurs." msgstr "" -"啟用和停用 shell 內建物件。\n" +"啟用和停用 shell 內建命令。\n" " \n" " 啟用和停用 shell 的內建指令。停用使您能夠執行一個和內建\n" " 指令同名磁碟上的指令,而無須使用完整的路徑名。\n" @@ -3140,11 +3104,11 @@ msgstr "" " \n" " 不帶選項時,每一個 <名稱> 內建都被啟用。\n" " \n" -" 如果要使用 $PATH 中找到的「test」而不是 shell 內建物件的版本,\n" +" 如果要使用 $PATH 中找到的「test」而不是 shell 內建命令的版本,\n" " 輸入「enable -n test」。\n" " \n" " 結束狀態:\n" -" 回傳成功,除非 <名稱> 不是一個 shell 內建物件或者有錯誤發生。" +" 回傳成功,除非 <名稱> 不是一個 shell 內建命令或者有錯誤發生。" #: builtins.c:640 msgid "" @@ -3165,45 +3129,6 @@ msgstr "" " 以指令的狀態結束,或者在指令為空的情況下回傳成功。" #: builtins.c:652 -#, fuzzy -#| msgid "" -#| "Parse option arguments.\n" -#| " \n" -#| " Getopts is used by shell procedures to parse positional parameters\n" -#| " as options.\n" -#| " \n" -#| " OPTSTRING contains the option letters to be recognized; if a letter\n" -#| " is followed by a colon, the option is expected to have an argument,\n" -#| " which should be separated from it by white space.\n" -#| " \n" -#| " Each time it is invoked, getopts will place the next option in the\n" -#| " shell variable $name, initializing name if it does not exist, and\n" -#| " the index of the next argument to be processed into the shell\n" -#| " variable OPTIND. OPTIND is initialized to 1 each time the shell or\n" -#| " a shell script is invoked. When an option requires an argument,\n" -#| " getopts places that argument into the shell variable OPTARG.\n" -#| " \n" -#| " getopts reports errors in one of two ways. If the first character\n" -#| " of OPTSTRING is a colon, getopts uses silent error reporting. In\n" -#| " this mode, no error messages are printed. If an invalid option is\n" -#| " seen, getopts places the option character found into OPTARG. If a\n" -#| " required argument is not found, getopts places a ':' into NAME and\n" -#| " sets OPTARG to the option character found. If getopts is not in\n" -#| " silent mode, and an invalid option is seen, getopts places '?' into\n" -#| " NAME and unsets OPTARG. If a required argument is not found, a '?'\n" -#| " is placed in NAME, OPTARG is unset, and a diagnostic message is\n" -#| " printed.\n" -#| " \n" -#| " If the shell variable OPTERR has the value 0, getopts disables the\n" -#| " printing of error messages, even if the first character of\n" -#| " OPTSTRING is not a colon. OPTERR has the value 1 by default.\n" -#| " \n" -#| " Getopts normally parses the positional parameters ($0 - $9), but if\n" -#| " more arguments are given, they are parsed instead.\n" -#| " \n" -#| " Exit Status:\n" -#| " Returns success if an option is found; fails if the end of options is\n" -#| " encountered or an error occurs." msgid "" "Parse option arguments.\n" " \n" @@ -3245,14 +3170,12 @@ msgid "" msgstr "" "解析選項參數。\n" " \n" -" Getopts 被 shell 過程用於解析可定位的參數做為選項。\n" +" Getopts 被 shell 過程用來將可定位的參數解析為選項。\n" " \n" +" <選項字串> 字串包含待識別的選項字母。如果一個字母後面跟\n" +" 著分號,則該選項需要一個參數,這個參數應利用空格與選項分開。\n" " \n" -" <選項字串> 字串包含待識別的選項字母;如果一個字母後面跟\n" -" 著分號,則該選項需要一個參數,而該參數應用空格與選項分開。\n" -" \n" -" \n" -" 每次啟動時,getopts 會將下一個選項放到 shell 變數 $name\n" +" 每次呼叫時,getopts 會將下一個選項放到 shell 變數 $name\n" " 中,如果 name 變數不存在則先將其初始化,而下一個待處\n" " 理的參數序號放入 shell 變數 OPTIND 中。OPTIND 變數在每\n" " 次 shell 或者 shell 指令稿啟動時都被初始化為 1。當一個選項要\n" @@ -3260,26 +3183,24 @@ msgstr "" " 中。\n" " \n" " getopts 有兩種通報錯誤的方法。如果 <選項字串> 變數的第\n" -" 一個字元是冒號,getopts 使用沉默錯誤通報。在這種模式\n" -" 下,不會印發生錯誤誤訊息。如果看到了一個無效的選項,\n" -" getopts 將找到的選項字元放至 OPTARG 變數中。如果一個必\n" -" 須的選項沒有找到,getopts 放一個「:」到 <名稱> 變數中並且設\n" -" 置 OPTARG 變數為找到的選項字元。如果 getopts 不在沉默模\n" -" 式中,並且遇到了一個無效的選項,getopts 放置一個「?」到 <名稱> \n" -" 變數中並且取消設定 OPTARG 變數。如果必須的選項沒有找到,\n" -" 一個「?」會被放入 <名稱> 變數中,OPTARG 將被取消設定,並且會\n" -" 印出一個診斷資訊。\n" +" 一個字元是冒號,getopts 進入靜默錯誤回報模式。在這種模式\n" +" 下,不會輸出錯誤訊息。若看到了無效選項,getopts 將找到的\n" +" 選項字元放至 OPTARG 變數中。如果找不到必要引數,getopts\n" +" 會放一個「:」到 <名稱> 變數,並將 OPTARG 設為找到的選項字元\n" +" 。如果 getopts 不在靜默模式中,並且遇到了一個無效的選項,\n" +" getopts 會放置一個「?」到 <名稱> 變數,並取消設定 OPTARG。\n" +" 如果找不到必要引數,則會在 NAME 放置「?」、取消設定 OPTARG,\n" +" 並且會輸出診斷資訊。\n" " \n" -" 如果 shell 變數 OPTERR 的值為 0,getopts 停用\n" -" 錯誤資訊的印出,即使 <選項字串> 變數的第一個字元不是一\n" -" 個冒號。OPTERR 的預設值為 1。\n" +" 如果 shell 變數 OPTERR 的值為 0,getopts 停止輸出錯誤訊息,\n" +" 即使 <選項字串> 變數的第一個字元不是冒號。OPTERR 的預設值為 1。\n" " \n" -" Getopts 通常解析可定位的參數($0 - $9),不過如果提供了\n" -" 更多的參數,它們反而會被解析。\n" +" Getopts 通常解析可定位的參數($0 - $9),不過如果提供了\n" +" 更多的參數,會改解析這些引數。\n" " \n" " 結束狀態:\n" -" 如果一個選項被找到則回傳成功;如果遇到了選項的結尾或者\n" -" 有錯誤發生則回傳失敗。" +" 找到選項則回傳成功;如果選項提早結束,或者有錯誤發生,\n" +" 則回傳失敗。" #: builtins.c:694 msgid "" @@ -3678,7 +3599,7 @@ msgstr "" " -l\t列出訊號名稱;如果參數後跟「-l」則被假設為訊號編號,\n" " \t而相應的訊號名稱會被列出\n" " \n" -" Kill 成為 shell 內建物件有兩個理由:它允許使用工作編號而不是行程識別碼,\n" +" Kill 成為 shell 內建命令有兩個理由:它允許使用工作編號而不是行程識別碼,\n" " 並且在可以建立的行程數上限達到時允許行程被砍除。\n" " \n" " 結束狀態:\n" @@ -4474,7 +4395,7 @@ msgstr "" " \t不回傳「file」時,不回傳任何值。\n" " -t\t回傳下列詞中的任何一個「alias」、「keyword」、\n" " \t「function」、「builtin」、「file」或者「」,如果 <名稱> 是相應的\n" -" \t一個別名、shell 保留字、shell 函數、shell 內建物件、\n" +" \t一個別名、shell 保留字、shell 函數、shell 內建命令、\n" " \t磁碟檔案或沒有找到。\n" " \n" " 參數:\n" @@ -4484,52 +4405,6 @@ msgstr "" " 如果所有的 <名稱> 指令都找到則回傳成功;任何找不到則失敗。" #: builtins.c:1431 -#, fuzzy -#| msgid "" -#| "Modify shell resource limits.\n" -#| " \n" -#| " Provides control over the resources available to the shell and processes\n" -#| " it creates, on systems that allow such control.\n" -#| " \n" -#| " Options:\n" -#| " -S\tuse the `soft' resource limit\n" -#| " -H\tuse the `hard' resource limit\n" -#| " -a\tall current limits are reported\n" -#| " -b\tthe socket buffer size\n" -#| " -c\tthe maximum size of core files created\n" -#| " -d\tthe maximum size of a process's data segment\n" -#| " -e\tthe maximum scheduling priority (`nice')\n" -#| " -f\tthe maximum size of files written by the shell and its children\n" -#| " -i\tthe maximum number of pending signals\n" -#| " -k\tthe maximum number of kqueues allocated for this process\n" -#| " -l\tthe maximum size a process may lock into memory\n" -#| " -m\tthe maximum resident set size\n" -#| " -n\tthe maximum number of open file descriptors\n" -#| " -p\tthe pipe buffer size\n" -#| " -q\tthe maximum number of bytes in POSIX message queues\n" -#| " -r\tthe maximum real-time scheduling priority\n" -#| " -s\tthe maximum stack size\n" -#| " -t\tthe maximum amount of cpu time in seconds\n" -#| " -u\tthe maximum number of user processes\n" -#| " -v\tthe size of virtual memory\n" -#| " -x\tthe maximum number of file locks\n" -#| " -P\tthe maximum number of pseudoterminals\n" -#| " -T\tthe maximum number of threads\n" -#| " \n" -#| " Not all options are available on all platforms.\n" -#| " \n" -#| " If LIMIT is given, it is the new value of the specified resource; the\n" -#| " special LIMIT values `soft', `hard', and `unlimited' stand for the\n" -#| " current soft limit, the current hard limit, and no limit, respectively.\n" -#| " Otherwise, the current value of the specified resource is printed. If\n" -#| " no option is given, then -f is assumed.\n" -#| " \n" -#| " Values are in 1024-byte increments, except for -t, which is in seconds,\n" -#| " -p, which is in increments of 512 bytes, and -u, which is an unscaled\n" -#| " number of processes.\n" -#| " \n" -#| " Exit Status:\n" -#| " Returns success unless an invalid option is supplied or an error occurs." msgid "" "Modify shell resource limits.\n" " \n" @@ -4579,42 +4454,43 @@ msgid "" msgstr "" "修改 shell 資源限制。\n" " \n" -" 在允許此類控制的系統上,提供對於 shell 及其建立的行程所可用的\n" -" 資源的控制。\n" +" 在允許此類控制的系統上,提供對 shell 及其建立的行程,\n" +" 可用資源的控制。\n" " \n" " 選項:\n" -" -S\t使用軟 (「soft」) 資源限制\n" -" -H\t使用硬 (「hard」) 資源限制\n" -" -a\t所有目前限制都被通報\n" -" -b\t通訊端快取尺寸\n" -" -c\t建立核心檔案的最大尺寸\n" -" -d\t一個行程的資料區最大尺寸\n" -" -e\t最高的排程優先順序 (「nice」)\n" -" -f\t有 shell 及其子行程可以寫入的最大檔案尺寸\n" -" -i\t最多可以暫停的訊號數\n" -" -k\t為這個進程所分配的最大 kqueues 數量\n" -" -l\t一個行程可以鎖定的最大記憶體尺寸\n" -" -m\t最大的記憶體進駐尺寸\n" -" -n\t最多開啟的檔案描述符個數\n" -" -p\t管道緩衝區尺寸\n" -" -q\tPOSIX 資訊佇列的最大位元組數\n" +" -S\t使用彈性(「soft」)資源限制\n" +" -H\t使用固定(「hard」)資源限制\n" +" -a\t回報目前的所有限制\n" +" -b\t通訊端快取大小\n" +" -c\t建立之核心檔案的最大大小\n" +" -d\t一個行程資料區的最大大小\n" +" -e\t最高的排程優先順序(「nice」)\n" +" -f\tshell 及其子行程可寫入的最大檔案大小\n" +" -i\t最多可以暫停的信號數\n" +" -k\t為本行程分配之最大 kqueues 數量\n" +" -l\t一個行程可能鎖定的最大記憶體尺寸\n" +" -m\t最大的常駐記憶體大小\n" +" -n\t最多可開啟之檔案描述元個數\n" +" -p\t管道緩衝區大小\n" +" -q\tPOSIX 訊息佇列的最大位元組數\n" " -r\t即時排程的最大優先順序\n" " -s\t最大堆疊尺寸\n" -" -P\t偽終端的最大數量\n" -" -t\t最大的 CPU 時間,以秒為單位\n" +" -t\t最多可用的 CPU 時間,以秒為單位\n" " -u\t最大使用者行程數\n" " -v\t虛擬記憶體尺寸\n" " -x\t最大的檔案鎖數量\n" +" -P\t最大可開啟的偽終端數量\n" +" -R\t一個即時執行緒在堵塞前可執行的最長時間\n" " -T\t最大執行緒數量\n" " \n" " 並非所有選項在所有系統上可用。\n" " \n" -" 如果提供了 LIMIT 變數,則它為指定資源的新值;特別的 LIMIT 值為\n" -" 「soft」、「hard」和「unlimited」,分別表示目前的軟限制,硬限制和無限制。\n" -" 否則印出指定資源的目前限制值,不帶選項則假定為 -f\n" +" 如果有指定 LIMIT,則這個變數是指定資源的新數值;特殊 LIMIT 數值\n" +" 「soft」、「hard」和「unlimited」,分別表示目前的彈性限制、固定限制和\n" +" 無限制。若未指定,則輸出指定資源的目前限制值,不傳入選項則假定為 -f\n" " \n" -" 取值都是 1024 位元組為單位,除了 -t 以秒為單位,-p 以 512 位元組遞增,\n" -" -u 為無尺度的行程數量。\n" +" 取值都是 1024 位元組為單位,除了 -t 以秒為單位、-p 以 512 位元組遞增、\n" +" -u 為無單位的行程數量。\n" " \n" " 結束狀態:\n" " 回傳成功,除非使用了無效的選項或者錯誤發生。" @@ -4652,25 +4528,6 @@ msgstr "" " 回傳成功,除非使用了無效的 MODE 模式或者選項。" #: builtins.c:1502 -#, fuzzy -#| msgid "" -#| "Wait for job completion and return exit status.\n" -#| " \n" -#| " Waits for each process identified by an ID, which may be a process ID or a\n" -#| " job specification, and reports its termination status. If ID is not\n" -#| " given, waits for all currently active child processes, and the return\n" -#| " status is zero. If ID is a job specification, waits for all processes\n" -#| " in that job's pipeline.\n" -#| " \n" -#| " If the -n option is supplied, waits for the next job to terminate and\n" -#| " returns its exit status.\n" -#| " \n" -#| " If the -f option is supplied, and job control is enabled, waits for the\n" -#| " specified ID to terminate, instead of waiting for it to change status.\n" -#| " \n" -#| " Exit Status:\n" -#| " Returns the status of the last ID; fails if ID is invalid or an invalid\n" -#| " option is given." msgid "" "Wait for job completion and return exit status.\n" " \n" @@ -4699,18 +4556,25 @@ msgid "" msgstr "" "等待工作完成並回傳結束狀態。\n" " \n" -" 等待以 ID 編號識別的行程,其中 ID 可以是行程編號或者工作規格,\n" -" 並通報它的終止狀態。如果 ID 沒有給出,則等待所有的目前活躍子\n" -" 行程,並且回傳狀態為零。如果 ID 是工作規格,等待工作管道中的\n" +" 等待以 ID 編號識別的行程-其中 ID 可以是行程編號或者工作規格—\n" +" 並回報其終止狀態。若未指定 ID,則等待所有的目前活躍子行程,\n" +" 並設定回傳狀態為 0。如果 ID 是工作規格,則等待工作管線中的\n" " 所有行程。\n" " \n" -" 若指定了 -n 選項,等待下一個工作完成並回傳其狀態。\n" +" 若指定了 -n 選項,則等待 ID 清單中的單一個工作;若未指定,則\n" +" 等待下一個工作完成,並回傳其結束狀態。\n" " \n" -" 如果指定了 -f 選項且啟用工作管理,則等待指定 ID 終止,而非\n" -" 等到其變更狀態。\n" +" 如果指定了 -p 選項,則會將選項引數中命名的 VAR 變數,指定\n" +" 為回傳結束狀態之工作的行程或工作識別子。這個變數在指定前,\n" +" 會先進行 unset。這個僅在指定 -n 選項時有幫助。\n" +"\n" +" 如果指定了 -f 選項且有啟用工作管理,則等待指定 ID 終止,\n" +" 而非等待其變更狀態。\n" " \n" " 結束狀態:\n" -" 回傳最後一個 ID 行程的狀態;如果使用了無效的 ID 或者選項則失敗。" +" 回傳最後一個 ID 行程的狀態;如果 ID 或指定之選項無效;\n" +" 或有指定 -n,shell 卻沒有要不等待 (unwaited) 的子行程,\n" +" 則回傳失敗。" #: builtins.c:1533 msgid "" @@ -5398,31 +5262,6 @@ msgstr "" " 回傳成功,除非使用了無效的選項或者發生寫入或指派錯誤。" #: builtins.c:1971 -#, fuzzy -#| msgid "" -#| "Specify how arguments are to be completed by Readline.\n" -#| " \n" -#| " For each NAME, specify how arguments are to be completed. If no options\n" -#| " are supplied, existing completion specifications are printed in a way that\n" -#| " allows them to be reused as input.\n" -#| " \n" -#| " Options:\n" -#| " -p\tprint existing completion specifications in a reusable format\n" -#| " -r\tremove a completion specification for each NAME, or, if no\n" -#| " \t\tNAMEs are supplied, all completion specifications\n" -#| " -D\tapply the completions and actions as the default for commands\n" -#| " \t\twithout any specific completion defined\n" -#| " -E\tapply the completions and actions to \"empty\" commands --\n" -#| " \t\tcompletion attempted on a blank line\n" -#| " -I\tapply the completions and actions to the initial (usually the\n" -#| " \t\tcommand) word\n" -#| " \n" -#| " When completion is attempted, the actions are applied in the order the\n" -#| " uppercase-letter options are listed above. If multiple options are supplied,\n" -#| " the -D option takes precedence over -E, and both take precedence over -I.\n" -#| " \n" -#| " Exit Status:\n" -#| " Returns success unless an invalid option is supplied or an error occurs." msgid "" "Specify how arguments are to be completed by Readline.\n" " \n" @@ -5448,20 +5287,20 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -"規範 readline 如何完成讀取參數。\n" +"指定 readline 如何完成讀取引數。\n" " \n" -" 規格對於每一個<名稱>如何完成讀取參數。如果不帶選項,\n" -" 現有的補完規格會以可以重用為輸入的格式印出。\n" +" 指定每一個 <名稱> 如何完成讀取參數。如果不指定選項,\n" +" 現有的自動完成規格會以可以重新作為輸入使用的格式輸出。\n" " \n" " 選項:\n" -" -p\t以可重用的格式印出現有的補完規格。\n" -" -r\t對於每個<名稱>刪除補完規格,或者如果沒有提供<名稱>\n" -" \t名稱,刪除所有的補完規格。\n" -" -D\t對於沒有補完規格定義的指令,設定預設的補完動作\n" -" -E\t對於「empty」指令設定補完動作,—— 對於空列的補完。\n" -" -I\t套用補完和動作到首個 (通常是指令) 單詞\n" +" -p\t以可重用的格式輸出現有的自動完成規格。\n" +" -r\t移除每個 <名稱> 的自動完成規格。若未指定 <名稱>\n" +" \t則移除所有自動完成規格。\n" +" -D\t對於沒有自動完成規格定義的命令,設定預設的自動完成動作\n" +" -E\t對於「empty」指令——嘗試對空白列進行自動完成——套用自動完成和動作。\n" +" -I\t套用自動完成和動作到首個(通常是命令)單字\n" " \n" -" 嘗試補完時,按照上述大寫字母選項的順序進行動作。 如果傳入了多個選項,\n" +" 發起自動完成嘗試時,將依上述大寫字母選項的順序進行動作。若傳入了多個選項,\n" " -D 選項優先於 -E 選項,而兩者優先於 -I 選項。\n" " \n" " 結束狀態:\n" @@ -5478,9 +5317,9 @@ msgid "" " Exit Status:\n" " Returns success unless an invalid option is supplied or an error occurs." msgstr "" -"依據選項顯示可能的補完。\n" +"依據選項顯示可能的自動完成建議。\n" " \n" -" 意圖在能產生可能的補完 shell 函數內部使用。\n" +" 意圖在能產生可能的自動完成 shell 函數內部使用。\n" " 如果提供了可選的 WORD 參數,則產生按照 WORD\n" " 進行的符合。\n" " \n" @@ -5515,27 +5354,27 @@ msgid "" " Returns success unless an invalid option is supplied or NAME does not\n" " have a completion specification defined." msgstr "" -"修改或顯示補完選項。\n" +"修改或顯示自動完成選項。\n" " \n" -" 修改每個 <名稱> 的補完選項,或如果沒有提供 <名稱>,執行目前的補完。\n" -" 如果不帶選項,印出每個 <名稱> 的補完選項或目前的補完規格。\n" +" 修改每個 <名稱> 的自動完成選項,或如果沒有提供 <名稱>,執行目前的自動完成。\n" +" 如果不帶選項,印出每個 <名稱> 的自動完成選項或目前的自動完成規格。\n" " \n" " 選項:\n" -" \t-o option\t為每個 <名稱> 設定補完選項 option\n" -" \t-D\t\t為「default」指令補完變更選項\n" -" \t-E\t\t為「empty」指令補完變更選項\n" -" \t-I\t\t為首單詞上的補完變更選項\n" +" \t-o option\t為每個 <名稱> 設定自動完成選項 option\n" +" \t-D\t\t為「default」指令自動完成變更選項\n" +" \t-E\t\t為「empty」指令自動完成變更選項\n" +" \t-I\t\t為首單詞上的自動完成變更選項\n" " \n" " 使用「+o」而不是「-o」可以關閉指定的選項。\n" " \n" " 參數:\n" " \n" -" 每個 <名稱> 都對應一個之前以藉由「complete」內建定義了補完規格的\n" -" 指令。如果不提供 <名稱>,目前產生補完的函數必須呼叫 compopt,\n" -" 並且目前執行的補完產生器選項會被修改。\n" +" 每個 <名稱> 都對應一個之前以藉由「complete」內建定義了自動完成規格的\n" +" 指令。如果不提供 <名稱>,目前產生自動完成的函數必須呼叫 compopt,\n" +" 並且目前執行的自動完成產生器選項會被修改。\n" " \n" " 結束狀態:\n" -" 回傳成功,除非使用了無效的選項或者 <名稱> 沒有定義補完規格。" +" 回傳成功,除非使用了無效的選項或者 <名稱> 沒有定義自動完成規格。" #: builtins.c:2047 msgid "" diff --git a/print_cmd.c b/print_cmd.c index 9f3f670c..188695be 100644 --- a/print_cmd.c +++ b/print_cmd.c @@ -1,6 +1,6 @@ /* print_command -- A way to make readable commands from a command tree. */ -/* Copyright (C) 1989-2021 Free Software Foundation, Inc. +/* Copyright (C) 1989-2022 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -1055,6 +1055,9 @@ print_redirection_list (redirects) else hdtail = heredocs = newredir; } +#if 0 + /* Remove this heuristic now that the command printing code doesn't + unconditionally put in the redirector file descriptor. */ else if (redirects->instruction == r_duplicating_output_word && (redirects->flags & REDIR_VARASSIGN) == 0 && redirects->redirector.dest == 1) { /* Temporarily translate it as the execution code does. */ @@ -1064,6 +1067,7 @@ print_redirection_list (redirects) print_redirection (redirects); redirects->instruction = r_duplicating_output_word; } +#endif else print_redirection (redirects); @@ -1222,6 +1226,8 @@ print_redirection (redirect) case r_duplicating_input_word: if (redirect->rflags & REDIR_VARASSIGN) cprintf ("{%s}<&%s", redir_word->word, redirectee->word); + else if (redirector == 0) + cprintf ("<&%s", redirectee->word); else cprintf ("%d<&%s", redirector, redirectee->word); break; @@ -1229,6 +1235,8 @@ print_redirection (redirect) case r_duplicating_output_word: if (redirect->rflags & REDIR_VARASSIGN) cprintf ("{%s}>&%s", redir_word->word, redirectee->word); + else if (redirector == 1) + cprintf (">&%s", redirectee->word); else cprintf ("%d>&%s", redirector, redirectee->word); break; diff --git a/redir.c b/redir.c index 5266b9f4..8369adcc 100644 --- a/redir.c +++ b/redir.c @@ -460,7 +460,10 @@ here_document_to_fd (redirectee, ri) return fd; } -#if defined (HEREDOC_PIPESIZE) + if (shell_compatibility_level <= 50) + goto use_tempfile; + +#if HEREDOC_PIPESIZE /* Try to use a pipe internal to this process if the document is shorter than the system's pipe capacity (computed at build time). We want to write the entire document without write blocking. */ diff --git a/shell.h b/shell.h index 475f7d88..6e44bca6 100644 --- a/shell.h +++ b/shell.h @@ -173,7 +173,7 @@ typedef struct _sh_parser_state_t int *token_state; char *token; - int token_buffer_size; + size_t token_buffer_size; int eof_token; /* input line state -- line number saved elsewhere */ diff --git a/stringlib.c b/stringlib.c index e76ce38d..73304966 100644 --- a/stringlib.c +++ b/stringlib.c @@ -146,7 +146,8 @@ strsub (string, pat, rep, global) char *string, *pat, *rep; int global; { - int patlen, replen, templen, tempsize, repl, i; + size_t patlen, replen, templen, tempsize, i; + int repl; char *temp, *r; patlen = strlen (pat); @@ -189,7 +190,7 @@ strcreplace (string, c, text, flags) int flags; { char *ret, *p, *r, *t; - int len, rlen, ind, tlen; + size_t len, rlen, ind, tlen; int do_glob, escape_backslash; do_glob = flags & 1; diff --git a/subst.c b/subst.c index 36d004cd..394b5615 100644 --- a/subst.c +++ b/subst.c @@ -4095,7 +4095,9 @@ remove_backslashes (string) to the != or == operator, and should be treated as a pattern. In this case, we quote the string specially for the globbing code. If SPECIAL is 2, this is an rhs argument for the =~ operator, and should - be quoted appropriately for regcomp/regexec. The caller is responsible + be quoted appropriately for regcomp/regexec. If SPECIAL is 3, this is + an array subscript and should be quoted after expansion so it's only + expanded once (Q_ARITH). The caller is responsible for removing the backslashes if the unquoted word is needed later. In any case, since we don't perform word splitting, we need to do quoted null character removal. */ diff --git a/tests/comsub-posix.right b/tests/comsub-posix.right index c612a62f..037f0ed2 100644 --- a/tests/comsub-posix.right +++ b/tests/comsub-posix.right @@ -61,7 +61,6 @@ here-doc terminated with a parenthesis line terminated with a backslash ./comsub-posix1.sub: line 1: syntax error near unexpected token `)' ./comsub-posix1.sub: line 1: `echo $( if x; then echo foo )' -after swap32_posix is a function swap32_posix () { @@ -77,16 +76,23 @@ swap32_posix () )); done } -./comsub-posix5.sub: line 37: syntax error near unexpected token `done' -./comsub-posix5.sub: line 37: `: $(case x in x) ;; x) done esac)' -./comsub-posix5.sub: line 38: syntax error near unexpected token `done' -./comsub-posix5.sub: line 38: `: $(case x in x) ;; x) done ;; esac)' -./comsub-posix5.sub: line 39: syntax error near unexpected token `esac' -./comsub-posix5.sub: line 39: `: $(case x in x) (esac) esac)' +bash: -c: line 1: syntax error near unexpected token `done' +bash: -c: line 1: `: $(case x in x) ;; x) done esac)' +bash: -c: line 1: syntax error near unexpected token `done' +bash: -c: line 1: `: $(case x in x) ;; x) done ;; esac)' +bash: -c: line 1: syntax error near unexpected token `esac' +bash: -c: line 1: `: $(case x in x) (esac) esac)' bash: -c: line 1: syntax error near unexpected token `in' bash: -c: line 1: `: $(case x in esac|in) foo;; esac)' bash: -c: line 1: syntax error near unexpected token `done' bash: -c: line 1: `: $(case x in x) ;; x) done)' +case: -c: line 3: syntax error near unexpected token `esac' +case: -c: line 3: `$( esac ; bar=foo ; echo "$bar")) echo bad 2;;' +ok 2 +inside outside +ok 3 +syntax-error: -c: line 2: syntax error near unexpected token `done' +syntax-error: -c: line 2: `: $(case x in x) ;; x) done ;; esac)' yes diff --git a/tests/comsub-posix.tests b/tests/comsub-posix.tests index d439776e..ab7cd295 100644 --- a/tests/comsub-posix.tests +++ b/tests/comsub-posix.tests @@ -234,13 +234,12 @@ echo $( ) ${THIS_SH} ./comsub-posix1.sub - ${THIS_SH} ./comsub-posix2.sub - ${THIS_SH} ./comsub-posix3.sub #${THIS_SH} ./comsub-posix4.sub ${THIS_SH} ./comsub-posix5.sub +${THIS_SH} ./comsub-posix6.sub # produced a parse error through bash-4.0-beta2 : $(echo foo)" diff --git a/tests/comsub-posix1.sub b/tests/comsub-posix1.sub index bbcc60fb..de6f473a 100644 --- a/tests/comsub-posix1.sub +++ b/tests/comsub-posix1.sub @@ -1,3 +1,3 @@ echo $( if x; then echo foo ) -echo after +echo should not see this diff --git a/tests/comsub-posix5.sub b/tests/comsub-posix5.sub index 0c4c7f21..f10e773a 100644 --- a/tests/comsub-posix5.sub +++ b/tests/comsub-posix5.sub @@ -34,9 +34,9 @@ : $(case x in x) (echo esac) esac) # these errors should be caught sooner -: $(case x in x) ;; x) done esac) -: $(case x in x) ;; x) done ;; esac) -: $(case x in x) (esac) esac) +${THIS_SH} -c ': $(case x in x) ;; x) done esac)' bash +${THIS_SH} -c ': $(case x in x) ;; x) done ;; esac)' bash +${THIS_SH} -c ': $(case x in x) (esac) esac)' bash # these are not errors : $(case x in x) ;; x) eval done ;; esac) diff --git a/tests/comsub-posix6.sub b/tests/comsub-posix6.sub new file mode 100644 index 00000000..212ad204 --- /dev/null +++ b/tests/comsub-posix6.sub @@ -0,0 +1,43 @@ +: ${THIS_SH:=./bash} + +# comsub should not inherit PST_COMPASSIGN + +C=($(echo "${A[@]}" | \ + (while read -d ' ' i; do + C=(${C/ ${i%% *} / }) + done + echo ${C[@]}))) + +# comsub should not inherit PST_CASEPAT + +${THIS_SH} -c ' +case foo in +$( esac ; bar=foo ; echo "$bar")) echo bad 2;; +*) echo ok 2;; +esac + +echo we should not see this' case + +# comsub should not inherit PST_SUBSHELL + +${THIS_SH} -c '( case foo in + ( $(echo foo | cat )) echo ok 2;; + *) echo bad 2;; + esac + + echo $( echo inside ) outside )' subshell + +# comsub should not inherit PST_REDIRLIST + +${THIS_SH} -c ' +{fd}/dev/null +${THIS_SH} ./unicode1.sub # 2>/dev/null ${THIS_SH} ./unicode2.sub ${THIS_SH} ./unicode3.sub 2>&1 diff --git a/tests/unicode1.sub b/tests/unicode1.sub index 0debe3d8..713ab40f 100644 --- a/tests/unicode1.sub +++ b/tests/unicode1.sub @@ -110,14 +110,13 @@ fr_FR_ISO_8859_1=( ) # this locale causes problems all over the place -if locale -a | grep -i '^fr_FR\.ISO8859.*1' >/dev/null ; then +if locale -a | grep -i '^fr_FR\.ISO8859.*1$' >/dev/null ; then TestCodePage fr_FR.ISO8859-1 fr_FR_ISO_8859_1 else echo "unicode1.sub: warning: you do not have the fr_FR.ISO8859-1 locale installed;" >&2 - echo "unicode1.sub: that will cause some of these tests to fail." >&2 + echo "unicode1.sub: that will cause some of these tests to be skipped." >&2 fi - zh_TW_BIG5=( [0x00f6]=$'\366' [0x00f7]=$'\367' [0x00f8]=$'\370' [0x00f9]=$'\371' [0x00fa]=$'\372' [0x00fb]=$'\373' [0x00fc]=$'\374' [0x00fd]=$'\375' [0x00fe]=$'\376' @@ -316,8 +315,14 @@ jp_JP_SHIFT_JIS=( [0xFF9E]=$'\xDE' # HALFWIDTH KATAKANA VOICED SOUND MARK [0xFF9F]=$'\xDF' # HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK ) + #TestCodePage ja_JP.SHIFT_JIS jp_JP_SHIFT_JIS -TestCodePage ja_JP.SJIS jp_JP_SHIFT_JIS +if locale -a | grep -i '^ja_JP.SJIS' >/dev/null ; then + TestCodePage ja_JP.SJIS jp_JP_SHIFT_JIS +else + echo "unicode1.sub: warning: you do not have the ja_JP.SJIS locale installed;" >&2 + echo "unicode1.sub: that will cause some of these tests to be skipped." >&2 +fi #for ((x=1;x<1000;x++)); do printf ' [0x%04x]=%-11q' "$x" "$(printf "$(printf '\\U%08x' $x)")" ; [ $(($x%5)) = 0 ] && echo; done C_UTF_8=( diff --git a/variables.c b/variables.c index 3da174d3..941a904f 100644 --- a/variables.c +++ b/variables.c @@ -2370,7 +2370,7 @@ find_global_variable (name) var = var_lookup (name, global_variables); if (var && nameref_p (var)) - var = find_variable_nameref (var); + var = find_variable_nameref (var); /* XXX - find_global_variable_noref? */ if (var == 0) return ((SHELL_VAR *)NULL); @@ -3840,6 +3840,34 @@ unbind_variable_noref (name) return 0; } +int +unbind_global_variable (name) + const char *name; +{ + SHELL_VAR *v, *nv; + int r; + + v = var_lookup (name, global_variables); + /* This starts at the current scope, just like find_global_variable; should we + use find_global_variable_nameref here? */ + nv = (v && nameref_p (v)) ? find_variable_nameref (v) : (SHELL_VAR *)NULL; + + r = nv ? makunbound (nv->name, shell_variables) : makunbound (name, global_variables); + return r; +} + +int +unbind_global_variable_noref (name) + const char *name; +{ + SHELL_VAR *v; + + v = var_lookup (name, global_variables); + if (v) + return makunbound (name, global_variables); + return 0; +} + int check_unbind_variable (name) const char *name; diff --git a/variables.h b/variables.h index 15fd49f2..d49ed0fb 100644 --- a/variables.h +++ b/variables.h @@ -328,6 +328,8 @@ extern int unbind_variable PARAMS((const char *)); extern int check_unbind_variable PARAMS((const char *)); extern int unbind_nameref PARAMS((const char *)); extern int unbind_variable_noref PARAMS((const char *)); +extern int unbind_global_variable PARAMS((const char *)); +extern int unbind_global_variable_noref PARAMS((const char *)); extern int unbind_func PARAMS((const char *)); extern int unbind_function_def PARAMS((const char *)); extern int delete_var PARAMS((const char *, VAR_CONTEXT *)); diff --git a/y.tab.c b/y.tab.c index d0bf2a43..0d5a3e6e 100644 --- a/y.tab.c +++ b/y.tab.c @@ -5143,7 +5143,7 @@ push_token (x) static char *token = (char *)NULL; /* Current size of the token buffer. */ -static int token_buffer_size; +static size_t token_buffer_size; /* Command to read_token () explaining what we want it to do. */ #define READ 0 @@ -6374,7 +6374,12 @@ parse_comsub (qc, open, close, lenp, flags) pushed_string_list = (STRING_SAVER *)NULL; /* State flags we don't want to persist into command substitutions. */ - parser_state &= ~(PST_REGEXP|PST_EXTPAT|PST_CONDCMD|PST_CONDEXPR); + parser_state &= ~(PST_REGEXP|PST_EXTPAT|PST_CONDCMD|PST_CONDEXPR|PST_COMPASSIGN); + /* Could do PST_CASESTMT too, but that also affects history. Setting + expecting_in_token below should take care of the parsing requirements. + Unsetting PST_REDIRLIST isn't strictly necessary because of how we set + token_to_read below, but we do it anyway. */ + parser_state &= ~(PST_CASEPAT|PST_ALEXPNEXT|PST_SUBSHELL|PST_REDIRLIST); /* State flags we want to set for this run through the parser. */ parser_state |= PST_CMDSUBST|PST_EOFTOKEN|PST_NOEXPAND; @@ -6413,7 +6418,14 @@ parse_comsub (qc, open, close, lenp, flags) else if (r != 0) { /* parser_error (start_lineno, _("could not parse command substitution")); */ - jump_to_top_level (DISCARD); + /* Non-interactive shells exit on parse error in a command substitution. */ + if (last_command_exit_value == 0) + last_command_exit_value = EXECUTION_FAILURE; + set_exit_status (last_command_exit_value); + if (interactive_shell == 0) + jump_to_top_level (FORCE_EOF); /* This is like reader_loop() */ + else + jump_to_top_level (DISCARD); } if (current_token != shell_eof_token) @@ -6529,7 +6541,8 @@ xparse_dolparen (base, string, indp, flags) clear_shell_input_line (); /* XXX */ if (bash_input.type != st_string) /* paranoia */ parser_state &= ~(PST_CMDSUBST|PST_EOFTOKEN); - jump_to_top_level (-nc); /* XXX */ + if ((flags & SX_NOLONGJMP) == 0) + jump_to_top_level (-nc); /* XXX */ } /* Need to find how many characters parse_string() consumed, update @@ -8595,31 +8608,26 @@ parse_string_to_word_list (s, flags, whom) const char *whom; { WORD_LIST *wl; - int tok, orig_current_token, orig_line_number, orig_input_terminator; - int orig_line_count, orig_parser_state; - int old_echo_input, old_expand_aliases, ea; -#if defined (HISTORY) - int old_remember_on_history, old_history_expansion_inhibited; -#endif + int tok, orig_current_token, orig_line_number; + int orig_parser_state; + sh_parser_state_t ps; + int ea; #if defined (HISTORY) - old_remember_on_history = remember_on_history; -# if defined (BANG_HISTORY) - old_history_expansion_inhibited = history_expansion_inhibited; -# endif bash_history_disable (); #endif orig_line_number = line_number; - orig_line_count = current_command_line_count; - orig_input_terminator = shell_input_line_terminator; - old_echo_input = echo_input_at_read; - old_expand_aliases = expand_aliases; + save_parser_state (&ps); push_stream (1); if (ea = expanding_alias ()) parser_save_alias (); - last_read_token = WORD; /* WORD to allow reserved words here */ + + /* WORD to avoid parsing reserved words as themselves and just parse them as + WORDs. */ + last_read_token = WORD; + current_command_line_count = 0; echo_input_at_read = expand_aliases = 0; @@ -8628,9 +8636,11 @@ parse_string_to_word_list (s, flags, whom) if (flags & 1) { - orig_parser_state = parser_state; - parser_state |= PST_COMPASSIGN|PST_REPARSE; + orig_parser_state = parser_state; /* XXX - not needed? */ + /* State flags we don't want to persist into compound assignments. */ parser_state &= ~PST_NOEXPAND; /* parse_comsub sentinel */ + /* State flags we want to set for this run through the tokenizer. */ + parser_state |= PST_COMPASSIGN|PST_REPARSE; } while ((tok = read_token (READ)) != yacc_EOF) @@ -8660,21 +8670,10 @@ parse_string_to_word_list (s, flags, whom) if (ea) parser_restore_alias (); -#if defined (HISTORY) - remember_on_history = old_remember_on_history; -# if defined (BANG_HISTORY) - history_expansion_inhibited = old_history_expansion_inhibited; -# endif /* BANG_HISTORY */ -#endif /* HISTORY */ - - echo_input_at_read = old_echo_input; - expand_aliases = old_expand_aliases; - - current_command_line_count = orig_line_count; - shell_input_line_terminator = orig_input_terminator; + restore_parser_state (&ps); if (flags & 1) - parser_state = orig_parser_state; + parser_state = orig_parser_state; /* XXX - not needed? */ if (wl == &parse_string_error) { @@ -8693,28 +8692,31 @@ parse_compound_assignment (retlenp) int *retlenp; { WORD_LIST *wl, *rl; - int tok, orig_line_number, orig_token_size, orig_last_token, assignok; - int orig_parser_state; - char *saved_token, *ret; + int tok, orig_line_number, assignok; + sh_parser_state_t ps; + char *ret; - saved_token = token; - orig_token_size = token_buffer_size; orig_line_number = line_number; - orig_last_token = last_read_token; - orig_parser_state = parser_state; + save_parser_state (&ps); - last_read_token = WORD; /* WORD to allow reserved words here */ + /* WORD to avoid parsing reserved words as themselves and just parse them as + WORDs. Plus it means we won't be in a command position and so alias + expansion won't happen. */ + last_read_token = WORD; token = (char *)NULL; token_buffer_size = 0; + wl = (WORD_LIST *)NULL; /* ( */ assignok = parser_state&PST_ASSIGNOK; /* XXX */ - wl = (WORD_LIST *)NULL; /* ( */ - orig_parser_state = parser_state; - parser_state &= ~PST_NOEXPAND; + /* State flags we don't want to persist into compound assignments. */ + parser_state &= ~(PST_NOEXPAND|PST_CONDCMD|PST_CONDEXPR|PST_REGEXP|PST_EXTPAT); + /* State flags we want to set for this run through the tokenizer. */ parser_state |= PST_COMPASSIGN; + esacs_needed_count = expecting_in_token = 0; + while ((tok = read_token (READ)) != ')') { if (tok == '\n') /* Allow newlines in compound assignments */ @@ -8738,11 +8740,7 @@ parse_compound_assignment (retlenp) wl = make_word_list (yylval.word, wl); } - FREE (token); - token = saved_token; - token_buffer_size = orig_token_size; - - parser_state = orig_parser_state; + restore_parser_state (&ps); if (wl == &parse_string_error) { @@ -8754,8 +8752,6 @@ parse_compound_assignment (retlenp) jump_to_top_level (DISCARD); } - last_read_token = orig_last_token; /* XXX - was WORD? */ - if (wl) { rl = REVERSE_LIST (wl, WORD_LIST *);