From: Chet Ramey Date: Wed, 7 Dec 2011 14:26:50 +0000 (-0500) Subject: commit bash-20080807 snapshot X-Git-Tag: bash-4.0-alpha X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bea29b7b393f6819ada3b9879d43fa803518863b;p=thirdparty%2Fbash.git commit bash-20080807 snapshot --- diff --git a/CHANGES b/CHANGES index 1d7616a7b..1b1c879ba 100644 --- a/CHANGES +++ b/CHANGES @@ -50,7 +50,8 @@ o. Fixed several bugs in the expansion of $* and $@ (quoted and unquoted) apply to arrays subscripted with * or @. p. Fixed several problems with pattern substitution expansions on the - positional parameters and arrays subscripted with * or @. + positional parameters and arrays subscripted with * or @ that occurred + when $IFS was set to the empty string. q. Made a change to the default locale initialization code that should result in better behavior from the locale-aware library functions. @@ -117,8 +118,9 @@ kk. Fixed a bug with the `test' builtin that caused it to misinterpret ll. Fixed bug that could cause the shell to dump core in certain cases where a command sets the SIGINT disposition to the default. -mm. Fixed a bug in the pattern replacement word expansion that occurred when - the pattern and replacement strings were empty. +mm. Fixed a bug in the pattern replacement (affecting both word expansion + and the `fc' builtin) that occurred when the pattern and replacement + strings were empty. nn. Fixed a bug that caused an arithmetic evaluation error to disable all further evaluation. @@ -265,6 +267,9 @@ eeee. The shell displays more warnings about failures to set the locale. ffff. Fixed a bug that caused the body of a here-document to not be saved to the history list. +gggg. Fixed a bug that caused configure to incorrectly conclude that FreeBSD + had /dev/fd available, resulting in problems with process substitution. + 2. Changes to Readline a. Fixed a number of redisplay errors in environments supporting multibyte @@ -285,8 +290,9 @@ e. Fixed bugs in redisplay occurring when displaying prompts containing f. Fixed a bug that caused the completion append character to not be reset to the default after an application-specified completion function changed it. -g. Fixed a problem that caused incorrect positioning of the cursor in emacs - mode when at the end of a line in a locale supporting multibyte characters. +g. Fixed a problem that caused incorrect positioning of the cursor while in + emacs editing mode when moving forward at the end of a line while using + a locale supporting multibyte characters. h. Fixed an off-by-one error that caused readline to drop every 511th character of buffered input. @@ -314,6 +320,12 @@ o. Fixed a bug that caused readline to disable echoing when it was being used p. Readline now blocks SIGINT while manipulating internal data structures during redisplay. +q. Fixed a bug in redisplay that caused readline to segfault when pasting a + very long line (over 130,000 characters). + +r. Fixed bugs in redisplay when using prompts with no visible printing + characters. + 3. New Features in Bash a. When using substring expansion on the positional parameters, a starting diff --git a/COMPAT b/COMPAT index 8c8267843..8e7b9a1a5 100644 --- a/COMPAT +++ b/COMPAT @@ -291,7 +291,7 @@ bash-2.0 were significant.) 37. Bash-4.0 now allows SIGCHLD to interrupt the wait builtin, as Posix specifies, so the SIGCHLD trap is no longer always invoked once per - exiting child. + exiting child if you are using `wait' to wait for all children. 38. Since bash-4.0 now follows Posix rules for finding the closing delimiter of a $() command substitution, it will not behave as previous versions diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index 9df566061..63d018878 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -6749,3 +6749,11 @@ parse.y - change read_secondary_line to save lines in the body of a here- document in the shell history list if remember_on_history is set. Fixes bug reported by Gene Golub + + 8/4 + --- +configure.in + - changed to 4.0-alpha + +lib/readline/readline.h + - changed constants to reflect readline-6.0 version diff --git a/MANIFEST b/MANIFEST index 6a99d2e52..38889ad3d 100644 --- a/MANIFEST +++ b/MANIFEST @@ -486,6 +486,8 @@ po/bg.gmo f po/bg.po f po/ca.gmo f po/ca.po f +po/cs.gmo f +po/cs.po f po/de.gmo f po/de.po f po/eo.gmo f diff --git a/NEWS b/NEWS index 3fa504ed8..f4b81f0b2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,184 @@ +This is a terse description of the new features added to bash-4.0 since +the release of bash-3.2. As always, the manual page (doc/bash.1) is +the place to look for complete descriptions. + +1. New Features in Bash + +a. When using substring expansion on the positional parameters, a starting + index of 0 now causes $0 to be prefixed to the list. + +b. The `help' builtin now prints its columns with entries sorted vertically + rather than horizontally. + +c. There is a new variable, $BASHPID, which always returns the process id of + the current shell. + +d. There is a new `autocd' option that, when enabled, causes bash to attempt + to `cd' to a directory name that is supplied as the first word of a + simple command. + +e. There is a new `checkjobs' option that causes the shell to check for and + report any running or stopped jobs at exit. + +f. The programmable completion code exports a new COMP_TYPE variable, set to + a character describing the type of completion being attempted. + +g. The programmable completion code exports a new COMP_KEY variable, set to + the character that caused the completion to be invoked (e.g., TAB). + +h. If creation of a child process fails due to insufficient resources, bash + will try again several times before reporting failure. + +i. The programmable completion code now uses the same set of characters as + readline when breaking the command line into a list of words. + +j. The block multiplier for the ulimit -c and -f options is now 512 when in + Posix mode, as Posix specifies. + +k. Changed the behavior of the read builtin to save any partial input received + in the specified variable when the read builtin times out. This also + results in variables specified as arguments to read to be set to the empty + string when there is no input available. When the read builtin times out, + it returns an exit status greater than 128. + +l. The shell now has the notion of a `compatibility level', controlled by + new variables settable by `shopt'. Setting this variable currently + restores the bash-3.1 behavior when processing quoted strings on the rhs + of the `=~' operator to the `[[' command. + +m. The `ulimit' builtin now has new -b (socket buffer size) and -T (number + of threads) options. + +n. The -p option to `declare' now displays all variable values and attributes + (or function values and attributes if used with -f). + +o. There is a new `compopt' builtin that allows completion functions to modify + completion options for existing completions or the completion currently + being executed. + +p. The `read' builtin has a new -i option which inserts text into the reply + buffer when using readline. + +q. A new `-E' option to the complete builtin allows control of the default + behavior for completion on an empty line. + +r. There is now limited support for completing command name words containing + globbing characters. + +s. Changed format of internal help documentation for all builtins to roughly + follow man page format. + +t. The `help' builtin now has a new -d option, to display a short description, + and a -m option, to print help information in a man page-like format. + +u. There is a new `mapfile' builtin to populate an array with lines from a + given file. + +v. If a command is not found, the shell attempts to execute a shell function + named `command_not_found_handle', supplying the command words as the + function arguments. + +w. There is a new shell option: `globstar'. When enabled, the globbing code + treats `**' specially -- it matches all directories (and files within + them, when appropriate) recursively. + +x. There is a new shell option: `dirspell'. When enabled, the filename + completion code performs spelling correction on directory names during + completion. + +y. The `-t' option to the `read' builtin now supports fractional timeout + values. + +z. Brace expansion now allows zero-padding of expanded numeric values and + will add the proper number of zeroes to make sure all values contain the + same number of digits. + +aa. There is a new bash-specific bindable readline function: `dabbrev-expand'. + It uses menu completion on a set of words taken from the history list. + +bb. The command assigned to a key sequence with `bind -x' now sets two new + variables in the environment of the executed command: READLINE_LINE_BUFFER + and READLINE_POINT. The command can change the current readline line + and cursor position by modifying READLINE_LINE_BUFFER and READLINE_POINT, + respectively. + +cc. There is a new >>& redirection operator, which appends the standard output + and standard error to the named file. + +dd. The parser now understands `|&' as a synonym for `2>&1 |', which redirects + the standard error for a command through a pipe. + +ee. The new `;&' case statement action list terminator causes execution to + continue with the action associated with the next pattern in the + statement rather than terminating the command. + +ff. The new `;;&' case statement action list terminator causes the shell to + test the next set of patterns after completing execution of the current + action, rather than terminating the command. + +gg. The shell understands a new variable: PROMPT_DIRTRIM. When set to an + integer value greater than zero, prompt expansion of \w and \W will + retain only that number of trailing pathname components and replace + the intervening characters with `...'. + +hh. There are new case-modifying word expansions: uppercase (^[^]) and + lowercase (,[,]). They can work on either the first character or + array element, or globally. They accept an optional shell pattern + that determines which characters to modify. There is an optionally- + configured feature to include capitalization operators. + +ii. The shell provides associative array variables, with the appropriate + support to create, delete, assign values to, and expand them. + +jj. The `declare' builtin now has new -l (convert value to lowercase upon + assignment) and -u (convert value to uppercase upon assignment) options. + There is an optionally-configurable -c option to capitalize a value at + assignment. + +kk. There is a new `coproc' reserved word that specifies a coprocess: an + asynchronous command run with two pipes connected to the creating shell. + Coprocs can be named. The input and output file descriptors and the + PID of the coprocess are available to the calling shell in variables + with coproc-specific names. + +2. New Features in Readline + +a. A new variable, rl_sort_completion_matches; allows applications to inhibit + match list sorting (but beware: some things don't work right if + applications do this). + +b. A new variable, rl_completion_invoking_key; allows applications to discover + the key that invoked rl_complete or rl_menu_complete. + +c. The functions rl_block_sigint and rl_release_sigint are now public and + available to calling applications who want to protect critical sections + (like redisplay). + +d. The functions rl_save_state and rl_restore_state are now public and + available to calling applications; documented rest of readline's state + flag values. + +e. A new user-settable variable, `history-size', allows setting the maximum + number of entries in the history list. + +f. There is a new implementation of menu completion, with several improvements + over the old; the most notable improvement is a better `completions + browsing' mode. + +g. The menu completion code now uses the rl_menu_completion_entry_function + variable, allowing applications to provide their own menu completion + generators. + +h. There is support for replacing a prefix of a pathname with a `...' when + displaying possible completions. This is controllable by setting the + `completion-prefix-display-length' variable. Matches with a common prefix + longer than this value have the common prefix replaced with `...'. + +i. There is a new `revert-all-at-newline' variable. If enabled, readline will + undo all outstanding changes to all history lines when `accept-line' is + executed. + +------------------------------------------------------------------------------- This is a terse description of the new features added to bash-3.2 since the release of bash-3.1. As always, the manual page (doc/bash.1) is the place to look for complete descriptions. diff --git a/autom4te.cache/output.0 b/autom4te.cache/output.0 index 5944cf2be..cd27b7599 100644 --- a/autom4te.cache/output.0 +++ b/autom4te.cache/output.0 @@ -1,7 +1,7 @@ @%:@! /bin/sh -@%:@ From configure.in for Bash 4.0, version 4.003. +@%:@ From configure.in for Bash 4.0, version 4.004. @%:@ Guess values for system-dependent variables and create Makefiles. -@%:@ Generated by GNU Autoconf 2.61 for bash 4.0-devel. +@%:@ Generated by GNU Autoconf 2.61 for bash 4.0-alpha. @%:@ @%:@ Report bugs to . @%:@ @@ -575,8 +575,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='bash' PACKAGE_TARNAME='bash' -PACKAGE_VERSION='4.0-devel' -PACKAGE_STRING='bash 4.0-devel' +PACKAGE_VERSION='4.0-alpha' +PACKAGE_STRING='bash 4.0-alpha' PACKAGE_BUGREPORT='bug-bash@gnu.org' ac_unique_file="shell.h" @@ -1284,7 +1284,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 4.0-devel to adapt to many kinds of systems. +\`configure' configures bash 4.0-alpha to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1349,7 +1349,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of bash 4.0-devel:";; + short | recursive ) echo "Configuration of bash 4.0-alpha:";; esac cat <<\_ACEOF @@ -1519,7 +1519,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -bash configure 4.0-devel +bash configure 4.0-alpha generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1533,7 +1533,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 4.0-devel, which was +It was created by bash $as_me 4.0-alpha, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ @@ -1930,7 +1930,7 @@ ac_config_headers="$ac_config_headers config.h" BASHVERS=4.0 -RELSTATUS=devel +RELSTATUS=alpha case "$RELSTATUS" in alp*|bet*|dev*|rc*|maint*) DEBUG='-DDEBUG' MALLOC_DEBUG='-DMALLOC_DEBUG' ;; @@ -28374,7 +28374,7 @@ exec 6>&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 4.0-devel, which was +This file was extended by bash $as_me 4.0-alpha, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -28427,7 +28427,7 @@ Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -bash config.status 4.0-devel +bash config.status 4.0-alpha configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" diff --git a/autom4te.cache/requests b/autom4te.cache/requests index f7edd0d9f..44f770b3f 100644 --- a/autom4te.cache/requests +++ b/autom4te.cache/requests @@ -15,15 +15,15 @@ 'configure.in' ], { - 'AM_PROG_F77_C_O' => 1, '_LT_AC_TAGCONFIG' => 1, - 'm4_pattern_forbid' => 1, + 'AM_PROG_F77_C_O' => 1, 'AC_INIT' => 1, + 'm4_pattern_forbid' => 1, 'AC_CANONICAL_TARGET' => 1, - 'AC_CONFIG_LIBOBJ_DIR' => 1, 'AC_SUBST' => 1, - 'AC_CANONICAL_HOST' => 1, + 'AC_CONFIG_LIBOBJ_DIR' => 1, 'AC_FC_SRCEXT' => 1, + 'AC_CANONICAL_HOST' => 1, 'AC_PROG_LIBTOOL' => 1, 'AM_INIT_AUTOMAKE' => 1, 'AC_CONFIG_SUBDIRS' => 1, @@ -31,8 +31,8 @@ 'LT_CONFIG_LTDL_DIR' => 1, 'AC_REQUIRE_AUX_FILE' => 1, 'AC_CONFIG_LINKS' => 1, - 'LT_SUPPORTED_TAG' => 1, 'm4_sinclude' => 1, + 'LT_SUPPORTED_TAG' => 1, 'AM_MAINTAINER_MODE' => 1, 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, '_m4_warn' => 1, @@ -49,11 +49,11 @@ 'AH_OUTPUT' => 1, '_AM_SUBST_NOTMAKE' => 1, 'AC_CONFIG_AUX_DIR' => 1, - 'AM_PROG_CC_C_O' => 1, - 'm4_pattern_allow' => 1, 'sinclude' => 1, - 'AM_CONDITIONAL' => 1, + 'm4_pattern_allow' => 1, + 'AM_PROG_CC_C_O' => 1, 'AC_CANONICAL_SYSTEM' => 1, + 'AM_CONDITIONAL' => 1, 'AC_CONFIG_HEADERS' => 1, 'AC_DEFINE_TRACE_LITERAL' => 1, 'm4_include' => 1, diff --git a/autom4te.cache/traces.0 b/autom4te.cache/traces.0 index f5e946e86..9ce1106eb 100644 --- a/autom4te.cache/traces.0 +++ b/autom4te.cache/traces.0 @@ -1,4 +1,4 @@ -m4trace:configure.in:30: -1- AC_INIT([bash], [4.0-devel], [bug-bash@gnu.org]) +m4trace:configure.in:30: -1- AC_INIT([bash], [4.0-alpha], [bug-bash@gnu.org]) m4trace:configure.in:30: -1- m4_pattern_forbid([^_?A[CHUM]_]) m4trace:configure.in:30: -1- m4_pattern_forbid([_AC_]) m4trace:configure.in:30: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) diff --git a/configure b/configure index bf78295af..22ccbc21c 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh -# From configure.in for Bash 4.0, version 4.003. +# From configure.in for Bash 4.0, version 4.004. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for bash 4.0-devel. +# Generated by GNU Autoconf 2.61 for bash 4.0-alpha. # # Report bugs to . # @@ -575,8 +575,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='bash' PACKAGE_TARNAME='bash' -PACKAGE_VERSION='4.0-devel' -PACKAGE_STRING='bash 4.0-devel' +PACKAGE_VERSION='4.0-alpha' +PACKAGE_STRING='bash 4.0-alpha' PACKAGE_BUGREPORT='bug-bash@gnu.org' ac_unique_file="shell.h" @@ -1284,7 +1284,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 4.0-devel to adapt to many kinds of systems. +\`configure' configures bash 4.0-alpha to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1349,7 +1349,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of bash 4.0-devel:";; + short | recursive ) echo "Configuration of bash 4.0-alpha:";; esac cat <<\_ACEOF @@ -1519,7 +1519,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -bash configure 4.0-devel +bash configure 4.0-alpha generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1533,7 +1533,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 4.0-devel, which was +It was created by bash $as_me 4.0-alpha, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ @@ -1930,7 +1930,7 @@ ac_config_headers="$ac_config_headers config.h" BASHVERS=4.0 -RELSTATUS=devel +RELSTATUS=alpha case "$RELSTATUS" in alp*|bet*|dev*|rc*|maint*) DEBUG='-DDEBUG' MALLOC_DEBUG='-DMALLOC_DEBUG' ;; @@ -28374,7 +28374,7 @@ exec 6>&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 4.0-devel, which was +This file was extended by bash $as_me 4.0-alpha, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -28427,7 +28427,7 @@ Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -bash config.status 4.0-devel +bash config.status 4.0-alpha configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" diff --git a/configure.in b/configure.in index ac12ff7e0..aca356dba 100644 --- a/configure.in +++ b/configure.in @@ -22,10 +22,10 @@ dnl Process this file with autoconf to produce a configure script. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. -AC_REVISION([for Bash 4.0, version 4.003])dnl +AC_REVISION([for Bash 4.0, version 4.004])dnl define(bashvers, 4.0) -define(relstatus, devel) +define(relstatus, alpha) AC_INIT([bash], bashvers-relstatus, [bug-bash@gnu.org]) diff --git a/doc/bash.pdf b/doc/bash.pdf index 8cd75224c..8f7c7e25d 100644 Binary files a/doc/bash.pdf and b/doc/bash.pdf differ diff --git a/doc/bash.ps b/doc/bash.ps index 9e54a63cc..f1ffe18a1 100644 --- a/doc/bash.ps +++ b/doc/bash.ps @@ -1,6 +1,6 @@ %!PS-Adobe-3.0 %%Creator: groff version 1.19.2 -%%CreationDate: Thu Jul 24 09:12:42 2008 +%%CreationDate: Tue Aug 5 10:31:32 2008 %%DocumentNeededResources: font Times-Roman %%+ font Times-Bold %%+ font Times-Italic @@ -3889,226 +3889,227 @@ F1(kill)3.395 E F0 .894(command to kill it.)3.395 F(A)5.894 E F1(^Z) 3.394 E F0(tak)3.394 E(es)-.1 E(ef)108 108 Q .948(fect immediately)-.25 F 3.448(,a)-.65 G .948(nd has the additional side ef)-3.448 F .948 (fect of causing pending output and typeahead to be dis-)-.25 F(carded.) -108 120 Q 1.098(There are a number of w)108 136.8 R 1.097 -(ays to refer to a job in the shell.)-.1 F 1.097(The character)6.097 F -F1(%)3.597 E F0 1.097(introduces a job name.)3.597 F(Job)6.097 E(number) -108 148.8 Q/F2 10/Times-Italic@0 SF(n)3.13 E F0 .27 -(may be referred to as)3.01 F F1(%n)2.77 E F0 5.27(.A)C .27 -(job may also be referred to using a pre\214x of the name used to start) --2.5 F .277(it, or using a substring that appears in its command line.) -108 160.8 R -.15(Fo)5.277 G 2.777(re).15 G(xample,)-2.927 E F1(%ce)2.777 -E F0 .277(refers to a stopped)2.777 F F1(ce)2.777 E F0(job)2.777 E 5.277 -(.I)-.4 G 2.777(fa)-5.277 G .38(pre\214x matches more than one job,)108 -172.8 R F1(bash)2.88 E F0 .38(reports an error)2.88 F 5.38(.U)-.55 G -(sing)-5.38 E F1(%?ce)2.88 E F0 2.88(,o)C 2.88(nt)-2.88 G .38 -(he other hand, refers to an)-2.88 F 2.88(yj)-.15 G(ob)-2.88 E .623 -(containing the string)108 184.8 R F1(ce)3.123 E F0 .622 -(in its command line.)3.123 F .622 -(If the substring matches more than one job,)5.622 F F1(bash)3.122 E F0 -.622(reports an)3.122 F(error)108 196.8 Q 5.143(.T)-.55 G .143 -(he symbols)-5.143 F F1(%%)2.643 E F0(and)2.643 E F1(%+)2.643 E F0 .143 -(refer to the shell')2.643 F 2.643(sn)-.55 G .143(otion of the)-2.643 F -F2(curr)2.643 E .143(ent job)-.37 F F0 2.643(,w).23 G .143 -(hich is the last job stopped)-2.643 F 1.209(while it w)108 208.8 R -1.209(as in the fore)-.1 F 1.208(ground or started in the background.) --.15 F(The)6.208 E F2(pr)4.958 E -.15(ev)-.37 G 1.208(ious job).15 F F0 -1.208(may be referenced using)3.938 F F1<25ad>108 220.8 Q F0 5.208(.I)C -2.708(ft)-5.208 G .208(here is only a single job,)-2.708 F F1(%+)2.708 E -F0(and)2.708 E F1<25ad>2.708 E F0 .208 -(can both be used to refer to that job)2.708 F 5.209(.I)-.4 G 2.709(no) --5.209 G .209(utput pertaining to)-2.709 F .132 -(jobs \(e.g., the output of the)108 232.8 R F1(jobs)2.632 E F0 .132 -(command\), the current job is al)2.632 F -.1(wa)-.1 G .131 -(ys \215agged with a).1 F F1(+)2.631 E F0 2.631(,a)C .131(nd the pre) --2.631 F .131(vious job)-.25 F(with a)108 244.8 Q F12.5 E F0 5(.A)C -(single % \(with no accompan)-2.5 E -(ying job speci\214cation\) also refers to the current job)-.15 E(.)-.4 -E .443(Simply naming a job can be used to bring it into the fore)108 -261.6 R(ground:)-.15 E F1(%1)2.944 E F0 .444(is a synon)2.944 F .444 -(ym for)-.15 F F1 -.63(``)2.944 G .444(fg %1').63 F(')-.63 E F0 2.944 -(,b)C(ringing)-2.944 E 1.473(job 1 from the background into the fore)108 -273.6 R 3.973(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.972 G 1.472 -(%1 &').63 F(')-.63 E F0 1.472(resumes job 1 in the background,)3.972 F -(equi)108 285.6 Q -.25(va)-.25 G(lent to).25 E F1 -.63(``)2.5 G(bg %1') -.63 E(')-.63 E F0(.)A .13(The shell learns immediately whene)108 302.4 R --.15(ve)-.25 G 2.63(raj).15 G .13(ob changes state.)-2.63 F(Normally) -5.131 E(,)-.65 E F1(bash)2.631 E F0 -.1(wa)2.631 G .131 -(its until it is about to print a).1 F .158 -(prompt before reporting changes in a job')108 314.4 R 2.658(ss)-.55 G -.158(tatus so as to not interrupt an)-2.658 F 2.657(yo)-.15 G .157 -(ther output.)-2.657 F .157(If the)5.157 F F12.657 E F0 .157 -(option to)2.657 F(the)108 326.4 Q F1(set)3.951 E F0 -.2(bu)3.951 G -1.451(iltin command is enabled,).2 F F1(bash)3.951 E F0 1.452 -(reports such changes immediately)3.951 F 6.452(.A)-.65 G 1.752 -.15 -(ny t)-6.452 H 1.452(rap on).15 F/F3 9/Times-Bold@0 SF(SIGCHLD)3.952 E -F0(is)3.702 E -.15(exe)108 338.4 S(cuted for each child that e).15 E -(xits.)-.15 E .033(If an attempt to e)108 355.2 R(xit)-.15 E F1(bash) -2.533 E F0 .033(is made while jobs are stopped \(or)2.533 F 2.532(,i)-.4 -G 2.532(ft)-2.532 G(he)-2.532 E F1(checkjobs)2.532 E F0 .032 -(shell option has been enabled)2.532 F 2.019(using the)108 367.2 R F1 -(shopt)4.519 E F0 -.2(bu)4.519 G 2.019 -(iltin, running\), the shell prints a w).2 F 2.02 -(arning message, and, if the)-.1 F F1(checkjobs)4.52 E F0 2.02 -(option is)4.52 F .459(enabled, lists the jobs and their statuses.)108 -379.2 R(The)5.459 E F1(jobs)2.959 E F0 .458 -(command may then be used to inspect their status.)2.958 F .458(If a) -5.458 F .603(second attempt to e)108 391.2 R .604 +108 120 Q .777(There are a number of w)108 136.8 R .777 +(ays to refer to a job in the shell.)-.1 F .777(The character)5.777 F F1 +(%)3.277 E F0 .777(introduces a job speci\214cation)3.277 F(\()108 148.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(job may also be referred to using a pre\214x of the)-2.5 F +.59(name used to start it, or using a substring that appears in its com\ +mand line.)108 160.8 R -.15(Fo)5.59 G 3.09(re).15 G(xample,)-3.24 E F1 +(%ce)3.09 E F0 .59(refers to a)3.09 F(stopped)108 172.8 Q F1(ce)3.463 E +F0(job)3.463 E 5.963(.I)-.4 G 3.463(fap)-5.963 G .963 +(re\214x matches more than one job,)-3.463 F F1(bash)3.463 E F0 .963 +(reports an error)3.463 F 5.963(.U)-.55 G(sing)-5.963 E F1(%?ce)3.463 E +F0 3.464(,o)C 3.464(nt)-3.464 G .964(he other)-3.464 F .087 +(hand, refers to an)108 184.8 R 2.587(yj)-.15 G .087 +(ob containing the string)-2.587 F F1(ce)2.587 E F0 .087 +(in its command line.)2.587 F .087 +(If the substring matches more than one)5.087 F(job,)108 196.8 Q F1 +(bash)2.518 E F0 .018(reports an error)2.518 F 5.018(.T)-.55 G .018 +(he symbols)-5.018 F F1(%%)2.518 E F0(and)2.518 E F1(%+)2.518 E F0 .018 +(refer to the shell')2.518 F 2.518(sn)-.55 G .018(otion of the)-2.518 F +F2(curr)2.518 E .018(ent job)-.37 F F0 2.518(,w).23 G .018(hich is) +-2.518 F .495(the last job stopped while it w)108 208.8 R .495 +(as in the fore)-.1 F .495(ground or started in the background.)-.15 F +(The)5.494 E F2(pr)4.244 E -.15(ev)-.37 G .494(ious job).15 F F0 .494 +(may be)3.224 F .787(referenced using)108 220.8 R F1<25ad>3.287 E F0 +5.787(.I)C 3.287(ft)-5.787 G .787(here is only a single job,)-3.287 F F1 +(%+)3.287 E F0(and)3.287 E F1<25ad>3.287 E F0 .788 +(can both be used to refer to that job)3.287 F 5.788(.I)-.4 G(n)-5.788 E +.257(output pertaining to jobs \(e.g., the output of the)108 232.8 R F1 +(jobs)2.756 E F0 .256(command\), the current job is al)2.756 F -.1(wa) +-.1 G .256(ys \215agged with a).1 F F1(+)2.756 E F0(,)A .41(and the pre) +108 244.8 R .41(vious job with a)-.25 F F12.91 E F0 5.41(.A)C .411 +(single % \(with no accompan)-2.5 F .411 +(ying job speci\214cation\) also refers to the cur)-.15 F(-)-.2 E +(rent job)108 256.8 Q(.)-.4 E .444 +(Simply naming a job can be used to bring it into the fore)108 273.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 +(ringing)-2.943 E 1.472(job 1 from the background into the fore)108 +285.6 R 3.972(ground. Similarly)-.15 F(,)-.65 E F1 -.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 297.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 314.4 +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 +(its until it is about to print a).1 F .157 +(prompt before reporting changes in a job')108 326.4 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 338.4 Q F1(set)3.952 E F0 -.2(bu)3.952 G +1.452(iltin command is enabled,).2 F F1(bash)3.952 E F0 1.451 +(reports such changes immediately)3.952 F 6.451(.A)-.65 G 1.751 -.15 +(ny t)-6.451 H 1.451(rap on).15 F/F3 9/Times-Bold@0 SF(SIGCHLD)3.951 E +F0(is)3.701 E -.15(exe)108 350.4 S(cuted for each child that e).15 E +(xits.)-.15 E .032(If an attempt to e)108 367.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 2.02(using the)108 379.2 R F1 +(shopt)4.52 E F0 -.2(bu)4.52 G 2.02 +(iltin, running\), the shell prints a w).2 F 2.019 +(arning message, and, if the)-.1 F F1(checkjobs)4.519 E F0 2.019 +(option is)4.519 F .458(enabled, lists the jobs and their statuses.)108 +391.2 R(The)5.458 E F1(jobs)2.958 E F0 .459 +(command may then be used to inspect their status.)2.958 F .459(If a) +5.459 F .604(second attempt to e)108 403.2 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 403.2 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E/F4 -10.95/Times-Bold@0 SF(PR)72 420 Q(OMPTING)-.329 E F0 .645(When e)108 432 -R -.15(xe)-.15 G .645(cuting interacti).15 F -.15(ve)-.25 G(ly).15 E(,) --.65 E F1(bash)3.145 E F0 .645(displays the primary prompt)3.145 F F3 -(PS1)3.145 E F0 .645(when it is ready to read a command,)2.895 F 1.825 -(and the secondary prompt)108 444 R F3(PS2)4.325 E F0 1.825 -(when it needs more input to complete a command.)4.075 F F1(Bash)6.826 E -F0(allo)4.326 E 1.826(ws these)-.25 F 1.499(prompt strings to be custom\ +(and an)108 415.2 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E/F4 +10.95/Times-Bold@0 SF(PR)72 432 Q(OMPTING)-.329 E F0 .644(When e)108 444 +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(when it is ready to read a command,)2.895 F 1.826 +(and the secondary prompt)108 456 R F3(PS2)4.326 E F0 1.825 +(when it needs more input to complete a command.)4.076 F F1(Bash)6.825 E +F0(allo)4.325 E 1.825(ws these)-.25 F 1.499(prompt strings to be custom\ ized by inserting a number of backslash-escaped special characters that\ - are)108 456 R(decoded as follo)108 468 Q(ws:)-.25 E F1(\\a)144 480 Q F0 -(an ASCII bell character \(07\))28.22 E F1(\\d)144 492 Q F0 + are)108 468 R(decoded as follo)108 480 Q(ws:)-.25 E F1(\\a)144 492 Q F0 +(an ASCII bell character \(07\))28.22 E F1(\\d)144 504 Q F0 (the date in "W)27.66 E(eekday Month Date" format \(e.g., "T)-.8 E -(ue May 26"\))-.45 E F1(\\D{)144 504 Q F2(format)A F1(})A F0(the)180 516 -Q F2(format)3.926 E F0 1.426(is passed to)3.926 F F2(strftime)3.926 E F0 +(ue May 26"\))-.45 E F1(\\D{)144 516 Q F2(format)A F1(})A F0(the)180 528 +Q F2(format)3.927 E F0 1.427(is passed to)3.927 F F2(strftime)3.927 E F0 1.427(\(3\) and the result is inserted into the prompt string; an)B -(empty)180 528 Q F2(format)2.5 E F0 +(empty)180 540 Q F2(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 540 Q F0 -(an ASCII escape character \(033\))28.78 E F1(\\h)144 552 Q F0 -(the hostname up to the \214rst `.)27.66 E(')-.7 E F1(\\H)144 564 Q F0 -(the hostname)25.44 E F1(\\j)144 576 Q F0 +(The braces are required)5 E F1(\\e)144 552 Q F0 +(an ASCII escape character \(033\))28.78 E F1(\\h)144 564 Q F0 +(the hostname up to the \214rst `.)27.66 E(')-.7 E F1(\\H)144 576 Q F0 +(the hostname)25.44 E F1(\\j)144 588 Q F0 (the number of jobs currently managed by the shell)29.89 E F1(\\l)144 -588 Q F0(the basename of the shell')30.44 E 2.5(st)-.55 G(erminal de) --2.5 E(vice name)-.25 E F1(\\n)144 600 Q F0(ne)27.66 E(wline)-.25 E F1 -(\\r)144 612 Q F0(carriage return)28.78 E F1(\\s)144 624 Q F0 +600 Q F0(the basename of the shell')30.44 E 2.5(st)-.55 G(erminal de) +-2.5 E(vice name)-.25 E F1(\\n)144 612 Q F0(ne)27.66 E(wline)-.25 E F1 +(\\r)144 624 Q F0(carriage return)28.78 E F1(\\s)144 636 Q F0 (the name of the shell, the basename of)29.33 E F1($0)2.5 E F0 (\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E F1(\\t)144 -636 Q F0(the current time in 24-hour HH:MM:SS format)29.89 E F1(\\T)144 -648 Q F0(the current time in 12-hour HH:MM:SS format)26.55 E F1(\\@)144 -660 Q F0(the current time in 12-hour am/pm format)23.92 E F1(\\A)144 672 -Q F0(the current time in 24-hour HH:MM format)26 E F1(\\u)144 684 Q F0 -(the username of the current user)27.66 E F1(\\v)144 696 Q F0(the v) -28.22 E(ersion of)-.15 E F1(bash)2.5 E F0(\(e.g., 2.00\))2.5 E F1(\\V) -144 708 Q F0(the release of)26 E 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(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(32)200.665 E 0 Cg EP +648 Q F0(the current time in 24-hour HH:MM:SS format)29.89 E F1(\\T)144 +660 Q F0(the current time in 12-hour HH:MM:SS format)26.55 E F1(\\@)144 +672 Q F0(the current time in 12-hour am/pm format)23.92 E F1(\\A)144 684 +Q F0(the current time in 24-hour HH:MM format)26 E F1(\\u)144 696 Q F0 +(the username of the current user)27.66 E F1(\\v)144 708 Q F0(the v) +28.22 E(ersion of)-.15 E F1(bash)2.5 E F0(\(e.g., 2.00\))2.5 E +(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(32)200.665 E 0 Cg EP %%Page: 33 33 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(\\w)144 84 Q F0 4.288(the current w)26 F -4.288(orking directory)-.1 F 6.787(,w)-.65 G(ith)-6.787 E F1($HOME)6.787 -E F0(abbre)6.787 E 4.287(viated with a tilde \(uses the)-.25 F F1($PR) -180 96 Q(OMPT_DIR)-.3 E(TRIM)-.4 E F0 -.25(va)2.5 G(riable\)).25 E F1 -(\\W)144 108 Q F0(the basename of the current w)23.22 E +-.35 E/F1 10/Times-Bold@0 SF(\\V)144 84 Q F0(the release of)26 E 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 96 Q F0 4.287(the current w) +26 F 4.287(orking directory)-.1 F 6.787(,w)-.65 G(ith)-6.787 E F1($HOME) +6.787 E F0(abbre)6.787 E 4.288(viated with a tilde \(uses the)-.25 F F1 +($PR)180 108 Q(OMPT_DIR)-.3 E(TRIM)-.4 E F0 -.25(va)2.5 G(riable\)).25 E +F1(\\W)144 120 Q F0(the basename of the current w)23.22 E (orking directory)-.1 E 2.5(,w)-.65 G(ith)-2.5 E F1($HOME)2.5 E F0 -(abbre)2.5 E(viated with a tilde)-.25 E F1(\\!)144 120 Q F0 -(the history number of this command)29.89 E F1(\\#)144 132 Q F0 -(the command number of this command)28.22 E F1(\\$)144 144 Q F0 +(abbre)2.5 E(viated with a tilde)-.25 E F1(\\!)144 132 Q F0 +(the history number of this command)29.89 E F1(\\#)144 144 Q F0 +(the command number of this command)28.22 E F1(\\$)144 156 Q F0 (if the ef)28.22 E(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 156 Q/F2 10 +(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F1($)2.5 E(\\)144 168 Q/F2 10 /Times-Italic@0 SF(nnn)A F0 (the character corresponding to the octal number)18.22 E F2(nnn)2.5 E F1 -(\\\\)144 168 Q F0 2.5(ab)30.44 G(ackslash)-2.5 E F1(\\[)144 180 Q F0 +(\\\\)144 180 Q F0 2.5(ab)30.44 G(ackslash)-2.5 E F1(\\[)144 192 Q F0 (be)29.89 E 1.257(gin a sequence of non-printing characters, which coul\ d be used to embed a terminal)-.15 F(control sequence into the prompt) -180 192 Q F1(\\])144 204 Q F0(end a sequence of non-printing characters) -29.89 E .12(The command number and the history number are usually dif) -108 220.8 R .119(ferent: the history number of a command is its)-.25 F +180 204 Q F1(\\])144 216 Q F0(end a sequence of non-printing characters) +29.89 E .119(The command number and the history number are usually dif) +108 232.8 R .12(ferent: the history number of a command is its)-.25 F 1.585(position in the history list, which may include commands restored\ - from the history \214le \(see)108 232.8 R/F3 9/Times-Bold@0 SF(HIST) -4.085 E(OR)-.162 E(Y)-.315 E F0(belo)108 244.8 Q .541(w\), while the co\ + from the history \214le \(see)108 244.8 R/F3 9/Times-Bold@0 SF(HIST) +4.084 E(OR)-.162 E(Y)-.315 E F0(belo)108 256.8 Q .541(w\), while the co\ mmand number is the position in the sequence of commands e)-.25 F -.15 -(xe)-.15 G .54(cuted during the cur).15 F(-)-.2 E .546 -(rent shell session.)108 256.8 R .546 +(xe)-.15 G .541(cuted during the cur).15 F(-)-.2 E .546 +(rent shell session.)108 268.8 R .546 (After the string is decoded, it is e)5.546 F .546 (xpanded via parameter e)-.15 F .546(xpansion, command substitu-)-.15 F -.352(tion, arithmetic e)108 268.8 R .352(xpansion, and quote remo)-.15 F +.351(tion, arithmetic e)108 280.8 R .352(xpansion, and quote remo)-.15 F -.25(va)-.15 G .352(l, subject to the v).25 F .352(alue of the)-.25 F F1 -(pr)2.852 E(omptv)-.18 E(ars)-.1 E F0 .351(shell option \(see the)2.852 -F(description of the)108 280.8 Q F1(shopt)2.5 E F0(command under)2.5 E +(pr)2.852 E(omptv)-.18 E(ars)-.1 E F0 .352(shell option \(see the)2.852 +F(description of the)108 292.8 Q F1(shopt)2.5 E F0(command under)2.5 E F3(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).) --.25 E/F4 10.95/Times-Bold@0 SF(READLINE)72 297.6 Q F0 .15 +-.25 E/F4 10.95/Times-Bold@0 SF(READLINE)72 309.6 Q F0 .151 (This is the library that handles reading input when using an interacti) -108 309.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 .067(is gi)108 321.6 R -.15 -(ve)-.25 G 2.567(na).15 G 2.566(ts)-2.567 G .066(hell in)-2.566 F -.2 +108 321.6 R .45 -.15(ve s)-.25 H .15(hell, unless the).15 F F1 +(\255\255noediting)2.65 E F0(option)2.65 E .066(is gi)108 333.6 R -.15 +(ve)-.25 G 2.566(na).15 G 2.566(ts)-2.566 G .066(hell in)-2.566 F -.2 (vo)-.4 G 2.566(cation. By).2 F(def)2.566 E .066 (ault, the line editing commands are similar to those of emacs.)-.1 F -2.566(Av)5.066 G(i-style)-2.566 E .565(line editing interf)108 333.6 R -.565(ace is also a)-.1 F -.25(va)-.2 G 3.065(ilable. T).25 F 3.065(ot) +2.567(Av)5.067 G(i-style)-2.567 E .566(line editing interf)108 345.6 R +.566(ace is also a)-.1 F -.25(va)-.2 G 3.065(ilable. T).25 F 3.065(ot) -.8 G .565(urn of)-3.065 F 3.065(fl)-.25 G .565 -(ine editing after the shell is running, use the)-3.065 F F1 .566 -(+o emacs)3.066 F F0(or)108 345.6 Q F1(+o vi)2.5 E F0(options to the)2.5 +(ine editing after the shell is running, use the)-3.065 F F1 .565 +(+o emacs)3.065 F F0(or)108 357.6 Q 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 \(see).2 E F3(SHELL B)2.5 E(UIL) -.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F1 -(Readline Notation)87 362.4 Q F0 .568 -(In this section, the emacs-style notation is used to denote k)108 374.4 -R -.15(ey)-.1 G(strok).15 E 3.067(es. Control)-.1 F -.1(ke)3.067 G .567 -(ys are denoted by C\255)-.05 F F2 -.1(ke)C(y)-.2 E F0(,)A 1.152 -(e.g., C\255n means Control\255N.)108 386.4 R(Similarly)6.152 E(,)-.65 E -F2(meta)4.032 E F0 -.1(ke)3.913 G 1.153(ys are denoted by M\255)-.05 F -F2 -.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 398.4 S .831 -(yboards without a)-.05 F F2(meta)3.711 E F0 -.1(ke)3.591 G 2.131 -.65 -(y, M)-.05 H.65 E F2(x)A F0 .831(means ESC)3.331 F F2(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 F2(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 410.4 R F2 .599(meta pr)3.099 F -(e\214x)-.37 E F0 5.599(.T)C .599(he combination M\255C\255)-5.599 F F2 -(x)A F0 .599(means ESC\255Control\255)3.099 F F2(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 422.4 Q .3 -.15(ey w)-.1 H +(Readline Notation)87 374.4 Q F0 .567 +(In this section, the emacs-style notation is used to denote k)108 386.4 +R -.15(ey)-.1 G(strok).15 E 3.068(es. Control)-.1 F -.1(ke)3.068 G .568 +(ys are denoted by C\255)-.05 F F2 -.1(ke)C(y)-.2 E F0(,)A 1.153 +(e.g., C\255n means Control\255N.)108 398.4 R(Similarly)6.153 E(,)-.65 E +F2(meta)4.033 E F0 -.1(ke)3.913 G 1.153(ys are denoted by M\255)-.05 F +F2 -.1(ke)C(y)-.2 E F0 3.652(,s)C 3.652(oM)-3.652 G 1.152 +(\255x means Meta\255X.)-3.652 F(\(On)6.152 E -.1(ke)108 410.4 S .83 +(yboards without a)-.05 F F2(meta)3.71 E F0 -.1(ke)3.59 G 2.13 -.65 +(y, M)-.05 H.65 E F2(x)A F0 .83(means ESC)3.33 F F2(x)3.33 E F0 3.33 +(,i)C .831(.e., press the Escape k)-3.33 F 1.131 -.15(ey t)-.1 H .831 +(hen the).15 F F2(x)4.101 E F0 -.1(ke)3.861 G 4.631 -.65(y. T)-.05 H +.831(his mak).65 F(es)-.1 E .6(ESC the)108 422.4 R F2 .6(meta pr)3.1 F +(e\214x)-.37 E F0 5.6(.T)C .6(he combination M\255C\255)-5.6 F F2(x)A F0 +.599(means ESC\255Control\255)3.099 F F2(x)A F0 3.099(,o)C 3.099(rp) +-3.099 G .599(ress the Escape k)-3.099 F .899 -.15(ey t)-.1 H .599 +(hen hold).15 F(the Control k)108 434.4 Q .3 -.15(ey w)-.1 H (hile pressing the).15 E F2(x)3.27 E F0 -.1(ke)3.03 G -.65(y.)-.05 G(\)) -.65 E .62(Readline commands may be gi)108 439.2 R -.15(ve)-.25 G 3.119 +.65 E .619(Readline commands may be gi)108 451.2 R -.15(ve)-.25 G 3.119 (nn).15 G(umeric)-3.119 E F2(ar)3.119 E(guments)-.37 E F0 3.119(,w).27 G -.619(hich normally act as a repeat count.)-3.119 F(Sometimes,)5.619 E -(ho)108 451.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 +.619(hich normally act as a repeat count.)-3.119 F(Sometimes,)5.62 E(ho) +108 463.2 Q(we)-.25 E -.15(ve)-.25 G 1.419 -.4(r, i).15 H 3.119(ti).4 G +3.119(st)-3.119 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 463.2 R 1.018 +(ument to a command that).18 F 1.018(acts in the forw)108 475.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 475.2 Q +1.018(auses that command to act in a backw)-3.518 F 1.019 +(ard direction.)-.1 F(Com-)6.019 E(mands whose beha)108 487.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 492 R F2 +-.25 E -.65(w.)-.25 G .812(When a command is described as)108 504 R F2 (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 F2 -(yank-)-3.312 E(ing)108 504 Q F0 2.529(\). The)B .029(killed te)2.529 F +(xt deleted is sa)-.15 F -.15(ve)-.2 G 3.311(df).15 G .811 +(or possible future retrie)-3.311 F -.25(va)-.25 G 3.311(l\().25 G F2 +(yank-)-3.311 E(ing)108 516 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 F2 .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 516 R .567(ed all at once.)-.1 F .567 +-.15 F .567(which can be yank)108 528 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 528 Q F1(Readline Initialization)87 544.8 Q F0 .091(Readline is cus\ -tomized by putting commands in an initialization \214le \(the)108 556.8 -R F2(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 F .091 -(name of this \214le)2.591 F .196(is tak)108 568.8 R .196(en from the v) +108 540 Q F1(Readline Initialization)87 556.8 Q F0 .091(Readline is cus\ +tomized by putting commands in an initialization \214le \(the)108 568.8 +R F2(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 F .092 +(name of this \214le)2.591 F .197(is tak)108 580.8 R .196(en from the v) -.1 F .196(alue of the)-.25 F F3(INPUTRC)2.696 E F0 -.25(va)2.446 G 2.696(riable. If).25 F .196(that v)2.696 F .196 (ariable is unset, the def)-.25 F .196(ault is)-.1 F F2(~/.inputr)2.696 -E(c)-.37 E F0 5.196(.W).31 G .197(hen a)-5.196 F 1.034(program which us\ +E(c)-.37 E F0 5.196(.W).31 G .196(hen a)-5.196 F 1.034(program which us\ es the readline library starts up, the initialization \214le is read, a\ -nd the k)108 580.8 R 1.334 -.15(ey b)-.1 H 1.034(indings and).15 F -.25 -(va)108 592.8 S 1.149(riables are set.).25 F 1.149(There are only a fe) -6.149 F 3.649(wb)-.25 G 1.149(asic constructs allo)-3.649 F 1.15 -(wed in the readline initialization \214le.)-.25 F(Blank)6.15 E .737 -(lines are ignored.)108 604.8 R .737(Lines be)5.737 F .737 +nd the k)108 592.8 R 1.335 -.15(ey b)-.1 H 1.035(indings and).15 F -.25 +(va)108 604.8 S 1.15(riables are set.).25 F 1.15(There are only a fe) +6.15 F 3.649(wb)-.25 G 1.149(asic constructs allo)-3.649 F 1.149 +(wed in the readline initialization \214le.)-.25 F(Blank)6.149 E .736 +(lines are ignored.)108 616.8 R .737(Lines be)5.737 F .737 (ginning with a)-.15 F F1(#)3.237 E F0 .737(are comments.)3.237 F .737 -(Lines be)5.737 F .737(ginning with a)-.15 F F1($)3.237 E F0 .736 -(indicate conditional)3.236 F 2.5(constructs. Other)108 616.8 R +(Lines be)5.737 F .737(ginning with a)-.15 F F1($)3.237 E F0 .737 +(indicate conditional)3.237 F 2.5(constructs. Other)108 628.8 R (lines denote k)2.5 E .3 -.15(ey b)-.1 H(indings and v).15 E -(ariable settings.)-.25 E .986(The def)108 633.6 R .986(ault k)-.1 F +(ariable settings.)-.25 E .987(The def)108 645.6 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 645.6 Q -(wn commands and bindings.)-.25 E -.15(Fo)108 662.4 S 2.5(re).15 G -(xample, placing)-2.65 E(M\255Control\255u: uni)144 679.2 Q -.15(ve)-.25 -G(rsal\255ar).15 E(gument)-.18 E(or)108 691.2 Q(C\255Meta\255u: uni)144 -703.2 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 715.2 +(programs that use this library may)3.487 F(add their o)108 657.6 Q +(wn commands and bindings.)-.25 E -.15(Fo)108 674.4 S 2.5(re).15 G +(xample, placing)-2.65 E(M\255Control\255u: uni)144 691.2 Q -.15(ve)-.25 +G(rsal\255ar).15 E(gument)-.18 E(or)108 703.2 Q(C\255Meta\255u: uni)144 +715.2 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 727.2 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.5 E(sal\255ar)-.1 E(gument)-.37 E F0(.).68 E(GNU Bash-4.0)72 @@ -4118,12 +4119,12 @@ Q F2(inputr)2.51 E(c)-.37 E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E 1.261(The follo)108 84 R 1.261 +-.35 E 1.26(The follo)108 84 R 1.261 (wing symbolic character names are recognized:)-.25 F/F1 10 /Times-Italic@0 SF -.4(RU)3.761 G(BOUT).4 E F0(,)1.27 E F1(DEL)3.761 E F0(,).53 E F1(ESC)3.761 E F0(,).72 E F1(LFD)3.761 E F0(,).28 E F1 -(NEWLINE)3.76 E F0(,).73 E F1(RET)3.76 E F0(,)1.27 E F1(RETURN)108 96 Q -F0(,)1.1 E F1(SPC)2.5 E F0(,).72 E F1(SP)2.5 E -.3(AC)-.9 G(E).3 E F0 +(NEWLINE)3.761 E F0(,).73 E F1(RET)3.761 E F0(,)1.27 E F1(RETURN)108 96 +Q F0(,)1.1 E F1(SPC)2.5 E F0(,).72 E F1(SP)2.5 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 112.8 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 @@ -4133,47 +4134,47 @@ F -.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G 2.709(eb)-2.709 G .209 (The syntax for controlling k)108 153.6 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 .382(command or the te)108 165.6 R .383(xt of a macro and a k) +5.366 F .383(command or the te)108 165.6 R .383(xt of a macro and a k) -.15 F .683 -.15(ey s)-.1 H .383 (equence to which it should be bound. The name may be speci-).15 F .853 (\214ed in one of tw)108 177.6 R 3.353(ow)-.1 G .853 (ays: as a symbolic k)-3.453 F 1.153 -.15(ey n)-.1 H .853 (ame, possibly with).15 F F1(Meta\255)3.353 E F0(or)3.353 E F1(Contr) 3.353 E(ol\255)-.45 E F0(pre\214x)3.353 E .853(es, or as a k)-.15 F -.15 -(ey)-.1 G(sequence.)108 189.6 Q 1.541(When using the form)108 206.4 R F2 --.1(ke)4.041 G(yname).1 E F0(:)A F1(function\255name).833 E F0(or)4.041 +(ey)-.1 G(sequence.)108 189.6 Q 1.542(When using the form)108 206.4 R F2 +-.1(ke)4.042 G(yname).1 E F0(:)A F1(function\255name).833 E F0(or)4.042 E F1(macr)4.042 E(o)-.45 E F0(,)A F1 -.1(ke)4.042 G(yname)-.2 E F0 1.542 -(is the name of a k)4.222 F 1.842 -.15(ey s)-.1 H 1.542(pelled out in) +(is the name of a k)4.222 F 1.841 -.15(ey s)-.1 H 1.541(pelled out in) .15 F 2.5(English. F)108 218.4 R(or e)-.15 E(xample:)-.15 E (Control-u: uni)144 242.4 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(Meta-Rubout: backw)144 254.4 Q(ard-kill-w)-.1 E(ord)-.1 E -(Control-o: "> output")144 266.4 Q .699(In the abo)108 283.2 R .998 -.15 +(Control-o: "> output")144 266.4 Q .698(In the abo)108 283.2 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 295.2 Q F2 -(backward\255kill\255w)2.758 E(ord)-.1 E F0 2.758(,a)C(nd)-2.758 E F1 -(C\255o)2.598 E F0 .258(is bound to run the macro e)2.938 F .259 +(backward\255kill\255w)2.759 E(ord)-.1 E F0 2.759(,a)C(nd)-2.759 E F1 +(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 307.2 Q(xt)-.15 E/F3 10/Courier@0 SF 6(>o)2.5 G(utput)-6 E F0 -(into the line\).)2.5 E .056(In the second form,)108 324 R F2("k)2.556 E -(eyseq")-.1 E F0(:)A F1(function\255name).833 E F0(or)2.556 E F1(macr) -2.556 E(o)-.45 E F0(,)A F2 -.1(ke)2.556 G(yseq).1 E F0(dif)2.555 E .055 -(fers from)-.25 F F2 -.1(ke)2.555 G(yname).1 E F0(abo)2.555 E .355 -.15 -(ve i)-.15 H 2.555(nt).15 G .055(hat strings)-2.555 F 1.284 +(into the line\).)2.5 E .055(In the second form,)108 324 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 +(ve i)-.15 H 2.556(nt).15 G .056(hat strings)-2.556 F 1.284 (denoting an entire k)108 336 R 1.584 -.15(ey s)-.1 H 1.284(equence may\ be speci\214ed by placing the sequence within double quotes.).15 F -(Some)6.284 E .386(GNU Emacs style k)108 348 R .686 -.15(ey e)-.1 H .385 -(scapes can be used, as in the follo).15 F .385(wing e)-.25 F .385 -(xample, b)-.15 F .385(ut the symbolic character names)-.2 F +(Some)6.284 E .385(GNU Emacs style k)108 348 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 360 Q("\\C\255u": uni)144 384 Q -.15(ve)-.25 G (rsal\255ar).15 E(gument)-.18 E ("\\C\255x\\C\255r": re\255read\255init\255\214le)144 396 Q -("\\e[11~": "Function K)144 408 Q .3 -.15(ey 1)-.25 H(").15 E .314 -(In this e)108 424.8 R(xample,)-.15 E F1(C\255u)2.654 E F0 .314(is ag) -3.064 F .315(ain bound to the function)-.05 F F2(uni)2.815 E -.1(ve)-.1 +("\\e[11~": "Function K)144 408 Q .3 -.15(ey 1)-.25 H(").15 E .315 +(In this e)108 424.8 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 -.315(is bound to the func-)3.545 F(tion)108 436.8 Q F2 -.18(re)2.5 G +.314(is bound to the func-)3.544 F(tion)108 436.8 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 @@ -4193,62 +4194,63 @@ F1(nnn)A F0(the eight-bit character whose v)18.22 E(alue is the octal v) -.25 E(alue)-.25 E F1(nnn)2.5 E F0(\(one to three digits\))2.5 E F2(\\x) 144 662.4 Q F1(HH)A F0(the eight-bit character whose v)13.78 E (alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F1(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.142 +(\(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 679.2 R 1.141(xt of a macro, single or double\ - quotes must be used to indicate a macro de\214nition.)-.15 F .089 -(Unquoted te)108 691.2 R .089(xt is assumed to be a function name.)-.15 -F .09(In the macro body)5.089 F 2.59(,t)-.65 G .09 -(he backslash escapes described abo)-2.59 F -.15(ve)-.15 G(are e)108 + quotes must be used to indicate a macro de\214nition.)-.15 F .09 +(Unquoted te)108 691.2 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 703.2 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 -F2(Bash)108 720 Q F0(allo)2.93 E .43(ws the current readline k)-.25 F -.73 -.15(ey b)-.1 H .429(indings to be displayed or modi\214ed with the) -.15 F F2(bind)2.929 E F0 -.2(bu)2.929 G .429(iltin command.).2 F -(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(34)200.665 E 0 Cg EP +F2(Bash)108 720 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 F2(bind)2.93 E F0 +-.2(bu)2.93 G .43(iltin command.).2 F(GNU Bash-4.0)72 768 Q(2008 July 6) +150.675 E(34)200.665 E 0 Cg EP %%Page: 35 35 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E .045(The editing mode may be switched during interacti)108 84 R -.345 -.15(ve u)-.25 H .046(se by using the).15 F/F1 10/Times-Bold@0 SF -2.546 E F0 .046(option to the)2.546 F F1(set)2.546 E F0 -.2(bu) -2.546 G .046(iltin command).2 F(\(see)108 96 Q/F2 9/Times-Bold@0 SF +-.35 E .046(The editing mode may be switched during interacti)108 84 R +.346 -.15(ve u)-.25 H .046(se by using the).15 F/F1 10/Times-Bold@0 SF +2.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 96 Q/F2 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 112.8 Q(ariables)-.92 E F0 .044(Readline has v)108 +E F1(Readline V)87 112.8 Q(ariables)-.92 E F0 .043(Readline has v)108 124.8 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/F3 10/Times-Italic@0 SF(inpu-)2.553 E +(riable may be set in the).25 F/F3 10/Times-Italic@0 SF(inpu-)2.554 E (tr)108 136.8 Q(c)-.37 E F0(\214le with a statement of the form)2.81 E F1(set)144 153.6 Q F3(variable\255name value)2.5 E F0 .79 (Except where noted, readline v)108 170.4 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 .449(nized v)108 182.4 R .448 +.05 F(Unrecog-)5.79 E .448(nized v)108 182.4 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 .448 -(alues, "on" \(case-insensi-)-.25 F(ti)108 194.4 Q -.15(ve)-.25 G .467 +-.25 F .448(alue is read, empty or null v)-.25 F .449 +(alues, "on" \(case-insensi-)-.25 F(ti)108 194.4 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 .468 -(he v)-5.468 F .468(ariables and their def)-.25 F(ault)-.1 E -.25(va)108 -206.4 S(lues are:).25 E F1(bell\255style \(audible\))108 223.2 Q F0 .011 +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 +206.4 S(lues are:).25 E F1(bell\255style \(audible\))108 223.2 Q F0 .01 (Controls what happens when readline w)144 235.2 R .011 -(ants to ring the terminal bell.)-.1 F .01(If set to)5.01 F F1(none)2.51 -E F0 2.51(,r)C .01(eadline ne)-2.51 F -.15(ve)-.25 G(r).15 E .94 -(rings the bell.)144 247.2 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 259.2 Q 2.5(sb)-.55 G(ell.) --2.5 E F1(bind\255tty\255special\255chars \(On\))108 271.2 Q F0 .056 -(If set to)144 283.2 R F1(On)2.556 E F0 2.556(,r)C .056(eadline attempt\ -s to bind the control characters treated specially by the k)-2.556 F -(ernel')-.1 E 2.555(st)-.55 G(ermi-)-2.555 E(nal dri)144 295.2 Q -.15 +(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 247.2 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 259.2 Q 2.5(sb)-.55 G +(ell.)-2.5 E F1(bind\255tty\255special\255chars \(On\))108 271.2 Q F0 +.055(If set to)144 283.2 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 295.2 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(comment\255begin \(`)108 307.2 Q(`#')-.63 E('\)) --.63 E F0 .884(The string that is inserted when the readline)144 319.2 R -F1(insert\255comment)3.385 E F0 .885(command is e)3.385 F -.15(xe)-.15 G -3.385(cuted. This).15 F(com-)3.385 E(mand is bound to)144 331.2 Q F1 +-.63 E F0 .885(The string that is inserted when the readline)144 319.2 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 331.2 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\255ignor)108 343.2 Q (e\255case \(Off\))-.18 E F0(If set to)144 355.2 Q F1(On)2.5 E F0 2.5 @@ -4256,55 +4258,55 @@ F1(insert\255comment)3.385 E F0 .885(command is e)3.385 F -.15(xe)-.15 G insensiti)-2.5 E .3 -.15(ve f)-.25 H(ashion.).05 E F1(completion\255pr) 108 367.2 Q(e\214x\255display\255length \(0\))-.18 E F0 .829(The length\ in characters of the common pre\214x of a list of possible completions\ - that is displayed)144 379.2 R 1.274(without modi\214cation.)144 391.2 R -1.274(When set to a v)6.274 F 1.274 -(alue greater than zero, common pre\214x)-.25 F 1.275 + that is displayed)144 379.2 R 1.275(without modi\214cation.)144 391.2 R +1.275(When set to a v)6.275 F 1.274 +(alue greater than zero, common pre\214x)-.25 F 1.274 (es longer than this)-.15 F -.25(va)144 403.2 S(lue are replaced with a\ n ellipsis when displaying possible completions.).25 E F1 -(completion\255query\255items \(100\))108 415.2 Q F0 .53 -(This determines when the user is queried about vie)144 427.2 R .529 -(wing the number of possible completions gen-)-.25 F .56(erated by the) -144 439.2 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 451.2 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 463.2 S .237 +(completion\255query\255items \(100\))108 415.2 Q F0 .529 +(This determines when the user is queried about vie)144 427.2 R .53 +(wing the number of possible completions gen-)-.25 F .561(erated by the) +144 439.2 R F1(possible\255completions)3.061 E F0 3.061(command. It) +3.061 F .561(may be set to an)3.061 F 3.06(yi)-.15 G(nte)-3.06 E .56 +(ger v)-.15 F .56(alue greater than or)-.25 F .782(equal to zero.)144 +451.2 R .783(If the number of possible completions is greater than or e\ +qual to the v)5.782 F .783(alue of this)-.25 F -.25(va)144 463.2 S .237 (riable, the user is ask).25 F .237(ed whether or not he wishes to vie) -.1 F 2.737(wt)-.25 G .237(hem; otherwise the)-2.737 F 2.737(ya)-.15 G .237(re simply listed)-2.737 F(on the terminal.)144 475.2 Q F1(con)108 -487.2 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .613(If set to)144 499.2 -R F1(On)3.113 E F0 3.113(,r)C .613(eadline will con)-3.113 F -.15(ve)-.4 -G .613(rt characters with the eighth bit set to an ASCII k).15 F .912 --.15(ey s)-.1 H .612(equence by).15 F .541 +487.2 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)144 499.2 +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 511.2 R .541(fect, using escape as the)-.25 F F3 .542(meta pr)3.042 +144 511.2 R .541(fect, using escape as the)-.25 F F3 .541(meta pr)3.041 F(e-)-.37 E<8c78>144 523.2 Q F0(\).)A F1(disable\255completion \(Off\)) 108 535.2 Q F0 .038(If set to)144 547.2 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 559.2 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E -F0(.)A F1(editing\255mode \(emacs\))108 571.2 Q F0 .252 +F0(.)A F1(editing\255mode \(emacs\))108 571.2 Q F0 .253 (Controls whether readline be)144 583.2 R .253(gins with a set of k)-.15 -F .553 -.15(ey b)-.1 H .253(indings similar to).15 F F3(emacs)2.753 E F0 -(or)2.753 E F3(vi)2.753 E F0(.)A F1(editing\255mode)5.253 E F0 +F .553 -.15(ey b)-.1 H .253(indings similar to).15 F F3(emacs)2.752 E F0 +(or)2.752 E F3(vi)2.752 E F0(.)A F1(editing\255mode)5.252 E F0 (can be set to either)144 595.2 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E -F0(.)A F1(enable\255k)108 607.2 Q(eypad \(Off\))-.1 E F0 .893 +F0(.)A F1(enable\255k)108 607.2 Q(eypad \(Off\))-.1 E F0 .892 (When set to)144 619.2 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 +.893(pad when it is called.).15 F .893(Some sys-)5.893 F (tems need this to enable the arro)144 631.2 Q 2.5(wk)-.25 G -.15(ey) -2.6 G(s.).15 E F1(expand\255tilde \(Off\))108 643.2 Q F0(If set to)144 655.2 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 667.2 Q(eser)-.18 E -.1(ve)-.1 G -(\255point \(Off\)).1 E F0 1.492(If set to)144 679.2 R F1(on)3.992 E F0 -3.992(,t)C 1.493(he history code attempts to place point at the same lo\ -cation on each history line)-3.992 F(retrie)144 691.2 Q -.15(ve)-.25 G +(\255point \(Off\)).1 E F0 1.493(If set to)144 679.2 R F1(on)3.993 E F0 +3.993(,t)C 1.493(he history code attempts to place point at the same lo\ +cation on each history line)-3.993 F(retrie)144 691.2 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 \(0\))108 -703.2 Q F0 .463(Set the maximum number of history entries sa)144 715.2 R +703.2 Q F0 .462(Set the maximum number of history entries sa)144 715.2 R -.15(ve)-.2 G 2.963(di).15 G 2.963(nt)-2.963 G .463(he history list.) --2.963 F .462(If set to zero, the number of)5.463 F +-2.963 F .463(If set to zero, the number of)5.463 F (entries in the history list is not limited.)144 727.2 Q(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(35)200.665 E 0 Cg EP %%Page: 36 36 @@ -4313,37 +4315,37 @@ BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) -.35 E/F1 10/Times-Bold@0 SF(horizontal\255scr)108 84 Q -(oll\255mode \(Off\))-.18 E F0 .448(When set to)144 96 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 +(oll\255mode \(Off\))-.18 E F0 .449(When set to)144 96 R F1(On)2.949 E +F0 2.949(,m)C(ak)-2.949 E .448 +(es readline use a single line for display)-.1 F 2.948(,s)-.65 G .448 (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 108 R(w)-.25 E(line.)144 120 Q F1(input\255meta \(Off\))108 132 -Q F0 .227(If set to)144 144 R F1(On)2.727 E F0 2.727(,r)C .228(eadline \ +Q F0 .228(If set to)144 144 R F1(On)2.728 E F0 2.728(,r)C .227(eadline \ will enable eight-bit input \(that is, it will not strip the high bit f\ -rom the char)-2.727 F(-)-.2 E .957(acters it reads\), re)144 156 R -.05 +rom the char)-2.728 F(-)-.2 E .956(acters it reads\), re)144 156 R -.05 (ga)-.15 G .956(rdless of what the terminal claims it can support.).05 F -.956(The name)5.956 F F1(meta\255\215ag)3.456 E F0 .956(is a)3.456 F +.957(The name)5.956 F F1(meta\255\215ag)3.457 E F0 .957(is a)3.457 F (synon)144 168 Q(ym for this v)-.15 E(ariable.)-.25 E F1(isear)108 180 Q (ch\255terminators \(`)-.18 E(`C\255[C\255J')-.63 E('\))-.63 E F0 .439(\ The string of characters that should terminate an incremental search wi\ -thout subsequently e)144 192 R -.15(xe)-.15 G(cut-).15 E .935 +thout subsequently e)144 192 R -.15(xe)-.15 G(cut-).15 E .934 (ing the character as a command.)144 204 R .935(If this v)5.935 F .935 -(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.434(nav).15 G .934 -(alue, the characters)-3.684 F/F2 10/Times-Italic@0 SF(ESC)3.434 E F0 +(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.435(nav).15 G .935 +(alue, the characters)-3.685 F/F2 10/Times-Italic@0 SF(ESC)3.435 E F0 (and)144 216 Q F2(C\255J)2.5 E F0(will terminate an incremental search.) -2.5 E F1 -.1(ke)108 228 S(ymap \(emacs\)).1 E F0 2.02 +2.5 E F1 -.1(ke)108 228 S(ymap \(emacs\)).1 E F0 2.021 (Set the current readline k)144 240 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.021(emacs, emacs\255standar)4.521 F(d,)-.37 E -.069(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 252 R F0 2.568 +(map names is).15 F F2 2.02(emacs, emacs\255standar)4.52 F(d,)-.37 E +.068(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 252 R F0 2.568 (,a)C(nd)-2.568 E F2(vi\255insert)2.568 E F0(.).68 E F2(vi)5.068 E F0 .068(is equi)2.568 F -.25(va)-.25 G .068(lent to).25 F F2(vi\255command) -2.568 E F0(;)A F2(emacs)2.568 E F0 1.543(is equi)144 264 R -.25(va)-.25 -G 1.543(lent to).25 F F2(emacs\255standar)4.044 E(d)-.37 E F0 6.544(.T)C +2.569 E F0(;)A F2(emacs)2.569 E F0 1.544(is equi)144 264 R -.25(va)-.25 +G 1.544(lent to).25 F F2(emacs\255standar)4.044 E(d)-.37 E F0 6.544(.T)C 1.544(he def)-6.544 F 1.544(ault v)-.1 F 1.544(alue is)-.25 F F2(emacs) 4.044 E F0 4.044(;t).27 G 1.544(he v)-4.044 F 1.544(alue of)-.25 F F1 -(editing\255mode)4.044 E F0(also)4.044 E(af)144 276 Q(fects the def)-.25 +(editing\255mode)4.043 E F0(also)4.043 E(af)144 276 Q(fects the def)-.25 E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1(mark\255dir)108 288 Q (ectories \(On\))-.18 E F0(If set to)144 300 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.) @@ -4356,50 +4358,50 @@ E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1(mark\255dir)108 288 Q (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 360 Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A F1 -(match\255hidden\255\214les \(On\))108 372 Q F0 .192(This v)144 384 R -.192(ariable, when set to)-.25 F F1(On)2.692 E F0 2.692(,c)C .192 -(auses readline to match \214les whose names be)-2.692 F .193 -(gin with a `.)-.15 F 2.693('\()-.7 G(hidden)-2.693 E 1.024 +(match\255hidden\255\214les \(On\))108 372 Q F0 .193(This v)144 384 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 1.023 (\214les\) when performing \214lename completion, unless the leading `.) -144 396 R 3.523('i)-.7 G 3.523(ss)-3.523 G 1.023 +144 396 R 3.523('i)-.7 G 3.523(ss)-3.523 G 1.024 (upplied by the user in the)-3.523 F(\214lename to be completed.)144 408 -Q F1(output\255meta \(Off\))108 420 Q F0 .506(If set to)144 432 R F1(On) -3.006 E F0 3.006(,r)C .507(eadline will display characters with the eig\ -hth bit set directly rather than as a meta-)-3.006 F(pre\214x)144 444 Q +Q F1(output\255meta \(Off\))108 420 Q F0 .507(If set to)144 432 R F1(On) +3.007 E F0 3.007(,r)C .507(eadline will display characters with the eig\ +hth bit set directly rather than as a meta-)-3.007 F(pre\214x)144 444 Q (ed escape sequence.)-.15 E F1(page\255completions \(On\))108 456 Q F0 -.809(If set to)144 468 R F1(On)3.308 E F0 3.308(,r)C .808 +.808(If set to)144 468 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 480 Q F1 -(print\255completions\255horizontally \(Off\))108 492 Q F0 1.318 -(If set to)144 504 R F1(On)3.818 E F0 3.818(,r)C 1.319(eadline will dis\ -play completions with matches sorted horizontally in alphabetical)-3.818 +(print\255completions\255horizontally \(Off\))108 492 Q F0 1.319 +(If set to)144 504 R F1(On)3.819 E F0 3.819(,r)C 1.318(eadline will dis\ +play completions with matches sorted horizontally in alphabetical)-3.819 F(order)144 516 Q 2.5(,r)-.4 G(ather than do)-2.5 E(wn the screen.)-.25 E F1 -2.29 -.18(re v)108 528 T(ert\255all\255at\255newline \(Off\)).08 E -F0 .873(If set to)144 540 R F1(on)3.373 E F0 3.373(,r)C .872 +F0 .872(If set to)144 540 R F1(on)3.372 E F0 3.372(,r)C .873 (eadline will undo all changes to history lines before returning when) --3.373 F F1(accept\255line)3.372 E F0(is)3.372 E -.15(exe)144 552 S +-3.372 F F1(accept\255line)3.373 E F0(is)3.373 E -.15(exe)144 552 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 564 S(adline) .18 E F0(.)A F1(sho)108 576 Q(w\255all\255if\255ambiguous \(Off\))-.1 E -F0 .478(This alters the def)144 588 R .478(ault beha)-.1 F .478 -(vior of the completion functions.)-.2 F .477(If set to)5.477 F F1(on) -2.977 E F0 2.977(,w)C .477(ords which ha)-3.077 F .777 -.15(ve m)-.2 H +F0 .477(This alters the def)144 588 R .477(ault beha)-.1 F .477 +(vior of the completion functions.)-.2 F .478(If set to)5.478 F F1(on) +2.978 E F0 2.978(,w)C .478(ords which ha)-3.078 F .778 -.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 600 R(bell.)144 612 Q F1 -(sho)108 624 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.346 -(This alters the def)144 636 R 5.346(ault beha)-.1 F 5.345 -(vior of the completion functions in a f)-.2 F 5.345(ashion similar to) --.1 F F1(sho)144 648 Q(w\255all\255if\255ambiguous)-.1 E F0 6.922(.I)C -4.422(fs)-6.922 G 1.922(et to)-4.422 F F1(on)4.422 E F0 4.422(,w)C 1.922 -(ords which ha)-4.522 F 2.223 -.15(ve m)-.2 H 1.923 -(ore than one possible completion).15 F 1.04(without an)144 660 R 3.54 +(sho)108 624 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.345 +(This alters the def)144 636 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 648 Q(w\255all\255if\255ambiguous)-.1 E F0 6.923(.I)C +4.423(fs)-6.923 G 1.923(et to)-4.423 F F1(on)4.423 E F0 4.423(,w)C 1.923 +(ords which ha)-4.523 F 2.222 -.15(ve m)-.2 H 1.922 +(ore than one possible completion).15 F 1.039(without an)144 660 R 3.539 (yp)-.15 G 1.039 -(ossible partial completion \(the possible completions don')-3.54 F -3.539(ts)-.18 G 1.039(hare a common pre\214x\))-3.539 F(cause the match\ -es to be listed immediately instead of ringing the bell.)144 672 Q F1 -(visible\255stats \(Off\))108 684 Q F0 .846(If set to)144 696 R F1(On) +(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 672 Q F1 +(visible\255stats \(Off\))108 684 Q F0 .847(If set to)144 696 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 @@ -4412,19 +4414,19 @@ BP /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) -.35 E/F1 10/Times-Bold@0 SF(Readline Conditional Constructs)87 84 Q F0 .05(Readline implements a f)108 96 R .05(acility similar in spirit to t\ -he conditional compilation features of the C preprocessor)-.1 F .096 -(which allo)108 108 R .096(ws k)-.25 F .396 -.15(ey b)-.1 H .096 +he conditional compilation features of the C preprocessor)-.1 F .097 +(which allo)108 108 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 .097 +(ariable settings to be performed as the result of tests.)-.25 F .096 (There are four parser)5.096 F(directi)108 120 Q -.15(ve)-.25 G 2.5(su) -.15 G(sed.)-2.5 E F1($if)108 136.8 Q F0(The)24.89 E F1($if)2.963 E F0 -.463(construct allo)2.963 F .462(ws bindings to be made based on the ed\ -iting mode, the terminal being used,)-.25 F .477 +.15 G(sed.)-2.5 E F1($if)108 136.8 Q F0(The)24.89 E F1($if)2.962 E F0 +.462(construct allo)2.962 F .463(ws bindings to be made based on the ed\ +iting mode, the terminal being used,)-.25 F .478 (or the application using readline.)144 148.8 R .477(The te)5.477 F .477 (xt of the test e)-.15 F .477 (xtends to the end of the line; no characters)-.15 F (are required to isolate it.)144 160.8 Q F1(mode)144 177.6 Q F0(The) -12.67 E F1(mode=)3.712 E F0 1.212(form of the)3.712 F F1($if)3.711 E F0 +12.67 E F1(mode=)3.711 E F0 1.211(form of the)3.711 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 189.6 R .565(may be used in conjunction with the)3.065 F @@ -4433,13 +4435,13 @@ F1 .565(set k)3.065 F(eymap)-.1 E F0 .565(command, for instance, to) (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 213.6 Q F1(term)144 230.4 Q F0(The)15.46 E 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 242.4 R +(term=)3.197 E F0 .696 +(form may be used to include terminal-speci\214c k)3.197 F .996 -.15 +(ey b)-.1 H .696(indings, perhaps to bind).15 F .654(the k)180 242.4 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 254.4 Q F1(=)3.231 -E F0 .731(is tested ag)3.231 F .732(ainst the both full name of the ter\ +(wo)3.154 G .654(rd on the right side of).1 F(the)180 254.4 Q F1(=)3.232 +E F0 .732(is tested ag)3.232 F .732(ainst the both full name of the ter\ minal and the portion of the terminal)-.05 F(name before the \214rst)180 266.4 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.5 E F0 @@ -4448,12 +4450,12 @@ minal and the portion of the terminal)-.05 F(name before the \214rst)180 (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 307.2 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 319.2 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 331.2 R -.15(Fo)5.396 G 2.896(ri).15 G .396 +(nd an initialization \214le can test for a)-2.614 F .5(particular v)180 +319.2 R 3(alue. This)-.25 F .501(could be used to bind k)3 F .801 -.15 +(ey s)-.1 H .501(equences to functions useful for a spe-).15 F .397 +(ci\214c program.)180 331.2 R -.15(Fo)5.397 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 343.2 +(ey s)-.1 H .396(equence that quotes the).15 F(current or pre)180 343.2 Q(vious w)-.25 E(ord in Bash:)-.1 E F1($if)180 367.2 Q F0(Bash)2.5 E 2.5 (#Q)180 379.2 S(uote the current or pre)-2.5 E(vious w)-.25 E(ord)-.1 E ("\\C\255xq": "\\eb\\"\\ef\\"")180 391.2 Q F1($endif)180 403.2 Q($endif) @@ -4461,52 +4463,52 @@ Q(vious w)-.25 E(ord in Bash:)-.1 E F1($if)180 367.2 Q F0(Bash)2.5 E 2.5 (xample, terminates an)-.15 E F1($if)2.5 E F0(command.)2.5 E F1($else) 108 436.8 Q F0(Commands in this branch of the)15.45 E 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 453.6 Q F0 .357 -(This directi)144 465.6 R .657 -.15(ve t)-.25 H(ak).15 E .357 -(es a single \214lename as an ar)-.1 F .356 +(cuted if the test f).15 E(ails.)-.1 E F1($include)108 453.6 Q F0 .356 +(This directi)144 465.6 R .656 -.15(ve t)-.25 H(ak).15 E .356 +(es a single \214lename as an ar)-.1 F .357 (gument and reads commands and bindings from that)-.18 F 2.5(\214le. F) 144 477.6 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 501.6 Q F2(/etc/inputr)5.833 E(c)-.37 E F1(Sear)87 518.4 Q -(ching)-.18 E F0 .834(Readline pro)108 530.4 R .834 +(ching)-.18 E F0 .835(Readline pro)108 530.4 R .835 (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 542.4 Q +/F3 9/Times-Bold@0 SF(HIST)3.334 E(OR)-.162 E(Y)-.315 E F0(belo)3.084 E +.834(w\) for lines)-.25 F(containing a speci\214ed string.)108 542.4 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.5 E(emental)-.37 E F0(.).51 -E .698(Incremental searches be)108 559.2 R .698 +E .697(Incremental searches be)108 559.2 R .697 (gin before the user has \214nished typing the search string.)-.15 F -.697(As each character of the)5.697 F .112 +.698(As each character of the)5.698 F .113 (search string is typed, readline displays the ne)108 571.2 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 +E 5.112(.A)-.55 G(n)-5.112 E .542 (incremental search requires only as man)108 583.2 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 +5.542(.T)-.65 G .542(he char)-5.542 F(-)-.2 E .224 (acters present in the v)108 595.2 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 607.2 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 619.2 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 631.2 Q 2.939 -.8(To \214) +F .097(mental search.)108 619.2 R .096(Control-G will abort an incremen\ +tal search and restore the original line.)5.097 F .096 +(When the search is)5.096 F(terminated, the history entry containing th\ +e search string becomes the current line.)108 631.2 Q 2.938 -.8(To \214) 108 648 T 1.339(nd other matching entries in the history list, type Con\ -trol-S or Control-R as appropriate.).8 F 1.338(This will)6.338 F .674 -(search backw)108 660 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 672 R .475 -.15(ey s)-.1 H +trol-S or Control-R as appropriate.).8 F 1.339(This will)6.339 F .675 +(search backw)108 660 R .675(ard or forw)-.1 F .675 +(ard in the history for the ne)-.1 F .674 +(xt entry matching the search string typed so f)-.15 F(ar)-.1 E 5.674 +(.A)-.55 G -.15(ny)-5.674 G .174(other k)108 672 R .474 -.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 684 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 696 -Q .653(Readline remembers the last incremental search string.)108 712.8 -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 +F -.15(xe)-.15 G .175(cute that command.).15 F -.15(Fo)5.175 G(r).15 E +.541(instance, a)108 684 R F2(ne)3.041 E(wline)-.15 E F0 .541 +(will terminate the search and accept the line, thereby e)3.041 F -.15 +(xe)-.15 G .54(cuting the command from the).15 F(history list.)108 696 Q +.653(Readline remembers the last incremental search string.)108 712.8 R +.653(If tw)5.653 F 3.153(oC)-.1 G .653(ontrol-Rs are typed without an) +-3.153 F 3.153(yi)-.15 G(nterv)-3.153 E(en-)-.15 E (ing characters de\214ning a ne)108 724.8 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(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(37)200.665 E 0 Cg EP @@ -4519,17 +4521,17 @@ BP re starting to search for matching history lines.)108 84 R(The search s\ tring may be typed by the user or be part of the contents of the curren\ t line.)108 96 Q/F1 10/Times-Bold@0 SF(Readline Command Names)87 112.8 Q -F0 1.392(The follo)108 124.8 R 1.391 +F0 1.391(The follo)108 124.8 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 136.8 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 148.8 Q/F2 10 -/Times-Italic@0 SF(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 F1(set\255mark)108 160.8 Q F0 2.5 +3.892(ya)-.15 G(re)-3.892 E 2.622(bound. Command)108 136.8 R .122 +(names without an accompan)2.622 F .122(ying k)-.15 F .421 -.15(ey s)-.1 +H .121(equence are unbound by def).15 F 2.621(ault. In)-.1 F .121 +(the follo)2.621 F(wing)-.25 E(descriptions,)108 148.8 Q/F2 10 +/Times-Italic@0 SF(point)3.41 E F0 .91 +(refers to the current cursor position, and)3.41 F F2(mark)3.411 E F0 +.911(refers to a cursor position sa)3.411 F -.15(ve)-.2 G 3.411(db).15 G +3.411(yt)-3.411 G(he)-3.411 E F1(set\255mark)108 160.8 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 F2 -.37(re) 2.5 G(gion)-.03 E F0(.)A F1(Commands f)87 177.6 Q(or Mo)-.25 E(ving)-.1 @@ -4541,9 +4543,9 @@ E(beginning\255of\255line \(C\255a\))108 189.6 Q F0(Mo)144 201.6 Q .3 -.15 H(orw).15 E(ard a character)-.1 E(.)-.55 E F1 (backward\255char \(C\255b\))108 261.6 Q F0(Mo)144 273.6 Q .3 -.15(ve b) -.15 H(ack a character).15 E(.)-.55 E F1 -.25(fo)108 285.6 S(rward\255w) -.25 E(ord \(M\255f\))-.1 E F0(Mo)144 297.6 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 +.25 E(ord \(M\255f\))-.1 E F0(Mo)144 297.6 Q .823 -.15(ve f)-.15 H(orw) +.15 E .523(ard to the end of the ne)-.1 F .523(xt w)-.15 F 3.023(ord. W) +-.1 F .522(ords are composed of alphanumeric characters \(let-)-.8 F (ters and digits\).)144 309.6 Q F1(backward\255w)108 321.6 Q (ord \(M\255b\))-.1 E F0(Mo)144 333.6 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 @@ -4556,10 +4558,10 @@ G .993(th an ar).4 F .993(gument, refresh the)-.18 F 393.6 S(draw\255curr).18 E(ent\255line)-.18 E F0 (Refresh the current line.)144 405.6 Q F1(Commands f)87 422.4 Q (or Manipulating the History)-.25 E(accept\255line \(Newline, Retur)108 -434.4 Q(n\))-.15 E F0 .159(Accept the line re)144 446.4 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) +434.4 Q(n\))-.15 E F0 .158(Accept the line re)144 446.4 R -.05(ga)-.15 G +.158(rdless of where the cursor is.).05 F .158 +(If this line is non-empty)5.158 F 2.659(,a)-.65 G .159 +(dd it to the history list)-2.659 F .699(according to the state of the) 144 458.4 R/F3 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 @@ -4575,21 +4577,21 @@ E(ving forw)-.15 E(ard in the list.)-.1 E F1 .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 -2.29 -.18 (re v)108 578.4 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 -1.471(Search backw)144 590.4 R 1.471 -(ard starting at the current line and mo)-.1 F 1.47 +1.47(Search backw)144 590.4 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 602.4 Q F1 -.25(fo)108 614.4 S -(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.131 -(Search forw)144 626.4 R 1.131(ard starting at the current line and mo) --.1 F 1.132(ving `do)-.15 F 1.132(wn' through the history as necessary) +(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.132 +(Search forw)144 626.4 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 638.4 Q F1 (non\255incr)108 650.4 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H -(rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .165(Search backw) +(rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .164(Search backw) 144 662.4 R .164(ard through the history starting at the current line u\ sing a non-incremental search for)-.1 F 2.5(as)144 674.4 S (tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 686.4 Q (emental\255f)-.18 E(orward\255sear)-.25 E(ch\255history \(M\255n\))-.18 -E F0 1.353(Search forw)144 698.4 R 1.354(ard through the history using \ +E F0 1.354(Search forw)144 698.4 R 1.354(ard through the history using \ a non-incremental search for a string supplied by the)-.1 F(user)144 710.4 Q(.)-.55 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(38)200.665 E 0 Cg EP @@ -4599,71 +4601,71 @@ BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) -.35 E/F1 10/Times-Bold@0 SF(history\255sear)108 84 Q(ch\255f)-.18 E -(orward)-.25 E F0 .249(Search forw)144 96 R .249(ard through the histor\ +(orward)-.25 E F0 .248(Search forw)144 96 R .249(ard through the histor\ y for the string of characters between the start of the current line)-.1 F(and the point.)144 108 Q(This is a non-incremental search.)5 E F1 -(history\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 the current)-.1 F(line and the point.)144 144 Q +(history\255sear)108 120 Q(ch\255backward)-.18 E F0 .951(Search backw) +144 132 R .951(ard through the history for the string of characters bet\ +ween the start of the current)-.1 F(line and the point.)144 144 Q (This is a non-incremental search.)5 E F1(yank\255nth\255ar)108 156 Q 2.5(g\()-.1 G<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 168 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 .794(at point.)144 180 R -.4(Wi)5.794 G .794 +.622(vious line\))-.25 F .795(at point.)144 180 R -.4(Wi)5.795 G .794 (th an ar).4 F(gument)-.18 E/F2 10/Times-Italic@0 SF(n)3.294 E F0 3.294 (,i).24 G .794(nsert the)-3.294 F F2(n)3.294 E F0 .794(th w)B .794 -(ord from the pre)-.1 F .794(vious command \(the w)-.25 F .795 -(ords in the)-.1 F(pre)144 192 Q .292(vious command be)-.25 F .292 +(ord from the pre)-.1 F .794(vious command \(the w)-.25 F .794 +(ords in the)-.1 F(pre)144 192 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 .291 -(ord from the end of)-.1 F .281(the pre)144 204 R .281(vious command.) --.25 F .281(Once the ar)5.281 F(gument)-.18 E F2(n)2.781 E F0 .281 -(is computed, the ar)2.781 F .281(gument is e)-.18 F .282 +(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 204 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 216 Q (xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 228 Q -2.5(g\()-.1 G -1.667(M\255. ,)-2.5 F -1.667(M\255_ \))2.5 F F0 1.308 -(Insert the last ar)144 240 R 1.308(gument to the pre)-.18 F 1.307 -(vious command \(the last w)-.25 F 1.307(ord of the pre)-.1 F 1.307 -(vious history entry\).)-.25 F -.4(Wi)144 252 S .735(th an ar).4 F .735 -(gument, beha)-.18 F 1.035 -.15(ve ex)-.2 H .735(actly lik).15 F(e)-.1 E -F1(yank\255nth\255ar)3.235 E(g)-.1 E F0 5.736(.S)C(uccessi)-5.736 E -1.036 -.15(ve c)-.25 H .736(alls to).15 F F1(yank\255last\255ar)3.236 E -(g)-.1 E F0(mo)3.236 E -.15(ve)-.15 G .728 +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 240 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 252 S .736(th an ar).4 F .736 +(gument, beha)-.18 F 1.036 -.15(ve ex)-.2 H .736(actly lik).15 F(e)-.1 E +F1(yank\255nth\255ar)3.235 E(g)-.1 E F0 5.735(.S)C(uccessi)-5.735 E +1.035 -.15(ve c)-.25 H .735(alls to).15 F F1(yank\255last\255ar)3.235 E +(g)-.1 E F0(mo)3.235 E -.15(ve)-.15 G .728 (back through the history list, inserting the last ar)144 264 R .728 -(gument of each line in turn.)-.18 F .728(The history e)5.728 F(xpan-) +(gument of each line in turn.)-.18 F .729(The history e)5.728 F(xpan-) -.15 E .14(sion f)144 276 R .14(acilities are used to e)-.1 F .14 (xtract the last ar)-.15 F .14(gument, as if the "!$" history e)-.18 F .14(xpansion had been speci-)-.15 F(\214ed.)144 288 Q F1 -(shell\255expand\255line \(M\255C\255e\))108 300 Q F0 .623 +(shell\255expand\255line \(M\255C\255e\))108 300 Q F0 .622 (Expand the line as the shell does.)144 312 R .622 -(This performs alias and history e)5.622 F .622 +(This performs alias and history e)5.622 F .623 (xpansion as well as all of the)-.15 F(shell w)144 324 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 F1 -(history\255expand\255line \(M\255^\))108 336 Q F0 .938 +(history\255expand\255line \(M\255^\))108 336 Q F0 .939 (Perform history e)144 348 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.439(wf)-.25 G .939(or a descrip-) --3.439 F(tion of history e)144 360 Q(xpansion.)-.15 E F1(magic\255space) -108 372 Q F0 1.627(Perform history e)144 384 R 1.627 -(xpansion on the current line and insert a space.)-.15 F(See)6.626 E F3 -(HIST)4.126 E(OR)-.162 E 3.876(YE)-.315 G(XP)-3.876 E(ANSION)-.666 E F0 +(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 360 Q(xpansion.)-.15 E F1(magic\255space) +108 372 Q F0 1.626(Perform history e)144 384 R 1.626 +(xpansion on the current line and insert a space.)-.15 F(See)6.627 E F3 +(HIST)4.127 E(OR)-.162 E 3.877(YE)-.315 G(XP)-3.877 E(ANSION)-.666 E F0 (belo)144 396 Q 2.5(wf)-.25 G(or a description of history e)-2.5 E -(xpansion.)-.15 E F1(alias\255expand\255line)108 408 Q F0 .394 -(Perform alias e)144 420 R .394(xpansion on the current line.)-.15 F -(See)5.395 E F3(ALIASES)2.895 E F0(abo)2.645 E .695 -.15(ve f)-.15 H -.395(or a description of alias e).15 F(xpan-)-.15 E(sion.)144 432 Q F1 +(xpansion.)-.15 E F1(alias\255expand\255line)108 408 Q F0 .395 +(Perform alias e)144 420 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 432 Q F1 (history\255and\255alias\255expand\255line)108 444 Q F0 (Perform history and alias e)144 456 Q(xpansion on the current line.) -.15 E F1(insert\255last\255ar)108 468 Q(gument \(M\255.)-.1 E 2.5(,M) .833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 480 S(ynon)-2.5 E(ym for) -.15 E F1(yank\255last\255ar)2.5 E(g)-.1 E F0(.)A F1 -(operate\255and\255get\255next \(C\255o\))108 492 Q F0 .948 +(operate\255and\255get\255next \(C\255o\))108 492 Q F0 .947 (Accept the current line for e)144 504 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 +(cution and fetch the ne).15 F .948(xt line relati)-.15 F 1.248 -.15 +(ve t)-.25 H 3.448(ot).15 G .948(he current line from the)-3.448 F (history for editing.)144 516 Q(An)5 E 2.5(ya)-.15 G -.18(rg)-2.5 G (ument is ignored.).18 E F1 (edit\255and\255execute\255command \(C\255xC\255e\))108 528 Q F0(In)144 @@ -4674,25 +4676,25 @@ F1(yank\255nth\255ar)3.235 E(g)-.1 E F0 5.736(.S)C(uccessi)-5.736 E /Times-Roman@0 SF(,)A F3($EDIT)2.25 E(OR)-.162 E F4(,)A F0(and)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 568.8 Q(or Changing T)-.25 E -(ext)-.92 E(delete\255char \(C\255d\))108 580.8 Q F0 .358 +(ext)-.92 E(delete\255char \(C\255d\))108 580.8 Q F0 .357 (Delete the character at point.)144 592.8 R .358(If point is at the be) 5.358 F .358(ginning of the line, there are no characters in the)-.15 F (line, and the last character typed w)144 604.8 Q(as not bound to)-.1 E F1(delete\255char)2.5 E F0 2.5(,t)C(hen return)-2.5 E F3(EOF)2.5 E F4(.) -A F1(backward\255delete\255char \(Rubout\))108 616.8 Q F0 .552 +A F1(backward\255delete\255char \(Rubout\))108 616.8 Q F0 .553 (Delete the character behind the cursor)144 628.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 640.8 Q F1 -.25(fo)108 652.8 S -(rward\255backward\255delete\255char).25 E F0 .474 -(Delete the character under the cursor)144 664.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 +.552(gument, sa)-.18 F .852 -.15(ve t)-.2 H .552(he deleted te).15 F +.552(xt on)-.15 F(the kill ring.)144 640.8 Q F1 -.25(fo)108 652.8 S +(rward\255backward\255delete\255char).25 E F0 .473 +(Delete the character under the cursor)144 664.8 R 2.973(,u)-.4 G .474 +(nless the cursor is at the end of the line, in which case the)-2.973 F (character behind the cursor is deleted.)144 676.8 Q F1 -(quoted\255insert \(C\255q, C\255v\))108 688.8 Q F0 .778(Add the ne)144 +(quoted\255insert \(C\255q, C\255v\))108 688.8 Q F0 .779(Add the ne)144 700.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 F1(C\255q)3.279 E F0 3.279 -(,f)C(or)-3.279 E -.15(ex)144 712.8 S(ample.).15 E(GNU Bash-4.0)72 768 Q +G .779(nsert characters lik)-3.279 F(e)-.1 E F1(C\255q)3.278 E F0 3.278 +(,f)C(or)-3.278 E -.15(ex)144 712.8 S(ample.).15 E(GNU Bash-4.0)72 768 Q (2008 July 6)150.675 E(39)200.665 E 0 Cg EP %%Page: 40 40 %%BeginPageSetup @@ -4703,56 +4705,56 @@ BP E F0(Insert a tab character)144 96 Q(.)-.55 E F1 (self\255insert \(a, b, A, 1, !, ...\))108 108 Q F0 (Insert the character typed.)144 120 Q F1(transpose\255chars \(C\255t\)) -108 132 Q F0 .322(Drag the character before point forw)144 144 R .321 +108 132 Q F0 .321(Drag the character before point forw)144 144 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 +(he character at point, mo)-2.821 F .322(ving point forw)-.15 F .322 (ard as well.)-.1 F 1.182 (If point is at the end of the line, then this transposes the tw)144 156 -R 3.683(oc)-.1 G 1.183(haracters before point.)-3.683 F(Ne)6.183 E -.05 +R 3.682(oc)-.1 G 1.182(haracters before point.)-3.682 F(Ne)6.182 E -.05 (ga)-.15 G(ti).05 E -.15(ve)-.25 G(ar)144 168 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 -(transpose\255w)108 180 Q(ords \(M\255t\))-.1 E F0 .024(Drag the w)144 -192 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 +(transpose\255w)108 180 Q(ords \(M\255t\))-.1 E F0 .023(Drag the w)144 +192 R .023(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.524(rt).15 G .024(hat w) +-2.524 F .024(ord as well.)-.1 F .024(If point)5.024 F (is at the end of the line, this transposes the last tw)144 204 Q 2.5 (ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 216 Q -(ord \(M\255u\))-.1 E F0 1.698(Uppercase the current \(or follo)144 228 +(ord \(M\255u\))-.1 E F0 1.699(Uppercase the current \(or follo)144 228 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 +-.15 G(ti).05 E 1.998 -.15(ve a)-.25 H -.18(rg).15 G 1.698 (ument, uppercase the pre).18 F(vious)-.25 E -.1(wo)144 240 S(rd, b).1 E (ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 252 Q -(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 264 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) +(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 264 Q 1.647 +(wercase the current \(or follo)-.25 F 1.647(wing\) w)-.25 F 4.147 +(ord. W)-.1 F 1.648(ith a ne)-.4 F -.05(ga)-.15 G(ti).05 E 1.948 -.15 +(ve a)-.25 H -.18(rg).15 G 1.648(ument, lo).18 F 1.648(wercase the pre) -.25 F(vious)-.25 E -.1(wo)144 276 S(rd, b).1 E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 288 Q -(ord \(M\255c\))-.1 E F0 1.974(Capitalize the current \(or follo)144 300 +(ord \(M\255c\))-.1 E F0 1.975(Capitalize the current \(or follo)144 300 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 +-.15 G(ti).05 E 2.274 -.15(ve a)-.25 H -.18(rg).15 G 1.974 (ument, capitalize the pre).18 F(vious)-.25 E -.1(wo)144 312 S(rd, b).1 E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 324 -S(rwrite\255mode).1 E F0 -.8(To)144 336 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 348 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 360 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 -372 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 384 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 396 Q(By def)5 E -(ault, this command is unbound.)-.1 E F1(Killing and Y)87 412.8 Q -(anking)-.85 E(kill\255line \(C\255k\))108 424.8 Q F0(Kill the te)144 -436.8 Q(xt from point to the end of the line.)-.15 E F1 +S(rwrite\255mode).1 E F0 -.8(To)144 336 S .437(ggle o).8 F -.15(ve)-.15 +G .437(rwrite mode.).15 F -.4(Wi)5.437 G .437(th an e).4 F .437 +(xplicit positi)-.15 F .738 -.15(ve n)-.25 H .438(umeric ar).15 F .438 +(gument, switches to o)-.18 F -.15(ve)-.15 G .438(rwrite mode.).15 F -.4 +(Wi)144 348 S .781(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 .78(This command af)5.781 F +(fects)-.25 E(only)144 360 Q F1(emacs)4.394 E F0(mode;)4.394 E F1(vi) +4.394 E F0 1.894(mode does o)4.394 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.395 G(adline\(\)).37 E F0 1.895 +(starts in insert)4.395 F 3.969(mode. In)144 372 R -.15(ove)3.969 G +1.469(rwrite mode, characters bound to).15 F F1(self\255insert)3.969 E +F0 1.468(replace the te)3.969 F 1.468(xt at point rather than)-.15 F +.957(pushing the te)144 384 R .957(xt to the right.)-.15 F .958 +(Characters bound to)5.957 F F1(backward\255delete\255char)3.458 E F0 +.958(replace the character)3.458 F(before point with a space.)144 396 Q +(By def)5 E(ault, this command is unbound.)-.1 E F1(Killing and Y)87 +412.8 Q(anking)-.85 E(kill\255line \(C\255k\))108 424.8 Q F0 +(Kill the te)144 436.8 Q(xt from point to the end of the line.)-.15 E F1 (backward\255kill\255line \(C\255x Rubout\))108 448.8 Q F0(Kill backw) 144 460.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1 (unix\255line\255discard \(C\255u\))108 472.8 Q F0(Kill backw)144 484.8 @@ -4760,23 +4762,23 @@ 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 496.8 Q F0 (Kill all characters on the current line, no matter where point is.)144 -508.8 Q F1(kill\255w)108 520.8 Q(ord \(M\255d\))-.1 E F0 .728 -(Kill from point to the end of the current w)144 532.8 R .729 -(ord, or if between w)-.1 F .729(ords, to the end of the ne)-.1 F .729 +508.8 Q F1(kill\255w)108 520.8 Q(ord \(M\255d\))-.1 E F0 .729 +(Kill from point to the end of the current w)144 532.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 544.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 556.8 Q (ord \(M\255Rubout\))-.1 E F0(Kill the w)144 568.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(unix\255w)108 580.8 Q -(ord\255rubout \(C\255w\))-.1 E F0 .365(Kill the w)144 592.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 -604.8 Q F1(unix\255\214lename\255rubout)108 616.8 Q F0 .166(Kill the w) +(ord\255rubout \(C\255w\))-.1 E F0 .364(Kill the w)144 592.8 R .364 +(ord behind point, using white space as a w)-.1 F .365(ord boundary)-.1 +F 5.365(.T)-.65 G .365(he killed te)-5.365 F .365(xt is sa)-.15 F -.15 +(ve)-.2 G 2.865(do).15 G 2.865(nt)-2.865 G(he)-2.865 E(kill-ring.)144 +604.8 Q F1(unix\255\214lename\255rubout)108 616.8 Q F0 .167(Kill the w) 144 628.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 640.8 Q +-.1 F .166(ord boundaries.)-.1 F(The)5.166 E(killed te)144 640.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 652.8 Q F0 (Delete all spaces and tabs around point.)144 664.8 Q F1(kill\255r)108 @@ -4791,14 +4793,14 @@ BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(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 G 2.301(he w)-4.801 F 2.301 +(Cop)144 96 Q 4.8(yt)-.1 G 2.3(he w)-4.8 F 2.3 (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 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 +G 2.301(he w)-7.301 F 2.301(ord boundaries are the same as)-.1 F F1 +(back-)4.801 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.508(yt)-.1 G 2.008 +(he w)-4.508 F 2.008(ord follo)-.1 F 2.008(wing point to the kill b)-.25 +F(uf)-.2 E(fer)-.25 E 7.007(.T)-.55 G 2.007(he w)-7.007 F 2.007 +(ord boundaries are the same as)-.1 F F1 -.25(fo)4.507 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(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 @@ -4806,26 +4808,26 @@ F(uf)-.2 E(fer)-.25 E 7.008(.T)-.55 G 2.008(he w)-7.008 F 2.008 (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 -(gument \(M\2550, M\2551, ..., M\255\255\))-.1 E F0 .642 +(gument \(M\2550, M\2551, ..., M\255\255\))-.1 E F0 .641 (Add this digit to the ar)144 232.8 R .641 (gument already accumulating, or start a ne)-.18 F 3.141(wa)-.25 G -.18 -(rg)-3.141 G 3.141(ument. M\255\255).18 F .641(starts a ne)3.141 F(g-) +(rg)-3.141 G 3.142(ument. M\255\255).18 F .642(starts a ne)3.142 F(g-) -.15 E(ati)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 +(uni)108 256.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0 .779 (This is another w)144 268.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 +(gument. If)-.18 F .779(this command is follo)3.279 F .778 (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) 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 -(As a special case, if this command is immediately follo)5.899 F .898 +-.2 F(-)-.2 E .898(wise ignored.)144 304.8 R .898 +(As a special case, if this command is immediately follo)5.898 F .898 (wed by a character that is)-.25 F .243 (neither a digit or minus sign, the ar)144 316.8 R .243 (gument count for the ne)-.18 F .243(xt command is multiplied by four) --.15 F 5.243(.T)-.55 G(he)-5.243 E(ar)144 328.8 Q .378 +-.15 F 5.242(.T)-.55 G(he)-5.242 E(ar)144 328.8 Q .378 (gument count is initially one, so e)-.18 F -.15(xe)-.15 G .378 (cuting this function the \214rst time mak).15 F .378(es the ar)-.1 F .378(gument count)-.18 F(four)144 340.8 Q 2.5(,as)-.4 G(econd time mak) @@ -4833,12 +4835,12 @@ F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 208.8 Q (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 (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) --.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 -(\), or command \(including aliases and functions\) in turn.)B .702 +(attempts completion treating the)3.637 F(te)144 393.6 Q .532(xt as a v) +-.15 F .532(ariable \(if the te)-.25 F .532(xt be)-.15 F .533(gins with) +-.15 F F1($)3.033 E F0 .533(\), username \(if the te)B .533(xt be)-.15 F +.533(gins with)-.15 F F1(~)3.033 E F0 .533(\), hostname \(if the)B(te) +144 405.6 Q .702(xt be)-.15 F .702(gins with)-.15 F F1(@)3.202 E F0 .701 +(\), or command \(including aliases and functions\) in turn.)B .701 (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 @@ -4846,19 +4848,19 @@ F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 208.8 Q -.15 E F1(insert\255completions \(M\255*\))108 453.6 Q F0 .783 (Insert all completions of the te)144 465.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 +.783(een generated by).15 F F1(possible\255com-)3.283 E(pletions)144 +477.6 Q F0(.)A F1(menu\255complete)108 489.6 Q F0 .929(Similar to)144 +501.6 R F1(complete)3.429 E F0 3.429(,b)C .929(ut replaces the w)-3.629 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 -(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 +1.193(possible completions.)144 513.6 R 1.193(Repeated e)6.193 F -.15 +(xe)-.15 G 1.193(cution of).15 F F1(menu\255complete)3.694 E F0 1.194 +(steps through the list of possible)3.694 F .829 (completions, inserting each match in turn.)144 525.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 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 +E F0(mo)3.227 E -.15(ve)-.15 G(s).15 E F2(n)3.228 E F0 1.73 (positions forw)144 549.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 @@ -4867,7 +4869,7 @@ E(through the list.)144 561.6 Q(This command is intended to be bound to) (ault.)-.1 E F1(delete\255char\255or\255list)108 573.6 Q F0 .234 (Deletes the character under the cursor if not at the be)144 585.6 R .234(ginning or end of the line \(lik)-.15 F(e)-.1 E F1(delete\255char) -2.734 E F0(\).)A .425(If at the end of the line, beha)144 597.6 R -.15 +2.735 E F0(\).)A .425(If at the end of the line, beha)144 597.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 609.6 Q(ault.)-.1 E F1 @@ -4900,10 +4902,10 @@ BP (possible\255hostname\255completions \(C\255x @\))108 156 Q F0 (List the possible completions of the te)144 168 Q (xt before point, treating it as a hostname.)-.15 E F1 -(complete\255command \(M\255!\))108 180 Q F0 .581 +(complete\255command \(M\255!\))108 180 Q F0 .58 (Attempt completion on the te)144 192 R .581 -(xt before point, treating it as a command name.)-.15 F .58 -(Command comple-)5.58 F .715(tion attempts to match the te)144 204 R +(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 204 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 216 Q -.15(xe)-.15 G @@ -4911,14 +4913,14 @@ BP (possible\255command\255completions \(C\255x !\))108 228 Q F0 (List the possible completions of the te)144 240 Q (xt before point, treating it as a command name.)-.15 E F1 -(dynamic\255complete\255history \(M\255T)108 252 Q(AB\))-.9 E F0 .425 +(dynamic\255complete\255history \(M\255T)108 252 Q(AB\))-.9 E F0 .424 (Attempt completion on the te)144 264 R .425 -(xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .424 +(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 276 Q F1(dab)108 288 Q(br)-.1 E --.15(ev)-.18 G(\255expand).15 E F0 .61 +-.15(ev)-.18 G(\255expand).15 E F0 .611 (Attempt menu completion on the te)144 300 R .611 -(xt before point, comparing the te)-.15 F .611(xt ag)-.15 F .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 312 Q F1 (complete\255into\255braces \(M\255{\))108 324 Q F0 .4(Perform \214lena\ @@ -4934,21 +4936,21 @@ E(start\255kbd\255macr)108 376.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) (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 424.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5 -E F0(Re-e)144 436.8 Q -.15(xe)-.15 G .999(cute the last k).15 F -.15(ey) --.1 G .999(board macro de\214ned, by making the characters in the macro\ - appear as if).15 F(typed at the k)144 448.8 Q -.15(ey)-.1 G(board.).15 -E F1(Miscellaneous)87 465.6 Q -.18(re)108 477.6 S.18 E -(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.777 +E F0(Re-e)144 436.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 448.8 Q -.15(ey)-.1 G(board.).15 E F1 +(Miscellaneous)87 465.6 Q -.18(re)108 477.6 S.18 E +(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.776 (Read in the contents of the)144 489.6 R/F2 10/Times-Italic@0 SF(inputr) -4.277 E(c)-.37 E F0 1.776(\214le, and incorporate an)4.276 F 4.276(yb) --.15 G 1.776(indings or v)-4.276 F 1.776(ariable assignments)-.25 F -(found there.)144 501.6 Q F1(abort \(C\255g\))108 513.6 Q F0 3.248 +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 501.6 Q F1(abort \(C\255g\))108 513.6 Q F0 3.249 (Abort the current editing command and ring the terminal')144 525.6 R -5.749(sb)-.55 G 3.249(ell \(subject to the setting of)-5.749 F F1 +5.748(sb)-.55 G 3.248(ell \(subject to the setting of)-5.748 F F1 (bell\255style)144 537.6 Q F0(\).)A F1(do\255upper)108 549.6 Q (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.756(If the meta\214ed character)144 561.6 R F2(x) -4.256 E F0 1.755(is lo)4.256 F 1.755 +C(..\))-2.5 E F0 1.755(If the meta\214ed character)144 561.6 R F2(x) +4.255 E F0 1.755(is lo)4.255 F 1.756 (wercase, run the command that is bound to the corresponding)-.25 F (uppercase character)144 573.6 Q(.)-.55 E F1(pr)108 585.6 Q (e\214x\255meta \(ESC\))-.18 E F0(Metafy the ne)144 597.6 Q @@ -4974,49 +4976,49 @@ BP /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) -.35 E/F1 10/Times-Bold@0 SF (exchange\255point\255and\255mark \(C\255x C\255x\))108 84 Q F0(Sw)144 -96 Q .283(ap the point with the mark.)-.1 F .283 +96 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.782(dp).15 G .282(osition, and the old)-2.782 F(cursor position is sa) +2.783(dp).15 G .283(osition, and the old)-2.783 F(cursor position is sa) 144 108 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 120 Q(ch \(C\255]\))-.18 E F0 3.035(Ac)144 132 S -.535(haracter is read and point is mo)-3.035 F -.15(ve)-.15 G 3.035(dt) +(character\255sear)108 120 Q(ch \(C\255]\))-.18 E F0 3.036(Ac)144 132 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.536(.A)-.55 G(ne)-2.5 E -.05 -(ga)-.15 G(ti).05 E .836 -.15(ve c)-.25 H(ount).15 E(searches for pre) +(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 144 Q(vious occurrences.)-.25 E F1(character\255sear)108 156 Q -(ch\255backward \(M\255C\255]\))-.18 E F0 3.544(Ac)144 168 S 1.044 -(haracter is read and point is mo)-3.544 F -.15(ve)-.15 G 3.544(dt).15 G +(ch\255backward \(M\255C\255]\))-.18 E F0 3.543(Ac)144 168 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.043(.A)-.55 G(ne)-2.5 E +(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 180 Q F1 -(insert\255comment \(M\255#\))108 192 Q F0 -.4(Wi)144 204 S .48 -(thout a numeric ar).4 F .48(gument, the v)-.18 F .481 +(insert\255comment \(M\255#\))108 192 Q F0 -.4(Wi)144 204 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 .481(riable is inserted at the).25 F(be)144 216 Q .098 -(ginning of the current line.)-.15 F .098(If a numeric ar)5.098 F .097 -(gument is supplied, this command acts as a toggle:)-.18 F(if)5.097 E -.321(the characters at the be)144 228 R .321 +2.981 G .48(riable is inserted at the).25 F(be)144 216 Q .097 +(ginning of the current line.)-.15 F .098(If a numeric ar)5.097 F .098 +(gument is supplied, this command acts as a toggle:)-.18 F(if)5.098 E +.322(the characters at the be)144 228 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.822(,t)C .322(he v)-2.822 F .322(alue is) --.25 F 1.014(inserted, otherwise the characters in)144 240 R F1 -(comment-begin)3.514 E F0 1.014(are deleted from the be)3.514 F 1.013 -(ginning of the line.)-.15 F 1.468 +(comment\255begin)2.821 E F0 2.821(,t)C .321(he v)-2.821 F .321(alue is) +-.25 F 1.013(inserted, otherwise the characters in)144 240 R F1 +(comment-begin)3.514 E F0 1.014(are deleted from the be)3.514 F 1.014 +(ginning of the line.)-.15 F 1.469 (In either case, the line is accepted as if a ne)144 252 R 1.468 -(wline had been typed.)-.25 F 1.469(The def)6.469 F 1.469(ault v)-.1 F -1.469(alue of)-.25 F F1(com-)3.969 E(ment\255begin)144 264 Q F0 .84 -(causes this command to mak)3.34 F 3.339(et)-.1 G .839 -(he current line a shell comment.)-3.339 F .839(If a numeric ar)5.839 F +(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 264 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 276 Q -.15 (ve)-.15 G(d, the line will be e).15 E -.15(xe)-.15 G (cuted by the shell.).15 E F1(glob\255complete\255w)108 288 Q -(ord \(M\255g\))-.1 E F0 .791(The w)144 300 R .791 -(ord before point is treated as a pattern for pathname e)-.1 F .792 +(ord \(M\255g\))-.1 E F0 .792(The w)144 300 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 312 R(pattern is used to generate a list of matching \214le names for possi\ ble completions.)2.5 E F1(glob\255expand\255w)108 324 Q -(ord \(C\255x *\))-.1 E F0 .372(The w)144 336 R .372 -(ord before point is treated as a pattern for pathname e)-.1 F .371 +(ord \(C\255x *\))-.1 E F0 .371(The w)144 336 R .372 +(ord before point is treated as a pattern for pathname e)-.1 F .372 (xpansion, and the list of matching \214le)-.15 F .516 (names is inserted, replacing the w)144 348 R 3.016(ord. If)-.1 F 3.016 (an)3.016 G .516(umeric ar)-3.016 F .516 @@ -5028,54 +5030,54 @@ ble completions.)2.5 E F1(glob\255expand\255w)108 324 Q .872(the line is redra)144 396 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 408 S(pansion.).15 E F1(dump\255functions)108 420 Q F0 .627 -(Print all of the functions and their k)144 432 R .927 -.15(ey b)-.1 H -.626(indings to the readline output stream.).15 F .626(If a numeric ar) -5.626 F(gu-)-.18 E +(ex)144 408 S(pansion.).15 E F1(dump\255functions)108 420 Q F0 .626 +(Print all of the functions and their k)144 432 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 444 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 456 Q(ariables)-.1 E F0 -1.799(Print all of the settable readline v)144 468 R 1.799 -(ariables and their v)-.25 F 1.8(alues to the readline output stream.) --.25 F 1.8(If a)6.8 F .305(numeric ar)144 480 R .304 +1.8(Print all of the settable readline v)144 468 R 1.799 +(ariables and their v)-.25 F 1.799(alues to the readline output stream.) +-.25 F 1.799(If a)6.799 F .304(numeric ar)144 480 R .304 (gument is supplied, the output is formatted in such a w)-.18 F .304 (ay that it can be made part of an)-.1 F F2(inputr)144 492 Q(c)-.37 E F0 -(\214le.)2.5 E F1(dump\255macr)108 504 Q(os)-.18 E F0 .592 -(Print all of the readline k)144 516 R .892 -.15(ey s)-.1 H .592 -(equences bound to macros and the strings the).15 F 3.093(yo)-.15 G -3.093(utput. If)-3.093 F 3.093(an)3.093 G(umeric)-3.093 E(ar)144 528 Q +(\214le.)2.5 E F1(dump\255macr)108 504 Q(os)-.18 E F0 .593 +(Print all of the readline k)144 516 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 528 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.027 E(c)-.37 E F0 +(ay that it can be made part of an)-.1 F F2(inputr)3.028 E(c)-.37 E F0 (\214le.)144 540 Q F1(display\255shell\255v)108 552 Q (ersion \(C\255x C\255v\))-.1 E F0(Display v)144 564 Q (ersion information about the current instance of)-.15 E F1(bash)2.5 E -F0(.)A F1(Pr)87 580.8 Q(ogrammable Completion)-.18 E F0 .146(When w)108 +F0(.)A F1(Pr)87 580.8 Q(ogrammable Completion)-.18 E F0 .147(When w)108 592.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(compspec)108 604.8 Q F0 3.829(\)h)C 1.329 -(as been de\214ned using the)-3.829 F F1(complete)3.829 E F0 -.2(bu) +F2(compspec)108 604.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.328(w\), the) +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 616.8 Q(acilities are in)-.1 E -.2 -(vo)-.4 G -.1(ke).2 G(d.).1 E .333 -(First, the command name is identi\214ed.)108 633.6 R .334 +(vo)-.4 G -.1(ke).2 G(d.).1 E .334 +(First, the command name is identi\214ed.)108 633.6 R .333 (If a compspec has been de\214ned for that command, the compspec is) -5.333 F .587 +5.334 F .587 (used to generate the list of possible completions for the w)108 645.6 R -3.087(ord. If)-.1 F .587(the command w)3.087 F .586 -(ord is a full pathname, a)-.1 F 1.18 +3.087(ord. If)-.1 F .587(the command w)3.087 F .587 +(ord is a full pathname, a)-.1 F 1.181 (compspec for the full pathname is searched for \214rst.)108 657.6 R -1.181(If no compspec is found for the full pathname, an)6.181 F +1.18(If no compspec is found for the full pathname, an)6.181 F (attempt is made to \214nd a compspec for the portion follo)108 669.6 Q (wing the \214nal slash.)-.25 E .817(Once a compspec has been found, it\ is used to generate the list of matching w)108 686.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 698.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 715.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 727.2 R .596 -(When the)5.596 F F13.096 E F0(or)3.095 E F13.095 E F0 .595 +.464(First, the actions speci\214ed by the compspec are used.)108 715.2 +R .463(Only matches which are pre\214x)5.464 F .463(ed by the w)-.15 F +.463(ord being)-.1 F .595(completed are returned.)108 727.2 R .595 +(When the)5.595 F F13.095 E F0(or)3.095 E F13.095 E F0 .596 (option is used for \214lename or directory name completion, the)3.095 F (GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(43)200.665 E 0 Cg EP %%Page: 44 44 @@ -5088,140 +5090,140 @@ E F0(is used to \214lter the matches.)2.25 E(An)108 100.8 Q 2.585(yc) -.15 G .085(ompletions speci\214ed by a \214lename e)-2.585 F .085 (xpansion pattern to the)-.15 F/F2 10/Times-Bold@0 SF2.585 E F0 .085(option are generated ne)2.585 F 2.585(xt. The)-.15 F -.1(wo)2.585 G -(rds).1 E .844(generated by the pattern need not match the w)108 112.8 R -.844(ord being completed.)-.1 F(The)5.844 E F1(GLOBIGNORE)3.343 E F0 -.843(shell v)3.093 F .843(ariable is)-.25 F +(rds).1 E .843(generated by the pattern need not match the w)108 112.8 R +.844(ord being completed.)-.1 F(The)5.844 E F1(GLOBIGNORE)3.344 E F0 +.844(shell v)3.094 F .844(ariable is)-.25 F (not used to \214lter the matches, b)108 124.8 Q(ut the)-.2 E F1 (FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 141.6 Q -.32(xt, the string speci\214ed as the ar)-.15 F .32(gument to the)-.18 F -F22.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 153.6 R F1(IFS)2.913 E F0 .412(special v)2.663 F .412 +.321(xt, the string speci\214ed as the ar)-.15 F .321(gument to the)-.18 +F F22.821 E F0 .32(option is considered.)2.821 F .32 +(The string is \214rst split using the)5.32 F .412(characters in the)108 +153.6 R F1(IFS)2.912 E F0 .412(special v)2.662 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 165.6 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 +.413(Each w)5.412 F .413(ord is then e)-.1 F(xpanded)-.15 E .092 +(using brace e)108 165.6 R .092(xpansion, tilde e)-.15 F .092 +(xpansion, parameter and v)-.15 F .092(ariable e)-.25 F .091 +(xpansion, command substitution, and arith-)-.15 F 1.396(metic e)108 177.6 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H (nder).15 E F1(EXP)3.896 E(ANSION)-.666 E/F3 9/Times-Roman@0 SF(.)A F0 1.396(The results are split using the rules described)5.896 F(abo)108 -189.6 Q .509 -.15(ve u)-.15 H(nder).15 E F2 -.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 +189.6 Q .51 -.15(ve u)-.15 H(nder).15 E F2 -.75(Wo)2.71 G .21 +(rd Splitting).75 F F0 5.21(.T)C .209(he results of the e)-5.21 F .209 +(xpansion are pre\214x-matched ag)-.15 F .209(ainst the w)-.05 F .209 (ord being com-)-.1 F(pleted, and the matching w)108 201.6 Q -(ords become the possible completions.)-.1 E 1.238 -(After these matches ha)108 218.4 R 1.538 -.15(ve b)-.2 H 1.238 -(een generated, an).15 F 3.738(ys)-.15 G 1.237 -(hell function or command speci\214ed with the)-3.738 F F23.737 E -F0(and)3.737 E F23.737 E F0 3.375(options is in)108 230.4 R -.2 +(ords become the possible completions.)-.1 E 1.237 +(After these matches ha)108 218.4 R 1.537 -.15(ve b)-.2 H 1.237 +(een generated, an).15 F 3.737(ys)-.15 G 1.238 +(hell function or command speci\214ed with the)-3.737 F F23.738 E +F0(and)3.738 E F23.738 E F0 3.376(options is in)108 230.4 R -.2 (vo)-.4 G -.1(ke).2 G 5.875(d. When).1 F 3.375 (the command or function is in)5.875 F -.2(vo)-.4 G -.1(ke).2 G 3.375 -(d, the).1 F F1(COMP_LINE)5.876 E F3(,)A F1(COMP_POINT)5.626 E F3(,)A F1 -(COMP_KEY)108 242.4 Q F3(,)A F0(and)2.408 E F1(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 F2 .157 -(Shell V)2.657 F(ariables)-.92 E F0 5.157(.I)C(f)-5.157 E 3.485(as)108 -254.4 S .986(hell function is being in)-3.485 F -.2(vo)-.4 G -.1(ke).2 G +(d, the).1 F F1(COMP_LINE)5.875 E F3(,)A F1(COMP_POINT)5.625 E F3(,)A F1 +(COMP_KEY)108 242.4 Q F3(,)A F0(and)2.407 E F1(COMP_TYPE)2.657 E F0 -.25 +(va)2.407 G .157(riables are assigned v).25 F .157 +(alues as described abo)-.25 F .457 -.15(ve u)-.15 H(nder).15 E F2 .158 +(Shell V)2.658 F(ariables)-.92 E F0 5.158(.I)C(f)-5.158 E 3.486(as)108 +254.4 S .986(hell function is being in)-3.486 F -.2(vo)-.4 G -.1(ke).2 G .986(d, the).1 F F1(COMP_W)3.486 E(ORDS)-.09 E F0(and)3.236 E F1 (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 .609 +(riables are also set.).25 F(When)5.985 E .608 (the function or command is in)108 266.4 R -.2(vo)-.4 G -.1(ke).2 G .608 (d, the \214rst ar).1 F .608(gument is the name of the command whose ar) --.18 F .608(guments are)-.18 F .073(being completed, the second ar)108 +-.18 F .609(guments are)-.18 F .073(being completed, the second ar)108 278.4 R .073(gument is the w)-.18 F .073 (ord being completed, and the third ar)-.1 F .073(gument is the w)-.18 F -.073(ord pre-)-.1 F .608(ceding the w)108 290.4 R .607 -(ord being completed on the current command line.)-.1 F .607 -(No \214ltering of the generated completions)5.607 F(ag)108 302.4 Q .093 +.072(ord pre-)-.1 F .607(ceding the w)108 290.4 R .607 +(ord being completed on the current command line.)-.1 F .608 +(No \214ltering of the generated completions)5.607 F(ag)108 302.4 Q .094 (ainst the w)-.05 F .093(ord being completed is performed; the function\ or command has complete freedom in generat-)-.1 F(ing the matches.)108 -314.4 Q(An)108 331.2 Q 2.938(yf)-.15 G .437(unction speci\214ed with) --2.938 F F22.937 E F0 .437(is in)2.937 F -.2(vo)-.4 G -.1(ke).2 G +314.4 Q(An)108 331.2 Q 2.937(yf)-.15 G .437(unction speci\214ed with) +-2.937 F F22.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 343.2 Q F2(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 +2.937(yo)-.15 G 2.937(ft)-2.937 G .437(he shell f)-2.937 F .438 +(acilities, including)-.1 F(the)108 343.2 Q F2(compgen)2.957 E F0 -.2 +(bu)2.957 G .457(iltin described belo).2 F 1.756 -.65(w, t)-.25 H 2.956 +(og).65 G .456(enerate the matches.)-2.956 F .456 (It must put the possible completions in the)5.456 F F1(COMPREPL)108 -355.2 Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E(Ne)108 372 Q .081 -(xt, an)-.15 F 2.581(yc)-.15 G .081(ommand speci\214ed with the)-2.581 F -F22.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 +355.2 Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E(Ne)108 372 Q .08 +(xt, an)-.15 F 2.58(yc)-.15 G .08(ommand speci\214ed with the)-2.58 F F2 +2.58 E F0 .081(option is in)2.581 F -.2(vo)-.4 G -.1(ke).2 G 2.581 +(di).1 G 2.581(na)-2.581 G 2.581(ne)-2.581 G -.4(nv)-2.581 G .081 +(ironment equi).4 F -.25(va)-.25 G .081(lent to command sub-).25 F 2.859 (stitution. It)108 384 R .359(should print a list of completions, one p\ -er line, to the standard output.)2.858 F .359(Backslash may be used) +er line, to the standard output.)2.859 F .358(Backslash may be used) 5.359 F(to escape a ne)108 396 Q(wline, if necessary)-.25 E(.)-.65 E -.377(After all of the possible completions are generated, an)108 412.8 R -2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F22.876 -E F0 .376(option is applied to the)2.876 F 3.181(list. The)108 424.8 R -.681(\214lter is a pattern as used for pathname e)3.181 F .681 -(xpansion; a)-.15 F F2(&)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 436.8 R .523(ord being completed.)-.1 F 3.023(Al)5.523 G -(iteral)-3.023 E F2(&)3.023 E F0 .522 +.376(After all of the possible completions are generated, an)108 412.8 R +2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F22.877 +E F0 .377(option is applied to the)2.877 F 3.182(list. The)108 424.8 R +.682(\214lter is a pattern as used for pathname e)3.182 F .681 +(xpansion; a)-.15 F F2(&)3.181 E F0 .681 +(in the pattern is replaced with the te)3.181 F .681(xt of)-.15 F .522 +(the w)108 436.8 R .522(ord being completed.)-.1 F 3.022(Al)5.522 G +(iteral)-3.022 E F2(&)3.022 E F0 .523 (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 448.8 -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 F2 -(!)3.35 E F0(ne)108 460.8 Q -.05(ga)-.15 G +-.15 G 3.023(db).15 G(efore)-3.023 E .85(attempting a match.)108 448.8 R +(An)5.85 E 3.35(yc)-.15 G .849 +(ompletion that matches the pattern will be remo)-3.35 F -.15(ve)-.15 G +3.349(df).15 G .849(rom the list.)-3.349 F 3.349(Al)5.849 G(eading) +-3.349 E F2(!)3.349 E F0(ne)108 460.8 Q -.05(ga)-.15 G (tes the pattern; in this case an).05 E 2.5(yc)-.15 G (ompletion not matching the pattern will be remo)-2.5 E -.15(ve)-.15 G -(d.).15 E(Finally)108 477.6 Q 3.087(,a)-.65 G .887 -.15(ny p)-3.087 H -.587(re\214x and suf).15 F .587(\214x speci\214ed with the)-.25 F F2 +(d.).15 E(Finally)108 477.6 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 F2 3.087 E F0(and)3.087 E F23.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 489.6 Q .246(If the pre)108 506.4 R .247 +possible completions.)108 489.6 Q .247(If the pre)108 506.4 R .247 (viously-applied actions do not generate an)-.25 F 2.747(ym)-.15 G .247 (atches, and the)-2.747 F F2 .247(\255o dir)2.747 F(names)-.15 E F0 .247 -(option w)2.747 F .247(as supplied to)-.1 F F2(complete)108 518.4 Q F0 +(option w)2.747 F .246(as supplied to)-.1 F F2(complete)108 518.4 Q F0 (when the compspec w)2.5 E -(as de\214ned, directory name completion is attempted.)-.1 E .462 -(If the)108 535.2 R F2 .462(\255o plusdirs)2.962 F F0 .462(option w) +(as de\214ned, directory name completion is attempted.)-.1 E .461 +(If the)108 535.2 R F2 .462(\255o plusdirs)2.961 F F0 .462(option w) 2.962 F .462(as supplied to)-.1 F F2(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 547.2 Q 2.5(ym)-.15 G -(atches are added to the results of the other actions.)-2.5 E .559 -(By def)108 564 R .559(ault, if a compspec is found, whate)-.1 F -.15 -(ve)-.25 G 3.059(ri).15 G 3.059(tg)-3.059 G .56 -(enerates is returned to the completion code as the full set)-3.059 F -.632(of possible completions.)108 576 R .632(The def)5.632 F(ault)-.1 E -F2(bash)3.132 E F0 .631 -(completions are not attempted, and the readline def)3.131 F .631 -(ault of \214le-)-.1 F .558(name completion is disabled.)108 588 R .558 -(If the)5.558 F F2 .559(\255o bashdefault)3.059 F F0 .559(option w)3.059 -F .559(as supplied to)-.1 F F2(complete)3.059 E F0 .559 -(when the compspec)3.059 F -.1(wa)108 600 S 3.172(sd).1 G .672 -(e\214ned, the)-3.172 F F2(bash)3.172 E F0(def)3.172 E .671 +(atches are added to the results of the other actions.)-2.5 E .56 +(By def)108 564 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 576 R .631(The def)5.631 F(ault)-.1 E +F2(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 588 R .559 +(If the)5.559 F F2 .559(\255o bashdefault)3.059 F F0 .559(option w)3.059 +F .559(as supplied to)-.1 F F2(complete)3.058 E F0 .558 +(when the compspec)3.058 F -.1(wa)108 600 S 3.171(sd).1 G .671 +(e\214ned, the)-3.171 F F2(bash)3.171 E F0(def)3.171 E .671 (ault completions are attempted if the compspec generates no matches.) --.1 F .671(If the)5.671 F F23.171 E(default)108 612 Q F0 1.207 -(option w)3.706 F 1.207(as supplied to)-.1 F F2(complete)3.707 E F0 +-.1 F .672(If the)5.672 F F23.172 E(default)108 612 Q F0 1.207 +(option w)3.707 F 1.207(as supplied to)-.1 F F2(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.207(ault completion)-.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 624 Q(ault)-.1 E F2(bash)2.5 E F0(completions\) generate no matches.)2.5 E .245(When a compspec indicates that directory name completion is desire\ -d, the programmable completion func-)108 640.8 R .632(tions force readl\ +d, the programmable completion func-)108 640.8 R .633(tions force readl\ ine to append a slash to completed names which are symbolic links to di\ -rectories, subject)108 652.8 R 2.762(to the v)108 664.8 R 2.762 -(alue of the)-.25 F F2(mark\255dir)5.262 E(ectories)-.18 E F0 2.761 -(readline v)5.262 F 2.761(ariable, re)-.25 F -.05(ga)-.15 G 2.761 -(rdless of the setting of the).05 F F2(mark-sym-)5.261 E(link)108 676.8 +rectories, subject)108 652.8 R 2.761(to the v)108 664.8 R 2.761 +(alue of the)-.25 F F2(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 F2(mark-sym-)5.262 E(link)108 676.8 Q(ed\255dir)-.1 E(ectories)-.18 E F0(readline v)2.5 E(ariable.)-.25 E/F4 -10.95/Times-Bold@0 SF(HIST)72 693.6 Q(OR)-.197 E(Y)-.383 E F0 .371 -(When the)108 705.6 R F2 .371(\255o history)2.871 F F0 .371 -(option to the)2.871 F F2(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/F5 -10/Times-Italic@0 SF .372(command history)2.872 F F0(,)A .032 +10.95/Times-Bold@0 SF(HIST)72 693.6 Q(OR)-.197 E(Y)-.383 E F0 .372 +(When the)108 705.6 R F2 .372(\255o history)2.872 F F0 .372 +(option to the)2.872 F F2(set)2.872 E F0 -.2(bu)2.872 G .372 +(iltin is enabled, the shell pro).2 F .371(vides access to the)-.15 F/F5 +10/Times-Italic@0 SF .371(command history)2.871 F F0(,)A .031 (the list of commands pre)108 717.6 R .031(viously typed.)-.25 F .031 (The v)5.031 F .031(alue of the)-.25 F F2(HISTSIZE)2.531 E F0 -.25(va) -2.531 G .031(riable is used as the number of com-).25 F .429 -(mands to sa)108 729.6 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 F1 -(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(GNU Bash-4.0)72 768 Q -(2008 July 6)150.675 E(44)200.665 E 0 Cg EP +2.531 G .031(riable is used as the number of com-).25 F .43(mands to sa) +108 729.6 R .73 -.15(ve i)-.2 H 2.93(nah).15 G .43(istory list.)-2.93 F +.43(The te)5.43 F .429(xt of the last)-.15 F F1(HISTSIZE)2.929 E F0 .429 +(commands \(def)2.679 F .429(ault 500\) is sa)-.1 F -.15(ve)-.2 G 2.929 +(d. The).15 F(shell)2.929 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E +(44)200.665 E 0 Cg EP %%Page: 45 45 %%BeginPageSetup BP @@ -5231,135 +5233,136 @@ BP (stores each command in the history list prior to parameter and v)108 84 R .287(ariable e)-.25 F .287(xpansion \(see)-.15 F/F1 9/Times-Bold@0 SF (EXP)2.787 E(ANSION)-.666 E F0(abo)2.537 E -.15(ve)-.15 G(\)).15 E -.2 -(bu)108 96 S 4.065(ta).2 G 1.565(fter history e)-4.065 F 1.565 +(bu)108 96 S 4.066(ta).2 G 1.565(fter history e)-4.066 F 1.565 (xpansion is performed, subject to the v)-.15 F 1.565 (alues of the shell v)-.25 F(ariables)-.25 E F1(HISTIGNORE)4.065 E F0 -(and)3.816 E F1(HISTCONTR)108 108 Q(OL)-.27 E/F2 9/Times-Roman@0 SF(.)A +(and)3.815 E F1(HISTCONTR)108 108 Q(OL)-.27 E/F2 9/Times-Roman@0 SF(.)A F0 .082 (On startup, the history is initialized from the \214le named by the v) -108 124.8 R(ariable)-.25 E F1(HISTFILE)2.582 E F0(\(def)2.332 E(ault)-.1 -E/F3 10/Times-Italic@0 SF(~/.bash_history)2.582 E F0(\).)A .315 +108 124.8 R(ariable)-.25 E F1(HISTFILE)2.583 E F0(\(def)2.333 E(ault)-.1 +E/F3 10/Times-Italic@0 SF(~/.bash_history)2.583 E F0(\).)A .315 (The \214le named by the v)108 136.8 R .315(alue of)-.25 F F1(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 .532 (lines speci\214ed by the v)108 148.8 R .532(alue of)-.25 F F1 (HISTFILESIZE)3.032 E F2(.)A F0 .532 (When the history \214le is read, lines be)5.032 F .532 -(ginning with the his-)-.15 F 1.158(tory comment character follo)108 -160.8 R 1.159(wed immediately by a digit are interpreted as timestamps \ -for the preceding)-.25 F .053(history line.)108 172.8 R .053 -(These timestamps are optionally displayed depending on the v)5.053 F -.052(alue of the)-.25 F F1(HISTTIMEFORMA)2.552 E(T)-.855 E F0 -.25(va) -108 184.8 S 4.386(riable. When).25 F 1.886(an interacti)4.386 F 2.187 +(ginning with the his-)-.15 F 1.159(tory comment character follo)108 +160.8 R 1.158(wed immediately by a digit are interpreted as timestamps \ +for the preceding)-.25 F .052(history line.)108 172.8 R .053 +(These timestamps are optionally displayed depending on the v)5.052 F +.053(alue of the)-.25 F F1(HISTTIMEFORMA)2.553 E(T)-.855 E F0 -.25(va) +108 184.8 S 4.387(riable. When).25 F 1.887(an interacti)4.387 F 2.187 -.15(ve s)-.25 H 1.887(hell e).15 F 1.887(xits, the last)-.15 F F1 ($HISTSIZE)4.387 E F0 1.887(lines are copied from the history list to) 4.137 F F1($HISTFILE)108 196.8 Q F2(.)A F0 .056(If the)4.556 F/F4 10 /Times-Bold@0 SF(histappend)2.556 E F0 .056 (shell option is enabled \(see the description of)2.556 F F4(shopt)2.556 E F0(under)2.556 E F1 .056(SHELL B)2.556 F(UIL)-.09 E(TIN)-.828 E -(COMMANDS)108 208.8 Q F0(belo)2.671 E .422(w\), the lines are appended \ +(COMMANDS)108 208.8 Q F0(belo)2.672 E .422(w\), the lines are appended \ to the history \214le, otherwise the history \214le is o)-.25 F -.15(ve) --.15 G 2.922(rwritten. If).15 F F1(HISTFILE)108 220.8 Q F0 1.114(is uns\ -et, or if the history \214le is unwritable, the history is not sa)3.364 -F -.15(ve)-.2 G 3.614(d. If).15 F(the)3.614 E F2 -.225(va)3.613 G 1.113 -(riable is set, time).225 F 1.251 +-.15 G 2.921(rwritten. If).15 F F1(HISTFILE)108 220.8 Q F0 1.114(is uns\ +et, or if the history \214le is unwritable, the history is not sa)3.363 +F -.15(ve)-.2 G 3.614(d. If).15 F(the)3.614 E F2 -.225(va)3.614 G 1.114 +(riable is set, time).225 F 1.252 (stamps are written to the history \214le, mark)108 232.8 R(ed)-.09 E F0 -1.252(with the history comment character)3.502 F 3.752(,s)-.4 G 3.752 -(ot)-3.752 G(he)-3.752 E 3.752(ym)-.15 G 1.252(ay be preserv)-3.752 F +1.252(with the history comment character)3.502 F 3.751(,s)-.4 G 3.751 +(ot)-3.751 G(he)-3.751 E 3.751(ym)-.15 G 1.251(ay be preserv)-3.751 F (ed)-.15 E .105(across shell sessions.)108 244.8 R .105(This uses the h\ istory comment character to distinguish timestamps from other history) -5.105 F 2.604(lines. After)108 256.8 R(sa)2.604 E .104(ving the history) --.2 F 2.604(,t)-.65 G .104 -(he history \214le is truncated to contain no more than)-2.604 F F1 -(HISTFILESIZE)2.605 E F0 2.605(lines. If)2.355 F F1(HISTFILESIZE)108 -268.8 Q F0(is not set, no truncation is performed.)2.25 E 1.294(The b) -108 285.6 R 1.294(uiltin command)-.2 F F4(fc)3.794 E F0(\(see)3.794 E F1 -1.293(SHELL B)3.794 F(UIL)-.09 E 1.293(TIN COMMANDS)-.828 F F0(belo) -3.543 E 1.293(w\) may be used to list or edit and re-)-.25 F -.15(exe) -108 297.6 S .673(cute a portion of the history list.).15 F(The)5.673 E +5.105 F 2.605(lines. After)108 256.8 R(sa)2.605 E .105(ving the history) +-.2 F 2.605(,t)-.65 G .104 +(he history \214le is truncated to contain no more than)-2.605 F F1 +(HISTFILESIZE)2.604 E F0 2.604(lines. If)2.354 F F1(HISTFILESIZE)108 +268.8 Q F0(is not set, no truncation is performed.)2.25 E 1.293(The b) +108 285.6 R 1.293(uiltin command)-.2 F F4(fc)3.793 E F0(\(see)3.793 E F1 +1.293(SHELL B)3.793 F(UIL)-.09 E 1.293(TIN COMMANDS)-.828 F F0(belo) +3.543 E 1.294(w\) may be used to list or edit and re-)-.25 F -.15(exe) +108 297.6 S .674(cute a portion of the history list.).15 F(The)5.673 E F4(history)3.173 E F0 -.2(bu)3.173 G .673 -(iltin may be used to display or modify the history list).2 F .28 +(iltin may be used to display or modify the history list).2 F .279 (and manipulate the history \214le.)108 309.6 R .279 (When using command-line editing, search commands are a)5.279 F -.25(va) --.2 G .279(ilable in each).25 F(editing mode that pro)108 321.6 Q -(vide access to the history list.)-.15 E 1.485(The shell allo)108 338.4 -R 1.485(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486 +-.2 G .28(ilable in each).25 F(editing mode that pro)108 321.6 Q +(vide access to the history list.)-.15 E 1.486(The shell allo)108 338.4 +R 1.486(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 350.4 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 F4 +-3.986 G 1.486(he history list.)-3.986 F(The)6.485 E F1(HISTCONTR)3.985 +E(OL)-.27 E F0(and)3.735 E F1(HISTIGNORE)108 350.4 Q F0 -.25(va)2.707 G +.457(riables may be set to cause the shell to sa).25 F .758 -.15(ve o) +-.2 H .458(nly a subset of the commands entered.).15 F(The)5.458 E F4 (cmdhist)108 362.4 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 374.4 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 F4(lithist)3.576 E F0 -.373(shell option causes the shell to sa)108 386.4 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 398.4 R F4(shopt)2.819 E F0 -.2(bu)2.819 G .318 +1.077(yntactic correctness.)-3.577 F(The)6.077 E F4(lithist)3.577 E F0 +.374(shell option causes the shell to sa)108 386.4 R .674 -.15(ve t)-.2 +H .374(he command with embedded ne).15 F .373 +(wlines instead of semicolons.)-.25 F .373(See the)5.373 F .318 +(description of the)108 398.4 R F4(shopt)2.818 E F0 -.2(bu)2.818 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 +(UIL)-.09 E .318(TIN COMMANDS)-.828 F F0 .319 (for information on setting and)2.568 F(unsetting shell options.)108 410.4 Q/F5 10.95/Times-Bold@0 SF(HIST)72 427.2 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 439.2 R .611(xpansion feature that is similar to the history e)-.15 -F .611(xpansion in)-.15 F F4(csh.)3.111 E F0 .611(This section)5.611 F -.871(describes what syntax features are a)108 451.2 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 -2.013(can be disabled using the)108 463.2 R F4(+H)4.514 E F0 2.014 +-.383 G(XP)-2.738 E(ANSION)-.81 E F0 .611 +(The shell supports a history e)108 439.2 R .611 +(xpansion feature that is similar to the history e)-.15 F .61 +(xpansion in)-.15 F F4(csh.)3.11 E F0 .61(This section)5.61 F .87 +(describes what syntax features are a)108 451.2 R -.25(va)-.2 G 3.371 +(ilable. This).25 F .871(feature is enabled by def)3.371 F .871 +(ault for interacti)-.1 F 1.171 -.15(ve s)-.25 H .871(hells, and).15 F +2.014(can be disabled using the)108 463.2 R F4(+H)4.514 E F0 2.014 (option to the)4.514 F F4(set)4.514 E F0 -.2(bu)4.514 G 2.014 -(iltin command \(see).2 F F1 2.014(SHELL B)4.514 F(UIL)-.09 E 2.014 +(iltin command \(see).2 F F1 2.013(SHELL B)4.513 F(UIL)-.09 E 2.013 (TIN COMMANDS)-.828 F F0(belo)108 475.2 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 492 R 1.306 +(xpansion by def)-.15 E(ault.)-.1 E 1.305(History e)108 492 R 1.305 (xpansions introduce w)-.15 F 1.306(ords from the history list into the\ - input stream, making it easy to repeat)-.1 F .209 -(commands, insert the ar)108 504 R .209(guments to a pre)-.18 F .21 + input stream, making it easy to repeat)-.1 F .21 +(commands, insert the ar)108 504 R .21(guments to a pre)-.18 F .209 (vious command into the current input line, or \214x errors in pre)-.25 -F(vious)-.25 E(commands quickly)108 516 Q(.)-.65 E 1.164(History e)108 +F(vious)-.25 E(commands quickly)108 516 Q(.)-.65 E 1.163(History e)108 532.8 R 1.163(xpansion is performed immediately after a complete line i\ s read, before the shell breaks it into)-.15 F -.1(wo)108 544.8 S 3.2 (rds. It).1 F(tak)3.2 E .7(es place in tw)-.1 F 3.2(op)-.1 G 3.2 (arts. The)-3.2 F .7 (\214rst is to determine which line from the history list to use during) -3.2 F 4.368(substitution. The)108 556.8 R 1.868(second is to select por\ -tions of that line for inclusion into the current one.)4.368 F 1.867 -(The line)6.867 F .662(selected from the history is the)108 568.8 R F3 --.15(ev)3.162 G(ent).15 E F0 3.162(,a)C .663 -(nd the portions of that line that are acted upon are)-3.162 F F3(wor) -3.163 E(ds)-.37 E F0 5.663(.V)C(arious)-6.773 E F3(modi\214er)108 580.8 -Q(s)-.1 E F0 .227(are a)2.727 F -.25(va)-.2 G .227 -(ilable to manipulate the selected w).25 F 2.727(ords. The)-.1 F .226 -(line is brok)2.726 F .226(en into w)-.1 F .226(ords in the same f)-.1 F -(ashion)-.1 E .351(as when reading input, so that se)108 592.8 R -.15 -(ve)-.25 G(ral).15 E F3(metac)2.852 E(har)-.15 E(acter)-.15 E F0 .352 -(-separated w)B .352(ords surrounded by quotes are considered)-.1 F .625 -(one w)108 604.8 R 3.125(ord. History)-.1 F -.15(ex)3.125 G .624 -(pansions are introduced by the appearance of the history e).15 F .624 -(xpansion character)-.15 F 3.124(,w)-.4 G(hich)-3.124 E(is)108 616.8 Q +3.2 F 4.367(substitution. The)108 556.8 R 1.868(second is to select por\ +tions of that line for inclusion into the current one.)4.367 F 1.868 +(The line)6.868 F .663(selected from the history is the)108 568.8 R F3 +-.15(ev)3.163 G(ent).15 E F0 3.163(,a)C .663 +(nd the portions of that line that are acted upon are)-3.163 F F3(wor) +3.162 E(ds)-.37 E F0 5.662(.V)C(arious)-6.772 E F3(modi\214er)108 580.8 +Q(s)-.1 E F0 .226(are a)2.726 F -.25(va)-.2 G .226 +(ilable to manipulate the selected w).25 F 2.726(ords. The)-.1 F .227 +(line is brok)2.726 F .227(en into w)-.1 F .227(ords in the same f)-.1 F +(ashion)-.1 E .352(as when reading input, so that se)108 592.8 R -.15 +(ve)-.25 G(ral).15 E F3(metac)2.852 E(har)-.15 E(acter)-.15 E F0 .351 +(-separated w)B .351(ords surrounded by quotes are considered)-.1 F .624 +(one w)108 604.8 R 3.124(ord. History)-.1 F -.15(ex)3.124 G .624 +(pansions are introduced by the appearance of the history e).15 F .625 +(xpansion character)-.15 F 3.125(,w)-.4 G(hich)-3.125 E(is)108 616.8 Q F4(!)3.333 E F0(by def)3.333 E 2.5(ault. Only)-.1 F(backslash \()2.5 E F4(\\).833 E F0 2.5(\)a).833 G(nd single quotes can quote the history e) -2.5 E(xpansion character)-.15 E(.)-.55 E(Se)108 633.6 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 645.6 T -3.163(ni).25 G 3.163(fi)-3.163 G 3.162(ti)-3.163 G 3.162(su)-3.162 G +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 F4(=)3.162 E F0 5.662(.I)C 3.162(ft)-5.662 G(he)-3.162 E F4 -(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F4(\()3.162 E +(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F4(\()3.163 E F0(will also inhibit e)108 657.6 Q(xpansion.)-.15 E(Se)108 674.4 Q -.15 -(ve)-.25 G .109(ral shell options settable with the).15 F F4(shopt)2.609 -E F0 -.2(bu)2.609 G .11(iltin may be used to tailor the beha).2 F .11 -(vior of history e)-.2 F(xpansion.)-.15 E 1.259(If the)108 686.4 R F4 -(histv)3.759 E(erify)-.1 E F0 1.259 -(shell option is enabled \(see the description of the)3.759 F F4(shopt) -3.759 E F0 -.2(bu)3.759 G 1.259(iltin\), and).2 F F4 -.18(re)3.758 G -(adline).18 E F0 1.258(is being)3.758 F 1.497(used, history substitutio\ -ns are not immediately passed to the shell parser)108 698.4 R 6.498(.I) --.55 G 1.498(nstead, the e)-6.498 F 1.498(xpanded line is)-.15 F 2.228 +(ve)-.25 G .11(ral shell options settable with the).15 F F4(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 1.258(If the)108 686.4 R F4 +(histv)3.758 E(erify)-.1 E F0 1.259 +(shell option is enabled \(see the description of the)3.758 F F4(shopt) +3.759 E F0 -.2(bu)3.759 G 1.259(iltin\), and).2 F F4 -.18(re)3.759 G +(adline).18 E F0 1.259(is being)3.759 F 1.498(used, history substitutio\ +ns are not immediately passed to the shell parser)108 698.4 R 6.497(.I) +-.55 G 1.497(nstead, the e)-6.497 F 1.497(xpanded line is)-.15 F 2.228 (reloaded into the)108 710.4 R F4 -.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 F4 -.18(re)4.728 G(adline).18 E F0 2.228 @@ -5373,27 +5376,27 @@ ns are not immediately passed to the shell parser)108 698.4 R 6.498(.I) BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E -.2(bu)108 84 S -.25(ff).2 G 1.161(er for correction.).25 F(The) -6.161 E/F1 10/Times-Bold@0 SF3.661 E F0 1.161(option to the)3.661 -F F1(history)3.661 E F0 -.2(bu)3.661 G 1.16 +-.35 E -.2(bu)108 84 S -.25(ff).2 G 1.16(er for correction.).25 F(The) +6.16 E/F1 10/Times-Bold@0 SF3.66 E F0 1.16(option to the)3.66 F F1 +(history)3.66 E F0 -.2(bu)3.661 G 1.161 (iltin command may be used to see what a history).2 F -.15(ex)108 96 S -.055(pansion will do before using it.).15 F(The)5.055 E F12.555 E -F0 .055(option to the)2.555 F F1(history)2.556 E F0 -.2(bu)2.556 G .056 +.056(pansion will do before using it.).15 F(The)5.056 E F12.556 E +F0 .056(option to the)2.556 F F1(history)2.555 E F0 -.2(bu)2.555 G .055 (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 2.2(The shell allo)108 124.8 R 2.2 (ws control of the v)-.25 F 2.2(arious characters used by the history e) --.25 F 2.2(xpansion mechanism \(see the)-.15 F 1.146(description of)108 -136.8 R F1(histchars)3.646 E F0(abo)3.646 E 1.446 -.15(ve u)-.15 H(nder) -.15 E F1 1.146(Shell V)3.646 F(ariables)-.92 E F0 3.646(\). The)B 1.147 +-.25 F 2.2(xpansion mechanism \(see the)-.15 F 1.147(description of)108 +136.8 R F1(histchars)3.647 E F0(abo)3.647 E 1.447 -.15(ve u)-.15 H(nder) +.15 E F1 1.147(Shell V)3.647 F(ariables)-.92 E F0 3.646(\). The)B 1.146 (shell uses the history comment character to)3.646 F (mark history timestamps when writing the history \214le.)108 148.8 Q F1 (Ev)87 165.6 Q(ent Designators)-.1 E F0(An e)108 177.6 Q -.15(ve)-.25 G (nt designator is a reference to a command line entry in the history li\ -st.).15 E F1(!)108 194.4 Q F0 1.608(Start a history substitution, e) -32.67 F 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 +st.).15 E F1(!)108 194.4 Q F0 1.607(Start a history substitution, e) +32.67 F 1.607(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.608 (line, carriage return, = or \().25 F(\(when the)144 206.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 218.4 Q/F2 10/Times-Italic@0 SF(n)A F0 @@ -5405,29 +5408,29 @@ F2(n)A F0(Refer to the current command line minus)21.97 E F2(n)2.5 E F0 (string)2.5 E F0(.).22 E F1(!?)108 266.4 Q F2(string)A F1([?])A F0 1.022 (Refer to the most recent command containing)144 278.4 R F2(string)3.522 E F0 6.022(.T).22 G 1.022(he trailing)-6.022 F F1(?)3.522 E F0 1.022 -(may be omitted if)3.522 F F2(string)3.862 E F0(is)3.742 E(follo)144 +(may be omitted if)3.522 F F2(string)3.861 E F0(is)3.741 E(follo)144 290.4 Q(wed immediately by a ne)-.25 E(wline.)-.25 E/F3 12/Times-Bold@0 SF(^)108 307.4 Q F2(string1)-5 I F3(^)5 I F2(string2)-5 I F3(^)5 I F0 -2.63(Quick substitution.)144 314.4 R 2.629 +2.629(Quick substitution.)144 314.4 R 2.629 (Repeat the last command, replacing)7.629 F F2(string1)5.469 E F0(with) 5.129 E F2(string2)5.129 E F0 7.629(.E).02 G(qui)-7.629 E -.25(va)-.25 G -2.629(lent to).25 F -.74(``)144 326.4 S(!!:s/).74 E F2(string1)A F0(/)A +2.63(lent to).25 F -.74(``)144 326.4 S(!!:s/).74 E F2(string1)A F0(/)A F2(string2)A F0(/')A 2.5('\()-.74 G(see)-2.5 E F1(Modi\214ers)2.5 E F0 (belo)2.5 E(w\).)-.25 E F1(!#)108 338.4 Q F0 (The entire command line typed so f)27.67 E(ar)-.1 E(.)-.55 E F1 -.75 -(Wo)87 355.2 S(rd Designators).75 E F0 -.8(Wo)108 367.2 S 1.313 +(Wo)87 355.2 S(rd Designators).75 E F0 -.8(Wo)108 367.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.314 -(separates the e)3.814 F -.15(ve)-.25 G 1.314(nt speci\214cation).15 F -.53(from the w)108 379.2 R .529(ord designator)-.1 F 5.529(.I)-.55 G +-.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 379.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.529(.W)C(ords)-6.329 E 1.3 -(are numbered from the be)108 391.2 R 1.3 -(ginning of the line, with the \214rst w)-.15 F 1.301 -(ord being denoted by 0 \(zero\).)-.1 F -.8(Wo)6.301 G 1.301(rds are).8 -F(inserted into the current line separated by single spaces.)108 403.2 Q +-3.029 E F1(%)3.029 E F0 5.53(.W)C(ords)-6.33 E 1.301 +(are numbered from the be)108 391.2 R 1.301 +(ginning of the line, with the \214rst w)-.15 F 1.3 +(ord being denoted by 0 \(zero\).)-.1 F -.8(Wo)6.3 G 1.3(rds are).8 F +(inserted into the current line separated by single spaces.)108 403.2 Q F1 2.5(0\()108 420 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 432 Q 2.5 (ord. F)-.1 F(or the shell, this is the command w)-.15 E(ord.)-.1 E F2 (n)108.36 444 Q F0(The)30.64 E F2(n)2.5 E F0(th w)A(ord.)-.1 E F1(^)108 @@ -5436,21 +5439,21 @@ F1 2.5(0\()108 420 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 432 Q 2.5 480 Q F0(The w)26 E(ord matched by the most recent `?)-.1 E F2(string)A F0(?' search.)A F2(x)108.77 492 Q F1A F2(y)A F0 2.5(Ar)20.65 G (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 504 Q F0 .316 -(All of the w)31 F .316(ords b)-.1 F .316(ut the zeroth.)-.2 F .315 +(viates `0\255)-.25 E F2(y)A F0('.)A F1(*)108 504 Q F0 .315 +(All of the w)31 F .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.815 E F0 .315 -(if there is)2.815 F(just one w)144 516 Q(ord in the e)-.1 E -.15(ve) +('. 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 516 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 528 Q F0(Abbre)26 E(viates)-.25 E F2(x\255$)2.5 E F0(.)A F1<78ad>108 540 Q F0(Abbre)25.3 E(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(ord.)-.1 E(If a w)108 556.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 573.6 Q F0 .183 -(After the optional w)108 585.6 R .183(ord designator)-.1 F 2.683(,t)-.4 -G .184(here may appear a sequence of one or more of the follo)-2.683 F -.184(wing modi\214ers,)-.25 F(each preceded by a `:'.)108 597.6 Q F1(h) +-.15(ve)-.25 G(nt.).15 E F1(Modi\214ers)87 573.6 Q F0 .184 +(After the optional w)108 585.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 597.6 Q F1(h) 108 614.4 Q F0(Remo)30.44 E .3 -.15(ve a t)-.15 H (railing \214le name component, lea).15 E(ving only the head.)-.2 E F1 (t)108 626.4 Q F0(Remo)32.67 E .3 -.15(ve a)-.15 H @@ -5465,13 +5468,13 @@ E -.15(xe)-.15 G(cute it.).15 E F1(q)108 674.4 Q F0 -.1 E F1(x)108 686.4 Q F0(Quote the substituted w)31 E(ords as with)-.1 E F1(q)2.5 E F0 2.5(,b)C(ut break into w)-2.7 E(ords at)-.1 E F1(blanks) 2.5 E F0(and ne)2.5 E(wlines.)-.25 E F1(s/)108 698.4 Q F2(old)A F1(/)A -F2(ne)A(w)-.15 E F1(/)A F0(Substitute)144 710.4 Q F2(ne)3.082 E(w)-.15 E -F0 .221(for the \214rst occurrence of)3.032 F F2(old)2.951 E F0 .221 +F2(ne)A(w)-.15 E F1(/)A F0(Substitute)144 710.4 Q F2(ne)3.081 E(w)-.15 E +F0 .221(for the \214rst occurrence of)3.031 F F2(old)2.951 E F0 .221 (in the e)3.491 F -.15(ve)-.25 G .221(nt line.).15 F(An)5.221 E 2.721 -(yd)-.15 G .221(elimiter can be used in place)-2.721 F .616(of /.)144 +(yd)-.15 G .221(elimiter can be used in place)-2.721 F .617(of /.)144 722.4 R .617 (The \214nal delimiter is optional if it is the last character of the e) -5.616 F -.15(ve)-.25 G .617(nt line.).15 F .617(The delimiter may)5.617 +5.617 F -.15(ve)-.25 G .617(nt line.).15 F .616(The delimiter may)5.616 F(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(46)200.665 E 0 Cg EP %%Page: 47 47 %%BeginPageSetup @@ -5482,39 +5485,39 @@ BP (and)3.936 E F1(ne)3.526 E(w)-.15 E F0 .666(with a single backslash.) 3.476 F .666(If & appears in)5.666 F F1(ne)3.166 E(w)-.15 E F0 3.166(,i) .31 G 3.166(ti)-3.166 G 3.166(sr)-3.166 G .666(eplaced by)-3.166 F F1 -(old)3.166 E F0 5.666(.A).77 G .274(single backslash will quote the &.) -144 96 R(If)5.274 E F1(old)3.004 E F0 .274 -(is null, it is set to the last)3.544 F F1(old)3.005 E F0 .275 -(substituted, or)3.545 F 2.775(,i)-.4 G 2.775(fn)-2.775 G 2.775(op) --2.775 G(re)-2.775 E(vi-)-.25 E +(old)3.166 E F0 5.666(.A).77 G .275(single backslash will quote the &.) +144 96 R(If)5.275 E F1(old)3.004 E F0 .274 +(is null, it is set to the last)3.544 F F1(old)3.004 E F0 .274 +(substituted, or)3.544 F 2.774(,i)-.4 G 2.774(fn)-2.774 G 2.774(op) +-2.774 G(re)-2.774 E(vi-)-.25 E (ous history substitutions took place, the last)144 108 Q F1(string)2.84 E F0(in a)2.72 E/F2 10/Times-Bold@0 SF(!?)2.5 E F1(string)A F2([?])A F0 (search.)5 E F2(&)108 120 Q F0(Repeat the pre)27.67 E -(vious substitution.)-.25 E F2(g)108 132 Q F0 .398 -(Cause changes to be applied o)31 F -.15(ve)-.15 G 2.898(rt).15 G .398 -(he entire e)-2.898 F -.15(ve)-.25 G .398(nt line.).15 F .397 -(This is used in conjunction with `)5.398 F F2(:s)A F0 2.897('\()C -(e.g.,)-2.897 E(`)144 144 Q F2(:gs/)A F1(old)A F2(/)A F1(ne)A(w)-.15 E -F2(/)A F0 1.218('\) or `)B F2(:&)A F0 3.718('. If)B 1.218(used with `) -3.718 F F2(:s)A F0 1.218(', an)B 3.718(yd)-.15 G 1.219 -(elimiter can be used in place of /, and the \214nal)-3.718 F .09 +(vious substitution.)-.25 E F2(g)108 132 Q F0 .397 +(Cause changes to be applied o)31 F -.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 144 Q F2(:gs/)A F1(old)A F2(/)A F1(ne)A(w)-.15 E +F2(/)A F0 1.219('\) or `)B F2(:&)A F0 3.719('. If)B 1.219(used with `) +3.719 F F2(:s)A F0 1.218(', an)B 3.718(yd)-.15 G 1.218 +(elimiter can be used in place of /, and the \214nal)-3.718 F .089 (delimiter is optional if it is the last character of the e)144 156 R --.15(ve)-.25 G .089(nt line.).15 F(An)5.089 E F2(a)2.589 E F0 .089 -(may be used as a synon)2.589 F .089(ym for)-.15 F F2(g)144 168 Q F0(.)A +-.15(ve)-.25 G .09(nt line.).15 F(An)5.09 E F2(a)2.59 E F0 .09 +(may be used as a synon)2.59 F .09(ym for)-.15 F F2(g)144 168 Q F0(.)A F2(G)108 180 Q F0(Apply the follo)28.22 E(wing `)-.25 E F2(s)A 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 196.8 Q(UIL)-.11 E -(TIN COMMANDS)-1.007 E F0 .062(Unless otherwise noted, each b)108 208.8 +(TIN COMMANDS)-1.007 E F0 .063(Unless otherwise noted, each b)108 208.8 R .062(uiltin command documented in this section as accepting options p\ receded by)-.2 F F2108 220.8 Q F0(accepts)3.8 E F23.8 E F0 1.3 (to signify the end of the options.)3.8 F -.15(Fo)6.3 G 3.8(re).15 G 1.3 (xample, the)-3.95 F F2(:)3.8 E F0(,)A F2(true)3.8 E F0(,)A F2(false)3.8 E F0 3.8(,a)C(nd)-3.8 E F2(test)3.8 E F0 -.2(bu)3.8 G 1.3(iltins do not) .2 F(accept options.)108 232.8 Q F2(:)108 250.8 Q F0([)2.5 E F1(ar)A -(guments)-.37 E F0(])A .451(No ef)144 262.8 R .451 +(guments)-.37 E F0(])A .452(No ef)144 262.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 .452(and performing an)3.222 F -2.952(ys)-.15 G(peci\214ed)-2.952 E 2.5(redirections. A)144 274.8 R +-.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. A)144 274.8 R (zero e)2.5 E(xit code is returned.)-.15 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 @@ -5527,28 +5530,28 @@ F0(])A 1.02(Read and e)144 315.6 R -.15(xe)-.15 G 1.02 (names in)144 339.6 R/F4 9/Times-Bold@0 SF -.666(PA)3.108 G(TH)-.189 E F0 .608(are used to \214nd the directory containing)2.858 F F1 (\214lename)3.108 E F0 5.608(.T).18 G .608(he \214le searched for in) --5.608 F F4 -.666(PA)3.108 G(TH)-.189 E F0 .832(need not be e)144 351.6 -R -.15(xe)-.15 G 3.332(cutable. When).15 F F2(bash)3.332 E F0 .832 -(is not in)3.332 F F1 .832(posix mode)3.332 F F0 3.332(,t)C .833 -(he current directory is searched if no)-3.332 F .982 +-5.608 F F4 -.666(PA)3.108 G(TH)-.189 E F0 .833(need not be e)144 351.6 +R -.15(xe)-.15 G 3.333(cutable. When).15 F F2(bash)3.333 E F0 .832 +(is not in)3.333 F F1 .832(posix mode)3.332 F F0 3.332(,t)C .832 +(he current directory is searched if no)-3.332 F .981 (\214le is found in)144 363.6 R F4 -.666(PA)3.481 G(TH)-.189 E/F5 9 /Times-Roman@0 SF(.)A F0 .981(If the)5.481 F F2(sour)3.481 E(cepath)-.18 E F0 .981(option to the)3.481 F F2(shopt)3.481 E F0 -.2(bu)3.481 G .981 -(iltin command is turned of).2 F .981(f, the)-.25 F F4 -.666(PA)144 -375.6 S(TH)-.189 E F0 .112(is not searched.)2.362 F .112(If an)5.112 F +(iltin command is turned of).2 F .982(f, the)-.25 F F4 -.666(PA)144 +375.6 S(TH)-.189 E F0 .112(is not searched.)2.363 F .112(If an)5.112 F (y)-.15 E F1(ar)2.612 E(guments)-.37 E F0 .112(are supplied, the)2.612 F 2.612(yb)-.15 G .112(ecome the positional parameters when)-2.612 F F1 -(\214lename)144 387.6 Q F0 .342(is e)2.842 F -.15(xe)-.15 G 2.842 -(cuted. Otherwise).15 F .342(the positional parameters are unchanged.) -2.842 F .341(The return status is the)5.341 F .716 +(\214lename)144 387.6 Q F0 .341(is e)2.841 F -.15(xe)-.15 G 2.841 +(cuted. Otherwise).15 F .341(the positional parameters are unchanged.) +2.841 F .342(The return status is the)5.342 F .716 (status of the last command e)144 399.6 R .716 (xited within the script \(0 if no commands are e)-.15 F -.15(xe)-.15 G -.716(cuted\), and f).15 F .716(alse if)-.1 F F1(\214lename)145.91 411.6 +.716(cuted\), and f).15 F .715(alse if)-.1 F F1(\214lename)145.91 411.6 Q F0(is not found or cannot be read.)2.68 E F2(alias)108 428.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 440.4 Q F0 2.725(with no ar)5.225 F 2.724 +C(..])-2.5 E F2(Alias)144 440.4 Q F0 2.724(with no ar)5.224 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 +(option prints the list of aliases in the form)5.224 F F2(alias)5.225 E F1(name)144 452.4 Q F0(=)A F1(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) @@ -5558,23 +5561,23 @@ F1(name)144 452.4 Q F0(=)A F1(value)A F0 .58(on standard output.)3.08 F (ord to be check)-.1 F .395(ed for alias sub-)-.1 F .054 (stitution when the alias is e)144 476.4 R 2.554(xpanded. F)-.15 F .054 (or each)-.15 F F1(name)2.554 E F0 .054(in the ar)2.554 F .054 -(gument list for which no)-.18 F F1(value)2.554 E F0 .054(is sup-)2.554 -F 1.314(plied, the name and v)144 488.4 R 1.314 +(gument list for which no)-.18 F F1(value)2.554 E F0 .053(is sup-)2.553 +F 1.313(plied, the name and v)144 488.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 --.15(ve)-.25 G 3.813(nf).15 G(or)-3.813 E +(returns true unless a)3.814 F F1(name)3.814 E F0 1.314(is gi)3.814 F +-.15(ve)-.25 G 3.814(nf).15 G(or)-3.814 E (which no alias has been de\214ned.)144 500.4 Q F2(bg)108 517.2 Q F0([) -2.5 E F1(jobspec)A F0(...])2.5 E .744(Resume each suspended job)144 -529.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 541.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 +2.5 E F1(jobspec)A F0(...])2.5 E .745(Resume each suspended job)144 +529.2 R F1(jobspec)3.245 E F0 .745 +(in the background, as if it had been started with)3.245 F F2(&)3.244 E +F0 5.744(.I)C(f)-5.744 E F1(job-)4.984 E(spec)144 541.2 Q F0 .671 +(is not present, the shell')3.481 F 3.171(sn)-.55 G .672(otion of the) +-3.171 F F1(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F2 +(bg)5.672 E F1(jobspec)4.912 E F0 .672(returns 0 unless run)3.482 F .419 (when job control is disabled or)144 553.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 565.2 Q(as started without job control.)-.1 +(hen run with job control enabled, an)-2.919 F 2.918(ys)-.15 G +(peci\214ed)-2.918 E F1(jobspec)2.918 E F0 -.1(wa)2.918 G 2.918(sn).1 G +(ot)-2.918 E(found or w)144 565.2 Q(as started without job control.)-.1 E F2(bind)108 582 Q F0([)2.5 E F2A F1 -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F2(\255lpsvPSV)-2.5 E F0(])A F2(bind)108 594 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 @@ -5586,23 +5589,23 @@ F2-2.5 E F1 -.1(ke)2.5 G(yseq)-.2 E F0(])A F2(bind)108 606 Q F0([) (shell\255command)A F2(bind)108 630 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 642 Q F1 -.37(re)2.5 G -(adline\255command).37 E F0 .239(Display current)144 654 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 .475(macro, or set a)144 666 R F2 -.18(re)2.975 G(adline).18 E -F0 -.25(va)2.975 G 2.975(riable. Each).25 F .476(non-option ar)2.976 F -.476(gument is a command as it w)-.18 F .476(ould appear in)-.1 F F1 -(.inputr)144 678 Q(c)-.37 E F0 2.984(,b).31 G .484 -(ut each binding or command must be passed as a separate ar)-3.184 F -.483(gument; e.g., '"\\C\255x\\C\255r":)-.18 F 2.5 +(adline\255command).37 E F0 .238(Display current)144 654 R F2 -.18(re) +2.738 G(adline).18 E F0 -.1(ke)2.738 G 2.738(ya)-.05 G .239 +(nd function bindings, bind a k)-2.738 F .539 -.15(ey s)-.1 H .239 +(equence to a).15 F F2 -.18(re)2.739 G(adline).18 E F0 .239(function or) +2.739 F .476(macro, or set a)144 666 R F2 -.18(re)2.976 G(adline).18 E +F0 -.25(va)2.976 G 2.976(riable. Each).25 F .476(non-option ar)2.976 F +.475(gument is a command as it w)-.18 F .475(ould appear in)-.1 F F1 +(.inputr)144 678 Q(c)-.37 E F0 2.983(,b).31 G .484 +(ut each binding or command must be passed as a separate ar)-3.183 F +.484(gument; e.g., '"\\C\255x\\C\255r":)-.18 F 2.5 (re\255read\255init\255\214le'. Options,)144 690 R(if supplied, ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F2144 702 -Q F1 -.1(ke)2.5 G(ymap)-.2 E F0(Use)180 714 Q F1 -.1(ke)5.158 G(ymap)-.2 -E F0 2.658(as the k)5.348 F -.15(ey)-.1 G 2.658(map to be af).15 F 2.659 -(fected by the subsequent bindings.)-.25 F(Acceptable)7.659 E F1 -.1(ke) -180 726 S(ymap)-.2 E F0 3.193(names are)5.883 F F1 3.193 -(emacs, emacs\255standar)5.693 F 3.192 +Q F1 -.1(ke)2.5 G(ymap)-.2 E F0(Use)180 714 Q F1 -.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 F1 -.1(ke) +180 726 S(ymap)-.2 E F0 3.192(names are)5.882 F F1 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 F0(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(47)200.665 E 0 Cg EP %%Page: 48 48 @@ -5610,11 +5613,11 @@ F0(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(47)200.665 E 0 Cg EP BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Italic@0 SF(vi\255command)180 84 Q F0 4.429(,a)C(nd) --4.429 E F1(vi\255insert)4.429 E F0(.).68 E F1(vi)6.929 E F0 1.929 +-.35 E/F1 10/Times-Italic@0 SF(vi\255command)180 84 Q F0 4.43(,a)C(nd) +-4.43 E F1(vi\255insert)4.429 E F0(.).68 E F1(vi)6.929 E F0 1.929 (is equi)4.429 F -.25(va)-.25 G 1.929(lent to).25 F F1(vi\255command) 4.429 E F0(;)A F1(emacs)4.429 E F0 1.929(is equi)4.429 F -.25(va)-.25 G -1.93(lent to).25 F F1(emacs\255standar)180 96 Q(d)-.37 E F0(.)A/F2 10 +1.929(lent to).25 F F1(emacs\255standar)180 96 Q(d)-.37 E F0(.)A/F2 10 /Times-Bold@0 SF144 108 Q F0(List the names of all)27.52 E F2 -.18 (re)2.5 G(adline).18 E F0(functions.)2.5 E F2144 120 Q F0(Display) 24.74 E F2 -.18(re)2.5 G(adline).18 E F0 @@ -5646,91 +5649,91 @@ E F2 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5(ys)-.05 G 180 312 Q F1(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 F1 -.1(ke)4.325 G (yseq)-.2 E F0 1.825(is entered.)4.325 F(When)6.825 E F1(shell\255com-) -4.325 E(mand)180 324 Q F0 1.113(is e)3.614 F -.15(xe)-.15 G 1.113 +4.325 E(mand)180 324 Q F0 1.113(is e)3.613 F -.15(xe)-.15 G 1.113 (cuted, the shell sets the).15 F F2(READLINE_LINE)3.613 E F0 -.25(va) 3.613 G 1.113(riable to the contents of the).25 F F2 -.18(re)180 336 S -(adline).18 E F0 .586(line b)3.086 F(uf)-.2 E .586(fer and the)-.25 F F2 -(READLINE_POINT)3.087 E F0 -.25(va)3.087 G .587 -(riable to the current location of the).25 F 1.241(insertion point.)180 +(adline).18 E F0 .587(line b)3.087 F(uf)-.2 E .587(fer and the)-.25 F F2 +(READLINE_POINT)3.087 E F0 -.25(va)3.087 G .586 +(riable to the current location of the).25 F 1.24(insertion point.)180 348 R 1.241(If the e)6.241 F -.15(xe)-.15 G 1.241 (cuted command changes the v).15 F 1.241(alue of)-.25 F F2 -(READLINE_LINE)3.741 E F0(or)3.74 E F2(READLINE_POINT)180 360 Q F0 2.5 +(READLINE_LINE)3.741 E F0(or)3.741 E F2(READLINE_POINT)180 360 Q F0 2.5 (,t)C(hose ne)-2.5 E 2.5(wv)-.25 G (alues will be re\215ected in the editing state.)-2.75 E(The return v) 144 376.8 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 F2(br)108 393.6 Q(eak)-.18 E F0([)2.5 E F1(n)A F0(])A .054 -(Exit from within a)144 405.6 R F2 -.25(fo)2.554 G(r).25 E F0(,)A F2 -(while)2.554 E F0(,)A F2(until)2.555 E F0 2.555(,o)C(r)-2.555 E F2 +E F2(br)108 393.6 Q(eak)-.18 E F0([)2.5 E F1(n)A F0(])A .055 +(Exit from within a)144 405.6 R F2 -.25(fo)2.555 G(r).25 E F0(,)A F2 +(while)2.555 E F0(,)A F2(until)2.555 E F0 2.555(,o)C(r)-2.555 E F2 (select)2.555 E F0 2.555(loop. If)2.555 F F1(n)2.555 E F0 .055 (is speci\214ed, break)2.555 F F1(n)2.555 E F0(le)2.555 E -.15(ve)-.25 G -(ls.).15 E F1(n)5.415 E F0 .055(must be)2.795 F/F3 10/Symbol SF2.555 -E F0(1.)2.555 E(If)144 417.6 Q F1(n)3.075 E F0 .215(is greater than the\ - number of enclosing loops, all enclosing loops are e)2.955 F 2.714 -(xited. The)-.15 F .214(return v)2.714 F(alue)-.25 E(is 0 unless)144 +(ls.).15 E F1(n)5.414 E F0 .054(must be)2.794 F/F3 10/Symbol SF2.554 +E F0(1.)2.554 E(If)144 417.6 Q F1(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 429.6 Q F1(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F2 -.2 (bu)108 446.4 S(iltin).2 E F1(shell\255b)2.5 E(uiltin)-.2 E F0([)2.5 E -F1(ar)A(guments)-.37 E F0(])A(Ex)144 458.4 Q .792 -(ecute the speci\214ed shell b)-.15 F .792(uiltin, passing it)-.2 F F1 +F1(ar)A(guments)-.37 E F0(])A(Ex)144 458.4 Q .793 +(ecute the speci\214ed shell b)-.15 F .793(uiltin, passing it)-.2 F F1 (ar)3.293 E(guments)-.37 E F0 3.293(,a).27 G .793(nd return its e)-3.293 -F .793(xit status.)-.15 F .793(This is useful)5.793 F .616 +F .792(xit status.)-.15 F .792(This is useful)5.792 F .615 (when de\214ning a function whose name is the same as a shell b)144 -470.4 R .615(uiltin, retaining the functionality of)-.2 F .57(the b)144 +470.4 R .616(uiltin, retaining the functionality of)-.2 F .57(the b)144 482.4 R .57(uiltin within the function.)-.2 F(The)5.57 E F2(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 494.4 Q(alse if)-.1 E F1(shell\255b)2.84 E(uiltin)-.2 E F0(is not a shell b)2.74 E (uiltin command.)-.2 E F2(caller)108 511.2 Q F0([)2.5 E F1 -.2(ex)C(pr) -.2 E F0(])A .254(Returns the conte)144 523.2 R .254(xt of an)-.15 F +.2 E F0(])A .253(Returns the conte)144 523.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 F2(.)2.753 E F0(or)2.753 E F2(sour)144 535.2 Q -(ce)-.18 E F0 -.2(bu)3.062 G 3.062(iltins. W).2 F(ithout)-.4 E F1 -.2 +.254(cuted with the).15 F F2(.)2.754 E F0(or)2.754 E F2(sour)144 535.2 Q +(ce)-.18 E F0 -.2(bu)3.063 G 3.063(iltins. W).2 F(ithout)-.4 E F1 -.2 (ex)3.062 G(pr).2 E F0(,)A F2(caller)3.062 E F0 .562 (displays the line number and source \214lename of the current)3.062 F -.254(subroutine call.)144 547.2 R .254(If a non-ne)5.254 F -.05(ga)-.15 -G(ti).05 E .554 -.15(ve i)-.25 H(nte).15 E .253(ger is supplied as)-.15 -F F1 -.2(ex)2.753 G(pr).2 E F0(,)A F2(caller)2.753 E F0 .253 -(displays the line number)2.753 F 2.753(,s)-.4 G(ub-)-2.753 E 1.327(rou\ +.253(subroutine call.)144 547.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 F1 -.2(ex)2.753 G(pr).2 E F0(,)A F2(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 559.2 R -.15(xe)-.15 G 1.328(cution call stack.).15 F .001 -(This e)144 571.2 R .001(xtra information may be used, for e)-.15 F .001 -(xample, to print a stack trace.)-.15 F(The current frame is frame)5 E -3.019(0. The)144 583.2 R .519(return v)3.019 F .519 -(alue is 0 unless the shell is not e)-.25 F -.15(xe)-.15 G .52 -(cuting a subroutine call or).15 F F1 -.2(ex)3.02 G(pr).2 E F0 .52 -(does not corre-)3.02 F(spond to a v)144 595.2 Q +ent e)144 559.2 R -.15(xe)-.15 G 1.327(cution call stack.).15 F(This e) +144 571.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 583.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 F1 -.2(ex)3.019 G(pr).2 E F0 .519 +(does not corre-)3.019 F(spond to a v)144 595.2 Q (alid position in the call stack.)-.25 E F2(cd)108 612 Q F0([)2.5 E F2 (\255L|-P)A F0 2.5(][)C F1(dir)-2.5 E F0(])A .21 (Change the current directory to)144 624 R F1(dir)2.71 E F0 5.21(.T)C .21(he v)-5.21 F(ariable)-.25 E/F4 9/Times-Bold@0 SF(HOME)2.71 E F0 .21 (is the def)2.46 F(ault)-.1 E F1(dir)2.71 E F0 5.21(.T).73 G .21(he v) --5.21 F(ariable)-.25 E F4(CDP)2.71 E -.855(AT)-.666 G(H).855 E F0 .776 +-5.21 F(ariable)-.25 E F4(CDP)2.71 E -.855(AT)-.666 G(H).855 E F0 .777 (de\214nes the search path for the directory containing)144 636 R F1 -(dir)3.276 E F0 5.777(.A).73 G(lternati)-5.777 E 1.077 -.15(ve d)-.25 H -.777(irectory names in).15 F F4(CDP)3.277 E -.855(AT)-.666 G(H).855 E F0 +(dir)3.276 E F0 5.776(.A).73 G(lternati)-5.776 E 1.076 -.15(ve d)-.25 H +.776(irectory names in).15 F F4(CDP)3.276 E -.855(AT)-.666 G(H).855 E F0 .764(are separated by a colon \(:\).)144 648 R 3.264(An)5.764 G .764 (ull directory name in)-3.264 F F4(CDP)3.264 E -.855(AT)-.666 G(H).855 E -F0 .764(is the same as the current direc-)3.014 F(tory)144 660 Q 2.973 -(,i)-.65 G .473(.e., `)-2.973 F(`)-.74 E F2(.)A F0 -.74('')C 5.473(.I) -.74 G(f)-5.473 E F1(dir)3.323 E F0(be)3.703 E .474 +F0 .764(is the same as the current direc-)3.014 F(tory)144 660 Q 2.974 +(,i)-.65 G .474(.e., `)-2.974 F(`)-.74 E F2(.)A F0 -.74('')C 5.474(.I) +.74 G(f)-5.474 E F1(dir)3.324 E F0(be)3.704 E .474 (gins with a slash \(/\), then)-.15 F F4(CDP)2.974 E -.855(AT)-.666 G(H) -.855 E F0 .474(is not used. The)2.724 F F22.974 E F0 .474 -(option says to use)2.974 F .58(the ph)144 672 R .58 +.855 E F0 .473(is not used. The)2.724 F F22.973 E F0 .473 +(option says to use)2.973 F .579(the ph)144 672 R .579 (ysical directory structure instead of follo)-.05 F .579 -(wing symbolic links \(see also the)-.25 F F23.079 E F0 .579 -(option to the)3.079 F F2(set)144 684 Q F0 -.2(bu)3.383 G .883 -(iltin command\); the).2 F F23.383 E F0 .884 +(wing symbolic links \(see also the)-.25 F F23.08 E F0 .58 +(option to the)3.08 F F2(set)144 684 Q F0 -.2(bu)3.384 G .884 +(iltin command\); the).2 F F23.384 E F0 .884 (option forces symbolic links to be follo)3.384 F 3.384(wed. An)-.25 F -(ar)3.384 E .884(gument of)-.18 F F23.384 E F0(is)3.384 E(equi)144 -696 Q -.25(va)-.25 G .063(lent to).25 F F4($OLDPWD)2.563 E/F5 9 -/Times-Roman@0 SF(.)A F0 .063(If a non-empty directory name from)4.563 F -F2(CDP)2.562 E -.95(AT)-.74 G(H).95 E F0 .062(is used, or if)2.562 F F2 -2.562 E F0 .062(is the \214rst)2.562 F(ar)144 708 Q .116(gument, an\ +(ar)3.383 E .883(gument of)-.18 F F23.383 E F0(is)3.383 E(equi)144 +696 Q -.25(va)-.25 G .062(lent to).25 F F4($OLDPWD)2.562 E/F5 9 +/Times-Roman@0 SF(.)A F0 .062(If a non-empty directory name from)4.562 F +F2(CDP)2.562 E -.95(AT)-.74 G(H).95 E F0 .063(is used, or if)2.562 F F2 +2.563 E F0 .063(is the \214rst)2.563 F(ar)144 708 Q .116(gument, an\ d the directory change is successful, the absolute pathname of the ne) --.18 F 2.616(ww)-.25 G .116(orking direc-)-2.716 F 1.165 +-.18 F 2.615(ww)-.25 G .115(orking direc-)-2.715 F 1.164 (tory is written to the standard output.)144 720 R 1.164(The return v) -6.164 F 1.164(alue is true if the directory w)-.25 F 1.164 +6.164 F 1.165(alue is true if the directory w)-.25 F 1.165 (as successfully)-.1 F(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(48) 200.665 E 0 Cg EP %%Page: 49 49 @@ -5741,38 +5744,38 @@ BP -.35 E(changed; f)144 84 Q(alse otherwise.)-.1 E/F1 10/Times-Bold@0 SF (command)108 100.8 Q F0([)2.5 E F1(\255pVv)A F0(])A/F2 10/Times-Italic@0 SF(command)2.5 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Run)144 112.8 -Q F2(command)2.956 E F0(with)3.527 E F2(ar)3.087 E(gs)-.37 E F0 .257 +Q F2(command)2.957 E F0(with)3.527 E F2(ar)3.087 E(gs)-.37 E F0 .257 (suppressing the normal shell function lookup. Only b)3.027 F .257 -(uiltin commands or)-.2 F .502(commands found in the)144 124.8 R/F3 9 -/Times-Bold@0 SF -.666(PA)3.002 G(TH)-.189 E F0 .502(are e)2.752 F -.15 +(uiltin commands or)-.2 F .501(commands found in the)144 124.8 R/F3 9 +/Times-Bold@0 SF -.666(PA)3.001 G(TH)-.189 E F0 .502(are e)2.751 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 .231(performed using a def)144 136.8 R +(option is gi)3.002 F -.15(ve)-.25 G .502(n, the search for).15 F F2 +(command)3.202 E F0(is)3.772 E .232(performed using a def)144 136.8 R .231(ault v)-.1 F .231(alue for)-.25 F F1 -.74(PA)2.731 G(TH)-.21 E F0 .231(that is guaranteed to \214nd all of the standard utilities.)2.731 F -(If)5.232 E .175(either the)144 148.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.11(as)144 160.8 S .61(ingle w)-3.11 F +(If)5.231 E .174(either the)144 148.8 R F12.674 E F0(or)2.674 E F1 +2.674 E F0 .175(option is supplied, a description of)2.674 F F2 +(command)2.875 E F0 .175(is printed.)3.445 F(The)5.175 E F12.675 E +F0 .175(option causes)2.675 F 3.11(as)144 160.8 S .61(ingle w)-3.11 F .61(ord indicating the command or \214le name used to in)-.1 F -.2(vo) -.4 G -.1(ke).2 G F2(command)3.41 E F0 .61(to be displayed; the)3.88 F -F1144 172.8 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 184.8 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 +F1144 172.8 Q F0 .249(option produces a more v)2.749 F .249 +(erbose description.)-.15 F .249(If the)5.249 F F12.749 E F0(or) +2.749 E F12.75 E F0 .25(option is supplied, the e)2.75 F .25 +(xit status)-.15 F 1.005(is 0 if)144 184.8 R F2(command)3.705 E F0 -.1 +(wa)4.275 G 3.505(sf).1 G 1.005(ound, and 1 if not.)-3.505 F 1.004 (If neither option is supplied and an error occurred or)6.005 F F2 -(command)144.2 196.8 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 208.8 S +(command)144.2 196.8 Q F0 1.598(cannot be found, the e)4.868 F 1.599 +(xit status is 127.)-.15 F 1.599(Otherwise, the e)6.599 F 1.599 +(xit status of the)-.15 F F1(command)4.099 E F0 -.2(bu)144 208.8 S (iltin is the e).2 E(xit status of)-.15 E F2(command)2.5 E F0(.).77 E F1 (compgen)108 225.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 237.6 R +-.37 E F0(])A .013(Generate possible completion matches for)144 237.6 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 249.6 R F1(complete)3.482 E F0 -.2(bu)3.481 G .981 +E F0 .013(s, which may be an)B 2.512(yo)-.15 G(ption)-2.512 E .981 +(accepted by the)144 249.6 R F1(complete)3.481 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 E F13.481 E F0 3.481(,a)C .982(nd write the matches to the) -3.481 F 1.415(standard output.)144 261.6 R 1.415(When using the)6.415 F F13.915 E F0(or)3.915 E F13.915 E F0 1.415(options, the v) 3.915 F 1.415(arious shell v)-.25 F 1.415(ariables set by the pro-)-.25 @@ -5786,60 +5789,60 @@ em directly from a completion speci\214cation with the same \215ags.)144 (will be displayed.)2.5 E(The return v)144 345.6 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 362.4 Q F0([)3.034 E F1(\255abcdefgjksuv)A F0 3.034(][)C -F1-3.034 E F2(comp-option)3.034 E F0 3.034(][)C F1-3.034 E +(complete)108 362.4 Q F0([)3.033 E F1(\255abcdefgjksuv)A F0 3.033(][)C +F1-3.033 E F2(comp-option)3.033 E F0 3.033(][)C F1-3.033 E F0 3.033(][)C F1-3.033 E F2(action)3.033 E F0 3.033(][)C F1 --3.033 E F2(globpat)3.033 E F0 3.033(][)C F1-3.033 E F2(wor)3.033 -E(dlist)-.37 E F0 3.033(][)C F1-3.033 E F2(function)3.033 E F0(])A +-3.033 E F2(globpat)3.033 E F0 3.034(][)C F1-3.034 E F2(wor)3.034 +E(dlist)-.37 E F0 3.034(][)C F1-3.034 E F2(function)3.034 E F0(])A ([)108 374.4 Q F1A F2(command)2.5 E F0(])A([)144 386.4 Q F1A 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 398.4 Q F0([) -2.5 E F1A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .634 -(Specify ho)144 410.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 +2.5 E F1A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .633 +(Specify ho)144 410.4 R 3.133(wa)-.25 G -.18(rg)-3.133 G .633 +(uments to each).18 F F2(name)3.133 E F0 .633(should be completed.)3.133 +F .634(If the)5.634 F F13.134 E F0 .634 +(option is supplied, or if no)3.134 F .14(options are supplied, e)144 422.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 434.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.392 -(are supplied, all completion speci\214cations.)144 446.4 R(The)6.392 E -F13.892 E F0 1.393(option indicates that the remaining options) -3.893 F 1.304(and actions should apply to `)144 458.4 R(`empty')-.74 E +F .139(ay that allo)-.1 F .139(ws them to be)-.25 F .31 +(reused as input.)144 434.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.393 +(are supplied, all completion speci\214cations.)144 446.4 R(The)6.393 E +F13.893 E F0 1.392(option indicates that the remaining options) +3.892 F 1.304(and actions should apply to `)144 458.4 R(`empty')-.74 E 3.804('c)-.74 G 1.304 (ommand completion; that is, completion attempted on a)-3.804 F -(blank line.)144 470.4 Q 1.437 +(blank line.)144 470.4 Q 1.438 (The process of applying these completion speci\214cations when w)144 -494.4 R 1.438(ord completion is attempted is)-.1 F(described abo)144 +494.4 R 1.437(ord completion is attempted is)-.1 F(described abo)144 506.4 Q .3 -.15(ve u)-.15 H(nder).15 E F1(Pr)2.5 E -(ogrammable Completion)-.18 E F0(.)A .556 -(Other options, if speci\214ed, ha)144 530.4 R .856 -.15(ve t)-.2 H .555 +(ogrammable Completion)-.18 E F0(.)A .555 +(Other options, if speci\214ed, ha)144 530.4 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.055 E F0(,)A F13.055 E F0 3.055 -(,a)C(nd)-3.055 E F13.055 E F0 .722(options \(and, if necessary) -144 542.4 R 3.222(,t)-.65 G(he)-3.222 E F13.222 E F0(and)3.222 E -F13.222 E F0 .723 -(options\) should be quoted to protect them from e)3.222 F(xpan-)-.15 E +(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 542.4 R 3.223(,t)-.65 G(he)-3.223 E F13.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 554.4 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 566.4 Q -F2(comp-option)2.5 E F0(The)184 578.4 Q F2(comp-option)2.791 E F0 .291 +F2(comp-option)2.5 E F0(The)184 578.4 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 590.4 Q F2 (comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 602.4 Q F0 .281(Perform the rest of the def)224 614.4 R(ault)-.1 E F1(bash)2.781 E F0 .281(completions if the compspec generates no)2.781 F(matches.)224 -626.4 Q F1(default)184 638.4 Q F0 2.876(Use readline')10 F 5.376(sd)-.55 -G(ef)-5.376 E 2.875 +626.4 Q F1(default)184 638.4 Q F0 2.875(Use readline')10 F 5.375(sd)-.55 +G(ef)-5.375 E 2.876 (ault \214lename completion if the compspec generates no)-.1 F(matches.) 224 650.4 Q F1(dir)184 662.4 Q(names)-.15 E F0(Perform directory name c\ ompletion if the compspec generates no matches.)224 674.4 Q F1 (\214lenames)184 686.4 Q F0 -.7(Te)224 698.4 S .137(ll readline that th\ -e compspec generates \214lenames, so it can perform an).7 F 2.637<798c> --.15 G(le-)-2.637 E .496(name\255speci\214c processing \(lik)224 710.4 R +e compspec generates \214lenames, so it can perform an).7 F 2.636<798c> +-.15 G(le-)-2.636 E .496(name\255speci\214c processing \(lik)224 710.4 R 2.996(ea)-.1 G .496(dding a slash to directory names or suppress-)-2.996 F(ing trailing spaces\).)224 722.4 Q (Intended to be used with shell functions.)5 E(GNU Bash-4.0)72 768 Q @@ -5854,7 +5857,7 @@ BP .22(ords completed at the end)-.1 F(of the line.)224 96 Q F1(plusdirs) 184 108 Q F0 1.985(After an)5.54 F 4.485(ym)-.15 G 1.985 (atches de\214ned by the compspec are generated, directory name)-4.485 F -.583(completion is attempted and an)224 120 R 3.084(ym)-.15 G .584 +.584(completion is attempted and an)224 120 R 3.084(ym)-.15 G .584 (atches are added to the results of the other)-3.084 F(actions.)224 132 Q F1144 144 Q/F2 10/Times-Italic@0 SF(action)2.5 E F0(The)184 156 Q F2(action)2.5 E F0(may be one of the follo)2.5 E @@ -5897,25 +5900,25 @@ F0(option to the)2.5 E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1 (May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 540 S (riable).1 E F0(Names of all shell v)5.1 E 2.5(ariables. May)-.25 F (also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 552 Q F2 -(globpat)2.5 E F0 1.411(The \214lename e)184 564 R 1.411 +(globpat)2.5 E F0 1.41(The \214lename e)184 564 R 1.411 (xpansion pattern)-.15 F F2(globpat)3.911 E F0 1.411(is e)3.911 F 1.411 (xpanded to generate the possible comple-)-.15 F(tions.)184 576 Q F1 -144 588 Q F2(wor)2.5 E(dlist)-.37 E F0(The)184 600 Q F2(wor)3.639 -E(dlist)-.37 E F0 1.14(is split using the characters in the)3.639 F F3 -(IFS)3.64 E F0 1.14(special v)3.39 F 1.14(ariable as delimiters, and) --.25 F 2.008(each resultant w)184 612 R 2.008(ord is e)-.1 F 4.508 -(xpanded. The)-.15 F 2.007(possible completions are the members of the) -4.508 F(resultant list which match the w)184 624 Q(ord being completed.) --.1 E F1144 636 Q F2(command)2.5 E(command)184 648 Q F0 1.055 -(is e)3.555 F -.15(xe)-.15 G 1.055(cuted in a subshell en).15 F 1.056 +144 588 Q F2(wor)2.5 E(dlist)-.37 E F0(The)184 600 Q F2(wor)3.64 E +(dlist)-.37 E F0 1.14(is split using the characters in the)3.64 F F3 +(IFS)3.64 E F0 1.139(special v)3.39 F 1.139(ariable as delimiters, and) +-.25 F 2.007(each resultant w)184 612 R 2.007(ord is e)-.1 F 4.507 +(xpanded. The)-.15 F 2.008(possible completions are the members of the) +4.507 F(resultant list which match the w)184 624 Q(ord being completed.) +-.1 E F1144 636 Q F2(command)2.5 E(command)184 648 Q F0 1.056 +(is e)3.556 F -.15(xe)-.15 G 1.056(cuted in a subshell en).15 F 1.056 (vironment, and its output is used as the possible)-.4 F(completions.) -184 660 Q F1144 672 Q F2(function)2.5 E F0 1.181 -(The shell function)184 684 R F2(function)3.681 E F0 1.181(is e)3.681 F --.15(xe)-.15 G 1.181(cuted in the current shell en).15 F 3.68 -(vironment. When)-.4 F 1.18(it \214n-)3.68 F .932 +184 660 Q F1144 672 Q F2(function)2.5 E F0 1.18 +(The shell function)184 684 R F2(function)3.68 E F0 1.181(is e)3.681 F +-.15(xe)-.15 G 1.181(cuted in the current shell en).15 F 3.681 +(vironment. When)-.4 F 1.181(it \214n-)3.681 F .932 (ishes, the possible completions are retrie)184 696 R -.15(ve)-.25 G 3.432(df).15 G .932(rom the v)-3.432 F .932(alue of the)-.25 F F3 -(COMPREPL)3.432 E(Y)-.828 E F0(array)3.182 E -.25(va)184 708 S(riable.) +(COMPREPL)3.431 E(Y)-.828 E F0(array)3.181 E -.25(va)184 708 S(riable.) .25 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(50)200.665 E 0 Cg EP %%Page: 51 51 %%BeginPageSetup @@ -5924,169 +5927,169 @@ BP /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) -.35 E/F1 10/Times-Bold@0 SF144 84 Q/F2 10/Times-Italic@0 SF (\214lterpat)2.5 E(\214lterpat)184 96 Q F0 .733 -(is a pattern as used for \214lename e)3.234 F 3.233(xpansion. It)-.15 F +(is a pattern as used for \214lename e)3.233 F 3.233(xpansion. It)-.15 F .733(is applied to the list of possible)3.233 F 1.596 (completions generated by the preceding options and ar)184 108 R 1.596 (guments, and each completion)-.18 F(matching)184 120 Q F2(\214lterpat) -3.205 E F0 .705(is remo)3.205 F -.15(ve)-.15 G 3.205(df).15 G .704 -(rom the list.)-3.205 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0 -(in)3.204 E F2(\214lterpat)3.204 E F0(ne)3.204 E -.05(ga)-.15 G .704 +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 F2(\214lterpat)3.205 E F0(ne)3.205 E -.05(ga)-.15 G .705 (tes the pattern;).05 F(in this case, an)184 132 Q 2.5(yc)-.15 G (ompletion not matching)-2.5 E F2(\214lterpat)2.5 E F0(is remo)2.5 E -.15(ve)-.15 G(d.).15 E F1144 144 Q F2(pr)2.5 E(e\214x)-.37 E(pr) -184 156 Q(e\214x)-.37 E F0 .534(is added at the be)3.034 F .534 +184 156 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 168 Q F1144 180 Q F2(suf)2.5 E 2.81(\214x suf)-.18 F<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 .467(The return v)144 196.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 208.8 R F2(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 F2(name)144 220.8 Q F0 +E .3 -.15(ve b)-.2 H(een applied.).15 E .466(The return v)144 196.8 R +.466(alue is true unless an in)-.25 F -.25(va)-.4 G .466 +(lid option is supplied, an option other than).25 F F12.967 E F0 +(or)2.967 E F12.967 E F0 .467(is sup-)2.967 F 1.362 +(plied without a)144 208.8 R F2(name)3.862 E F0(ar)3.862 E 1.361 +(gument, an attempt is made to remo)-.18 F 1.661 -.15(ve a c)-.15 H +1.361(ompletion speci\214cation for a).15 F F2(name)144 220.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 237.6 Q F0([)2.5 E F1A F2(option)2.5 E F0 2.5(][)C F1(+o)-2.5 E F2(option)2.5 E F0 2.5(][)C F2(name)-2.5 E F0(])A .447 (Modify completion options for each)144 249.6 R F2(name)2.947 E F0 .447 (according to the)2.947 F F2(option)2.947 E F0 .447 -(s, or for the currently-e)B -.15(xe)-.15 G(cution).15 E .725 -(completion if no)144 261.6 R F2(name)3.225 E F0 3.225(sa)C .725 -(re supplied.)-3.225 F .725(If no)5.725 F F2(option)3.225 E F0 3.225(sa) -C .725(re gi)-3.225 F -.15(ve)-.25 G .726 +(s, or for the currently-e)B -.15(xe)-.15 G(cution).15 E .726 +(completion if no)144 261.6 R F2(name)3.226 E F0 3.226(sa)C .726 +(re supplied.)-3.226 F .725(If no)5.725 F F2(option)3.225 E F0 3.225(sa) +C .725(re gi)-3.225 F -.15(ve)-.25 G .725 (n, display the completion options for).15 F(each)144 273.6 Q F2(name) -3.224 E F0 .724(or the current completion.)3.224 F .724(The possible v) +3.223 E F0 .723(or the current completion.)3.223 F .724(The possible v) 5.724 F .724(alues of)-.25 F F2(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 285.6 Q F0 -.2(bu) +F .724(alid for the)-.25 F F1(com-)3.224 E(plete)144 285.6 Q F0 -.2(bu) 2.5 G(iltin described abo).2 E -.15(ve)-.15 G(.).15 E .327(The return v) 108 302.4 R .327(alue is true unless an in)-.25 F -.25(va)-.4 G .327 (lid option is supplied, an attempt is made to modify the options for a) .25 F F2(name)108 314.4 Q F0(for which no completion speci\214cation e) 2.5 E(xists, or an output error occurs.)-.15 E F1(continue)108 331.2 Q -F0([)2.5 E F2(n)A F0(])A 1.754(Resume the ne)144 343.2 R 1.754 +F0([)2.5 E F2(n)A F0(])A 1.753(Resume the ne)144 343.2 R 1.753 (xt iteration of the enclosing)-.15 F F1 -.25(fo)4.254 G(r).25 E F0(,)A F1(while)4.254 E F0(,)A F1(until)4.254 E F0 4.254(,o)C(r)-4.254 E F1 -(select)4.254 E F0 4.253(loop. If)4.254 F F2(n)4.613 E F0 1.753 -(is speci\214ed,)4.493 F 1.208(resume at the)144 355.2 R F2(n)3.709 E F0 +(select)4.254 E F0 4.254(loop. If)4.254 F F2(n)4.614 E F0 1.754 +(is speci\214ed,)4.494 F 1.209(resume at the)144 355.2 R F2(n)3.709 E F0 1.209(th enclosing loop.)B F2(n)6.569 E F0 1.209(must be)3.949 F/F3 10 /Symbol SF3.709 E F0 3.709(1. If)3.709 F F2(n)4.069 E F0 1.209 -(is greater than the number of enclosing)3.949 F .514 +(is greater than the number of enclosing)3.949 F .513 (loops, the last enclosing loop \(the `)144 367.2 R(`top-le)-.74 E -.15 -(ve)-.25 G(l').15 E 3.014('l)-.74 G .514(oop\) is resumed.)-3.014 F .513 -(The return v)5.513 F .513(alue is 0 unless)-.25 F F2(n)3.013 E F0(is) -3.013 E(not greater than or equal to 1.)144 379.2 Q F1(declar)108 396 Q +(ve)-.25 G(l').15 E 3.013('l)-.74 G .513(oop\) is resumed.)-3.013 F .514 +(The return v)5.514 F .514(alue is 0 unless)-.25 F F2(n)3.014 E F0(is) +3.014 E(not greater than or equal to 1.)144 379.2 Q F1(declar)108 396 Q (e)-.18 E F0([)2.5 E F1(\255aAfFilrtux)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 408 Q F0([)2.5 E F1(\255aAfFilrtux)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 420 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(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 432 S 3.483(riables. The).25 F F13.483 E F0 .983 -(option will display the attrib)3.483 F .983(utes and v)-.2 F .982 -(alues of each)-.25 F F2(name)3.482 E F0 5.982(.W).18 G(hen)-5.982 E F1 -3.482 E F0 .982(is used)3.482 F(with)144 444 Q F2(name)3.579 E F0 -(ar)3.579 E 1.079(guments, additional options are ignored.)-.18 F(When) +-2.5 E 1.265(Declare v)144 420 R 1.265(ariables and/or gi)-.25 F 1.565 +-.15(ve t)-.25 H 1.265(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(re gi)-3.765 F -.15(ve)-.25 G 3.764 +(nt).15 G 1.264(hen display the v)-3.764 F 1.264(alues of)-.25 F -.25 +(va)144 432 S 3.482(riables. The).25 F F13.482 E F0 .982 +(option will display the attrib)3.482 F .982(utes and v)-.2 F .983 +(alues of each)-.25 F F2(name)3.483 E F0 5.983(.W).18 G(hen)-5.983 E F1 +3.483 E F0 .983(is used)3.483 F(with)144 444 Q F2(name)3.58 E F0 +(ar)3.58 E 1.079(guments, additional options are ignored.)-.18 F(When) 6.079 E F13.579 E F0 1.079(is supplied without)3.579 F F2(name) -3.58 E F0(ar)3.58 E(gu-)-.18 E .151(ments, it will display the attrib) -144 456 R .151(utes and v)-.2 F .151(alues of all v)-.25 F .15 -(ariables ha)-.25 F .15(ving the attrib)-.2 F .15 -(utes speci\214ed by the)-.2 F .046(additional options.)144 468 R .046 -(If no other options are supplied with)5.046 F F12.547 E F0(,)A F1 -(declar)2.547 E(e)-.18 E F0 .047(will display the attrib)2.547 F .047 -(utes and)-.2 F -.25(va)144 480 S 1.363(lues of all shell v).25 F 3.863 -(ariables. The)-.25 F F13.863 E F0 1.362 -(option will restrict the display to shell functions.)3.863 F(The)6.362 -E F13.862 E F0 2.422(option inhibits the display of function de\ -\214nitions; only the function name and attrib)144 492 R 2.423(utes are) --.2 F 2.664(printed. If)144 504 R(the)2.664 E F1(extdeb)2.664 E(ug)-.2 E -F0 .164(shell option is enabled using)2.664 F F1(shopt)2.664 E F0 2.664 -(,t)C .163(he source \214le name and line number)-2.664 F 1.382 +3.579 E F0(ar)3.579 E(gu-)-.18 E .15(ments, it will display the attrib) +144 456 R .15(utes and v)-.2 F .151(alues of all v)-.25 F .151 +(ariables ha)-.25 F .151(ving the attrib)-.2 F .151 +(utes speci\214ed by the)-.2 F .047(additional options.)144 468 R .047 +(If no other options are supplied with)5.047 F F12.547 E F0(,)A F1 +(declar)2.547 E(e)-.18 E F0 .046(will display the attrib)2.546 F .046 +(utes and)-.2 F -.25(va)144 480 S 1.362(lues of all shell v).25 F 3.862 +(ariables. The)-.25 F F13.862 E F0 1.363 +(option will restrict the display to shell functions.)3.862 F(The)6.363 +E F13.863 E F0 2.422(option inhibits the display of function de\ +\214nitions; only the function name and attrib)144 492 R 2.422(utes are) +-.2 F 2.663(printed. If)144 504 R(the)2.663 E F1(extdeb)2.663 E(ug)-.2 E +F0 .164(shell option is enabled using)2.663 F F1(shopt)2.664 E F0 2.664 +(,t)C .164(he source \214le name and line number)-2.664 F 1.382 (where the function is de\214ned are displayed as well.)144 516 R(The) 6.382 E F13.882 E F0 1.382(option implies)3.882 F F13.882 E -F0 6.382(.T)C 1.382(he follo)-6.382 F(wing)-.25 E .794 +F0 6.382(.T)C 1.382(he follo)-6.382 F(wing)-.25 E .793 (options can be used to restrict output to v)144 528 R .794 -(ariables with the speci\214ed attrib)-.25 F .793(ute or to gi)-.2 F -1.093 -.15(ve v)-.25 H(ariables)-.1 E(attrib)144 540 Q(utes:)-.2 E F1 +(ariables with the speci\214ed attrib)-.25 F .794(ute or to gi)-.2 F +1.094 -.15(ve v)-.25 H(ariables)-.1 E(attrib)144 540 Q(utes:)-.2 E F1 144 552 Q F0(Each)25.3 E 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 564 Q F0(Each)23.08 E 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 576 Q F0(Use function names only)26.97 E(.)-.65 E F1 -144 588 Q F0 .557(The v)27.52 F .558 +144 588 Q F0 .558(The v)27.52 F .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 +(va)-.25 G .558(luation \(see).25 F/F4 9/Times-Bold@0 SF .557 (ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION \))180 600 Q F0 (is performed when the v)2.25 E(ariable is assigned a v)-.25 E(alue.) --.25 E F1144 612 Q F0 .91(When the v)27.52 F .909 +-.25 E F1144 612 Q F0 .909(When the v)27.52 F .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) +(-case characters are con)-.2 F -.15(ve)-.4 G .91(rted to lo).15 F(wer) -.25 E(-)-.2 E 2.5(case. The)180 624 R(upper)2.5 E(-case attrib)-.2 E (ute is disabled.)-.2 E F1144 636 Q F0(Mak)25.86 E(e)-.1 E F2 -(name)5.046 E F0 5.046(sr)C(eadonly)-5.046 E 7.546(.T)-.65 G 2.546 -(hese names cannot then be assigned v)-7.546 F 2.547 +(name)5.047 E F0 5.047(sr)C(eadonly)-5.047 E 7.547(.T)-.65 G 2.546 +(hese names cannot then be assigned v)-7.547 F 2.546 (alues by subsequent)-.25 F(assignment statements or unset.)180 648 Q F1 -144 660 Q F0(Gi)26.97 E .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 +144 660 Q F0(Gi)26.97 E .729 -.15(ve e)-.25 H(ach).15 E F2(name) +2.929 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.) +-.1 E F0(and)2.93 E F1(RETURN)2.93 E F0(traps from the calling shell.) 180 672 Q(The trace attrib)5 E(ute has no special meaning for v)-.2 E -(ariables.)-.25 E F1144 684 Q F0 .909(When the v)24.74 F .909 +(ariables.)-.25 E F1144 684 Q F0 .91(When the v)24.74 F .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 696 R(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E +(-case characters are con)-.2 F -.15(ve)-.4 G .909(rted to upper).15 F +(-)-.2 E 2.5(case. The)180 696 R(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E (ute is disabled.)-.2 E F1144 708 Q F0(Mark)25.3 E 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 .121(Using `+' instead of `\255' turns of)144 724.8 R -2.621(ft)-.25 G .121(he attrib)-2.621 F .121(ute instead, with the e)-.2 -F .12(xceptions that)-.15 F F1(+a)2.62 E F0 .12(may not be used)2.62 F +(vironment.)-.4 E .12(Using `+' instead of `\255' turns of)144 724.8 R +2.62(ft)-.25 G .12(he attrib)-2.62 F .121(ute instead, with the e)-.2 F +.121(xceptions that)-.15 F F1(+a)2.621 E F0 .121(may not be used)2.621 F (GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(51)200.665 E 0 Cg EP %%Page: 52 52 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E 1.236(to destro)144 84 R 3.736(ya)-.1 G 3.737(na)-3.736 G 1.237 +-.35 E 1.237(to destro)144 84 R 3.737(ya)-.1 G 3.737(na)-3.737 G 1.237 (rray v)-3.737 F 1.237(ariable and)-.25 F/F1 10/Times-Bold@0 SF 1.237 (+r will not r)3.737 F(emo)-.18 E 1.437 -.1(ve t)-.1 H 1.237(he r).1 F -1.237(eadonly attrib)-.18 F 3.737(ute. When)-.2 F 1.237(used in a)3.737 -F .312(function, mak)144 96 R .312(es each)-.1 F/F2 10/Times-Italic@0 SF -(name)2.812 E F1 .311(local, as with the local)2.812 F F0 2.811 -(command. If)2.811 F 2.811(av)2.811 G .311(ariable name is follo)-3.061 -F .311(wed by)-.25 F(=)144 108 Q F2(value)A F0 3.238(,t)C .738(he v) --3.238 F .738(alue of the v)-.25 F .738(ariable is set to)-.25 F F2 -(value)3.238 E F0 5.738(.T)C .738(he return v)-5.738 F .739 -(alue is 0 unless an in)-.25 F -.25(va)-.4 G .739(lid option is).25 F +1.237(eadonly attrib)-.18 F 3.737(ute. When)-.2 F 1.236(used in a)3.737 +F .311(function, mak)144 96 R .311(es each)-.1 F/F2 10/Times-Italic@0 SF +(name)2.811 E F1 .311(local, as with the local)2.811 F F0 2.811 +(command. If)2.811 F 2.811(av)2.811 G .312(ariable name is follo)-3.061 +F .312(wed by)-.25 F(=)144 108 Q F2(value)A F0 3.239(,t)C .739(he v) +-3.239 F .739(alue of the v)-.25 F .739(ariable is set to)-.25 F F2 +(value)3.238 E F0 5.738(.T)C .738(he return v)-5.738 F .738 +(alue is 0 unless an in)-.25 F -.25(va)-.4 G .738(lid option is).25 F .603(encountered, an attempt is made to de\214ne a function using)144 120 R/F3 10/Courier@0 SF .603(\255f foo=bar)3.103 F F0 3.103(,a)C 3.103 -(na)-3.103 G .603(ttempt is made to)-3.103 F 1.242(assign a v)144 132 R -1.242(alue to a readonly v)-.25 F 1.242 -(ariable, an attempt is made to assign a v)-.25 F 1.243 +(na)-3.103 G .604(ttempt is made to)-3.103 F 1.243(assign a v)144 132 R +1.243(alue to a readonly v)-.25 F 1.242 +(ariable, an attempt is made to assign a v)-.25 F 1.242 (alue to an array v)-.25 F(ariable)-.25 E 1.386 (without using the compound assignment syntax \(see)144 144 R F1(Arrays) 3.886 E F0(abo)3.886 E -.15(ve)-.15 G 1.386(\), one of the).15 F F2 -(names)3.886 E F0 1.386(is not a)3.886 F -.25(va)144 156 S .171 +(names)3.886 E F0 1.386(is not a)3.886 F -.25(va)144 156 S .172 (lid shell v).25 F .171(ariable name, an attempt is made to turn of)-.25 -F 2.671(fr)-.25 G .171(eadonly status for a readonly v)-2.671 F .172 +F 2.671(fr)-.25 G .171(eadonly status for a readonly v)-2.671 F .171 (ariable, an)-.25 F .96(attempt is made to turn of)144 168 R 3.46(fa) -.25 G .96(rray status for an array v)-3.46 F .96 (ariable, or an attempt is made to display a)-.25 F(non-e)144 180 Q (xistent function with)-.15 E F12.5 E F0(.)A F1(dirs [+)108 196.8 Q F2(n)A F1 2.5(][)C-2.5 E F2(n)A F1 2.5(][)C(\255cplv])-2.5 E F0 --.4(Wi)144 208.8 S .328 +-.4(Wi)144 208.8 S .329 (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 +.4 F .328(The def)5.328 F .328(ault display is on a)-.1 F 1.238 (single line with directory names separated by spaces.)144 220.8 R 1.238 (Directories are added to the list with the)6.238 F F1(pushd)144 232.8 Q F0(command; the)2.5 E F1(popd)2.5 E F0(command remo)2.5 E -.15(ve)-.15 G 2.5(se).15 G(ntries from the list.)-2.5 E F1(+)144 244.8 Q F2(n)A F0 -1.564(Displays the)25.3 F F2(n)4.064 E F0 1.565 -(th entry counting from the left of the list sho)B 1.565(wn by)-.25 F F1 -(dirs)4.065 E F0 1.565(when in)4.065 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E +1.565(Displays the)25.3 F 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 256.8 Q F1144 268.8 Q F2 (n)A F0 1.194(Displays the)25.3 F 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 @@ -6097,9 +6100,9 @@ F1(dirs)3.694 E F0 1.194(when in)3.694 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E .324(ault listing format uses a tilde to denote the home direc-)-.1 F (tory)180 316.8 Q(.)-.65 E F1144 328.8 Q F0 (Print the directory stack with one entry per line.)24.74 E F1144 -340.8 Q F0 .273(Print the directory stack with one entry per line, pre\ -\214xing each entry with its inde)25.3 F 2.772(xi)-.15 G 2.772(nt)-2.772 -G(he)-2.772 E(stack.)180 352.8 Q .257(The return v)144 369.6 R .258 +340.8 Q F0 .272(Print the directory stack with one entry per line, pre\ +\214xing each entry with its inde)25.3 F 2.773(xi)-.15 G 2.773(nt)-2.773 +G(he)-2.773 E(stack.)180 352.8 Q .258(The return v)144 369.6 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-) @@ -6108,47 +6111,46 @@ G(he)-2.772 E(stack.)180 352.8 Q .257(The return v)144 369.6 R .258 (...])2.5 E -.4(Wi)144 410.4 S .295(thout options, each).4 F F2(jobspec) 4.535 E F0 .295(is remo)3.105 F -.15(ve)-.15 G 2.795(df).15 G .295 (rom the table of acti)-2.795 F .595 -.15(ve j)-.25 H 2.795(obs. If).15 -F F2(jobspec)4.535 E F0 .295(is not present,)3.105 F .243(and neither) -144 422.4 R F1 .243(\255a nor \255r is supplied, the shell')2.743 F +F F2(jobspec)4.535 E F0 .295(is not present,)3.105 F .244(and neither) +144 422.4 R F1 .243(\255a nor \255r is supplied, the shell')2.744 F 2.743(sn)-.37 G .243(otion of the)-2.743 F F2(curr)2.743 E .243(ent job) --.37 F F1 .243(is used.)2.743 F .244(If the \255h option)5.243 F .334 -(is gi)144 434.4 R -.1(ve)-.1 G .334(n, each).1 F F2(jobspec)4.574 E F0 +-.37 F F1 .243(is used.)2.743 F .243(If the \255h option)5.243 F .333 +(is gi)144 434.4 R -.1(ve)-.1 G .333(n, each).1 F F2(jobspec)4.574 E F0 .334(is not remo)3.144 F -.15(ve)-.15 G 2.834(df).15 G .334 (rom the table, b)-2.834 F .334(ut is mark)-.2 F .334(ed so that)-.1 F -/F4 9/Times-Bold@0 SF(SIGHUP)2.834 E F0 .333(is not sent to)2.584 F -1.189(the job if the shell recei)144 446.4 R -.15(ve)-.25 G 3.689(sa).15 -G F4(SIGHUP)A/F5 9/Times-Roman@0 SF(.)A F0 1.189(If no)5.689 F F2 -(jobspec)5.429 E F0 1.189(is present, and neither the)3.999 F F1 -3.689 E F0 1.19(nor the)3.69 F F13.69 E F0 1.57 -(option is supplied, the)144 458.4 R F2(curr)4.07 E 1.57(ent job)-.37 F -F0 1.57(is used.)4.07 F 1.569(If no)6.569 F F2(jobspec)5.809 E F0 1.569 -(is supplied, the)4.379 F F14.069 E F0 1.569(option means to)4.069 -F(remo)144 470.4 Q .903 -.15(ve o)-.15 H 3.103(rm).15 G .603 -(ark all jobs; the)-3.103 F F13.103 E F0 .603(option without a) -3.103 F F2(jobspec)4.843 E F0(ar)3.414 E .604 -(gument restricts operation to running)-.18 F 2.5(jobs. The)144 482.4 R -(return v)2.5 E(alue is 0 unless a)-.25 E F2(jobspec)4.24 E F0 +/F4 9/Times-Bold@0 SF(SIGHUP)2.834 E F0 .334(is not sent to)2.584 F 1.19 +(the job if the shell recei)144 446.4 R -.15(ve)-.25 G 3.689(sa).15 G F4 +(SIGHUP)A/F5 9/Times-Roman@0 SF(.)A F0 1.189(If no)5.689 F F2(jobspec) +5.429 E F0 1.189(is present, and neither the)3.999 F F13.689 E F0 +1.189(nor the)3.689 F F13.689 E F0 1.569(option is supplied, the) +144 458.4 R F2(curr)4.069 E 1.569(ent job)-.37 F F0 1.569(is used.)4.069 +F 1.569(If no)6.569 F F2(jobspec)5.809 E F0 1.57(is supplied, the)4.38 F +F14.07 E F0 1.57(option means to)4.07 F(remo)144 470.4 Q .904 -.15 +(ve o)-.15 H 3.104(rm).15 G .604(ark all jobs; the)-3.104 F F1 +3.103 E F0 .603(option without a)3.103 F F2(jobspec)4.843 E F0(ar)3.413 +E .603(gument restricts operation to running)-.18 F 2.5(jobs. The)144 +482.4 R(return v)2.5 E(alue 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 F1(echo)108 499.2 Q F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E -.395(Output the)144 511.2 R F2(ar)2.895 E(g)-.37 E F0 .395 +.394(Output the)144 511.2 R F2(ar)2.894 E(g)-.37 E F0 .394 (s, separated by spaces, follo)B .395(wed by a ne)-.25 F 2.895 -(wline. The)-.25 F .394(return status is al)2.895 F -.1(wa)-.1 G .394 -(ys 0.).1 F(If)5.394 E F12.894 E F0 .548 +(wline. The)-.25 F .395(return status is al)2.895 F -.1(wa)-.1 G .395 +(ys 0.).1 F(If)5.395 E F12.895 E F0 .549 (is speci\214ed, the trailing ne)144 523.2 R .548(wline is suppressed.) -.25 F .548(If the)5.548 F F13.048 E F0 .548(option is gi)3.048 F -.15(ve)-.25 G .548(n, interpretation of the fol-).15 F(lo)144 535.2 Q -.053(wing backslash-escaped characters is enabled.)-.25 F(The)5.053 E F1 -2.553 E F0 .052(option disables the interpretation of these)2.552 -F 1.502(escape characters, e)144 547.2 R -.15(ve)-.25 G 4.002(no).15 G -4.002(ns)-4.002 G 1.502(ystems where the)-4.002 F 4.002(ya)-.15 G 1.502 -(re interpreted by def)-4.002 F 4.003(ault. The)-.1 F F1(xpg_echo)4.003 -E F0(shell)4.003 E .009 +.052(wing backslash-escaped characters is enabled.)-.25 F(The)5.052 E F1 +2.552 E F0 .053(option disables the interpretation of these)2.553 +F 1.503(escape characters, e)144 547.2 R -.15(ve)-.25 G 4.003(no).15 G +4.003(ns)-4.003 G 1.502(ystems where the)-4.003 F 4.002(ya)-.15 G 1.502 +(re interpreted by def)-4.002 F 4.002(ault. The)-.1 F F1(xpg_echo)4.002 +E F0(shell)4.002 E .009 (option may be used to dynamically determine whether or not)144 559.2 R -F1(echo)2.509 E F0 -.15(ex)2.509 G .009(pands these escape characters) -.15 F .659(by def)144 571.2 R(ault.)-.1 E F1(echo)5.659 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.66 E F0 .66 -(interprets the follo)3.16 F(wing)-.25 E(escape sequences:)144 583.2 Q +F1(echo)2.509 E F0 -.15(ex)2.51 G .01(pands these escape characters).15 +F .66(by def)144 571.2 R(ault.)-.1 E F1(echo)5.66 E F0 .66 +(does not interpret)3.16 F F13.16 E F0 .659 +(to mean the end of options.)3.159 F F1(echo)5.659 E F0 .659 +(interprets the follo)3.159 F(wing)-.25 E(escape sequences:)144 583.2 Q F1(\\a)144 595.2 Q F0(alert \(bell\))28.22 E F1(\\b)144 607.2 Q F0 (backspace)27.66 E F1(\\c)144 619.2 Q F0(suppress trailing ne)28.78 E (wline)-.25 E F1(\\e)144 631.2 Q F0(an escape character)28.78 E F1(\\f) @@ -6170,129 +6172,130 @@ F0(the eight-bit character whose v)13.78 E(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(enable)108 100.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 +(\214lename)2.5 E F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .277 (Enable and disable b)144 112.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 +(ws a disk command which has)-.25 F .834(the same name as a shell b)144 124.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 136.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 1.581 -(abled; otherwise,)144 148.8 R F2(names)4.082 E F0 1.582(are enabled.) -4.082 F -.15(Fo)6.582 G 4.082(re).15 G 1.582(xample, to use the)-4.232 F -F1(test)4.082 E F0 1.582(binary found via the)4.082 F/F3 9/Times-Bold@0 -SF -.666(PA)4.082 G(TH)-.189 E F0 .081(instead of the shell b)144 160.8 -R .081(uiltin v)-.2 F .081(ersion, run)-.15 F/F4 10/Courier@0 SF .081 -(enable -n test)2.581 F F0 5.081(.T)C(he)-5.081 E F12.58 E F0 .08 -(option means to load the ne)2.58 F(w)-.25 E -.2(bu)144 172.8 S 1.524 -(iltin command).2 F F2(name)4.384 E F0 1.524(from shared object)4.204 F +(cuted without specifying a full pathname, e).15 F -.15(ve)-.25 G 3.333 +(nt).15 G(hough)-3.333 E .989(the shell normally searches for b)144 +136.8 R .989(uiltins before disk commands.)-.2 F(If)5.989 E F1 +3.489 E F0 .99(is used, each)3.49 F F2(name)3.49 E F0 .99(is dis-)3.49 F +1.582(abled; otherwise,)144 148.8 R F2(names)4.082 E F0 1.582 +(are enabled.)4.082 F -.15(Fo)6.582 G 4.082(re).15 G 1.582 +(xample, to use the)-4.232 F F1(test)4.082 E F0 1.582 +(binary found via the)4.082 F/F3 9/Times-Bold@0 SF -.666(PA)4.081 G(TH) +-.189 E F0 .08(instead of the shell b)144 160.8 R .08(uiltin v)-.2 F .08 +(ersion, run)-.15 F/F4 10/Courier@0 SF .081(enable -n test)2.58 F F0 +5.081(.T)C(he)-5.081 E F12.581 E F0 .081 +(option means to load the ne)2.581 F(w)-.25 E -.2(bu)144 172.8 S 1.525 +(iltin command).2 F F2(name)4.385 E F0 1.524(from shared object)4.204 F F2(\214lename)4.024 E F0 4.024(,o).18 G 4.024(ns)-4.024 G 1.524 (ystems that support dynamic loading.)-4.024 F(The)144 184.8 Q F1 -2.867 E F0 .367(option will delete a b)2.867 F .367(uiltin pre)-.2 F -.367(viously loaded with)-.25 F F12.866 E F0 5.366(.I)C 2.866(fn) --5.366 G(o)-2.866 E F2(name)2.866 E F0(ar)2.866 E .366(guments are gi) --.18 F -.15(ve)-.25 G .366(n, or).15 F .398(if the)144 196.8 R F1 -2.898 E F0 .399(option is supplied, a list of shell b)2.899 F .399 +2.866 E F0 .366(option will delete a b)2.866 F .366(uiltin pre)-.2 F +.366(viously loaded with)-.25 F F12.867 E F0 5.367(.I)C 2.867(fn) +-5.367 G(o)-2.867 E F2(name)2.867 E F0(ar)2.867 E .367(guments are gi) +-.18 F -.15(ve)-.25 G .367(n, or).15 F .399(if the)144 196.8 R F1 +2.899 E F0 .399(option is supplied, a list of shell b)2.899 F .399 (uiltins is printed.)-.2 F -.4(Wi)5.399 G .399(th no other option ar).4 -F .399(guments, the)-.18 F .099(list consists of all enabled shell b)144 +F .398(guments, the)-.18 F .098(list consists of all enabled shell b)144 208.8 R 2.598(uiltins. If)-.2 F F12.598 E F0 .098 -(is supplied, only disabled b)2.598 F .098(uiltins are printed.)-.2 F -(If)5.098 E F12.598 E F0 1.916 +(is supplied, only disabled b)2.598 F .099(uiltins are printed.)-.2 F +(If)5.099 E F12.599 E F0 1.917 (is supplied, the list printed includes all b)144 220.8 R 1.916 -(uiltins, with an indication of whether or not each is)-.2 F 2.879 -(enabled. If)144 232.8 R F12.879 E F0 .379 -(is supplied, the output is restricted to the POSIX)2.879 F F2(special) -2.879 E F0 -.2(bu)2.878 G 2.878(iltins. The).2 F .378(return v)2.878 F -(alue)-.25 E .994(is 0 unless a)144 244.8 R F2(name)3.854 E F0 .994 -(is not a shell b)3.674 F .994(uiltin or there is an error loading a ne) --.2 F 3.495(wb)-.25 G .995(uiltin from a shared)-3.695 F(object.)144 +(uiltins, with an indication of whether or not each is)-.2 F 2.878 +(enabled. If)144 232.8 R F12.878 E F0 .379 +(is supplied, the output is restricted to the POSIX)2.878 F F2(special) +2.879 E F0 -.2(bu)2.879 G 2.879(iltins. The).2 F .379(return v)2.879 F +(alue)-.25 E .995(is 0 unless a)144 244.8 R F2(name)3.855 E F0 .994 +(is not a shell b)3.675 F .994(uiltin or there is an error loading a ne) +-.2 F 3.494(wb)-.25 G .994(uiltin from a shared)-3.694 F(object.)144 256.8 Q F1 -2.3 -.15(ev a)108 273.6 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37 -E F0(...])2.5 E(The)144 285.6 Q F2(ar)3.171 E(g)-.37 E F0 3.171(sa)C -.671(re read and concatenated together into a single command.)-3.171 F -.67(This command is then read)5.67 F .495(and e)144 297.6 R -.15(xe)-.15 -G .495(cuted by the shell, and its e).15 F .495 +E F0(...])2.5 E(The)144 285.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 .495(and e)144 297.6 R -.15(xe)-.15 G +.495(cuted by the shell, and its e).15 F .495 (xit status is returned as the v)-.15 F .495(alue of)-.25 F F1 -2.3 -.15 (ev a)2.995 H(l).15 E F0 5.495(.I)C 2.995(ft)-5.495 G .495(here are no) -2.995 F F2(ar)2.995 E(gs)-.37 E F0(,).27 E(or only null ar)144 309.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 326.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 338.4 Q F2(command)3.006 E F0 .306 -(is speci\214ed, it replaces the shell.)3.576 F .305(No ne)5.305 F 2.805 -(wp)-.25 G .305(rocess is created.)-2.805 F(The)5.305 E F2(ar)3.135 E -(guments)-.37 E F0(become)3.075 E .176(the ar)144 350.4 R .176 +-.37 E F0(]])A(If)144 338.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 350.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 .177 -(ginning of)-.15 F .5(the zeroth ar)144 362.4 R .5(gument passed to)-.18 -F F2(command)3 E F0 5.499(.T).77 G .499(his is what)-5.499 F F2(lo)2.999 -E(gin)-.1 E F0 .499(\(1\) does.).24 F(The)5.499 E F12.999 E F0 -.499(option causes)2.999 F F2(com-)3.199 E(mand)144 374.4 Q F0 .638 -(to be e)3.908 F -.15(xe)-.15 G .638(cuted with an empty en).15 F 3.138 +(option is supplied, the shell places a dash at the be)2.676 F .176 +(ginning of)-.15 F .499(the zeroth ar)144 362.4 R .499(gument passed to) +-.18 F F2(command)2.999 E F0 5.499(.T).77 G .499(his is what)-5.499 F F2 +(lo)2.999 E(gin)-.1 E F0 .499(\(1\) does.).24 F(The)5.5 E F13 E F0 +.5(option causes)3 F F2(com-)3.2 E(mand)144 374.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.499 E F0 .639(as the) -3.319 F 1.078(zeroth ar)144 386.4 R 1.077(gument to the e)-.18 F -.15 +(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 386.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 398.4 Q .617 -.15(ve s)-.25 H .317(hell e).15 F -.317(xits, unless the shell option)-.15 F F1(execfail)2.817 E F0 .318 +.15 F(non-interacti)144 398.4 Q .618 -.15(ve s)-.25 H .318(hell e).15 F +.318(xits, unless the shell option)-.15 F F1(execfail)2.817 E F0 .317 (is enabled, in which case it returns f)2.817 F(ail-)-.1 E 2.505 (ure. An)144 410.4 R(interacti)2.505 E .305 -.15(ve s)-.25 H .005 (hell returns f).15 F .005(ailure if the \214le cannot be e)-.1 F -.15 (xe)-.15 G 2.505(cuted. If).15 F F2(command)2.705 E F0 .005 -(is not speci\214ed,)3.275 F(an)144 422.4 Q 3.036(yr)-.15 G .536 -(edirections tak)-3.036 F 3.036(ee)-.1 G -.25(ff)-3.036 G .536 +(is not speci\214ed,)3.275 F(an)144 422.4 Q 3.037(yr)-.15 G .537 +(edirections tak)-3.037 F 3.036(ee)-.1 G -.25(ff)-3.036 G .536 (ect in the current shell, and the return status is 0.).25 F .536 (If there is a redirection)5.536 F(error)144 434.4 Q 2.5(,t)-.4 G (he return status is 1.)-2.5 E F1(exit)108 451.2 Q F0([)2.5 E F2(n)A F0 -6.29(]C)C .096(ause the shell to e)-6.29 F .096(xit with a status of) --.15 F F2(n)2.596 E F0 5.096(.I)C(f)-5.096 E F2(n)2.955 E F0 .095 -(is omitted, the e)2.835 F .095(xit status is that of the last command) +6.29(]C)C .095(ause the shell to e)-6.29 F .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 463.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 480 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 492 Q F0 -.256(The supplied)144 504 R F2(names)3.117 E F0 .257(are mark)3.027 F +.257(The supplied)144 504 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.627 -(commands. If)144 516 R(the)2.627 E F12.627 E F0 .127 +(vironment of subsequently e)-.4 F -.15(xe)-.15 G(cuted).15 E 2.626 +(commands. If)144 516 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 .126(n, or if the).15 F F1 -144 528 Q F0 .659(option is supplied, a list of all names that are e) -3.159 F .66(xported in this shell is printed.)-.15 F(The)5.66 E F1 -3.16 E F0(option)3.16 E 1.587(causes the e)144 540 R 1.587 +F0 .127(are gi)2.897 F -.15(ve)-.25 G .127(n, or if the).15 F F1 +144 528 Q F0 .66(option is supplied, a list of all names that are e)3.16 +F .659(xported in this shell is printed.)-.15 F(The)5.659 E F1 +3.159 E F0(option)3.159 E 1.586(causes the e)144 540 R 1.586 (xport property to be remo)-.15 F -.15(ve)-.15 G 4.086(df).15 G 1.586 (rom each)-4.086 F F2(name)4.086 E F0 6.586(.I)C 4.086(fav)-6.586 G -1.586(ariable name is follo)-4.336 F 1.586(wed by)-.25 F(=)144 552 Q F2 -(wor)A(d)-.37 E F0 2.803(,t)C .303(he v)-2.803 F .303(alue of the v)-.25 +1.587(ariable name is follo)-4.336 F 1.587(wed by)-.25 F(=)144 552 Q F2 +(wor)A(d)-.37 E F0 2.804(,t)C .304(he v)-2.804 F .304(alue of the v)-.25 F .304(ariable is set to)-.25 F F2(wor)2.804 E(d)-.37 E F0(.)A F1 -(export)5.304 E F0 .304(returns an e)2.804 F .304 -(xit status of 0 unless an in)-.15 F -.25(va)-.4 G(lid).25 E .294 +(export)5.304 E F0 .304(returns an e)2.804 F .303 +(xit status of 0 unless an in)-.15 F -.25(va)-.4 G(lid).25 E .293 (option is encountered, one of the)144 564 R F2(names)2.793 E F0 .293 (is not a v)2.793 F .293(alid shell v)-.25 F .293(ariable name, or)-.25 -F F12.793 E F0 .293(is supplied with a)2.793 F F2(name)144.36 576 +F F12.793 E F0 .294(is supplied with a)2.793 F F2(name)144.36 576 Q F0(that is not a function.)2.68 E F1(fc)108 592.8 Q F0([)2.5 E F1 A 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 604.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 .477(Fix Command.)144 616.8 R .478 -(In the \214rst form, a range of commands from)5.477 F F2<8c72>4.888 E -(st)-.1 E F0(to)3.658 E F2(last)3.068 E F0 .478 -(is selected from the his-)3.658 F .882(tory list.)144 628.8 R F2 -.45 -(Fi)5.882 G -.1(rs).45 G(t).1 E F0(and)4.062 E F2(last)3.472 E F0 .882 +(cmd)-2.5 E F0(])A .478(Fix Command.)144 616.8 R .478 +(In the \214rst form, a range of commands from)5.478 F F2<8c72>4.888 E +(st)-.1 E F0(to)3.658 E F2(last)3.068 E F0 .477 +(is selected from the his-)3.658 F .881(tory list.)144 628.8 R F2 -.45 +(Fi)5.881 G -.1(rs).45 G(t).1 E F0(and)4.061 E F2(last)3.471 E F0 .882 (may be speci\214ed as a string \(to locate the last command be)4.062 F -.881(ginning with)-.15 F .797(that string\) or as a number \(an inde)144 +.882(ginning with)-.15 F .797(that string\) or as a number \(an inde)144 640.8 R 3.297(xi)-.15 G .797(nto the history list, where a ne)-3.297 F --.05(ga)-.15 G(ti).05 E 1.097 -.15(ve n)-.25 H .797(umber is used as an) -.15 F(of)144 652.8 Q .277(fset from the current command number\).)-.25 F -(If)5.277 E F2(last)2.867 E F0 .276 -(is not speci\214ed it is set to the current command)3.457 F .092 +-.05(ga)-.15 G(ti).05 E 1.097 -.15(ve n)-.25 H .796(umber is used as an) +.15 F(of)144 652.8 Q .276(fset from the current command number\).)-.25 F +(If)5.276 E F2(last)2.866 E F0 .277 +(is not speci\214ed it is set to the current command)3.456 F .093 (for listing \(so that)144 664.8 R F4 .092(fc \255l \25510)2.592 F F0 .092(prints the last 10 commands\) and to)2.592 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 .093 -(is not)3.273 F(speci\214ed it is set to the pre)144 676.8 Q +E F0 2.592(otherwise. If)3.272 F F2<8c72>4.502 E(st)-.1 E F0 .092 +(is not)3.272 F(speci\214ed it is set to the pre)144 676.8 Q (vious command for editing and \25516 for listing.)-.25 E(The)144 700.8 Q F12.522 E F0 .022 (option suppresses the command numbers when listing.)2.522 F(The)5.022 E @@ -6300,10 +6303,10 @@ 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 712.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 -.335(the editor gi)144 724.8 R -.15(ve)-.25 G 2.835(nb).15 G(y)-2.835 E -F2(ename)3.025 E F0 .335(is in)3.015 F -.2(vo)-.4 G -.1(ke).2 G 2.835 +.334(the editor gi)144 724.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.334 E F2(ename)3.024 E F0 .334(is not gi)3.014 F -.15(ve)-.25 G +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(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(53)200.665 E 0 Cg EP %%Page: 54 54 @@ -6311,118 +6314,118 @@ EP BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E .63(the v)144 84 R .63(alue of the)-.25 F/F1 9/Times-Bold@0 SF -(FCEDIT)3.13 E F0 -.25(va)2.88 G .631(riable is used, and the v).25 F +-.35 E .631(the v)144 84 R .631(alue of the)-.25 F/F1 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 F1(EDIT)3.131 E(OR)-.162 E F0(if)2.881 E F1(FCEDIT) -3.131 E F0 .631(is not set.)2.881 F .631(If nei-)5.631 F .951(ther v)144 -96 R .951(ariable is set,)-.25 F/F2 10/Times-Italic@0 SF(vi)5.117 E F0 -.951(is used.)5.117 F .95 -(When editing is complete, the edited commands are echoed and)5.951 F --.15(exe)144 108 S(cuted.).15 E .039(In the second form,)144 132 R F2 -(command)2.539 E F0 .039(is re-e)2.539 F -.15(xe)-.15 G .039 -(cuted after each instance of).15 F F2(pat)2.54 E F0 .04(is replaced by) -2.54 F F2 -.37(re)2.54 G(p).37 E F0 5.04(.A)C(useful)-2.5 E .406 -(alias to use with this is)144 144 R/F3 10/Courier@0 SF .406 +3.13 E F0 .63(is not set.)2.88 F .63(If nei-)5.63 F .95(ther v)144 96 R +.95(ariable is set,)-.25 F/F2 10/Times-Italic@0 SF(vi)5.116 E F0 .95 +(is used.)5.116 F .951 +(When editing is complete, the edited commands are echoed and)5.95 F +-.15(exe)144 108 S(cuted.).15 E .04(In the second form,)144 132 R F2 +(command)2.54 E F0 .04(is re-e)2.54 F -.15(xe)-.15 G .039 +(cuted after each instance of).15 F F2(pat)2.539 E F0 .039 +(is replaced by)2.539 F F2 -.37(re)2.539 G(p).37 E F0 5.039(.A)C(useful) +-2.5 E .406(alias to use with this is)144 144 R/F3 10/Courier@0 SF .406 (r='fc \255s')2.906 F F0 2.906(,s)C 2.906(ot)-2.906 G .406(hat typing) -2.906 F F3 6.406(rc)2.906 G(c)-6.406 E F0 .406 -(runs the last command be)2.906 F .406(ginning with)-.15 F F3(cc)144 156 +(runs the last command be)2.906 F .407(ginning with)-.15 F F3(cc)144 156 Q F0(and typing)2.5 E F3(r)2.5 E F0(re-e)2.5 E -.15(xe)-.15 G (cutes the last command.).15 E .142 (If the \214rst form is used, the return v)144 180 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 192 R +E F2(last)2.732 E F0 .454(specify history lines out of range.)144 192 R .454(If the)5.454 F/F4 10/Times-Bold@0 SF2.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 204 R -.15(xe)-.15 G .787 -(cuted or f).15 F .788 +(option is supplied, the return v)2.954 F .455(alue is the v)-.25 F .455 +(alue of the)-.25 F .788(last command e)144 204 R -.15(xe)-.15 G .788 +(cuted or f).15 F .787 (ailure if an error occurs with the temporary \214le of commands.)-.1 F -.788(If the)5.788 F 1.136 +.787(If the)5.787 F 1.135 (second form is used, the return status is that of the command re-e)144 -216 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 228 Q +216 R -.15(xe)-.15 G 1.136(cuted, unless).15 F F2(cmd)3.836 E F0 1.136 +(does not)4.406 F(specify a v)144 228 Q (alid history line, in which case)-.25 E F4(fc)2.5 E F0(returns f)2.5 E (ailure.)-.1 E F4(fg)108 244.8 Q F0([)2.5 E F2(jobspec)A F0(])A(Resume) -144 256.8 Q F2(jobspec)5.653 E F0 1.413(in the fore)4.223 F 1.413 +144 256.8 Q F2(jobspec)5.654 E F0 1.413(in the fore)4.224 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 F2(jobspec)5.653 E F0 -1.414(is not present, the)4.223 F(shell')144 268.8 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 +1.413(is not present, the)4.223 F(shell')144 268.8 Q 3.116(sn)-.55 G +.616(otion of the)-3.116 F F2(curr)3.116 E .616(ent job)-.37 F F0 .617 +(is used.)3.116 F .617(The return v)5.617 F .617 (alue is that of the command placed into the)-.25 F(fore)144 280.8 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 +.363(ground, or f)-.15 F .363 +(ailure if run when job control is disabled or)-.1 F 2.862(,w)-.4 G .362 (hen run with job control enabled, if)-2.862 F F2(jobspec)145.74 292.8 Q -F0 .004(does not specify a v)2.815 F .004(alid job or)-.25 F F2(jobspec) +F0 .004(does not specify a v)2.814 F .004(alid job or)-.25 F F2(jobspec) 4.244 E F0 .004(speci\214es a job that w)2.814 F .004 (as started without job control.)-.1 F F4(getopts)108 309.6 Q F2 (optstring name)2.5 E F0([)2.5 E F2(ar)A(gs)-.37 E F0(])A F4(getopts)144 321.6 Q F0 .793 -(is used by shell procedures to parse positional parameters.)3.293 F F2 -(optstring)6.023 E F0 .793(contains the option)3.513 F .15 -(characters to be recognized; if a character is follo)144 333.6 R .149 -(wed by a colon, the option is e)-.25 F .149(xpected to ha)-.15 F .449 --.15(ve a)-.2 H(n).15 E(ar)144 345.6 Q .578 -(gument, which should be separated from it by white space.)-.18 F .579 +(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 333.6 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 345.6 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 1.665 (acters may not be used as option characters.)144 357.6 R 1.665 (Each time it is in)6.665 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F4(getopts) -4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .796 -(option in the shell v)144 369.6 R(ariable)-.25 E F2(name)3.296 E F0 -3.296(,i).18 G(nitializing)-3.296 E F2(name)3.657 E F0 .797 -(if it does not e)3.477 F .797(xist, and the inde)-.15 F 3.297(xo)-.15 G -3.297(ft)-3.297 G .797(he ne)-3.297 F(xt)-.15 E(ar)144 381.6 Q .085 +4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .797 +(option in the shell v)144 369.6 R(ariable)-.25 E F2(name)3.297 E F0 +3.297(,i).18 G(nitializing)-3.297 E F2(name)3.657 E F0 .797 +(if it does not e)3.477 F .796(xist, and the inde)-.15 F 3.296(xo)-.15 G +3.296(ft)-3.296 G .796(he ne)-3.296 F(xt)-.15 E(ar)144 381.6 Q .085 (gument to be processed into the v)-.18 F(ariable)-.25 E F1(OPTIND)2.585 E/F5 9/Times-Roman@0 SF(.)A F1(OPTIND)4.585 E F0 .085 -(is initialized to 1 each time the shell)2.335 F .845 +(is initialized to 1 each time the shell)2.335 F .846 (or a shell script is in)144 393.6 R -.2(vo)-.4 G -.1(ke).2 G 3.345 (d. When).1 F .845(an option requires an ar)3.345 F(gument,)-.18 E F4 -(getopts)3.346 E F0 .846(places that ar)3.346 F(gument)-.18 E .804 -(into the v)144 405.6 R(ariable)-.25 E F1(OPT)3.304 E(ARG)-.81 E F5(.)A -F0 .803(The shell does not reset)5.304 F F1(OPTIND)3.303 E F0 .803 -(automatically; it must be manually)3.053 F .293 +(getopts)3.345 E F0 .845(places that ar)3.345 F(gument)-.18 E .803 +(into the v)144 405.6 R(ariable)-.25 E F1(OPT)3.303 E(ARG)-.81 E F5(.)A +F0 .803(The shell does not reset)5.303 F F1(OPTIND)3.303 E F0 .804 +(automatically; it must be manually)3.054 F .294 (reset between multiple calls to)144 417.6 R F4(getopts)2.793 E F0 .293 (within the same shell in)2.793 F -.2(vo)-.4 G .293(cation if a ne).2 F -2.793(ws)-.25 G .294(et of parameters)-2.793 F(is to be used.)144 429.6 -Q 2.044(When the end of options is encountered,)144 453.6 R F4(getopts) -4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.043 +2.793(ws)-.25 G .293(et of parameters)-2.793 F(is to be used.)144 429.6 +Q 2.043(When the end of options is encountered,)144 453.6 R F4(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 465.6 Q F0 (is set to the inde)2.5 E 2.5(xo)-.15 G 2.5(ft)-2.5 G (he \214rst non-option ar)-2.5 E(gument, and)-.18 E F4(name)2.5 E F0 -(is set to ?.)2.5 E F4(getopts)144 489.6 Q F0 2.392 -(normally parses the positional parameters, b)4.892 F 2.392 -(ut if more ar)-.2 F 2.393(guments are gi)-.18 F -.15(ve)-.25 G 4.893 -(ni).15 G(n)-4.893 E F2(ar)4.893 E(gs)-.37 E F0(,).27 E F4(getopts)144 -501.6 Q F0(parses those instead.)2.5 E F4(getopts)144 525.6 Q F0 1.166 -(can report errors in tw)3.666 F 3.665(ow)-.1 G 3.665(ays. If)-3.765 F -1.165(the \214rst character of)3.665 F F2(optstring)3.895 E F0 1.165 -(is a colon,)3.885 F F2(silent)4.005 E F0(error)4.345 E 1.263 +(is set to ?.)2.5 E F4(getopts)144 489.6 Q F0 2.393 +(normally parses the positional parameters, b)4.893 F 2.392 +(ut if more ar)-.2 F 2.392(guments are gi)-.18 F -.15(ve)-.25 G 4.892 +(ni).15 G(n)-4.892 E F2(ar)4.892 E(gs)-.37 E F0(,).27 E F4(getopts)144 +501.6 Q F0(parses those instead.)2.5 E F4(getopts)144 525.6 Q F0 1.165 +(can report errors in tw)3.665 F 3.665(ow)-.1 G 3.665(ays. If)-3.765 F +1.165(the \214rst character of)3.665 F F2(optstring)3.895 E F0 1.166 +(is a colon,)3.886 F F2(silent)4.006 E F0(error)4.346 E 1.264 (reporting is used.)144 537.6 R 1.263 (In normal operation diagnostic messages are printed when in)6.263 F --.25(va)-.4 G 1.263(lid options or).25 F .394(missing option ar)144 -549.6 R .394(guments are encountered.)-.18 F .394(If the v)5.394 F +-.25(va)-.4 G 1.263(lid options or).25 F .393(missing option ar)144 +549.6 R .393(guments are encountered.)-.18 F .394(If the v)5.394 F (ariable)-.25 E F1(OPTERR)2.894 E F0 .394 (is set to 0, no error messages)2.644 F(will be displayed, e)144 561.6 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214rst character of)-2.5 E -F2(optstring)2.73 E F0(is not a colon.)2.72 E .666(If an in)144 585.6 R --.25(va)-.4 G .666(lid option is seen,).25 F F4(getopts)3.166 E F0 .667 -(places ? into)3.167 F F2(name)3.527 E F0 .667 -(and, if not silent, prints an error message)3.347 F .4(and unsets)144 -597.6 R F1(OPT)2.9 E(ARG)-.81 E F5(.)A F0(If)4.899 E F4(getopts)2.899 E -F0 .399(is silent, the option character found is placed in)2.899 F F1 -(OPT)2.899 E(ARG)-.81 E F0 .399(and no)2.649 F -(diagnostic message is printed.)144 609.6 Q 1.241(If a required ar)144 -633.6 R 1.241(gument is not found, and)-.18 F F4(getopts)3.741 E F0 -1.241(is not silent, a question mark \()3.741 F F4(?).833 E F0 3.742 -(\)i).833 G 3.742(sp)-3.742 G 1.242(laced in)-3.742 F F2(name)144 645.6 -Q F0(,).18 E F1(OPT)2.735 E(ARG)-.81 E F0 .234 -(is unset, and a diagnostic message is printed.)2.485 F(If)5.234 E F4 -(getopts)2.734 E F0 .234(is silent, then a colon \()2.734 F F4(:).833 E +F2(optstring)2.73 E F0(is not a colon.)2.72 E .667(If an in)144 585.6 R +-.25(va)-.4 G .667(lid option is seen,).25 F F4(getopts)3.167 E F0 .667 +(places ? into)3.167 F F2(name)3.527 E F0 .666 +(and, if not silent, prints an error message)3.347 F .399(and unsets)144 +597.6 R F1(OPT)2.899 E(ARG)-.81 E F5(.)A F0(If)4.899 E F4(getopts)2.899 +E F0 .399(is silent, the option character found is placed in)2.899 F F1 +(OPT)2.899 E(ARG)-.81 E F0 .4(and no)2.65 F +(diagnostic message is printed.)144 609.6 Q 1.242(If a required ar)144 +633.6 R 1.242(gument is not found, and)-.18 F F4(getopts)3.741 E F0 +1.241(is not silent, a question mark \()3.741 F F4(?).833 E F0 3.741 +(\)i).833 G 3.741(sp)-3.741 G 1.241(laced in)-3.741 F F2(name)144 645.6 +Q F0(,).18 E F1(OPT)2.734 E(ARG)-.81 E F0 .234 +(is unset, and a diagnostic message is printed.)2.484 F(If)5.234 E F4 +(getopts)2.734 E F0 .235(is silent, then a colon \()2.734 F F4(:).833 E F0(\)).833 E(is placed in)144 657.6 Q F2(name)2.86 E F0(and)2.68 E F1 (OPT)2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F4 (getopts)144 681.6 Q F0 .902 (returns true if an option, speci\214ed or unspeci\214ed, is found.) -3.401 F .902(It returns f)5.902 F .902(alse if the end of)-.1 F +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 693.6 Q(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(54)200.665 E 0 Cg EP %%Page: 55 55 @@ -6433,37 +6436,38 @@ BP -.35 E/F1 10/Times-Bold@0 SF(hash)108 84 Q F0([)2.5 E F1(\255lr)A F0 2.5 (][)C F1-2.5 E/F2 10/Times-Italic@0 SF(\214lename)2.5 E F0 2.5(][) C F1(\255dt)-2.5 E F0 2.5(][)C F2(name)-2.5 E F0(])A -.15(Fo)144 96 S -3.555(re).15 G(ach)-3.555 E F2(name)3.555 E F0 3.555(,t).18 G 1.054(he \ +3.554(re).15 G(ach)-3.554 E F2(name)3.554 E F0 3.554(,t).18 G 1.054(he \ full \214le name of the command is determined by searching the director\ -ies in)-3.555 F F1($P)144 108 Q -.95(AT)-.74 G(H).95 E F0 .349 -(and remembered.)2.849 F .349(If the)5.349 F F12.849 E F0 .349 +ies in)-3.554 F F1($P)144 108 Q -.95(AT)-.74 G(H).95 E F0 .35 +(and remembered.)2.85 F .35(If the)5.35 F F12.85 E F0 .349 (option is supplied, no path search is performed, and)2.849 F F2 -(\214lename)4.76 E F0 .452 +(\214lename)4.759 E F0 .452 (is used as the full \214le name of the command.)144 120 R(The)5.452 E -F12.952 E F0 .452(option causes the shell to for)2.952 F .452 -(get all remem-)-.18 F .592(bered locations.)144 132 R(The)5.592 E F1 -3.092 E F0 .593(option causes the shell to for)3.092 F .593 -(get the remembered location of each)-.18 F F2(name)3.093 E F0(.)A .021 -(If the)144 144 R F12.521 E F0 .021 -(option is supplied, the full pathname to which each)2.521 F F2(name) -2.52 E F0 .02(corresponds is printed.)2.52 F .02(If multi-)5.02 F(ple) -144 156 Q F2(name)3.703 E F0(ar)3.703 E 1.203(guments are supplied with) --.18 F F13.703 E F0 3.703(,t)C(he)-3.703 E F2(name)3.703 E F0 -1.204(is printed before the hashed full pathname.)3.703 F(The)144 168 Q -F13.216 E F0 .715(option causes output to be displayed in a forma\ -t that may be reused as input.)3.216 F .715(If no ar)5.715 F(gu-)-.18 E -1.183(ments are gi)144 180 R -.15(ve)-.25 G 1.183(n, or if only).15 F F1 -3.683 E F0 1.184 +F12.952 E F0 .452(option causes the shell to for)2.952 F .453 +(get all remem-)-.18 F .593(bered locations.)144 132 R(The)5.593 E F1 +3.093 E F0 .593(option causes the shell to for)3.093 F .592 +(get the remembered location of each)-.18 F F2(name)3.092 E F0(.)A .02 +(If the)144 144 R F12.52 E F0 .02 +(option is supplied, the full pathname to which each)2.52 F F2(name) +2.521 E F0 .021(corresponds is printed.)2.521 F .021(If multi-)5.021 F +(ple)144 156 Q F2(name)3.704 E F0(ar)3.704 E 1.204 +(guments are supplied with)-.18 F F13.703 E F0 3.703(,t)C(he) +-3.703 E F2(name)3.703 E F0 1.203 +(is printed before the hashed full pathname.)3.703 F(The)144 168 Q F1 +3.215 E F0 .715(option causes output to be displayed in a format \ +that may be reused as input.)3.215 F .716(If no ar)5.716 F(gu-)-.18 E +1.184(ments are gi)144 180 R -.15(ve)-.25 G 1.184(n, or if only).15 F F1 +3.684 E F0 1.183 (is supplied, information about remembered commands is printed.)3.684 F (The return status is true unless a)144 192 Q F2(name)2.86 E F0 (is not found or an in)2.68 E -.25(va)-.4 G(lid option is supplied.).25 E F1(help)108 208.8 Q F0([)2.5 E F1(\255dms)A F0 2.5(][)C F2(pattern) --2.5 E F0(])A .867(Display helpful information about b)144 220.8 R .867 -(uiltin commands.)-.2 F(If)5.867 E F2(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 .306(help on all commands matching)144 -232.8 R F2(pattern)2.806 E F0 2.807(;o).24 G .307 -(therwise help for all the b)-2.807 F .307 +-2.5 E F0(])A .866(Display helpful information about b)144 220.8 R .867 +(uiltin commands.)-.2 F(If)5.867 E F2(pattern)4.617 E F0 .867 +(is speci\214ed,)3.607 F F1(help)3.367 E F0(gi)3.367 E -.15(ve)-.25 G +3.367(sd).15 G(etailed)-3.367 E .307(help on all commands matching)144 +232.8 R F2(pattern)2.807 E F0 2.807(;o).24 G .307 +(therwise help for all the b)-2.807 F .306 (uiltins and shell control struc-)-.2 F(tures is printed.)144 244.8 Q F1 144 256.8 Q F0(Display a short description of each)24.74 E F2 (pattern)2.5 E F1(-m)146.5 268.8 Q F0(Display the description of each) @@ -6479,16 +6483,16 @@ F1(history \255p)108 357.6 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5 -.37 E F0([)2.5 E F2(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144 381.6 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 1.23(been modi\214ed.)144 393.6 R 1.23(An ar)6.23 F 1.23(gument of) --.18 F F2(n)4.09 E F0 1.231(lists only the last)3.97 F F2(n)4.091 E F0 -3.731(lines. If)3.971 F 1.231(the shell v)3.731 F(ariable)-.25 E F1 -(HISTTIME-)3.731 E(FORMA)144 405.6 Q(T)-.95 E F0 .25 -(is set and not null, it is used as a format string for)2.75 F F2 -(strftime)2.749 E F0 .249(\(3\) to display the time stamp)B .378 -(associated with each displayed history entry)144 417.6 R 5.378(.N)-.65 -G 2.878(oi)-5.378 G(nterv)-2.878 E .379 -(ening blank is printed between the format-)-.15 F .815 +.752(Lines listed with a)5.752 F F1(*)3.252 E F0(ha)3.252 E -.15(ve)-.2 +G 1.231(been modi\214ed.)144 393.6 R 1.231(An ar)6.231 F 1.231 +(gument of)-.18 F F2(n)4.091 E F0 1.231(lists only the last)3.971 F F2 +(n)4.091 E F0 3.73(lines. If)3.97 F 1.23(the shell v)3.73 F(ariable)-.25 +E F1(HISTTIME-)3.73 E(FORMA)144 405.6 Q(T)-.95 E F0 .249 +(is set and not null, it is used as a format string for)2.749 F F2 +(strftime)2.75 E F0 .25(\(3\) to display the time stamp)B .379 +(associated with each displayed history entry)144 417.6 R 5.379(.N)-.65 +G 2.878(oi)-5.379 G(nterv)-2.878 E .378 +(ening blank is printed between the format-)-.15 F .814 (ted time stamp and the history line.)144 429.6 R(If)5.814 E F2 (\214lename)3.314 E F0 .814 (is supplied, it is used as the name of the history)3.314 F @@ -6497,47 +6501,48 @@ G 2.878(oi)-5.378 G(nterv)-2.878 E .379 (ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 453.6 Q F0 (Clear the history list by deleting all the entries.)25.86 E F1144 465.6 Q F2(of)2.5 E(fset)-.18 E F0(Delete the history entry at position) -180 477.6 Q F2(of)2.5 E(fset)-.18 E F0(.)A F1144 489.6 Q F0 .598 -(Append the `)25.3 F(`ne)-.74 E(w')-.25 E 3.098('h)-.74 G .598 -(istory lines \(history lines entered since the be)-3.098 F .599 +180 477.6 Q F2(of)2.5 E(fset)-.18 E F0(.)A F1144 489.6 Q F0 .599 +(Append the `)25.3 F(`ne)-.74 E(w')-.25 E 3.099('h)-.74 G .598 +(istory lines \(history lines entered since the be)-3.099 F .598 (ginning of the current)-.15 F F1(bash)180 501.6 Q F0 (session\) to the history \214le.)2.5 E F1144 513.6 Q F0 .854(Rea\ d the history lines not already read from the history \214le into the c\ -urrent history list.)24.74 F .772 +urrent history list.)24.74 F .773 (These are lines appended to the history \214le since the be)180 525.6 R -.773(ginning of the current)-.15 F F1(bash)3.273 E F0(ses-)3.273 E +.772(ginning of the current)-.15 F F1(bash)3.272 E F0(ses-)3.272 E (sion.)180 537.6 Q F1144 549.6 Q F0(Read the contents of the hist\ ory \214le and use them as the current history)25.86 E(.)-.65 E F1 144 561.6 Q F0(Write the current history to the history \214le, o)23.08 E -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G -(ontents.)-2.5 E F1144 573.6 Q F0 .626 +(ontents.)-2.5 E F1144 573.6 Q F0 .625 (Perform history substitution on the follo)24.74 F(wing)-.25 E F2(ar) -3.125 E(gs)-.37 E F0 .625(and display the result on the standard)3.125 F +3.125 E(gs)-.37 E F0 .626(and display the result on the standard)3.125 F 2.975(output. Does)180 585.6 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 597.6 Q(xpansion.)-.15 E F1144 609.6 Q F0 -.363(Store the)26.41 F F2(ar)3.193 E(gs)-.37 E F0 .363 -(in the history list as a single entry)3.133 F 5.363(.T)-.65 G .362 +.362(Store the)26.41 F 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 621.6 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 .28(If the)144 638.4 R F1(HISTTIMEFORMA)2.78 E(T)-.95 E F0 .28 (is set, the time stamp information associated with each history entry) -2.78 F .54(is written to the history \214le, mark)144 650.4 R .539 -(ed with the history comment character)-.1 F 5.539(.W)-.55 G .539 -(hen the history \214le is)-5.539 F 1.778(read, lines be)144 662.4 R -1.778(ginning with the history comment character follo)-.15 F 1.779 +2.78 F .539(is written to the history \214le, mark)144 650.4 R .539 +(ed with the history comment character)-.1 F 5.54(.W)-.55 G .54 +(hen the history \214le is)-5.54 F 1.779(read, lines be)144 662.4 R +1.779(ginning with the history comment character follo)-.15 F 1.778 (wed immediately by a digit are)-.25 F 1.424 (interpreted as timestamps for the pre)144 674.4 R 1.424 (vious history line.)-.25 F 1.424(The return v)6.424 F 1.424 (alue is 0 unless an in)-.25 F -.25(va)-.4 G(lid).25 E .499(option is e\ ncountered, an error occurs while reading or writing the history \214le\ -, an in)144 686.4 R -.25(va)-.4 G(lid).25 E F2(of)3 E(fset)-.18 E F0(is) -3 E(supplied as an ar)144 698.4 Q(gument to)-.18 E F12.5 E F0 2.5 -(,o)C 2.5(rt)-2.5 G(he history e)-2.5 E(xpansion supplied as an ar)-.15 -E(gument to)-.18 E F12.5 E F0 -.1(fa)2.5 G(ils.).1 E(GNU Bash-4.0) -72 768 Q(2008 July 6)150.675 E(55)200.665 E 0 Cg EP +, an in)144 686.4 R -.25(va)-.4 G(lid).25 E F2(of)2.999 E(fset)-.18 E F0 +(is)2.999 E(supplied as an ar)144 698.4 Q(gument to)-.18 E F12.5 E +F0 2.5(,o)C 2.5(rt)-2.5 G(he history e)-2.5 E +(xpansion supplied as an ar)-.15 E(gument to)-.18 E F12.5 E F0 -.1 +(fa)2.5 G(ils.).1 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(55) +200.665 E 0 Cg EP %%Page: 56 56 %%BeginPageSetup BP @@ -6551,20 +6556,20 @@ E(The \214rst form lists the acti)144 108 Q .3 -.15(ve j)-.25 H 2.5 (wing meanings:)-.25 E F1144 120 Q F0 (List process IDs in addition to the normal information.)27.52 E F1 144 132 Q F0(List only the process ID of the job')24.74 E 2.5(sp) --.55 G(rocess group leader)-2.5 E(.)-.55 E F1144 144 Q F0 .194 +-.55 G(rocess group leader)-2.5 E(.)-.55 E F1144 144 Q F0 .193 (Display information only about jobs that ha)24.74 F .494 -.15(ve c)-.2 -H .193(hanged status since the user w).15 F .193(as last noti-)-.1 F +H .194(hanged status since the user w).15 F .194(as last noti-)-.1 F (\214ed of their status.)180 156 Q F1144 168 Q F0 (Restrict output to running jobs.)25.86 E F1144 180 Q F0 (Restrict output to stopped jobs.)26.41 E(If)144 196.8 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 208.8 Q -.25 +4.554 E F0 .314(is gi)3.124 F -.15(ve)-.25 G .314 +(n, output is restricted to information about that job).15 F 5.313(.T) +-.4 G .313(he return status is 0 unless)-5.313 F(an in)144 208.8 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 225.6 R F1 -2.895 E F0 .394(option is supplied,)2.894 F F1(jobs)2.894 E F0 +E F2(jobspec)4.24 E F0(is supplied.)2.81 E .394(If the)144 225.6 R F1 +2.894 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 +3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 E F0 .395 (with the corre-)3.164 F(sponding process group ID, and e)144 237.6 Q -.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E F2(ar) 2.5 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.)-.15 E @@ -6572,54 +6577,54 @@ F1(kill)108 254.4 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 266.4 Q F0([)2.5 E F2(sigspec)A F0(|)2.5 E F2 -.2(ex)2.5 -G(it_status).2 E F0(])A .119(Send the signal named by)144 278.4 R F2 -(sigspec)2.959 E F0(or)2.929 E F2(signum)2.959 E F0 .119 -(to the processes named by)2.939 F F2(pid)3.87 E F0(or)3.39 E F2 -(jobspec)2.62 E F0(.).31 E F2(sigspec)5.46 E F0(is)2.93 E .319 -(either a case-insensiti)144 290.4 R .619 -.15(ve s)-.25 H .319 -(ignal name such as).15 F/F3 9/Times-Bold@0 SF(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 302.4 Q F2(signum)4.188 E F0 -1.349(is a signal number)4.168 F 6.349(.I)-.55 G(f)-6.349 E F2(sigspec) +G(it_status).2 E F0(])A .12(Send the signal named by)144 278.4 R F2 +(sigspec)2.96 E F0(or)2.93 E F2(signum)2.96 E F0 .119 +(to the processes named by)2.939 F F2(pid)3.869 E F0(or)3.389 E F2 +(jobspec)2.619 E F0(.).31 E F2(sigspec)5.459 E F0(is)2.929 E .318 +(either a case-insensiti)144 290.4 R .618 -.15(ve s)-.25 H .318 +(ignal name such as).15 F/F3 9/Times-Bold@0 SF(SIGKILL)2.818 E F0 .319 +(\(with or without the)2.569 F F3(SIG)2.819 E F0 .319 +(pre\214x\) or a signal)2.569 F(number;)144 302.4 Q F2(signum)4.189 E F0 +1.349(is a signal number)4.169 F 6.349(.I)-.55 G(f)-6.349 E F2(sigspec) 4.189 E F0 1.349(is not present, then)4.159 F F3(SIGTERM)3.849 E F0 -1.349(is assumed.)3.599 F(An)6.349 E(ar)144 314.4 Q .523(gument of)-.18 +1.348(is assumed.)3.599 F(An)6.348 E(ar)144 314.4 Q .522(gument of)-.18 F F13.023 E F0 .523(lists the signal names.)3.023 F .523(If an) 5.523 F 3.023(ya)-.15 G -.18(rg)-3.023 G .523(uments are supplied when) .18 F F13.023 E F0 .523(is gi)3.023 F -.15(ve)-.25 G .523 (n, the names).15 F .28(of the signals corresponding to the ar)144 326.4 R .28(guments are listed, and the return status is 0.)-.18 F(The)5.28 E -F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 338.4 Q .378(gument to)-.18 F -F12.878 E F0 .378 -(is a number specifying either a signal number or the e)2.878 F .377 -(xit status of a process termi-)-.15 F .593(nated by a signal.)144 350.4 +F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 338.4 Q .377(gument to)-.18 F +F12.877 E F0 .378 +(is a number specifying either a signal number or the e)2.877 F .378 +(xit status of a process termi-)-.15 F .594(nated by a signal.)144 350.4 R F1(kill)5.593 E F0 .593(returns true if at least one signal w)3.093 F -.593(as successfully sent, or f)-.1 F .594(alse if an error)-.1 F +.593(as successfully sent, or f)-.1 F .593(alse if an error)-.1 F (occurs or an in)144 362.4 Q -.25(va)-.4 G(lid option is encountered.) .25 E F1(let)108 379.2 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 391.2 Q F2(ar)3.965 E(g)-.37 E F0 1.135 -(is an arithmetic e)3.855 F 1.134(xpression to be e)-.15 F -.25(va)-.25 -G 1.134(luated \(see).25 F F3 1.134(ARITHMETIC EV)3.634 F(ALU)-1.215 E --.855(AT)-.54 G(ION).855 E/F4 9/Times-Roman@0 SF(\).)A F0 1.134(If the) -5.634 F(last)144 403.2 Q F2(ar)2.83 E(g)-.37 E F0 -.25(eva)2.72 G +E F0(...])2.5 E(Each)144 391.2 Q F2(ar)3.964 E(g)-.37 E F0 1.134 +(is an arithmetic e)3.854 F 1.134(xpression to be e)-.15 F -.25(va)-.25 +G 1.135(luated \(see).25 F F3 1.135(ARITHMETIC EV)3.635 F(ALU)-1.215 E +-.855(AT)-.54 G(ION).855 E/F4 9/Times-Roman@0 SF(\).)A F0 1.135(If the) +5.635 F(last)144 403.2 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 420 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(..])-2.5 E -.15(Fo)144 432 S 2.56(re) .15 G .06(ach ar)-2.56 F .06(gument, a local v)-.18 F .06(ariable named) -.25 F F2(name)2.92 E F0 .06(is created, and assigned)2.74 F F2(value) 2.56 E F0 5.06(.T).18 G(he)-5.06 E F2(option)2.56 E F0 .06(can be)2.56 F -(an)144 444 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 +(an)144 444 Q 3.152(yo)-.15 G 3.152(ft)-3.152 G .652 +(he options accepted by)-3.152 F F1(declar)3.152 E(e)-.18 E F0 5.652(.W) +C(hen)-5.652 E F1(local)3.152 E F0 .653 (is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144 -456 Q F2(name)3.72 E F0 .86(to ha)3.54 F 1.16 -.15(ve a v)-.2 H .861 +456 Q F2(name)3.721 E F0 .861(to ha)3.541 F 1.161 -.15(ve a v)-.2 H .861 (isible scope restricted to that function and its children.).15 F -.4 -(Wi)5.861 G .861(th no operands,).4 F F1(local)144 468 Q F0 1.165 -(writes a list of local v)3.665 F 1.165 +(Wi)5.86 G .86(th no operands,).4 F F1(local)144 468 Q F0 1.164 +(writes a list of local v)3.664 F 1.165 (ariables to the standard output.)-.25 F 1.165(It is an error to use) -6.165 F F1(local)3.664 E F0 1.164(when not)3.664 F .232 -(within a function.)144 480 R .233(The return status is 0 unless)5.232 F +6.165 F F1(local)3.665 E F0 1.165(when not)3.665 F .233 +(within a function.)144 480 R .233(The return status is 0 unless)5.233 F F1(local)2.733 E F0 .233(is used outside a function, an in)2.733 F -.25 -(va)-.4 G(lid).25 E F2(name)3.093 E F0(is)2.913 E(supplied, or)144 492 Q +(va)-.4 G(lid).25 E F2(name)3.092 E F0(is)2.912 E(supplied, or)144 492 Q F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F1(logout)108 508.8 Q F0(Exit a login shell.)9.33 E F1(map\214le)108 525.6 Q F0([)2.5 E F1A F2(count)2.5 E F0 2.5(][)C F1-2.5 E F2(origin)2.5 E F0 @@ -6629,11 +6634,11 @@ E F1A F2(count)2.5 E F0 2.5(][)C F1-2.5 E F2(origin)2.5 E F0 (arr)-2.5 E(ay)-.15 E F0(])A 1.006 (Read lines from the standard input into array v)144 537.6 R(ariable) -.25 E F2(arr)3.506 E(ay)-.15 E F0 3.506(,o).32 G 3.506(rf)-3.506 G -1.006(rom \214le descriptor)-3.506 F F2(fd)3.506 E F0 1.005(if the)3.506 -F F13.505 E F0 1.086(option is supplied.)144 549.6 R 1.086(The v) -6.086 F(ariable)-.25 E F1(MAPFILE)3.586 E F0 1.086(is the def)3.586 F -(ault)-.1 E F2(arr)3.587 E(ay)-.15 E F0 6.087(.O)C 1.087 -(ptions, if supplied, ha)-6.087 F 1.387 -.15(ve t)-.2 H(he).15 E(follo) +1.006(rom \214le descriptor)-3.506 F F2(fd)3.506 E F0 1.006(if the)3.506 +F F13.506 E F0 1.087(option is supplied.)144 549.6 R 1.087(The v) +6.087 F(ariable)-.25 E F1(MAPFILE)3.587 E F0 1.086(is the def)3.587 F +(ault)-.1 E F2(arr)3.586 E(ay)-.15 E F0 6.086(.O)C 1.086 +(ptions, if supplied, ha)-6.086 F 1.386 -.15(ve t)-.2 H(he).15 E(follo) 144 561.6 Q(wing meanings:)-.25 E F1144 573.6 Q F0(Cop)24.74 E 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 585.6 @@ -6654,9 +6659,9 @@ Q F0(Specify the number of lines read between each call to)25.86 E F2 (ault quantum is 5000.)-.1 E(If not supplied with an e)144 679.2 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 696 Q -F0 .996(returns successfully unless an in)3.496 F -.25(va)-.4 G .996 -(lid option or option ar).25 F .995(gument is supplied, or)-.18 F F2 -(arr)3.495 E(ay)-.15 E F0(is)3.495 E(in)144 708 Q -.25(va)-.4 G +F0 .995(returns successfully unless an in)3.495 F -.25(va)-.4 G .996 +(lid option or option ar).25 F .996(gument is supplied, or)-.18 F F2 +(arr)3.496 E(ay)-.15 E F0(is)3.496 E(in)144 708 Q -.25(va)-.4 G (lid or unassignable.).25 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E (56)200.665 E 0 Cg EP %%Page: 57 57 @@ -6666,13 +6671,13 @@ BP /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) -.35 E/F1 10/Times-Bold@0 SF(popd)108 84 Q F0<5bad>2.5 E F1(n)A F0 2.5 (][)C(+)-2.5 E/F2 10/Times-Italic@0 SF(n)A F0 2.5(][)C-2.5 E F2(n)A -F0(])A(Remo)144 96 Q -.15(ve)-.15 G 2.799(se).15 G .299 -(ntries from the directory stack.)-2.799 F -.4(Wi)5.299 G .299(th no ar) -.4 F .299(guments, remo)-.18 F -.15(ve)-.15 G 2.799(st).15 G .3 -(he top directory from the)-2.799 F 1.479(stack, and performs a)144 108 -R F1(cd)3.979 E F0 1.479(to the ne)3.979 F 3.979(wt)-.25 G 1.479 -(op directory)-3.979 F 6.479(.A)-.65 G -.18(rg)-6.479 G 1.478 -(uments, if supplied, ha).18 F 1.778 -.15(ve t)-.2 H 1.478(he follo).15 +F0(])A(Remo)144 96 Q -.15(ve)-.15 G 2.8(se).15 G .3 +(ntries from the directory stack.)-2.8 F -.4(Wi)5.299 G .299(th no ar).4 +F .299(guments, remo)-.18 F -.15(ve)-.15 G 2.799(st).15 G .299 +(he top directory from the)-2.799 F 1.478(stack, and performs a)144 108 +R F1(cd)3.978 E F0 1.479(to the ne)3.978 F 3.979(wt)-.25 G 1.479 +(op directory)-3.979 F 6.479(.A)-.65 G -.18(rg)-6.479 G 1.479 +(uments, if supplied, ha).18 F 1.779 -.15(ve t)-.2 H 1.479(he follo).15 F(wing)-.25 E(meanings:)144 120 Q F1144 132 Q F0 .551 (Suppresses the normal change of directory when remo)24.74 F .551 (ving directories from the stack, so)-.15 F @@ -6683,17 +6688,17 @@ F(wing)-.25 E(meanings:)144 120 Q F1144 132 Q F0 .551 S 2.5(re).15 G(xample:)-2.65 E/F3 10/Courier@0 SF(popd +0)2.5 E F0(remo) 2.5 E -.15(ve)-.15 G 2.5(st).15 G(he \214rst directory)-2.5 E(,)-.65 E F3(popd +1)2.5 E F0(the second.)2.5 E F1144 180 Q F2(n)A F0(Remo) -25.3 E -.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 192 -R(or e)-.15 E(xample:)-.15 E F3(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 F3(popd -1)2.5 E F0 -(the ne)2.5 E(xt to last.)-.15 E .644(If the)144 208.8 R F1(popd)3.144 E -F0 .644(command is successful, a)3.144 F F1(dirs)3.143 E F0 .643 -(is performed as well, and the return status is 0.)3.143 F F1(popd)5.643 -E F0 .415(returns f)144 220.8 R .415(alse if an in)-.1 F -.25(va)-.4 G -.415(lid option is encountered, the directory stack is empty).25 F 2.916 -(,an)-.65 G(on-e)-2.916 E .416(xistent direc-)-.15 F +25.3 E -.15(ve)-.15 G 3.76(st).15 G(he)-3.76 E F2(n)3.76 E F0 1.259 +(th entry counting from the right of the list sho)B 1.259(wn by)-.25 F +F1(dirs)3.759 E F0 3.759(,s)C 1.259(tarting with)-3.759 F 2.5(zero. F) +180 192 R(or e)-.15 E(xample:)-.15 E F3(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 F3(popd -1)2.5 +E F0(the ne)2.5 E(xt to last.)-.15 E .643(If the)144 208.8 R F1(popd) +3.143 E F0 .643(command is successful, a)3.143 F F1(dirs)3.143 E F0 .644 +(is performed as well, and the return status is 0.)3.143 F F1(popd)5.644 +E F0 .416(returns f)144 220.8 R .416(alse if an in)-.1 F -.25(va)-.4 G +.415(lid option is encountered, the directory stack is empty).25 F 2.915 +(,an)-.65 G(on-e)-2.915 E .415(xistent direc-)-.15 F (tory stack entry is speci\214ed, or the directory change f)144 232.8 Q (ails.)-.1 E F1(printf)108 249.6 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 .372 @@ -6701,53 +6706,53 @@ E F0 .415(returns f)144 220.8 R .415(alse if an in)-.1 F -.25(va)-.4 G (to the standard output under the control of the)2.872 F F2(format)2.872 E F0 5.372(.T)C(he)-5.372 E F2(format)2.872 E F0 1.804(is a character s\ tring which contains three types of objects: plain characters, which ar\ -e simply)144 273.6 R .159 +e simply)144 273.6 R .158 (copied to standard output, character escape sequences, which are con) -144 285.6 R -.15(ve)-.4 G .158(rted and copied to the stan-).15 F .499(\ +144 285.6 R -.15(ve)-.4 G .159(rted and copied to the stan-).15 F .499(\ dard output, and format speci\214cations, each of which causes printing\ - of the ne)144 297.6 R .5(xt successi)-.15 F -.15(ve)-.25 G F2(ar)3.15 E -(gu-)-.37 E(ment)144 309.6 Q F0 5.424(.I)C 2.924(na)-5.424 G .424 -(ddition to the standard)-2.924 F F2(printf)2.924 E F0 .424 -(\(1\) formats,)B F1(%b)2.924 E F0(causes)2.923 E F1(printf)2.923 E F0 -.423(to e)2.923 F .423(xpand backslash escape)-.15 F .976 + of the ne)144 297.6 R .499(xt successi)-.15 F -.15(ve)-.25 G F2(ar) +3.149 E(gu-)-.37 E(ment)144 309.6 Q F0 5.423(.I)C 2.923(na)-5.423 G .423 +(ddition to the standard)-2.923 F F2(printf)2.923 E F0 .424 +(\(1\) formats,)B F1(%b)2.924 E F0(causes)2.924 E F1(printf)2.924 E F0 +.424(to e)2.924 F .424(xpand backslash escape)-.15 F .977 (sequences in the corresponding)144 321.6 R F2(ar)3.476 E(gument)-.37 E F0(\(e)3.476 E .976(xcept that)-.15 F F1(\\c)3.476 E F0 .976 -(terminates output, backslashes in)3.476 F F1<5c08>3.477 E F0(,)A F1 -(\\")3.477 E F0(,)A(and)144 333.6 Q F1(\\?)3.422 E F0 .922(are not remo) -3.422 F -.15(ve)-.15 G .922(d, and octal escapes be).15 F .922 -(ginning with)-.15 F F1(\\0)3.422 E F0 .921 +(terminates output, backslashes in)3.476 F F1<5c08>3.476 E F0(,)A F1 +(\\")3.476 E F0(,)A(and)144 333.6 Q F1(\\?)3.421 E F0 .921(are not remo) +3.421 F -.15(ve)-.15 G .922(d, and octal escapes be).15 F .922 +(ginning with)-.15 F F1(\\0)3.422 E F0 .922 (may contain up to four digits\), and)3.422 F F1(%q)144 345.6 Q F0 -(causes)3.63 E F1(printf)3.63 E F0 1.13(to output the corresponding)3.63 -F F2(ar)3.631 E(gument)-.37 E F0 1.131 +(causes)3.631 E F1(printf)3.631 E F0 1.131(to output the corresponding) +3.631 F F2(ar)3.631 E(gument)-.37 E F0 1.13 (in a format that can be reused as shell)3.631 F(input.)144 357.6 Q(The) -144 381.6 Q F12.904 E F0 .404 -(option causes the output to be assigned to the v)2.904 F(ariable)-.25 E +144 381.6 Q F12.903 E F0 .404 +(option causes the output to be assigned to the v)2.903 F(ariable)-.25 E F2(var)2.904 E F0 .404(rather than being printed to the)2.904 F -(standard output.)144 393.6 Q(The)144 417.6 Q F2(format)3.423 E F0 .923 -(is reused as necessary to consume all of the)3.423 F F2(ar)3.423 E +(standard output.)144 393.6 Q(The)144 417.6 Q F2(format)3.424 E F0 .923 +(is reused as necessary to consume all of the)3.424 F F2(ar)3.423 E (guments)-.37 E F0 5.923(.I)C 3.423(ft)-5.923 G(he)-3.423 E F2(format) -3.423 E F0 .924(requires more)3.424 F F2(ar)144 429.6 Q(guments)-.37 E -F0 .033(than are supplied, the e)2.534 F .033 +3.423 E F0 .923(requires more)3.423 F F2(ar)144 429.6 Q(guments)-.37 E +F0 .033(than are supplied, the e)2.533 F .033 (xtra format speci\214cations beha)-.15 F .333 -.15(ve a)-.2 H 2.533(si) -.15 G 2.533(faz)-2.533 G .033(ero v)-2.533 F .033(alue or null string,) +.15 G 2.533(faz)-2.533 G .033(ero v)-2.533 F .034(alue or null string,) -.25 F(as appropriate, had been supplied.)144 441.6 Q(The return v)5 E (alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E F1(pushd) 108 458.4 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 470.4 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 482.4 R 3.14(wt) --.25 G .64(op of the)-3.14 F 1.316(stack the current w)144 494.4 R 1.316 -(orking directory)-.1 F 6.316(.W)-.65 G 1.315(ith no ar)-6.716 F 1.315 -(guments, e)-.18 F 1.315(xchanges the top tw)-.15 F 3.815(od)-.1 G 1.315 -(irectories and)-3.815 F .871 +2.5(][)C F2(dir)-2.5 E F0(])A .64(Adds a directory to the top of the di\ +rectory stack, or rotates the stack, making the ne)144 482.4 R 3.139(wt) +-.25 G .639(op of the)-3.139 F 1.315(stack the current w)144 494.4 R +1.315(orking directory)-.1 F 6.315(.W)-.65 G 1.315(ith no ar)-6.715 F +1.315(guments, e)-.18 F 1.316(xchanges the top tw)-.15 F 3.816(od)-.1 G +1.316(irectories and)-3.816 F .872 (returns 0, unless the directory stack is empty)144 506.4 R 5.871(.A) --.65 G -.18(rg)-5.871 G .872(uments, if supplied, ha).18 F 1.172 -.15 -(ve t)-.2 H .872(he follo).15 F .872(wing mean-)-.25 F(ings:)144 518.4 Q +-.65 G -.18(rg)-5.871 G .871(uments, if supplied, ha).18 F 1.171 -.15 +(ve t)-.2 H .871(he follo).15 F .871(wing mean-)-.25 F(ings:)144 518.4 Q F1144 530.4 Q F0 .902(Suppresses the normal change of directory w\ hen adding directories to the stack, so that)24.74 F (only the stack is manipulated.)180 542.4 Q F1(+)144 554.4 Q F2(n)A F0 -1.267(Rotates the stack so that the)25.3 F F2(n)3.767 E F0 1.268 -(th directory \(counting from the left of the list sho)B 1.268(wn by) +1.268(Rotates the stack so that the)25.3 F 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 566.4 Q F0 2.5(,s)C (tarting with zero\) is at the top.)-2.5 E F1144 578.4 Q F2(n)A F0 .92(Rotates the stack so that the)25.3 F F2(n)3.42 E F0 .92 @@ -6755,26 +6760,26 @@ hen adding directories to the stack, so that)24.74 F F F1(dirs)180 590.4 Q F0 2.5(,s)C(tarting with zero\) is at the top.) -2.5 E F2(dir)144.35 602.4 Q F0(Adds)23.98 E F2(dir)2.85 E F0 (to the directory stack at the top, making it the ne)3.23 E 2.5(wc)-.25 -G(urrent w)-2.5 E(orking directory)-.1 E(.)-.65 E .488(If the)144 619.2 -R F1(pushd)2.988 E F0 .488(command is successful, a)2.988 F F1(dirs) -2.988 E F0 .488(is performed as well.)2.988 F .489 -(If the \214rst form is used,)5.488 F F1(pushd)2.989 E F0 1.04 -(returns 0 unless the cd to)144 631.2 R F2(dir)3.89 E F0 -.1(fa)4.27 G -3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F1(pushd)3.539 E F0 -1.039(returns 0 unless the directory)3.539 F .846(stack is empty)144 -643.2 R 3.346(,an)-.65 G(on-e)-3.346 E .847(xistent directory stack ele\ -ment is speci\214ed, or the directory change to the)-.15 F -(speci\214ed ne)144 655.2 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E -(ails.)-.1 E F1(pwd)108 672 Q F0([)2.5 E F1(\255LP)A F0(])A .845 +G(urrent w)-2.5 E(orking directory)-.1 E(.)-.65 E .489(If the)144 619.2 +R F1(pushd)2.989 E F0 .489(command is successful, a)2.989 F F1(dirs) +2.988 E F0 .488(is performed as well.)2.988 F .488 +(If the \214rst form is used,)5.488 F F1(pushd)2.988 E F0 1.039 +(returns 0 unless the cd to)144 631.2 R F2(dir)3.889 E F0 -.1(fa)4.269 G +3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F1(pushd)3.54 E F0 +1.04(returns 0 unless the directory)3.54 F .847(stack is empty)144 643.2 +R 3.347(,an)-.65 G(on-e)-3.347 E .847(xistent directory stack element i\ +s speci\214ed, or the directory change to the)-.15 F(speci\214ed ne)144 +655.2 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E(ails.)-.1 E F1(pwd)108 +672 Q F0([)2.5 E F1(\255LP)A F0(])A .844 (Print the absolute pathname of the current w)144 684 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 +(orking directory)-.1 F 5.845(.T)-.65 G .845 +(he pathname printed contains no)-5.845 F .182(symbolic links if the)144 696 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 708 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 1.36(status is 0 unless an error occurs while\ +2.681 E F0 -.2(bu)2.681 G .181(iltin command is).2 F 3.263(enabled. If) +144 708 R(the)3.263 E F13.263 E F0 .763 +(option is used, the pathname printed may contain symbolic links.)3.263 +F .764(The return)5.764 F 1.36(status is 0 unless an error occurs while\ reading the name of the current directory or an in)144 720 R -.25(va) -.4 G(lid).25 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(57)200.665 E 0 Cg EP @@ -6791,62 +6796,62 @@ E F2(nc)2.5 E(har)-.15 E(s)-.1 E F0 2.5(][)C F1-2.5 E F2(pr)2.5 E (ompt)-.45 E F0 2.5(][)C F1-2.5 E F2(timeout)2.5 E F0 2.5(][)C F1 -2.5 E F2(fd)2.5 E F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .516(\ One line is read from the standard input, or from the \214le descriptor) -144 112.8 R F2(fd)3.016 E F0 .516(supplied as an ar)3.016 F .516 -(gument to)-.18 F(the)144 124.8 Q F12.538 E F0 .038 -(option, and the \214rst w)2.538 F .038(ord is assigned to the \214rst) --.1 F F2(name)2.539 E F0 2.539(,t).18 G .039(he second w)-2.539 F .039 -(ord to the second)-.1 F F2(name)2.539 E F0(,).18 E .42 +144 112.8 R F2(fd)3.016 E F0 .516(supplied as an ar)3.016 F .517 +(gument to)-.18 F(the)144 124.8 Q F12.539 E F0 .039 +(option, and the \214rst w)2.539 F .038(ord is assigned to the \214rst) +-.1 F F2(name)2.538 E F0 2.538(,t).18 G .038(he second w)-2.538 F .038 +(ord to the second)-.1 F F2(name)2.538 E F0(,).18 E .42 (and so on, with lefto)144 136.8 R -.15(ve)-.15 G 2.92(rw).15 G .42 (ords and their interv)-3.02 F .42 (ening separators assigned to the last)-.15 F F2(name)2.92 E F0 5.42(.I) -.18 G 2.92(ft)-5.42 G(here)-2.92 E .54(are fe)144 148.8 R .54(wer w)-.25 -F .541(ords read from the input stream than names, the remaining names \ -are assigned empty)-.1 F -.25(va)144 160.8 S 2.511(lues. The).25 F .011 -(characters in)2.511 F/F3 9/Times-Bold@0 SF(IFS)2.511 E F0 .011 +.18 G 2.92(ft)-5.42 G(here)-2.92 E .541(are fe)144 148.8 R .541(wer w) +-.25 F .541(ords read from the input stream than names, the remaining n\ +ames are assigned empty)-.1 F -.25(va)144 160.8 S 2.51(lues. The).25 F +.011(characters in)2.511 F/F3 9/Times-Bold@0 SF(IFS)2.511 E F0 .011 (are used to split the line into w)2.261 F 2.511(ords. The)-.1 F .011 -(backslash character \()2.511 F F1(\\)A F0 2.51(\)m)C(ay)-2.51 E 1.89 -(be used to remo)144 172.8 R 2.19 -.15(ve a)-.15 H 2.19 -.15(ny s).15 H -1.891(pecial meaning for the ne).15 F 1.891 +(backslash character \()2.511 F F1(\\)A F0 2.511(\)m)C(ay)-2.511 E 1.891 +(be used to remo)144 172.8 R 2.191 -.15(ve a)-.15 H 2.191 -.15(ny s).15 +H 1.891(pecial meaning for the ne).15 F 1.89 (xt character read and for line continuation.)-.15 F (Options, if supplied, ha)144 184.8 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 196.8 Q F2(aname)2.5 E F0 1.05(The w) -180 208.8 R 1.049 +(wing meanings:)-.25 E F1144 196.8 Q F2(aname)2.5 E F0 1.049 +(The w)180 208.8 R 1.049 (ords are assigned to sequential indices of the array v)-.1 F(ariable) --.25 E F2(aname)3.549 E F0 3.549(,s).18 G 1.049(tarting at 0.)-3.549 F -F2(aname)180.33 220.8 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 232.8 Q F2(delim)2.5 E -F0(The \214rst character of)180 244.8 Q F2(delim)2.5 E F0 +-.25 E F2(aname)3.55 E F0 3.55(,s).18 G 1.05(tarting at 0.)-3.55 F F2 +(aname)180.33 220.8 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 232.8 Q F2(delim)2.5 E F0 +(The \214rst character of)180 244.8 Q F2(delim)2.5 E F0 (is used to terminate the input line, rather than ne)2.5 E(wline.)-.25 E -F1144 256.8 Q F0 .372 +F1144 256.8 Q F0 .373 (If the standard input is coming from a terminal,)25.86 F 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 +2.873 G(adline).18 E F0(\(see)2.873 E F3(READLINE)2.872 E F0(abo)2.622 E +-.15(ve)-.15 G 2.872(\)i).15 G 2.872(su)-2.872 G(sed)-2.872 E (to obtain the line.)180 268.8 Q F1144 280.8 Q F2(te)2.5 E(xt)-.2 -E F0(If)10.78 E F1 -.18(re)2.716 G(adline).18 E F0 .216 -(is being used to read the line,)2.716 F F2(te)2.716 E(xt)-.2 E F0 .216 -(is placed into the editing b)2.716 F(uf)-.2 E .215(fer before edit-) +E F0(If)10.78 E 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 292.8 Q(gins.)-.15 E F1144 304.8 Q F2(nc)2.5 E -(har)-.15 E(s)-.1 E F1 -.18(re)180 316.8 S(ad).18 E F0 1.394 -(returns after reading)3.894 F F2(nc)3.894 E(har)-.15 E(s)-.1 E F0 1.395 -(characters rather than w)3.894 F 1.395(aiting for a complete line of) +(har)-.15 E(s)-.1 E F1 -.18(re)180 316.8 S(ad).18 E F0 1.395 +(returns after reading)3.895 F F2(nc)3.895 E(har)-.15 E(s)-.1 E F0 1.395 +(characters rather than w)3.895 F 1.394(aiting for a complete line of) -.1 F(input.)180 328.8 Q F1144 340.8 Q F2(pr)2.5 E(ompt)-.45 E F0 -(Display)180 352.8 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) +(Display)180 352.8 Q F2(pr)3.66 E(ompt)-.45 E F0 1.161 +(on standard error)3.66 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 364.8 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 376.8 Q F0 .543(Backslash does not act as an escape character) -25.86 F 5.543(.T)-.55 G .544(he backslash is considered to be part of) +144 376.8 Q F0 .544(Backslash does not act as an escape character) +25.86 F 5.543(.T)-.55 G .543(he backslash is considered to be part of) -5.543 F(the line.)180 388.8 Q(In particular)5 E 2.5(,ab)-.4 G (ackslash-ne)-2.5 E(wline pair may not be used as a line continuation.) -.25 E F1144 400.8 Q F0(Silent mode.)26.41 E (If input is coming from a terminal, characters are not echoed.)5 E F1 -144 412.8 Q F2(timeout)2.5 E F0(Cause)180 424.8 Q F1 -.18(re)3.549 -G(ad).18 E F0 1.048(to time out and return f)3.549 F 1.048 +144 412.8 Q F2(timeout)2.5 E F0(Cause)180 424.8 Q F1 -.18(re)3.548 +G(ad).18 E F0 1.048(to time out and return f)3.548 F 1.048 (ailure if a complete line of input is not read within)-.1 F F2(timeout) -180 436.8 Q F0(seconds.)3.496 E F2(timeout)5.996 E F0 .997 -(may be a decimal number with a fractional portion follo)3.496 F(wing) +180 436.8 Q F0(seconds.)3.497 E F2(timeout)5.997 E F0 .997 +(may be a decimal number with a fractional portion follo)3.497 F(wing) -.25 E .576(the decimal point.)180 448.8 R .576(This option is only ef) 5.576 F(fecti)-.25 E .876 -.15(ve i)-.25 H(f).15 E F1 -.18(re)3.076 G (ad).18 E F0 .576(is reading input from a terminal,)3.076 F .16 @@ -6854,14 +6859,14 @@ G(ad).18 E F0 1.048(to time out and return f)3.549 F 1.048 (fect when reading from re)-.25 F .16(gular \214les.)-.15 F .16(The e) 5.16 F .16(xit status)-.15 F(is greater than 128 if the timeout is e)180 472.8 Q(xceeded.)-.15 E F1144 484.8 Q F2(fd)2.5 E F0 -(Read input from \214le descriptor)14.46 E F2(fd)2.5 E F0(.)A .192 -(If no)144 501.6 R F2(names)3.052 E F0 .192 -(are supplied, the line read is assigned to the v)2.962 F(ariable)-.25 E -F3(REPL)2.691 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A F0 .191 -(The return code is zero,)4.691 F 1.343 -(unless end-of-\214le is encountered,)144 513.6 R F1 -.18(re)3.843 G(ad) +(Read input from \214le descriptor)14.46 E F2(fd)2.5 E F0(.)A .191 +(If no)144 501.6 R F2(names)3.051 E F0 .191 +(are supplied, the line read is assigned to the v)2.961 F(ariable)-.25 E +F3(REPL)2.692 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A F0 .192 +(The return code is zero,)4.692 F 1.344 +(unless end-of-\214le is encountered,)144 513.6 R F1 -.18(re)3.844 G(ad) .18 E F0 1.343 -(times out \(in which case the return code is greater than)3.843 F +(times out \(in which case the return code is greater than)3.844 F (128\), or an in)144 525.6 Q -.25(va)-.4 G (lid \214le descriptor is supplied as the ar).25 E(gument to)-.18 E F1 2.5 E F0(.)A F1 -.18(re)108 542.4 S(adonly).18 E F0([)2.5 E F1 @@ -6869,47 +6874,47 @@ F3(REPL)2.691 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A F0 .191 F0 2.5(].)C(..])-2.5 E .77(The gi)144 554.4 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.096(quent assignment.)144 566.4 R -1.096(If the)6.096 F F13.596 E F0 1.097 -(option is supplied, the functions corresponding to the)3.596 F F2 -(names)3.597 E F0 1.097(are so)3.597 F(mark)144 578.4 Q 3.334(ed. The) +(may not be changed by subse-)3.54 F 1.097(quent assignment.)144 566.4 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 578.4 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 .537(ables to associati)144 590.4 R .837 -.15(ve a)-.25 H 3.037 +-.25 E .538(ables to associati)144 590.4 R .838 -.15(ve a)-.25 H 3.038 (rrays. If).15 F(no)3.038 E F2(name)3.398 E F0(ar)3.218 E .538 (guments are gi)-.18 F -.15(ve)-.25 G .538(n, or if the).15 F F1 -3.038 E F0 .538(option is supplied, a list)3.038 F .081 -(of all readonly names is printed.)144 602.4 R(The)5.081 E F12.581 -E F0 .08(option causes output to be displayed in a format that may)2.581 -F 1.176(be reused as input.)144 614.4 R 1.176(If a v)6.176 F 1.176 +3.038 E F0 .537(option is supplied, a list)3.038 F .08 +(of all readonly names is printed.)144 602.4 R(The)5.08 E F12.58 E +F0 .081(option causes output to be displayed in a format that may)2.58 F +1.177(be reused as input.)144 614.4 R 1.177(If a v)6.177 F 1.176 (ariable name is follo)-.25 F 1.176(wed by =)-.25 F F2(wor)A(d)-.37 E F0 -3.676(,t)C 1.176(he v)-3.676 F 1.177(alue of the v)-.25 F 1.177 -(ariable is set to)-.25 F F2(wor)144 626.4 Q(d)-.37 E F0 6.206(.T)C -1.206(he return status is 0 unless an in)-6.206 F -.25(va)-.4 G 1.205 -(lid option is encountered, one of the).25 F F2(names)4.065 E F0 1.205 -(is not a)3.975 F -.25(va)144 638.4 S(lid shell v).25 E +3.676(,t)C 1.176(he v)-3.676 F 1.176(alue of the v)-.25 F 1.176 +(ariable is set to)-.25 F F2(wor)144 626.4 Q(d)-.37 E F0 6.205(.T)C +1.205(he return status is 0 unless an in)-6.205 F -.25(va)-.4 G 1.206 +(lid option is encountered, one of the).25 F F2(names)4.066 E F0 1.206 +(is not a)3.976 F -.25(va)144 638.4 S(lid shell v).25 E (ariable name, or)-.25 E F12.5 E F0(is supplied with a)2.5 E F2 (name)2.86 E F0(that is not a function.)2.68 E F1 -.18(re)108 655.2 S -(tur).18 E(n)-.15 E F0([)2.5 E F2(n)A F0(])A .586 +(tur).18 E(n)-.15 E F0([)2.5 E F2(n)A F0(])A .587 (Causes a function to e)144 667.2 R .587(xit with the return v)-.15 F .587(alue speci\214ed by)-.25 F F2(n)3.087 E F0 5.587(.I).24 G(f)-5.587 -E F2(n)3.447 E F0 .587(is omitted, the return status is)3.327 F 1.335 +E F2(n)3.447 E F0 .586(is omitted, the return status is)3.327 F 1.335 (that of the last command e)144 679.2 R -.15(xe)-.15 G 1.335 (cuted in the function body).15 F 6.335(.I)-.65 G 3.835(fu)-6.335 G 1.335(sed outside a function, b)-3.835 F 1.335(ut during)-.2 F -.15(exe) 144 691.2 S .794(cution of a script by the).15 F F1(.)3.294 E F0(\() 5.794 E F1(sour)A(ce)-.18 E F0 3.294(\)c)C .794 -(ommand, it causes the shell to stop e)-3.294 F -.15(xe)-.15 G .795 -(cuting that script).15 F .246(and return either)144 703.2 R F2(n)3.106 -E F0 .246(or the e)2.986 F .246(xit status of the last command e)-.15 F --.15(xe)-.15 G .246(cuted within the script as the e).15 F .245 -(xit sta-)-.15 F .081(tus of the script.)144 715.2 R .082 +(ommand, it causes the shell to stop e)-3.294 F -.15(xe)-.15 G .794 +(cuting that script).15 F .245(and return either)144 703.2 R F2(n)3.105 +E F0 .246(or the e)2.985 F .246(xit status of the last command e)-.15 F +-.15(xe)-.15 G .246(cuted within the script as the e).15 F .246 +(xit sta-)-.15 F .082(tus of the script.)144 715.2 R .082 (If used outside a function and not during e)5.082 F -.15(xe)-.15 G .082 -(cution of a script by).15 F F1(.)2.582 E F0 2.582(,t).833 G .082 -(he return sta-)-2.582 F 2.306(tus is f)144 727.2 R 4.806(alse. An)-.1 F -4.806(yc)-.15 G 2.305(ommand associated with the)-4.806 F F1(RETURN) -4.805 E F0 2.305(trap is e)4.805 F -.15(xe)-.15 G 2.305(cuted before e) +(cution of a script by).15 F F1(.)2.582 E F0 2.581(,t).833 G .081 +(he return sta-)-2.581 F 2.305(tus is f)144 727.2 R 4.805(alse. An)-.1 F +4.805(yc)-.15 G 2.305(ommand associated with the)-4.805 F F1(RETURN) +4.805 E F0 2.306(trap is e)4.806 F -.15(xe)-.15 G 2.306(cuted before e) .15 F -.15(xe)-.15 G(cution).15 E(GNU Bash-4.0)72 768 Q(2008 July 6) 150.675 E(58)200.665 E 0 Cg EP %%Page: 59 59 @@ -6922,70 +6927,71 @@ SF(set)108 100.8 Q F0([)2.5 E F1(\255\255abefhkmnptuvxBCEHPT)A F0 2.5 (][)C F1-2.5 E/F2 10/Times-Italic@0 SF(option)2.5 E F0 2.5(][)C F2 (ar)-2.5 E(g)-.37 E F0(...])2.5 E F1(set)108 112.8 Q F0([)2.5 E F1 (+abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1(+o)-2.5 E F2(option)2.5 E F0 2.5 -(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E -.4(Wi)144 124.8 S .835 +(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E -.4(Wi)144 124.8 S .836 (thout options, the name and v).4 F .835(alue of each shell v)-.25 F -.836(ariable are displayed in a format that can be)-.25 F .784 +.835(ariable are displayed in a format that can be)-.25 F .784 (reused as input for setting or resetting the currently-set v)144 136.8 -R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .783 -(riables cannot be).25 F 2.946(reset. In)144 148.8 R F2 .447(posix mode) -2.946 F F0 2.947(,o)C .447(nly shell v)-2.947 F .447 +R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .784 +(riables cannot be).25 F 2.947(reset. In)144 148.8 R F2 .447(posix mode) +2.947 F F0 2.947(,o)C .447(nly shell v)-2.947 F .447 (ariables are listed.)-.25 F .447 -(The output is sorted according to the current)5.447 F 3.531 -(locale. When)144 160.8 R 1.031(options are speci\214ed, the)3.531 F -3.531(ys)-.15 G 1.031(et or unset shell attrib)-3.531 F 3.53(utes. An) --.2 F 3.53(ya)-.15 G -.18(rg)-3.53 G 1.03(uments remaining).18 F .202 +(The output is sorted according to the current)5.447 F 3.53 +(locale. When)144 160.8 R 1.031(options are speci\214ed, the)3.53 F +3.531(ys)-.15 G 1.031(et or unset shell attrib)-3.531 F 3.531(utes. An) +-.2 F 3.531(ya)-.15 G -.18(rg)-3.531 G 1.031(uments remaining).18 F .202 (after the options are processed are treated as v)144 172.8 R .202 (alues for the positional parameters and are assigned,)-.25 F(in order) 144 184.8 Q 2.5(,t)-.4 G(o)-2.5 E F1($1)2.5 E F0(,)A F1($2)2.5 E 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 196.8 Q -F0 .54(Automatically mark v)29.3 F .539 -(ariables and functions which are modi\214ed or created for e)-.25 F -.539(xport to)-.15 F(the en)184 208.8 Q -(vironment of subsequent commands.)-.4 E F1144 220.8 Q F0 .131 +F0 .539(Automatically mark v)29.3 F .539 +(ariables and functions which are modi\214ed or created for e)-.25 F .54 +(xport to)-.15 F(the en)184 208.8 Q(vironment of subsequent commands.) +-.4 E F1144 220.8 Q F0 .132 (Report the status of terminated background jobs immediately)28.74 F -2.632(,r)-.65 G .132(ather than before the ne)-2.632 F(xt)-.15 E +2.632(,r)-.65 G .131(ather than before the ne)-2.632 F(xt)-.15 E (primary prompt.)184 232.8 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o) -.25 H(nly when job control is enabled.).15 E F1144 244.8 Q F0 -1.694(Exit immediately if a)29.86 F F2 1.693(simple command)4.193 F F0 +1.693(Exit immediately if a)29.86 F F2 1.693(simple command)4.193 F F0 (\(see)4.193 E/F3 9/Times-Bold@0 SF 1.693(SHELL GRAMMAR)4.193 F F0(abo) -3.943 E -.15(ve)-.15 G 4.193(\)e).15 G 1.693(xits with a)-4.343 F .011 -(non-zero status.)184 256.8 R .011(The shell does not e)5.011 F .011 -(xit if the command that f)-.15 F .012(ails is part of the command)-.1 F -.719(list immediately follo)184 268.8 R .719(wing a)-.25 F F1(while) -3.219 E F0(or)3.219 E F1(until)3.219 E F0 -.1(ke)3.219 G(yw)-.05 E .719 -(ord, part of the test in an)-.1 F F1(if)3.218 E F0(statement,)3.218 E -.378(part of a command e)184 280.8 R -.15(xe)-.15 G .379(cuted in a).15 +3.943 E -.15(ve)-.15 G 4.194(\)e).15 G 1.694(xits with a)-4.344 F .012 +(non-zero status.)184 256.8 R .012(The shell does not e)5.012 F .011 +(xit if the command that f)-.15 F .011(ails is part of the command)-.1 F +.718(list immediately follo)184 268.8 R .718(wing a)-.25 F F1(while) +3.218 E F0(or)3.218 E F1(until)3.219 E F0 -.1(ke)3.219 G(yw)-.05 E .719 +(ord, part of the test in an)-.1 F F1(if)3.219 E F0(statement,)3.219 E +.379(part of a command e)184 280.8 R -.15(xe)-.15 G .379(cuted in a).15 F F1(&&)2.879 E F0(or)2.879 E/F4 10/Symbol SF2.879 E F0 .379 (list, an)2.879 F 2.879(yc)-.15 G .379(ommand in a pipeline b)-2.879 F -.379(ut the last,)-.2 F .578(or if the command')184 292.8 R 3.078(sr) +.378(ut the last,)-.2 F .577(or if the command')184 292.8 R 3.078(sr) -.55 G .578(eturn v)-3.078 F .578(alue is being in)-.25 F -.15(ve)-.4 G -.578(rted via).15 F F1(!)3.078 E F0 5.578(.F)C .577 +.578(rted via).15 F F1(!)3.078 E F0 5.578(.F)C .578 (ailing simple commands that)-5.728 F .402(are part of shell functions \ or command lists enclosed in braces or parentheses satisfying)184 304.8 -R .841(the abo)184 316.8 R 1.141 -.15(ve c)-.15 H .841 -(onditions do not cause the shell to e).15 F 3.341(xit. A)-.15 F .84 -(trap on)3.34 F F1(ERR)3.34 E F0 3.34(,i)C 3.34(fs)-3.34 G .84(et, is e) --3.34 F -.15(xe)-.15 G(cuted).15 E(before the shell e)184 328.8 Q(xits.) --.15 E F1144 340.8 Q F0(Disable pathname e)30.97 E(xpansion.)-.15 -E F1144 352.8 Q F0 2.238(Remember the location of commands as the) -28.74 F 4.738(ya)-.15 G 2.239(re look)-4.738 F 2.239(ed up for e)-.1 F --.15(xe)-.15 G 4.739(cution. This).15 F(is)4.739 E(enabled by def)184 -364.8 Q(ault.)-.1 E F1144 376.8 Q F0 .514(All ar)28.74 F .514 +R .84(the abo)184 316.8 R 1.14 -.15(ve c)-.15 H .84 +(onditions do not cause the shell to e).15 F 3.341(xit. A)-.15 F .841 +(trap on)3.341 F F1(ERR)3.341 E F0 3.341(,i)C 3.341(fs)-3.341 G .841 +(et, is e)-3.341 F -.15(xe)-.15 G(cuted).15 E(before the shell e)184 +328.8 Q(xits.)-.15 E F1144 340.8 Q F0(Disable pathname e)30.97 E +(xpansion.)-.15 E F1144 352.8 Q F0 2.239 +(Remember the location of commands as the)28.74 F 4.738(ya)-.15 G 2.238 +(re look)-4.738 F 2.238(ed up for e)-.1 F -.15(xe)-.15 G 4.738 +(cution. This).15 F(is)4.738 E(enabled by def)184 364.8 Q(ault.)-.1 E F1 +144 376.8 Q F0 .513(All ar)28.74 F .514 (guments in the form of assignment statements are placed in the en)-.18 -F .513(vironment for a)-.4 F +F .514(vironment for a)-.4 F (command, not just those that precede the command name.)184 388.8 Q F1 -144 400.8 Q F0 .148(Monitor mode.)25.97 F .148 -(Job control is enabled.)5.148 F .149(This option is on by def)5.148 F -.149(ault for interacti)-.1 F .449 -.15(ve s)-.25 H(hells).15 E .637 +144 400.8 Q F0 .149(Monitor mode.)25.97 F .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 .636 (on systems that support it \(see)184 412.8 R F3 .636(JOB CONTR)3.136 F -(OL)-.27 E F0(abo)2.886 E -.15(ve)-.15 G 3.136(\). Background).15 F .636 -(processes run in a)3.136 F .641 -(separate process group and a line containing their e)184 424.8 R .642 +(OL)-.27 E F0(abo)2.886 E -.15(ve)-.15 G 3.136(\). Background).15 F .637 +(processes run in a)3.136 F .642 +(separate process group and a line containing their e)184 424.8 R .641 (xit status is printed upon their com-)-.15 F(pletion.)184 436.8 Q F1 -144 448.8 Q F0 .653(Read commands b)28.74 F .653(ut do not e)-.2 F --.15(xe)-.15 G .653(cute them.).15 F .652 -(This may be used to check a shell script for)5.653 F(syntax errors.)184 +144 448.8 Q F0 .652(Read commands b)28.74 F .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 460.8 Q(This is ignored by interacti)5 E .3 -.15(ve s)-.25 H(hells.).15 E F1144 472.8 Q F2(option\255name)2.5 E F0(The)184 484.8 Q F2 (option\255name)2.5 E F0(can be one of the follo)2.5 E(wing:)-.25 E F1 @@ -7001,14 +7007,14 @@ F12.5 E F0(.)A F1(functrace)184 592.8 Q F0(Same as)224 604.8 Q F1 2.5 E F0(.)A F1(err)184 616.8 Q(exit)-.18 E F0(Same as)11.31 E F1 2.5 E F0(.)A F1(hashall)184 628.8 Q F0(Same as)9.43 E F12.5 E F0(.)A F1(histexpand)184 640.8 Q F0(Same as)224 652.8 Q F12.5 E -F0(.)A F1(history)184 664.8 Q F0 .586(Enable command history)10 F 3.087 +F0(.)A F1(history)184 664.8 Q F0 .587(Enable command history)10 F 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 F3(HIST)3.087 E(OR)-.162 E(Y)-.315 E/F5 9 /Times-Roman@0 SF(.)A F0 .587(This option is)5.087 F(on by def)224 676.8 Q(ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184 -688.8 Q(eeof)-.18 E F0 1.657(The ef)224 700.8 R 1.657 +688.8 Q(eeof)-.18 E F0 1.656(The ef)224 700.8 R 1.656 (fect is as if the shell command)-.25 F/F6 10/Courier@0 SF(IGNOREEOF=10) -4.156 E F0 1.656(had been e)4.156 F -.15(xe)-.15 G(cuted).15 E(\(see)224 +4.157 E F0 1.657(had been e)4.157 F -.15(xe)-.15 G(cuted).15 E(\(see)224 712.8 Q F1(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G (\).).15 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(59)200.665 E 0 Cg EP @@ -7026,14 +7032,14 @@ F0(.)A F1(nolog)5 E F0(Currently ignored.)2.5 E F1(notify)184 168 Q F0 (Same as)15 E F12.5 E F0(.)A F1(nounset)184 180 Q F0(Same as)6.66 E F12.5 E F0(.)A F1(onecmd)184 192 Q F0(Same as)6.67 E F12.5 E F0(.)A F1(ph)184 204 Q(ysical)-.15 E F0(Same as)5.14 E F12.5 E -F0(.)A F1(pipefail)184 216 Q F0 1.029(If set, the return v)7.77 F 1.029 -(alue of a pipeline is the v)-.25 F 1.03 -(alue of the last \(rightmost\) com-)-.25 F 1.137(mand to e)224 228 R +F0(.)A F1(pipefail)184 216 Q F0 1.03(If set, the return v)7.77 F 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 228 R 1.136 (xit with a non-zero status, or zero if all commands in the pipeline) -.15 F -.15(ex)224 240 S(it successfully).15 E 5(.T)-.65 G (his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 252 Q F0 -2.09(Change the beha)17.77 F 2.091(vior of)-.2 F F1(bash)4.591 E F0 +2.091(Change the beha)17.77 F 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(POSIX standard to match the standard \()224 264 Q /F2 10/Times-Italic@0 SF(posix mode)A F0(\).)A F1(pri)184 276 Q(vileged) @@ -7041,37 +7047,37 @@ F0(.)A F1(pipefail)184 216 Q F0 1.029(If set, the return v)7.77 F 1.029 (rbose).1 E F0(Same as)7.33 E F12.5 E F0(.)A F1(vi)184 312 Q F0 (Use a vi-style command line editing interf)32.22 E(ace.)-.1 E F1 (xtrace)184 324 Q F0(Same as)13.35 E F12.5 E F0(.)A(If)184 342 Q -F13.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 -354 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 +F13.052 E F0 .552(is supplied with no)3.052 F F2(option\255name) +3.053 E F0 3.053(,t)C .553(he v)-3.053 F .553 +(alues of the current options are printed.)-.25 F(If)5.553 E F1(+o)184 +354 Q F0 1.072(is supplied with no)3.572 F F2(option\255name)3.572 E F0 +3.572(,a)C 1.071(series of)-.001 F F1(set)3.571 E F0 1.071 +(commands to recreate the current)3.571 F (option settings is displayed on the standard output.)184 366 Q F1 -144 378 Q F0 -.45(Tu)28.74 G 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 +144 378 Q F0 -.45(Tu)28.74 G 1.071(rn on).45 F F2(privile)4.821 E -.1 +(ge)-.4 G(d).1 E F0 3.572(mode. In)4.341 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.705 +-.27 E F0 1.072(\214les are not pro-)3.322 F 1.705 (cessed, shell functions are not inherited from the en)184 390 R 1.705 -(vironment, and the)-.4 F F3(SHELLOPTS)4.206 E F0 -.25(va)184 402 S .019 +(vironment, and the)-.4 F F3(SHELLOPTS)4.205 E F0 -.25(va)184 402 S .018 (riable, if it appears in the en).25 F .019(vironment, is ignored.)-.4 F -.018(If the shell is started with the ef)5.019 F(fec-)-.25 E(ti)184 414 -Q 1.158 -.15(ve u)-.25 H .859 +.019(If the shell is started with the ef)5.019 F(fec-)-.25 E(ti)184 414 +Q 1.159 -.15(ve u)-.25 H .859 (ser \(group\) id not equal to the real user \(group\) id, and the).15 F -F13.359 E F0 .859(option is not sup-)3.359 F .294 +F13.359 E F0 .858(option is not sup-)3.359 F .293 (plied, these actions are tak)184 426 R .293(en and the ef)-.1 F(fecti) -.25 E .593 -.15(ve u)-.25 H .293(ser id is set to the real user id.).15 -F .293(If the)5.293 F F12.793 E F0 1.195 +F .294(If the)5.294 F F12.794 E F0 1.196 (option is supplied at startup, the ef)184 438 R(fecti)-.25 E 1.495 -.15 -(ve u)-.25 H 1.195(ser id is not reset.).15 F -.45(Tu)6.196 G 1.196 +(ve u)-.25 H 1.195(ser id is not reset.).15 F -.45(Tu)6.195 G 1.195 (rning this option of).45 F(f)-.25 E(causes the ef)184 450 Q(fecti)-.25 E .3 -.15(ve u)-.25 H (ser and group ids to be set to the real user and group ids.).15 E F1 144 462 Q F0(Exit after reading and e)30.97 E -.15(xe)-.15 G -(cuting one command.).15 E F1144 474 Q F0 -.35(Tr)28.74 G .445 +(cuting one command.).15 E F1144 474 Q F0 -.35(Tr)28.74 G .444 (eat unset v).35 F .444 (ariables as an error when performing parameter e)-.25 F 2.944 -(xpansion. If)-.15 F -.15(ex)2.944 G .444(pansion is).15 F .519 +(xpansion. If)-.15 F -.15(ex)2.945 G .445(pansion is).15 F .52 (attempted on an unset v)184 486 R .519 (ariable, the shell prints an error message, and, if not interacti)-.25 F -.15(ve)-.25 G(,).15 E -.15(ex)184 498 S(its with a non-zero status.) @@ -7079,37 +7085,37 @@ F -.15(ve)-.25 G(,).15 E -.15(ex)184 498 S(its with a non-zero status.) -.15 G(re read.)-2.5 E F1144 522 Q F0 .315(After e)29.3 F .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 534 R F1 +F1(select)2.815 E F0(command,)2.815 E 1.236(or arithmetic)184 534 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 9/Times-Roman@0 SF(,)A F0(follo)3.486 E 1.236(wed by the com-)-.25 F(mand and its e)184 546 Q(xpanded ar)-.15 E(guments or associated w)-.18 E(ord list.)-.1 E -F1144 558 Q F0 2.579(The shell performs brace e)27.63 F 2.578 +F1144 558 Q F0 2.578(The shell performs brace e)27.63 F 2.578 (xpansion \(see)-.15 F F1 2.578(Brace Expansion)5.078 F F0(abo)5.078 E --.15(ve)-.15 G 5.078(\). This).15 F 2.578(is on by)5.078 F(def)184 570 Q -(ault.)-.1 E F1144 582 Q F0 .213(If set,)27.08 F F1(bash)2.713 E -F0 .213(does not o)2.713 F -.15(ve)-.15 G .214(rwrite an e).15 F .214 +-.15(ve)-.15 G 5.079(\). This).15 F 2.579(is on by)5.079 F(def)184 570 Q +(ault.)-.1 E F1144 582 Q F0 .214(If set,)27.08 F F1(bash)2.714 E +F0 .214(does not o)2.714 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 594 R .553(may be o)3.053 F -.15(ve)-.15 G .553 +2.713(,a)C(nd)-2.713 E F1(<>)2.713 E F0 .213(redirection opera-)2.713 F +3.053(tors. This)184 594 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 606 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 -144 618 Q F0 .103(If set, an)27.63 F 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 630 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 642 Q F1 -144 654 Q F0(Enable)26.52 E 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 666 Q -.15 -(ve)-.25 G(.).15 E F1144 678 Q F0 1.165 +144 618 Q F0 .104(If set, an)27.63 F 2.604(yt)-.15 G .104(rap on) +-2.604 F F1(ERR)2.604 E F0 .103 +(is inherited by shell functions, command substitutions, and com-)2.604 +F .838(mands e)184 630 R -.15(xe)-.15 G .838(cuted in a subshell en).15 +F 3.338(vironment. The)-.4 F F1(ERR)3.338 E F0 .839 +(trap is normally not inherited in)3.339 F(such cases.)184 642 Q F1 +144 654 Q F0(Enable)26.52 E F1(!)3.032 E F0 .532 +(style history substitution.)5.532 F .531(This option is on by def)5.532 +F .531(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 666 Q -.15 +(ve)-.25 G(.).15 E F1144 678 Q F0 1.164 (If set, the shell does not follo)28.19 F 3.664(ws)-.25 G 1.164 -(ymbolic links when e)-3.664 F -.15(xe)-.15 G 1.164 -(cuting commands such as).15 F F1(cd)3.664 E F0 2.821 +(ymbolic links when e)-3.664 F -.15(xe)-.15 G 1.165 +(cuting commands such as).15 F F1(cd)3.665 E F0 2.822 (that change the current w)184 690 R 2.822(orking directory)-.1 F 7.822 -(.I)-.65 G 5.322(tu)-7.822 G 2.822(ses the ph)-5.322 F 2.822 -(ysical directory structure)-.05 F 2.686(instead. By)184 702 R(def)2.686 +(.I)-.65 G 5.322(tu)-7.822 G 2.822(ses the ph)-5.322 F 2.821 +(ysical directory structure)-.05 F 2.685(instead. By)184 702 R(def)2.685 E(ault,)-.1 E F1(bash)2.686 E F0(follo)2.686 E .186 (ws the logical chain of directories when performing com-)-.25 F (mands which change the current directory)184 714 Q(.)-.65 E @@ -7126,42 +7132,42 @@ F1(RETURN)3.39 E F0 .89(are inherited by shell functions, command)3.39 F (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 108 Q F0 (traps are normally not inherited in such cases.)2.5 E F1144 120 Q -F0 .4(If no ar)28.6 F .401(guments follo)-.18 F 2.901(wt)-.25 G .401 +F0 .401(If no ar)28.6 F .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 132 Q -/F2 10/Times-Italic@0 SF(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 F1 -2.5 E F0(.)A F1144 144 Q F0 1.945 +(Otherwise,)5.4 E(the positional parameters are set to the)184 132 Q/F2 +10/Times-Italic@0 SF(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 144 Q F0 1.944 (Signal the end of options, cause all remaining)34.3 F F2(ar)4.444 E(g) --.37 E F0 4.444(st)C 4.444(ob)-4.444 G 4.444(ea)-4.444 G 1.944 -(ssigned to the positional)-4.444 F 3.445(parameters. The)184 156 R F1 -3.445 E F0(and)3.445 E F13.445 E F0 .945 -(options are turned of)3.445 F 3.445(f. If)-.25 F .946(there are no) -3.445 F F2(ar)3.446 E(g)-.37 E F0 .946(s, the positional)B +-.37 E F0 4.444(st)C 4.444(ob)-4.444 G 4.445(ea)-4.444 G 1.945 +(ssigned to the positional)-4.445 F 3.446(parameters. The)184 156 R F1 +3.446 E F0(and)3.446 E F13.446 E F0 .945 +(options are turned of)3.446 F 3.445(f. If)-.25 F .945(there are no) +3.445 F F2(ar)3.445 E(g)-.37 E F0 .945(s, the positional)B (parameters remain unchanged.)184 168 Q .425(The options are of)144 184.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 196.8 R 2.677(f. The)-.25 F .178 +(Using + rather than \255 causes these options)5.425 F .178 +(to be turned of)144 196.8 R 2.678(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 +-.18 F -.2(vo)-.4 G .177(cation of the shell.).2 F(The)5.177 E .066 (current set of options may be found in)144 208.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 +(ys true unless an in).1 F -.25(va)-.4 G .067(lid option).25 F (is encountered.)144 220.8 Q F1(shift)108 237.6 Q F0([)2.5 E F2(n)A F0 -(])A .428(The positional parameters from)144 249.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 261.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 +(])A .429(The positional parameters from)144 249.6 R F2(n)2.929 E F0 +.429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.428 G +.428(rameters represented by the num-).15 F(bers)144 261.6 Q F1($#)2.582 +E F0(do)2.582 E .082(wn to)-.25 F F1($#)2.582 E F0A F2(n)A F0 .082 +(+1 are unset.)B F2(n)5.442 E F0 .082(must be a non-ne)2.822 F -.05(ga) +-.15 G(ti).05 E .383 -.15(ve n)-.25 H .083(umber less than or equal to) +.15 F F1($#)2.583 E F0 5.083(.I)C(f)-5.083 E F2(n)2.943 E F0 .06 (is 0, no parameters are changed.)144 273.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 285.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 +(,t)C(he)-2.56 E .143(positional parameters are not changed.)144 285.6 R +.144(The return status is greater than zero if)5.143 F F2(n)3.004 E F0 +.144(is greater than)2.884 F F1($#)2.644 E F0 (or less than zero; otherwise 0.)144 297.6 Q F1(shopt)108 314.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 326.4 S .222(ggle the v).8 F .222 @@ -7169,64 +7175,64 @@ E F0(do)2.583 E .083(wn to)-.25 F F1($#)2.583 E F0A F2(n)A F0 .083 (vior)-.2 E 5.222(.W)-.55 G .222(ith no options, or with the)-5.622 F F1 2.722 E F0 .721(option, a list of all settable options is display\ ed, with an indication of whether or not each is set.)144 338.4 R(The) -144 350.4 Q F12.827 E F0 .327(option causes output to be displaye\ -d in a form that may be reused as input.)2.827 F .328(Other options) -5.328 F(ha)144 362.4 Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:) +144 350.4 Q F12.828 E F0 .327(option causes output to be displaye\ +d in a form that may be reused as input.)2.828 F .327(Other options) +5.327 F(ha)144 362.4 Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:) -.25 E F1144 374.4 Q F0(Enable \(set\) each)26.41 E F2(optname)2.5 E F0(.)A F1144 386.4 Q F0(Disable \(unset\) each)24.74 E F2 (optname)2.5 E F0(.)A F1144 398.4 Q F0 .003(Suppresses normal out\ put \(quiet mode\); the return status indicates whether the)24.74 F F2 -(optname)2.503 E F0(is)2.503 E .255(set or unset.)180 410.4 R .255 -(If multiple)5.255 F F2(optname)2.755 E F0(ar)2.755 E .256 +(optname)2.504 E F0(is)2.504 E .256(set or unset.)180 410.4 R .256 +(If multiple)5.256 F F2(optname)2.756 E F0(ar)2.756 E .256 (guments are gi)-.18 F -.15(ve)-.25 G 2.756(nw).15 G(ith)-2.756 E F1 -2.756 E F0 2.756(,t)C .256(he return status is zero if)-2.756 F +2.756 E F0 2.755(,t)C .255(he return status is zero if)-2.755 F (all)180 422.4 Q F2(optnames)2.5 E F0(are enabled; non-zero otherwise.) 2.5 E F1144 434.4 Q F0(Restricts the v)25.3 E(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 .128 -(If either)144 451.2 R F12.628 E F0(or)2.628 E F12.628 E F0 +(option to the)2.5 E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .127 +(If either)144 451.2 R F12.627 E F0(or)2.627 E F12.627 E F0 .127(is used with no)2.627 F F2(optname)2.627 E F0(ar)2.627 E .127 -(guments, the display is limited to those options which)-.18 F 1.023 -(are set or unset, respecti)144 463.2 R -.15(ve)-.25 G(ly).15 E 6.023 -(.U)-.65 G 1.024(nless otherwise noted, the)-6.023 F F1(shopt)3.524 E F0 -1.024(options are disabled \(unset\) by)3.524 F(def)144 475.2 Q(ault.) +(guments, the display is limited to those options which)-.18 F 1.024 +(are set or unset, respecti)144 463.2 R -.15(ve)-.25 G(ly).15 E 6.024 +(.U)-.65 G 1.024(nless otherwise noted, the)-6.024 F F1(shopt)3.523 E F0 +1.023(options are disabled \(unset\) by)3.523 F(def)144 475.2 Q(ault.) -.1 E 1.544(The return status when listing options is zero if all)144 -492 R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.) -4.044 F .696 +492 R F2(optnames)4.044 E F0 1.545(are enabled, non-zero otherwise.) +4.045 F .696 (When setting or unsetting options, the return status is zero unless an) -144 504 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696(alid shell) +144 504 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .695(alid shell) -.25 F(option.)144 516 Q(The list of)144 532.8 Q F1(shopt)2.5 E F0 -(options is:)2.5 E F1(autocd)144 550.8 Q F0 .2 +(options is:)2.5 E F1(autocd)144 550.8 Q F0 .199 (If set, a command name that is the name of a directory is e)11.11 F --.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E +-.15(xe)-.15 G .2(cuted as if it were the ar).15 F(gu-)-.18 E (ment to the)184 562.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 574.8 Q(ars)-.1 E F0 .155(If set, an ar)184 586.8 R .155 -(gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156 +F1(cdable_v)144 574.8 Q(ars)-.1 E F0 .156(If set, an ar)184 586.8 R .156 +(gument to the)-.18 F F1(cd)2.656 E F0 -.2(bu)2.656 G .155 (iltin command that is not a directory is assumed to be the).2 F (name of a v)184 598.8 Q(ariable whose v)-.25 E (alue is the directory to change to.)-.25 E F1(cdspell)144 610.8 Q F0 1.055 (If set, minor errors in the spelling of a directory component in a) -10.55 F F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 -(corrected. The)184 622.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 .552(one character too man)184 634.8 R 4.352 -.65 +10.55 F F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.988 +(corrected. The)184 622.8 R 1.488(errors check)3.988 F 1.487 +(ed for are transposed characters, a missing character)-.1 F 3.987(,a) +-.4 G(nd)-3.987 E .552(one character too man)184 634.8 R 4.352 -.65 (y. I)-.15 H 3.052(fac).65 G .552 (orrection is found, the corrected \214le name is printed, and)-3.052 F (the command proceeds.)184 646.8 Q (This option is only used by interacti)5 E .3 -.15(ve s)-.25 H(hells.) -.15 E F1(checkhash)144 658.8 Q F0 2.079(If set,)184 670.8 R F1(bash) -4.579 E F0 2.079(checks that a command found in the hash table e)4.579 F -2.08(xists before trying to)-.15 F -.15(exe)184 682.8 S(cute it.).15 E +.15 E F1(checkhash)144 658.8 Q F0 2.08(If set,)184 670.8 R F1(bash)4.58 +E F0 2.079(checks that a command found in the hash table e)4.58 F 2.079 +(xists before trying to)-.15 F -.15(exe)184 682.8 S(cute it.).15 E (If a hashed command no longer e)5 E (xists, a normal path search is performed.)-.15 E F1(checkjobs)144 694.8 -Q F0 .449(If set,)184 706.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 3.438(shell. If)184 718.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 1.456 +Q F0 .448(If set,)184 706.8 R F1(bash)2.948 E F0 .448 +(lists the status of an)2.948 F 2.949(ys)-.15 G .449 +(topped and running jobs before e)-2.949 F .449(xiting an interacti)-.15 +F -.15(ve)-.25 G 3.439(shell. If)184 718.8 R(an)3.439 E 3.439(yj)-.15 G +.938(obs are running, this causes the e)-3.439 F .938 +(xit to be deferred until a second e)-.15 F .938(xit is)-.15 F 1.456 (attempted without an interv)184 730.8 R 1.456(ening command \(see)-.15 F F1 1.456(JOB CONTR)3.956 F(OL)-.3 E F0(abo)3.956 E -.15(ve)-.15 G 3.956(\). The).15 F(shell)3.956 E(GNU Bash-4.0)72 768 Q(2008 July 6) @@ -7238,64 +7244,64 @@ BP /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) -.35 E(al)184 84 Q -.1(wa)-.1 G(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G(obs are stopped.)-2.5 E/F1 10/Times-Bold@0 SF -(checkwinsize)144 96 Q F0 .796(If set,)184 108 R F1(bash)3.296 E F0 .796 -(checks the windo)3.296 F 3.296(ws)-.25 G .797 -(ize after each command and, if necessary)-3.296 F 3.297(,u)-.65 G .797 -(pdates the)-3.297 F -.25(va)184 120 S(lues of).25 E/F2 9/Times-Bold@0 +(checkwinsize)144 96 Q F0 .797(If set,)184 108 R F1(bash)3.297 E F0 .797 +(checks the windo)3.297 F 3.297(ws)-.25 G .796 +(ize after each command and, if necessary)-3.297 F 3.296(,u)-.65 G .796 +(pdates the)-3.296 F -.25(va)184 120 S(lues of).25 E/F2 9/Times-Bold@0 SF(LINES)2.5 E F0(and)2.25 E F2(COLUMNS)2.5 E/F3 9/Times-Roman@0 SF(.)A F1(cmdhist)144 132 Q F0 1.202(If set,)6.11 F F1(bash)3.702 E F0 1.202 (attempts to sa)3.702 F 1.502 -.15(ve a)-.2 H 1.202 (ll lines of a multiple-line command in the same history).15 F(entry)184 144 Q 5(.T)-.65 G(his allo)-5 E (ws easy re-editing of multi-line commands.)-.25 E F1(compat31)144 156 Q -F0 .419(If set,)184 168 R F1(bash)2.919 E F0 .419(changes its beha)2.919 -F .419(vior to that of v)-.2 F .42(ersion 3.1 with respect to quoted ar) +F0 .42(If set,)184 168 R F1(bash)2.92 E F0 .42(changes its beha)2.92 F +.419(vior to that of v)-.2 F .419(ersion 3.1 with respect to quoted ar) -.15 F(guments)-.18 E(to the conditional command')184 180 Q 2.5(s=)-.55 -G 2.5(~o)-2.5 G(perator)-2.5 E(.)-.55 E F1(dirspell)144 192 Q F0 .859 -(If set,)7.77 F F1(bash)3.359 E F0 .858 -(attempts spelling correction on directory names during w)3.359 F .858 +G 2.5(~o)-2.5 G(perator)-2.5 E(.)-.55 E F1(dirspell)144 192 Q F0 .858 +(If set,)7.77 F F1(bash)3.358 E F0 .858 +(attempts spelling correction on directory names during w)3.358 F .859 (ord completion if)-.1 F (the directory name initially supplied does not e)184 204 Q(xist.)-.15 E F1(dotglob)144 216 Q F0 .165(If set,)7.77 F F1(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 F1(execfail)144 228 Q F0 1.387 -(If set, a non-interacti)7.79 F 1.687 -.15(ve s)-.25 H 1.386 +(xpansion.)-.15 E F1(execfail)144 228 Q F0 1.386 +(If set, a non-interacti)7.79 F 1.686 -.15(ve s)-.25 H 1.386 (hell will not e).15 F 1.386(xit if it cannot e)-.15 F -.15(xe)-.15 G -1.386(cute the \214le speci\214ed as an).15 F(ar)184 240 Q +1.387(cute the \214le speci\214ed as an).15 F(ar)184 240 Q (gument to the)-.18 E 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 252 Q F0 -.716(If set, aliases are e)184 264 R .717(xpanded as described abo)-.15 -F 1.017 -.15(ve u)-.15 H(nder).15 E F2(ALIASES)3.217 E F3(.)A F0 .717 +.717(If set, aliases are e)184 264 R .717(xpanded as described abo)-.15 +F 1.017 -.15(ve u)-.15 H(nder).15 E F2(ALIASES)3.217 E F3(.)A F0 .716 (This option is enabled)5.217 F(by def)184 276 Q(ault for interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(extdeb)144 288 Q(ug)-.2 E F0 (If set, beha)184 300 Q(vior intended for use by deb)-.2 E -(uggers is enabled:)-.2 E F1(1.)184 312 Q F0(The)28.5 E 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(iltin displays the source \214le name and line).2 F +(uggers is enabled:)-.2 E F1(1.)184 312 Q F0(The)28.5 E F14.25 E +F0 1.75(option to the)4.25 F F1(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 324 Q (gument.)-.18 E F1(2.)184 336 Q F0 1.667(If the command run by the)28.5 F F1(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 348 -Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 360 Q F0 .841 -(If the command run by the)28.5 F 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 +Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 360 Q F0 .84 +(If the command run by the)28.5 F F1(DEB)3.34 E(UG)-.1 E F0 .841 +(trap returns a v)3.341 F .841(alue of 2, and the shell is)-.25 F -.15 (exe)220 372 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 384 Q(ce)-.18 E F0 -.2(bu)2.5 G(iltins\), a call to).2 E F1 -.18(re)2.5 G(tur).18 E(n)-.15 E F0(is simulated.)2.5 E F1 26(4. B)184 -396 R(ASH_ARGC)-.3 E F0(and)3.776 E F1 -.3(BA)3.776 G(SH_ARGV).3 E F0 -1.275(are updated as described in their descrip-)3.776 F(tions abo)220 +396 R(ASH_ARGC)-.3 E F0(and)3.775 E F1 -.3(BA)3.775 G(SH_ARGV).3 E F0 +1.276(are updated as described in their descrip-)3.775 F(tions abo)220 408 Q -.15(ve)-.15 G(.).15 E F1(5.)184 420 Q F0 1.359 (Function tracing is enabled:)28.5 F 1.359 (command substitution, shell functions, and sub-)6.359 F(shells in)220 432 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 444 Q F0 .805(Error tracing is enabled:)28.5 F .804 -(command substitution, shell functions, and subshells)5.805 F(in)220 456 +184 444 Q F0 .804(Error tracing is enabled:)28.5 F .805 +(command substitution, shell functions, and subshells)5.804 F(in)220 456 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(OR)-.3 E F0 (trap.)2.5 E F1(extglob)144 468 Q F0 .4(If set, the e)8.89 F .4 @@ -7307,29 +7313,29 @@ E F0(")A F4(string)A F0 4.973("q)C 2.473(uoting is performed within) -4.973 F F1(${)4.973 E F4(par)A(ameter)-.15 E F1(})A F0 -.15(ex)4.973 G (pansions).15 E(enclosed in double quotes.)184 516 Q (This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 528 Q F0 -1.424(If set, patterns which f)7.77 F 1.425 -(ail to match \214lenames during pathname e)-.1 F 1.425 +1.425(If set, patterns which f)7.77 F 1.425 +(ail to match \214lenames during pathname e)-.1 F 1.424 (xpansion result in an)-.15 F -.15(ex)184 540 S(pansion error).15 E(.) -.55 E F1 -.25(fo)144 552 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 .585(If set, the suf)184 564 R<8c78>-.25 E .585(es speci\214ed by the) -.15 F F1(FIGNORE)3.085 E F0 .585(shell v)3.085 F .585(ariable cause w) -.25 F .585(ords to be ignored)-.1 F .32(when performing w)184 576 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 3.33 -(pletions. See)184 588 R F2 .83(SHELL V)3.33 F(ARIABLES)-1.215 E F0(abo) -3.08 E 1.13 -.15(ve f)-.15 H .829(or a description of).15 F F1(FIGNORE) -3.329 E F0 5.829(.T)C .829(his option)-5.829 F(is enabled by def)184 600 -Q(ault.)-.1 E F1(globstar)144 612 Q F0 .439(If set, the pattern)5 F F1 -(**)2.939 E F0 .439(used in a \214lename e)2.939 F .439(xpansion conte) --.15 F .44(xt will match a \214les and zero or)-.15 F 1.298 +(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 3.329 +(pletions. See)184 588 R F2 .829(SHELL V)3.329 F(ARIABLES)-1.215 E F0 +(abo)3.079 E 1.129 -.15(ve f)-.15 H .83(or a description of).15 F F1 +(FIGNORE)3.33 E F0 5.83(.T)C .83(his option)-5.83 F(is enabled by def) +184 600 Q(ault.)-.1 E F1(globstar)144 612 Q F0 .44(If set, the pattern)5 +F F1(**)2.94 E F0 .44(used in a \214lename e)2.94 F .439(xpansion conte) +-.15 F .439(xt will match a \214les and zero or)-.15 F 1.297 (more directories and subdirectories.)184 624 R 1.298 -(If the pattern is follo)6.298 F 1.298(wed by a)-.25 F F1(/)3.797 E F0 -3.797(,o)C 1.297(nly directories)-3.797 F(and subdirectories match.)184 +(If the pattern is follo)6.297 F 1.298(wed by a)-.25 F F1(/)3.798 E F0 +3.798(,o)C 1.298(nly directories)-3.798 F(and subdirectories match.)184 636 Q F1(gnu_errfmt)144 648 Q F0(If set, shell error messages are writt\ en in the standard GNU error message format.)184 660 Q F1(histappend)144 -672 Q F0 .383 +672 Q F0 .384 (If set, the history list is appended to the \214le named by the v)184 -684 R .384(alue of the)-.25 F F1(HISTFILE)2.884 E F0 -.25(va)2.884 G +684 R .383(alue of the)-.25 F F1(HISTFILE)2.883 E F0 -.25(va)2.883 G (ri-).25 E(able when the shell e)184 696 Q(xits, rather than o)-.15 E -.15(ve)-.15 G(rwriting the \214le.).15 E(GNU Bash-4.0)72 768 Q (2008 July 6)150.675 E(62)200.665 E 0 Cg EP @@ -7338,23 +7344,23 @@ en in the standard GNU error message format.)184 660 Q F1(histappend)144 BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(histr)144 84 Q(eedit)-.18 E F0 .576 -(If set, and)184 96 R F1 -.18(re)3.076 G(adline).18 E F0 .575 -(is being used, a user is gi)3.076 F -.15(ve)-.25 G 3.075(nt).15 G .575 -(he opportunity to re-edit a f)-3.075 F .575(ailed his-)-.1 F -(tory substitution.)184 108 Q F1(histv)144 120 Q(erify)-.1 E F0 .402 +-.35 E/F1 10/Times-Bold@0 SF(histr)144 84 Q(eedit)-.18 E F0 .575 +(If set, and)184 96 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 108 Q F1(histv)144 120 Q(erify)-.1 E F0 .403 (If set, and)184 132 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 .662(passed to the shell parser)184 144 R 5.662(.I)-.55 G .661 -(nstead, the resulting line is loaded into the)-5.662 F F1 -.18(re)3.161 -G(adline).18 E F0(editing)3.161 E -.2(bu)184 156 S -.25(ff).2 G(er).25 E +2.903 F .661(passed to the shell parser)184 144 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 156 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 168 Q F0 1.181(If set, and)184 180 R F1 -.18(re)3.681 -G(adline).18 E F0 1.181(is being used,)3.681 F F1(bash)3.682 E F0 1.182 -(will attempt to perform hostname completion)3.682 F 1.381(when a w)184 -192 R 1.381(ord containing a)-.1 F F1(@)3.881 E F0 1.381 -(is being completed \(see)3.881 F F1(Completing)3.88 E F0(under)3.88 E -/F2 9/Times-Bold@0 SF(READLINE)3.88 E F0(abo)184 204 Q -.15(ve)-.15 G +(hostcomplete)144 168 Q F0 1.182(If set, and)184 180 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 +192 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 +/F2 9/Times-Bold@0 SF(READLINE)3.881 E F0(abo)184 204 Q -.15(ve)-.15 G 2.5(\). This).15 F(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 216 Q F0(If set,)184 228 Q F1(bash)2.5 E F0(will send)2.5 E F2(SIGHUP) 2.5 E F0(to all jobs when an interacti)2.25 E .3 -.15(ve l)-.25 H @@ -7364,52 +7370,52 @@ G(adline).18 E F0 1.181(is being used,)3.681 F F1(bash)3.682 E F0 1.182 (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 264 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 -276 Q(ault.)-.1 E F1(lithist)144 288 Q F0 .654(If set, and the)15.55 F -F1(cmdhist)3.154 E F0 .654 +-.15 G 3.467(\). This).15 F .968(option is)3.468 F(enabled by def)184 +276 Q(ault.)-.1 E F1(lithist)144 288 Q F0 .655(If set, and the)15.55 F +F1(cmdhist)3.155 E F0 .654 (option is enabled, multi-line commands are sa)3.154 F -.15(ve)-.2 G -3.155(dt).15 G 3.155(ot)-3.155 G .655(he history)-3.155 F +3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F (with embedded ne)184 300 Q (wlines rather than using semicolon separators where possible.)-.25 E F1 (login_shell)144 312 Q F0 .486 (The shell sets this option if it is started as a login shell \(see)184 -324 R F2(INV)2.986 E(OCA)-.405 E(TION)-.855 E F0(abo)2.736 E -.15(ve) --.15 G 2.986(\). The).15 F -.25(va)184 336 S(lue may not be changed.).25 -E F1(mailwar)144 348 Q(n)-.15 E F0 .814(If set, and a \214le that)184 -360 R F1(bash)3.314 E F0 .815 -(is checking for mail has been accessed since the last time it)3.314 F +324 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 336 S(lue may not be changed.).25 +E F1(mailwar)144 348 Q(n)-.15 E F0 .815(If set, and a \214le that)184 +360 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 372 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 384 Q F0 .146(If set, and)184 396 R F1 -.18 -(re)2.646 G(adline).18 E F0 .146(is being used,)2.646 F F1(bash)2.646 E -F0 .145(will not attempt to search the)2.646 F F1 -.74(PA)2.645 G(TH) --.21 E F0 .145(for possible)2.645 F +(no_empty_cmd_completion)144 384 Q F0 .145(If set, and)184 396 R F1 -.18 +(re)2.645 G(adline).18 E F0 .145(is being used,)2.645 F F1(bash)2.646 E +F0 .146(will not attempt to search the)2.646 F F1 -.74(PA)2.646 G(TH) +-.21 E F0 .146(for possible)2.646 F (completions when completion is attempted on an empty line.)184 408 Q F1 -(nocaseglob)144 420 Q F0 .436(If set,)184 432 R F1(bash)2.936 E F0 .436 -(matches \214lenames in a case\255insensiti)2.936 F .737 -.15(ve f)-.25 -H .437(ashion when performing pathname).05 F -.15(ex)184 444 S +(nocaseglob)144 420 Q F0 .437(If set,)184 432 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 444 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 456 Q F0 1.194(If set,)184 -468 R F1(bash)3.694 E F0 1.194(matches patterns in a case\255insensiti) -3.694 F 1.493 -.15(ve f)-.25 H 1.193(ashion when performing matching).05 +-.15(ve)-.15 G(\).).15 E F1(nocasematch)144 456 Q F0 1.193(If set,)184 +468 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(while e)184 480 Q -.15(xe)-.15 G(cuting).15 E F1(case)2.5 E F0(or)2.5 E F1([[)2.5 E F0(conditional commands.)2.5 E F1(nullglob)144 492 Q F0 -.854(If set,)184 504 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 516 S(pand to a null string, rather than themselv) -.15 E(es.)-.15 E F1(pr)144 528 Q(ogcomp)-.18 E F0 .677 +.855(If set,)184 504 R F1(bash)3.355 E F0(allo)3.355 E .855 +(ws patterns which match no \214les \(see)-.25 F F1 -.1(Pa)3.354 G .854 +(thname Expansion).1 F F0(abo)3.354 E -.15(ve)-.15 G 3.354(\)t).15 G(o) +-3.354 E -.15(ex)184 516 S(pand to a null string, rather than themselv) +.15 E(es.)-.15 E F1(pr)144 528 Q(ogcomp)-.18 E F0 .676 (If set, the programmable completion f)184 540 R .677(acilities \(see) --.1 F F1(Pr)3.176 E .676(ogrammable Completion)-.18 F F0(abo)3.176 E +-.1 F F1(Pr)3.177 E .677(ogrammable Completion)-.18 F F0(abo)3.177 E -.15(ve)-.15 G(\)).15 E(are enabled.)184 552 Q (This option is enabled by def)5 E(ault.)-.1 E F1(pr)144 564 Q(omptv) --.18 E(ars)-.1 E F0 1.447(If set, prompt strings under)184 576 R 1.448 -(go parameter e)-.18 F 1.448(xpansion, command substitution, arithmetic) --.15 F -.15(ex)184 588 S .171(pansion, and quote remo).15 F -.25(va)-.15 +-.18 E(ars)-.1 E F0 1.448(If set, prompt strings under)184 576 R 1.448 +(go parameter e)-.18 F 1.447(xpansion, command substitution, arithmetic) +-.15 F -.15(ex)184 588 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(PR)2.67 E(OMPTING)-.27 E F0(abo)2.42 E -.15(ve)-.15 G(.).15 E -(This option is enabled by def)184 600 Q(ault.)-.1 E F1 -.18(re)144 612 +-.15 F F2(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 600 Q(ault.)-.1 E F1 -.18(re)144 612 S(stricted_shell).18 E F0 1.069 (The shell sets this option if it is started in restricted mode \(see) 184 624 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 636 Q 4.178 @@ -7417,16 +7423,17 @@ S(stricted_shell).18 E F0 1.069 1.678(This is not reset when the startup \214les are)6.678 F -.15(exe) 184 648 S(cuted, allo).15 E(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 660 Q(erbose)-.1 E F0 .501(If set, the)184 672 R F1 -(shift)3.001 E F0 -.2(bu)3.001 G .501 -(iltin prints an error message when the shift count e).2 F .502 +F1(shift_v)144 660 Q(erbose)-.1 E F0 .502(If set, the)184 672 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 684 Q F1(sour) -144 696 Q(cepath)-.18 E F0 .771(If set, the)184 708 R F1(sour)3.271 E -(ce)-.18 E F0(\()3.271 E F1(.)A F0 3.271(\)b)C .771(uiltin uses the v) --3.471 F .771(alue of)-.25 F F2 -.666(PA)3.27 G(TH)-.189 E F0 .77 -(to \214nd the directory containing the)3.02 F(\214le supplied as an ar) -184 720 Q 2.5(gument. This)-.18 F(option is enabled by def)2.5 E(ault.) --.1 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(63)200.665 E 0 Cg EP +144 696 Q(cepath)-.18 E F0 .77(If set, the)184 708 R F1(sour)3.27 E(ce) +-.18 E F0(\()3.27 E F1(.)A 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 720 Q 2.5(gument. This)-.18 F +(option is enabled by def)2.5 E(ault.)-.1 E(GNU Bash-4.0)72 768 Q +(2008 July 6)150.675 E(63)200.665 E 0 Cg EP %%Page: 64 64 %%BeginPageSetup BP @@ -7435,28 +7442,28 @@ BP -.35 E/F1 10/Times-Bold@0 SF(xpg_echo)144 84 Q F0(If set, the)184 96 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 108 Q F0([)2.5 E F1A F0(])A 1.001(Suspend the e)144 120 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 9/Times-Bold@0 SF(SIGCONT)A F0 3.502(signal. A)3.252 -F 1.002(login shell cannot be)3.502 F .023(suspended; the)144 132 R F1 -2.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 144 S +108 108 Q F0([)2.5 E F1A F0(])A 1.002(Suspend the e)144 120 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 9/Times-Bold@0 SF(SIGCONT)A F0 3.501(signal. A)3.251 +F 1.001(login shell cannot be)3.501 F .022(suspended; the)144 132 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 144 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 156 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([)108 168 Q F3 -.2 (ex)2.5 G(pr).2 E F1(])2.5 E F0 1.15 (Return a status of 0 or 1 depending on the e)6.77 F -.25(va)-.25 G 1.15 (luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)3.65 G -(pr).2 E F0 6.15(.E).73 G(ach)-6.15 E 1.188 +(pr).2 E F0 6.15(.E).73 G(ach)-6.15 E 1.187 (operator and operand must be a separate ar)144 180 R 3.688 -(gument. Expressions)-.18 F 1.187(are composed of the primaries)3.688 F -1.889(described abo)144 192 R 2.189 -.15(ve u)-.15 H(nder).15 E F2 -(CONDITION)4.389 E 1.889(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A -F1(test)6.389 E F0 1.89(does not accept an)4.389 F 4.39(yo)-.15 G 1.89 -(ptions, nor)-4.39 F(does it accept and ignore an ar)144 204 Q +(gument. Expressions)-.18 F 1.188(are composed of the primaries)3.688 F +1.89(described abo)144 192 R 2.19 -.15(ve u)-.15 H(nder).15 E F2 +(CONDITION)4.39 E 1.89(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A +F1(test)6.39 E F0 1.889(does not accept an)4.389 F 4.389(yo)-.15 G 1.889 +(ptions, nor)-4.389 F(does it accept and ignore an ar)144 204 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 222 R .785 +E .785(Expressions may be combined using the follo)144 222 R .786 (wing operators, listed in decreasing order of prece-)-.25 F 2.5 (dence. The)144 234 R -.25(eva)2.5 G (luation depends on the number of ar).25 E(guments; see belo)-.18 E -.65 @@ -7481,38 +7488,38 @@ F0 -.25(eva)2.5 G(luate conditional e).25 E E 2.5(2a)144 400.8 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) 180 412.8 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 424.8 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 436.8 Q .553 +(gument is null.)-.18 F .38(If the \214rst ar)180 424.8 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 436.8 Q .552 (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 448.8 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 460.8 S -.18(rg)-2.5 G -(uments).18 E .023(If the second ar)180 472.8 R .023 +(uments).18 E .024(If the second ar)180 472.8 R .023 (gument is one of the binary conditional operators listed abo)-.18 F -.324 -.15(ve u)-.15 H(nder).15 E F2(CON-)2.524 E(DITION)180 484.8 Q -1.478(AL EXPRESSIONS)-.18 F F4(,)A F0 1.477(the result of the e)3.727 F +.323 -.15(ve u)-.15 H(nder).15 E F2(CON-)2.523 E(DITION)180 484.8 Q +1.477(AL EXPRESSIONS)-.18 F F4(,)A F0 1.477(the result of the e)3.727 F 1.477(xpression is the result of the binary test)-.15 F .513 (using the \214rst and third ar)180 496.8 R .513(guments as operands.) -.18 F(The)5.513 E F13.013 E F0(and)3.013 E F13.013 E F0 -.513(operators are considered)3.013 F .972 +.512(operators are considered)3.013 F .972 (binary operators when there are three ar)180 508.8 R 3.472(guments. If) -.18 F .972(the \214rst ar)3.472 F .972(gument is)-.18 F F1(!)3.472 E F0 -3.472(,t)C .972(he v)-3.472 F .972(alue is)-.25 F .883(the ne)180 520.8 -R -.05(ga)-.15 G .883(tion of the tw).05 F(o-ar)-.1 E .884 -(gument test using the second and third ar)-.18 F 3.384(guments. If)-.18 -F .884(the \214rst)3.384 F(ar)180 532.8 Q .875(gument is e)-.18 F -(xactly)-.15 E F1(\()3.375 E F0 .875(and the third ar)3.375 F .875 -(gument is e)-.18 F(xactly)-.15 E F1(\))3.375 E F0 3.374(,t)C .874 -(he result is the one-ar)-3.374 F(gument)-.18 E(test of the second ar) +3.472(,t)C .972(he v)-3.472 F .972(alue is)-.25 F .884(the ne)180 520.8 +R -.05(ga)-.15 G .884(tion of the tw).05 F(o-ar)-.1 E .884 +(gument test using the second and third ar)-.18 F 3.383(guments. If)-.18 +F .883(the \214rst)3.383 F(ar)180 532.8 Q .874(gument is e)-.18 F +(xactly)-.15 E F1(\()3.374 E F0 .875(and the third ar)3.374 F .875 +(gument is e)-.18 F(xactly)-.15 E F1(\))3.375 E F0 3.375(,t)C .875 +(he result is the one-ar)-3.375 F(gument)-.18 E(test of the second ar) 180 544.8 Q 2.5(gument. Otherwise,)-.18 F(the e)2.5 E(xpression is f) --.15 E(alse.)-.1 E 2.5(4a)144 556.8 S -.18(rg)-2.5 G(uments).18 E .384 -(If the \214rst ar)180 568.8 R .384(gument is)-.18 F F1(!)2.884 E F0 -2.885(,t)C .385(he result is the ne)-2.885 F -.05(ga)-.15 G .385 -(tion of the three-ar).05 F .385(gument e)-.18 F .385(xpression com-) --.15 F 1.648(posed of the remaining ar)180 580.8 R 4.147 -(guments. Otherwise,)-.18 F 1.647(the e)4.147 F 1.647 +-.15 E(alse.)-.1 E 2.5(4a)144 556.8 S -.18(rg)-2.5 G(uments).18 E .385 +(If the \214rst ar)180 568.8 R .385(gument is)-.18 F F1(!)2.885 E F0 +2.885(,t)C .385(he result is the ne)-2.885 F -.05(ga)-.15 G .384 +(tion of the three-ar).05 F .384(gument e)-.18 F .384(xpression com-) +-.15 F 1.647(posed of the remaining ar)180 580.8 R 4.147 +(guments. Otherwise,)-.18 F 1.647(the e)4.147 F 1.648 (xpression is parsed and e)-.15 F -.25(va)-.25 G(luated).25 E (according to precedence using the rules listed abo)180 592.8 Q -.15(ve) -.15 G(.).15 E 2.5(5o)144 604.8 S 2.5(rm)-2.5 G(ore ar)-2.5 E(guments) @@ -7523,60 +7530,59 @@ F .884(the \214rst)3.384 F(ar)180 532.8 Q .875(gument is e)-.18 F accumulated user and system times for the shell and for processes run f\ rom the shell.)13.23 F(The return status is 0.)144 657.6 Q F1(trap)108 674.4 Q F0([)2.5 E F1(\255lp)A F0 2.5(][)C([)-2.5 E F3(ar)A(g)-.37 E F0 -(])A F3(sigspec)2.5 E F0(...])2.5 E .702(The command)144 686.4 R F3(ar) -3.532 E(g)-.37 E F0 .702(is to be read and e)3.422 F -.15(xe)-.15 G .702 -(cuted when the shell recei).15 F -.15(ve)-.25 G 3.203(ss).15 G -(ignal\(s\))-3.203 E F3(sigspec)3.203 E F0 5.703(.I).31 G(f)-5.703 E F3 -(ar)3.533 E(g)-.37 E F0(is)3.423 E .609(absent \(and there is a single) +(])A F3(sigspec)2.5 E F0(...])2.5 E .703(The command)144 686.4 R F3(ar) +3.533 E(g)-.37 E F0 .703(is to be read and e)3.423 F -.15(xe)-.15 G .702 +(cuted when the shell recei).15 F -.15(ve)-.25 G 3.202(ss).15 G +(ignal\(s\))-3.202 E F3(sigspec)3.202 E F0 5.702(.I).31 G(f)-5.702 E F3 +(ar)3.532 E(g)-.37 E F0(is)3.422 E .608(absent \(and there is a single) 144 698.4 R F3(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 710.4 R .658(alue it had upon entrance to the shell\).) --.25 F(If)5.658 E F3(ar)3.488 E(g)-.37 E F0 .659 +.659(\(the v)144 710.4 R .659(alue it had upon entrance to the shell\).) +-.25 F(If)5.658 E F3(ar)3.488 E(g)-.37 E F0 .658 (is the null string the signal speci\214ed by each)3.378 F F3(sigspec) -144.34 722.4 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 F3(ar)3.41 E(g)-.37 E F0 .58 -(is not present and)3.3 F F13.08 E F0(has)3.08 E(GNU Bash-4.0)72 -768 Q(2008 July 6)150.675 E(64)200.665 E 0 Cg EP +144.34 722.4 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 F3(ar)3.411 E(g)-.37 E +F0 .581(is not present and)3.301 F F13.081 E F0(has)3.081 E +(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(64)200.665 E 0 Cg EP %%Page: 65 65 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E 1.214(been supplied, then the trap commands associated with each) -144 84 R/F1 10/Times-Italic@0 SF(sigspec)4.054 E F0 1.215 -(are displayed.)4.024 F 1.215(If no ar)6.215 F(gu-)-.18 E .86 +-.35 E 1.215(been supplied, then the trap commands associated with each) +144 84 R/F1 10/Times-Italic@0 SF(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 96 R/F2 10/Times-Bold@0 SF3.36 E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F2(trap)3.36 E F0 .86 (prints the list of commands associated with each)3.36 F 2.83 (signal. The)144 108 R F22.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 120 R F1(sigspec)4.651 E F0 1.811 -(is either a signal name de\214ned in <)4.621 F F1(signal.h)A F0 1.81 -(>, or a signal number)B 6.81(.S)-.55 G(ignal)-6.81 E .745 + print a list of signal names and their corresponding num-)2.83 F 4.31 +(bers. Each)144 120 R F1(sigspec)4.65 E F0 1.811 +(is either a signal name de\214ned in <)4.62 F F1(signal.h)A F0 1.811 +(>, or a signal number)B 6.811(.S)-.55 G(ignal)-6.811 E .745 (names are case insensiti)144 132 R 1.045 -.15(ve a)-.25 H .745 (nd the SIG pre\214x is optional.).15 F .745(If a)5.745 F F1(sigspec) 3.585 E F0(is)3.555 E/F3 9/Times-Bold@0 SF(EXIT)3.245 E F0 .745 -(\(0\) the command)2.995 F F1(ar)144.33 144 Q(g)-.37 E F0 1.63(is e)4.35 -F -.15(xe)-.15 G 1.63(cuted on e).15 F 1.63(xit from the shell.)-.15 F -1.63(If a)6.63 F F1(sigspec)4.47 E F0(is)4.44 E F3(DEB)4.13 E(UG)-.09 E -/F4 9/Times-Roman@0 SF(,)A F0 1.629(the command)3.88 F F1(ar)4.459 E(g) --.37 E F0 1.629(is e)4.349 F -.15(xe)-.15 G(cuted).15 E 1.206(before e) -144 156 R -.15(ve)-.25 G(ry).15 E F1 1.206(simple command)3.706 F F0(,)A -F1(for)3.706 E F0(command,)3.706 E F1(case)3.706 E F0(command,)3.706 E -F1(select)3.707 E F0 1.207(command, e)3.707 F -.15(ve)-.25 G 1.207 +(\(0\) the command)2.995 F F1(ar)144.33 144 Q(g)-.37 E F0 1.629(is e) +4.349 F -.15(xe)-.15 G 1.629(cuted on e).15 F 1.63(xit from the shell.) +-.15 F 1.63(If a)6.63 F F1(sigspec)4.47 E F0(is)4.44 E F3(DEB)4.13 E(UG) +-.09 E/F4 9/Times-Roman@0 SF(,)A F0 1.63(the command)3.88 F F1(ar)4.46 E +(g)-.37 E F0 1.63(is e)4.35 F -.15(xe)-.15 G(cuted).15 E 1.207(before e) +144 156 R -.15(ve)-.25 G(ry).15 E F1 1.207(simple command)3.707 F F0(,)A +F1(for)3.707 E F0(command,)3.706 E F1(case)3.706 E F0(command,)3.706 E +F1(select)3.706 E F0 1.206(command, e)3.706 F -.15(ve)-.25 G 1.206 (ry arithmetic).15 F F1(for)144 168 Q F0 .412 -(command, and before the \214rst command e)2.913 F -.15(xe)-.15 G .412 -(cutes in a shell function \(see).15 F F3 .412(SHELL GRAMMAR)2.912 F F0 -(abo)144 180 Q -.15(ve)-.15 G 2.665(\). Refer).15 F .166 -(to the description of the)2.665 F F2(extdeb)2.666 E(ug)-.2 E F0 .166 +(command, and before the \214rst command e)2.912 F -.15(xe)-.15 G .412 +(cutes in a shell function \(see).15 F F3 .413(SHELL GRAMMAR)2.912 F F0 +(abo)144 180 Q -.15(ve)-.15 G 2.666(\). Refer).15 F .166 +(to the description of the)2.666 F F2(extdeb)2.666 E(ug)-.2 E F0 .166 (option to the)2.666 F F2(shopt)2.666 E F0 -.2(bu)2.666 G .166 -(iltin for details of its ef).2 F(fect)-.25 E .509(on the)144 192 R F2 -(DEB)3.009 E(UG)-.1 E F0 3.009(trap. If)3.009 F(a)3.009 E F1(sigspec) +(iltin for details of its ef).2 F(fect)-.25 E .508(on the)144 192 R F2 +(DEB)3.008 E(UG)-.1 E F0 3.008(trap. If)3.008 F(a)3.008 E F1(sigspec) 3.348 E F0(is)3.318 E F3(ERR)3.008 E F4(,)A F0 .508(the command)2.758 F -F1(ar)3.338 E(g)-.37 E F0 .508(is e)3.228 F -.15(xe)-.15 G .508 -(cuted whene).15 F -.15(ve)-.25 G 3.008(ras).15 G .508(imple com-)-3.008 +F1(ar)3.338 E(g)-.37 E F0 .509(is e)3.228 F -.15(xe)-.15 G .509 +(cuted whene).15 F -.15(ve)-.25 G 3.009(ras).15 G .509(imple com-)-3.009 F 2.506(mand has a non\255zero e)144 204 R 2.506 (xit status, subject to the follo)-.15 F 2.506(wing conditions.)-.25 F (The)7.506 E F3(ERR)5.006 E F0 2.506(trap is not)4.756 F -.15(exe)144 @@ -7586,18 +7592,18 @@ F 2.506(mand has a non\255zero e)144 204 R 2.506 (ke)144 228 S(yw)-.05 E .549(ord, part of the test in an)-.1 F F1(if) 3.059 E F0 .549(statement, part of a command e)5.009 F -.15(xe)-.15 G .549(cuted in a).15 F F2(&&)3.049 E F0(or)3.049 E/F5 10/Symbol SF -3.049 E F0 .549(list, or if)3.049 F .578(the command')144 240 R 3.078 -(sr)-.55 G .578(eturn v)-3.078 F .578(alue is being in)-.25 F -.15(ve) --.4 G .578(rted via).15 F F2(!)3.078 E F0 5.577(.T)C .577 -(hese are the same conditions obe)-5.577 F .577(yed by the)-.15 F F2 -(err)144 252 Q(exit)-.18 E F0 3.03(option. If)3.03 F(a)3.03 E F1 -(sigspec)3.37 E F0(is)3.341 E F3(RETURN)3.031 E F4(,)A F0 .531 +3.049 E F0 .549(list, or if)3.049 F .577(the command')144 240 R 3.077 +(sr)-.55 G .577(eturn v)-3.077 F .577(alue is being in)-.25 F -.15(ve) +-.4 G .577(rted via).15 F F2(!)3.077 E F0 5.578(.T)C .578 +(hese are the same conditions obe)-5.578 F .578(yed by the)-.15 F F2 +(err)144 252 Q(exit)-.18 E F0 3.031(option. If)3.031 F(a)3.031 E F1 +(sigspec)3.371 E F0(is)3.341 E F3(RETURN)3.031 E F4(,)A F0 .531 (the command)2.781 F F1(ar)3.361 E(g)-.37 E F0 .531(is e)3.251 F -.15 -(xe)-.15 G .531(cuted each time a shell function).15 F .317 +(xe)-.15 G .53(cuted each time a shell function).15 F .316 (or a script e)144 264 R -.15(xe)-.15 G .317(cuted with the).15 F F2(.) 2.817 E F0(or)2.817 E F2(sour)2.817 E(ce)-.18 E F0 -.2(bu)2.817 G .317 (iltins \214nishes e).2 F -.15(xe)-.15 G 2.817(cuting. Signals).15 F -.316(ignored upon entry to)2.817 F .787 +.317(ignored upon entry to)2.817 F .787 (the shell cannot be trapped or reset.)144 276 R -.35(Tr)5.787 G .787 (apped signals that are not being ignored are reset to their).35 F 1.1 (original v)144 288 R 1.1(alues in a child process when it is created.) @@ -7605,69 +7611,69 @@ F 2.506(mand has a non\255zero e)144 204 R 2.506 (sigspec)3.94 E F0(is)3.91 E(in)144 300 Q -.25(va)-.4 G(lid; otherwise) .25 E F2(trap)2.5 E F0(returns true.)2.5 E F2(type)108 316.8 Q F0([)2.5 E F2(\255aftpP)A F0(])A F1(name)2.5 E F0([)2.5 E F1(name)A F0(...])2.5 E --.4(Wi)144 328.8 S .173(th no options, indicate ho).4 F 2.673(we)-.25 G -(ach)-2.673 E F1(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 -F2144 340.8 Q F0 .843(option is used,)3.343 F F2(type)3.343 E F0 +-.4(Wi)144 328.8 S .174(th no options, indicate ho).4 F 2.674(we)-.25 G +(ach)-2.674 E F1(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 +F2144 340.8 Q F0 .842(option is used,)3.342 F F2(type)3.342 E F0 .843(prints a string which is one of)3.343 F F1(alias)3.343 E F0(,).27 E F1 -.1(ke)3.343 G(ywor)-.2 E(d)-.37 E F0(,).77 E F1(function)3.343 E F0 -(,).24 E F1 -.2(bu)3.342 G(iltin).2 E F0 3.342(,o).24 G(r)-3.342 E F1 -(\214le)5.252 E F0(if)3.522 E F1(name)144.36 352.8 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 F1 -(name)2.947 E F0 .087(is not)2.767 F .119 +(,).24 E F1 -.2(bu)3.343 G(iltin).2 E F0 3.343(,o).24 G(r)-3.343 E F1 +(\214le)5.253 E F0(if)3.523 E F1(name)144.36 352.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 F1 +(name)2.946 E F0 .086(is not)2.766 F .118 (found, then nothing is printed, and an e)144 364.8 R .118 -(xit status of f)-.15 F .118(alse is returned.)-.1 F .118(If the)5.118 F -F22.618 E F0 .118(option is used,)2.618 F F2(type)2.618 E F0 .855 +(xit status of f)-.15 F .118(alse is returned.)-.1 F .119(If the)5.119 F +F22.619 E F0 .119(option is used,)2.619 F F2(type)2.619 E F0 .855 (either returns the name of the disk \214le that w)144 376.8 R .855 (ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F F1(name)3.715 E F0 -.855(were speci\214ed as a com-)3.535 F .641(mand name, or nothing if) -144 388.8 R/F6 10/Courier@0 SF .641(type -t name)3.141 F F0 -.1(wo)3.141 -G .641(uld not return).1 F F1(\214le)3.14 E F0 5.64(.T).18 G(he)-5.64 E -F23.14 E F0 .64(option forces a)3.14 F F3 -.666(PA)3.14 G(TH)-.189 -E F0 .112(search for each)144 400.8 R F1(name)2.612 E F0 2.612(,e)C -.15 -(ve)-2.862 G 2.613(ni).15 G(f)-2.613 E F6 .113(type -t name)2.613 F F0 --.1(wo)2.613 G .113(uld not return).1 F F1(\214le)2.613 E F0 5.113(.I) -.18 G 2.613(fac)-5.113 G .113(ommand is hashed,)-2.613 F F22.613 E -F0(and)144 412.8 Q F22.945 E F0 .445(print the hashed v)2.945 F -.444(alue, not necessarily the \214le that appears \214rst in)-.25 F F3 --.666(PA)2.944 G(TH)-.189 E F4(.)A F0 .444(If the)4.944 F F22.944 -E F0(option)2.944 E .265(is used,)144 424.8 R F2(type)2.765 E F0 .265 -(prints all of the places that contain an e)2.765 F -.15(xe)-.15 G .265 -(cutable named).15 F F1(name)2.765 E F0 5.265(.T).18 G .265 -(his includes aliases)-5.265 F .427(and functions, if and only if the) +.855(were speci\214ed as a com-)3.535 F .64(mand name, or nothing if)144 +388.8 R/F6 10/Courier@0 SF .64(type -t name)3.14 F F0 -.1(wo)3.14 G .641 +(uld not return).1 F F1(\214le)3.141 E F0 5.641(.T).18 G(he)-5.641 E F2 +3.141 E F0 .641(option forces a)3.141 F F3 -.666(PA)3.141 G(TH) +-.189 E F0 .113(search for each)144 400.8 R F1(name)2.613 E F0 2.613(,e) +C -.15(ve)-2.863 G 2.613(ni).15 G(f)-2.613 E F6 .113(type -t name)2.613 +F F0 -.1(wo)2.613 G .113(uld not return).1 F F1(\214le)2.613 E F0 5.113 +(.I).18 G 2.613(fa)-5.113 G .112(command is hashed,)-.001 F F2 +2.612 E F0(and)144 412.8 Q F22.944 E F0 .444(print the hashed v) +2.944 F .444(alue, not necessarily the \214le that appears \214rst in) +-.25 F F3 -.666(PA)2.945 G(TH)-.189 E F4(.)A F0 .445(If the)4.945 F F2 +2.945 E F0(option)2.945 E .265(is used,)144 424.8 R F2(type)2.765 +E F0 .265(prints all of the places that contain an e)2.765 F -.15(xe) +-.15 G .265(cutable named).15 F F1(name)2.765 E F0 5.265(.T).18 G .265 +(his includes aliases)-5.265 F .426(and functions, if and only if the) 144 436.8 R F22.926 E F0 .426(option is not also used.)2.926 F -.426(The table of hashed commands is not)5.426 F .548 -(consulted when using)144 448.8 R F23.048 E F0 5.548(.T)C(he) --5.548 E F23.048 E F0 .549 -(option suppresses shell function lookup, as with the)3.048 F F2 -(command)3.049 E F0 -.2(bu)144 460.8 S(iltin.).2 E F2(type)5 E F0 +.427(The table of hashed commands is not)5.426 F .549 +(consulted when using)144 448.8 R F23.049 E F0 5.549(.T)C(he) +-5.549 E F23.049 E F0 .548 +(option suppresses shell function lookup, as with the)3.049 F F2 +(command)3.048 E F0 -.2(bu)144 460.8 S(iltin.).2 E F2(type)5 E F0 (returns true if all of the ar)2.5 E(guments are found, f)-.18 E (alse if an)-.1 E 2.5(ya)-.15 G(re not found.)-2.5 E F2(ulimit)108 477.6 Q F0([)2.5 E F2(\255HST)A(abcde\214lmnpqrstuvx)-.92 E F0([)2.5 E F1 -(limit)A F0(]])A(Pro)144 489.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 +(limit)A F0(]])A(Pro)144 489.6 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 (ilable to the shell and to processes started by it, on systems).25 F -.943(that allo)144 501.6 R 3.443(ws)-.25 G .943(uch control.)-3.443 F -(The)5.943 E F23.443 E F0(and)3.443 E F23.444 E F0 .944 +.944(that allo)144 501.6 R 3.444(ws)-.25 G .944(uch control.)-3.444 F +(The)5.944 E F23.444 E F0(and)3.444 E F23.444 E F0 .943 (options specify that the hard or soft limit is set for the)3.444 F(gi) -144 513.6 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208 +144 513.6 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208 (hard limit cannot be increased by a non-root user once it is set; a so\ -ft limit may)2.709 F .425(be increased up to the v)144 525.6 R .425 -(alue of the hard limit.)-.25 F .426(If neither)5.425 F F22.926 E -F0(nor)2.926 E F22.926 E F0 .426 -(is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144 +ft limit may)2.708 F .426(be increased up to the v)144 525.6 R .426 +(alue of the hard limit.)-.25 F .425(If neither)5.426 F F22.925 E +F0(nor)2.925 E F22.925 E F0 .425 +(is speci\214ed, both the soft and)2.925 F .139(hard limits are set.)144 537.6 R .139(The v)5.139 F .139(alue of)-.25 F F1(limit)2.729 E F0 .139 (can be a number in the unit speci\214ed for the resource or one)3.319 F -.741(of the special v)144 549.6 R(alues)-.25 E F2(hard)3.241 E F0(,)A F2 +.742(of the special v)144 549.6 R(alues)-.25 E F2(hard)3.242 E F0(,)A F2 (soft)3.241 E F0 3.241(,o)C(r)-3.241 E F2(unlimited)3.241 E F0 3.241(,w) C .741(hich stand for the current hard limit, the current)-3.241 F .78 (soft limit, and no limit, respecti)144 561.6 R -.15(ve)-.25 G(ly).15 E 5.78(.I)-.65 G(f)-5.78 E F1(limit)3.37 E F0 .78 (is omitted, the current v)3.96 F .78(alue of the soft limit of the)-.25 -F .498(resource is printed, unless the)144 573.6 R F22.999 E F0 -.499(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .499 +F .499(resource is printed, unless the)144 573.6 R F22.999 E F0 +.499(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .498 (more than one resource is speci\214ed, the)2.999 F (limit name and unit are printed before the v)144 585.6 Q 2.5 (alue. Other)-.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F2 @@ -7683,8 +7689,9 @@ F0(The maximum size of \214les written by the shell and its children) (ed into memory)-.1 E F2144 693.6 Q F0 (The maximum resident set size)21.97 E F2144 705.6 Q F0 .791(The \ maximum number of open \214le descriptors \(most systems do not allo) -24.74 F 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F(be set\))180 -717.6 Q(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(65)200.665 E 0 Cg EP +24.74 F 3.291(wt)-.25 G .791(his v)-3.291 F .791(alue to)-.25 F +(be set\))180 717.6 Q(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(65) +200.665 E 0 Cg EP %%Page: 66 66 %%BeginPageSetup BP @@ -7705,16 +7712,16 @@ BP /Times-Italic@0 SF(limit)2.933 E F0 .343(is gi)3.523 F -.15(ve)-.25 G .343(n, it is the ne).15 F 2.843(wv)-.25 G .343 (alue of the speci\214ed resource \(the)-3.093 F F12.843 E F0 .343 -(option is display only\).)2.843 F .343(If no)5.343 F .176(option is gi) -144 208.8 R -.15(ve)-.25 G .176(n, then).15 F F12.676 E F0 .175 -(is assumed.)2.676 F -1.11(Va)5.175 G .175 -(lues are in 1024-byte increments, e)1.11 F .175(xcept for)-.15 F F1 -2.675 E F0 2.675(,w)C .175(hich is in)-2.675 F(seconds,)144 220.8 -Q F12.515 E F0 2.515(,w)C .015 -(hich is in units of 512-byte blocks, and)-2.515 F F12.516 E F0(,) -A F12.516 E F0(,)A F12.516 E F0 2.516(,a)C(nd)-2.516 E F1 -2.516 E F0 2.516(,w)C .016(hich are unscaled v)-2.516 F(al-)-.25 E -3.788(ues. The)144 232.8 R 1.287(return status is 0 unless an in)3.787 F +(option is display only\).)2.843 F .343(If no)5.343 F .175(option is gi) +144 208.8 R -.15(ve)-.25 G .175(n, then).15 F F12.675 E F0 .175 +(is assumed.)2.675 F -1.11(Va)5.175 G .175 +(lues are in 1024-byte increments, e)1.11 F .176(xcept for)-.15 F F1 +2.676 E F0 2.676(,w)C .176(hich is in)-2.676 F(seconds,)144 220.8 +Q F12.516 E F0 2.516(,w)C .016 +(hich is in units of 512-byte blocks, and)-2.516 F F12.516 E F0(,) +A F12.515 E F0(,)A F12.515 E F0 2.515(,a)C(nd)-2.515 E F1 +2.515 E F0 2.515(,w)C .015(hich are unscaled v)-2.515 F(al-)-.25 E +3.787(ues. The)144 232.8 R 1.287(return status is 0 unless an in)3.787 F -.25(va)-.4 G 1.287(lid option or ar).25 F 1.287 (gument is supplied, or an error occurs)-.18 F(while setting a ne)144 244.8 Q 2.5(wl)-.25 G(imit.)-2.5 E F1(umask)108 261.6 Q F0([)2.5 E F1 @@ -7724,15 +7731,15 @@ A F12.516 E F0(,)A F12.516 E F0 2.516(,a)C(nd)-2.516 E F1 (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 285.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 -297.6 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382 +297.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 309.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 321.6 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 333.6 Q +(mode)144.38 321.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 333.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 350.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 @@ -7742,50 +7749,50 @@ F14.155 E F0 1.655(is supplied, all alias de\214nitions are)4.155 F(remo)144 374.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 391.2 Q F0<5bad>2.5 E F1 -(fv)A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E -.15(Fo)144 403.2 S 3.106 -(re).15 G(ach)-3.106 E F2(name)3.106 E F0 3.106(,r).18 G(emo)-3.106 E -.906 -.15(ve t)-.15 H .606(he corresponding v).15 F .607 -(ariable or function.)-.25 F .607(If no options are supplied, or the) -5.607 F F1144 415.2 Q F0 .305(option is gi)2.805 F -.15(ve)-.25 G -.305(n, each).15 F F2(name)3.165 E F0 .305(refers to a shell v)2.985 F -2.805(ariable. Read-only)-.25 F -.25(va)2.805 G .304 -(riables may not be unset.).25 F(If)5.304 E F1144 427.2 Q F0 .459 -(is speci\214ed, each)2.959 F F2(name)3.319 E F0 .459 -(refers to a shell function, and the function de\214nition is remo)3.139 -F -.15(ve)-.15 G 2.96(d. Each).15 F .903(unset v)144 439.2 R .903 +(fv)A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E -.15(Fo)144 403.2 S 3.107 +(re).15 G(ach)-3.107 E F2(name)3.107 E F0 3.107(,r).18 G(emo)-3.107 E +.907 -.15(ve t)-.15 H .607(he corresponding v).15 F .607 +(ariable or function.)-.25 F .606(If no options are supplied, or the) +5.607 F F1144 415.2 Q F0 .304(option is gi)2.804 F -.15(ve)-.25 G +.304(n, each).15 F F2(name)3.164 E F0 .305(refers to a shell v)2.985 F +2.805(ariable. Read-only)-.25 F -.25(va)2.805 G .305 +(riables may not be unset.).25 F(If)5.305 E F1144 427.2 Q F0 .46 +(is speci\214ed, each)2.96 F F2(name)3.32 E F0 .459 +(refers to a shell function, and the function de\214nition is remo)3.14 +F -.15(ve)-.15 G 2.959(d. Each).15 F .902(unset v)144 439.2 R .902 (ariable or function is remo)-.25 F -.15(ve)-.15 G 3.402(df).15 G .902 -(rom the en)-3.402 F .902(vironment passed to subsequent commands.)-.4 F -(If)5.902 E(an)144 451.2 Q 4.284(yo)-.15 G(f)-4.284 E/F3 9/Times-Bold@0 -SF(RANDOM)4.284 E/F4 9/Times-Roman@0 SF(,)A F3(SECONDS)4.035 E F4(,)A F3 +(rom the en)-3.402 F .903(vironment passed to subsequent commands.)-.4 F +(If)5.903 E(an)144 451.2 Q 4.285(yo)-.15 G(f)-4.285 E/F3 9/Times-Bold@0 +SF(RANDOM)4.285 E/F4 9/Times-Roman@0 SF(,)A F3(SECONDS)4.035 E F4(,)A F3 (LINENO)4.035 E F4(,)A F3(HISTCMD)4.035 E F4(,)A F3(FUNCN)4.035 E(AME) -.18 E F4(,)A F3(GR)4.035 E(OUPS)-.27 E F4(,)A F0(or)4.035 E F3(DIRST) -4.285 E -.495(AC)-.81 G(K).495 E F0(are)4.035 E .329(unset, the)144 -463.2 R 2.829(yl)-.15 G .328(ose their special properties, e)-2.829 F +4.284 E -.495(AC)-.81 G(K).495 E F0(are)4.034 E .328(unset, the)144 +463.2 R 2.828(yl)-.15 G .328(ose their special properties, e)-2.828 F -.15(ve)-.25 G 2.828(ni).15 G 2.828(ft)-2.828 G(he)-2.828 E 2.828(ya) --.15 G .328(re subsequently reset.)-2.828 F .328(The e)5.328 F .328 +-.15 G .328(re subsequently reset.)-2.828 F .328(The e)5.328 F .329 (xit status is true)-.15 F(unless a)144 475.2 Q F2(name)2.86 E F0 (is readonly)2.68 E(.)-.65 E F1(wait)108 492 Q F0([)2.5 E F2 2.5(n.)C (..)-2.5 E F0(])A -.8(Wa)144 504 S .288 (it for each speci\214ed process and return its termination status.).8 F -(Each)5.288 E F2(n)3.148 E F0 .288(may be a process ID or a)3.028 F .722 +(Each)5.288 E F2(n)3.148 E F0 .287(may be a process ID or a)3.028 F .722 (job speci\214cation; if a job spec is gi)144 516 R -.15(ve)-.25 G .722 (n, all processes in that job').15 F 3.222(sp)-.55 G .722(ipeline are w) --3.222 F .722(aited for)-.1 F 5.722(.I)-.55 G(f)-5.722 E F2(n)3.582 E F0 -(is)3.462 E 1.265(not gi)144 528 R -.15(ve)-.25 G 1.265 -(n, all currently acti).15 F 1.565 -.15(ve c)-.25 H 1.265 -(hild processes are w).15 F 1.265(aited for)-.1 F 3.765(,a)-.4 G 1.266 -(nd the return status is zero.)-3.765 F(If)6.266 E F2(n)4.126 E F0 .457 +-3.222 F .722(aited for)-.1 F 5.722(.I)-.55 G(f)-5.722 E F2(n)3.583 E F0 +(is)3.463 E 1.266(not gi)144 528 R -.15(ve)-.25 G 1.266 +(n, all currently acti).15 F 1.566 -.15(ve c)-.25 H 1.265 +(hild processes are w).15 F 1.265(aited for)-.1 F 3.765(,a)-.4 G 1.265 +(nd the return status is zero.)-3.765 F(If)6.265 E F2(n)4.125 E F0 .456 (speci\214es a non-e)144 540 R .457 (xistent process or job, the return status is 127.)-.15 F .457 (Otherwise, the return status is the)5.457 F -.15(ex)144 552 S (it status of the last process or job w).15 E(aited for)-.1 E(.)-.55 E /F5 10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 568.8 Q F0(If)108 580.8 Q -F1(bash)4.396 E F0 1.896(is started with the name)4.396 F F1(rbash)4.397 -E F0 4.397(,o)C 4.397(rt)-4.397 G(he)-4.397 E F14.397 E F0 1.897 -(option is supplied at in)4.397 F -.2(vo)-.4 G 1.897 -(cation, the shell becomes).2 F 3.446(restricted. A)108 592.8 R .945 -(restricted shell is used to set up an en)3.446 F .945 -(vironment more controlled than the standard shell.)-.4 F(It)5.945 E +F1(bash)4.397 E F0 1.897(is started with the name)4.397 F F1(rbash)4.397 +E F0 4.397(,o)C 4.397(rt)-4.397 G(he)-4.397 E F14.397 E F0 1.896 +(option is supplied at in)4.397 F -.2(vo)-.4 G 1.896 +(cation, the shell becomes).2 F 3.445(restricted. A)108 592.8 R .945 +(restricted shell is used to set up an en)3.445 F .946 +(vironment more controlled than the standard shell.)-.4 F(It)5.946 E (beha)108 604.8 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 32.5<8363>108 @@ -7799,7 +7806,7 @@ E F1 -.3(BA)2.5 G(SH_ENV).3 E F0 32.5<8373>108 655.2 S (iltin command).2 E 32.5<8353>108 688.8 S .351 (pecifying a \214lename containing a slash as an ar)-32.5 F .351 (gument to the)-.18 F F12.851 E F0 .351(option to the)2.851 F F1 -(hash)2.852 E F0 -.2(bu)2.852 G .352(iltin com-).2 F(mand)144 700.8 Q +(hash)2.851 E F0 -.2(bu)2.851 G .351(iltin com-).2 F(mand)144 700.8 Q 32.5<8369>108 717.6 S(mporting function de\214nitions from the shell en) -32.5 E(vironment at startup)-.4 E(GNU Bash-4.0)72 768 Q(2008 July 6) 150.675 E(66)200.665 E 0 Cg EP @@ -7826,8 +7833,8 @@ F12.5 E F0(and)2.5 E F12.5 E F0(options to the)2.5 E F1 (These restrictions are enforced after an)108 201.6 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 218.4 R -.15 -(xe)-.15 G 1.566(cuted \(see).15 F/F2 9/Times-Bold@0 SF 1.566 -(COMMAND EXECUTION)4.066 F F0(abo)3.816 E -.15(ve)-.15 G(\),).15 E F1 +(xe)-.15 G 1.567(cuted \(see).15 F/F2 9/Times-Bold@0 SF 1.567 +(COMMAND EXECUTION)4.067 F F0(abo)3.817 E -.15(ve)-.15 G(\),).15 E F1 (rbash)108 230.4 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 247.2 Q/F4 @@ -7857,20 +7864,20 @@ F0(Brian F)108 520.8 Q(ox, Free Softw)-.15 E(are F)-.1 E(oundation)-.15 E(bfox@gnu.or)108 532.8 Q(g)-.18 E(Chet Rame)108 549.6 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@po.cwru.edu)108 561.6 Q F3 -.11(BU)72 578.4 S -2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .567(If you \214nd a b)108 +2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .568(If you \214nd a b)108 590.4 R .568(ug in)-.2 F F1(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 .568(ug, and)-.2 F 5.626 +(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 602.4 R 5.625(ersion of)-.15 F F1 -(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 +(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 F4(ftp://ftp.gnu.or)108 614.4 Q(g/pub/bash/)-.37 E F0 -(.)A .41(Once you ha)108 631.2 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 643.2 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 +(.)A .411(Once you ha)108 631.2 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 F4(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 643.2 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 655.2 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 F1(gnu.bash.b)2.5 E(ug) -.2 E F0(.)A(ALL b)108 672 Q(ug reports should include:)-.2 E(The v)108 @@ -7891,27 +7898,27 @@ E(ug)-.2 E/F1 10/Times-Italic@0 SF(bashb)108.27 124.8 Q(ug)-.2 E F0 141.6 Q(ug reports concerning this manual page should be directed to)-.2 E F1 -.15(ch)2.5 G(et@po.cwru.edu).15 E F0(.).25 E/F2 10.95/Times-Bold@0 SF -.11(BU)72 158.4 S(GS).11 E F0(It')108 170.4 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 187.2 R 1.868(ferences between)-.25 F/F3 +(oo big and too slo)-2.5 E -.65(w.)-.25 G 1.869 +(There are some subtle dif)108 187.2 R 1.869(ferences between)-.25 F/F3 10/Times-Bold@0 SF(bash)4.369 E F0 1.869(and traditional v)4.369 F 1.869 -(ersions of)-.15 F F3(sh)4.369 E F0 4.369(,m)C 1.869 -(ostly because of the)-4.369 F/F4 9/Times-Bold@0 SF(POSIX)108 199.2 Q F0 +(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 199.2 Q F0 (speci\214cation.)2.25 E(Aliases are confusing in some uses.)108 216 Q (Shell b)108 232.8 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 249.6 R .389 +re not handled gracefully when)108 249.6 R .39 (process suspension is attempted.)108 261.6 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 273.6 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 285.6 Q .955 -(Commands inside of)108 302.4 R F3($\()3.455 E F0(...)A F3(\))A F0 .956 +(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 273.6 R .192(It suf)5.192 F .192(\214ces to \ +place the sequence of commands between parentheses to force it into a) +-.25 F(subshell, which may be stopped as a unit.)108 285.6 Q .956 +(Commands inside of)108 302.4 R F3($\()3.456 E F0(...)A F3(\))A F0 .956 (command substitution are not parsed until substitution is attempted.) -3.455 F .956(This will)5.956 F .567 +3.456 F .955(This will)5.955 F .567 (delay error reporting until some time after the command is entered.)108 -314.4 R -.15(Fo)5.567 G 3.067(re).15 G .567 +314.4 R -.15(Fo)5.567 G 3.067(re).15 G .568 (xample, unmatched parentheses,)-3.217 F -2.15 -.25(ev e)108 326.4 T 2.5 (ni).25 G(nside shell comments, will result in error messages while the\ construct is being read.)-2.5 E(Array v)108 343.2 Q diff --git a/doc/bashref.dvi b/doc/bashref.dvi index de2700151..b4ab8b5cc 100644 Binary files a/doc/bashref.dvi and b/doc/bashref.dvi differ diff --git a/doc/bashref.log b/doc/bashref.log index 81055da85..dca1c3c9b 100644 --- a/doc/bashref.log +++ b/doc/bashref.log @@ -1,4 +1,4 @@ -This is TeX, Version 3.141592 (Web2C 7.5.4) (format=tex 2008.4.8) 24 JUL 2008 09:12 +This is TeX, Version 3.141592 (Web2C 7.5.4) (format=tex 2008.4.8) 5 AUG 2008 10:31 **/usr/homes/chet/src/bash/src/doc/bashref.texi (/usr/homes/chet/src/bash/src/doc/bashref.texi (./texinfo.tex Loading texinfo [version 2003-02-03.16]: Basics, @@ -352,4 +352,4 @@ Here is how much of TeX's memory you used: 19 hyphenation exceptions out of 8191 15i,8n,11p,273b,474s stack positions out of 5000i,500n,6000p,200000b,5000s -Output written on bashref.dvi (162 pages, 632652 bytes). +Output written on bashref.dvi (162 pages, 632680 bytes). diff --git a/doc/bashref.pdf b/doc/bashref.pdf index 072255376..156c64b61 100644 --- a/doc/bashref.pdf +++ b/doc/bashref.pdf @@ -13,7 +13,7 @@ endobj /Subtype/Type1 /Name/F1 /FontDescriptor 9 0 R -/BaseFont/RYABOS+CMBX12 +/BaseFont/MCPWEB+CMBX12 /FirstChar 33 /LastChar 196 /Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 @@ -35,7 +35,7 @@ endobj /Subtype/Type1 /Name/F2 /FontDescriptor 12 0 R -/BaseFont/MRDZHP+CMR10 +/BaseFont/KOHAEC+CMR10 /FirstChar 33 /LastChar 196 /Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 @@ -64,7 +64,7 @@ endobj /Subtype/Type1 /Name/F3 /FontDescriptor 16 0 R -/BaseFont/JCYCIE+CMTT10 +/BaseFont/BPPISA+CMTT10 /FirstChar 33 /LastChar 196 /Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 @@ -107,7 +107,7 @@ endobj /Subtype/Type1 /Name/F4 /FontDescriptor 25 0 R -/BaseFont/AQLFWE+CMSL10 +/BaseFont/DOHDCQ+CMSL10 /FirstChar 33 /LastChar 196 /Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 @@ -137,7 +137,7 @@ endobj /Subtype/Type1 /Name/F5 /FontDescriptor 29 0 R -/BaseFont/TQNPIW+CMSY10 +/BaseFont/YDEPED+CMSY10 /FirstChar 33 /LastChar 196 /Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 @@ -191,7 +191,7 @@ endobj /Subtype/Type1 /Name/F6 /FontDescriptor 37 0 R -/BaseFont/CMTOIX+CMBXTI10 +/BaseFont/PUOJLV+CMBXTI10 /FirstChar 33 /LastChar 196 /Widths[386.1 620.6 944.4 868.5 944.4 885.5 355.6 473.3 473.3 591.1 885.5 355.6 414.4 @@ -214,7 +214,7 @@ endobj /Subtype/Type1 /Name/F7 /FontDescriptor 40 0 R -/BaseFont/HQMHFX+CMTI10 +/BaseFont/JUVMCM+CMTI10 /FirstChar 33 /LastChar 196 /Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 @@ -355,7 +355,7 @@ endobj /Subtype/Type1 /Name/F8 /FontDescriptor 60 0 R -/BaseFont/DNNGPG+CMCSC10 +/BaseFont/HQTUZE+CMCSC10 /FirstChar 33 /LastChar 196 /Widths[319.4 552.8 902.8 552.8 902.8 844.4 319.4 436.1 436.1 552.8 844.4 319.4 377.8 @@ -528,7 +528,7 @@ endobj /Subtype/Type1 /Name/F9 /FontDescriptor 83 0 R -/BaseFont/LMJXGX+CMSLTT10 +/BaseFont/ALOWJJ+CMSLTT10 /FirstChar 33 /LastChar 196 /Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 @@ -2666,7 +2666,7 @@ endobj /Subtype/Type1 /Name/F10 /FontDescriptor 346 0 R -/BaseFont/XTTDRJ+CMTT12 +/BaseFont/MSHGRM+CMTT12 /FirstChar 33 /LastChar 196 /Widths[514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 @@ -3170,7 +3170,7 @@ endobj 412 0 obj << /Filter[/FlateDecode] -/Length 3038 +/Length 3064 >> stream xڕ]sã¶ñ½¿B/7GO,†À¯ô)I›Ìe¦ÉCÝé$q:¥%ØbN"UB<×ÿ¾ûiçú" `±Øï]l’8I6Oúû~óÍݗߩMšÄUº¹{ܤå&Õqe6wù5úöPŸ/¶¿Ùj­¢â«›­1YôC÷€}Ûµ7ªˆ.}w¼ÙªR&*‹›ßî~øò»t“±"„[8'ÝlM—„³¸Ùf¹,EFXtÂXhoHŒAJ¶:‰SE›ïƒmeíðè‘<ì·œ³2ÿ|¨/<úN*«hÒ«Ë"jÜ-\)QÑ¡»Qyô,PÙ÷Œ‹»þ£_T·{žÀՅ_ýM팾>yÂñÌ âìþ¸tx¹ÍVn,N3ºQ½ÛY瘡ͅ&z¬wͱ¹4ÖÅ#?M¬ ò„Ù©UœÌÏ8]ãhêï R›[å®ÞlUW9¡b F3§rÁ¨¨·¶GâŒÁ«Ð¢ËÁ2 ~@bñê/2#+œ=ÚÝ¥ù„Sö(“îҝyß}äcœm÷÷7‚žÑêÈþ×î†K¤¼{äÿsßÑd›u¯qe¥ @@ -3186,10 +3186,9 @@ j šëøŒ?”}_:‘4gÿ9W6tˆ½ }+›g ¶7¨ åe¦Jd&¯kÿ²·Ç½çˍ'ò¨ÐF,.ÍÄâîšäˆ{ï¯û22Å¥ÓDa+‚üù™©YStû3 Ϲï³X³H &‰ÏLÌ/¯˜ÏÖú•góŽ•ðIÂÍËdô厡l>©w渮=²TB .#‘Lñ÷–µŽëXX0ˆ“ mA§ NØýülÑ.ìî`Wà W&¥È†`ª¡h›óp䯐IO°‘H… ©¤Lµ/ES*änù°Á±®¥zµs¢òg!><-eœM®Cú&BbÇô,;Œ8‹rÀ#©Žª%ÃWØÌný0‹Ö·œl¬‘ ;µ§ôq•Ò2[PšpÃÿW(M4Sš¦4ñüMÂ,ç–ûd˜‰ø 6š|ŠÕ›ã²—¯Š©¥§ÇÖ¸^´Œx8åÝ}J Vø^Úª)b£?Óç"`qý‘b¶ãOKIéî"žNvíìniên.s[¦µã§ä0¨÷û«ÒZ(vÍ^f戩 „t \ W¾— Ž !Č BÈ,Ÿï† [,fPÜh5ދq8«lÝZ’7J]¼Yb’Ò¸$¹vÿJÖVI™YVHŠ–Qû¿ÇF×ÔKá j¥d¿•°v¼“H€z9˜ƒ)ç -§¦TVˆûõ†1—ùóÀëpœ­E^eqêÕàÝB  ˆÓ“ÈÙìÐèZûaçŸt‘Å3Ôc‡ˆyßÖ'û -'å%_m^“œ'qáL» ¸Š½ÖNmbD<…Xܓ¿5ÂeSpkÉä«a­šLñ]»j+ž¢÷hw¥1Z÷´9ºã«‡£|VýîÝÙ#â`­^E¦Ó8õÕã»/>™W»‘!¹Xõzïå¬ËÑë° }wIKûF—~/Fò°ë4º*çɳ‘”9Ø*}YI–|X!ħ|0ld5ۖ¬íÖ°%ŠûÕÐJ }ªk+n®â¿8¯ü*…®6[¯8^Ñ¥ÂÄyú–Á©Ðëbê%O3€®íø¿ÞA@8×ÄÖqŠÒM& -ÄÁí°oPì¨_I­ Üzt‚Dž(9C*|-½®°µ/‰ôUûJë·~³Rt]c¶m?5Ýàx‡X~X¢.B[2 ¶Ýñ[és\·dªª8÷Üy·}[«…4ªì4¹Ê^Îl„¼®å‡<®àO'mþ4NА!¢·f-–*©ù?Ì-ñ¶›®Ûn’æ-ǎ7Ï*;zø2a’iè‰uÏ`¶ït2ùT@‰wˆHJ—-Cƀ -ë|yŒ%)K,@BÏi¹lüKI.tœ7aš$ˆ1£ÄT©õt®šZbëOvEœ]eL÷7˜‹ùÇwÄ<Óc<’a`@©°Â”ÎüälTÝ«<©Ÿž¨–‚%ò˜ƒ‹yïŠN@œ*½R|ñfd9Á›.ZXê8/æ}»É‚Ø*Ó+ázíÕjû¦ßá ý×»?ýç ‹ +§¦TVˆûõ†1—ùóÀëpœ­E^eqêÕàÝB  ˆÓ“ÈÙìÐèZûaçŸt‘Å3Ôc‡H²Waû«™bWû¦ŽÓÐ ¢U:®Ê =ë÷.‹H85“Q©îR”U(*y¨ÉW;×<ɓ¸ð(ÛŁUìÍbêC› á)$Þº1š‚{W&_›ÕdëïÚUcô½GÃ.•Èк— Ò_=¤€ èYúîÝ<â`³YE¦Ó8õåé»/>™×ë‘!¹¹ý}ïI—£[cMòí+-ý!]ú½˜*„mp$ÓU9Ï΍ääÁViüHÒðëÌ !>§„a#«Ùx`m¯°†Å.QܯÆnz1 Â¹âî-þ‹w̯b\èË󱷋ã]*Lœ§oY´ +Ý:ævòöèڎÿëDœsMl}¯+íj¢`Ŕ©×„[NÈ([d™àsìu ¯}Í¥¯úcZ¾·œ•¢ëÓyû©éÇ;ĵ”%ê"ôá%Ó`Û?â•>¹ÁuKÖ©ªŠsϝwÛ·µZH£ÒQ“/îåÌFÈëZ~)äbþDpòސÆI2DôÖ¬k25ÿ‡¹%ÞvÓuÛMòϼ%ãØÑë©ñikG/k&Ìb ½áîÌöN&Ÿ +(ñ;éBmô¡eȱa¯¿±æe‰H轎 ÷‘Ÿbé ƒ Ý'f˜‡ bÌ)óUj=_¬¦žÛú›`gW)Ùý &{þu1ÏôäWP®­°ÃåÃ?¿i•D÷*Oê§'*Ö`‰¼ábÞ»¢§J¯_¼º…DÎ §Ëƒ–:΋ycp²° xËkêô ¹^Ä{µÚ¾éw8JÿõîOÿ%¼$X endstream endobj 413 0 obj @@ -3317,7 +3316,7 @@ endobj /Subtype/Type1 /Name/F11 /FontDescriptor 429 0 R -/BaseFont/GOKYXE+CMSY9 +/BaseFont/SWZQGN+CMSY9 /FirstChar 33 /LastChar 196 /Widths[1027.8 513.9 513.9 1027.8 1027.8 1027.8 799.4 1027.8 1027.8 628.1 628.1 1027.8 @@ -3340,7 +3339,7 @@ endobj /Subtype/Type1 /Name/F12 /FontDescriptor 432 0 R -/BaseFont/BRJHXW+CMR8 +/BaseFont/NTUIRZ+CMR8 /FirstChar 33 /LastChar 196 /Widths[295.1 531.3 885.4 531.3 885.4 826.4 295.1 413.2 413.2 531.3 826.4 295.1 354.2 @@ -5138,7 +5137,7 @@ endobj /Subtype/Type1 /Name/F13 /FontDescriptor 659 0 R -/BaseFont/PTTIWW+CMTT9 +/BaseFont/XWDNZO+CMTT9 /FirstChar 33 /LastChar 196 /Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 @@ -5213,7 +5212,7 @@ endobj /Subtype/Type1 /Name/F14 /FontDescriptor 670 0 R -/BaseFont/YOOZZS+CMTI9 +/BaseFont/PKXZUV+CMTI9 /FirstChar 33 /LastChar 196 /Widths[314.8 527.8 839.5 786.1 839.5 787 314.8 419.8 419.8 524.7 787 314.8 367.3 @@ -5235,7 +5234,7 @@ endobj /Subtype/Type1 /Name/F15 /FontDescriptor 673 0 R -/BaseFont/VPLCCO+CMR9 +/BaseFont/JBWKPP+CMR9 /FirstChar 33 /LastChar 196 /Widths[285.5 513.9 856.5 513.9 856.5 799.4 285.5 399.7 399.7 513.9 799.4 285.5 342.6 @@ -5517,7 +5516,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-53 -251 1139 750] -/FontName/RYABOS+CMBX12 +/FontName/MCPWEB+CMBX12 /ItalicAngle 0 /StemV 109 /FontFile 8 0 R @@ -5534,7 +5533,7 @@ endobj >> stream xÚí·Stn_·æ›ÛæÛ¶mÛycÛY±mcÅvVlÛZY±m'õÿ¾]»ªÕÞusÚ¹;íÌy3{ïÏ|úoô1çÅ 'VR¥6s0J8Ø»Ò330óDåE´˜YÌ L°ää¢Î@cW+{1cW €™›› ìf`a0sð°²ñ°³Á’D½œ­,,]T¢ÔÿRq„í€ÎV¦ÆöycWK Ý?&¦Æ¶US+ « lk Pù×+.  ÐÙhÆ ËÌ 0³2u˜-¬ìaÿ%moîàü´™›ã–܁Î.ÿp¨þá¤üCiæ`oë0šÃ2*8üÓ øËÿc¬ÿ Õ5—p³µU0¶û—ý¿õßêÆvV¶^ÿSá`çèæ -tÈ;˜íÿ«Tøp"¶ÿ­´«±­•©°½…-Àô)+ +O ™’•«©%ÀÜØÖøï<ÐÞì¿"ü3¶0ªh ‹(ªÒþÏ-ýª’±•½«š—ãÿòý—üß1óÿŽÿ³•'@—‰‰‰ùá?÷>éÿ—nâö¦fVöUWc{3cg³ÿ•øïT""ž>ôì¬zvf33+7€“ÉïÿªÛ[9¹¥ÅìLLLœÜÿΚº9;í]ÿýü³âÿŒÍ­þ™è 4…ÍÎÁ°úaHG@ûhôзL¢Ù1½¢Û]r™ÁþT€9;vg Á°jj£ô°†ðv®“þBE$Ñà/ϛÐ÷d0èå…[ý“Æ|²Kw&ö˜~­E”±÷ +tÈ;˜íÿ«Tøp"¶ÿ­´«±­•©°½…-Àô)+ +O ™’•«©%ÀÜØÖøï<ÐÞì¿"ü3¶0ʋ*iŠ‹ÐþÏ-ýª’±•½«š—ãÿòý—üß1óÿŽÿ³•'@—‰‰‰ùá?÷>éÿ—nâö¦fVöUWc{3cg³ÿ•øïT""ž>ôì¬zvf33+7€“ÉïÿªÛ[9¹¥ÅìLLLœÜÿΚº9;í]ÿýü³âÿŒÍ­þ™è 4…ÍÎÁ°úaHG@ûhôзL¢Ù1½¢Û]r™ÁþT€9;vg Á°jj£ô°†ðv®“þBE$Ñà/ϛÐ÷d0èå…[ý“Æ|²Kw&ö˜~­E”±÷ Ón¨ÛD[Àîc´ugVàêØs;LŒÓú¾<êß³nV­CÛ3¾ÖtuØ Âcº,î!›D›køTi?#j¦ƒ†íUςægÄú¥~/D¯°Ø,esœ€2ÿØ[«G$itcа0qN‘©Õ¢‚’Þ„ú1³Àß ·Š±ö½A0-.‹¥à›Þ’ìx䪜››Mº‚ÛB¶¬NFS#]{’¢ŸÙžY–s,^kóyDú Áê$Æ$-yšÁã.ƒî#Gc I›ª9Ðøyˆã9÷€`˜jÀÎíØ”4« k9¥Q¦¿Ý °erí9‡âþÓUä\zDýî}F§[Öqï#W’ºí €g§N¿84Û&ÉïTsy<™j˜ú¡zZ¶—Y~V”m5ßJÒp3û¡E*喵ޢ4 ©Œ ãø'ߕ÷üZì©6émfØ]+3'ú†ÈÈÜۤÏÊï· "ÒF0¨ ˆ2‡;­½Ž:4túÝåÎ-ïEmq€·Êkß¾|(§ÚKÛɪ›bæÒ,ÅÚíÎÿr0zdùýM^Ù[Œï*› A¶2HæÃ¤2¥o~ÛõRb-Ø,q¦å³ÖÃDî®2³Ãnu¹½FÅ«³€þ³†l-#v¬p_@ï`(>ïˆxxF ê”é%áž)´ùx„‘‘åú)iÚù#^Ó&@âƒfÉw¬P>©ó‹²Û¥É´<޵ü´Tgˆø˜˜–•71ÕqXÊ¥8„×|‡µÇŽ."5*Þ±,Ýþ†àP•nagõƒÄþR UŸc€¸'`æ*"&‹vÃb™_h€ŽŽ’-þ @@ -5591,7 +5590,7 @@ gi ¤ófÀÀó%UÊ^ڇ¾+¸EÞ6\×ýÈ'Œ¾'*ªâ{õþÉ?é׸ ±µ&o™GiÒ±ÊëY-v¸Ü &A‡qä}¿SсšüZ!K¦_>w¨;ÊÓÆ¶R<¤ÇF󳏺Iq÷q±¸ZÊÆÞú_=îmxM 6÷“Ë{pŸ{dsž!z×-:qû‰œ)ˆ1ÿ¾Í<Ø]ä,Õì6œ£ñ¿#ZUÌsç“:K­×V· -û^&4µ£ÃàWÑZ#`¸ûÜ£ž¼®¶2Í×\cÄvyn¿)x½éiÆ Þ`WÁ*šõñòX;ÊöÏ&Ɇêíñ=¥ò¼&Ì ¦`敵ÙÓVeªZÓJ8õîßুà/FCüŠŸgâ9÷Í7 vó5b®÷`]|úЇ ­>ÙZI“ž¥EsÅÞ3-$«x´ o<¿¬)ÐОýl=£76q¤ÿùÍe¬MJ©ï½Q¥`yùi‰ÕáJ¿ŸŽâþrtqS D(î‡b¤%üvLÏ-¼!сÝÀu0ÏÄXÓËú61O\ØÿèW½æ_‚^(PâJÎvïV$ÎPû9@ÐsF \ª|Â…øÄn»Î/q‹=G:Ûð»ûÝ ÓÙ­•}Ž‹Êª- "É.»‰§J­ j¥à872~§™»••ƹ\ÿÉ„)•ÙZI“ž¥EsÅÞ3-$«x´ o<¿¬)ÐОýl=£76q¤ÿùÍe¬MJ©ï½Q¥`yùi‰ÕáJ¿ŸŽâþrtqS D(î‡b¤%üvLÏ-¼!сÝÀu0ÏÄXÓËú61O\ØÿèW½æ_‚^(PâJÎvïV$ÎPû9@ÐsF \ª|Â…øÄn»Î/q‹=G:Ûð»ûÝ ÓÙ­•}Ž‹Êª- "É.»‰§J­ j¥à872~§™»••ƹ\ÿÉ„)•> stream xڔ·cÐ(ÝÒ¦ùØû±mÛ¶mÛ¶mÛ¶mÛ¶mÛÞóžsæë‰9Ý:jEÅÊÌ»r]••µ¢Š„@^‰FÀØÎÐDÔÎ֙†–_HF‘Ÿ–ž^Š„DÈÑÄÀÙÂÎVØÀلŸƒƒ_ÔÄðŸÉ?ƒ“…™“… -Š_ÈÎÞÃÑÂÌÜŸ\ˆâ_*6|G #[|gs›’Xã+ÙY˜8{Ðâã X[ã+þë'|E'GWcZ((|c #g|C3 [(ºQIؚÚá³ýÇmìbÿ?!WG§¸ðÉÿMJÿ§±­µ¾±‰)¬Ý?ë™üCó öàúïä¢.ÖÖ²6ÿJÿ¯Zýoa kÿW`gcïâlâˆ/cglâhûßR5“ÿ°É˜[¸ØüwTÂÙÀÚÂHÀÖÌÚŸþ?. 'Q wcy g#s|Sk'“ûMlÿâŸÊýNFQXS\žê?õ?Ay [geûÿ•ö_êÛ ÿŸýOy-Üñµèÿ©/Ã?ÂŽÿ™éü×b"¶FvƶføJζƎÆÿËñ¿C +Š_ÈÎÞÃÑÂÌÜŸ\ˆâ_*6|G #[|gs›’Xã+ÙY˜8{Ðâã X[ã+þë'|E'GWcZ((|c #g|C3 [(ºQIؚÚá³ýÇmìbÿ?!WG§¸ðÉÿMJÿ§±­µ¾±‰)¬Ý?ë™üCó öàúïä¢.ÖÖ²6ÿJÿ¯Zýoa kÿW`gcïâlâˆ/cglâhûßR5“ÿ°É˜[¸ØüwTÂÙÀÚÂHÀÖÌÚŸþ?. 'Q wcy g#s|Sk'“ûMlÿâŸÊýNJN\@Dˆê?õ?Ay [geûÿ•ö_êÛ ÿŸýOy-Üñµèÿ©/Ã?ÂŽÿ™éü×b"¶FvƶføJζƎÆÿËñ¿C Ú¹{Ñ0²0àÿsú§Ïèé9ð9X9|þÿJ[  a|zzz6¦{\MlÿÝ ÿÜñÿئÿÔÇÄÄÝÄÊ_IA†üš|•U¯Š”>BÇ\»ê _J·&]/컺žšsX6£¬Âw#yx›1Šü?nGüòSY‘Bº aÐä@댰ÍÖÔÊVÖßð`Ywi«7ötà hK@'0o_ÁE‹'°f CÓÝo.]ŸÈ:­û_›þy§„=¹I}ôíÃLª8 *ŠG NoXÓÝØumä‡w 3?…²sé‘ Z¸[™€9¿î˜Z¯A`ޤþhÍÎݘnI'ÚàÁ¥ÞµXęÈ"o‘L]+?E‹—x÷ª¢^QÌáhCí ’¦ØþXé\]¿›4KUùœ@9á¬ìiÙ 5{”¢Ì¤»¤WôŒöK°úÄ¡àÓcÖýŠOB5ëú*žñA8ÀÖì÷¿2՟Ùʽ+E•¼% ¿©½FäB­Ý ­(ê˜é:-V¸€“ú·“‰sځק´›K`ë,Ìá„üpЦu&q”'¶óqQðjèàYNUˆåsȓÖ÷ܔâ#«„¦u(’F.õÿdUóÎ2#Ә›•¥Œ0¡Y5>!8±šáÒ E¦¡úÒVË2\¢ÖPÄ_2ðØÚœWYÊð—!yº<¥DünªÖ ¯~Lû³ûÆ-[Œ|Dêr£ôHÎò/ñFaÿõÁ]¯ª¯Vki)„RHñJVºiÛ<©ûI(¶IŠÛ/`2À –¹"z¸µ¡¤¼Ä¨'.QdPUÒÙ&í\…5Aô§p]L¾ø Qs‘òŽ{çp×LüՕhpςI `p§ømaÃS[Œ5ü !kmè&Š߯Ÿ[¡H­ï;q]ëÅU-Qƒ*2&–Žìù·´‰RÀ Ä:”óG±“‡8W_O6™ÊwD¯ô§‹¯a%ԕâúD©&~qŠûN¬Š×^ö¤„ ºc¢­ÉŸ>¦ø› <•h Yè õ2·+6öŠí#gô´­iׁ1’ŽÌÚÔ"ì& ?µ† ØbI¡ts…Z.söAÉ4™¹Z/õ=Q?²üÔvƒð»ß:DäÎ Kp¦ãƽŸ¶]Acð ­­Óû/»ÅdÎhJô<öJ¸yxícœY¿ú&âIfp˜Ø%dª½D¼µ?¡Â}©mñŒ 4^Í_pê=Æb»#䣜¡Êqm*}2k27„‡èŽ»¸;ˆÜ/óañ-òØ¡µæ@‘I3ºÖ^ÿÏd<ûO_Ϋ~æ¸{³–ahm’@o×µå7ŸÍŠa0\þmÍÛóa¥•ï–=žäç¯ß8Ý«mëË[bÉÚ¤ z³Ýq³go]Ü/T£pzñù-·þÿuŸ~%-ÌÎ:9~rêûº…o–Tº Š×”¼ÿdbBÞâ«G¢Ë·X¯–Ùµåre&ƒ<—Ëoƒ`öóѲ•:^uëg¦[ºe¶¦ñóô´Pž½ tŸæ_nK+«­ÞU«l²l?í6Z û¦s¥²SWúµ®Ù2ÙòŸv¿Œ®¯˜2ûX­ô™÷1¾IR>·'ü[Í}Àù…ߏ;Óonœ$¶|­ñ>™ùÁÊ©Ëf¿s­Úh¾êÉq“Éî ~85-]õP¥ýÐ.é& îb¹ïó×>ª1ñ½(h¶ý™˜/ÎÅÛwx´|Gxû‰“b­]zA+Ï?kª›iû`Û<ÿG›–’V~óÅ`뎟 ìJ'eØeg_Qÿ{?ڀBÀ5jÀ°0 9'5±¨$?7±(›‹ çt^0 +¦åt)> Qs‘òŽ{çp×LüՕhpςI `p§ømaÃS[Œ5ü !kmè&Š߯Ÿ[¡H­ï;q]ëÅU-Qƒ*2&–Žìù·´‰RÀ Ä:”óG±“‡8W_O6™ÊwD¯ô§‹¯a%ԕâúD©&~qŠûN¬Š×^ö¤„ ºc¢­ÉŸ>¦ø› <•h Yè õ2·+6öŠí#gô´­iׁ1’ŽÌÚÔ"ì& ?µ† ØbI¡ts…Z.söAÉ4™¹Z/õ=Q?²üÔvƒð»ß:DäÎ Kp¦ãƽŸ¶]Acð ­­Óû/»ÅdÎhJô<öJ¸yxícœY¿ú&âIfp˜Ø%dª½D¼µ?¡Â}©mñŒ 4^Í_pê=Æb»#䣜¡Êqm*}2k27„‡èŽ»¸;ˆÜ/óañ-òØ¡µæ@‘I3ºÖ^ÿÏd<ûO_Ϋ~æ¸{³–ahm’@o×µå7ŸÍŠa0\þmÍÛóa¥•ï–=žäç¯ß8Ý«mëË[bÉÚ¤ z³Ýq³go]Ü/T£pzñù-·þÿuŸ~%-ÌÎ:9~rêûº…o–Tº Š×”¼ÿdbBÞâ«G¢Ë·X¯–Ùµåre&ƒ<—Ëoƒ`öóѲ•:^uëg¦[ºe¶¦ñóô´Pž½ tŸæ_nK+«­ÞU«l²l?í6Z û¦s¥²SWúµ®Ù2ÙòŸv¿Œ®¯˜2ûX­ô™÷1¾IR>·'ü[Í}Àù…ߏ;Óonœ$¶|­ñ>™ùÁÊ©Ëf¿s­Úh¾êÉq“Éî ~85-]õP¥ýÐ.é& îb¹ïó×>ª1ñ½(h¶ý™˜/ÎÅÛwx´|Gxû‰“b­]zA+Ï?kª›iû`Û<ÿG›–’V~óÅ`뎟 ìJ'eØeg_Qÿ{?ڀBÀ5jÀ°0 9'5±¨$?7±(›‹ ï ^ endstream endobj 16 0 obj @@ -5687,7 +5686,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-4 -235 731 800] -/FontName/JCYCIE+CMTT10 +/FontName/BPPISA+CMTT10 /ItalicAngle 0 /StemV 69 /FontFile 15 0 R @@ -5703,7 +5702,7 @@ endobj /Length 15915 >> stream -xÚí·S”/ÝÖæ™væNÛ¶mÛ¶ÿi;s§Í¶mî´mÛ¶mô{Ω¯zÔWuÓ£ïztD\Ĝó‰gýbƊ±ÈˆUè„Líâöv.tLôL܄"rªªLŒ„LôŒŒÂ0dd"N#K{;Q#7!3¡ƒ!3;!#7+ó? ¡ˆ½ƒ§“¥¹… !¥Õ¿T„B¶'K#;B9# €í?&&F6„*ö&–OzBB!Bå]âL¨ p8¹Léa`˜˜M-M\æ–v0 ÿ’²3³'äøOÚÔÕá¿Jn'ç¸)ÿMJEø§©½'¡)À †AÞþŸñÿÐü?û?pýwsqWy#ÛÙÿ»Yÿ[ÝÈÖÒÆó(ìm\]N„rö¦'»ÿ.ÕüN`jéjûß«R.F6–&Bvæ6BÆÿ¤,Å-=¦Š–.&„.N®€§v¦ÿáŸÎý›€AZDKDJŒæ<×ÿT,í\T=þ§í¿äÿŽ™þïøŸþ8Yzê0þÓ`¦„ÿìÿu¦÷ßF³3±7µ´3'Tq1²35r2ýŸ‰ÿJXØÞã7+!3 ! !'#£Ïÿ*S³³ttH‰²122r²0ÿ;kâêä°sù÷<øç~ÿ+6³ü§9€ÀÆ_EIŽò’rÝ ’œ2pá³4< WãۆoýÏQkêžwÅӈÀF“5Œ7Ù'r“ÁéCÕÇϤŸ4']`údì‚ï¹Ôz×xB°×­:¬ ü kÝÃZ:ëg6¬¼!!RÛL«z¿@r,¯6C7«¦†KX³¼Ògex‹)šâŠ ~[ÜâCi­‰Rš0qÐx_ó”¨íÆÄÚFæOx°¼‡¬õ gèš,‘«°3„8­:ŸÒåMÅd*ó-“¾L +xÚí·S”/ÝÖæ™væNÛ¶mÛ¶ÿi;s§Í¶mî´mÛ¶mô{Ω¯zÔWuÓ£ïztD\Ĝó‰gýbƊ±ÈˆUè„Líâöv.tLôL܄"rªªLŒ„LôŒŒÂ0dd"N#K{;Q#7!3¡ƒ!3;!#7+ó? ¡ˆ½ƒ§“¥¹… !¥Õ¿T„B¶'K#;B9# €í?&&F6„*ö&–OzBB!Bå]âL¨ p8¹Léa`˜˜M-M\æ–v0 ÿ’²3³'äøOÚÔÕá¿Jn'ç¸)ÿMJEø§©½'¡)À †AÞþŸñÿÐü?û?pýwsqWy#ÛÙÿ»Yÿ[ÝÈÖÒÆó(ìm\]N„rö¦'»ÿ.ÕüN`jéjûß«R.F6–&Bvæ6BÆÿ¤,Å-=¦Š–.&„.N®€§v¦ÿáŸÎý›€AXQQJEˆæ<×ÿT,í\T=þ§í¿äÿŽ™þïøŸþ8Yzê0þÓ`¦„ÿìÿu¦÷ßF³3±7µ´3'Tq1²35r2ýŸ‰ÿJXØÞã7+!3 ! !'#£Ïÿ*S³³ttH‰²122r²0ÿ;kâêä°sù÷<øç~ÿ+6³ü§9€ÀÆ_EIŽò’rÝ ’œ2pá³4< WãۆoýÏQkêžwÅӈÀF“5Œ7Ù'r“ÁéCÕÇϤŸ4']`údì‚ï¹Ôz×xB°×­:¬ ü kÝÃZ:ëg6¬¼!!RÛL«z¿@r,¯6C7«¦†KX³¼Ògex‹)šâŠ ~[ÜâCi­‰Rš0qÐx_ó”¨íÆÄÚFæOx°¼‡¬õ gèš,‘«°3„8­:ŸÒåMÅd*ó-“¾L I±+­=^€Xh2|<,¹h¸÷¹/c½º[9G6wüP`e¹Œ`:làv˜¯¿>\´ä3~.ýz¯N’üá*”|ßÒ¤’WÍ¥¡ç0þ…˜ìe%÷¼(o¸·&E„›ºóhí7hÒ§Ï_¼ÓÃ'RP^Ÿ{r]uQýan<õä0üü6QȽ©–!uТ/0_»Íš†Ùu›„Ä”%liÍÓ¯>0Æ·5Òý… wÐk§“ˆª`‡N#Ë `7úˆæÍŒßj€á¾fF-GÁ••Ѐaù5ëêÒ8ÏsL ™‘\¢õ¡{Àãâ%õðo”âjtðŒ­ßú|q’L¸„½bâï§¼åÜli9€~`W‹ðŠ6_”±0„1;ÙK.àsÐâQWѐ“9ˎ±¨W§YO;Ìl‘äd8ŽP2Ÿ¨]«f(ØìÄ&æ4fW©²"\ ‚éBKXi~±ŠmÓ÷ñ½þFqÁPبаÚî¯.iUl'%ù“…]Wê‡3«ð1=¦wô™‚[†  ðz@°ˆ®³ôÆ$!G Ávéiç& œÃ‡Ó‹ûjçÖ£^[ðäêJ-MÞ̀$ìú_伛û×ÚÆÝ^-ïÄÜ¢ÚPì=G,æï»Ìo†L¯ Ëå?ÚçrØ|:«ÊLõ–‰Ïúye$·ª Ñ$‚yΛ8‡e¬~ٌ%"º«Qðõþ9‘of²´i™¹èa¼@IR͔2!ër×HcVàíAT k´Ï.ËUØof?¾á%†’ÛWàl€&ýç®Öþûgæ×Ä fQúb”YP)9łPa¯xòò~+P,èo•÷`“V8/› ½ù¬ PԘNÒ^Pîk§­9­ûӒO$a‡ öimÎRú¥®¤UìÆõÛ?]£G–êĻԗ‹@ò¶²ßN*²ÅÆñ? Aì8Sm’éfÌÍ[R¤é[(ÄNˆ¯‰ ‘ë@!ûµ~*‡Ór62ÑK÷»èàÔ`ý05ÓQµ9¹,¦¼¿J2tÊLçó‰Ëo©ðN‰›ÛÑÏ0¡E Šƒª‚›ó ŒNFûÏï…×hVšÙožcMç…äC…Öv¿zYø~ Š/³‹ãÜ8˜Fs”«¼Ù×,“ۍP¨\ Äu'öN¶ `2ÉåÚ©RÈú‹— Mú^“õhå ¨‚;óÏ£N$!äŸ×²‚TÏT¦ˆºZ&J©IT’º‹òæš}§Ž"J´_OŠßeÂÌ©— 4V‚†m÷æðaÐ;È-IüGç(Yݽ†]… à¹×=ñ›±/tüÉS}‡ÒíœåU0hØ';¦Ý£ödÐñ%Ÿ¯ˆ5öw`É15IÃO69êcÈå"(•2Â/÷Ð&ü(eù¡öH˜3%²Y¤ÕœlÅZÞ/®a|ÇÜN¯NÃ"1”õÌD/OõüœÈGuí @?Õhü·`–€â†ˆgŒOz‹} úGd@æ~6Fk5ëÇ î’÷ëzˆà¨ӆK½‰íoY¦UEn˹wWõcù} ñ+ñSm‡š#© dñì×ê_C¼…³o29‡,Êei³ÞuSx.'Ë®œ‰l„SiŸß‰å>CÄù֖€–¥OFVü ~ÿ4ÇbôLN”O]¼‹ý58‘v=ÚKžT:æ ìDWx›QV.珶Tº`s˜¡ñ¡Ù¦Ý]¢·¤Äiªš¸Î¼ Wð¨º"Ÿ÷ãÑYW0ž/çˆøþ¼Vؽ Ð•’÷×܋ÁjTj„óðà‹÷°_â~b ¸æY™á­&!JytA ÊëWRË:–y êôß'sÛÝ(3<{(N¤@6‡MrÐï ì.ÙüN½,é^ªÀÀD·øÊ'–[DØ{Ò~Ï%%·%f>/þo؛Wa–¦Òkr2W9WÐï8h±¥M­FëÓ`‚î-ÏìA:`É`¼ýWô×¤ê¥ Zœ»\eµÈW¹£æÄPøWÔm7‰/!d­e´:»¡9æª_˜8ûHÆò©¯Ð60ÄÇ èPqÙ@å˜g°"ºÑas ü‚MÖ @@ -5772,7 +5771,7 @@ u ɋ°äO>*Àµ6~ý–Ý)Ýνh.Î/tÀ8Aë‡~@ëV"¢ÖßÜ«ÿ~ ­’ þ5ؔ‹ωãE¶/ëˆ!hùtD¢í^‚SÒz·Ö.{_µö[iJÜíDø#ªŒC‘éÈD‡Ô¨ÚoTíM"U]½v ðÛ)ÀZÕÇW+V©Õ™ ×<'‚ï~Ò÷å¢'ð^&j^ê÷äÑ×NA®[ÎÝ1 9Ñô&³š,ۜOéŸJ@GK ˆ'ž©Yå"ӏýŸ™yAw@*î€,w2^ëî|é?/Gaˆ75÷`]g @@ -5848,7 +5847,7 @@ a Õ‡…Wo~rik°I¤Â[çÐó º‰À„×§5)¾`½ÇîñZ¡r4;ßX{Y1m• þqó€2*êT£bßë(¤ x/JòK+&œ‚ŸcHÇ?JIÚ¶V1$ÂIçòy¼¸Àf{2h#qζ€óXݞ(¹9§Žµô. –îtŸº{Uxí¢Yåb¤‰¡eµ²5ÌJ€h¬Eø Äý6d;ßtu%ým6g&1ÜÊcr)o«tígõWF)ƪ‘Ô¼¡§5BÖ2O GK¶áIs{݇[ñÞÝäHùc¹ƒ9_ý07n÷R°žK¥ŠóѐPÓòi4®Q"xeæØR§.ÿv’±0 Ö&zŽÀ {ÍbD{áj„2 D³^¿òò*4°6)&w ; -Ή/ÈA­ü!ÏåS).³þÙžªC¾pýò.eS|ç˜QP¦jáOAòäË yV ¯íká`‡s~øó°~їKõ¡yf¯KF½Ÿ\$ mB,‚âw¥JÍln¤q3'ǁÝ9'U´f ÏRë7ëÛ°T‘Qš’vä4üYR ,YâûÚj#¾0½á(jKƒg¡Ó•fOmé¿òŸ¸\dôì•3¿4pkÙ¬¹´©¯’r=üboX˃ì‚‘Øq“l?ÀaÊû• oäW(zÈbÚÆ—+/ª·ª8†pÛI6@Üf~hfÓéË4›B(»&ؑ±9—dE7vRDu[œYæÏìVû}%ʰ£Ÿë •Þ!ÚH™Ü²µwé³»_,G¡†¦Èf¼eޤЉ Bž5ÚÚù]¼wøz\›Ùê ùwLIµ4á|îaô˜¹@í̘ÿ¡¨*…úŒ0Ñä'1àjèƒo›Í¬)}ïŠÂ,mÿ|ʶ -ã5?/üïJ\? îjîþ{jåô>^4¨=»üȗC؅z¨ÝÍî*{Õ\`óÐLÿwå/RÙÍ_Uõ¥¿Ø)™2ü##ê|ŽÂU@@I•úY­Å$Ù{PS½Ûd­EZœë¬÷ð<Ò¨©ž©¨%ãi“û”«šŠ”â¾OVUÔ(‘϶4åΤHÙøyçÚEyÌ*ÿÒÑ90KBôï=õsq¢ðß‰ö¹® ajäU—K¿úè!ió´Ǫ‰Ýüú‡ÖZZóƒ2mUÿp®qÊN.‹SÊðÿò‚ùÿ ü¢€±©¡£³½­¡£5 Ìÿp…-" +Ή/ÈA­ü!ÏåS).³þÙžªC¾pýò.eS|ç˜QP¦jáOAòäË yV ¯íká`‡s~øó°~їKõ¡yf¯KF½Ÿ\$ mB,‚âw¥JÍln¤q3'ǁÝ9'U´f ÏRë7ëÛ°T‘Qš’vä4üYR ,YâûÚj#¾0½á(jKƒg¡Ó•fOmé¿òŸ¸\dôì•3¿4pkÙ¬¹´©¯’r=üboX˃ì‚‘Øq“l?ÀaÊû• oäW(zÈbÚÆ—+/ª·ª8†pÛI6@Üf~hfÓéË4›B(»&ؑ±9—dE7vRDu[œYæÏìVû}%ʰ£Ÿë •Þ!ÚH™Ü²µwé³»_,G¡†¦Èf¼eޤЉ Bž5ÚÚù]¼wøz\›Ùê ùwLIµ4á|îaô˜¹@í̘ÿ¡¨*…úŒ0Ñä'1àjèƒo›Í¬)}ïŠÂ,mÿ|ʶ -ã5?/üïJ\? îjîþ{jåô>^4¨=»üȗC؅z¨ÝÍî*{Õ\`óÐLÿwå/RÙÍ_Uõ¥¿Ø)™2ü##ê|ŽÂU@@I•úY­Å$Ù{PS½Ûd­EZœë¬÷ð<Ò¨©ž©¨%ãi“û”«šŠ”â¾OVUÔ(‘϶4åΤHÙøyçÚEyÌ*ÿÒÑ90KBôï=õsq¢ðß‰ö¹® ajäU—K¿úè!ió´Ǫ‰Ýüú‡ÖZZóƒ2mUÿp®qÊN.‹SÊðÿò‚ùÿ ü¢€±©¡£³½­¡£5 Ìÿöa- endstream endobj 29 0 obj @@ -5858,7 +5857,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-29 -960 1116 775] -/FontName/TQNPIW+CMSY10 +/FontName/YDEPED+CMSY10 /ItalicAngle -14.035 /StemV 85 /FontFile 28 0 R @@ -5874,13 +5873,14 @@ endobj /Length 1530 >> stream -xÚí’iTW†UJÅX0Ô£(¢\µˆ -ę@ˆ!l!,E$²„€¸À˜ ad2&6W—R)¢,!*¢(Zdӊ‚Ê¢µŠ@P -Zi­§Ø?=ý×ә?ó}ï;ï}îw¯Ét/_ Œ\º’m³` ôô] CfA !…"4F΍ژǃ@-0@\6dÃá2&@H*£)LJƒÙÂ9ï]\ P &Eà‰Ð¡¨B"EpàKJ1”Žf ÀqàóþðAU(ÊX  &¥Á -TŽŒyï¡Ü‰p‡Ú2µò£R* ˜­áœ4”2’À£ aÌ‘šÕP Ë?Æúªáá®j!Š÷ñƒƒúLGýÁA*”j¥€')C)b¸Õ‚óDe˜Z1\u§“ -9Ž ؊Yr†LåŠE¡2/Œ–†‚W¡ƒ}” GьodžØ[äåîoöáh‡T/#hq´Ð'û` ª5c¢°(°bA¬1jޏ_ˆ­æBHIFȁ/2„’ýÙøœÊɉŒZeÁæ žµæªÁ°5àr9kþjô#°p5êî 8ÍgQJÕ…ôàuÐìøc‚i¦„¢Q¨”‘µ{62È|ªÙ«àž²úþ%×jí2 ü ž,ªK÷ю#E™Ëjj®š™wçnÞYÕlÜȩˎåÁ+Šm[Í¡?öFܒüUaÏS²ÃZ¨V·KOي Þ-éõ¬‡™»î¾Ö%à&らŎ?’$vÌ5íy7âÆIÛ%í}s©mo…&®ç˜}•éAᧅõ¦GÝ(`šBöEc±ƚ_7¸¯õÙ¤½5‰ÛÓesÄi¤¼'µÎòzï¾*ʊ¹7€Ç¬¤Q‡È1Lu|@ÕýÉPœ/÷ýºÙÀ踗z‘Ÿ¹VF‰™~ÅíKçÇZ¼â’oò»ˆ XHR×ÊÙKyëùÉæëWÅ֎ÜO}«6ÀRÍj5é_®»~1yt¶W䓨8qNZ“KGùhCk}qëêpýœ]}Ò­Û¦qó“ýr\Õ¿µâyÍJåÌã᫼-™×bòöÜ1-êjX–*Eå‚>£Cü1=ÜcßL_i °âKÛ¶8EsrÇyšJ ¦Áy¢öÝyn¥v¾³®ç‹µ'Îw–5x)֝;cö UlZLHiЭ­9p§Ä°‰9²ðüËý™!»u¬vµÅ„ÚŽßé~?ÏñJµGä¥5éäöÐfž~׆¦Àd·§ÞÍ|1ÿ•âÎ-=N!ô/Æÿÿ‰)Ž"M**ŒÁøRí>§ +xÚí’iTW†UJÅPêQQ®ZDâL ÄC‘ˆÂâc2„‘ÉL˜LØ\Y\ +hUD¤¸°¸Wꆨˆ¢`‘M+ +*‹Ô"xA)h¥´žbÿôô_OgþÌ÷½ï¼÷¹ß½fÓ¼|¬ø2rêJ´̄í€ÀÓ'†Ì„ff +EhŒ$„Ú˜Ë…_-0@;dÇæ0f@@*£)LJƒY‚Ùï]ÀW &Eà‰Ð¡¨B"EpàCJ1”ŽfÀÇqàýþðFU(Ê˜  &¥Á +TŽŒ¹ï¡Ü‰p†Ú2µò£R* ˜¥áœ 4”2’À£ aÌ‘šÕP Ë?Æúªáá®j!Š÷ñƒƒúLGýÁA*”j¥€')C)b¸Õ‚óDe˜Z1\u§“ò 9Ž+؆ Y³‡LåŠE¡2/Œ–†‚W¡ƒ}” Gьodn€ÐÅËEhñáh‡T/#hq´Ð'û` ª5c¢°(°bB¬1jޏ_ˆ­æBHIFȁ2„’ýÙøœÊٙŒZeÅâ+®­æªÁ°-àpØkþjô%°p5ê.l‚汆(¥jŠB zð:hvü±Á4SBÑ(TÊÈØ;d9ÅâUpOqít¿ÂUõ'ÓÍ‚'‰ªãR¼µãHQÚ²ªª2 Ëîý›÷T4šÖ³k2cycðÒû¦E3Îçê6Ýq̚%ýYçaG奅 £^Œ8HЛ¤ž:Yw{&J²ù–<ÝûÛÂWu6f½‰I¾ì(Ÿx²ÌÞÏÐ¥ff*ᣠxÓQzãµÒ;j«\ëÂò–TëMºå¦†vu¯Ú´çºzܙ·ßÜ¡Õ³`û¡S¥°·$÷WròÈÔ¨'Jß6o9ñUÄýL†c¡ßùÄÖõ­%c+Â,Wf°ëþîiӀè]I£ö]s<¬ÅHiÿD‡³Îl—~ϋøÓ# Tݹܪݒé²È}±)N¼}‹Ì¼^_y~¿§*#rî¹H¢¶)½~¡«ñ¡Š@~Õ{Ä¿(yšâRSlcãÙ:89÷ûǖ‰]<ñ=?²¥<0¦oÄòœ +уèâ£![µ{¬ üáLgKñæÊØ­‹Ú<æ·'ÝÞ=ù¥u0}v¡@Û!¬ì÷kdâxÿ*#ÈáàÍÊJ¹ÐD]Û߃û·KK™]璯l0vä¶öË\ +UðB÷Ýñ&A½­©áϳ¦µ­×/¹ìÒ¼±î°£žCµ¸øQÒt‘þÚ¢ÅI¡¿%úõrýÃìòc›oq¥"²MÂkô^Ù՘lã² 2…yÁ~ógY¯>ëÐe’8sʒpäÙ±´¦lÁ—¬e:nÊø_”õÆÅû|ž?‚)iRžéE-ÏڄþØ[qKrV…µoÍ sjv¢šÝ®´²7¥Ô2§¥ß­GÀ :¦M„;îx’xþ~óžw#n±_ÒÖ7‡ÚùV`ÖézÑ ¯<%(üœ Ö|ã¨[¹æãF‘.VÈXóë÷µÞ›´w$qzºlcŽ;ϙ|›”Wâ¤Ö^]ïýWù1ð˜#å4ê9Æ@ï_ñðQ2'ÁK|¾n429å¥^äk©•ZhaXz÷*_øÔH‹[PøMN€‹8—‰$u­œµ”»ž—<~žaiI|`õÈCÔ·j#Üi›Åc­º Ãk57¯$ÎôŠ|'ÎÚÞàÒQ2ÚØÖPܼú\;;½/PºcçTNN²oÖ£2Ã;+Ú«V*gœ +_µØÚàÊÚ<ìrö¾{æù]u˶I`Q ¿Ïä(oLÏ·ÄØ7ÓVñmx’Gã&çhöþ±žG'„Rü©p¶¨mo¶[Q®ƒÏ̛9bí ó„“:|ź‹ç/|¡ŠÝR´èUW¾WhÜ`02ïÒËCi!{ulÒ[bBíÇíq˜=ÿz¥GäÕ5)ä®ÐF®a׆†,`ÀjÛv?íżWŠ{wôÙyп|ÿü'¤8ŠP4©@¨0ã>Œ> endstream endobj 37 0 obj @@ -5890,7 +5890,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-29 -250 1274 754] -/FontName/CMTOIX+CMBXTI10 +/FontName/PUOJLV+CMBXTI10 /ItalicAngle -14.04 /StemV 107 /FontFile 36 0 R @@ -5903,13 +5903,16 @@ endobj /Length1 727 /Length2 1052 /Length3 533 -/Length 1583 +/Length 1582 >> stream -xÚí’iTSGÇQ4âV Pó0v a1”E ϼ—ð0¼^ADA­¨¸‚V ²¨,.U°‘€7ZŒUvºE«rD±A\Nµ_zú­§3_æÞùÏÿþæÎ˜™øùÓØ±õ p) ¢Cö€ããÀ…¢3(ff…¥»ÁRÔ@vv`˄²˞ic?ŸA¡˜!Ž#1a¤˜sæ ªX€’Ɓ,D£5&|Xü >†Jãè°E"°dðˆ,A%()G:…AÁøR°b8eÞ €5”Fdâ[r””h¸€¹†sÐP".Š* Ìó%4ÕP Ë?Æúª/Í=d"‘/=hÿ¡U_)àhL÷ACD‹eR”>‚’ø—Òeèž+!úªW -‹0>ŠP@ƒ˜ts(I<°XñäüH €Eô}ő/94Ý{O1ã°ˆdùém‡öý` —ĉQÀø|à} }Ž5}"±XÊ 3F¨™Wa_ÔsÇù‚áBà/…q&‘O‰¯¹\]‰Øxš• YYkþš‹ XȪ¿ -q,F†r݀5ƒÁ`±†¨ø2’Dqéûÿ ¹óÇX€iڄ¢±(Ÿ’qÀӊ˜Kµìá½T5Ì\¦¼Þ¶!¯ÊÎÎYk¶î™µz3r̽Œ›3µr÷Ý$ˎ\áØîˆVÕÜ¿¼Çsç¸Ñ“zÃûuYEßYèÍcS_¦˜JYA«˜Ú«ÃQÁ±:«¢ìz ;V{½…CRã”XÙ,§•çs¾-ë}˜<þé ÞsRǹ`BËēù^+'ďÑádڜ²íRªUé†WXˆ2éYz ¦)Yȁ;Gw{Ÿk¼)iŒ{sÉÃ9£g’*~kpi@¢eOÉ˙ÛRR¢ÒzÔ¸÷“®î.o#÷z›‚Ì‘#Ž‡æ ^LõkOSté„,N:ôë(ë95w™ÛŠs«úܨýªX:<¬ú4¶;¥Ét»˜Ò÷Û°åmË"¥»k×õuëõW¼å‰Ë—W7ù–Ý‘(O{±¶ø¨ƒÓºçŽmÞôJÚmˆÖ©Ôïêœ\)h7¶ØÜf ãô¶E¡Bì£ Fš¾¸wÁ]++7¤¡ïZ§zÖ¯d[Xÿ»bs½ËÌòO×­u*±U;øy=.¾ü²À0³øÕ݅îofõ÷d×5´ÔzýÔ¶´~ӋÖ²K¢Mr«óÄ.'םáÎÈï?ü sËyÆ¿”ÿ þ| -“R"&WR(j]= +xÚí’iTSGÇQ4âV Pó0v «P@A<ó^ÂÃð^xYµ¢â +Z-È¢²©U°‘€7ZŒUv•­n`AÑ*‚Ql—S헞~ëé̗¹wþó¿¿¹3F¾~46B¬FÝ\Lƒè pöv +\á1DgPŒŒœIcî‹QY[C€-áÈ +@,¦¥Í"…bœ a‰ñ#ÄÀØÙdXÅì(”ĸ0¼aq¥2áÂàGp1TG€-€åÃGD`9*BI)ŠÐ)ƃÕ(Ã) ‡±ð>†>Ǫ>‘X,aÐ H%T͏«Ð/ê¹â\Áp>ðÃ8“ȧÄ×\NNDl<ÍÜÐÌ-T͜Å, fÂ_…þ8-A=\€ƒÁ`±F¨¸’Dqñûÿ ºóǘ‡©Ú„¢±(—’qHS _@5ëã¼T4Î])¿Ñ±)¯ÚÚÚAm¾æÙõZsrŒ=õ[3ÕrÜ"Ë ¯:[íŠRÔÞ¿²Ï}±û¤ñÓúÃ5YÅßé™h˙`Y“_.3¥²¬¡À¦úZ»0”w¼Þ|ˆ(¿QˎUßhj›Ô4#V2Ï~ͅœoËû&O~z’ó\£Ì.XʛÒ6õT¾çš)ñ4œ³lMÙq9Õ¼lÓ+,XžôÇ<­FÔ,äP˱½^ç›n‰šâÞ\vsÈ蛦ˆßT¶"Ѭ¯ôåÜ))‘i}JÜëIOo—žkƒeAæØ1'Bòøz/§ú6§Éz4‚—%ùuœ…Ií]排Üj¤!7ò ÇÉÎÀø÷¡üKCõÓé— wW[U^;ÜöÙ2Ÿõúåû.É]ËׅXü àèŸÔȌ΂jꟄ¹T”>i§%Úe½+¨Ü6ë‚Ð!1ä¨Þ”tÇãŽ'KêŠÏE‡¹YÌwü±Y½?‘H}´-3‚º0›×®K©¾~M´¬‹Þ#„ê—i=hìÕ¿Œ#•æwZ&$TÔÊW+fB‰ë)%ϺR160ËàÝ̪`ƒ€p«o²‰ ™$s2FK×¼-ƒÜ“˜Ó)z]5éäJ—uã¨Ý£{‹E5zL5K·®öÅç²Ýý÷iR–ly~P—7‹ßýø¥1öýtøè^Y+zi¡óòQYÀèК3ØÞ”fÝBJ{Üo£‚å-êfÅr#vϞ6j¯~ËV¬ªiö)o¯Ÿñdm×ñVø¥õ.˜8Þ¸u¨êí¡ŠwW:À¡0 +îÓöô JúµÎ‡ «]=’ï¾»»áDqêŒF­¬«gXÓ×úý|³bÿD-§I¦ÇmJȔ©7®˜J=®ÙŸ°W–;'W££ÜDۑ–æGº´³YÙU¿”ÙX;έåRÂEÛSš‹v.?–3˜@k~*êëw·˜×ãªYòÀ6}ÎûsšÓeø@g4@*stû_tINÛ:„0B·Ö*qç‹·;8.Ýù«_O[»åüæ‰rÍó¡Eê%ë™v*uI íál·À{•¡ƒoÔϜjûe·ûLEp ïº~k}‘r”~$5qhèln|ÈÕ´;­[®¹ÈÉ!¹:‚שoºµCGÃ%ðm›LØDŒ5|qZVnpãÀõnå:µ7žÉV°ö> -stream -xÚí—UT\ۖ†`Aƒ†‚»;ÁÝÝCA¤UEá,H!AB¨àܝ$,¸ Hpwšsν}GŸÛ/=ú­Gï½֜óßs}ûßkŒ5+“¾¯nV…м‚|‚R%c A€ Ÿ€€"+« DBà0e ,””¨‚íïw”¨˜” +@ îꃀ8=G8”8ÿP‰ `Äè‘ÏÁл&@€ÜFúð -..Ã?^q‚ÝÁO0ˆ€@P‚8 ö`'Œ€ÿ, ˜# þWäáúϒ'á~Çàø“”pÇ ‚Ã\| °#¿.ün>ðÍÿì¿áú{sU] ôöšõou ââóêê#:pû»Ô üœñ€þ½ªº@`N.`¯ Ÿ€È_yˆ»*Ä ҇ ž.îà?ó`èï$wþýÉÁ¯n £®jÎý¿ûWU!}\ÁÉÿŒÿß¹„€x¬îl¼ÞÝÿÙüm6˜9Œ@ˆýgâß©áÞ~¼‚bÂ^!Ñ»å&("“ ø¯JÄͬ¡ ’ø3ëà@€aÈ?ÄÝ'ÿ3v„ܹ{ƒ^èplqÌR P?+e㿻ǖì÷ J3’«ß\)ŠŽ¸Iõ¡)ˆxCÈv¢öm µ¯“*÷u¢¨Ÿ·h&ü\™ïõqÃ6îÛ2á+ÎÒGvãګϨ#¼Àޏ“ˆÒ>*£’øýH‚lLoå³ß¯÷yî$(uÁ‹o3Ã|ªd/ìÓýrχår¤Ûíó³½úé8BÞs]w5ZÙ8,5ÇÙôšyBãÞ;•§<ò['õñx9¸ý<¬¶ ÞµQoñå5Æv‚äÏ£—óRž•ˆò4%…wÂŊíÖµžíþÊ'‰Ø×®dI|–2ìŸUQ¥ÙœØO –M ×Ýx)ôþXæì¸J¦Ò9^ØXh•Å«êôÓƒE’/ÓøP¥öR‰ ð®Ø«g·RøUôÍU®ՓNÕy{‚ßÊ -’ÄLK7•ùÞê:ís•üâ†"ìÚÞ±mFôacÈá±4)Zݰg͒ï?¶Fò|’/'®ÆÖ¼ßg.xêü8ÙêâÈ5¬ƒŸ û5s²mW\¥@99aûö3{¾§(•nZè {‘f6ܶž.4Ž£EÈfψe‰çù¾ý!ò½,/¨“ýùƒYÆ´ëÑmŸÜÑ?à:ZÙÈ*^Ý4«+¦ÖìIÁå`ðÍm›ñ‚îè”n?^àgŠ«BVâ’ôÀÍÖ¡‰Ž#UÊÉA&ùC|쯖¬Ä A7¾(X|¾€Ì_>(Øü¸Ÿ˜À¹¿ì|»ÞÁO$aL³x ËL³«§µL¯Sћê9ççO§J‰(µ ý š¯œP螞YÚ¿T¯æ ¦Ù®}Hßb€s~ AÎEóë)ͽƒSB_‰Qdׯfæ²~a"6Cè»H$ø!³tâþt›òA‘¹…Àz¸d˜S¶Ù¡ M}§×. OC/b™OÊڍeˆ}k¨×=±øúDºŽ«”~e´›$¦Aj7¥š%9®žDa4ø5)BÛ×wÍ¥ 5Ç+Z O÷N9+ØïUÿd{©tÍdµöú|äÉ,e1)uhå@†Ë®©P‡:c3Ý4³n”á÷Oþ*)¹âkú–íJ4÷Mûíä¶\‡êòäèµsºøÉD?½—U“Â8—2ÎgH9˜Ùù ¾Üº]|Ý:Nñ“¥þ,UýüõjêÑMFNlI–¯)Ÿ)Bù±xˍÐVh†·Hm¬ lEÿ¯d¾ËªòB‡—%'7iPgîÞÖFWù1X‰’êý›¨öÛ+ٗÁMŽ¢!MI Üþþ¦k²,óü»ÖR»ÙhÎS5‚–yôÖÕídSC̜´è«[—Ô–Þ@gŒó—¿0×=åÍooÑf¨—h¡9¿4go!f“ìüWî±ç¢Aã7TM‰4-›òó^a\±soEÅJƒ;<5+nFY -÷òî“ÖÆLOÒþ,0ÂYB‰"»™h³âæÎ´ªDòÐ'G,nnã±ÅNx˳5{¬E“D¸ì1zÜ3}vGîmòÔ¯;çŒgW2Ê{gdö² -ën?*5/F.S†× m6‡—›*HíJ}y-:Ò5Nûâ§oþ½mî–Õ¥O|XÛj_²¤.“(v4tPžÿ4™gÂwB[=`wÒ,µGÎûé,ú›p~ØZ”ÌQŸ6I&&°+™>}?@C‰ÕzV*×NŒ‚öÕbû7þhpTI…v÷¹Ã]}G¨ -"–4QÁQï“$U.½ ùiuòA>׺9HO·%!•×Ç<æ…Ê×¶Ìr´(„>Ë͛~[1InŸJ*þ¼r|¡Üf~ýLAæÂýœ“.{´yëÍ Rª+Î ?ý¢ÖܬWJYc*ª†mL4²ÂàßMy¼ÂÑácÜ­è‰eç³ãÍÅ PßȓK‹ÜãјuÀ3,ÔWƒš£4ä©°­ì=kïðÚÒUºÀÓm£ûØœ1r1“Ÿ/7pâ^ó¹(2V“ñ̌1m䄚äDnÃ3<ô:Ýtö>‹7&ͽ"ñKëx Ž™Än®ùÄÏ(’5Œ™UV¸µOÄ?kS!2Kn'O¦ôãH²½î†í0j¥šùHfÝÛ*ñȜݼb[6Xzó ÞhÞ¥e~ë›Ýq/¥^傪Mo`v×eiÛíae‰ƒN¶`DÇÁž7^WW­O«ãÌ`Àþè‹õ®Ðˆ ðjÄEö£Ýƒ L5†29C‡YjÊż«÷²ô@ëfÖ*ŠæzIÖ^lqÉUß3ŒÅ:¾Ñ:!Ö^Ü0I{µ Α€óéëïF!”ñ—  ˜ Òþ!&­ Œ§TM—Sˆé>%êõsÏ(ò£ SBKò„*AÉ2»S.6¹·¹SOCµŠn¹˜f;ƒ¼>/FÒh€MA:L+Óæ8ÙH5JZ«•#„+ÑS&ëeÓy13®O;Á¬ö^’t´]êÑúa'ÝfkW×b€ý_͆mÚýõ*Á‘¼](Û·O<††Ôõ•ZP²æß¶A2|pZ’8ò·6þôZ\³~?4ZóZ3EXÄÁRMì©o" gë†!R6Ì"Sì„=N5öώM?.RtOe9ºÕø¶Áu:©˹²Ð+ M²oÁiC%¬’¾0Ì  ªRJŒñn&Ñ]U³e^ñÚÑÃ'H ª5yªŒ² ́{¾7dƒœmTÈú‘;n…?³Ýø¯(ÈÉ~÷ë_߇ë#û!#“Dù>ā t´·Ìañl5ÆT“}DÕ¾*/&ɉ³–w~* ÖI•.jFÇaZ <: -}҂?%ŠJ5¡á²\˜aKYDÝÔʖƒŠ×{ÿ^=ªq¦uÁnîˆx -)Âê¢åkòÿÎăŚ'Æ1G{_½%‰û͊¾Bˆƒ)LGo}:mvåÒ´Lkç~;%â^Ê‘i_Zš5E °>è;i^܇éñÌCíTük_fd¿ÇäòDg%\GdɰlºlÊ[ŸE ñ¨íê“W°èNÉâ·)DxßÈ䥌ó^âmŠbJ”ÿH ô¦˜©é_˜º÷Ù ?W8O*•säÅAi:h+;V0+ÄåÄHXŽÕO½zö3y±34¾ù]e<’ïôP¢fM¦'ˆ1T9ˀ›±¹‘,Èÿ©Ð ¿ïuEIûŒÝÅ\ò,W§|\‹ŒJùˆe›ÐphJìEÑo•–ú îË¡¯ÁÖb،£åˆ¹Ææ(¹GyÇôùö„z€9ŽóLèê{Ã=ËB£Áö¬D=艙Ïãaêâºð¤Œ{{këtt…vƒž5L¤åò:úöDßmÒ˲Ýo -oŸC™h¨7yñŒÔŠRwEâ, ?f §°Ór¯÷žxe–ì|qñs³™ÅN«:sS5"çA2è´ñ½-I]ül ›9¶W3çñææóªî$©â¿ªÝ­¦‘ZˆÒ£kÉÅӘ*‰Å©Ýßð´:`3÷¡32hrxR±C/3?5o›°n“xnŒãÝ:ú]O-ÛÉy|ŸÖ/’«ŽoP¤zº@“Q"ʞ¯]@xªsܰWtR)8¹‚4 Ð=µ³ª½¶Ál,òö -Ž¿d©:26]å½òL_ØÏåi¯OAl+è?ß -sFi҉ž½“nÖÚAŒ‡Ï¸9)(°wÓd®±ü?1¯„Ÿ©¢¹CÅ͛É ` -ú÷°é¤ã\Yìœévª° -î;þP)IT·V7ÔRˆ©™(RÅÙÏKöiµÐëÃ2 ï¾Hÿ‘{TX–¸žT¯Lé´£+þÞ텇­åmtP˜¹è#_À8,ó¨QžkV1‡µ0åµSƒhõ¨iЦ͚U™õšñùªóï×3ß(é TL‚ÞÑíŠ\Ög3óÖ¼¼‡zEùf‘yŽ‹T‡þ8j—´®NuÒþçím -J˜íÕûBQVU<ËäÅꏞòLýrQj u¯ö+sî0qÃ^*ÅÒHe¬ä³ŠÝ®Êe_Â#Øî— c,£‰ÐþqZ܍-›+³EüUŸ6C(ÞrO<#Åò>®Èï^ó­Ó­ï±nü!®JWêׯÒéþ­ª2©Ì¦[WÞmwâ@¾]{û¾gmzàÍ öåY΢-E®S—ÓRÕΐ—’ -빎v&†÷K^\F„·Ð³~oß2ÔÑx3e|¼X rÀ/v†L·0p‰$ЏWt¦…ÃbyÈ:`ºâi°ëX׌ÞÂäb'Èðn‡”}Zñ^|ÜÄûFx -=¶$koS–çê%9õ…YÁÁ´xJƯò~?ÃzöøÆTÇÇ _]ÑÇÉ¢†kh_¢:fÕ?ùK4}oL­¡Ìj‚­ýTØå®jw‡_ö ÆVÿ¹‡j¦˜1›­ÁÄv¹íTlŒX‰Øöã\ÍçÔóDze<«&¿ü¥ž7Õ©Ãɗ6Gdg”áå«[²¬ÍÝ´v©œLT&PÒO§ïV~å£S”FtwÑ×»cEèµ{e‹Ú-‘x‰¨„BÙ~xãjš\5Ÿ/ޝæÚâùùǦpsJÁ¾C;ª¯$íÔûºíÞõ]M—î¢òOµ«ªpºKƒpK›¸4s‡Xe?;vfdk (÷&‹²òëùà+jlÙb¤.«<öÐ%®…`¤×-TÚú t«É¥ÝSkJ€g¦1Øen;Ã8‰fðçfÄó­ó›ºÏíŒó¦¡³¸‘ŽhÙ¿ùöÒ£»=¨Oûu24%yÀz‹Ô1Æ~ZU*QÝ}ŽÌ-Z†Ðªw}á´Õ«Ý:ù㽆ìL¤‡TAí֎›ª(ƒ4³ÊöñÙDÃIè¿i€[!VÒúÂ-EG©ø(TÓUÜ9ñ´s‡YQŽE¥“=Ößû&mfëûËú2§Ó³\Æ¿iýŸŒ=õ×‚~ÓMFÓ«û7êõoƒ[RŸˆL}ø`ïhg„šÙem @PmíHþ–w2!äg£UQݲD6LhâW¤Y!)¢Ú= av,8§óI˜Í÷F¯¢®®Êjužã¼ØL£ãúˆ-Âí÷žŠü‘Øy#÷²þº~ž”¥~Y!¡áIÉI‰vÔcŽ z÷]¾f|÷Ê/k.Jç1؎XìM…/3ßíàH'›Õï5xVE&xvnÕB±w–¥?ÆeC“.‚N“ ?ñ8ùq…í?Á„/ ÚiÃ`ôFÖãYÃ~ù¡7Á<} ñAÞQ–ÉÛÜ]„ÓÊÉÏi̕N—i"¦"s»  Ó|¢(Ûª©®gÊà“xkŽKË<¼J[e*ÞWš9zJüŒÂ÷s×*?m­ÄšQͤÊ~Z%ù‰”lnæwíht óoZ-­×¼é# oaâêû…MϑZ£Hlg%çœäJ5Ž÷fã¿°h ]íXße£‡iÏãîT_“è­W\÷ LåévèØ}U?j¯[Ôb¾æ^\.­(¢ÓP2às±uäÊ×XjDx/…¼!evw4@ÖÖ¾…>¬®Äšïñ?ein´Ç‡eàà†“Ôßsv#Åá?;ä3ÄPŒ"¡NõS EML‡%;‡sËo)ÌÓwJ¯ÖYY»SÃK±àþñÔg…!¶4hÉÆ -ýô9›ýú:LGT¤FpqÄ—äÀ`¼°ñˆãiçŽ2ÖR–¾iµ‚ÙRˆÊmœŒ-â9ªBÈô«Élù`‹NðÆo _– à]»‰ a7.ŠØ¦‚}ë<Ì¡Hˆ¤sopRZGí¨j‹ó†++®NGEÓÉÙÅ0¬wiáuᏃ0¤ -R¯x م%d¼ÊÎK} ÉH&ˆ”HñÄ¢¼ðá1Æ~¼\¾V: bô³^@> +stream +xÚí—UT\ۖ†`Aƒ†‚»;ÁÝ5ÁBA¤€ª‚¢p ¤ PÁ!¸;I Xp <8w§9çÜÛwô¹ýÒ£ßzôÞûaÍ9ÿ=×·ÿ½ÆXc±2éñ*€à¶`U8 É+È'(PÒ1Öò (°²*!À@$S"ÁRAII!€*Øönp÷H‰ŠI а”à.ÞˆÃK$€C‰ó•8@ +F@ì€0€ù ½kbtÁí `¤7 àì 0üã7€!Ø Œðƒø ˆ` v€ÀøÿÀҀÙÃâ¥Aî.ÿ,y€nw\Ž?I9wœ 8ÌÙÛðëÂïæßÑüÁþ®¿7WuwvÖBÿhÿ§YÿVB!ÎÞÿPÀ¡.îH0 °¿KÍÀÁé€Awèß«H 3ÄNæà ð +Šð ˆü•‡¸©B¼À }Òî%Àèìþ3†þNrçߟüš&¦:J:Üÿø»UõÒØÛ ø—üÏXð_ñKˆÀBàÎfÁ;áÝýϑÕßfSÙÁA˜À „€Ð&þJQîåË+(& à½[n‚"bI1Iÿÿª4A\ÝÁÊQ !‰?³vî†üsAÜ}ò?c{ȝK`°ØŽà•‘ÇÇ µõ‹6Žà±ÛÑ{l‰¾À T#¹ºÍ•¨ð›ošüðw„l'jßQû:)r߯ ûx §ÃΕù>R×oã&—ú /­8Jٌi¯¾  Ü½#©}TJ%ñû‘:Ù¨ÞÊß_rÝHPê‚7Ï¿Oñ©’9Ù¦ùæœÉõçI·ÙæeyöÑqàºê8j°°²[lбê54ó€Æ|p(Kûtä»Nêíþj`ûehM~¬K/£Þ«kŒí8ɟG¯æ¤<*e©J +án„ å7Ú-kÝÛ}OⱯ]ÈøÌeØ¿¨¢üK 3Ùo>× ›7Î_wá%Ñûa=c·»ÀMW2•ÎöÄÆB« +^U¥F,|2À‡*µ•Hl€wÅ^¿¸•¯¤oªtù¤žpªÎÛô~DV8ÀÄ?zJº±ÔçVçÐÁàhŸ«ø7aÓúžm3¼CÅ¿ékáê†åk¦üXß±%’ç³|q¶6àÃ>sþSߠlj{¦È!üDÐè¯é“m›º Jʉqëä/ìy¢Tº©¡ ƒ¬š™0ë:ºXÐŽ!_¨-#–9žÇ7øöLj²¼ ö—óœ2i7Ö£Z?»¡—à:ZYÈj*^ÝT‹+¦–¬ Áå ðÍm«ñ¼îȤn^:àg’‹Bfü¢tÿÍÖ¡‰Ž=UÒÉAùC|ìoæ¬Äq7>(Xlž€ôo(èÙ{p0ŽsÙñv½ŸH˜4z%à–‘jSGkžV«¢7Ù}Îϟ(N•^òœTô£jžr\[Zx»æ!}³Î ø-9å_į§4è$ ¢„¾£Èªy“Œ›Íü…‰Ø î§ï$‘à‡ÌЉûÑmÊFäëà’¡Yf‡V4­ôž‹¸4<‘ =Xˆe>)KW–Aö­Á·ø¢ëéZR¬PڕÑn‚ ˜©Ý˜öy\<„ä¸j…QïÛt¤m[ß}&M¨9VތdxºwÊYÎÎxð¨ê'Û+¥k&‹µ·çÃOf(‹H©C*ú 1œw­L…Ú՛覘u# |öSIÊ_Ó7oS¢¹oÚÇh#·å2X›+G¯ÔÅO$ú鵬šʹ˜zž’«t²ÁKàèt¯S2¢à4Òw+ä¼!ÁµRˆé”GøÞŸ¡ÙÛ?æ©I±–çŒy5Z†ªŠß['Š5¤JH*=\i¿ØË +]y`ýp2+ò[ÅU”îtøš™©eËa&“·¢k¦Ùί·Óp* °1P‡ieêÎC6Râú–*åpá +ô¤ÉzéÔ'^LŌúëÓ0«­¿§$m§z”~èI—ÙÚÕõƒh Dß7³!«6?½ +po'Ê:ù‰ûà º~ƒR3JöÙ÷m œ–$†<Ùʏ^‹kƗcI£%·%C„E,ÕȞò.‚p¦v"eÅ,2ÉNØíPmKðâØôÓE×d¦½kµO+\·¾ƒÚ¾Œ+½ +Ö$û”:XÌ*éÃÁ'yNUB‰1ÖÅÃ$º«j¶Ì+"^3rø¤‰Aµ!O‘Q¶‚ÙqÏõo³Y>rÃ-÷c¶û 9ÙïzûëÇP]b?xx‚(ϛ8€ÁŸƒŽö–94–­Ú˜j¢—¨Ê'@Åi‚œˆ1sq`ç§Â@­TɂfT ¦Eÿ££'Íø“¢¨Úh> Á…&°„¥_ÔU­tññw¨xçØoáÕ£jGZgì¦öð§B¬NZN°&ÿï <Øãøæ(¯«dâà±ß¬è+„8˜ÂtäÖ»ÙÐjS&MË´vî»S| îù¨ ™úÍ¡¹ISÛჾ‘æÅ}˜Ë<ÞFÅ¿¦ñ•aÆNöGtOTfÜux¦ ˦ó¦¼åY¤Ú®>y9‹î¤,~«B¸×L~nÒï…?!Þ¦(¦äAÙRj€%ÀLMÿÂÔ­×Èfè¥ÂyB‰œã/JÓN[Ø¾œY!&;ZÂ|´nòõ‹Ÿ‰ !±mðˆ*c¹”|§‡Õû»h2=AŒÁŠÜô͍DAþÏø½oˋۦEøè.fg¸Bù;äcšeTʆÍ[…†b@“bN…¿UšëÒq¸/¿YŠa3Ž”m<°#来XàáÕçÛêfØÏ1¡¨ï u/ Ù²µw£Ç§¿Œ…ª‹ëÂÒïí­ ¬ÓÑm<Ø |xV?žšÃkïÓu·I/Ëv½+¸} e¢¡ÞäÅ3R+LÙyc°,ü˜5ŒÂFË­Îküµ!4J²Ãéâçf2“ÿœVuú¦rXΝdÀaãGZ’ºèÅ6ó›ÍìǛ›/+¸‘¤ˆÿªr³˜Bh!JŽ®%ÚM£+%–ŠRº~<ài±÷ÇfîE§§ÓÎgó¤`‡ \f|nÚ6aÝ&ñØ »µ÷½ž\¶‘sÿ1¥_(W[¯Hõtž&½X”=O;ŸÞ%ñTç¸~¯ð¤Bþpbiæ¯{jcQsm…+ØPèå{ÉRyd$>dºÂ{å‘6¿ŸÃÓV—„ØVйêˆÒ¤?<{/ݤµƒ ›vuPP`î¦Ê\cù}ãÌ£y®Ålւ¤·õ¢U#¦IšÏiÖ,J ¨×ŒÏW¿=˜vÿNI¡bôŠjSä²<›†< nÉÍ]:Ô (Ì3‹ÈµoX :ôÃQ»¤uq¨•ò9okUPúÈl«Þ‚²¨äY&/R?xô2€gò—³z`=©[•o©c»‰+öb –F +cŸÅ›íÊöE<‚­¡>ÙPÆRšpí¥Óºã.lÙ™-âoúl´éº@ ôΠ[ü)–×qy^ךO­n]·eÒ¸*UL‰o+K‡Û÷ʾ‰„R˜nmY—͉ùv9B.ùC÷Úuÿ»í˳ìZЇN‡ÅʝAO%Ösí ¯çܘôp/¡}^>¥¨£1fÊØX±eÿ_ì Ø®¡àbI /¯èt3Çóåy"Kÿ©ò§A.£Ózó  ÀûRö)Å{±1ã;ìaÕ*ôؒP¬½MYž«WäÔfùSâIé¿Êú| êØcÛSìƒ~uF=#‹ª¦}…jŸVýä/Öô¹1µ„2« ¶ôQa—»¨Ý~Ù70[üfª™bFo¶Ûä´QQ°1bÅcێq5SÏé•bð¬šüBlð—xÜT¥ %^Z‘Q†•­ú·oɲ6uÑÚ¤p2Q™@I?Ÿ¾_ù•‡>LRþ.ÐÕI_]ä†=®×æ™%j³Hâ)¢vUdû™ï…«9`rpÕt¾pwškåç[Ä}Ì)ûm¯º’´Qï=è²5zß{8U²‹Ê;Õ®¬Ä™ï* Ä-iäÒÌd•‰ÿbߑž¥% Ü“(Êʤç_¤¨±eû™]º(`´âØ]—¸‚‘V;_õyë£Là­&o¤vw)ž™Æ@ç3ëiÆ 4ƒ7#žO­ïä}nGœwõE DpDóþÍǀÐWîùØm½Úo¡I‰ý–[¤öѶSªRñên³d®Q2„=óìó§-žm–‰ŸîÕge¸#Ý¥òk¶v\UE 줙˜U¶ÏÆëˆHB¿MÜr ”°’ÖWn):JÅG!‚œ.âŽñ§;̊r,*¤èi°þÞwi3kŸ_–—Ùe2Vøë§ødì)÷è<çõoÒ_ß¿Q¯KjNy"2ùµÿcœ­½Bhz—µÅq@µµ#ù[ÞÁ„ŸŒVEu•ËX1¡‰_“f'‰jw3„Ú°àœÎ%`6Ý¹Š¼º*³«Ñy‰CങJÇõ [„Û÷ù-"¾ãFîUÝuÝÿKݲBBÃ*‚“m¯ÇÓOõþ‡6|Íøþµoæl¤Îc° ±Ø»rf¾ÛnN6‹ßkðÌò ðÌì ª™bï,S”ËŠ&Mÿœ&~â~²t…í7΄/ ÚaÅ`ôNÖýEý~Ù¡Á}ñAîQ¦I²w'á”râKšgÊF§Ë4qá“9Ðù)>Q”³uådç e·KðI¬¥âÞ¥y.^…µ2• ïkÍl½%~Fáû9kŸ·VޘQM§È~ZÄúŠonæuîht óoZ,®W¿ë% kfäê]‚¦fI-Q$V3³O ò +¤Æz²ðž×“®¶¯ï²Ñôçpwª®IôÖ˯ø¤ðtٵᆴ1Uƒ-h1_s/,—”Òi(ð9[Ûsåi,‹?µ$¼‚—@ޑ2¹Ù kj’¡«j&°æúDüNYšlñaé8¸a$u÷]I±ƒùÏù 1#I¨S|UCPãS¡‰ŽaÜò[ +³EôÒ+¤µG–ncÔð,¸_,õYA°5 Zg¢¡\?mÖj¿˜¾Ó©\¶ÃÁ%90 ïl|…bxÚ¸#µ”¥oZ,`Ö¢r›0ã籕ÁdúUdÖ|°‚'xc·@†¯‹ðNÝx°+Å'SÁÞuæ$DҌ¹70!­£vT¹ÅyÕS«£"éàèlÚ³8ÿ¶`é i¥‚Ô+šˆFtb ¯²³‡ÂRCÒ "$’<°(/¼yŒ±/—­•ô‹ý¬Z“ÆûdN?¯ô«IËé1ȏ¯Ù‹zÞØüm5áêùÞm»AÁãHŔ7¼o?¼©±ß-¼Ù;iµè)KsbÅ+§ò¤©–G½Ï!3j㸶2ŒÄjxÏJpâXùŠ1r(¯Óábou½¡´ßº[‘(Bäõr`Àè½µœ,äQ£ð¶Õ¬êIÚµÚSë…g#•{TÒÃÒ'‚®_æù H³e^©K^³s~"xÞ6}âWºËUW ‹AŸ9˺è"W„÷ª?†?ž´epÛàTm[ß·ÊPbÓIj® ÌBœ‹ŽñségˆÐðIôS"¬Åì»­ÞœáTÏê芎I'„iÇ>½pe±üd˜ëÝú»òiVèÊO/ʐC`=“ײl8<®Uç±VY—ê ± k^ˆî–ŸòºQ¶ ²UW.þ¦ä'JxžDçˆ4¡¤iЏ ²>uø_^ÿßàÿD;g0„C'‚ÿà8ÿ` endstream endobj 60 0 obj @@ -5964,7 +5963,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[14 -250 1077 750] -/FontName/DNNGPG+CMCSC10 +/FontName/HQTUZE+CMCSC10 /ItalicAngle 0 /StemV 72 /FontFile 59 0 R @@ -5980,19 +5979,24 @@ endobj /Length 5041 >> stream -xÚí–WXSë—ÆiÒ;‚H(A¤·@@zï½I/’¡$z éˆÒ«€€(½7E¤„Þ©"JG" çœ9ÿyæÌÜÌ3wóÌÞ7{½ëÝï÷Ûk'»¡‰  åWG!½E„D¤*z*&*"  ˆˆ”“S ‡x#PHUˆ7\("%%TòqŠHE$¤ÅH‹I‘’rUPh„“³7G…÷—PÉŽF@!H ÄÛî~…¸MPPÜ;@TrsÿñŠÐîGûÂaB¤¤""@ê t€;!¤ÂPi!Q@‰¿d˜Çß-_8Úë† ÈsÃÉ ¼¡„¡n@ܑTXu³ü†åŒõßPý3\ÝÇÍMâþGü_“ú/ˆ;Â-àß-(wo8¨‡‚ÁÑÈZÍáÑéÁa÷vµ¼!n¨ÒÉ ý%!¼Ôþp˜!Âê t„¸yÁÿÔáHØ?!n&÷'‚°ª¾¾†¡ÿß¿õ¯¶!ô~àñ¯à?üÖ"ÿQߌðZƒ„@ ‘ãÍý÷“í?–SCBQ0Ò hâ A hØ¿„ÿŠ¥¬Œò -ŠŠßì2„PBòŸ}¦H„§\K(Ý8DÿT¡>h4éýçN¸ùâ¿kGÄÍ|àp8”4;‡ûH€…ÿ§ýq÷ô=ó֑¯OJ¤¤äq¹‰êCÉÙJBx´Y?çâ–d΢ÛËûT$Ý»Ç×Þ§k(jP’Ü>±» ’x à/£«( {0ò²½ØÒweá'†(kw|5)z…jWòÇ‹à“ Ÿaô÷á’sí(Ði?Y¦Ú­¶? h“µòu¤^¤yýRە:ˆŒ@%¿(&>á]ªhۓS„Ukø>ùôýø“vckfûûÐ6w‘;uáÎOáXmMÕÇûnOØϼ«¡¼Ú·ÐuõoXkk)3>¸þ›YsH+.‚ï‚»ÔV¬žÑRψ‹ïüû"èÔbšJzlßÌìå|'›NGÆ -ØTuîgûMÂ2ܽd¶™!÷î‰Ëþ<ñuþÑÖ(:æÓ÷øšëª‡.TŸ¢_'’ù䫯Šß?ö_²x6Ç0D:‘¬ì9ô#¢tÐpß2¯^ìÇ'5‘ú—Fá u5Cp‚·Fæ^%’(¦0ZãÁÃê›p‡.BÜA còý¶ÕÚü -:}ÛmáU‹+â2Uì ¨‡ùÓ-ƒŽÇï@̟ùªf­—RŸøa'™+h©zí]’9'‡I¦cÌ*Ú.î8æ{ ~õï} |`6PKH2eÑJ‘uŽž¥¨‰îÞ¼(ååþâÑ}åQV‡§,òՋ¸Ï]&+œ¨»=¼>p5P?W€€Ò-•V¶Ï:“owF›ÐkŽ8pœ¶®ÞþÞŒ!¹pÏ5`“Ò¯úQ0 ù.2î?%L3Wvf‚ÖÑÔÃÑü˜nJ Û›ŸÕ@NoT÷ðS…`M5”)+O{Qæì8³õô’üPëŒr2ËhµÛú–gO¡ÖâÞÀâX³´Et¼qڗƒQ–ìʾµü¤Öa_?ˆÓfI V.î˜Úè֓¼hUÏ3Öÿì†Ë(9ƒFö wëä[À‘ê±é^¸éaWoí<;XœæDQ‘’Aë܍°+¹#·ü±¨3SÞJW^èr‚ÉèPSðñNFáí컘¬Ôû.d¨¡(/G·ùŽÝ]ÓafŠÓ·qTI©G í3ö>&Ã0e C-¼ÅÐzj\=îÒ¤’½oŸ{¿/rËÙ4€ßìˆGÅI¼Ðš |ç:Ç6¾K£! ;çë€ve…±táRÙêpanó’G4¶'ê³.ÀýÝ÷Ê«ÒÙ=×YR–ë­”Í:ú»4h¬73Ctە€"RHζoÊþ@ÂûçݟKì5\Oo£?3E[¹b"Õd£•®ËžÖïÅó9sŽúc‹Š#UuéW[6™%°÷b©ùùƚ ÔùBYe]oÕì¿Fá²]éèç­îż»ž_ÈÒÓwÞKÆWϝ’~lÉ~—|Ë9çÃZé“ÂüÉÂÞloŽIñs0 “†¨þû¥…ñ­iÁ7¬$¯Åö8ß\’- 3¸4Ûéö=½û6ñ–“1Î~ 1…bvæ!­È-å’ì8Í*}˜d«’ð.®íäªÖD†¹±jýD“oC\gjÚ)R@&'q†oOŒ6¿øÉòtï9*MWõø’+œij]ÔÌé]`å5):vBêj$€‚ʬ`J³}ûkx½P¬Ö€ø–`[Ãïš9N½‚†‡ÌÂ^j«‘’Ôş¶¨ó÷´üB—|¯®W„_®üÚoÁ9[F"­l>ìc´; rö‚›“hƒ5Ô<=(jR(âh{iÁ+C¯†QžÛ¿ˆø]·ýXÚ>R2¦µ°A)Ø0ºkç:‡¶ˆÇPD/€%ÆÆgtû}³Ý’/L¯ÞÏU7²Oçö©š/•ð¬ Ëý¾Kç¥È €L'«4åÑ´±|-ö2ô¨M°VË»`åNžä+‡ç#Ú[Q¦óÖ´ߦ2±Rï BY²'÷ØËô4ˆIÏb/¾ï—r“„jsÖ ¾±fõ’§ÇõɏÍF°,â3œ„Q ÏÆmåà? --‘vjSKK;ÌJ CŠ}Íì~Äñ腍Nƒ·8¡1¤èühL¯4Î Uâ̟+±Ò.{Sí@˜V»Ôê隐UsWytᇽŒÆÛ^ŽÒ£ê‹;›äw6Hs˜‚çà1ÒgûYG`!ê¹Àï;?/ºŒI#œò2ç"muLúÙşËà]™†ß#9–•›½j®/å¶¢"ðšnNÚ:R°çRšå. Í2¯Õ3úpaP³h‡à3ðtþ°¤Ù5,ȝ2°w/´ÊÝ~Ýìàѽa}œ`¥4^Nj§Ô¬8î*cùöÀ/Òù«ÎÓ_ýèd¹½þ<+J†ß˘ï <5‹>[ԞJO¦8ЋBûUäÝ­µKzåÃç’x°ŸPÞ³p5Ѥgý†5ô5®aÉǯ”®Ùýg]kÙ\DI¶°ï{r‹-SªÑ½#ÛÌY‚ºNֆÐî “jz¡úìސ·ä »ýŠ$ÆXÊ"k©™Ä:ोt‡ ´8֖7¶ê?æºZPNàZÕµ>ÛÄÆÁþQrÃ7¹cƤxÏQZ6¬ðzê1p·‚¬À¢¡¬²6þrÁFd[ÕBwH*Û9®Ë¿K€’IÂk¼u9…Á>ݪ×ƈ‘ I¢1/Æy»£ÁÄ9ÇÓ¹îc‘ßLÇ2gɜo‰ä ´$¬¬½Ÿat¡Õ±ÉÊÞ^b!¶m:Ì ^I/™Å²«° üŸŠ(ÊóS‚åN¬1ì5ó#Ìt&,ZaAӞ»{àê]M–aÈ=+ÕßÏËXµŒšÊóÈ©NšÓëö|P~¥Tù5Z¿FƒÚœ•ψz ºýIU ݞ*m¹v2U“è.?¦ÁÜG!ºÏÏzN>¾{9v¦ûAx…º'±PW¤xKYŸÏz'üÆÃ_k9‰‡.¼®êõ£j±ø_ÛÖx…+‡€<%¶Ýˆ‰ÔÜÒÕP1 š¡`~ÊYfÕ'ëšT5Ôba°#TyH€M?¡^¥[t{]£Ÿèž•n$©GƒÊ¨e¿1J› Þ^ñ¹…}œ/ΕC™»¹Ø~!e¹"7åÉA´4¬à­}`¼-†£cZ×7„ p4˜ˆ(¾×DGhØí^æ8uøe"´Ó›¬Ha½íæG'¨ŽXݑUÚԜ!Ø4xÇE,tÛ蛞°4P¹É؉m䏚Ûݹ˜Ó)GÔ2ü0^±“* ˜£Z:ÿù†‘6§rp©ðۗÝ>piõ£±—D{ËÆ•G•H¯D"—VAçLâM´r²I¾”A½}MNËܘ?Q¤±£uºD*Ó12i´×LkŒ”†d;ӆ";€I<¢S®Ýµ ¡)ÄSÀ‘ùo_­¾xûMÕ%%]Àô‚c½ðz=–¯¼UÕ´ù°–pDeB‚rêÀ(• Xç]™¾‚Á øãÃ!N…ue“_R¯‚f¸ñÅRløã -®íôííÆ{ï/>—É1‹ñß°°wi6M=YºÛt'ÐB9’v9›\Šÿ +“P€€ÓÁÿƒTj.ªš—³DXÒ$0¤ŒI Ç(d'#½v:Åywtß.ãAÈ´†"!{öóÓtÎêšTô s;®'D²’š»^?`ØÜ¾ÅÐXƪxý•Ý Æc"›“µÞɞµô¬5 -%ž“Å)$>‹›“Ë[n2z¹""l!A*üTž a.,ìz¨XŒtîWó}Îû°U}ôˆlyÕí¶ýˆÿ}¤¸³ÓŒŠ’vRäí§ìɖx2ÒÝTôá­a‡ @µRl¥u&çðÉÈ¿ŠÊ¾Ê`‰õØ7{vcvTYJ=‚Ú¤¸‰›ˆo~»ØT¢ñª'G¼nX‡ Lh¨‹¤­TÙp±o—ÍH’ý„)‡æåáL&¨7ՅÏ[ÒûΦ€¨hš‰Ù8œŸåN«ù†Ur8Öøû žÊ®pË+á˜\æ÷xžŒ:8 ô¶¶¶©͹Tü×ÙOÆÆØ!v¼ÑïèïX„ºÉjz L/.¤üľ¡Tfª.?ݞ OÎd¨;«SÈ -½’Ñ2VZú2•†i¯:,{Yyˆ`Õв'ÍX“R´½Ÿ±Š'i¼Š#krÎ!4¥,?Ö2ólóg_#¬#Þ-\®,ʦºSã’bª~§ÞÞ “íÎÿ…¥Fv³x4…æì%*ˆ¹­ÞèQŒ›=°º²Æ Gn_R>ÆAÁƒo´Ÿ§|– -VŽœµÌ&Rßuituëw¯oðíàÃÙÅoΣ$§ƒlt?”V+xƒ–컽—ÑüýñV<Ží™8D˜v-§d$^¦4·{ý•Å ›c’þ"!̘¨óKœÈ4§Î~æå¶KäycI`˹}îDõð·¥µm1íã¤TÀ–AȨϭӸ‡óëü™®eNÙ¸$\ÇîdØj—?é÷i’Þæy7n‚_«w´êó®Ô±ß·t…´ÎˆNÙ{èR¾á)8bsá³¥"ujúa•ùSÂBÕÙãLð«¨Ék  J×J¿6°$t~ށuGç/¿žÚ·&;Û£÷ùF¶¯yyÏ(ܘ\³|¦qÿùSô²nÉK ¼¯œ!ÂU2ÉŸÕ}ìèóÝç,¼©uϵå6;$‡u[ñð†³­ æôh<'¤ö Œ÷ð´à¨´(þõ>ñu°Ö‡Î,S'`™µßKz'“_´€µ1D -7wã‰`u¿£hÄb{[‰R³‘’3Hr“þþ³ëÄ|ÎwL×C§äw1)Ö³Ó½;cD/ΕƒôÉCÒ øb'q9°•ßÔÄî(œîöƒ8ú•l¹¨›¶NñB/ŒÄ‰«ÀÊS#C¼3•@þ§ù˜»H.·ã±çIÞg¤=1¿½È ž -1µ Ü=qè”HžTK_}¦)¬šÚ'dü¶=U—wM¹.úc=¤\Ž|Böª}i©gm+¯nòJk6Ƕ•Gð§[SÙföG%ÎÓd*Ó™·ÕûßÞKŒêü±‡´í` Úä -Ï -\rX;{˜}ЈUÿÝió|íéÀž¼ðÀK_A.[Ò÷­ÄkLªA²™ßv($J¬V¶ûžo:³†AÛVd¸ÌP¨FþJÞ;ʽ\”?ÂC¤?fÇú{ì—µOøC1ŸßpFœ/RÄ 9L ϰ¡èÝÎÝq©/` Í£õ]¼¡¼Ž„œXG‘/î)WåwÀS ‘É÷y›‡•9ýp;°ÁºCwŽŠ"ZÛKÁ8‘…äc¯–*ËÛhhʌ›êº’ªea&F͊N·ƒ}÷—uxuM/[]ӄ9†¶P^åÚQQt)¨¬D bt à@ã4]{Ïè´{8™ÿ=Ÿ®[!çÍA¶M¬:oš­¹P¥U`¦Œ(±`ü!”µþ&»‹•íà˜%ӛœN«@̯ƒ½+HâgEÿËÍU4Ó?¹ð|¨¨›’$¤ý%‘¦ÀêÂAÍ:x"ü3¥³‚íÔ³Ž7Ú%'¹z¤m’Ûwp,¼ú^?ɼæ 'ÉÊs “—Áôà½GYtÏøÔ"ß't2kÛÞµ‰¡$ý//Òÿø?uƒCÐÞ(wڕ”ôß¼tþn +xÚí–WXSë—ÆiÒ;‚H(A¤·@@zï½I/’¡$z éˆÒ«€€(½7E¤„Þ©"JG" çœ9ÿyæÌÜÌ3wóÌÞ7{½ëÝï÷Ûk'»¡‰  åWG!½E„D¤*z*&*"  ˆˆ”“S ‡x#PHUˆ7\("%%TòqŠHE$¤ÅH‹I‘’rUPh„“³7G…÷—PÉŽF@!H ÄÛî~…¸MPPÜ;@TrsÿñŠÐîGûÂaB¤¤""@ê t€;!¤ÂPi!Q@‰¿d˜Çß-_8Úë† ÈsÃÉ ¼¡„¡n@ܑTXu³ü†åŒõßPý3\ÝÇÍMâþGü_“ú/ˆ;Â-àß-(wo8¨‡‚ÁÑÈZÍáÑéÁa÷vµ¼!n¨ÒÉ ý%!¼Ôþp˜!Âê t„¸yÁÿÔáHØ?!n&÷'‚°¦ÑCS+5þ¿ë_mCéý0Àã_Áøÿ¬Eþ£¾á´ @"7ƛûï'Û,§†„¢`¤ÐÄ‚„Aа ÿKYå$"¿Ùe  „8(ä?ûL‘O¸–*Pºqˆþ©B}Ðh8ÒûϝpóÅ׎ˆ›ùÀáþp(iv=÷‘ ÿOûãîé{æ­#_Ÿ”HIÉãrՇ’³•„ðh³~ÎÅ-ɜE·—÷©H&ºw¯½O×PÔ $¹}bwA$ñ&À_FWQ@ö`,äe{/°¥!ïÊÂO /PÖîøjRô +Õ>2®äÁ'>ÃèïÃ%çÚQ Ó~²Mµ[m@Ð&kåëH½Hóú¥¶+uJ~QL|»TѶ'§«Öð}.òéûñy°œ9œö:Nõ„€ëª,H¢–aî;vmþ0Ö9º$üFM,ÁñÚèûփ½}&í:,ÆÖÌö÷¡mî"wꝟ±:ۚª÷ݞ°+þžyWCyµo¡ëêß°ÖÖRf|p+ü7³æV\ß#v©­X=£¥žßù÷EЩÅ4•ô>ؾ™ÙÊùN6'œŽŒ°©8êÜÏö›„e¸{9È0l3CîÝ—ýyâëü£­Qţïñ5×U]¨>E¿N$ òÉW%^¿ì¿dñlŽaˆt"YÙsèGDé á¾e$^½ØOj"õ/Âêj†à$oÌ½K$QLa´Æƒ‡Õ6á]2„6¸ƒ,Æä1úm«µùZtú<¶Û«=VÄeªØyœ67ú‡5 ¼Çry,=“ÅtOˆÍDèuˆÂz bv¥ 4v¸a* %ðá™dö‹æg“!Ìֵܿe:Ž^^›óï{¨ƒ™‰¨KûGÑg½’ÔT…’M6¦rÁ¡÷R‹“s.Ô_ +¿&¿¥¨BÞñHŸ^dk䘭SՈ6>9š®;OÝhGF½S™8SO1ù2®kåîʒSÊ«Ñ;¤{r×/SúšŒÄ ük†¾»íÒô…Y"±ÒžêÏðWñš/¯ÍŸ+ +”2w0.}P1ó§3Zß˜?óUÍZ/ ¤>ñÃN2WÐRõÚ»$sN“LǘU´]ÜqÌ÷@ýêßûøÀl –dxÈ¢ŽäVÆ ™ãþ®í*æÑˍl}Ê¢•"ë= 6JQ!ݽyQ:ËËýÅ£ûÊ¢¬OYä«qŸ»LV8Qw{x}àj ~®¥[*1¬lŸu&ßî0Œ<6¡×qà8m];½ý½ÿCrá$ž)&jÀ&¥_õ£`*ò]dÜJ˜f®ìÌ­3¢©‡£ù19ܔ@·7?«œÞ¨îá§ +Ášj(SVžö¢ÌÙpfëé%ù¡Öåd–Ñj·õ-ϞB­Å½#Ä-°f5h Šèxã´/£,ٕ}kùI­Ã¾~§Í’¬\Ü1µÑ­'yѪžg¬ÿÙ —Q>r;: ŒìîÖÉ·€# ÔcÓ½p-ÒîßÚyv°8͉¢ +#%ƒÖ¹aWrG8nùcQg¦¼•®¼Ðå“Ñ¡¦à㝌ÂÛÙw1Y©÷]ÈPCQ^Žn9ò»»¦Ã̧o㨒, RÚ!fì=|L†a3Ê +†ZxŠ¡õþÔ¸zÜ¥I%{ß>÷~_喳i¿ÙŠ“x¡57øÎuŽm}–FCvÎ×íÊ +cèÂ¥²ÕáÂÜæ%hlOÔg]€û»ï•W¥³{®³¤,×[)›uô6viÐXof†è¶+E¤œmߔý„÷Ï»?—Øk¸ž$ÞFfж>rÅDªÉF+]—=­ß‹çsæõ ÆGªêÒ)®¶2l2K`ïÅRóó5A©ó…²ÊºÞªØÂe»ÒÑ;Ï[݋yw1<¿¥§!Œ¯ž;ÿ$ýؒý.ù–s·µÒ &…ù“…½ÙÞ’âç`& Qý÷K ã[Ó +‚oXI^‹íq,¾ 2¸$[@fpi¶Óí{z%ömâ-'cœý@T¶s\——%+’„×xër +ƒ}ºU!¯#@“Dc^ŒóvGƒ‰sާs ÜÇ"¿™ŽeΒ9ßÉhIXY{?ÃèB«c“!•½½ÄBmÛt˜¼’^2‹eWaAø?Q”ç§˝XcØkæG˜èLX´Â‚¦=w÷ÀÕ»š,Ð{Vª¿Ÿ—±j5•ç‘S4§ÿÖíù üJ©òk>2þ´~µ9+Ÿõ@uû“ª@º=UÚrídª&Ñ]:~Lƒ¹BtŸ žõœ||÷rì,L÷ƒð +u-Nb¡®Hñ–²>ŸõN ø‡¿Ör]x]ÕëGÕbñ¿¶­ñ +WyJl»©¹¥«¡b@$4CÁü”³ÌªOÖ5©j¨ÅÂ`G¨ò›~B½J·èöºF?Ñ=+ÝHR&•QË~c”6¼½â9r û8_œ+‡2ws±ýBÊrEnʓƒhiXÁ[ûÀx[ GÇ´®oàh0)P|¯‰ŽѰ۽ÌqêðËDh§6Y‘Â$zÛ5̏NP±8º#«´©9C°iðŽŠYè¶Ñ7 Ð:84³q8?˝Vó «äp¬ñ÷.<-”]-à–WÂ15¸Ì!îñ<u.pè.lmmSšs©ø¯³ŸŒ&°Bìx£ß7Ðß±u“?Ôô˜^\Hù‰9|C©ÌT]~º=AžœÉPwV§>z%;£e¬´ôe* Ó^uXö²òÁª¡eO›±&¥h{?cOÒxGÖäœChJY~¬eæÙæÏ¾6FXG¼[¸\X”Mu1¦Æ%ÅTý>N½'¼A&۝ÿ Kìfñ8h +ÍÙKTÿr[½Ñ£7{`u)ÜU]e#ŒAŽÜ¾¤|Œƒ‚ßh?Où,¬9k™M¤¾ëÒè>êÖï^ßàÛÁ‡³‹ßœ3F':HN Øè~(­Vð-Ùw{/£ùûã­x.Ú3qˆ0íZNÉH¼Lin÷ú+‹6Ç$ýE*B˜1Qç—8‘iN3 œýÌËm—ÈóÆ2’À–sû܉êáoKkÛb.ÚÇI©€-ƒQŸ[§qç%Öù3]˜²qI¸Ý5ȰÕ.ÒïÓ$½1ÌónÜ¿VïhÕç]©c¿ né +i²÷Ð¥|ÃSpÄæÂgK?D$êÔô#Â*ó§„„ª³Ç™àWQ“+Ö:”®•~m`Ièü¼ë>ŽÎ_~=µ5nMv¶Gïól_óòžQ¸1¹fùLãþó§èeݒ—x_9C„«d’'>«ûØÿÐç»ÏYx!SëžkËm(vHë¶âà g[ÌéÑx8NHíAïáiÁQiQüë}âë`­Y¦NÀ2k¿—ôN&;¿h!kc,ˆnîÆÁê~GшÅö¶¥f#%g<ä&ýýg׉=øœï˜(®‡>NÉïbR¬g'¦{wƈ^œ+蓇¤'ðÅOãr`+¿©;ˆÝQ8Ýí-qô+ÙrQ7mâ…^‰W•§F†xg*üOò1w‘\nÇcϓ¼ÏH{b~{‘<%bj¸{âÐ(‘<©–¾úLSX5µOÈøm{ª. îšr]ôÇzH¹!ø„ìUûÒRÏÚV^Ýä•ÖlŽm+;àO·0¦²ÍìJœ/¦#<ÈT*¦3<2o« ö¿½—Õ%øciÛÁ(†5Éž=¸ä°vö05ú( «$þ»Óæ7øÚӁ=yၗ¾‚\¶¤ï[‰×8˜Tƒd3¿ÿìPH”X­l÷=ßtf ƒ¶­Èp™¡Pü•¼w”{¹(„‡H̎õ÷Ø/;„kŸð‡b>¿áŒ8_¤ˆr˜@.ž#`CÑ»3º9âR_ÀšGë»xCy 58±Ž"_ÜS®Ê"“ïó6+súáv`ƒu†î/E´(¶—‚q" ÉÇ^-U–·ÑД7Õu%UËÂLŒšnûî/1êðêš^¶º¦ r m¡¼Êµ+¢¢èRPY‰ÄèÀÇiºöžÑi÷p2ÿ{>]·BΛƒlšXuÞ4[s¡K«ÀL+PbÁøC.(k'üMv+ÛÁ1K¦79V˜_{W.Äϊþ—1š«h¦ráùPQ16%IHûK"M#>€Õ…ƒ:›uðDøgJfÛ©go´KNrõHÛ$·ïàXxõ½~’yÍN’•ç&)*.ƒ9èÁ{²èžñ©E¾Oè>dÖ¶½kCIú_^¤ÿð"ꇠ½Qî´+)é¿‹þ‘ endstream endobj 83 0 obj @@ -6002,7 +6006,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-20 -233 617 696] -/FontName/LMJXGX+CMSLTT10 +/FontName/ALOWJJ+CMSLTT10 /ItalicAngle -9.46 /StemV 69 /FontFile 82 0 R @@ -6019,7 +6023,7 @@ endobj >> stream xÚí“UTœÁÖ¦  „wwww î‡nœÆÝÝÝÝÝ îw î$¸‚NÎ9¿¬937³ænÖÔwS{ï·ÞzjW}”¤ÊjŒ¢ ;°”ꑕ‰•(® &¯®ÎÊdebPRŠ;‚-í ÆÎ`> +//+PÔÅÈö·ÎÅÇÁÊÇÁPÅíì=-Í-œ4â´ÿPqEmÁŽ–¦Æ ‚±³Øö¯‰©± PÍÎÔììÁŠÚØUÿ±Ä ¨ -v;º‚AL++diê 4›[BÌÿÀ’…˜Ù¹ÿ•¹ØÿgÉìèô— Hó—“ø—d±ñ‚ÀffE»¿»ÿ²ücýo¨þÝ\ÊÅÆFÑØööÿѪÿEalkiãñ;[{g°#PÁv„ü»T ü/<0ÈÒÅöß«²ÎÆ6–¦¢s0‘—‰ƒë_iK')Kw0HÙÒÙÔèìèþg ý;Çßîý“‚Y^AN[Z›þ¿îö_uecKˆ³º‡=Èòß þ³þwü·OŽ–î@]&ֿ¿ßÎôÿm?Iˆ©ÈbTs6†€ŒAÿ•ø_¹ÄÄìܽÿ>#F6vv +7‹—ËçÖi@,\À²@N–Ašº8:‚!Îÿ|üŸ±™å߁Áî`S@V6–%´!ý½Ñ]ß"™VÇÌ7õ$ô>œŽp§Rª`ZûùrɌ1F‚áÂ+J\ÇåÇG¤hˆÅðæúKb¾¼¥}³m™Ý` +v;º‚AL++diê 4›[BÌÿÀ’…˜Ù¹ÿ•¹ØÿgÉìèô— Hó—“ø—d±ñ‚ÀffE»¿»ÿ²ücýo¨þÝ\ÊÅÆFÑØööÿѪÿEalkiãñ;[{g°#PÁv„ü»T ü/<0ÈÒÅöß«²ÎÆ6–¦¢s0‘—‰ƒë_iK')Kw0HÙÒÙÔèìèþg ý;Çßîý“‚YT^IKNŽþ¿îö_uecKˆ³º‡=Èòß þ³þwü·OŽ–î@]&ֿ¿ßÎôÿm?Iˆ©ÈbTs6†€ŒAÿ•ø_¹ÄÄìܽÿ>#F6vv +7‹—ËçÖi@,\À²@N–Ašº8:‚!Îÿ|üŸ±™å߁Áî`S@V6–%´!ý½Ñ]ß"™VÇÌ7õ$ô>œŽp§Rª`ZûùrɌ1F‚áÂ+J\ÇåÇG¤hˆÅðæúKb¾¼¥}³m™Ý` ZHÕ¡~ºè=L+#qJmEÜû¡k€¶” %1§\˜F0Ýë.QCⱤW ËôJÝҟ®e#, H+A¦lb̄ÿÉÈÜÚiߺñ @6t§IÕÑ&£Ùµ¢<¡Ô›ab¬¡uÃ{–'Šmw–aQÝpê˜JâO¼LԞ¾T`š_•m‰$¶þÞ ´H8ð•ØÎ Fy “ÏgÑaQ?}kЉ&ÿØv¹ûeRõýÃw6j`߃ô;ø¦à»&c¡ÿÊüùÕIÛV1ݞyò²­,þFŠ3~æ¦/e¤€B¥£Š %m?é‰ÜK4`MƊDé­^oÉÙþ–€÷U¿þ-i Y#Š‹±ƒ4ÄíâÓ7š»é{ŽUT¬ï@ÎB4ô¡N»²[Z©mê™÷»ëêEk9ê`XÉQæÜŽ‘Kb ȸ›O æŠOj)ˆ‘ÉÝϾo:¦HŒL`Ë«#2üefˆ: —Ì€˜Á’4=?þ–ë:ìcA-ž§°aŽ`•¼t­ 0^5’³^ZÖ^„,${þ3V ±­D[[PÙZzçNÑÚÑPÜW;Wpà1ïý¦ÃëŠ*psQ/-ÁóÑA±·Cí׋æˆT‘Ømk,"sžÃ Å)ÂçåéÑëÂ6g×+JŒ9Aýãô•¦/«“˜]ÎŁ¡¾Ã¿;px^ÄÇí¼>g„û6üø¤§¿²ÔJÞsvÂÑÙ|Ÿß60¼æ.r36ì/”¼ @@ -6048,7 +6052,7 @@ GH Å+ߺâ7Mƒ'Æ=gèh±‰[ë&=ß/ïÜ‘žáÄðDª‹BB8_hB±u[l¨˜Ôï[S±œ¦ë_]q û ö~"Ú8e ¨[Å _°ÀÍ÷cýº4Q7·m Ú·Ç<xõGÔNQ¡rË$ÚÓ´¢u˜ xÆl”ㆠt¡ÊobÞ 8lm¼°¡$‹÷6qû"³qíz.\[.Ò-Áðn—QÁïb¦ݒs/sBU+šøGQWa­…•fÞysãʾ¡?MEDžâ$†áÍÓî2;‹']fØoQ¸¯²¡Ø¬a½–^«‰%í½ù} ‘jÝ?åGžÅwK8f'îc¯¾gê 'ÿéÚÀÏ׺dÚMtŒ†µNžóúbú4¾~"š†·my€IøfúÆV›’qb€O5½ß ðç%q®¯ÔçM-f<£5CŠ[ZšÆCOIœ-±be֜J?=ÇÙì‡È=}=¯ùaß¾ò%ä‰>xP?Jܵ§U“ ¾šÈðë¸9}K®Ýšyqeƒ€÷ês•:Ëx´pkcékJ åî¢aá¼n7R=ó{íç­éDý­bFg*‹‡ -¤fªõ ji®NáÛAöï± %õ؁ej²€ÛÔݞ2ZÖ'úÌò:0x.ã‚&EŽìŽdà ]¥i_\Âôºsÿµ÷ùÛ'5Èý=õŠ¥òx×^±Äæ`¬­Oä· §ˆ8Id0Ÿ°3‚mì}Â^‘º9ŸÇH•z¨V!¬ä ­qݟ÷Æwh•3“³bèêu(9Hp1ØÞØNÄóbcý­ÔŒ¤Û{(î·h¤+ñÆó Ï®ñu¹ü4V…«wœªU„úù¸mèFÕ9=tF$RãB žJó$¿‚ ž¸×,«Ç/i YƒÜö(æ¯Ï|èİFŸü%¼?‹´2|³õ>VùþÌò9ÿßàÿ S°±£³­±£5ð?” í +¤fªõ ji®NáÛAöï± %õ؁ej²€ÛÔݞ2ZÖ'úÌò:0x.ã‚&EŽìŽdà ]¥i_\Âôºsÿµ÷ùÛ'5Èý=õŠ¥òx×^±Äæ`¬­Oä· §ˆ8Id0Ÿ°3‚mì}Â^‘º9ŸÇH•z¨V!¬ä ­qݟ÷Æwh•3“³bèêu(9Hp1ØÞØNÄóbcý­ÔŒ¤Û{(î·h¤+ñÆó Ï®ñu¹ü4V…«wœªU„úù¸mèFÕ9=tF$RãB žJó$¿‚ ž¸×,«Ç/i YƒÜö(æ¯Ï|èİFŸü%¼?‹´2|³õ>VùþÌò9ÿßàÿ S°±£³­±£5ð?lË Ú endstream endobj 346 0 obj @@ -6058,7 +6062,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-1 -234 524 695] -/FontName/XTTDRJ+CMTT12 +/FontName/MSHGRM+CMTT12 /ItalicAngle 0 /StemV 65 /FontFile 345 0 R @@ -6074,15 +6078,20 @@ endobj /Length 3046 >> stream -xÚí’y<”ûÇQ¶‰œ²„ȃŠh˜1ÖÙ³!"š1ó`˜ÍŒ„8a²Ëv²D¶ì[©d’dMq}‰ˆ’d-‘ºªsÎ}ÝÎýç¾î÷uŸß?Ï÷óýü>¿÷ïûÄÐðd’†"¸†Ðõu”`\©¬‚TV…@ŽúdJïîAdõ}s©ºDŠÇbH€†æwB°`CÆâAZ€èÀéo[|€Ó Hõq -àðXà -ºãIÅoP&$72 öCÆùRþlùTŸ.@v‡ó°C‰#“tƒ(Z’wNwXþc¬Cõs¸‘/`‰!~‹ÿ>¨¿õ1DÃÓ3‚›ƒÊ_$íÒÌwz)×ÑÞ'¥A™Vc,˜ª?zB7rÕñ©2oašÈ¨[Yµ›Õ7 2º¦…aHIúã˜ý…mÌR Ën51€lu™E›ëy¶jú›%aouíƒê6ªñöÖÚcóº4D¦›8wY„xÞqpòòLúi¦ÝÙ I¿ÖU|ˆØ}ºq¹ýÒö îÜKÊ ö¦½Î¹ƒý*òthŠ—F,ڜû=BíÍÂ6´„ºañÇoì”"Žsæ~ůNÂW8õº}ãïjéÂgˆÍqŸYé ͉ËIðúX\“ Xw¥w6_Ì`ÙÌف*h2ƒ¯ô/¬\Çv›,›ëQGó×"G^x'¾>|qß3ÎN«蔘é³<}Œ‡Õ­+&£Ž1üŒÊÞZÕ,¹síµŽ©̼”Wø -žó¯?8{vTõ÷õBE96!Ø偍·=>?5(½Aí‘jòÏQAOZ”70ou9Zé±:C+†c‡‹ƒèãØ -Í};mû#³UhƑáù§‰Æ9[ç«Ðñ(¿õÔvG -+2i@øãîÒÜČñ 1Îâ -AÌÌZa?˜èd®¹h$“Æï´àU6À¶ ?¾¦/òÜÃh¥›Q©ó~Úð£‰+7’¥+ÓÜêîQöKƒ5Kª¤Ù6YIHü‹“³a¹ò£Òå–Ó!rÎ^7lá§BÈ+/xu19A%=Ä-ç+Ñrnøö@JZäzr²-ƒ?CD·¤'¿Áþ¾¸TyüEáÏ¿ëêUn¿ç䀁þ'˜Ì ¯plœá䯢\¥‡´7Ç·îú…¸nz$5`çVæëãm”V¡ãdõ:¥7÷pЏöÖÀq¶…‚r×Íá¹q=ΊÛCl&ž¼ÌáO ʧJžxŒZpù´µxºd%C ÛÌü±â£ P‡kƒªÃv_C?áüZì"/ŠlU÷¥6Z¹Œ^¸ÂD«¬ÙKXñ°±?ö5|eÝ·{Q’·2ÓT¹ØrX5·žôðµB+ü¡_DkQFñ W}iç7”<âÚÌäû£Õ«¢—ØÌ×Ü´E‹’‡š_ -4,Œï‰Œ”¾ãÅÝÜÄõd[|"l¨/ý^Ä,Ì=[v"¸zÑSdºsâûvÙô—fˆ¸z —ð<‚«·¾“X°!2 ۛ™ßÅù!«Q­gvmi£­NQ*ª´×_%ÖE=zJ“Ñ–¢øåŠ î>¥ýù…ýÑ_#‚Î)ó¨ÂÌ£c1ö[È/¬ Š:£7yN9Õ{÷}­)»ã]1|Éì×1‘ûëo>ÊÏ2óAùò޳Øsì=NÃÞ֋ƒÿ9r,Hf–í`vÑþ36)¸vYށÛ9™»ížÓS½•Ô–È”#†@)ECtJK&{RΫÅî ÅË®Snµ‡¾z흋´ >Z´õUî¦ïQø§¡,WÈzÄÍ-t§JI´x{q’gü”1Uôñmý¹¯N#'OªCSÚXs„ú´Q&n(Ô©\…b’¥*§÷šŒ,ÙJÌÜqIéþwŠ8*&Җ¢ƒ¼Ñ¯Öôk*íy½Œ»ùív)VP‰PÿŠrò¸KH (»Ý áŠ+P^qÉéBmw+±íþœ‘( )qlšà"”DÂþËòÿ€ÿ‰,ÄPid"†êü!.¢ +xÚí’y<”ûÇ£l“åÈ"OTDÌÝX"‘m2Bd13fјa$Ä Söl'Kd˾•J&É.â û%ÉN„«:çÜ×íÜîëþw_÷ùýó|?ßÏïó{ÿ¾Ïs⬋!9c HD +*…zpKK¨•ƒ€NœÐ#cQ‰xEÁ¨º:Ð¥º +ªSR†)©€@'=’§/çêF¤õN}s©º,‡F8Šâ†%셠QxÀ‚„Æa)¾r ‹Ç¿mñ.b½°do,F‚B Mœ±®8"Hþ”х¨þ1TÏ?[ÞX²× ½Çy +أЈx_ƒuÉ_ 흆Ýcù±þ ÕÏáT<þŠð-þû þÖGpxß?$‚'•‚%pK&þlµÆþ€ƒc18*áç®…Ç¡u‰®x,ù!á¼ p4,£ Ý +™Šý.c‰˜Ÿöæö@naxþ"\öoú£‹@áˆK_Ï¿b¿Ù¿×ÐÖ{ó!ãh€Dî÷֟o?¦OD“08¢+`AA1(2æ/áïTgϒh~`(VPT””ueÿµYqW¨X£s€2QSTü®¢©d2–HùþìÝ÷ÏÚ·7,–†EƒRRpLN§ÅdW‘+µ½ÖO_õ!@Ïr>ý¦¼–!ØÙ²pÏ"×ïâXàÚüˆˆHڐ?C/€kÄÔ®9ÖûúŠʸ´1ìޮŠ#gÀ]|•¶ÌòÏç±UNvd3”ýYxF—0ÏšÅÆc¶z›j1E¶²5­¦n½«ÞC÷êû˜Ü–MsZ+c%vèalù„|Ëøü ÁŠ!;VË:`«Àž‡†31¼]«\眊'AsDåÍfÉ8ƆMìýMgT-Sy]L\`¶Œxžÿë‡ wÓTžýkéO¯Äòo”˜™îÏ 'iK­‘I +­¯þº¦åº1‘O#›QŸüs}‘Œ1źôõÜxï£)ÇVTÅÁâîbƒÅ° ­>í9ç:’ØÃ£î.îttðÈÇ|±èõŽQÌhKæ¢Ó¤Žw¦ô±keD•­dŒó}©à‘¶(ã!Ìaùô¥ÝŒ¨taø²|?pª€mÉ{ËmÅ2û¹ Í/l^Ès6ó…&_ï¢­&.Wp•)ÌJ¿°Î½…ÛìfÐé‚6ÝÒx® ('T)+ ¦öŒùص!¥WIóÏBËx’ld'®ˆ%S¤î.7)€ô¿ œ—¯5ï (Õ_z€6û3ÍiœŠ^¶s|Æך +dLãP/Ò5]3#ãH_ƒ€Å)ÜõŠ”Uó‹›†ÓÞ¼÷Ͳ•ol0g³¥HWMr +Þ³{~£Sü‹$ÿ„Ma¬ ƒ +M}ÿp¼»Ž¨câÿ,å]*§í$‡½@7­¸ÚèÐþŸÀ^‡¢RÅE4’_Ü=ýNŸˆ1³ÓҞµI-¶! >Yy£0˝BQê­~°ÿ¦\™ZÌ%ÿÕ'¼¥CŽ·Óôݗ‘ÈÛÓiýÛ<½,÷”4ùµ",BêYT KrÍ aR—³¤äöm„r#KËóŽûy¾všK¡þ +¿Gúð¨+É¿d~)ªi¢BA$=.ZX6b«7ìÌÌïZŸ®X£”¥Ÿ§T»êù¹a:ˆ§8e[ùÌñ#‰ÓûxEåK3g:q4ÝèÀJ])–àÃ^´hÕIJK¿®-$Y*jËlç#!G½³8Úٛ{ ØñOYÎۖ%Å«îڒ—EŽKW +јhRÙÆÏ§Ë°°ÚÌf¨ßßÉZž`§Õ¾K½_»¬/ÅxRÕ*1¦µf31®HÖÓu>Â'T3¼ã¬]•šC¹2€DMCøa#WP"m©ÕIµíqžÚƒ3·^iÝ-)Jå֕ª‹iñ2Îâ‚Ê8Ú^ûtr” >ª‚:'S¦šs엤ܻÍ#ôò{Øþ —¤Ø’tD)/+eÛní[X8q ;È ÏšÃ-)ótn“ŠaòցbWó$=6YÙ£¬)‡jUB¶3->p.͎:šúÎ.=Y½ê73ÌSêàª3nÞoÏOåÊäª ï‚³ZJ”HØŠøET2·ËZ0jU&0˜Î˜X¼ŽDh‰ån¿4OWËÆ^]"jjŽ6gv]·èlã<$²ífÈ­ƒ±)ª6­…öqc)½8YËðœ¨Ãp-•>× Ív¡ó½ê‚·¸Õ–aûç||ÕÑë:Ý 7ÇO%¦´Ü‚œ×¯­Úel½(eƵ:w9˜ñÙÎKœ]“ ¸¨°ì5â~l»·2­-=ꞓªô9cµ/iÆ·œu¼ÊLFRjfæþ-&Õ}ù5‚ôŽ Xn0ì­>âPn3£PýB§ª(@2»±O›ýuºJòáûÁä«ZúÝÔ,T¢­ÍµGf[u)Š.bE¡b]gOcÇoL%_tdX]ö÷Ö4÷-ãQŒäՍÊ앴ž;üèI\ +¡Û/é}Æ#ô®pûÀ…P͵°ÿ=TùÃÜ6¸€¼ÿõ7ϔÎÑ_D2q°! MáJ}rKWѝF‹¦g=ëÃù*ý†Þ\‰}üï+¶6³ÃȄˆÉ˜=ôçåMKFö|ôÒîJ•4û–JÛÄFVÂ;\ §Óû5‡+íe½=Ý`ÖMúp±_íC·¯íç +$ê|2”‘ãðâ†>ƃ[3](Z't`Éu™ª$r0?@ñòÞ(ºDÃWÏJÛúÄt’~bp¶=Ö°6cË© Øç½šØbëÉ‹ëZ?P˜›2º!ʖ%€šZÉíÅÆÚ™jÌH%ñÙÍyõ1ïǍ®è ¿v3Xꤗê|žÔ_7ræ€íëH55{üLćåzłŸJqºÙM}ú¨ºcç _ìÿ¢p1pßÅ@{–Ðó$™+´Ê<Ÿ£œ蒱K¸03ø}”?!)l5>ޒΗ"¬[Е]cýTL¢Â4úšÐ×ßõ†Ï–næH…ƒ?MãêúMÖ û!6öA\?ÂYR`@{stë1Õ ÐyÓ-®=³4[m¡t² %ܯUÓ&I¿•v²»б̐¹k +͌²érß`6rç:l2m?W/×}îڔ—RexPÜYOÒჸgaejüóÉòe‘ë̦+.Ú"yñ oùkæF†…I>òà ˆàˆ¯c¹-6Òדü,lìš.=P>ï.<Ù¶ ¢~\4þ¥$¦æÇ.4«ÈÞ]ÝFÈÙ‡p§…e7ŒÝêԎNpxÎdPéž^Y˜Fo®’׋(pû(G:ª…OhЛäwnZ`îàZ^_=¾[¯èo¯Ä©=1‹ŒDYoÁv˜æžåµâdžïsž·«¾Ò³[Qô4âJÉàu“_G„Ÿ®~X—ýbâ…ð§rœ‚<õ£ÊjméÁÌÊ÷6â/5Í|$ =oýP¹(kÃáËÜvÍè*ߊkŽeˆËÁžy4ÏÆT–¸"ŒG£ÕøÛŽó.•Gcv=¸g¬Næmí Š}.õ¼ù2æ Z ½¿…lSî-kɏsž0$‹Ô?ԛٵ:sF œÐ̔!Ø£0Z»'W¥|2„ì‹—(ä6Z°Ÿz"ì˜Ðù;×aX4X¸9A ú ;Z®á6ÒÒ.î~·ˆ£áãv!’Sª¨¶‹°s{ŒñTry"Ì•£´ä˜ÑØîT`>ð5%VT`[7Ǝ/ð ÷ƒü—èÿÿh<E¦(²ô˜©. endstream endobj 429 0 obj @@ -6092,7 +6101,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-30 -958 1146 777] -/FontName/GOKYXE+CMSY9 +/FontName/SWZQGN+CMSY9 /ItalicAngle -14.035 /StemV 87 /FontFile 428 0 R @@ -6109,7 +6118,7 @@ endobj >> stream xÚSU ÖuLÉOJuËÏ+Ñ5Ô3´Rpö Ž´T0Ô3àRUu.JM,ÉÌÏsI,IµR0´´4Tp,MW04U00·22²22çâRUpÎ/¨,ÊLÏ(QÐpÖ©2WpÌM-ÊLNÌSðM,ÉHÍ’œ˜£œŸœ™ZR©§ à˜“£ÒR¬”ZœZT–š¢ÇÅeh¨’™\¢”šž™Ç¥r“g^Z¾‚9D8¥´&U–ZT t—‚Нš -@W¦äçåT*¤¤¦qéûåmKº…dgaqºán¥99~‰¹ ãAá„!˜›™S UŸ[PZ’Z¤à›Ÿ’Z”‡®4<â6ßԔÌÒ\tYϒĜÌdǼôœT]C=cSˆDf±[fEjJ@fIr†BZbNq*X<5/Ý)ÀÐ;DßÝß;2ÂU±ɀÄ̼’Ê‚T„j0ßÁRQf…B´ž!P!ÂX±h–¹æ%ç§dæ¥+—$æ¥$¥À0åä”_Q­kl  kij¡`hhb¦`nn^‹ª04/³°4ÕÓEÁÔÀÀÀÂÐ,š\ZT”šWN @Ãøi™À@JM­HMæš=G4“1^GVûk—W•Âw8wsÃ,õ¨M†’~ç›&±6åûM=wÎç…3Ïܓ¿izan£5gα6÷ý•w.ãÝ"?³l±QòIŽ;ïÏîõiaz˰8¯¤=ٗcþ•¨/‹»Â–8êXs¯ÿõº°úýù¿«Zö»G¥Kl8n.èzAmjQY0«Á¢ßøVTїμ;îÉTãvîSò‚V7Ì®NßátãfŽ“õBuÛ;ɯ?û¯ä[n¥ìõ9þæ&¿íþ’IyUîWž”4çDµÎ¯ÎM%î ¹›'ßýà ñèÖ;nïÏ¢?Wq©\z(÷¨óÿº“֋ñ?ÿ4Eðà‘ˆÌ‹k¬Ï?Zç»\E)dÂԏæ¿IHê4ÌÈ+œåõè¯ë»¶þ»ª^.SÛí|ö調gº;þÎ\¯°©~nvÌ­,û½QçÏuǽÞÜbÞóæðþ[GÕý¥_þÖX—Ô)±kŠ–ëö«ÿ =_˾eܧÁd¸=ªêOچéÂû¾m>}°ã™ê®†‰–þ=8ùf榌è½fZç¿Ú© oõ«}¿ö÷dí€Xéyõ«¾} “ªð?atV$ö‰ë$½×*«Ýÿ'ªŸÁ½6ŸùB~Cþû´–|e7io•Gü"IÛ¶»<ÙñÕdÝÙéËíK%‹êØÆøwÊqW éÓªž {gnúTÄ-,qÿìÏ!ÍÕ>—6؝6nXÄ7ïØ!ù¹”¦“öƋ†AkÍ om>ÿñã«>¬·ðŸÉ$uuz¶Ø Ñ ‰7‹OĥȽ;8W{fÒ©¯žGïÝz*ôxγu·NÞ¹Ÿ§—Þ·õïÑӎËÝØ.¶uÝÆ æžיÆÏÿrë+Û\û£_8÷…Í».5+M 2ØÄ4Mf¯¾Æ~ØùÎá¡j÷VêÛ)GLqü•ijv²íÿ¤“óý2´Ns¿^sÿÅí*þ“ê'7ÝÏ”[x-ÄWË8ìÂĘkßҜÍeY6^䓹ûÎó¯¾`F&‹ÐÏýôfµ ý.øe1ËäÈÑĕQ5f EÎLRoÏʋxì`©-|c ë›k9Œ;»f­/3 p0, HÎIM,*ÉÏM,Êæâ+ùØ¿ +@W¦äçåT*¤¤¦qéûåmKº…dgaqºán¥99~‰¹ ãAá„!˜›™S UŸ[PZ’Z¤à›Ÿ’Z”‡®4<â6ßԔÌÒ\tYϒĜÌdǼôœT]C=cSˆDf±[fEjJ@fIr†BZbNq*X<5/Ý)ÀÐ;D?8<*ÐÝO±ɀÄ̼’Ê‚T„j0ßÁRQf…B´ž!P!ÂX±h–¹æ%ç§dæ¥+—$æ¥$¥À0åä”_Q­kl  kij¡`hhb¦`nn^‹ª04/³°4ÕÓEÁÔÀÀÀÂÐ,š\ZT”šWN @Ãøi™À@JM­HMæš=G4“1^GVûk—W•Âw8wsÃ,õ¨M†’~ç›&±6åûM=wÎç…3Ïܓ¿izan£5gα6÷ý•w.ãÝ"?³l±QòIŽ;ïÏîõiaz˰8¯¤=ٗcþ•¨/‹»Â–8êXs¯ÿõº°úýù¿«Zö»G¥Kl8n.èzAmjQY0«Á¢ßøVTїμ;îÉTãvîSò‚V7Ì®NßátãfŽ“õBuÛ;ɯ?û¯ä[n¥ìõ9þæ&¿íþ’IyUîWž”4çDµÎ¯ÎM%î ¹›'ßýà ñèÖ;nïÏ¢?Wq©\z(÷¨óÿº“֋ñ?ÿ4Eðà‘ˆÌ‹k¬Ï?Zç»\E)dÂԏæ¿IHê4ÌÈ+œåõè¯ë»¶þ»ª^.SÛí|ö調gº;þÎ\¯°©~nvÌ­,û½QçÏuǽÞÜbÞóæðþ[GÕý¥_þÖX—Ô)±kŠ–ëö«ÿ =_˾eܧÁd¸=ªêOچéÂû¾m>}°ã™ê®†‰–þ=8ùf榌è½fZç¿Ú© oõ«}¿ö÷dí€Xéyõ«¾} “ªð?atV$ö‰ë$½×*«Ýÿ'ªŸÁ½6ŸùB~Cþû´–|e7io•Gü"IÛ¶»<ÙñÕdÝÙéËíK%‹êØÆøwÊqW éÓªž {gnúTÄ-,qÿìÏ!ÍÕ>—6؝6nXÄ7ïØ!ù¹”¦“öƋ†AkÍ om>ÿñã«>¬·ðŸÉ$uuz¶Ø Ñ ‰7‹OĥȽ;8W{fÒ©¯žGïÝz*ôxγu·NÞ¹Ÿ§—Þ·õïÑӎËÝØ.¶uÝÆ æžיÆÏÿrë+Û\û£_8÷…Í».5+M 2ØÄ4Mf¯¾Æ~ØùÎá¡j÷VêÛ)GLqü•ijv²íÿ¤“óý2´Ns¿^sÿÅí*þ“ê'7ÝÏ”[x-ÄWË8ìÂĘkßҜÍeY6^䓹ûÎó¯¾`F&‹ÐÏýôfµ ý.øe1ËäÈÑĕQ5f EÎLRoÏʋxì`©-|c ë›k9Œ;»f­/3 p0, HÎIM,*ÉÏM,ÊæâŸ2ØÒ endstream endobj 432 0 obj @@ -6119,7 +6128,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-36 -250 1070 750] -/FontName/BRJHXW+CMR8 +/FontName/NTUIRZ+CMR8 /ItalicAngle 0 /StemV 76 /FontFile 431 0 R @@ -6135,29 +6144,32 @@ endobj /Length 5364 >> stream -xÚí’gX“Ûš†EDº€„j€´@(R¥„P¥÷Ž tBh"½7éEš€tÒ»H•Þ¥ƒ (HUªtŽ{ï9g®ÙgþÌ5ÿæšïûó½ïó|Ϻ׻+³†6Šp²@Ê;9bÀ|<|b@˜ª–BÄÊ -C#ᔓ£,ƒò‰Šò¡nÖ@~OHL@TLBDÄ -„99{¡QÖ6 ;Œã—0ê€D£,áŽ@U8Æéð;ÄnÔv²D!1^<@ ÔÞ¨õÇ/®@-¤+íŽDðññ(K Ðir$âýIÉÑÊ (üWáæüOɉvýÍdÿÍÉüM‰pr´÷"VD¼jN¿WCþfùcý7T—w³·Wƒ;üÿ{Lÿ¦ÂPö^ÿ¡;98»ah ª‰vü»Uùš*rsø»ª„Û£,¡ŽÖöH ä¯ÊUå‰Dh 0–6@+¸½+òÏ>ÒñwˆßcûWF뙢>ןú—¦G9bt¼œÿ•ú‡ùϚï?ëßÃA£<Æ„ï·ñ÷ûÏ/Ó¿­%çhé„@9Zµ1pGøWãߙddœ<½ÁB@0ÿ“ß"  -?øüW£®#ÊÅ ©$ |@„Eÿ¢²tC£‘Ž˜?/Áïýþ³¶Býž鉴$ÊȤBá<çfä:6?jŸz¤ß<<­Aô¾`7íÉIõhßOb{<žÛ°;£YÒómèÔSö‡RáU¾ªâqí'f]^^tå‹ÔœVƒ­Æ«Çbؘ ð8eÑmÞ{Èè¦çÆ5\9O¼ÍðȖ9ç¶ýfÚú‹©^ß¶9D¹W[ÿlÍ×Èo-·Ä,§ä<”¸²žŸTÞu!Œ(^•ü”>!׺‡Ò`]¿ÉZEƒêüºœ!ú£Õüœ Eŧ⣦__ö°‰¥¼,w.zk^£¢e¼ÃR{×äŒ#,1Ún+ŽÆZvÆG9iä|IÕZÊ„rÐC¹¡ßMJރô"q&›N Ÿc€ëÝ,ÝjGòcÆûÒõÆÃæV˜­œ¯“ñwëÞª!, -ÝA4Sä:ÈÇíJ7o£rXıBµ`p?‡^/®Û¸òÉ­ê0gýkìgp®²Í/M3D«DÊ-ƒKŸ -5™üþúùWK;ÏüI"±}3fŠߘ…WLp­ýLmÏåç.ýô¦yL̍è=ÓÇ¥¸Ëépåõ•®¤àô$$æd¼6Mj‹À{ (Ò౐¹òÒª™»‹½·RÔû³í³+›/EÛÒK–Ïyß²Uç[1Y³Ñ×,ôÈn8%R–iK~±T°ú¬{»þ•cÇœü˜ÿî(Ãu>­>ýmH™K¤‘=‡É¢R|TÁ–¿Sa§1çœSJJ ‘jê°ÔãŽt¬ÍÈ"ÇÀ C}«§%ÕÞNlF˜-´ª57f `Õ._5+=ØÔ©5»6õ4݁ŽnRÙ»Gñl²l2W—Ìnù‘bAAø~ü]‘¦gËS -~¯Å-h‹«—d”.¦)ï?Ä/zÞúLr˪Lª2ߍwµOE$;DGJí2Ò$²^°÷Lg›?*‰~f`¯Í“ ùÅ)%5öϧñÚ¬ϱ›‡dùk½³ö‹>–!V.m9ŠÓ£ˆÏú1åêû-­Žw­¤µê =¹÷dyV,!ø]N~»<ƒR]„éÝ¿¨î > „t¤¿h#ÞTm‹Ã{šQÃ~¹¼Éð’R³€x˜ãöx¬–ª}"CȺ—¨önQšÈDÑ‰"?è†n¿³ÐmÖ³•Û¥ÔBØr)«1lGÓ©Ï)²¬Aîç"¹’è=øðÐTˆ¿*‡“bB¼ãڒh].Ï.[ÛÔɨóƒÚæå4ÒªÈy†‚™u¶ÎÃǰs6L0Ø,Ä5=V7óJÒµï=Sudå'«€ ‰Ü ~µËƪ†ãöy\5¶­÷mýX«‰o2¸¶yèÜ"b}¡opî(@r¯Dì-$Ýü¡ÞÂø3ìÁÞ·%uñf1œå·ÃK–mÄdŽä"ʳd”Â%…ª ¦ÛC“Þ`"ßÂkBS‹X]úðò -¼³UÎ]>¨Æ½ÊØWgÒþOs¦ÌÌ8<1J¯Ý–+ñ+ÔÞ7*ÑÏZ è•›R÷À¦Ø=ÊnS£ˆÎ¥`ÉuŸÖRF¤!s±ª§Oi£Xªƒ]–ÂOƱž}عr™oHJÂJâǀZ²!bÑ䙝°¾/Ò?_Ù3©Ðž <¡›P0܉ÆFn×ß\¹2ž‰ˆž¦$ªPžr?¯ô¹°ÅgŸ˜Ä‹«eìáéíy*¦s!{·hKîµrÐSø,í੨ıÄ]ž½*(.YÓö ¬ë¢XöJg!Ûô¿¶n5<ªBì`ÇN3”r¬ÐÚ `æ¹±µŽQÌXD­Ó¿åî,‰=J·_4«9Ԁx¸Õ6Sô„ —®©EÓKöàÏ0„ªÒHZ‰ì)Ö(ÿ­‡xDBc$꺸wHÖ¦û–lҏ-Zà /ë<çײ''ϹõYf¾°Ž´&㊀ƒ°7/AÆevÐöf•0„Åî¥-fÏìu› cu^æ!ÛZ§"÷´ݲaT+qtgӕ—ñ1W´·FIcÖÅMÒü`拏4<ññÕ{o§{NFÆ`¿Ž2ñõjß³œÛªhJ•u=wYnŒv)Ô«z "¡|›x¯U%á´ä|FñˆÉ]íÇä qË06“²_pH~ >Śdûý,Ù©1ý\mÃ!²A_iñ9\w¾^Ù5k֕B™'┼æÉk:Æ-²±—§J Èa Ö¶e?¥÷BG[í«±2éñláÀ Àõb?ݖ¥'.Y¿³wuI‚Íd¶†V0—sº¬PæfdœÆuØb»Òí&J"ŽzÖ +\֚¼†ù£•¤8Ÿö7âÖæ8 -“‚Æ1Ó»ւ¯Ph»MxƱî]CÉ«0üˆ“€»ÑuË8p<ŸïÌGÁo÷oÚ'aMl.®€gT6ºÂ—ú]ÉCþùCôlÈ'ùbć#ÍiœuóRñßÀùèÓáœF¿Fs ©ÆÉžè+Ÿ°Ÿ•&~۷峉]^™ðªÖVjCtqù ´™«7¢‡ÅY!ç÷ÒÓîŒÎûWÉ’yS¨[Úq½ÖdŠ(Ïä¯J«òñ(Ó ->*Ó+TÓZŸÌ[C‡.TÎl6ù j¦$c‘h(PWMÁæ(ùì0–š‚Z¹—#Æ-–"Ôa›ƒøarmÓwI€dª’²ÀÌ!­Î—%xÞqwœôP¼­w¸pYßû)/Œ§•›b¥8A•¢í ¥î¹l„Ž÷_ -> O(-ž|ô‚¿ OÙÓ xCíĖþ}%Tв² -÷᪩†&UEUJ»Fè&ãà‘o^¯JÀœ-Kà7¬ôël– ñ‰ÝѺÛ,Ö¤5tÜR_ˆá7ÂwÞ¥Ú©Ï´ì“|åFN<¯ÑMî–*_çúˆæèT²ᶜ‡eÃÅYIèÎ0zÎßgNL¸„mÒ~ô(¼èƒ ïpÑ鍅¨ô³¨Cßú<ªúõ‘×%W\‹4¨yðg±+ñ„Î|ôYæãԐÑŖŠ¼OxJ=¶¶V‚þýÐmÛª½ ]²‚-m¡¦Ƃ«0{Û 19'A_ö͎o–òX*ЦôâÄ;º˜Âø1‹-èn½|Xû›è¥Þ -ýb$ ‘paÄ{SÑ>`杬±ÏÕÝVì;éLdìX+‰ã¬*<Ѭ£)&k¡,²Cƒæž?Qâ\â àÛ-Ü^¨T/ žV…æš%yì1Ûµ SB`$2e`|Ãí\‘¦Ó­UÀ–<Žg²£®×Ž ÇìöˆÈ¹ò\â½u¼£Äw{ ™b:¬Ò‘úµû)…¶½,šé´ôÖxºÎ± bx<¬Üçàh3í`гÅþÏsÚÙå*Ftæ6«ûªŠ†”¤¤fÙô›8—On -®ië|á‚#?©¢»¥Ü(æ% -%®¤i'gø½Nқý\䠹ؤ$`Åò›ã¡\­’d“?ᖙùñ—сžR™&*¯`©TõTVþœF{bVDÃ/PI°ã æâñƒ\²!6£S¸úvh­^tw¼au9a2¡8Ѝ¿Û×ð“®=–—#)\Ðõ;ÅÙÚ{ùوw7%ø—Ñy[¾´—bè´¹ðzùýԙ~g˜®ô›©=å×c%5‰¦#¤¶‰Cô¨æÛ± t„€¼W -©Ú0´&ŠE 9n}×A‹¬9K]õxyw‰â2n©c1·Fíãj϶â¿a¹ÔaußÑ8xI½U.ªLü]ð¢òÕ%ˆ¸¢‚µ~7sE ÈYÉMVØ\ݒúÛ2¸™n„«_ÿ™ÌÍ2„‘À†Ù¢¢Ì*ÿ±RŽínà—µÞ{ƒåûÖÃÖ®ƒî2ž®›;5…Uæ®ìËÖ°Ñ ÷þœà¯ø*8¡¦?¢.á/ª¢ ç҄²ŸFá²a¼yüÄÄ?¥{§ïÈh­³…~­M®Æï©)qœ/_îZüU²õŒgª”ì¥ý -VkâÕâ9%ådžI£†øLV ªÙƒFåÊê -sM!xññYé{è{U# {‘´òDG ۇzÂ#Ç> yìäܓÑÝbr*wý9§ë˜¨ŠwEÝ#µj8ð©=›Vp5„IJø´W¸3"¿{ä)ˆùŠ•«O_ú“¹ig‰Äëûð^=:vN™¥a/qL\Ë:ª:Ɵê;¥¯í™ûÏk;²¡; -ô‚kZTÙdV2Uµyz­úúUttÏzîÓÛ‡-´¥ÜМÈ­×DXÜï^xƒº¸ö%Õ¡6‘Jºë±..  ¥˜åN3 k)’u`J÷wW¾3‘(ÔÚ,ʬ{iÎywÞ{‹&òÛÇØ1€çÊúƒTbÊÖÅ8â™9"uÉL¹®[‘$’>Ë*0¹kP^×ë@è+Žt¢ôOð¾¹m(õ2/ó&((¢Ùê•Fۂ }ZæÞ§¤œÈÏÕ úš1ŠúûýÔfÓ=šb'Oñ¾ÛLÐP™ƒƒ9a^dsB²P1I2}Ì¥‰3 ,eÌî.ñó¤œ)žœPKn»1¼S.㢔NE›±ôÆ`ǹþ˶R €Ó{u„‰ûÓ -u gA-.KZ|<©D<ò®úO6Mï•¢:Š1¬–ûÈ£·‘aÒOiõQ+„÷¹*';Ð*¹ü6ä|o­¤ðUŽ73Š¿RteŽÞ!¾yì]™@ 5}¶¢=¬qÛÐèÿ’ÆJ}YHóQ2»LÄk@OÜ 8®AóqWª=~è y#ÂÀÂeú&ŠÅî»¨qÚ:“çlî˜ÞñᤓZn´Å!±«ªóùr=ã°rõÝðE `KÍè-«.ìˆ ÈóŒÊöáþhå)ÇÚynX¿ãÿ#@qb-E›1kOÝzǯ$m¹°ëΕ°uÛ´e‰‹¾=×^“ÚUŒÑ‚¦D¶Dn¡ÒnhmÚq듆¬w[ÑHÍÏ~”ö&R -PÕ Ž”mö&ð%[R®ØÔê3gqþÏ©Êk­â‡z‡af@¶‡:Â89èGŒq§dÄ +[d¼Sa¥Z[@çWKJ‡¸G7Á£ Lÿ<Ä#õa†|ˆ|nÓ?!ðʏɾoÏJÒkøÊöƒ˜¤ËÌ$0p¶V֛%ÿS}މÇD/v#ï5P¸ÝÖ!.ºU·%µ›¡FŸgs‘²/u*àø¼s¸âBnMŽEðHÎȝZX—Tñ¤ÿXf4S{Àýtxq³;^ßû`û 5LùsÙ4d+íÛí§´ªoŠŸ@ïùÃõiɼßlK'Ëâݝú«r f»`ÛMîžvíG–&_^ÁGâÑ¢ó1<>Ö^³Ðç¥ò†UÌ™F ÐjNCÛýZ¾uçSñ큼l 7™Ñ‘ªÒs:~ÕˆçrÓ!ú›$£!Áãú­]rxò{>݌óî~M½Å’KnòºuË¢)½rÃ뛻ÜmϏø*Ñy¥áŒw£?¨Üøt e†kû2€¿€å ‚ý‡ÒuŽ£“÷G£ïzJ<ÔÅåCKÖ;veC‰Nµ!²_u#«ÊÃXüÊ«‹Aqc‚­“TkE O%µ¦ã’âýie£·É|h֞<黿ʭCºÇ5ÚìÓ­K>ùq÷ r…ÍC$n˜ ¯õÆÅŒ4õù{ (¥4š_†—À’¸‚šBttÓ3éKªìb@Q™¯Êcm$·éÐGÂî¦Ì -,æë¡å*0ùéŸaðƒ$Ï\ÏØG^áÃÏ,;YAûöøºô‡G¡ášk“WOZÈ3 ÐKÓ;¿Ã»¼!Üÿ\ÿvY‡Ý&*öƒ¡àNußâkºfo/D:͝ c%Å ‰b^€Kó}ãv“ÂΏÁ¶qRÂQ—Ù ^€õ‘}Pt²O(§€ô뺰á“®8­Ô’÷²ñûwÍý\¶…‰¹ìl¹Û4±§ñy ë;z}ö†7Аu”O%àõä]y‘¥·iowԉýÝí[’“±‹Œåó#e£”Ú]fáL„= ßÖ7{s¢íe«u¦gZiŸ§iSҏƒòtý¤ ÿˇèÿþOXÚ#áhŒ“mGDô,“Œ +xÚí’g8œk»†#¢D0jF цQ¢F£FïQc˜ÁèÆh½·è%Z½GÔè=:!$DMÔ辬µö÷íc¯oÿÙÇþ·ý¾Þû¾®÷zÎç~6M0ádTprĀùyùŁ05mQ ?/„˜ †FÂ1('G98)äãBݬ ¿°¸ ˜¸„˜˜ sröB£¬m0@ç. Ô‰FYjpŒ Òáwˆ%ܨãd‰Bb¼x@¨½=Pû_\ÚHW$Ú‰à%&æç"P– ÒåHÌ÷’²£•Pä¯6ÂÍùŸ’;íú› Èñ›“ø›áähïD ­ˆùԝ~¯†üÍò?Æúo¨þ®àfo¯wø#þ÷˜þM…; ì½þCwrpvà Ñ@5'íøw«ò/45$åæðwU·GYB­í‘@È_-”«Ê‰ÐDa,m€Vp{WäŸ}¤#âï¿Çö'Ÿº®ž²¶÷Ÿú—¦ G9bt½œÿ•ú‡ùϚÿ?ëßÃA£<Æ^„ÿ·ñ÷ûÏ/Ó¿­%ïhé„@9Zu0pGøWãߙde<½Á‚Â@°Àãß"Š<†øüW£ž#ÊÅ ©,| @DÄþ¢²tC£‘Ž˜?/Áïýþ³¶Býž鉴$ÎȤFá<çaâ>6?jŸzhÐ<<­Iü¾`7íñIÍhßO{<ÞÛ°;Í£Y²ómÍèÔSŽÒáU¾jqí'f]^^ôå‹4\Vƒ­Æ«ÇâØ˜ ð8UÑm¾{Èè¦çÆ5Ü9½Íðȗ9ç¶ýºú‹©^ß¶9D¹w[ÿlÍ×Èo-·Ä-§ä=T¸³žŸTâ;ŽÀFT¯J*‡@Ák½C°žßd­’ͳêüºœ!^†£Õüœ %¥'£¦__ö°‹§¼,w.zk^£¦cºÃZ‹oòÆ–m·‹•@c-;㣍€´ò¾dê­@"yè¡üŽð‹ï&%ïAú‘8“M§DÏ1ÀõnÖîû5‹#ù1ã}éúcž+c«¹Â29´_Õ×Bí…\.ž]/IxpÊÓ"iÞϰûˆ¨»¸¸ß¯‹wdÔÖÜfÜ4«»¶#!ªPËþ4s§;6¡-ŸKé8^aíÿ–ݶÓEäÇê.>:<3L%J¿¡®¤lÖ{®'6ë3ø$ÐÂM!ÃæV˜­¼¯³ñwëÞª!, +ÝA<Sâ>ÈÇïÊ4o£rX%°Âµ`p‘§~/®Û¸6òñ­ê0WýkRìgp®Š2í/-3D«dÊíg—>ê²ùýõó¯–vžú“Fbûf̔¾±ˆ¬˜àZû™Úž+Ì\úéOóš˜1x¦5ŽË0ò”Óã<Ìë+*]I!8è9HHÌÉxm(–ԁw_;"P´Ác! rä¥U³t{o ¤hôgÛ1eW6_е¥—,Ÿó½e¯Î·b¶fg¨Yè{&·á”HU¦#õÅnP1Àê³ÞíúWŽ[pŠcüQÆë|:†Û0ŠÀ–h#G³E¥Ä¨¢­@§ãNcÎ9—´´`"õÔa©Ç™X+Ú1Eγg[=-©övâk´"ì¡U­¹1kd`›Nùª \1èþ¦n½˜qص©§étt“Úޕ$Šw“u“¥ºdvˏ +"ð ìŠ4=[žRô»x-aAW\½$«|6MuïAÑó¦¸Ð§R[VÕ`2Չ¸(p~m¼«}*"iö%ª8Rz—‰6‘í‚£g²8ÛüaI,ð3#+xmž|ȯ(N9©±>Ïf­ÈxŽÃ<$Ë_ûµ_ô™ˆ,‰JiûËQœ%¶)Wßoiw¼k%«Õhèɽ+Ç»b ÆíròÛÝà”î"JïþEpOèq ¤#-øEɦZ[ޓŒŽËåMƗTZ$Ü·°ÇcµÔíÂֽĵøEi¢F'J úýÎ:@·YÏVjl—r QË¥œæ°m§—è²&…Ÿ‹ÔJv ÷àƒCSa2‚R¨TNŠ ɎkK¢u¹‡\mS'“î›—ÓH«"çJNÔÙ:/?ãÎEØ@0á`³0÷ôXÝÌ+)×¾÷ÌՑ•Ÿ<¬‚&rƒÔ/W˜Z¨ŽÛçqÕÙW´ß·õc­&¾ÉâÚæ¡p‹H „¿Áy¢É½’±kttÿñú ãO±{ߖ4$šmÄq–ß/Y¶‘;PˆªÌr’S‰”ªšnMzƒ‰=| ¯‰L-bõÂË+ðÎV¹vù¡šo@ ªc_Éú?u̙²@2ãðÄ©¼v[®$®P{ߨÅ>k7 OTWlJÝ›b÷¨ºMQL¢º—B%×}ÚK‘†,Åjž>¥â©vYŠ?™Æzöaç*e¾!) +‰jÉw„I<Ē;dwÂrø¿Èü|eϬöŒÎðløà1Ý܄¢áN46r»þvàʕñLDôÔ0q…Ê”ûy¥Ï…-ÇÄ$6XŒD=cOÏS)ñÈ»%8@€OF!µ×ÊILé³´C¤ªÇwyöz¨ <¸dM×'¸®‡b Ø({œ…l3tüÚºÕðì¡ÄPb;všá œc…ÖY³ØÈ­5pŽbÆ¢ êþ-ø³ä¤ö(!RÜþ}±¬æÐg$í¶É˜‚¤o¤ä¸ôM-Z^rï„~†!ԔGÒJäN±Fùo=$"²š#™PwÐÅÝëDò6½·°d“~lÑÊ' xqØàã9?´=Eέϲóýƒud5W„œD½y ²ž(³ƒ°7»˜¤!,v/m1{`¯×\«ëð2ÙÖ:¹§Mä–}£^‰£?›®Ü¸Œ¹ê¤»¥8Jö³.a’æ÷àf¾øHӓ€@¨÷vºçdd öë(3¯ÎÍ1ë¹]¡ª–tXÏs—õöÇh—Býª—Á Rª·±‰w[UNKÎgÔ™ÝÕL’´ `3)û‡SlI¶ßϒÓÏÕ7" ”ŸÃõæëU\³f])Ux#N)j¸¦c`<¢{yj„BœÏÔÛ¶ì§ô_èê`«}5W&=>€-¸a¸^§Ûr $%ëwö®Ž I°™ÌÖðÀ +–r.—•*À܌¬ÓØ .{lWº³ÝDéQÄQÏza…ëƒZ“×0´r‚4דþFÜÚGc2Ð8fºb×ÁZè +m· Ï8ÖÃ7”º +#ˆh1 À®[Ɓãù|od9 +~»Ó®4 kbwq<Õ¤¶Ñ¹ì4hìJòϧb`¿O1xÈ#1É4hN묗JðÎϐç2ú5š£M5NöD_ù„ý¬4ñÛ¾­MLäòÚȔO­¶R¢‡Ë¥Ë\½;,ÎÊé8'¼›6˜v7–lÞ¿JnÜ›RÃҎû¥ˆsDy¦@UZ…´‡¨·`™vðQ‰Ø˜~¡ºöúìˆPÞ:t¡rf³É_H+%¹‹DCzêŠ6GÉg‡±4”4*½œ1n±”¡ۜ¬À“k›¾K‚¤S•TÅN þ,¡óüqp +ÐCé¶þá:Àe}蓼žvhlŠòUˆf²7”¾ë²:Þ)ô4<¡´xòá "0—\ m² æÁŸÅ®$ºóÑg™jQCF[ª +>áuªõØÚZI†û C·m«öF4õÈ[·t„›N˜ +®Àm7$\„}Ù7;¾Y*c©(Úҋï`èbrÓÇ,ö üz…°ö1v±Ký†ÅH"áˆ廉1|ÀÌ;YsŸ»»&¢ÔwҙÈÔ±VÆUUx¢UÇ ZLÞBUd‡Í=¬ÌµÄ °+Z¸½P©Qºêÿð ‰ò2n©s1·Fíãn϶¸a½4xaußÑ8xI³U.¦Bò]è¢òÕ%ˆ¤¢‚­~7sU°ÈUÉM^Ø\ݒúÛ2¸™n„kPÿ€…ÜÍ2„‰Ð–Å¢¢Ì*ÿ‘rŽínà—µÞ»ƒåûÖÃÖ®ƒî²Ÿ¬›;5…Uæ®ìËհӋôþœàT¨ø*<¡f8¢)(ª¢ +çւrœFá²c¼yýÄ%>¥{§ïÈj¯³‡~­M®&è©)qœ/_îZüU²õŒg®”ì¥ý +VoæÓæ9%À†É †øMV ª9‚FåËê +sM!xññY™»è»U# {‘ŒÊDG û‡¢#Ç>MìäÜãÑÝb +jwƒ9§ë˜¨ŠwEÝ#µê8ð©=›Vp5„ˆYZ䴝O¤3"¿{ä ?ˆåŠ»Ï@擹ig‰äë{ð^}z].Ù¥‚a/qL\Ë:ª:Ɵž8¥¯í™ûÏë8²£; + BkÚÔÙäV²Uµyú­UôôO{î1؇-´¥ÜОȯ×DXÜë^xƒº¸ö¥Ó¥6QJÂwá\—ԃRÎò¤™†µÉ90§û»«Ü™HnmãÖ½4çŸ÷Þ¢üö1v ๲~?•„ªu1ŽdfAžXƒQ*S¾ëV$©”ϲ*Lþ”„—Àý:ú +†#“(ó¼/OaJ³ÌDz +Šh¶ºK­Ù¶àA HŸ–½û))'òsõ‚VŒ’Á~?Ùt–øÉ¼¯Æ6´Ô§Fæà`.˜ù†ˆZyʳuFžÖ¯Ãø îRžXKÓėÀS·Þ (ËB.ìºs%mÝ6mYã¢ï@ÏuÖ¤w•b † )‘-‘[¨´:›ö‡<d!kÆÝV´Òó³Ÿe¼‰•Ôtƒ#嚽 ý_ɕ”+5µú ÅYœ¿ÄsªòZ«ø¡Ña˜í¡0Ž@úQFcÜ©˜ðÂÊ™îTX©ÕÐûՒÑ#îÒOðjÓ?ñJ˜¡¢Ø„ÛôOˆÌ’ùÉe¾¦˜æpªÎÝë½`«ÂÂ=çôC¤Ù¢XÓͯQ˜4ø®©yt¹ù°Ui™n²X²·uÁ±šÁR¨bœYu\_F%Ѧ\Ë)^s¦1Ól7ã×WfÍí›ÃòÒØxÂ%6j2ג³©HŸÚx'‹æŨcPƒÒÞðó”| +cr/$Ú³’ô¾²ÿ !í23É œ-…•õf)üԘ#Dâ13ˆß(x n·uHˆmÕmIïÅf¨3äYç\¤ìKŸ +8?ï@Ç®¸‘[“c¼R3ò§ÖeÕA¼é?–™ÌÔïó<^Ü,ǎ×÷Þß>H Sù\6 ™ÃÊøv;Ä)¯˜$PDÅ{þp}ÒE:ï7ےÂɲxw§þª\S–Å.Øv“§§]U硥ɗW°Ã‘x´Ø| ¯µ×,ôy©‚a‹f¦(´šËÐv¿V°oÝÇùTbEg /[Òí™ìhÈHUé9½€îjÄsùéƒMÒѐàqƒÖ.ù<…½‡ŸnÆùv¿¦ÞbÍ¥0yݺeєŽ^¹áóÍ]çG|•ì¼ÒtÆ»1Ti|²„ +‹2 õ} PÀúÁñCù:ÇсÙûгÑw=%êâò¡%뻲¡L¯ÖÙ¯¶‘Uåa,qåÕŨ´1ÁÞI¦½"˜§ŠZӌqIñþ´²Ñßd¹74kO‘ôÝ_õÖ!ý£ ŽéÖ%ŸüG¸û„¹"æ!R 7,…×úãâFš‹½Ï¨¤5›_†—À’¸ƒšBtõҘ2J”ªìb@Q™¯Êcm¤¶éÑG"î¦,Ьæë¡åª0…™Ÿaðƒ$Ï\ÏØ‡^áÃO-;Ù@ûöz ‡G¡áZk“WMZ(00H’08¿#»¼!Üû\ÿvY—Ý&&þƒ±àNußâkúo/FD:í½,S%å Éb>€Kó=ãv“ÂΏÁö 2¢Q—Ù >€õ‘}Pt²O8§€ì뺈á㮸¬Ô“÷² úwÍý\¶EH¸ílyÚ´°§ñy ë;ú}ö†7Аu”O%!àõ$¾‚èÒÛ´·;$þîö‹­ÉÉØE¦Æòù‘²Q*.³pf¢o뛽9±v²Õ:Ó3í´ÏÓt)éÇAyz~ҐÿåCüÿÿ',í‘p4ÆÉ޶#&þ"fŒ3 endstream endobj 659 0 obj @@ -6167,7 +6179,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-6 -233 542 698] -/FontName/PTTIWW+CMTT9 +/FontName/XWDNZO+CMTT9 /ItalicAngle 0 /StemV 74 /FontFile 658 0 R @@ -6184,7 +6196,7 @@ endobj >> stream xÚí²S”.̶¦™¶íü’+mÛ¶mÛXi®´­•¶mÛ¶m›õï³ûTÞÕ75ê®GGÜĜó7ž˜dD -Ê´‚&öF¦böv.´ŒtŒ\aYN# ™°“©¡‹¥½ˆ¡‹)€‘““ èj`b0²q±°q1±ÀÀ„í<,Í-\”ÿR±mM, í²†.¦¶ÿ˜ڔí-M]<éA€Ò¿¶8”LMÜLMè``&–Æ.#SsK;ú1IڙÙØÿ6quøï’›©“ó?\Š8)ÿPšØÛÙxLLÍ`èåìÿ9Íô–ÿm¬ÿªÿ4sµ±‘3´ý—ý¿úô¿” m-m<ÿ/½­ƒ«‹©@ÖÞÄÔÉî?¥ê¦ÿf“55±tµýϪ¤‹¡¥± ¹)€áß)Kg1KSKc €‹“«é¥MíLþ“៶ý½‚ŠŠ¤º:õ¿_ôßECK;O‡ÿéú/õŌÿwüOwœ,=Ú t Œÿÿ™ÿ½ÒýÃDíŒíM,íÌÊ.†v&†N&ÿ3ñ¿B Ù{xѲh™˜™¬,L6NŸÿ§LÕÎÒÑÕTRÀÊÀÀÀÁüo&cW''S;—ÿúÿ\÷¿c3Ëzcjêaj “™…n ¬OƒOýdðØ»D¬Þ>µ¬ÓUt•Æúœ‹13z kN·bõ'ÄZáqþýB!*õ•‚?¬ÎW–;®÷YoÀÓ§rƒÊl¢S{ÿ‰«*ú„vµI „¾çÚ4ªM_»:—ÕKqëÞ$×Å¡ûnˆ»ùciÄ·{ͤR‹º{lµá0⨈ËxIÔ]::[ÿ¹ÂnZØD ˳– ÕÇ69ä[õA€VÕo¡QÂúÐ499ìÅö%PU˯!pp~çT­ùATi\¢_Z}+Xâ½_}p¿Žx(vÁ:½~%»ªµØ õ4óÄ£$كpw9ërÀˆ©úOžSÍn²2U”ß#얔þLóäW¬ó &Ë®A–¹ð520¢©g ,›·$DFߢºAïttß±/õ…S·-…'’Š/®t©i‹¦øSK­œÏD¹JsPZf† • ¿FBI¯Nƒ429æ”< '´ .̱ egq Å„­7êѧy) êvF¨×„^'˜Ý÷h~”K×XYl.¨>Y(¦Q‡/±‘Éh°·YÐÕÒ3j\0ËBÖ ôNP•¿úGVùú·×+êZ3Ó'”ѳzµ(죭*¶7'6/j,“êüpw}náÚÅï?žm b)Èa›:y:ºZ:;®²˜HØòïßTru%<ÖÜöƒ#6CZŒTN} qÒӆ+wbÕᜣøN6…#âÐ㨌e¦mΟL²×ã]j—pÊ-ÏÖO\:/7lèòÛ¿„ü0CIaµó‹e:dÓA0J$ËXÅ,Ž/ìDÒ`ËuÑ¡Þ3s–r衚Zý C+7Ÿ‹î¼]­B2.h·°äʚ!ŽOkŽä޹§MªŸ£o5CþY#׆ŒÇF vX¼°æÈyaäB™"J8 ÷üE,Œ(hÀúþu®‰Å&C}>™«—”#Q뚜;ñP m-÷“Wçµ핞&G¶ô%…Zµ¬ÓUt•Æúœ‹13z kN·bõ'ÄZáqþýB!*õ•‚?¬ÎW–;®÷YoÀÓ§rƒÊl¢S{ÿ‰«*ú„vµI „¾çÚ4ªM_»:—ÕKqëÞ$×Å¡ûnˆ»ùciÄ·{ͤR‹º{lµá0⨈ËxIÔ]::[ÿ¹ÂnZØD ˳– ÕÇ69ä[õA€VÕo¡QÂúÐ499ìÅö%PU˯!pp~çT­ùATi\¢_Z}+Xâ½_}p¿Žx(vÁ:½~%»ªµØ õ4óÄ£$كpw9ërÀˆ©úOžSÍn²2U”ß#얔þLóäW¬ó &Ë®A–¹ð520¢©g ,›·$DFߢºAïttß±/õ…S·-…'’Š/®t©i‹¦øSK­œÏD¹JsPZf† • ¿FBI¯Nƒ429æ”< '´ .̱ egq Å„­7êѧy) êvF¨×„^'˜Ý÷h~”K×XYl.¨>Y(¦Q‡/±‘Éh°·YÐÕÒ3j\0ËBÖ ôNP•¿úGVùú·×+êZ3Ó'”ѳzµ(죭*¶7'6/j,“êüpw}náÚÅï?žm b)Èa›:y:ºZ:;®²˜HØòïßTru%<ÖÜöƒ#6CZŒTN} qÒӆ+wbÕᜣøN6…#âÐ㨌e¦mΟL²×ã]j—pÊ-ÏÖO\:/7lèòÛ¿„ü0CIaµó‹e:dÓA0J$ËXÅ,Ž/ìDÒ`ËuÑ¡Þ3s–r衚Zý C+7Ÿ‹î¼]­B2.h·°äʚ!ŽOkŽä޹§MªŸ£o5CþY#׆ŒÇF vX¼°æÈyaäB™"J8 ÷üE,Œ(hÀúþu®‰Å&C}>™«—”#Q뚜;ñP m-÷“Wçµ핞&G¶ô%…ZÂg¼“…ËØ%ÍHÚ©!Ü_Ÿÿª“=×ç¢wU˜ºÜwÏÁ‹ÿö—æÊ’ù\$dXÎ×(ùBÕÑ«äh×,ŽÆÛ#b¥•K)ìZóèÎØßsÈk¬#+2© –ifþrÄÓÿ,“+ ԉIhy: ™Ž2¢ÏË @@ -6239,7 +6251,7 @@ G Á(è€;IÂßîF×l{»cêâ‘éVŠœPôĹu¤TvâCb¬½Û“ÃĖÐ@`†S9L¥ U`uÜÝoszFZ“jÔ,÷>Ì sÖ}ö*›)²—Al§¦Nš,¹ Ê/¼ˆ%å¯ÌXF¡`ððîie½æªÓãúQC˜ÊDÓñiæ‘$Ñ3Ô¸åEôÎ…'Ž…#àÈq`hÜ©µþMLÅÝ[Ê5 ¨2?û8ièHqqžŽ91ÂlѺÅÒî´û6k2Ë.¿{ä‚Í+œ!0•Ü™€üý#Ú Ÿg+üø?u§mžlˏˆŸn!Åâ|-ä{!£t líèà^¨tk­z š¨#Y·{¦ ê?—Qu 26Ããë*OKæ1åŸú³&°,ãµÂ«X¶Á³ÛAWà ûÈÊ´gÄP "‘›OÖ¢X \QŸíÅõvÒJEåg°5P¬Äø°Æ’ˆ -8öææ¬Q¨”4 ˆf£)²Å¹A1‰#D¢¢•ûaÙJ®”„®L¶° wtÄÎ])d7óúæô&ÏÀI\WxkdåfqàEݐ¡l½m„ßB€ãÎõè+ö&¨ë©Zês†ÿÃóÿüÂÀØÆÔÐÉÅÞÖÐÉæÊ¾L +8öææ¬Q¨”4 ˆf£)²Å¹A1‰#D¢¢•ûaÙJ®”„®L¶° wtÄÎ])d7óúæô&ÏÀI\WxkdåfqàEݐ¡l½m„ßB€ãÎõè+ö&¨ë©Zês†ÿÃóÿüÂÀØÆÔÐÉÅÞÖÐÉæ™•¾G endstream endobj 670 0 obj @@ -6249,7 +6261,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-35 -250 1148 750] -/FontName/YOOZZS+CMTI9 +/FontName/PKXZUV+CMTI9 /ItalicAngle -14.04 /StemV 70 /FontFile 669 0 R @@ -6265,18 +6277,8 @@ endobj /Length 1582 >> stream -xÚí’{8TiÇQQC(”t™WaIÆs‘e £Qn‘[Ęsp˜9SÇ̘Q²ÒÅméÞJ¢²t[’x’IE÷2i[’\v‹M×'ĖȶíYí?ûìûìyÿ9¿ïïû~ßÏû;ÇÔØÛ׊ #¶Y‘Id`yøqè€L‚¦¦,áŠP!æÂ! @¦Óɀ)Žd°!3 ¢¦€%\'ÃѨh0gYŒº¨€)@p”ÇŀW”!<.ø -y("’‘`òù`Õè–8° -‰Cp “2À(O"(#X2q°H! ŽË°xݧ–Áã”\À\Éi””°ãˌD¬=…ÊÓ%Ë?Æúª‰ál1ŸïɌƏÎé‹6W€òe„‚ub‚!ŒàØDk2ÎæÀ¨X0±Ëqù(‰Eñ`E¶%A¶ã:ÇF¥썊xÑ ’ˏCÆtƒ'’(‡7Æaäåìk9þ]ǛÞ\ùÉÖ!úì«ÉŸkåŒpT -Ö@$"+Êõé-tÂa®O£Xðq1˜‹Ã -_B9; ¥¬–R€• d²- P)Pâ_«1t½Ḡ-A4ê˜Êã8‚‰Æþå…?Ց¨rF"Ex„܃¨jؒù–ýáo/5. 8¯èJùþ&þµêWg7i ÍÝ´æ©î€Ë]eѲ—î=¾²ÇÍÉM{šþÀÚÔÓ[çZë/дkH,’WX€ªŠCãmÕ–­E"OÜ·ù(”+î1¥j›Û'7JÅf± -VÈ:·ë¼þ!¼grõ²`I¤nی’"÷XÝ š“YùGR32ëvÙT§ü†ŸO~c¦Õh’q>ج"/7egÊFNUÕCv½¯6T†ÞIeŒ|Ëónê.5:8ß*©¾uåꕛ(:& PÈz<“=cùÆG³®4¿ŠyçÞëjö2ÓrkÞ%ôè­ üN/'Äc›bç#KjÀžl;Ÿmµ…}V[Y{Õ²ªFo³_/$J!ñëm÷Zد7ã„ô­S×ВÀŽĆõgíÍö_TÈY]§nÎpóQCüzëLfDyµ ‡ôUž÷¬V•gÀ¤pãR՜¬VIåá]ùÕù…ÃF,Ía¸ÂQ¬yÝlhRRí²7fg…ïȎo~ž÷\vù1ñvpLŽgpVȵ& Ý’½tܵ¿yXšZ»7H‘Mm£\*¡´÷u·57ŠÞœ¦­ž5ãÒò*…„îx±@}xÑç»OUÃ)aÏ|ÕÊ,Ž™\—¹çunb3’Z‡ñªǓu¿†î0M¿yùå;¿²I…©ëÃiùú±Ò˜£9×Fè}É<õÃ?ŸJ)¼a«;iºHÛ`–J7k`¯ì¥¡IJyå6eŸ5g¥“¾ -d¤®ßÕr¬Õw¸eªã ¿.ÊP£¸<½ÐÁ!ĝÖ[zÜìᤦÜ_J-½Í9Þê»[ÚÂTÊ ƒ3 *½Ìó—ö÷¼|¡ß´'xaC{o¿ªl~ÚníÀ÷a¦‚ ùÄíUéÏø½û”Å%>NмAÕômèé -›ãѸ² â9ñ­ú­íñ;:Š0ÏyÇùé°óíyFW J¦¼¡?©‰µ¯Î>:øâôý×UÉ]Üáî´¼Pϑf.Á¸ìuÎôi)ñ­¤ôM­Úuð€ö·ý¯æ,í‹F% -s3Šž¶=<3·¶‹Ñ™×¶¦wih1qQdÂÙíDã%гìîcv-úã+Ut¦ÐäXî•æ§ëãÃO2$>³³ãfIÖÔ×/V ➏š‡ÎÕU¥%Ʀ6Çòc$ -3+-\E«ì}ñ7š)óÄ ²¸y¤¢Y˓ r -cUÈò&¿ío2hî ×oLý£YR£mÄÞÖéÐñšç²Ì†Õ;9§’ļ¯ ÿ±âŽ£ÅvÃemóUöq 5ê/Úb4¦Ñ§™*¼&WÞ!†¤ø¤/¶¼ónE§SVû•Ô¥Ô§süoÏe™õ…×£¯y_Öi-Ú½Ïûˆ#ô/Âÿÿ‰áâ"¡€‹Ç¿OuQw +xÚí’{8TiǑ¨!*”t™·Â’LgdÌE–1¢‘»cÎÁaæL3cFÉJÉ¥¥{+ eé¶$ñ$“J÷‹Iے\wŦëbKdÛö¬öŸ}ö¿}ö¼ÿœß÷÷}¿ïçýc6Ÿëë́E¡[„‰­É$2°Ü½9t@&A33ŽðĨsበÓédÀ”„2 ؐQ 3Àmãhx„X°,G\TÀ"8ÊçaÀ'Ž@„ª>O¼D|ËI0°fdK4XƒD#¸I™ `”/¡H8Š–Œ0q°0 ŽÉ°dç–Á£U\ÀBÅi T”°ÈŒ„–xˆT§!*–Œõ7TãÃفÀƒ'‰™ÓmžÈÿ0ˆ„$bî"Á±ñV?dŒÍQ‰p|—#æ P>  ÀšlK‚lÇt4šÊ˜‹Šù Œ'ˆFFuƒÇ“¨†7ʱ„»Ò?ÐÇ×j컎5¹<{Ë7 úì­ÉŸkՌpTÖB$"«ŒªõémݸÖc|ŒbáÀKÌÃ`ÿ)| åì,’m²^JÖ6É¶4@¥@q5ú`èF Âq‚h6ÔQ•/Áqþ ª ªÃPՌD†ð Y‡PõàÅs­úBÞ^®[àwAٙøým:ýkõ¯´ÏmÑ%æÇY¸ÍkÎVÏ?øW¿Î¢¥ /?h¿¶ÏÕÉUo²aÿúÚÔ3Ûg[œÈÕ±«+P”Y‚в#ýcl5b—­GÂN>´ù(R(0e[Ù'ÔË$æQsW*ú;vè¿þ!¤[³rY 4ljË´¢·¨©›t4Y9G“Óv^ÝcS™øx!፹niÚøpƒš¢ÔŒ½S>|º¢²ëyµ©|ݽdÆð·|n}W±Éá¹Öñ5Í«|Vm¡è›«}:{ڊÍM3…ËiÞesÓÃLɪzç×m°Þÿ;ƒÌ ÷$åî&+ªß¾ ;Ϥêü^ëmÁÈ¡ôý‡Õ#¶Ï:h®”z÷´®^Ðg0í¤ì­Sçàbÿþ¶]ÄڍgëìÍ^R*X—Oښæêû¢ŠøõöéžÌÐÒJé6)>ï^3¤®HƒI!ó‹Õ3ӛ¥åy{r*sò‡LX:C.p™£D;8ì¦ùà„øêeoÍÌ ٕÓð<û¹üJ;ñn`d¦G`zЍzKãÝmÒýMþGÛîÛßΓ%WïPfP[(—‹(­½] uâ·~ghë‡fL»¼¢B)¥;^ÊÕZøÈùþSõJð3/Ëã¦7ånÙ[،øfç!¼¢ÑñÔÕ_×í2K½}ååE;ï’ ùɃèÁY~†Q²Èc™7†é½¡ |­¼ŸO'æß²:aŠXÏh†ob«¿ü¥±éU”òÊuâ%œUN†j}€–agãñf¯¡ÆIŽ·¼;)ƒu’ÒÔ|‡ 7Z]Tñ óGâë³~)¶âZp¸Z{[‚ÕJӌsËW[ä,íë~ù°~_à‚Ú֞mAEÉܔ½ÆÛ×ãvJ‚Î×WÅój±søç§<ç»sL®äM|CRókõÉ86ðâÌÃ× ¼¡®”ìuà <Âü’×™S&' +%wâSÛ|•4Êå‡ôöq>|5kioº0N”•Vð´åñÙÙ՝Œ>Ì¢º9µƒHC ‰ ÃbÏí Î_ =Ëè:n×ø¨/¦\­_"Me]kxº1&ä#Vê9ó;:v†tmMÍ"åîÑÔ0X{þjEJ\TŠqC¤Ð/'Rª4·6ÒÅÕtKÞ~£“8GR[&^™M*˜±"ÁÈ(3?ÒQ¬¨÷Þñ&æ{óÖ¤‘:EUº&줇¶×|—e6¬ÍÌr’@ø¾*äDz{Ž–ÛصWô,ÖØG×Vi½h‰ÔžLŸlê¯\­Y~”虺ÈêÞ»•Né­×’—RŸÎò½;›9hÞRpÁ@‚†¶ßà^Ño. Ø{€{Ôú—áÿ€ÿD_€ðp±HÈã„ß$ÊQq endstream endobj 673 0 obj @@ -6286,7 +6288,7 @@ endobj /Ascent 850 /Descent -200 /FontBBox[-39 -250 1036 750] -/FontName/VPLCCO+CMR9 +/FontName/JBWKPP+CMR9 /ItalicAngle 0 /StemV 74 /FontFile 672 0 R @@ -6302,7 +6304,7 @@ endobj /Length 9865 >> stream -xÚí’UT]Ѷeà. .‚»www×\î.ÁÝÝ îîNpîî/÷Þz¯ZÝW?Õê¯Zíý³çsÕ×\‹‚TI•AØÌÞ(aof`adáˆÊ«pX™)(D€Æ`½˜1È`áæf»XX™,Ü]ÆË<»FÂ×¶§.ӄjeÓ MB tœ\¼ƒ¢›Ù"¨¾=yç˜2º÷(å-=‚v|vßÙF(tž„Ôº m&vû3ƒM‚¹omqY>°n'ÄãsÛÆN0ÓÅëÖ6—µçLØè3ýáñÀ׆_»§ìÀDÚ},13]¨x-ráž:SÁà‹×•RíÔݚ¥Y¹) Ö§ ‚_ûÑYýôª½öaÇn&Ü!ÅEG‹²·í=˜³M"º6öã8ÑeriY²1žÀºPéþ.ß8XoKÈÑ ØÍ`Èx²%cûqZX™»iŠËλ‰· ¿µÝ~ÙÆ&nHC`õ¾IˆH½@[ô℠­c\ù³o=P´2´zB @@ -6341,14 +6343,14 @@ N YPT?“ҏ¿ë¼ö·z‚(uh½Ñî%³Yóbk‡°Nè7«tÐJ°°4(†DBðo«]­œj¼{})¯T`KA˜ô^‡¶¸/ŽЂ9—È _ƒ)T¿Vµ+3d>ÛªºeF¶);¢¼Å¶¼s ™Â U܊ÀFOIÄÊÐ<Šx˜‘Y•úqŽÞÜÌ æ†Ãà+ÛB‘‰D~÷—̨VûÑzVCÛE=V´$;æ•6_þ´é•¸äc‡<ø>g\™;õÓ ÉÃ=u„³câMÚÿ˜“¾Øð3œ^~l‹6µà˜íì=+»>—ö‘—«ºßòÑÄR’ØÓ~_MÝ »l†}V÷ç ÕWk"–´–µžñaÑNSìÜ"=Ñ?9Ùä»GubÍ¥åó…©m` ¨’uÓùÊ_*_MH¨Ö)ß)\»çYjK—úc^ñ›¾¥‡åWX¤%t]Ùãß3N„µ??ù¦mGÙ BŸ%^†7~Ìä…¥ê“Æ?9 3¥=ÄzÞ v ç+‡ °ûãØSÓnMk3Îúõ9§Ýy¿¯Ç¤2¸ò¢!‡†„žX"~W§Là»Ø=HÐÔT¢«[¬O¿±mÍõhÂÄØL™½ŽR´s¨yâ”éÚà=ûî¾U´3Gú­õ€Jv­N ~˜ð¹þ́ÉzañKaãT‹‹dÍGXn…49ÓªûyEˇْ+@( C´$DÛäÄF© „ÎÉ/»š¡ˆd8Êc¿Î¤§)†ÂÑx~L ^9ƒP’é U´X’½#fjÜû]iÅuxì_‹ —R*q€Õ gQÃy@¢Ž!ª1…—ßk)6Å7 X•$9míè Ô‰6O²8ðÊ5NþœŒœÎMh™j;oì ICÆà&À†älÄf >EfrŠ^Ò$×ÃVÐç–4/R†TˆÌk—˜—J)êOe{:n`TokEfdBIòˆIÁSʾï)ž2µ[eH7΄ï<½5NíÙYG—µ¬ ue/ðˆ+Ÿ¶ &W‡$k8lnqo"C]߂$õ§¹acqÀ Åou!¹‹ŸÝ#S¶ ’;˵ì‰vÆžç>CìRuÐRu£§ûàÜ4´.íC€Ê ÙW9•ª3Ù"¤¡½6—²aH¢3Ýྲྀ’DM¡Ä%• ¶‡…4;Qu<ôQeþhP£†Çáq|Ô£]aÃê(Õ,8„§â\?¢L6… Eo“Úor"à4ÅN¢ü£’Ð ¼|eM¿´$'àËcз•ô¯+CiyZd%$/#„ù¨AõÛzîY68—¥+nhf‡Šùy±rg]Âß2;I;(l£|C¤¬—›ÿ2ÏÅéüӖÙç£FV­#”Ým3B®˜ÊÉ ;a#FÈ1‚5:”áå'ÄtpÏá!]Ð Ï-z†Û6Ù±çPӢǥKõuŸêÈB‹Ê40ÝuúCdlP†º~¿|çd¼öþ(Ü`ÅKÌâH £ -ª›zbþ¿|ÿÀÿ¦6@c'°½­±“5"âC<{ƒ +ª›zbþ¿|ÿÀÿ¦6@c'°½­±“5"âV™{Š endstream endobj 1 0 obj << -/Creator( TeX output 2008.07.24:0912) +/Creator( TeX output 2008.08.05:1031) /Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks) -/CreationDate(D:20080724091252-05'00') +/CreationDate(D:20080805103136-05'00') >> endobj 5 0 obj @@ -8374,797 +8376,797 @@ endobj xref 0 792 0000000000 65535 f -0000514005 00000 n -0000539529 00000 n -0000539176 00000 n -0000539382 00000 n -0000514169 00000 n +0000514031 00000 n +0000539555 00000 n +0000539202 00000 n +0000539408 00000 n +0000514195 00000 n 0000004978 00000 n 0000000009 00000 n -0000394298 00000 n -0000394111 00000 n +0000394324 00000 n +0000394137 00000 n 0000000913 00000 n -0000407843 00000 n -0000407655 00000 n +0000407869 00000 n +0000407681 00000 n 0000001858 00000 n 0000002775 00000 n -0000425061 00000 n -0000424875 00000 n +0000425087 00000 n +0000424901 00000 n 0000003752 00000 n -0000539282 00000 n +0000539308 00000 n 0000004496 00000 n -0000539332 00000 n +0000539358 00000 n 0000004923 00000 n -0000514272 00000 n +0000514298 00000 n 0000009841 00000 n -0000441285 00000 n -0000441092 00000 n +0000441311 00000 n +0000441118 00000 n 0000005039 00000 n 0000005959 00000 n -0000453873 00000 n -0000453678 00000 n +0000453899 00000 n +0000453704 00000 n 0000007575 00000 n 0000008526 00000 n 0000009775 00000 n -0000514457 00000 n +0000514483 00000 n 0000014397 00000 n 0000009903 00000 n -0000455714 00000 n -0000455517 00000 n +0000455740 00000 n +0000455543 00000 n 0000010810 00000 n -0000457606 00000 n -0000457411 00000 n +0000457631 00000 n +0000457436 00000 n 0000011801 00000 n 0000012782 00000 n 0000014331 00000 n -0000514562 00000 n +0000514588 00000 n 0000016155 00000 n 0000014459 00000 n 0000016089 00000 n -0000514667 00000 n +0000514693 00000 n 0000017850 00000 n 0000016217 00000 n 0000017784 00000 n -0000514860 00000 n +0000514886 00000 n 0000019076 00000 n 0000017912 00000 n 0000019010 00000 n -0000514965 00000 n +0000514991 00000 n 0000024116 00000 n 0000019138 00000 n -0000463449 00000 n -0000463261 00000 n +0000463475 00000 n +0000463287 00000 n 0000020106 00000 n 0000021104 00000 n 0000024028 00000 n -0000515151 00000 n +0000515177 00000 n 0000024867 00000 n 0000024178 00000 n 0000024834 00000 n -0000515256 00000 n +0000515282 00000 n 0000027131 00000 n 0000024929 00000 n 0000027065 00000 n -0000515361 00000 n +0000515387 00000 n 0000027861 00000 n 0000027193 00000 n 0000027806 00000 n -0000515654 00000 n +0000515680 00000 n 0000030446 00000 n 0000027923 00000 n 0000030369 00000 n -0000515759 00000 n +0000515785 00000 n 0000033909 00000 n -0000468798 00000 n -0000468604 00000 n +0000468824 00000 n +0000468630 00000 n 0000030508 00000 n 0000031254 00000 n 0000033832 00000 n -0000515945 00000 n +0000515971 00000 n 0000036037 00000 n 0000033971 00000 n 0000035960 00000 n -0000516050 00000 n +0000516076 00000 n 0000038937 00000 n 0000036099 00000 n 0000038849 00000 n -0000516155 00000 n +0000516181 00000 n 0000041446 00000 n 0000038999 00000 n 0000041358 00000 n -0000516348 00000 n +0000516374 00000 n 0000043865 00000 n 0000041508 00000 n 0000043787 00000 n -0000516455 00000 n +0000516481 00000 n 0000046609 00000 n 0000043929 00000 n 0000046542 00000 n -0000516645 00000 n +0000516671 00000 n 0000049365 00000 n 0000046673 00000 n 0000049298 00000 n -0000516753 00000 n +0000516779 00000 n 0000052042 00000 n 0000049429 00000 n 0000051953 00000 n -0000516861 00000 n +0000516887 00000 n 0000054779 00000 n 0000052106 00000 n 0000054701 00000 n -0000517160 00000 n +0000517186 00000 n 0000058335 00000 n 0000054843 00000 n 0000058268 00000 n -0000517268 00000 n +0000517294 00000 n 0000061686 00000 n 0000058399 00000 n 0000061608 00000 n -0000517459 00000 n +0000517485 00000 n 0000064445 00000 n 0000061750 00000 n 0000064356 00000 n -0000517567 00000 n +0000517593 00000 n 0000067253 00000 n 0000064509 00000 n 0000067164 00000 n -0000517675 00000 n +0000517701 00000 n 0000070112 00000 n 0000067317 00000 n 0000070045 00000 n -0000517874 00000 n +0000517900 00000 n 0000072909 00000 n 0000070176 00000 n 0000072820 00000 n -0000517982 00000 n +0000518008 00000 n 0000075761 00000 n 0000072973 00000 n 0000075694 00000 n -0000518173 00000 n +0000518199 00000 n 0000078655 00000 n 0000075825 00000 n 0000078588 00000 n -0000518281 00000 n +0000518307 00000 n 0000081159 00000 n 0000078719 00000 n 0000081070 00000 n -0000518389 00000 n +0000518415 00000 n 0000084468 00000 n 0000081223 00000 n 0000084401 00000 n -0000518688 00000 n +0000518714 00000 n 0000087817 00000 n 0000084532 00000 n 0000087728 00000 n -0000518796 00000 n +0000518822 00000 n 0000090037 00000 n 0000087881 00000 n 0000089959 00000 n -0000518987 00000 n +0000519013 00000 n 0000092019 00000 n 0000090101 00000 n 0000091941 00000 n -0000519095 00000 n +0000519121 00000 n 0000093984 00000 n 0000092083 00000 n 0000093895 00000 n -0000519203 00000 n +0000519229 00000 n 0000095887 00000 n 0000094048 00000 n 0000095809 00000 n -0000519402 00000 n +0000519428 00000 n 0000098253 00000 n 0000095951 00000 n 0000098175 00000 n -0000519510 00000 n +0000519536 00000 n 0000101041 00000 n 0000098317 00000 n 0000100952 00000 n -0000519701 00000 n +0000519727 00000 n 0000103745 00000 n 0000101105 00000 n 0000103667 00000 n -0000519809 00000 n +0000519835 00000 n 0000106949 00000 n 0000103809 00000 n 0000106882 00000 n -0000519917 00000 n +0000519943 00000 n 0000109646 00000 n 0000107013 00000 n 0000109579 00000 n -0000520314 00000 n +0000520340 00000 n 0000112370 00000 n 0000109710 00000 n 0000112281 00000 n -0000520422 00000 n +0000520448 00000 n 0000115096 00000 n 0000112434 00000 n 0000115029 00000 n -0000520613 00000 n +0000520639 00000 n 0000118320 00000 n 0000115160 00000 n 0000118253 00000 n -0000520721 00000 n +0000520747 00000 n 0000121457 00000 n 0000118384 00000 n 0000121390 00000 n -0000520829 00000 n +0000520855 00000 n 0000123765 00000 n 0000121521 00000 n 0000123698 00000 n -0000521028 00000 n +0000521054 00000 n 0000126796 00000 n 0000123829 00000 n 0000126729 00000 n -0000521136 00000 n +0000521162 00000 n 0000129411 00000 n 0000126860 00000 n 0000129322 00000 n -0000521327 00000 n +0000521353 00000 n 0000131444 00000 n 0000129475 00000 n 0000131377 00000 n -0000521435 00000 n +0000521461 00000 n 0000134271 00000 n 0000131508 00000 n 0000134204 00000 n -0000521543 00000 n +0000521569 00000 n 0000137016 00000 n 0000134335 00000 n 0000136949 00000 n -0000521842 00000 n +0000521868 00000 n 0000139509 00000 n 0000137080 00000 n 0000139431 00000 n -0000521950 00000 n +0000521976 00000 n 0000141898 00000 n 0000139573 00000 n 0000141831 00000 n -0000522141 00000 n +0000522167 00000 n 0000145043 00000 n 0000141962 00000 n 0000144976 00000 n -0000522249 00000 n +0000522275 00000 n 0000147481 00000 n 0000145107 00000 n 0000147414 00000 n -0000522357 00000 n +0000522383 00000 n 0000149596 00000 n 0000147545 00000 n 0000149529 00000 n -0000522556 00000 n +0000522582 00000 n 0000152034 00000 n 0000149660 00000 n 0000151945 00000 n -0000522664 00000 n +0000522690 00000 n 0000153980 00000 n 0000152098 00000 n 0000153913 00000 n -0000522855 00000 n +0000522881 00000 n 0000155781 00000 n 0000154044 00000 n 0000155725 00000 n -0000522963 00000 n +0000522989 00000 n 0000157800 00000 n 0000155845 00000 n 0000157755 00000 n -0000523071 00000 n +0000523097 00000 n 0000160424 00000 n 0000157864 00000 n 0000160346 00000 n -0000523370 00000 n +0000523396 00000 n 0000162735 00000 n 0000160488 00000 n 0000162690 00000 n -0000523478 00000 n +0000523504 00000 n 0000165062 00000 n 0000162799 00000 n 0000164995 00000 n -0000523669 00000 n +0000523695 00000 n 0000167164 00000 n 0000165126 00000 n 0000167108 00000 n -0000523777 00000 n +0000523803 00000 n 0000169320 00000 n 0000167228 00000 n 0000169231 00000 n -0000523885 00000 n +0000523911 00000 n 0000171632 00000 n 0000169384 00000 n 0000171576 00000 n -0000524084 00000 n +0000524110 00000 n 0000174193 00000 n 0000171696 00000 n 0000174137 00000 n -0000524192 00000 n +0000524218 00000 n 0000176102 00000 n 0000174257 00000 n 0000176046 00000 n -0000524383 00000 n +0000524409 00000 n 0000178565 00000 n 0000176166 00000 n 0000178509 00000 n -0000524491 00000 n +0000524517 00000 n 0000181619 00000 n 0000178629 00000 n 0000181563 00000 n -0000524599 00000 n +0000524625 00000 n 0000184419 00000 n 0000181683 00000 n 0000184363 00000 n -0000524898 00000 n +0000524924 00000 n 0000186993 00000 n 0000184483 00000 n 0000186926 00000 n -0000525006 00000 n +0000525032 00000 n 0000189590 00000 n 0000187057 00000 n 0000189534 00000 n -0000525197 00000 n +0000525223 00000 n 0000191977 00000 n 0000189654 00000 n 0000191910 00000 n -0000525305 00000 n +0000525331 00000 n 0000192247 00000 n 0000192041 00000 n 0000192213 00000 n -0000525413 00000 n +0000525439 00000 n 0000194417 00000 n 0000192311 00000 n 0000194328 00000 n -0000525612 00000 n +0000525638 00000 n 0000197145 00000 n 0000194481 00000 n 0000197067 00000 n -0000525720 00000 n +0000525746 00000 n 0000200923 00000 n -0000478087 00000 n -0000477899 00000 n +0000478113 00000 n +0000477925 00000 n 0000197209 00000 n 0000198214 00000 n 0000200821 00000 n -0000525828 00000 n +0000525854 00000 n 0000203657 00000 n 0000200987 00000 n 0000203577 00000 n -0000526027 00000 n +0000526053 00000 n 0000205835 00000 n 0000203721 00000 n 0000205768 00000 n -0000526135 00000 n +0000526161 00000 n 0000208653 00000 n 0000205899 00000 n 0000208575 00000 n -0000526243 00000 n +0000526269 00000 n 0000210452 00000 n 0000208717 00000 n 0000210374 00000 n -0000526640 00000 n +0000526666 00000 n 0000212559 00000 n 0000210516 00000 n 0000212470 00000 n -0000526748 00000 n +0000526774 00000 n 0000214759 00000 n 0000212623 00000 n 0000214692 00000 n -0000526939 00000 n +0000526965 00000 n 0000217740 00000 n 0000214823 00000 n 0000217662 00000 n -0000527047 00000 n +0000527073 00000 n 0000221077 00000 n 0000217804 00000 n 0000220999 00000 n -0000527155 00000 n +0000527181 00000 n 0000223209 00000 n 0000221141 00000 n 0000223131 00000 n -0000527354 00000 n +0000527380 00000 n 0000225138 00000 n 0000223273 00000 n 0000225060 00000 n -0000527462 00000 n +0000527488 00000 n 0000227695 00000 n 0000225202 00000 n 0000227606 00000 n -0000527653 00000 n +0000527679 00000 n 0000230800 00000 n 0000227759 00000 n 0000230711 00000 n -0000527761 00000 n +0000527787 00000 n 0000233834 00000 n 0000230864 00000 n 0000233767 00000 n -0000527869 00000 n +0000527895 00000 n 0000235795 00000 n 0000233898 00000 n 0000235739 00000 n -0000528168 00000 n +0000528194 00000 n 0000236065 00000 n 0000235859 00000 n 0000236031 00000 n -0000528276 00000 n -0000239320 00000 n +0000528302 00000 n +0000239346 00000 n 0000236129 00000 n -0000239242 00000 n -0000528467 00000 n -0000242164 00000 n -0000239384 00000 n -0000242075 00000 n -0000528575 00000 n -0000245017 00000 n -0000242228 00000 n -0000244939 00000 n -0000528683 00000 n -0000246483 00000 n -0000245081 00000 n -0000246405 00000 n -0000528882 00000 n -0000252424 00000 n -0000481444 00000 n -0000481248 00000 n -0000246547 00000 n -0000483053 00000 n -0000482865 00000 n -0000247549 00000 n -0000248552 00000 n -0000252309 00000 n -0000528990 00000 n -0000254769 00000 n -0000252488 00000 n -0000254687 00000 n -0000529181 00000 n -0000257583 00000 n -0000254833 00000 n -0000257468 00000 n -0000529289 00000 n -0000260738 00000 n -0000257647 00000 n -0000260634 00000 n -0000529397 00000 n -0000263065 00000 n -0000260802 00000 n -0000262998 00000 n -0000529696 00000 n -0000265547 00000 n -0000263129 00000 n -0000265465 00000 n -0000529804 00000 n -0000268044 00000 n -0000265611 00000 n -0000267962 00000 n -0000529995 00000 n -0000270517 00000 n -0000268108 00000 n -0000270450 00000 n -0000530103 00000 n -0000272897 00000 n -0000270581 00000 n -0000272793 00000 n -0000530211 00000 n -0000275660 00000 n -0000272961 00000 n -0000275582 00000 n -0000530410 00000 n -0000276202 00000 n -0000275724 00000 n -0000276135 00000 n -0000530518 00000 n -0000277048 00000 n -0000276266 00000 n -0000277003 00000 n -0000530709 00000 n -0000278163 00000 n -0000277112 00000 n -0000278118 00000 n -0000530817 00000 n -0000279920 00000 n -0000278227 00000 n -0000279853 00000 n -0000530925 00000 n -0000281715 00000 n -0000279984 00000 n -0000281648 00000 n -0000531224 00000 n -0000283683 00000 n -0000281779 00000 n -0000283605 00000 n -0000531332 00000 n -0000285584 00000 n -0000283747 00000 n -0000285502 00000 n -0000531523 00000 n -0000288222 00000 n -0000285648 00000 n -0000288118 00000 n -0000531631 00000 n -0000289902 00000 n -0000288286 00000 n -0000289831 00000 n -0000531739 00000 n -0000291936 00000 n -0000289966 00000 n -0000291832 00000 n -0000531938 00000 n -0000294231 00000 n -0000292000 00000 n -0000294175 00000 n -0000532046 00000 n -0000296765 00000 n -0000294295 00000 n -0000296661 00000 n -0000532237 00000 n -0000300111 00000 n -0000296829 00000 n -0000300066 00000 n -0000532345 00000 n -0000302769 00000 n -0000300175 00000 n -0000302691 00000 n -0000532453 00000 n -0000304881 00000 n -0000302833 00000 n -0000304814 00000 n -0000532850 00000 n -0000306412 00000 n -0000304945 00000 n -0000306345 00000 n -0000532958 00000 n -0000308583 00000 n -0000306476 00000 n -0000308516 00000 n -0000533149 00000 n -0000308855 00000 n -0000308647 00000 n -0000308821 00000 n -0000533257 00000 n -0000312020 00000 n -0000308919 00000 n -0000311942 00000 n -0000533365 00000 n -0000314823 00000 n -0000312084 00000 n -0000314745 00000 n -0000533564 00000 n -0000317806 00000 n -0000314887 00000 n -0000317739 00000 n -0000533672 00000 n -0000319934 00000 n -0000317870 00000 n -0000319856 00000 n -0000533863 00000 n -0000322005 00000 n -0000319998 00000 n -0000321927 00000 n -0000533971 00000 n -0000322277 00000 n -0000322069 00000 n -0000322243 00000 n -0000534079 00000 n -0000325360 00000 n -0000322341 00000 n -0000325293 00000 n -0000534378 00000 n -0000328176 00000 n -0000325424 00000 n -0000328098 00000 n -0000534486 00000 n -0000330875 00000 n -0000328240 00000 n -0000330797 00000 n -0000534677 00000 n -0000333473 00000 n -0000330939 00000 n -0000333395 00000 n -0000534785 00000 n -0000335781 00000 n -0000333537 00000 n -0000335703 00000 n -0000534893 00000 n -0000337810 00000 n -0000335845 00000 n -0000337754 00000 n -0000535092 00000 n -0000339821 00000 n -0000337874 00000 n -0000339754 00000 n -0000535200 00000 n -0000340093 00000 n -0000339885 00000 n -0000340059 00000 n -0000535391 00000 n -0000341421 00000 n -0000340157 00000 n -0000341354 00000 n -0000535499 00000 n -0000341693 00000 n -0000341485 00000 n -0000341659 00000 n -0000535607 00000 n -0000344802 00000 n -0000341757 00000 n -0000344713 00000 n -0000535906 00000 n -0000347810 00000 n -0000344866 00000 n -0000347721 00000 n -0000536014 00000 n -0000350644 00000 n -0000347874 00000 n -0000350555 00000 n -0000536205 00000 n -0000354101 00000 n -0000350708 00000 n -0000354034 00000 n -0000536313 00000 n -0000357285 00000 n -0000354165 00000 n -0000357218 00000 n -0000536421 00000 n -0000358729 00000 n -0000357349 00000 n -0000358662 00000 n -0000536620 00000 n -0000361649 00000 n -0000358793 00000 n -0000361582 00000 n -0000536728 00000 n -0000364935 00000 n -0000361713 00000 n -0000364890 00000 n -0000536919 00000 n -0000367835 00000 n -0000364999 00000 n -0000367801 00000 n -0000537027 00000 n -0000370426 00000 n -0000367899 00000 n -0000370392 00000 n -0000537135 00000 n -0000373193 00000 n -0000370490 00000 n -0000373159 00000 n -0000537434 00000 n -0000375963 00000 n -0000373257 00000 n -0000375918 00000 n -0000537542 00000 n -0000378193 00000 n -0000488719 00000 n -0000488532 00000 n -0000376027 00000 n -0000376773 00000 n -0000378124 00000 n -0000537733 00000 n -0000378465 00000 n -0000378257 00000 n -0000378431 00000 n -0000537841 00000 n -0000381665 00000 n -0000502140 00000 n -0000501945 00000 n -0000378529 00000 n -0000504025 00000 n -0000503837 00000 n -0000379498 00000 n -0000380469 00000 n -0000381581 00000 n -0000537949 00000 n -0000382927 00000 n -0000381729 00000 n -0000382830 00000 n -0000538148 00000 n -0000384571 00000 n -0000382991 00000 n -0000384487 00000 n -0000538256 00000 n -0000386648 00000 n -0000384635 00000 n -0000386538 00000 n -0000538364 00000 n -0000389025 00000 n -0000386712 00000 n -0000388904 00000 n -0000538563 00000 n -0000391530 00000 n -0000389089 00000 n -0000391446 00000 n -0000538671 00000 n -0000393775 00000 n -0000391594 00000 n -0000393704 00000 n -0000538779 00000 n -0000394047 00000 n -0000393839 00000 n -0000394013 00000 n -0000520216 00000 n -0000515554 00000 n -0000514377 00000 n -0000514772 00000 n -0000515070 00000 n -0000515466 00000 n -0000517060 00000 n -0000515864 00000 n -0000516260 00000 n -0000516563 00000 n -0000516969 00000 n -0000518588 00000 n -0000517376 00000 n -0000517783 00000 n -0000518090 00000 n -0000518497 00000 n -0000520116 00000 n -0000518904 00000 n -0000519311 00000 n -0000519618 00000 n -0000520025 00000 n -0000526542 00000 n -0000521742 00000 n -0000520530 00000 n -0000520937 00000 n -0000521244 00000 n -0000521651 00000 n -0000523270 00000 n -0000522058 00000 n -0000522465 00000 n -0000522772 00000 n -0000523179 00000 n -0000524798 00000 n -0000523586 00000 n -0000523993 00000 n -0000524300 00000 n -0000524707 00000 n -0000526442 00000 n -0000525114 00000 n -0000525521 00000 n -0000525936 00000 n -0000526351 00000 n -0000532752 00000 n -0000528068 00000 n -0000526856 00000 n -0000527263 00000 n -0000527570 00000 n -0000527977 00000 n -0000529596 00000 n -0000528384 00000 n -0000528791 00000 n -0000529098 00000 n -0000529505 00000 n -0000531124 00000 n -0000529912 00000 n -0000530319 00000 n -0000530626 00000 n -0000531033 00000 n -0000532652 00000 n -0000531440 00000 n -0000531847 00000 n -0000532154 00000 n -0000532561 00000 n -0000539078 00000 n -0000534278 00000 n -0000533066 00000 n -0000533473 00000 n -0000533780 00000 n -0000534187 00000 n -0000535806 00000 n -0000534594 00000 n -0000535001 00000 n -0000535308 00000 n -0000535715 00000 n -0000537334 00000 n -0000536122 00000 n -0000536529 00000 n -0000536836 00000 n -0000537243 00000 n -0000538978 00000 n -0000537650 00000 n -0000538057 00000 n -0000538472 00000 n -0000538887 00000 n -0000539461 00000 n -0000539484 00000 n -0000539506 00000 n +0000239268 00000 n +0000528493 00000 n +0000242190 00000 n +0000239410 00000 n +0000242101 00000 n +0000528601 00000 n +0000245043 00000 n +0000242254 00000 n +0000244965 00000 n +0000528709 00000 n +0000246509 00000 n +0000245107 00000 n +0000246431 00000 n +0000528908 00000 n +0000252450 00000 n +0000481470 00000 n +0000481274 00000 n +0000246573 00000 n +0000483079 00000 n +0000482891 00000 n +0000247575 00000 n +0000248578 00000 n +0000252335 00000 n +0000529016 00000 n +0000254795 00000 n +0000252514 00000 n +0000254713 00000 n +0000529207 00000 n +0000257609 00000 n +0000254859 00000 n +0000257494 00000 n +0000529315 00000 n +0000260764 00000 n +0000257673 00000 n +0000260660 00000 n +0000529423 00000 n +0000263091 00000 n +0000260828 00000 n +0000263024 00000 n +0000529722 00000 n +0000265573 00000 n +0000263155 00000 n +0000265491 00000 n +0000529830 00000 n +0000268070 00000 n +0000265637 00000 n +0000267988 00000 n +0000530021 00000 n +0000270543 00000 n +0000268134 00000 n +0000270476 00000 n +0000530129 00000 n +0000272923 00000 n +0000270607 00000 n +0000272819 00000 n +0000530237 00000 n +0000275686 00000 n +0000272987 00000 n +0000275608 00000 n +0000530436 00000 n +0000276228 00000 n +0000275750 00000 n +0000276161 00000 n +0000530544 00000 n +0000277074 00000 n +0000276292 00000 n +0000277029 00000 n +0000530735 00000 n +0000278189 00000 n +0000277138 00000 n +0000278144 00000 n +0000530843 00000 n +0000279946 00000 n +0000278253 00000 n +0000279879 00000 n +0000530951 00000 n +0000281741 00000 n +0000280010 00000 n +0000281674 00000 n +0000531250 00000 n +0000283709 00000 n +0000281805 00000 n +0000283631 00000 n +0000531358 00000 n +0000285610 00000 n +0000283773 00000 n +0000285528 00000 n +0000531549 00000 n +0000288248 00000 n +0000285674 00000 n +0000288144 00000 n +0000531657 00000 n +0000289928 00000 n +0000288312 00000 n +0000289857 00000 n +0000531765 00000 n +0000291962 00000 n +0000289992 00000 n +0000291858 00000 n +0000531964 00000 n +0000294257 00000 n +0000292026 00000 n +0000294201 00000 n +0000532072 00000 n +0000296791 00000 n +0000294321 00000 n +0000296687 00000 n +0000532263 00000 n +0000300137 00000 n +0000296855 00000 n +0000300092 00000 n +0000532371 00000 n +0000302795 00000 n +0000300201 00000 n +0000302717 00000 n +0000532479 00000 n +0000304907 00000 n +0000302859 00000 n +0000304840 00000 n +0000532876 00000 n +0000306438 00000 n +0000304971 00000 n +0000306371 00000 n +0000532984 00000 n +0000308609 00000 n +0000306502 00000 n +0000308542 00000 n +0000533175 00000 n +0000308881 00000 n +0000308673 00000 n +0000308847 00000 n +0000533283 00000 n +0000312046 00000 n +0000308945 00000 n +0000311968 00000 n +0000533391 00000 n +0000314849 00000 n +0000312110 00000 n +0000314771 00000 n +0000533590 00000 n +0000317832 00000 n +0000314913 00000 n +0000317765 00000 n +0000533698 00000 n +0000319960 00000 n +0000317896 00000 n +0000319882 00000 n +0000533889 00000 n +0000322031 00000 n +0000320024 00000 n +0000321953 00000 n +0000533997 00000 n +0000322303 00000 n +0000322095 00000 n +0000322269 00000 n +0000534105 00000 n +0000325386 00000 n +0000322367 00000 n +0000325319 00000 n +0000534404 00000 n +0000328202 00000 n +0000325450 00000 n +0000328124 00000 n +0000534512 00000 n +0000330901 00000 n +0000328266 00000 n +0000330823 00000 n +0000534703 00000 n +0000333499 00000 n +0000330965 00000 n +0000333421 00000 n +0000534811 00000 n +0000335807 00000 n +0000333563 00000 n +0000335729 00000 n +0000534919 00000 n +0000337836 00000 n +0000335871 00000 n +0000337780 00000 n +0000535118 00000 n +0000339847 00000 n +0000337900 00000 n +0000339780 00000 n +0000535226 00000 n +0000340119 00000 n +0000339911 00000 n +0000340085 00000 n +0000535417 00000 n +0000341447 00000 n +0000340183 00000 n +0000341380 00000 n +0000535525 00000 n +0000341719 00000 n +0000341511 00000 n +0000341685 00000 n +0000535633 00000 n +0000344828 00000 n +0000341783 00000 n +0000344739 00000 n +0000535932 00000 n +0000347836 00000 n +0000344892 00000 n +0000347747 00000 n +0000536040 00000 n +0000350670 00000 n +0000347900 00000 n +0000350581 00000 n +0000536231 00000 n +0000354127 00000 n +0000350734 00000 n +0000354060 00000 n +0000536339 00000 n +0000357311 00000 n +0000354191 00000 n +0000357244 00000 n +0000536447 00000 n +0000358755 00000 n +0000357375 00000 n +0000358688 00000 n +0000536646 00000 n +0000361675 00000 n +0000358819 00000 n +0000361608 00000 n +0000536754 00000 n +0000364961 00000 n +0000361739 00000 n +0000364916 00000 n +0000536945 00000 n +0000367861 00000 n +0000365025 00000 n +0000367827 00000 n +0000537053 00000 n +0000370452 00000 n +0000367925 00000 n +0000370418 00000 n +0000537161 00000 n +0000373219 00000 n +0000370516 00000 n +0000373185 00000 n +0000537460 00000 n +0000375989 00000 n +0000373283 00000 n +0000375944 00000 n +0000537568 00000 n +0000378219 00000 n +0000488745 00000 n +0000488558 00000 n +0000376053 00000 n +0000376799 00000 n +0000378150 00000 n +0000537759 00000 n +0000378491 00000 n +0000378283 00000 n +0000378457 00000 n +0000537867 00000 n +0000381691 00000 n +0000502166 00000 n +0000501971 00000 n +0000378555 00000 n +0000504051 00000 n +0000503863 00000 n +0000379524 00000 n +0000380495 00000 n +0000381607 00000 n +0000537975 00000 n +0000382953 00000 n +0000381755 00000 n +0000382856 00000 n +0000538174 00000 n +0000384597 00000 n +0000383017 00000 n +0000384513 00000 n +0000538282 00000 n +0000386674 00000 n +0000384661 00000 n +0000386564 00000 n +0000538390 00000 n +0000389051 00000 n +0000386738 00000 n +0000388930 00000 n +0000538589 00000 n +0000391556 00000 n +0000389115 00000 n +0000391472 00000 n +0000538697 00000 n +0000393801 00000 n +0000391620 00000 n +0000393730 00000 n +0000538805 00000 n +0000394073 00000 n +0000393865 00000 n +0000394039 00000 n +0000520242 00000 n +0000515580 00000 n +0000514403 00000 n +0000514798 00000 n +0000515096 00000 n +0000515492 00000 n +0000517086 00000 n +0000515890 00000 n +0000516286 00000 n +0000516589 00000 n +0000516995 00000 n +0000518614 00000 n +0000517402 00000 n +0000517809 00000 n +0000518116 00000 n +0000518523 00000 n +0000520142 00000 n +0000518930 00000 n +0000519337 00000 n +0000519644 00000 n +0000520051 00000 n +0000526568 00000 n +0000521768 00000 n +0000520556 00000 n +0000520963 00000 n +0000521270 00000 n +0000521677 00000 n +0000523296 00000 n +0000522084 00000 n +0000522491 00000 n +0000522798 00000 n +0000523205 00000 n +0000524824 00000 n +0000523612 00000 n +0000524019 00000 n +0000524326 00000 n +0000524733 00000 n +0000526468 00000 n +0000525140 00000 n +0000525547 00000 n +0000525962 00000 n +0000526377 00000 n +0000532778 00000 n +0000528094 00000 n +0000526882 00000 n +0000527289 00000 n +0000527596 00000 n +0000528003 00000 n +0000529622 00000 n +0000528410 00000 n +0000528817 00000 n +0000529124 00000 n +0000529531 00000 n +0000531150 00000 n +0000529938 00000 n +0000530345 00000 n +0000530652 00000 n +0000531059 00000 n +0000532678 00000 n +0000531466 00000 n +0000531873 00000 n +0000532180 00000 n +0000532587 00000 n +0000539104 00000 n +0000534304 00000 n +0000533092 00000 n +0000533499 00000 n +0000533806 00000 n +0000534213 00000 n +0000535832 00000 n +0000534620 00000 n +0000535027 00000 n +0000535334 00000 n +0000535741 00000 n +0000537360 00000 n +0000536148 00000 n +0000536555 00000 n +0000536862 00000 n +0000537269 00000 n +0000539004 00000 n +0000537676 00000 n +0000538083 00000 n +0000538498 00000 n +0000538913 00000 n +0000539487 00000 n +0000539510 00000 n +0000539532 00000 n trailer << /Size 792 @@ -9172,5 +9174,5 @@ trailer /Info 1 0 R >> startxref -539627 +539653 %%EOF diff --git a/lib/intl/Makefile.in b/lib/intl/Makefile.in index b7eee8c3b..b431a2f21 100644 --- a/lib/intl/Makefile.in +++ b/lib/intl/Makefile.in @@ -41,6 +41,8 @@ gettextsrcdir = $(datadir)/gettext/intl aliaspath = $(localedir) subdir = intl +@SET_MAKE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ diff --git a/lib/readline/readline.h b/lib/readline/readline.h index 27aa9495b..519c4c2b4 100644 --- a/lib/readline/readline.h +++ b/lib/readline/readline.h @@ -40,9 +40,9 @@ extern "C" { #endif /* Hex-encoded Readline version number. */ -#define RL_READLINE_VERSION 0x0502 /* Readline 5.2 */ -#define RL_VERSION_MAJOR 5 -#define RL_VERSION_MINOR 2 +#define RL_READLINE_VERSION 0x0600 /* Readline 6.0 */ +#define RL_VERSION_MAJOR 6 +#define RL_VERSION_MINOR 0 /* Readline data structures. */ diff --git a/po/LINGUAS b/po/LINGUAS index b62624056..4d6aa74f1 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -1,2 +1,2 @@ # Set of available languages. -en@quot en@boldquot af bg ca de eo es et fr hu ja lt nl pl pt_BR ro ru sk sv tr vi +en@quot en@boldquot af bg ca cs de eo es et fr hu ja lt nl pl pt_BR ro ru sk sv tr vi diff --git a/po/cs.gmo b/po/cs.gmo new file mode 100644 index 000000000..c135f402e Binary files /dev/null and b/po/cs.gmo differ diff --git a/po/cs.po b/po/cs.po new file mode 100644 index 000000000..713f40533 --- /dev/null +++ b/po/cs.po @@ -0,0 +1,3279 @@ +# Czech tranlation for bash. +# Copyright (C) 2008 Free Software Foundation, Inc. +# This file is distributed under the same license as the bash package. +# Petr Pisar , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: bash 3.2\n" +"POT-Creation-Date: 2006-10-23 17:20-0400\n" +"PO-Revision-Date: 2008-08-05 15:11+0200\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: arrayfunc.c:48 +msgid "bad array subscript" +msgstr "chybný podskript pole" + +#: arrayfunc.c:362 +#, c-format +msgid "%s: cannot assign to non-numeric index" +msgstr "%s: přes nečíselný indexu nelze dosadit" + +#: bashhist.c:331 +#, c-format +msgid "%s: cannot create: %s" +msgstr "%s: nelze vytvořit: %s" + +#: bashline.c:3030 +msgid "bash_execute_unix_command: cannot find keymap for command" +msgstr "bash_execute_unix_command: pro příkaz nelze nalézt klávesovou mapu " + +#: bashline.c:3079 +#, c-format +msgid "%s: first non-whitespace character is not `\"'" +msgstr "%s: první nebílý znak není „\"“" + +#: bashline.c:3108 +#, c-format +msgid "no closing `%c' in %s" +msgstr "ne zavírající „%c“ v %s" + +#: bashline.c:3142 +#, c-format +msgid "%s: missing colon separator" +msgstr "%s: chybí dvojtečkový oddělovač" + +#: builtins/bind.def:194 +#, c-format +msgid "`%s': invalid keymap name" +msgstr "„%s“: chybný název klávesové mapy" + +#: builtins/bind.def:233 +#, c-format +msgid "%s: cannot read: %s" +msgstr "%s: nelze číst: %s" + +#: builtins/bind.def:248 +#, c-format +msgid "`%s': cannot unbind" +msgstr "„%s“: nelze zruÅ¡it vazbu" + +#: builtins/bind.def:283 +#, c-format +msgid "`%s': unknown function name" +msgstr "„%s“: neznámé jméno funkce" + +#: builtins/bind.def:291 +#, c-format +msgid "%s is not bound to any keys.\n" +msgstr "%s není svázán s žádnou klávesou.\n" + +#: builtins/bind.def:295 +#, c-format +msgid "%s can be invoked via " +msgstr "%s lze vyvolat přes " + +#: builtins/break.def:128 +msgid "only meaningful in a `for', `while', or `until' loop" +msgstr "má smysl jen ve smyčkách „for“, „while“ nebo „until“" + +#: builtins/caller.def:131 +msgid "Returns the context of the current subroutine call." +msgstr "Vrací kontext aktuálního volání podrutiny." + +#: builtins/caller.def:132 builtins/caller.def:136 builtins/pushd.def:666 +#: builtins/pushd.def:674 builtins/pushd.def:677 builtins/pushd.def:687 +#: builtins/pushd.def:691 builtins/pushd.def:695 builtins/pushd.def:698 +#: builtins/pushd.def:701 builtins/pushd.def:710 builtins/pushd.def:714 +#: builtins/pushd.def:718 builtins/pushd.def:721 +msgid " " +msgstr " " + +#: builtins/caller.def:133 +msgid "Without EXPR, returns returns \"$line $filename\". With EXPR," +msgstr "Bez VÝRAZU vrací „$line $filename“. S VÝRAZEM " + +#: builtins/caller.def:134 +msgid "returns \"$line $subroutine $filename\"; this extra information" +msgstr "vrací „$line $subroutine $filename“. Tyto údaje" + +#: builtins/caller.def:135 +msgid "can be used used to provide a stack trace." +msgstr "lze využít při výpisu zásobníku volání." + +#: builtins/caller.def:137 +msgid "The value of EXPR indicates how many call frames to go back before the" +msgstr "Hodnota VÝRAZ značí, kolik rámců volání se má jít zpět před" + +#: builtins/caller.def:138 +msgid "current one; the top frame is frame 0." +msgstr "současný rámec, vrcholový rámec má číslo 0." + +#: builtins/cd.def:204 +msgid "HOME not set" +msgstr "není nestavena HOME" + +#: builtins/cd.def:216 +msgid "OLDPWD not set" +msgstr "není nastaveno OLDPWD" + +#: builtins/common.c:133 test.c:822 +msgid "too many arguments" +msgstr "příliÅ¡ mnoho argumentů" + +#: builtins/common.c:157 shell.c:474 shell.c:748 +#, c-format +msgid "%s: option requires an argument" +msgstr "%s: přepínač vyžaduje argument" + +#: builtins/common.c:164 +#, c-format +msgid "%s: numeric argument required" +msgstr "%s: vyžadován číselný argument" + +#: builtins/common.c:171 +#, c-format +msgid "%s: not found" +msgstr "%s: nenalezeno" + +#: builtins/common.c:180 shell.c:761 +#, c-format +msgid "%s: invalid option" +msgstr "%s: chybný přepínač" + +#: builtins/common.c:187 +#, c-format +msgid "%s: invalid option name" +msgstr "%s: chybný název přepínače" + +#: builtins/common.c:194 general.c:230 general.c:235 +#, c-format +msgid "`%s': not a valid identifier" +msgstr "„%s“: není platným identifikátorem" + +#: builtins/common.c:201 +#, c-format +msgid "%s: invalid number" +msgstr "%s: chybné číslo" + +#: builtins/common.c:208 +#, c-format +msgid "%s: invalid signal specification" +msgstr "%s: chybné určení signálu" + +#: builtins/common.c:215 +#, c-format +msgid "`%s': not a pid or valid job spec" +msgstr "„%s“: není PID ani platným označením úlohy" + +#: builtins/common.c:222 error.c:451 +#, c-format +msgid "%s: readonly variable" +msgstr "%s: proměnná pouze pro čtení" + +#: builtins/common.c:230 +#, c-format +msgid "%s: %s out of range" +msgstr "%s: %s mimo rozsah" + +#: builtins/common.c:230 builtins/common.c:232 +msgid "argument" +msgstr "argument" + +#: builtins/common.c:232 +#, c-format +msgid "%s out of range" +msgstr "%s mimo rozsah" + +#: builtins/common.c:240 +#, c-format +msgid "%s: no such job" +msgstr "%s: žádná taková úloha" + +#: builtins/common.c:248 +#, c-format +msgid "%s: no job control" +msgstr "%s: žádné řízení úloh" + +#: builtins/common.c:250 +msgid "no job control" +msgstr "žádné řízení úloh" + +#: builtins/common.c:260 +#, c-format +msgid "%s: restricted" +msgstr "%s: omezeno" + +#: builtins/common.c:262 +msgid "restricted" +msgstr "omezeno" + +#: builtins/common.c:270 +#, c-format +msgid "%s: not a shell builtin" +msgstr "%s: není vestavěným příkazem shellu" + +#: builtins/common.c:276 +#, c-format +msgid "write error: %s" +msgstr "chyba zápisu: %s" + +#: builtins/common.c:481 +#, c-format +msgid "%s: error retrieving current directory: %s: %s\n" +msgstr "%s: chyba při zjišťování současného adresáře: %s: %s\n" + +#: builtins/common.c:547 builtins/common.c:549 +#, c-format +msgid "%s: ambiguous job spec" +msgstr "%s: nejednoznačné určení úlohy" + +#: builtins/complete.def:251 +#, c-format +msgid "%s: invalid action name" +msgstr "%s: neplatný název akce" + +#: builtins/complete.def:381 builtins/complete.def:524 +#, c-format +msgid "%s: no completion specification" +msgstr "%s: žádné doplňování neurčeno" + +#: builtins/complete.def:571 +msgid "warning: -F option may not work as you expect" +msgstr "varování: přepínač -F možná nebude dělat, co jste čekali" + +#: builtins/complete.def:573 +msgid "warning: -C option may not work as you expect" +msgstr "varování: přepínač -C možná nebude dělat, co jste čekali" + +#: builtins/declare.def:106 +msgid "can only be used in a function" +msgstr "může být použito jen ve funkci" + +#: builtins/declare.def:306 +msgid "cannot use `-f' to make functions" +msgstr "„-f“ nezle použít na výrobu funkce" + +#: builtins/declare.def:318 execute_cmd.c:4073 +#, c-format +msgid "%s: readonly function" +msgstr "%s: funkce jen pro čtení" + +#: builtins/declare.def:406 +#, c-format +msgid "%s: cannot destroy array variables in this way" +msgstr "%s: takto nelze likvidovat pole" + +#: builtins/enable.def:128 builtins/enable.def:136 +msgid "dynamic loading not available" +msgstr "dynamické nahrávání není dostupné" + +#: builtins/enable.def:303 +#, c-format +msgid "cannot open shared object %s: %s" +msgstr "sdílený objekt %s nelze otevřít: %s" + +#: builtins/enable.def:326 +#, c-format +msgid "cannot find %s in shared object %s: %s" +msgstr "ve sdílením objektu %2$s nelze nalézt %1$s: %3$s" + +#: builtins/enable.def:450 +#, c-format +msgid "%s: not dynamically loaded" +msgstr "%s: není dynamicky nahráno" + +#: builtins/enable.def:465 +#, c-format +msgid "%s: cannot delete: %s" +msgstr "%s: nelze smazat: %s" + +#: builtins/evalfile.c:129 execute_cmd.c:3930 shell.c:1409 +#, c-format +msgid "%s: is a directory" +msgstr "%s: je adresářem" + +#: builtins/evalfile.c:134 +#, c-format +msgid "%s: not a regular file" +msgstr "%s: není obyčejný soubor" + +#: builtins/evalfile.c:142 +#, c-format +msgid "%s: file is too large" +msgstr "%s: soubor je příliÅ¡ velký" + +#: builtins/exec.def:205 +#, c-format +msgid "%s: cannot execute: %s" +msgstr "%s: nelze provézt: %s" + +#: builtins/exit.def:83 +msgid "not login shell: use `exit'" +msgstr "toto není login shell: použijte „exit“" + +#: builtins/exit.def:111 +msgid "There are stopped jobs.\n" +msgstr "Jsou zde pozastavení úlohy.\n" + +#: builtins/fc.def:258 +msgid "no command found" +msgstr "žádný příkaz nenalezen" + +#: builtins/fc.def:328 +msgid "history specification" +msgstr "určení historie" + +#: builtins/fc.def:349 +#, c-format +msgid "%s: cannot open temp file: %s" +msgstr "%s: dočasný soubor nelze otevřít: %s" + +#: builtins/fg_bg.def:149 +#, c-format +msgid "job %d started without job control" +msgstr "úloha %d spuÅ¡těna bez správy úloh" + +#: builtins/getopt.c:109 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: chybný přepínač – %c\n" + +#: builtins/getopt.c:110 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: přepínač vyžaduje argument – %c\n" + +#: builtins/hash.def:84 +msgid "hashing disabled" +msgstr "hashování zakázáno" + +#: builtins/hash.def:130 +#, c-format +msgid "%s: hash table empty\n" +msgstr "%s: tabulka hashů je prázdná\n" + +#: builtins/help.def:108 +msgid "Shell commands matching keywords `" +msgstr "Příkazy shellu shodující se s klíčovými slovy „" + +#: builtins/help.def:110 +msgid "Shell commands matching keyword `" +msgstr "Příkazy shellu shodující ce s klíčovým slovem „" + +#: builtins/help.def:138 +#, c-format +msgid "no help topics match `%s'. Try `help help' or `man -k %s' or `info %s'." +msgstr "žádné téma nápovědy se nehodí pro „%s“. Zkuste „help help“ nebo „man -k %s“ nebo „info %s“." + +#: builtins/help.def:164 +#, c-format +msgid "%s: cannot open: %s" +msgstr "%s: nelze otevřít: %s" + +#: builtins/help.def:182 +msgid "" +"These shell commands are defined internally. Type `help' to see this list.\n" +"Type `help name' to find out more about the function `name'.\n" +"Use `info bash' to find out more about the shell in general.\n" +"Use `man -k' or `info' to find out more about commands not in this list.\n" +"\n" +"A star (*) next to a name means that the command is disabled.\n" +"\n" +msgstr "" +"Tyto příkazy shellu jsou vnitřně definovány. NapiÅ¡te „help“, aby ste získali\n" +"tento seznam. Podrobnosti o funkci „název“ získáte příkazem „help název“.\n" +"Příkazem „info bash“ získáte obecné informace o tomto shellu.\n" +"Použijte „man -k“ nebo „info“, chcete-li zjistit více o příkazech, které\n" +"na tomto seznamu nejsou.\n" +"\n" +"Hvězdička (*) vedle jména znamená, že příkaz je zakázán.\n" +"\n" + +#: builtins/history.def:150 +msgid "cannot use more than one of -anrw" +msgstr "nelze použít více jak jeden z -anrw" + +#: builtins/history.def:182 +msgid "history position" +msgstr "místo v historii" + +#: builtins/history.def:400 +#, c-format +msgid "%s: history expansion failed" +msgstr "%s: expanze historie selhala" + +#: builtins/jobs.def:99 +msgid "no other options allowed with `-x'" +msgstr "s „-x“ nejsou dovoleny další přepínače" + +#: builtins/kill.def:187 +#, c-format +msgid "%s: arguments must be process or job IDs" +msgstr "%s: argumenty musí být proces nebo identifikátor úlohy" + +#: builtins/kill.def:250 +msgid "Unknown error" +msgstr "Neznámá chyba" + +#: builtins/let.def:94 builtins/let.def:119 expr.c:498 expr.c:513 +msgid "expression expected" +msgstr "očekáván výraz" + +#: builtins/printf.def:339 +#, c-format +msgid "`%s': missing format character" +msgstr "„%s“: postrádám formátovací znak" + +#: builtins/printf.def:516 +#, c-format +msgid "`%c': invalid format character" +msgstr "„%c“: neplatný formátovací znak" + +#: builtins/printf.def:722 +msgid "missing hex digit for \\x" +msgstr "u \\x chybí Å¡estnáctková číslovka" + +#: builtins/pushd.def:175 +msgid "no other directory" +msgstr "žádný další adresář" + +#: builtins/pushd.def:442 +msgid "" +msgstr "<žádný aktuální adresář>" + +#: builtins/pushd.def:663 +msgid "Display the list of currently remembered directories. Directories" +msgstr "Zobrazí seznam právě zapamatovaných adresářů. Adresáře" + +#: builtins/pushd.def:664 +msgid "find their way onto the list with the `pushd' command; you can get" +msgstr "se na seznam umisÅ¥ují příkazem „pushd“, předchozí stav seznamu lze" + +#: builtins/pushd.def:665 +msgid "back up through the list with the `popd' command." +msgstr "vrátit příkazem „popd“." + +#: builtins/pushd.def:667 +msgid "The -l flag specifies that `dirs' should not print shorthand versions" +msgstr "Příznak -l značí, že „dirs“ nemá vypisovat zkrácené verze adresářů," + +#: builtins/pushd.def:668 +msgid "of directories which are relative to your home directory. This means" +msgstr "které leží pod vaším domovským adresářem. To znamená, že „~/bin“" + +#: builtins/pushd.def:669 +msgid "that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag" +msgstr "smí být zobrazen jako „/homes/bfox/bin“. Příznak -v způsobí, že" + +#: builtins/pushd.def:670 +msgid "causes `dirs' to print the directory stack with one entry per line," +msgstr "„dirs“ vypíše zásobník adresářů záznam po záznamu na samostatné řádky" + +#: builtins/pushd.def:671 +msgid "prepending the directory name with its position in the stack. The -p" +msgstr "a před název adresáře uvede jeho pořadí v zásobníku. Příznak -p" + +#: builtins/pushd.def:672 +msgid "flag does the same thing, but the stack position is not prepended." +msgstr "dělá to samé, ale bez informace o umístění na zásobníku." + +#: builtins/pushd.def:673 +msgid "The -c flag clears the directory stack by deleting all of the elements." +msgstr "Příznak -c vyprázdní zásobník smazáním vÅ¡em prvků." + +#: builtins/pushd.def:675 +msgid "+N displays the Nth entry counting from the left of the list shown by" +msgstr "+N zobrazí N. položku počítáno zleva na seznamu, který by vytiskl" + +#: builtins/pushd.def:676 builtins/pushd.def:679 +msgid " dirs when invoked without options, starting with zero." +msgstr " příkaz dirs bez jakýchkoliv přepínačů, počítáno od nuly." + +#: builtins/pushd.def:678 +msgid "-N displays the Nth entry counting from the right of the list shown by" +msgstr "-N zobrazí N. položku počítáno zprava na seznamu, který by vytiskl" + +#: builtins/pushd.def:684 +msgid "Adds a directory to the top of the directory stack, or rotates" +msgstr "Přidá adresář na vrchol zásobníku adresářů, nebo rotuje zásobník tak," + +#: builtins/pushd.def:685 +msgid "the stack, making the new top of the stack the current working" +msgstr "že nový vrchol zásobníku se stane pracovním adresářem." + +#: builtins/pushd.def:686 +msgid "directory. With no arguments, exchanges the top two directories." +msgstr "Bez argumentů prohodí horní dva adresáře." + +#: builtins/pushd.def:688 +msgid "+N Rotates the stack so that the Nth directory (counting" +msgstr "+N Zrotuje zásobník tak, že N. adresář (počítáno" + +#: builtins/pushd.def:689 +msgid " from the left of the list shown by `dirs', starting with" +msgstr " zleva seznamu, který by ukázal „dirs“, počínaje od" + +#: builtins/pushd.def:690 builtins/pushd.def:694 +msgid " zero) is at the top." +msgstr " nuly) se dostane na vrchol." + +#: builtins/pushd.def:692 +msgid "-N Rotates the stack so that the Nth directory (counting" +msgstr "-N Zrotuje zásobník tak, že N. adresář (počítáno" + +#: builtins/pushd.def:693 +msgid " from the right of the list shown by `dirs', starting with" +msgstr " zprava seznamu, který by ukázal „dirs“, počínaje od" + +#: builtins/pushd.def:696 +msgid "-n suppress the normal change of directory when adding directories" +msgstr "-n potlačí obvyklou změnu pracovního adresáře při přidávání adresářů" + +#: builtins/pushd.def:697 +msgid " to the stack, so only the stack is manipulated." +msgstr " na zásobník, takže se změní jen obsah zásobníku." + +#: builtins/pushd.def:699 +msgid "dir adds DIR to the directory stack at the top, making it the" +msgstr "adr přidá ADR na vrchol zásobníku adresářů a učiní jej" + +#: builtins/pushd.def:700 +msgid " new current working directory." +msgstr " novým pracovním adresářem." + +#: builtins/pushd.def:702 builtins/pushd.def:722 +msgid "You can see the directory stack with the `dirs' command." +msgstr "Zásobník adresářů si lze prohlédnout příkazem „dirs“." + +#: builtins/pushd.def:707 +msgid "Removes entries from the directory stack. With no arguments," +msgstr "Odstraní položky ze zásobníku adresářů. Bez argumentů" + +#: builtins/pushd.def:708 +msgid "removes the top directory from the stack, and cd's to the new" +msgstr "odstraní adresář z vrcholu zásobníku a přepne se do nového" + +#: builtins/pushd.def:709 +msgid "top directory." +msgstr "vrcholového adresáře." + +#: builtins/pushd.def:711 +msgid "+N removes the Nth entry counting from the left of the list" +msgstr "+N odstraní N. položku počítáno zleva na seznamu," + +#: builtins/pushd.def:712 +msgid " shown by `dirs', starting with zero. For example: `popd +0'" +msgstr " který by ukázal „dirs“, počínaje nulou. Například „popd +0“" + +#: builtins/pushd.def:713 +msgid " removes the first directory, `popd +1' the second." +msgstr " odstraní první adresář, „popd +1“ druhý." + +#: builtins/pushd.def:715 +msgid "-N removes the Nth entry counting from the right of the list" +msgstr "-N odstraní N. položku počítáno zprava na seznamu," + +#: builtins/pushd.def:716 +msgid " shown by `dirs', starting with zero. For example: `popd -0'" +msgstr " který by ukázal „dirs“, počínaje nulou. Například: „popd -0“" + +#: builtins/pushd.def:717 +msgid " removes the last directory, `popd -1' the next to last." +msgstr " odstraní poslední adresář, “popd -1“ předposlední." + +#: builtins/pushd.def:719 +msgid "-n suppress the normal change of directory when removing directories" +msgstr "-n potlačí obvyklou změnu pracovního adresáře při odebírání adresářů" + +#: builtins/pushd.def:720 +msgid " from the stack, so only the stack is manipulated." +msgstr " ze zásobníku, takže pouze zásobník dozná změny." + +#: builtins/read.def:210 +#, c-format +msgid "%s: invalid timeout specification" +msgstr "%s: chybné určení časového limitu" + +#: builtins/read.def:233 +#, c-format +msgid "%s: invalid file descriptor specification" +msgstr "%s: chybné určení deskriptoru souboru" + +#: builtins/read.def:240 +#, c-format +msgid "%d: invalid file descriptor: %s" +msgstr "%d: neplatný deskriptor souboru: %s" + +#: builtins/read.def:478 +#, c-format +msgid "read error: %d: %s" +msgstr "chyba čtení: %d: %s" + +#: builtins/return.def:63 +msgid "can only `return' from a function or sourced script" +msgstr "„return“ lze provést jen z funkce nebo skriptu načteného přes „source“" + +#: builtins/set.def:744 +msgid "cannot simultaneously unset a function and a variable" +msgstr "funkci i proměnnou nelze ruÅ¡it současně" + +#: builtins/set.def:781 +#, c-format +msgid "%s: cannot unset" +msgstr "%s: nelze zruÅ¡it" + +#: builtins/set.def:788 +#, c-format +msgid "%s: cannot unset: readonly %s" +msgstr "%s: nelze zruÅ¡it: %s jen pro čtení" + +#: builtins/set.def:799 +#, c-format +msgid "%s: not an array variable" +msgstr "%s: není (proměnnou typu) pole" + +#: builtins/setattr.def:166 +#, c-format +msgid "%s: not a function" +msgstr "%s: není funkcí" + +#: builtins/shift.def:66 builtins/shift.def:72 +msgid "shift count" +msgstr "počet shiftů" + +#: builtins/shopt.def:227 +msgid "cannot set and unset shell options simultaneously" +msgstr "přepínač shellu nelze zároveň nastavit a zruÅ¡it" + +#: builtins/shopt.def:292 +#, c-format +msgid "%s: invalid shell option name" +msgstr "%s: chybný název přepínače shellu" + +#: builtins/source.def:115 +msgid "filename argument required" +msgstr "vyžadován argument s názvem souboru" + +#: builtins/source.def:135 +#, c-format +msgid "%s: file not found" +msgstr "%s: soubor nenalezen" + +#: builtins/suspend.def:95 +msgid "cannot suspend" +msgstr "nelze pozastavit" + +#: builtins/suspend.def:105 +msgid "cannot suspend a login shell" +msgstr "login shell nelze pozastavit" + +#: builtins/type.def:232 +#, c-format +msgid "%s is aliased to `%s'\n" +msgstr "%s je alias na „%s“\n" + +#: builtins/type.def:253 +#, c-format +msgid "%s is a shell keyword\n" +msgstr "%s je klíčové slovo shellu\n" + +#: builtins/type.def:273 +#, c-format +msgid "%s is a function\n" +msgstr "%s je funkce\n" + +#: builtins/type.def:298 +#, c-format +msgid "%s is a shell builtin\n" +msgstr "%s je součást shellu\n" + +#: builtins/type.def:319 +#, c-format +msgid "%s is %s\n" +msgstr "%s je %s\n" + +#: builtins/type.def:339 +#, c-format +msgid "%s is hashed (%s)\n" +msgstr "%s je zahashován (%s)\n" + +#: builtins/ulimit.def:352 +#, c-format +msgid "%s: invalid limit argument" +msgstr "%s: chybný argument s limitou" + +#: builtins/ulimit.def:378 +#, c-format +msgid "`%c': bad command" +msgstr "„%c“: chybný příkaz" + +#: builtins/ulimit.def:407 +#, c-format +msgid "%s: cannot get limit: %s" +msgstr "%s: limit nelze zjistit: %s" + +#: builtins/ulimit.def:445 +#, c-format +msgid "%s: cannot modify limit: %s" +msgstr "%s: limit nelze změnit: %s" + +#: builtins/umask.def:112 +msgid "octal number" +msgstr "osmičkové číslo" + +#: builtins/umask.def:226 +#, c-format +msgid "`%c': invalid symbolic mode operator" +msgstr "„%c“: chybný operátor symbolických práv" + +#: builtins/umask.def:281 +#, c-format +msgid "`%c': invalid symbolic mode character" +msgstr "„%c“: chybný znak symbolický práv " + +#: error.c:163 +#, c-format +msgid "last command: %s\n" +msgstr "poslední příkaz: %s\n" + +#: error.c:171 +msgid "Aborting..." +msgstr "Ukončuji…" + +#: error.c:258 +#, c-format +msgid "%s: warning: " +msgstr "%s: varování: " + +#: error.c:403 +msgid "unknown command error" +msgstr "chyba neznámého příkazu" + +#: error.c:404 +msgid "bad command type" +msgstr "chybný druh příkazu" + +#: error.c:405 +msgid "bad connector" +msgstr "chybný konektor" + +#: error.c:406 +msgid "bad jump" +msgstr "chybný skok" + +#: error.c:444 +#, c-format +msgid "%s: unbound variable" +msgstr "%s: nevázaná proměnná" + +#: eval.c:176 +msgid "\atimed out waiting for input: auto-logout\n" +msgstr "\ačasový limit pro čekání na vstup vyprÅ¡el: automatické odhlášení\n" + +#: execute_cmd.c:474 +#, c-format +msgid "cannot redirect standard input from /dev/null: %s" +msgstr "standardní vstup nelze přesměrovat z /dev/null: %s" + +#: execute_cmd.c:1058 +#, c-format +msgid "TIMEFORMAT: `%c': invalid format character" +msgstr "TIMEFORMAT: „%c“: chybný formátovací znak" + +#: execute_cmd.c:3629 +#, c-format +msgid "%s: restricted: cannot specify `/' in command names" +msgstr "%s: omezeno: v názvu příkazu nesmí být „/“" + +#: execute_cmd.c:3717 +#, c-format +msgid "%s: command not found" +msgstr "%s: příkaz nenalezen" + +#: execute_cmd.c:3963 +#, c-format +msgid "%s: %s: bad interpreter" +msgstr "%s: %s: chybný interpretr" + +#: execute_cmd.c:4000 +#, c-format +msgid "%s: cannot execute binary file" +msgstr "%s: binární soubor nelze spustit" + +#: execute_cmd.c:4112 +#, c-format +msgid "cannot duplicate fd %d to fd %d" +msgstr "deskriptor souboru %d nelze duplikovat na deskriptor %d" + +#: expr.c:241 +msgid "expression recursion level exceeded" +msgstr "úroveň rekurze výrazu byla překročena" + +#: expr.c:265 +msgid "recursion stack underflow" +msgstr "zásobník rekurze podtekl" + +#: expr.c:376 +msgid "syntax error in expression" +msgstr "syntaktická chyba ve výrazu" + +#: expr.c:416 +msgid "attempted assignment to non-variable" +msgstr "pokus o přiřazení do ne-proměnné" + +#: expr.c:437 expr.c:442 expr.c:752 +msgid "division by 0" +msgstr "dělení nulou" + +#: expr.c:468 +msgid "bug: bad expassign token" +msgstr "chyba: chybný expassing token" + +#: expr.c:510 +msgid "`:' expected for conditional expression" +msgstr "v podmíněném výrazu očekávána „:“" + +#: expr.c:777 +msgid "exponent less than 0" +msgstr "mocnitel menší než 0" + +#: expr.c:822 +msgid "identifier expected after pre-increment or pre-decrement" +msgstr "po přednostním zvýšení nebo snížení očekáván identifikátor" + +#: expr.c:850 +msgid "missing `)'" +msgstr "postrádám „)“" + +#: expr.c:893 expr.c:1171 +msgid "syntax error: operand expected" +msgstr "syntaktická chyba: očekáván operand" + +#: expr.c:1173 +msgid "syntax error: invalid arithmetic operator" +msgstr "syntaktická chyba: chybný aritmetický operátor" + +#: expr.c:1251 +msgid "invalid number" +msgstr "chybné číslo" + +#: expr.c:1255 +msgid "invalid arithmetic base" +msgstr "chybný aritmetický základ" + +#: expr.c:1275 +msgid "value too great for base" +msgstr "hodnot je pro základ příliÅ¡ velká" + +#: general.c:61 +msgid "getcwd: cannot access parent directories" +msgstr "getcwd: rodičovské adresáře nejsou přístupné" + +#: input.c:237 +#, c-format +msgid "cannot allocate new file descriptor for bash input from fd %d" +msgstr "nový deskriptor souboru pro vstup bashe z deskr. %d nelze alokovat" + +#: input.c:245 +#, c-format +msgid "save_bash_input: buffer already exists for new fd %d" +msgstr "save_bash_input: buffer již pro nový deskriptor %d existuje" + +#: jobs.c:876 +#, c-format +msgid "forked pid %d appears in running job %d" +msgstr "forknutý PID %d se objevil v běžící úloze %d" + +#: jobs.c:983 +#, c-format +msgid "deleting stopped job %d with process group %ld" +msgstr "mažu pozastavenou úlohu %d se skupinou procesů %ld" + +#: jobs.c:1378 +#, c-format +msgid "describe_pid: %ld: no such pid" +msgstr "describe_pid: %ld: žádný takový PID" + +#: jobs.c:2061 nojobs.c:575 +#, c-format +msgid "wait: pid %ld is not a child of this shell" +msgstr "wait: PID %ld není potomkem tohoto shellu" + +#: jobs.c:2265 +#, c-format +msgid "wait_for: No record of process %ld" +msgstr "wait_for: Žádný záznam o procesu %ld" + +#: jobs.c:2524 +#, c-format +msgid "wait_for_job: job %d is stopped" +msgstr "wait_for_job: úloha %d je pozastavena" + +#: jobs.c:2746 +#, c-format +msgid "%s: job has terminated" +msgstr "%s: úloha skončila" + +#: jobs.c:2755 +#, c-format +msgid "%s: job %d already in background" +msgstr "%s: úloha %d je již na pozadí" + +#: jobs.c:3546 +msgid "no job control in this shell" +msgstr "žádná správa úloh v tomto shellu" + +#: lib/malloc/malloc.c:298 +#, c-format +msgid "malloc: failed assertion: %s\n" +msgstr "malloc: předpoklad nesplněn: %s\n" + +#: lib/malloc/malloc.c:314 +#, c-format +msgid "" +"\r\n" +"malloc: %s:%d: assertion botched\r\n" +msgstr "" +"\r\n" +"malloc: %s:%d: zbabraný předpoklad\r\n" + +#: lib/malloc/malloc.c:799 +msgid "malloc: block on free list clobbered" +msgstr "malloc: blok v seznamu uvolněných zbit" + +#: lib/malloc/malloc.c:876 +msgid "free: called with already freed block argument" +msgstr "free: zavoláno s argumentem již uvolněného bloku" + +#: lib/malloc/malloc.c:879 +msgid "free: called with unallocated block argument" +msgstr "free: zavoláno s argumentem nenaalokovaného bloku" + +#: lib/malloc/malloc.c:898 +msgid "free: underflow detected; mh_nbytes out of range" +msgstr "free: zjiÅ¡těno podtečení, mh_nbytes mimo rozsah" + +#: lib/malloc/malloc.c:904 +msgid "free: start and end chunk sizes differ" +msgstr "free: velikosti počátečního a koncového kusu se liší" + +#: lib/malloc/malloc.c:1003 +msgid "realloc: called with unallocated block argument" +msgstr "realloc: zavoláno s argumentem nenaalokovaného bloku" + +#: lib/malloc/malloc.c:1018 +msgid "realloc: underflow detected; mh_nbytes out of range" +msgstr "realloc: zjiÅ¡těno podtečení, mh_nbytes mimo rozsah" + +#: lib/malloc/malloc.c:1024 +msgid "realloc: start and end chunk sizes differ" +msgstr "realloc: velikosti počátečního a koncového kusu se liší" + +#: lib/malloc/table.c:176 +msgid "register_alloc: alloc table is full with FIND_ALLOC?\n" +msgstr "register_alloc: tabulka alokací je plná FIND_ALLOC?\n" + +#: lib/malloc/table.c:183 +#, c-format +msgid "register_alloc: %p already in table as allocated?\n" +msgstr "register_alloc: %p již obsažen v tabulce jako alokovaný?\n" + +#: lib/malloc/table.c:219 +#, c-format +msgid "register_free: %p already in table as free?\n" +msgstr "register_free: %p již obsažen v tabulce jako volný?\n" + +#: lib/malloc/watch.c:46 +msgid "allocated" +msgstr "alokováno" + +#: lib/malloc/watch.c:48 +msgid "freed" +msgstr "uvolněno" + +#: lib/malloc/watch.c:50 +msgid "requesting resize" +msgstr "požadující velikost" + +#: lib/malloc/watch.c:52 +msgid "just resized" +msgstr "právě změněna velikost" + +#: lib/malloc/watch.c:54 +msgid "bug: unknown operation" +msgstr "chyba: neznámá operace" + +#: lib/malloc/watch.c:56 +#, c-format +msgid "malloc: watch alert: %p %s " +msgstr "malloc: výstraha sledování: %p %s" + +#: lib/sh/fmtulong.c:101 +msgid "invalid base" +msgstr "chybný základ" + +#: lib/sh/netopen.c:168 +#, c-format +msgid "%s: host unknown" +msgstr "%s: stroj není znám" + +#: lib/sh/netopen.c:175 +#, c-format +msgid "%s: invalid service" +msgstr "%s: chybná služba" + +#: lib/sh/netopen.c:306 +#, c-format +msgid "%s: bad network path specification" +msgstr "%s: chybné určení síťové cesty" + +#: lib/sh/netopen.c:346 +msgid "network operations not supported" +msgstr "síťové operace nejsou podporovány" + +#: mailcheck.c:386 +msgid "You have mail in $_" +msgstr "V $_ máte poÅ¡tu" + +#: mailcheck.c:411 +msgid "You have new mail in $_" +msgstr "V $_ máte novou poÅ¡tu" + +#: mailcheck.c:427 +#, c-format +msgid "The mail in %s has been read\n" +msgstr "PoÅ¡ta v %s je přečtená\n" + +#: make_cmd.c:322 +msgid "syntax error: arithmetic expression required" +msgstr "chyba syntaxe: vyžadován aritmetický výraz" + +#: make_cmd.c:324 +msgid "syntax error: `;' unexpected" +msgstr "chyba syntaxe: neočekávaný „;“" + +#: make_cmd.c:325 +#, c-format +msgid "syntax error: `((%s))'" +msgstr "chyba syntaxe: „((%s))“" + +#: make_cmd.c:566 +#, c-format +msgid "make_here_document: bad instruction type %d" +msgstr "make_here_document: chybný druh instrukce %d" + +#: make_cmd.c:741 +#, c-format +msgid "make_redirection: redirection instruction `%d' out of range" +msgstr "make_redirection: instrukce přesměrování „%d“ mimo rozsah" + +#: parse.y:2759 +#, c-format +msgid "unexpected EOF while looking for matching `%c'" +msgstr "neočekávaný konec souboru při hledání znaku odpovídajícímu „%c“" + +#: parse.y:3071 +msgid "unexpected EOF while looking for `]]'" +msgstr "neočekávaný konec souboru při hledání „]]“" + +# XXX: Condional means condition (adj.) probably. Can English distinguish +# between the condition (podmínkový) and the code branch (podmíněný)? Check +# for all "conditional" string occurences. +#: parse.y:3076 +#, c-format +msgid "syntax error in conditional expression: unexpected token `%s'" +msgstr "chyba syntaxe ve výrazu podmínky: neočekávaný token „%s“" + +#: parse.y:3080 +msgid "syntax error in conditional expression" +msgstr "chyba syntaxe ve výrazu podmínky" + +#: parse.y:3158 +#, c-format +msgid "unexpected token `%s', expected `)'" +msgstr "neočekávaný token „%s“, očekávána „)“" + +#: parse.y:3162 +msgid "expected `)'" +msgstr "očekávána „)“" + +#: parse.y:3190 +#, c-format +msgid "unexpected argument `%s' to conditional unary operator" +msgstr "neočekávaný argument „%s“ u podmínkového unárního operátoru" + +#: parse.y:3194 +msgid "unexpected argument to conditional unary operator" +msgstr "neočekávaný argument u podmínkového unárního operátoru" + +#: parse.y:3234 +#, c-format +msgid "unexpected token `%s', conditional binary operator expected" +msgstr "neočekávaný token „%s“, očekáván podmínkový binární operátor" + +#: parse.y:3238 +msgid "conditional binary operator expected" +msgstr "očekáván podmínkový binární operátor" + +#: parse.y:3255 +#, c-format +msgid "unexpected argument `%s' to conditional binary operator" +msgstr "neočekávaný argument „%s„ u podmínkového binárního operátoru" + +#: parse.y:3259 +msgid "unexpected argument to conditional binary operator" +msgstr "neočekávaný argument u podmínkového binárního operátoru" + +#: parse.y:3270 +#, c-format +msgid "unexpected token `%c' in conditional command" +msgstr "neočekávaný token „%c“ v podmínkovém příkazu" + +#: parse.y:3273 +#, c-format +msgid "unexpected token `%s' in conditional command" +msgstr "neočekávaný token „%s“ v podmínkovém příkazu" + +#: parse.y:3277 +#, c-format +msgid "unexpected token %d in conditional command" +msgstr "neočekávaný token %d v podmínkovém příkazu" + +#: parse.y:4523 +#, c-format +msgid "syntax error near unexpected token `%s'" +msgstr "chyba syntaxe poblíž neočekávaného tokenu „%s“" + +#: parse.y:4541 +#, c-format +msgid "syntax error near `%s'" +msgstr "chyba syntaxe poblíž „%s“" + +#: parse.y:4551 +msgid "syntax error: unexpected end of file" +msgstr "chyba syntaxe: nenadálý konec souboru" + +#: parse.y:4551 +msgid "syntax error" +msgstr "chyba syntaxe" + +#: parse.y:4613 +#, c-format +msgid "Use \"%s\" to leave the shell.\n" +msgstr "Shell lze ukončit příkazem „%s“.\n" + +#: parse.y:4775 +msgid "unexpected EOF while looking for matching `)'" +msgstr "nenadálý konec souboru při hledání odpovídající „)“" + +#: pcomplete.c:1002 +#, c-format +msgid "completion: function `%s' not found" +msgstr "doplňování: funkce „%s“ nenalezena" + +#: pcomplib.c:179 +#, c-format +msgid "progcomp_insert: %s: NULL COMPSPEC" +msgstr "progcomp_insert: %s: NULLOVÝ COMPSPEC" + +#: print_cmd.c:264 +#, c-format +msgid "print_command: bad connector `%d'" +msgstr "print_command: chybná propojka „%d“" + +#: print_cmd.c:1236 +#, c-format +msgid "cprintf: `%c': invalid format character" +msgstr "cprintf: „%c“: chybný formátovací znak" + +#: redir.c:99 +msgid "file descriptor out of range" +msgstr "deskriptor souboru mimo rozsah" + +#: redir.c:141 +#, c-format +msgid "%s: ambiguous redirect" +msgstr "%s: nejednoznačné přesměrování" + +#: redir.c:145 +#, c-format +msgid "%s: cannot overwrite existing file" +msgstr "%s: existující soubor nelze přepsat" + +#: redir.c:150 +#, c-format +msgid "%s: restricted: cannot redirect output" +msgstr "%s: omezeno: výstup nelze přesměrovat" + +#: redir.c:155 +#, c-format +msgid "cannot create temp file for here document: %s" +msgstr "pro „here“ dokument nelze vytvořit dočasný soubor: %s" + +#: redir.c:509 +msgid "/dev/(tcp|udp)/host/port not supported without networking" +msgstr "/dev/(tcp|udp)/host/port není bez síťování podporováno" + +#: redir.c:965 +msgid "redirection error: cannot duplicate fd" +msgstr "chyba přesměrování: deskriptor souboru nelze duplikovat" + +#: shell.c:309 +msgid "could not find /tmp, please create!" +msgstr "nelze nalézt /tmp, vytvořte jej, prosím!" + +#: shell.c:313 +msgid "/tmp must be a valid directory name" +msgstr "/tmp musí být platným názvem pro adresář" + +#: shell.c:850 +#, c-format +msgid "%c%c: invalid option" +msgstr "%c%c: chybný přepínač" + +#: shell.c:1600 +msgid "I have no name!" +msgstr "Nemám žádné jméno!" + +#: shell.c:1735 +#, c-format +msgid "" +"Usage:\t%s [GNU long option] [option] ...\n" +"\t%s [GNU long option] [option] script-file ...\n" +msgstr "" +"Použití:\t%s [Dlouhý GNU přepínač] [přepínač]…\n" +"\t%s [Dlouhý GNU přepínač] [přepínač] skriptový_soubor…\n" + +#: shell.c:1737 +msgid "GNU long options:\n" +msgstr "Dlouhé GNU přepínače:\n" + +#: shell.c:1741 +msgid "Shell options:\n" +msgstr "Přepínače shellu:\n" + +#: shell.c:1742 +msgid "\t-irsD or -c command or -O shopt_option\t\t(invocation only)\n" +msgstr "\t-irsD nebo -c příkaz nebo -O shopt_přepínač\t(pouze při vyvolání)\n" + +#: shell.c:1757 +#, c-format +msgid "\t-%s or -o option\n" +msgstr "\t-%s nebo -o přepínač\n" + +#: shell.c:1763 +#, c-format +msgid "Type `%s -c \"help set\"' for more information about shell options.\n" +msgstr "Podrobnosti o přepínačích shellu získáte tím, že napíšete „%s -c \"help set\"“.\n" + +#: shell.c:1764 +#, c-format +msgid "Type `%s -c help' for more information about shell builtin commands.\n" +msgstr "" +"Podrobnosti o příkazech vestavěných do shellu získáte tím, že\n" +"napiÅ¡te „%s -c help“.\n" + +#: shell.c:1765 +msgid "Use the `bashbug' command to report bugs.\n" +msgstr "Chyby nahlásíte příkazem „bashbug“.\n" + +#: sig.c:557 +#, c-format +msgid "sigprocmask: %d: invalid operation" +msgstr "sigprocmask: %d: neplatná operace" + +#: subst.c:1160 +#, c-format +msgid "bad substitution: no closing `%s' in %s" +msgstr "chybná substituce: v %2$s chybí uzavírací „%1$s“" + +#: subst.c:2328 +#, c-format +msgid "%s: cannot assign list to array member" +msgstr "%s: seznam nelze přiřadit do prvku pole" + +#: subst.c:4265 subst.c:4281 +msgid "cannot make pipe for process substitution" +msgstr "nelze vyrobit rouru za účelem substituce procesu" + +#: subst.c:4312 +msgid "cannot make child for process substitution" +msgstr "nelze vytvořit potomka za účelem substituce procesu" + +#: subst.c:4357 +#, c-format +msgid "cannot open named pipe %s for reading" +msgstr "pojmenovanou rouru %s nelze otevřít pro čtení" + +#: subst.c:4359 +#, c-format +msgid "cannot open named pipe %s for writing" +msgstr "pojmenovanou rouru %s nelze otevřít pro zápis" + +#: subst.c:4367 +#, c-format +msgid "cannout reset nodelay mode for fd %d" +msgstr "na deskriptoru %d nelze resetovat režim nodelay" + +#: subst.c:4377 +#, c-format +msgid "cannot duplicate named pipe %s as fd %d" +msgstr "pojmenovanou rouru %s nelze zdvojit jako deskriptor %d" + +#: subst.c:4552 +msgid "cannot make pipe for command substitution" +msgstr "nelze vytvořit rouru pro substituci příkazu" + +#: subst.c:4588 +msgid "cannot make child for command substitution" +msgstr "nelze vytvořit potomka pro substituci příkazu" + +#: subst.c:4605 +msgid "command_substitute: cannot duplicate pipe as fd 1" +msgstr "command_substitute: rouru nelze zdvojit jako deskriptor 1" + +#: subst.c:5068 +#, c-format +msgid "%s: parameter null or not set" +msgstr "%s: parametr null nebo nenastaven" + +#: subst.c:5342 +#, c-format +msgid "%s: substring expression < 0" +msgstr "%s: výraz podřetězce < 0" + +#: subst.c:6179 +#, c-format +msgid "%s: bad substitution" +msgstr "%s: chybná substituce" + +#: subst.c:6255 +#, c-format +msgid "$%s: cannot assign in this way" +msgstr "$%s: takto nelze přiřazovat" + +#: subst.c:7826 +#, c-format +msgid "no match: %s" +msgstr "žádná shoda: %s" + +#: test.c:145 +msgid "argument expected" +msgstr "očekáván argument" + +#: test.c:154 +#, c-format +msgid "%s: integer expression expected" +msgstr "%s: očekáván celočíselný výraz" + +#: test.c:262 +msgid "`)' expected" +msgstr "očekávána „)“" + +#: test.c:264 +#, c-format +msgid "`)' expected, found %s" +msgstr "očekávána „)“, nalezeno %s" + +#: test.c:279 test.c:688 test.c:691 +#, c-format +msgid "%s: unary operator expected" +msgstr "%s: očekáván unární operátor" + +#: test.c:444 test.c:731 +#, c-format +msgid "%s: binary operator expected" +msgstr "%s: očekáván binární operátor" + +#: test.c:806 +msgid "missing `]'" +msgstr "postrádám „]“" + +#: trap.c:200 +msgid "invalid signal number" +msgstr "neplatné číslo signálu" + +#: trap.c:315 +#, c-format +msgid "run_pending_traps: bad value in trap_list[%d]: %p" +msgstr "run_pending_traps: chybná hodnota v trap_list[%d]: %p" + +#: trap.c:319 +#, c-format +msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" +msgstr "run_pending_traps: obsluha signálu je SIG_DFL, přeposílám %d (%s) sobě" + +#: trap.c:355 +#, c-format +msgid "trap_handler: bad signal %d" +msgstr "trap_handler: chybný signál %d" + +#: variables.c:334 +#, c-format +msgid "error importing function definition for `%s'" +msgstr "chyba při importu definice „%s“" + +#: variables.c:711 +#, c-format +msgid "shell level (%d) too high, resetting to 1" +msgstr "úroveň shellu (%d) příliÅ¡ vysoká, resetuji na 1" + +#: variables.c:1670 +msgid "make_local_variable: no function context at current scope" +msgstr "make_local_variable: žádný kontext funkce v aktuálním rozsahu" + +#: variables.c:2813 +msgid "all_local_variables: no function context at current scope" +msgstr "all_local_variables: žádný kontext funkce v aktuálním rozsahu" + +#: variables.c:3030 variables.c:3039 +#, c-format +msgid "invalid character %d in exportstr for %s" +msgstr "neplatný znak %d v exportstr pro %s" + +#: variables.c:3045 +#, c-format +msgid "no `=' in exportstr for %s" +msgstr "v exportstr pro %s chybí „=“" + +#: variables.c:3472 +msgid "pop_var_context: head of shell_variables not a function context" +msgstr "pop_var_context: hlava shell_variables není kontextem funkce" + +#: variables.c:3485 +msgid "pop_var_context: no global_variables context" +msgstr "pop_var_context: chybí kontext global_variables" + +#: variables.c:3557 +msgid "pop_scope: head of shell_variables not a temporary environment scope" +msgstr "pop_scope: hlava shell_variables není dočasným rozsahem prostředí" + +#: version.c:82 +msgid "Copyright (C) 2006 Free Software Foundation, Inc.\n" +msgstr "Copyright © 2006 Free Software Foundation, Inc.\n" + +#: xmalloc.c:93 +#, c-format +msgid "xmalloc: cannot allocate %lu bytes (%lu bytes allocated)" +msgstr "xmalloc: nelze alokovat %'lu bajtů (%'lu bajtů alokováno)" + +#: xmalloc.c:95 +#, c-format +msgid "xmalloc: cannot allocate %lu bytes" +msgstr "xmalloc: nezle alokovat %'lu bajtů" + +#: xmalloc.c:115 +#, c-format +msgid "xrealloc: cannot reallocate %lu bytes (%lu bytes allocated)" +msgstr "xrealloc: nelze přealokovat %'lu bajtů (%'lu bajtů alokováno)" + +#: xmalloc.c:117 +#, c-format +msgid "xrealloc: cannot allocate %lu bytes" +msgstr "xrealloc: nelze alokovat %'lu bajtů" + +#: xmalloc.c:151 +#, c-format +msgid "xmalloc: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)" +msgstr "xmalloc: %s:%d: nelze alokovat %'lu bajtů (%'lu bajtů alokováno)" + +#: xmalloc.c:153 +#, c-format +msgid "xmalloc: %s:%d: cannot allocate %lu bytes" +msgstr "xmalloc: %s:%d: nelze alokovat %'lu bajtů" + +#: xmalloc.c:175 +#, c-format +msgid "xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)" +msgstr "xrealloc: %s:%d: nelze přealokovat %'lu bajtů (%'lu bajtů alokováno)" + +#: xmalloc.c:177 +#, c-format +msgid "xrealloc: %s:%d: cannot allocate %lu bytes" +msgstr "xrealloc: %s:%d: nelze alokovat %'lu bajtů" + +#: builtins.c:244 +msgid "" +"`alias' with no arguments or with the -p option prints the list\n" +" of aliases in the form alias NAME=VALUE on standard output.\n" +" Otherwise, an alias is defined for each NAME whose VALUE is given.\n" +" A trailing space in VALUE causes the next word to be checked for\n" +" alias substitution when the alias is expanded. Alias returns\n" +" true unless a NAME is given for which no alias has been defined." +msgstr "" +"„alias“ bez argumentů nebo s přepínačem -p vytiskne na standardní výstup\n" +" seznam aliasů ve formátu NÁZEV=HODNOTA. Jinak bude definován alias pro\n" +" vÅ¡echny NÁZVY, které mají zadanou HODNOTU. Závěrečná mezera v HODNOTĚ\n" +" způsobí, že při expanzi bude následující slovo zkontrolováno na substituci\n" +" aliasů. Alias vrátí pravdu, pokud nebyl zadán NÁZEV, pro který není\n" +" žádný alias definován." + +#: builtins.c:257 +msgid "" +"Remove NAMEs from the list of defined aliases. If the -a option is given,\n" +" then remove all alias definitions." +msgstr "" +"Odstraní NÁZEV ze seznamů definovaných aliasů. Je-li zadán přepínač -a,\n" +" odstraní vÅ¡echny definice aliasů." + +#: builtins.c:266 +msgid "" +"Bind a key sequence to a Readline function or a macro, or set\n" +" a Readline variable. The non-option argument syntax is equivalent\n" +" to that found in ~/.inputrc, but must be passed as a single argument:\n" +" bind '\"\\C-x\\C-r\": re-read-init-file'.\n" +" bind accepts the following 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" +" 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" +" -r keyseq Remove the binding for KEYSEQ.\n" +" -x keyseq:shell-command\tCause SHELL-COMMAND to be executed when\n" +" \t\t\t\tKEYSEQ is entered.\n" +" -f filename Read key bindings from FILENAME.\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" +" -V List variable names and values\n" +" -v List variable names and values in a form that can\n" +" be 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" +" in a form that can be reused as input." +msgstr "" +"Naváže posloupnost kláves na Readline funkci nebo makro nebo nastaví\n" +" Readline proměnnou. Syntaxe nepřepínačových argumentů je shodná se\n" +" syntaxí ~/.inputrc, ale musí být zadána jako jediný argument:\n" +" bind '\"\\C-x\\C-r\": re-read-init-file'.\n" +" bind přijímá následujíc přepínače:\n" +" -m klávmapa Použije „klávmapu“ jako klávesovou mapu pro trvání\n" +" tohoto příkazu. Možné klávesové mapy jsou emacs,\n" +" emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n" +" vi-command a vi-insert.\n" +" -l Vypíše seznam názvů funkcí.\n" +" -P Vypíše seznam názvů funkcí klávesových vazeb.\n" +" -p Vypíše seznam funkcí a klávesových vazeb ve formátu,\n" +" který lze použít jako vstup.\n" +" -r klávposl Odstraní vazbu na KLÁVPOSL.\n" +" -x klávposl:příkaz-shellu\n" +" Způsobí, že bude vykonán PŘÍKAZ-SHELLU, když bude\n" +" zadána KLÁVPOSL.\n" +" -f soubor Načte vazby kláves ze SOUBORU.\n" +" -q název-funkce Dotáže se, které klávesy vyvolají zadanou funkci.\n" +" -u název-funkce Zruší vÅ¡echny vazby na klávesy, které jsou napojeny\n" +" na zadanou funkci.\n" +" -V Vypíše seznam názvů proměnných a hodnot.\n" +" -v Vypíše seznam názvů funkcí a hodnot ve formát,\n" +" který lze použít jako vstup.\n" +" -S Vypíše seznam posloupností kláves,\n" +" které vyvolávají makra, a jejich hodnoty.\n" +" -s Vypíše seznam posloupností kláves,\n" +" která vyvolávají makra, a jejich hodnoty ve formátu,\n" +" který lze použít jako vstup." + +#: builtins.c:297 +msgid "" +"Exit from within a FOR, WHILE or UNTIL loop. If N is specified,\n" +" break N levels." +msgstr "Ukončí smyčku FOR, WHILE nebo UNTIL. Je-li zadáno N, ukončí N úrovní." + +#: builtins.c:304 +msgid "" +"Resume the next iteration of the enclosing FOR, WHILE or UNTIL loop.\n" +" If N is specified, resume at the N-th enclosing loop." +msgstr "" +"Přejde k další iteraci obklopující smyčky FOR, WHILE nebo UNTIL.\n" +" Je-li zadáno N, bude tak učiněno v N. obklopující smyčce." + +#: builtins.c:311 +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 "" +"Spustí vestavěný příkaz shellu. Toto se hodí, přejete-li si přejmenovat\n" +" vestavěný příkaz na funkci, avÅ¡ak funkcionalitu vestavěného příkazu\n" +" potřebujete v téže funkci." + +#: builtins.c:320 +msgid "" +"Returns the context of the current subroutine call.\n" +" \n" +" Without EXPR, returns \"$line $filename\". With EXPR,\n" +" returns \"$line $subroutine $filename\"; this extra information\n" +" can be used to provide a stack trace.\n" +" \n" +" The value of EXPR indicates how many call frames to go back before the\n" +" current one; the top frame is frame 0." +msgstr "" +"Vrátí kontext aktuálního podprogramu.\n" +" \n" +" Bez VÝRAZU vrátí „$řádek $název_souboru“. S VÝRAZEM vrátí\n" +" „$řádek $podprogram $název_souboru“; tuto zvláštní informaci lze\n" +" využít pro výpis zásobníku volání,\n" +" \n" +" Hodnota VÝRAZU určuje, kolik rámců volání se má projít od toho\n" +" současného; vrcholový rámec má číslo 0." + +#: builtins.c:334 +msgid "" +"Change the current directory to DIR. The variable $HOME is the\n" +" default DIR. The variable CDPATH defines the search path for\n" +" the directory containing DIR. Alternative directory names in CDPATH\n" +" are separated by a colon (:). A null directory name is the same as\n" +" the current directory, i.e. `.'. If DIR begins with a slash (/),\n" +" then CDPATH is not used. If the directory is not found, and the\n" +" shell option `cdable_vars' is set, then try the word as a variable\n" +" name. If that variable has a value, then cd to the value of that\n" +" variable. The -P option says to use the physical directory structure\n" +" instead of following symbolic links; the -L option forces symbolic links\n" +" to be followed." +msgstr "" +"Změní aktuální adresář na ADR. Implicitní ADR je proměnná $HOME.\n" +" Proměnná CDPATH definuje vyhledávací cestu pro adresář obsahující ADR.\n" +" Názvy náhradních adresářů v CDPATH se oddělují dvojtečkou (:). Prázdný\n" +" název adresáře je stejný jako aktuální adresář, tj. „.“. Začíná-li ADR\n" +" na lomítko (/), nebude CDPATH použita. Nebude-li adresář nalezen a\n" +" přepínač shellu „cdable_vars“ bude je nastaven, pak se dané slovo zkusí\n" +" jakožto název proměnné. Má-li taková proměnná hodnotu, pak se provede cd\n" +" do hodnoty této proměnné. Přepínač -P nařizuje použít fyzickou\n" +" adresářovou strukturu namísto následováni symbolických odkazů;\n" +" přepínač -L vynutí následování symbolických odkazů." + +#: builtins.c:350 +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 "" +"Vypíše současný pracovní adresář. S přepínačem -P vytiskne pwd fyzický\n" +" adresář prostý vÅ¡ech symbolický odkazů; přepínač -L přinutí pwd\n" +" následovat symbolické odkazy." + +#: builtins.c:358 +msgid "No effect; the command does nothing. A zero exit code is returned." +msgstr "Žádný účinek, tento příkaz nic nedělá. Skončí s návratovým kódem nula." + +#: builtins.c:364 +msgid "Return a successful result." +msgstr "Vrací výsledek úspěchu." + +#: builtins.c:370 +msgid "Return an unsuccessful result." +msgstr "Vrací výsledek neúspěchu." + +#: builtins.c:376 +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 "" +"Spustí PŘÍKAZ s ARGUMENTY ignoruje funkce shellu. Máte-li shellovou\n" +" funkci pojmenovanou „ls“, a chcete-li zavolat příkaz „ls“, použijte\n" +" „command ls“. Je-li zadán přepínač -p, bude pro PATH použita implicitní\n" +" hodnota, která zaručuje, že budou nalezeny vÅ¡echny standardní nástroje.\n" +" Je-li zadán přepínač -V nebo -v, bude vytiÅ¡těn řetězec popisující PŘÍKAZ.\n" +" Přepínač -V produkuje podrobnější popis." + +#: builtins.c:387 +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 "" +"Deklaruje proměnné a/nebo jim nastaví atributy. Nejsou-li zadány NÁZVY,\n" +" tak místo toho zobrazí hodnoty proměnných. Přepínač -p zobrazí atributy\n" +" a hodnoty pro každý NÁZEV.\n" +" \n" +" Příznaky jsou:\n" +" \n" +" -a\tučiní NÁZVY poli (je-li podporováno)\n" +" -f\tvybírá pouze mezi názvy funkcí\n" +" -F\tzobrazí názvy funkcí (a číslo řádku a název zdrojového souboru,\n" +" \tje-li zapnuto ladění) bez definic\n" +" -i\tpřiřadí NÁZVÅ®M atribut „integer“ (číslo)\n" +" -r\tučiní NÁZVY jen pro čtení\n" +" -t\tpřiřadí NÁZVÅ®M atribut „trace“ (sledování)\n" +" -x\tvyexportuje NÁZVY\n" +" \n" +" Proměnné s atributem integer jsou aritmeticky vyhodnoceny (vizte „let“),\n" +" když je do proměnné přiřazováno.\n" +" \n" +" Při zobrazování hodnot proměnných -f zobrazí názvy a definice funkcí.\n" +" Přepínač -F omezí výpis jen na názvy funkcí.\n" +" \n" +" Pomocí „+“ namísto „-“ daný atribut odeberete. Je-li použito uvnitř\n" +" funkce, učiní NÁZVY lokální stejně jako příkaz „local“." + +#: builtins.c:416 +msgid "Obsolete. See `declare'." +msgstr "Zastaralé. Vizte „declare“." + +#: builtins.c:422 +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 "" +"Vytvoří lokální proměnnou pojmenovanou NÁZEV a přiřadí jí HODNOTU.\n" +" LOCAL smí být použito jen uvnitř funkcí. Učiní proměnnou NÁZEV viditelnou\n" +" jen v dané funkci a jejích potomcích." + +#: builtins.c:431 +msgid "" +"Output the ARGs. If -n is specified, the trailing newline is\n" +" suppressed. If the -e option is given, interpretation of the\n" +" following backslash-escaped characters is turned on:\n" +" \t\\a\talert (bell)\n" +" \t\\b\tbackspace\n" +" \t\\c\tsuppress trailing newline\n" +" \t\\E\tescape character\n" +" \t\\f\tform feed\n" +" \t\\n\tnew line\n" +" \t\\r\tcarriage return\n" +" \t\\t\thorizontal tab\n" +" \t\\v\tvertical tab\n" +" \t\\\\\tbackslash\n" +" \t\\0nnn\tthe character whose ASCII code is NNN (octal). NNN can be\n" +" \t\t0 to 3 octal digits\n" +" \n" +" You can explicitly turn off the interpretation of the above characters\n" +" with the -E option." +msgstr "" +"Vypíše své ARGUMENTY. Je-li zadáno -n, potlačí závěrečný konec řádku.\n" +" Je-li zadán přepínač -e, interpretování následujících znaků uvozených\n" +" zpětným lomítkem bude zapnuto:\n" +" \t\\a\tpoplach (zvonek)\n" +" \t\\b\tbackspace\n" +" \t\\c\tpotlačí závěrečný konec řádku\n" +" \t\\E\tznak escapu\n" +" \t\\f\tposun formuláře (form feed)\n" +" \t\\n\tnový řádek\n" +" \t\\r\tnávrat vozíku\n" +" \t\\t\tvodorovný tabulátor\n" +" \t\\v\tsvislý tabulátor\n" +" \t\\\\\tzpětné lomítko\n" +" \t\\0nnn\tznak, jehož ASCII kód je NNN (osmičkově). NNN smí být\n" +" \t\t0 až 3 osmičkové číslice\n" +" \n" +" Interpretování výše uvedených znaků můžete explicitně vypnout\n" +" přepínačem -E." + +#: builtins.c:456 +msgid "Output the ARGs. If -n is specified, the trailing newline is suppressed." +msgstr "Vypíše ARGUMENTY. Je-li zadáni -n, závěrečný konec řádku bude potlačen." + +#: builtins.c:463 +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 "" +"Povolí nebo zakáže vestavěný příkaz shellu. To vám umožňuje použít\n" +" příkaz z disku, který má stejné jméno jako vestavěný příkaz shellu, aniž\n" +" byste museli zadávat celou cestu. Je-li použito -n, NÁZVY se stanou\n" +" zakázanými, jinak budou povoleny. Například „test“ z PATH namísto verze\n" +" vestavěné do shellu lze používat tak, že napíšete „enable -n test“. Na\n" +" systémech podporujících dynamické zavádění přepínač -f může být použit\n" +" pro zavedení nových vestavěných příkazů ze sdíleného objektu NÁZEV_SOUBORU.\n" +" Přepínač -d odstraní vestavěný příkaz zavedený přes -f. Není-li zadán\n" +" žádný přepínač nebo je-li zadán přepínač -p, bude vypsán seznam vestavěných\n" +" příkazů. Přepínač -a znamená, že budou vypsány vÅ¡echny vestavěné příkazy a\n" +" u každého bude vyznačeno, zda je povolen nebo zakázán. Přepínač -s omezí\n" +" výpis na příkazy uvedené v POSIX.2. Přepínač -n zobrazí seznam vÅ¡ech\n" +" zakázaných vestavěných příkazů." + +#: builtins.c:481 +msgid "Read ARGs as input to the shell and execute the resulting command(s)." +msgstr "Načte ARGUMENTY jako vstup shellu a výsledný příkaz(y) provede." + +#: builtins.c:487 +msgid "" +"Getopts is used by shell procedures to parse positional parameters.\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." +msgstr "" +"Getopts se používá v shellových procedurách na rozebrání pozičních\n" +" parametrů.\n" +" \n" +" OPTSTRING obsahuje písmena přepínačů, které mají být rozeznány, Je-li\n" +" písmeno následováno dvojtečkou, po přepínači se očekává argument, který\n" +" by měl být od přepínače oddělen bílým místem.\n" +" \n" +" Pokaždé když je getopts zavolán, je následující přepínač umístěn do\n" +" proměnné $name (proměnná je inicializována, neexistuje-li) a pořadí\n" +" dalšího argumentu, který čeká na zpracování, do proměnné shellu OPTIND.\n" +" OPTIND je inicializována na 1 vždy, když je zavolán shell nebo shellový\n" +" skript. Pokud přepínač vyžaduje argument, getopts umístí tento argument\n" +" do proměnné shellu OPTARG.\n" +" \n" +" getopts hlásí chyby jedním ze dvou způsobů. Pokud prvním znakem OPTSTRING\n" +" je dvojtečka, getopts hlásí chyby tichým způsobem. V tomto režimu, žádné\n" +" chybové zprávy nejsou vypisovány. Když se narazí na neplatný přepínač,\n" +" getopts umístí tento znak do OPTARG. Pokud není nalezen povinný argument,\n" +" getopts umístí „:“ do NAME a OPTARG nastaví na znak nalezeného přepínače.\n" +" Pokud getopts nepracuje v tomto tichém režimu a je nalezen neplatný\n" +" přepínač, getopts umístí „?“ do NAME a zruší OPTARG. Když nenajde povinný\n" +" argument, je do NAME zapsán „?“, OPTARG zruÅ¡en a vytiÅ¡těna diagnostická\n" +" zpráva.\n" +" \n" +" Pokud proměnná shellu OPTERR má hodnotu 0, getopts vypne vypisování\n" +" chybových zpráv dokonce, i když první znak OPTSTRING není dvojtečka.\n" +" Implicitní hodnota OPTERR je 1. \n" +" Normálně getopts zpracovává poziční parametry ($0–$9), avÅ¡ak následuje-li\n" +" getopts více argumentů, budou rozebrány tyto namísto pozičních." + +#: builtins.c:522 +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 "" +"Provede SOUBOR, přičemž nahradí tento shell zadaným programem.\n" +" Není-li SOUBOR zadán, přesměrování zapůsobí v tomto shellu. Je-li prvním\n" +" argumentem „-l“, bude do nultého argumentu SOUBORU umístěna pomlčka tak,\n" +" jak to dělá login. Je-li zadán přepínač „-c“, bude SOUBOR spuÅ¡těn\n" +" s prázdným prostředím. Přepínač „-a“ znamená, že argv[0] prováděného\n" +" procesu bude nastaven na NÁZEV. Pokud soubor nemůže být proveden a shell\n" +" není interaktivní, pak shell bude ukončen, pokud přepínač shellu\n" +" „execfail“ není nastaven." + +#: builtins.c:535 +msgid "" +"Exit the shell with a status of N. If N is omitted, the exit status\n" +" is that of the last command executed." +msgstr "" +"Ukončí shell se stavem N. Bez N bude návratový kód roven kódu\n" +" posledně prováděného příkazu" + +#: builtins.c:542 +msgid "Logout of a login shell." +msgstr "Odhlásí z přihlaÅ¡ovacího (login) shellu." + +#: builtins.c:549 +msgid "" +"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" +" -e ENAME selects which editor to use. Default is FCEDIT, then EDITOR,\n" +" then vi.\n" +" \n" +" -l means list lines instead of editing.\n" +" -n means no line numbers listed.\n" +" -r means reverse the order of the lines (making it newest listed first).\n" +" \n" +" With the `fc -s [pat=rep ...] [command]' format, the command is\n" +" re-executed after the substitution OLD=NEW is performed.\n" +" \n" +" A useful alias to use with this is r='fc -s', so that typing `r cc'\n" +" runs the last command beginning with `cc' and typing `r' re-executes\n" +" the last command." +msgstr "" +"fc se používá na vypsání, úpravu a znovu provedení příkazů ze seznamu\n" +" historie.\n" +" PRVNÍ a POSLEDNÍ mohou být čísla určující rozsah nebo PRVNÍ může být\n" +" řetězec, což určuje nejnovější příkaz začínající na zadaný řetězec.\n" +" \n" +" -e ENAME vybere editor. Implicitní je FCEDIT, pak EDITOR, pak vi.\n" +" \n" +" -l požaduje vypsaní namísto upravování.\n" +" -n vypne číslování řádků.\n" +" -r obrátí pořadí řádků (nejnovější budou první).\n" +" \n" +" Forma příkazu „fc -s [VZOR=NÁHRADA… [PŘÍKAZ]“ znamená, že příkaz bude\n" +" po nahrazení STARÝ=NOVÝ znovu vykonán.\n" +" \n" +" Užitečný alias je r='fc -s', takže napsání „r cc“ spustí poslední příkaz\n" +" začínající na „cc“ a zadání „r“ znovu spustí poslední příkaz." + +#: builtins.c:574 +msgid "" +"Place JOB_SPEC in the foreground, and make it the current job. If\n" +" JOB_SPEC is not present, the shell's notion of the current job is\n" +" used." +msgstr "" +"Přepne ÚLOHU na popředí a učiní ji aktuální úlohou. Není-li ÚLOHA\n" +" zadána, použije se úloha, o které si shell myslí, že aktuální." + +#: builtins.c:584 +msgid "" +"Place each JOB_SPEC in the background, as if it had been started with\n" +" `&'. If JOB_SPEC is not present, the shell's notion of the current\n" +" job is used." +msgstr "" +"Přepne každou ÚLOHU na pozadí, jako by byla spuÅ¡těna s „&“. Ne-li\n" +" ÚLOHA uvedena, použije se úloha, o které si shell myslí, že je aktuální." + +#: builtins.c:593 +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 "" +"Pro každý NÁZEV je určena plná cesta k příkazu a je zapamatována.\n" +" Za použití přepínače -p se vezme NÁZEV_CESTY za plnou cestu k NÁZVU a\n" +" žádné vyhledávání cesty se nekoná. Přepínač -r způsobí, že shell zapomene\n" +" vÅ¡echny zapamatovaná umístění. Přepínač -d způsobí, že shell zapomene\n" +" zapamatovaná umístění každého NÁZVU. Je-li zadán přepínač -t, bude vypsána\n" +" plná cesta ke každému NÁZVU. Je-li s -t zadáno více NÁZVÅ®, NÁZEV bude\n" +" vypsán před uloženou celou cestou. Přepínač -l vytvoří takový výstup,\n" +" který lze opět použít jako vstup. Nejsou-li zadány žádné argumenty,\n" +" budou vypsány informace o zapamatovaných příkazech." + +#: builtins.c:609 +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 "" +"Zobrazí užitečné informace o vestavěných příkazech. Je-li zadán VZOREK,\n" +" vrátí podrobnou nápovědu ke vÅ¡em příkazům odpovídajícím VZORKU, jinak je\n" +" vytiÅ¡těn seznam vestavěných příkazů. Přepínač -s omezí výstup o každém\n" +" vestavěném příkazu odpovídajícího VZORKU na stručný popis použití." + +#: builtins.c:621 +msgid "" +"Display the history list with line numbers. Lines listed with\n" +" with a `*' have been modified. Argument of N says to list only\n" +" the last N lines. The `-c' option causes the history list to be\n" +" cleared by deleting all of the entries. The `-d' option deletes\n" +" the history entry at offset OFFSET. The `-w' option writes out the\n" +" current history to the history file; `-r' means to read the file and\n" +" append the contents to the history list instead. `-a' means\n" +" to append history lines from this session to the history file.\n" +" Argument `-n' means to read all history lines not already read\n" +" from the history file and append them to the history list.\n" +" \n" +" If FILENAME is given, then that is used as the history file else\n" +" if $HISTFILE has a value, that is used, else ~/.bash_history.\n" +" If the -s option is supplied, the non-option ARGs are appended to\n" +" the history list as a single entry. The -p option means to perform\n" +" history expansion on each ARG and display the result, without storing\n" +" anything in the history list.\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." +msgstr "" +"Zobrazí seznam historie s očíslovanými řádky. Řádky vypsané s „*“ byly\n" +" změněny. Argument N říká, že se vypíše pouze posledních N řádek.\n" +" Přepínač „-c“ způsobí, že seznam historie bude vyčiÅ¡těn smazáním vÅ¡ech\n" +" položek. Přepínač „-d“ smaže ze seznamu historie položku na pozici POZICE.\n" +" Přepínač „-w“ zapíše současnou historii do souboru historie, „-r“ znamená,\n" +" že se soubor načte a obsah se připojí do seznamu historie. „-a“ znamená,\n" +" že řádky historie z této relace se připojí do souboru historie. Argument\n" +" „-n“ znamená, že vÅ¡echny řádky historie, které jeÅ¡tě nebyly načteny,\n" +" načtou ze souboru historie a připojí se do seznamu historie.\n" +" \n" +" Je-li zadán JMÉNO_SOUBORU, tak ten je použit jako soubor historie. Jinak\n" +" pokud $HISTFILE má hodnotu, tato je použita, jinak ~/.bash_history. Je-li\n" +" zadán přepínač „-s“, nepřepínačové ARGUMENTY budou připojeny do seznamu\n" +" historie jako jedna položka. Přepínač „-p“ značí, že se expanduje historie\n" +" na každém ARGUMENTU a výsledek se zobrazí, aniž by cokoliv uložilo do\n" +" seznamu historie.\n" +" \n" +" Je-li proměnná $HISTTIMEFORMAT nastavena a není-li prázdná, její hodnota\n" +" se použije jako formátovací řetězec pro strftime(3) při výpisu časových\n" +" razítek spojených s každou položkou historie. Jinak žádná časová razítka\n" +" nebudou vypisována." + +#: builtins.c:649 +msgid "" +"Lists the active jobs. The -l option lists process id's in addition\n" +" to the normal information; the -p option lists process id's only.\n" +" If -n is given, only processes that have changed status since the last\n" +" notification are printed. JOBSPEC restricts output to that job. The\n" +" -r and -s options restrict output to running and stopped jobs only,\n" +" respectively. Without options, the status of all active jobs is\n" +" printed. If -x is given, COMMAND is run after all job specifications\n" +" that appear in ARGS have been replaced with the process ID of that job's\n" +" process group leader." +msgstr "" +"Vypíše aktivní úlohy. Přepínač -l vypíše navíc ID procesů, přepínač -p\n" +" vypíše pouze ID procesů. Je-li zadáno -n, pouze procesy, které od minulého\n" +" oznámení změnily stav, budou vypsány. ÚLOHA omezuje výstup na danou úlohu.\n" +" Přepínače -r a -s zužují výstup jen na běžící, respektive pozastavené\n" +" úlohy. Bez uvedení přepínačů bude vypsán stav vÅ¡ech aktivních úloh. Je-li\n" +" použito -x, poté, co vÅ¡echny úlohy uvedené mezi ARGUMENTY budou nahrazeny\n" +" ID procesu, který je vedoucím skupiny dané úlohy, bude spuÅ¡těn PŘÍKAZ." + +#: builtins.c:665 +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 "" +"Implicitně odstraní každý argument ÚLOHA z tabulky aktivních úloh. Je-li\n" +" zadán přepínač -h, úloha není odstraněna z tabulky, ale je označena tak.\n" +" že úloze nebude zaslán SIGHUP, když shell obdrží SIGHUP. Přepínač -a,\n" +" pokud není uvedena ÚLOHA, znamená, že vÅ¡echny úlohy budou odstraněny\n" +" z tabulky úloh. Přepínač -r znamená, že pouze běžící úlohy budou\n" +" odstraněny." + +#: builtins.c:676 +msgid "" +"Send the processes named by PID (or JOBSPEC) the signal SIGSPEC. If\n" +" SIGSPEC is not present, then SIGTERM is assumed. An argument of `-l'\n" +" lists the signal names; if arguments follow `-l' they are assumed to\n" +" be signal numbers for which names should be listed. Kill is a shell\n" +" builtin for two reasons: it allows job IDs to be used instead of\n" +" process IDs, and, if you have reached the limit on processes that\n" +" you can create, you don't have to start a process to kill another one." +msgstr "" +"ZaÅ¡le procesu určeném PID (nebo ÚLOHOU) uvedený signál SIGSPEC.\n" +" Není-li SIGSPEC zadán, pak se předpokládá SIGTERM. Argumentem „-l“ lze\n" +" vypsat názvy signálů. Pokud „-l“ následují argumenty, má se za to, že se\n" +" jedná o čísla signálů, pro které se mají vyspat jejich názvy. Kill je\n" +" vestavěný příkaz shellu ze dvou důvodů: umožňuje použít identifikátory\n" +" úloh namísto ID procesů a pokud jste dosáhli limitu počtu procesů, které\n" +" smíte vytvořit, neměli byste jak nastartovat další proces, abyste mohli\n" +" jiný proces zabít." + +#: builtins.c:688 +msgid "" +"Each ARG is an arithmetic expression to be evaluated. Evaluation\n" +" is done in fixed-width integers with no check for overflow, though\n" +" division by 0 is trapped and flagged as an error. The following\n" +" list of operators is grouped into levels of equal-precedence operators.\n" +" The levels are listed in order of decreasing precedence.\n" +" \n" +" \tid++, id--\tvariable post-increment, post-decrement\n" +" \t++id, --id\tvariable pre-increment, pre-decrement\n" +" \t-, +\t\tunary minus, plus\n" +" \t!, ~\t\tlogical and bitwise negation\n" +" \t**\t\texponentiation\n" +" \t*, /, %\t\tmultiplication, division, remainder\n" +" \t+, -\t\taddition, subtraction\n" +" \t<<, >>\t\tleft and right bitwise shifts\n" +" \t<=, >=, <, >\tcomparison\n" +" \t==, !=\t\tequality, inequality\n" +" \t&\t\tbitwise AND\n" +" \t^\t\tbitwise XOR\n" +" \t|\t\tbitwise OR\n" +" \t&&\t\tlogical AND\n" +" \t||\t\tlogical OR\n" +" \texpr ? expr : expr\n" +" \t\t\tconditional operator\n" +" \t=, *=, /=, %=,\n" +" \t+=, -=, <<=, >>=,\n" +" \t&=, ^=, |=\tassignment\n" +" \n" +" Shell variables are allowed as operands. The name of the variable\n" +" is replaced by its value (coerced to a fixed-width integer) within\n" +" an expression. The variable need not have its integer attribute\n" +" turned on to be used in an expression.\n" +" \n" +" Operators are evaluated in order of precedence. Sub-expressions in\n" +" parentheses are evaluated first and may override the precedence\n" +" rules above.\n" +" \n" +" If the last ARG evaluates to 0, let returns 1; 0 is returned\n" +" otherwise." +msgstr "" +"Každý ARGUMENT je aritmetický výraz na vyhodnocení. Vyhodnocení je\n" +" prováděno v celých číslech o pevné šířce bez kontrol přetečení, avÅ¡ak\n" +" dělení 0 je zachyceno a označeno za chybu. Následující seznam operátorů\n" +" je rozdělen do skupin podle úrovní přednosti.\n" +" \n" +" \tid++, id--\tnásledné zvýšení, snížení proměnné\n" +" \t++id, --id\tpřednostní zvýšení, snížení proměnné\n" +" \t-, +\t\tunární mínus, plus\n" +" \t!, ~\t\tlogický a bitová negace\n" +" \t**\t\tumocnění\n" +" \t*, /, %\t\tnásobení, dělení, zbytková třída\n" +" \t+, -\t\tsčítání, odečítání\n" +" \t<<, >>\t\tlevý a pravý bitový posun\n" +" \t<=, >=, <, >\tporovnání\n" +" \t==, !=\t\trovnost, nerovnost\n" +" \t&\t\tbitové a zároveň (AND)\n" +" \t^\t\tbitové vylučující nebo (XOR)\n" +" \t|\t\tbitové nebo (OR)\n" +" \t&&\t\tlogické a zároveň (AND)\n" +" \t||\t\tlogické nebo (OR)\n" +" \tVÝRAZ ? VÝRAZ : VÝRAZ\n" +" \t\t\tpodmíněný operátor\n" +" \t=, *=, /=, %=,\n" +" \t+=, -=, <<=, >>=,\n" +" \t&=, ^=, |=\tpřiřazení\n" +" \n" +" Proměnné shellu jsou povolené operandy. Název proměnné je nahrazen její\n" +" hodnotou (s automatickým převodem na celé číslo pevné šířky) uvnitř\n" +" výrazu. Proměnná nemusí mít atribut integer (číslo) zapnutý, aby byla\n" +" použitelná ve výrazu.\n" +" \n" +" Operátory se vyhodnocují v pořadí přednosti. Podvýrazy v závorkách jsou\n" +" vyhodnoceny přednostně a smí přebít pravidla přednosti uvedená výše.\n" +" \n" +" Pokud poslední ARGUMENT je vyhodnocen na 0, let vrátí 1. Jinak je\n" +" navrácena 0." + +#: builtins.c:731 +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 "" +"Ze standardního vstupu, nebo deskriptoru souboru FD, je-li zadán\n" +" přepínač -u,je načten jeden řádek a první slovo je přiřazeno do prvního\n" +" JMÉNA, druhé slovo do druhého JMÉNA a tak dále, přičemž přebývající slova\n" +" se přiřadí do posledního JMÉNA. Pouze znaky uvedené v $IFS jsou považovány\n" +" za oddělovače slov. Nejsou-li uvedeny žádná JMÉNA, načtený řádek bude\n" +" uložen do proměnné REPLY. Je-li zadán přepínač -r, značí to „syrový“ vstup\n" +" a escapování zpětným lomítkem je vypnuto. Přepínač -d způsobí, že čteno\n" +" bude dokud se nenarazí na první znak ODDĚLOVAČE namísto nového řádku.\n" +" Je-li zadán přepínač -p, řetězec VÝZVA bude vypsán bez závěrečného nového\n" +" řádku, dříve než se zahájí načítání. Je-li zadáno -a, načtená slova budou\n" +" přiřazena do postupných prvků POLE, počínaje nulou. Je-li zadáno -e a\n" +" shell je interaktivní, bude k načtení řádku použita readline. Je-li\n" +" zadán -n s nenulovým argumentem P_ZNAKÅ®, read vrátí řízení po načtení\n" +" P_ZNAKÅ® znaků. Přepínač -s způsobí, že vstup pocházející z terminálu\n" +" nebude zobrazován.\n" +" \n" +" Přepínač -t umožní vyprÅ¡ení časového limitu a vrácení chyby, pokud nebude\n" +" načten celý řádek do LIMIT sekund. Návratový kód je nula, pokud se\n" +" nenarazí na konec souboru, časový limit pro čtení nevyprší nebo není\n" +" poskytnut neplatný deskriptor souboru jako argument -u." + +#: builtins.c:757 +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 "" +"Způsobí ukončení funkce s návratovou hodnotou uvedenou v N. Je-li\n" +" N vynecháno, návratový kód je roven poslednímu příkazu." + +#: builtins.c:764 +msgid "" +" -a Mark variables which are modified or created for export.\n" +" -b Notify of job termination immediately.\n" +" -e Exit immediately if a command exits with a non-zero status.\n" +" -f Disable file name generation (globbing).\n" +" -h Remember the location of commands as they are looked up.\n" +" -k All assignment arguments are placed in the environment for a\n" +" command, not just those that precede the command name.\n" +" -m Job control is enabled.\n" +" -n Read commands but do not execute them.\n" +" -o option-name\n" +" Set the variable corresponding to option-name:\n" +" allexport same as -a\n" +" braceexpand same as -B\n" +" emacs use an emacs-style line editing interface\n" +" errexit same as -e\n" +" errtrace same as -E\n" +" functrace same as -T\n" +" hashall same as -h\n" +" histexpand same as -H\n" +" history enable command history\n" +" ignoreeof the shell will not exit upon reading EOF\n" +" interactive-comments\n" +" allow comments to appear in interactive commands\n" +" keyword same as -k\n" +" monitor same as -m\n" +" noclobber same as -C\n" +" noexec same as -n\n" +" noglob same as -f\n" +" nolog currently accepted but ignored\n" +" notify same as -b\n" +" nounset same as -u\n" +" onecmd same as -t\n" +" 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" +" posix change the behavior of bash where the default\n" +" operation differs from the 1003.2 standard to\n" +" match the standard\n" +" privileged same as -p\n" +" verbose same as -v\n" +" vi use a vi-style line editing interface\n" +" xtrace same as -x\n" +" -p Turned on whenever the real and effective user ids do not match.\n" +" Disables processing of the $ENV file and importing of shell\n" +" functions. Turning this option off causes the effective uid and\n" +" gid to be set to the real uid and gid.\n" +" -t Exit after reading and executing one command.\n" +" -u Treat unset variables as an error when substituting.\n" +" -v Print shell input lines as they are read.\n" +" -x Print commands and their arguments as they are executed.\n" +" -B the shell will perform brace expansion\n" +" -C If set, disallow existing regular files to be overwritten\n" +" by redirection of output.\n" +" -E If set, the ERR trap is inherited by shell functions.\n" +" -H Enable ! style history substitution. This flag is on\n" +" by default when the shell is interactive.\n" +" -P If set, do not follow symbolic links when executing commands\n" +" such as cd which change the current directory.\n" +" -T If set, the DEBUG trap is inherited by shell functions.\n" +" - Assign any remaining arguments to the positional parameters.\n" +" The -x and -v options are turned off.\n" +" \n" +" Using + rather than - causes these flags to be turned off. The\n" +" flags can also be used upon invocation of the shell. The current\n" +" set of flags may be found in $-. The remaining n ARGs are positional\n" +" parameters and are assigned, in order, to $1, $2, .. $n. If no\n" +" ARGs are given, all shell variables are printed." +msgstr "" +" -a Označí měněné nebo vytvářené proměnné pro export.\n" +" -b Neprodleně oznámí ukončení úlohy.\n" +" -e Neprodleně skončí, pokud nějaký příkaz skončí s nenulovým kódem.\n" +" -f Zakáže vytváření jmen souborů (globbing).\n" +" -h Zapamatuje si umístění příkazů tehdy, když jsou vyhledány.\n" +" -k VÅ¡echny přiřazovací argumenty budou umístěny do prostředí\n" +" příkazu. Nejenom ty, co předchází název příkazu.\n" +" -m Správa úloh je zapnuta.\n" +" -n Příkazy načte, ale neprovede je.\n" +" -o NÁZEV_PŘEPÍNAČE\n" +" Nastaví proměnnou odpovídající NÁZVU_PŘEPÍNAČE:\n" +" allexport stejné jako -a\n" +" braceexpand stejné jako -B\n" +" emacs použije emacsový způsob editace na řádku\n" +" errexit stejné jako -e\n" +" errtrace stejné jako -E\n" +" functrace stejné jako -T\n" +" hashall stejné jako -h\n" +" histexpand stejné jako -H\n" +" history zapne historii příkazů\n" +" ignoreeof shell neskončí, když načte EOF (konec souboru)\n" +" interactive-comments\n" +" povolí, aby se v interaktivních příkazech\n" +" objevovaly komentáře\n" +" keyword stejné jako -k\n" +" monitor stejné jako -m\n" +" noclobber stejné jako -C\n" +" noexec stejné jako -n\n" +" noglob stejné jako -f\n" +" nolog v současnosti přijímáno, ale ignorováno\n" +" notify stejné jako -b\n" +" nounset stejné jako -u\n" +" onecmd stejné jako -t\n" +" physical stejné jako -P\n" +" pipefail návratová hodnota kolony je status posledního\n" +" příkazu, který skončil s nenulovým kódem.\n" +" Návratová hodnota je nula, pokud žádný z příkazů\n" +" neskončil s nenulovým kódem.\n" +" posix změní chování bashe tam, kde implicitní chování\n" +" se liší od standardu 1003.2, tak, aby bylo\n" +" v souladu se standardem\n" +" privileged stejné jako -p\n" +" verbose stejné jako -v\n" +" vi použije vi způsob editace na řádku\n" +" xtrace stejné jako -x\n" +" -p Zapnuto, kdykoliv reálné a efektivní ID uživatele se neshodují.\n" +" Vypne zpracování souboru $ENV a importování shellových funkcí.\n" +" Vypnutí tohoto přepínače způsobí, že efektivní UID a GID budou\n" +" nastaveny na reálná UID a GID.\n" +" -t Skončí po načtení a provedení jednoho příkazu.\n" +" -u Při substituci považuje nenastavené proměnné za chybu.\n" +" -v Vstupní řádky shellu se budou tisknout tak, jak budou načítány.\n" +" -x Tiskne příkazy a jejich argumenty tak, jak jsou spouÅ¡těny.\n" +" -B Shell bude provádět závorkovou (brace) expanzi.\n" +" -C Je-li nastaveno, zakáže přepsání již existujících běžných souborů\n" +" při přesměrování výstupu.\n" +" -E Je-li nastaveno, trap ERR (zachytávání chyb) bude děděn do\n" +" funkcí shellu.\n" +" -H Zapne ! způsob nahrazování histore. Tento příznak je automaticky\n" +" zapnut při interaktivním shellu.\n" +" -P Je-li nastaveno, nebudou následovány symbolické odkazy při\n" +" provádění příkazů jako změna pracovního adresáře pomocí „cd“.\n" +" -T Je-li nastaveno, trap DEBUG (obsluha ladění) bude děděna do\n" +" funkcí shellu.\n" +" - Přiřadí jakékoliv zbývající argumenty do pozičních parametrů.\n" +" Přepínače -x a -v budou vypnuty.\n" +" \n" +" Použití + místo - způsobí, že tyto příznaky budou vypnuty. Příznaky lze\n" +" použít při volání shellu. Aktuální množinu příznaků je možno nalézt v $-.\n" +" Přebývající ARGUMENTY jsou poziční parametry a budou přiřazeny, v pořadí,\n" +" do $1, $2, … $n. Nejsou-li zadány žádné ARGUMENTY, budou vytiÅ¡těny vÅ¡echny\n" +" proměnné shellu." + +#: builtins.c:837 +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 "" +"Pro každé JMÉNO odstraní odpovídající proměnnou nebo funkci.\n" +" Spolu s „-v“ bude unset fungovat jen na proměnné. S příznakem „-f“ bude\n" +" unset fungovat jen na funkce. Bez těchto dvou příznaků unset nejprve zkusí\n" +" zruÅ¡it proměnnou a pokud toto selže, tak zkusí zruÅ¡it funkci. Některé\n" +" proměnné nelze odstranit. Taktéž vizte příkaz „readonly“." + +#: builtins.c:847 +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 "" +"NÁZVY jsou označeny pro automatické exportování do prostředí následně\n" +" prováděných příkazů. Je-li zadán přepínač -f, NÁZVY se vztahují k funkcím.\n" +" Nejsou-li zadány žádné NÁZVY nebo je-li zadáno „-p“, bude vytiÅ¡těn seznam\n" +" vÅ¡ech názvů, které jsou v tomto shellu exportovány. Argument „-n“ nařizuje\n" +" odstranit vlastnost exportovat z následujících NÁZVÅ®. Argument „--“\n" +" zakazuje zpracování dalších přepínačů." + +#: builtins.c:859 +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 "" +"Zadané NÁZVY budou označeny jako jen pro čtení a hodnoty těchto NÁZVÅ®\n" +" nebude možné změnit následným přiřazením. Je-li zadán přepínač -f, pak\n" +" funkce těchto NÁZVÅ® budou takto označeny. Nejsou-li zadány žádné argumenty\n" +" nebo je-li zadáno „-p“, bude vytiÅ¡těn seznam vÅ¡ech jmen jen pro čtení.\n" +" Přepínač „-a“ znamená, že s každým NÁZVEM bude zacházeno jako s proměnnou\n" +" typu pole. Argument „--“ zakáže zpracování dalších přepínačů." + +#: builtins.c:871 +msgid "" +"The positional parameters from $N+1 ... are renamed to $1 ... If N is\n" +" not given, it is assumed to be 1." +msgstr "" +"Poziční parametry budou přejmenovány z $N+1 na $1 atd. Není-li N zadáno,\n" +" předpokládá se 1." + +#: builtins.c:878 builtins.c:887 +msgid "" +"Read and execute commands from FILENAME and return. The pathnames\n" +" in $PATH are used to find the directory containing FILENAME. If any\n" +" ARGUMENTS are supplied, they become the positional parameters when\n" +" FILENAME is executed." +msgstr "" +"Načte a provede příkazy z NÁZEV_SOUBORU a vrátí řízení. Názvy cest\n" +" v $PATH jsou použity pro vyhledání adresáře obsahujícího NÁZEV_SOUBORU.\n" +" Jsou-li zadány nějaké ARGUMENTY, stanou se pozičními parametry při běhu\n" +" NÁZVU_SOUBORU." + +#: builtins.c:897 +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 "" +"Pozastaví provádění tohoto shellu do doby, něž bude obdržen signál\n" +" SIGCONT. „-f“, je-li zadán, potlačí stížnost na to, že se jedná\n" +" o přihlaÅ¡ovací shell (pokud tomu tak je), a prostě pozastaví činnost." + +#: builtins.c:906 +msgid "" +"Exits with a status of 0 (true) or 1 (false) depending on\n" +" the evaluation of EXPR. Expressions may be unary or binary. Unary\n" +" expressions are often used to examine the status of a file. There\n" +" are string operators as well, and numeric comparison operators.\n" +" \n" +" File operators:\n" +" \n" +" -a FILE True if file exists.\n" +" -b FILE True if file is block special.\n" +" -c FILE True if file is character special.\n" +" -d FILE True if file is a directory.\n" +" -e FILE True if file exists.\n" +" -f FILE True if file exists and is a regular file.\n" +" -g FILE True if file is set-group-id.\n" +" -h FILE True if file is a symbolic link.\n" +" -L FILE True if file is a symbolic link.\n" +" -k FILE True if file has its `sticky' bit set.\n" +" -p FILE True if file is a named pipe.\n" +" -r FILE True if file is readable by you.\n" +" -s FILE True if file exists and is not empty.\n" +" -S FILE True if file is a socket.\n" +" -t FD True if FD is opened on a terminal.\n" +" -u FILE True if the file is set-user-id.\n" +" -w FILE True if the file is writable by you.\n" +" -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" +" FILE1 -nt FILE2 True if file1 is newer than file2 (according to\n" +" modification date).\n" +" \n" +" FILE1 -ot FILE2 True if file1 is older than file2.\n" +" \n" +" FILE1 -ef FILE2 True if file1 is a hard link to file2.\n" +" \n" +" String operators:\n" +" \n" +" -z STRING True if string is empty.\n" +" \n" +" -n STRING\n" +" STRING True if string is not empty.\n" +" \n" +" STRING1 = STRING2\n" +" True if the strings are equal.\n" +" STRING1 != STRING2\n" +" True if the strings are not equal.\n" +" STRING1 < STRING2\n" +" True if STRING1 sorts before STRING2 lexicographically.\n" +" STRING1 > STRING2\n" +" True if STRING1 sorts after STRING2 lexicographically.\n" +" \n" +" Other operators:\n" +" \n" +" -o OPTION True if the shell option OPTION is enabled.\n" +" ! EXPR True if expr is false.\n" +" EXPR1 -a EXPR2 True if both expr1 AND expr2 are true.\n" +" EXPR1 -o EXPR2 True if either expr1 OR expr2 is true.\n" +" \n" +" arg1 OP arg2 Arithmetic tests. OP is one of -eq, -ne,\n" +" -lt, -le, -gt, or -ge.\n" +" \n" +" Arithmetic binary operators return true if ARG1 is equal, not-equal,\n" +" less-than, less-than-or-equal, greater-than, or greater-than-or-equal\n" +" than ARG2." +msgstr "" +"Skončí s kódem 0 (pravda) nebo 1 (nepravda) podle vyhodnocení VÝRAZU.\n" +" Výraz smí být unární nebo binární. Unární výrazy se často používají pro\n" +" zjiÅ¡tění stavu souboru. Rovněž jsou k dispozici řetězcové operátory a\n" +" operátory číselného porovnávání.\n" +" \n" +" Souborové operátory:\n" +" \n" +" -a SOUBOR Pravda, pokud soubor existuje.\n" +" -b SOUBOR Pravda, pokud soubor je blokovým zařízením.\n" +" -c SOUBOR Pravda, pokud soubor je znakovým zařízením.\n" +" -d SOUBOR Pravda, pokud soubor je adresářem.\n" +" -e SOUBOR Pravda, pokud soubor existuje.\n" +" -f SOUBOR Pravda, pokud soubor existuje a to běžný soubor.\n" +" -g SOUBOR Pravda, pokud soubor je SGID.\n" +" -h SOUBOR Pravda, pokud soubor je symbolickým odkazem.\n" +" -L SOUBOR Pravda, pokud soubor je symbolickým odkazem.\n" +" -k SOUBOR Pravda, pokud soubor má nastavený „sticky“ bit.\n" +" -p SOUBOR Pravda, pokud soubor je pojmenovanou rourou.\n" +" -r SOUBOR Pravda, pokud soubor je vámi čitelný.\n" +" -s SOUBOR Pravda, pokud soubor existuje a je neprázdný.\n" +" -S SOUBOR Pravda, pokud soubor je socketem.\n" +" -t FD Pravda, pokud FD (deskriptor souboru) je otevřený na\n" +" terminálu.\n" +" -u SOUBOR Pravda, pokud soubor je SUID.\n" +" -w SOUBOR Pravda, pokud soubor je vámi zapisovatelný.\n" +" -x SOUBOR Pravda, pokud soubor je vámi spustitelný.\n" +" -O SOUBOR Pravda, pokud soubor je vámi efektivně vlastněn.\n" +" -G SOUBOR Pravda, pokud soubor je efektivně vlastněn vaší\n" +" skupinou.\n" +" -N SOUBOR Pravda, pokud soubor byl změněn po posledním čtení.\n" +" \n" +" SOUBOR1 -nt SOUBOR2\n" +" Pravda, pokud je SOUBOR1 novější než SOUBOR2 (podle času\n" +" změny obsahu).\n" +" \n" +" SOUBOR1 -ot SOUBOR2\n" +" Pravda, pokud SOUBOR1 je starší než SOUBOR2.\n" +" \n" +" SOUBOR1 -ef SOUBOR2\n" +" Pravda, pokud SOUBOR1 je pevným odkazem na SOUBOR2.\n" +" \n" +" Řetězcové operátory:\n" +" \n" +" -z ŘETĚZEC Pravda, pokud ŘETĚZEC je prázdný.\n" +" \n" +" -n ŘETĚZEC\n" +" ŘETĚZEC Pravda, pokud ŘETĚZEC není prázdný.\n" +" \n" +" ŘETĚZEC1 = ŘETĚZEC2\n" +" Pravda, pokud jsou řetězce shodné.\n" +" ŘETĚZEC1 != ŘETĚZEC2\n" +" Pravda, pokud se řetězce neshodují.\n" +" ŘETĚZEC1 < ŘETĚZEC2\n" +" Pravda, pokud se ŘETĚZEC1 řadí lexikograficky před\n" +" ŘETĚZEC2.\n" +" ŘETĚZEC1 > ŘETĚZEC2\n" +" Pravda, pokud se ŘETĚZEC1 řadí lexikograficky za\n" +" ŘETĚZEC2.\n" +" \n" +" Další operátory:\n" +" \n" +" -o PŘEPÍNAČ Pravda, pokud je přepínač shellu PŘEPÍNAČ zapnut.\n" +" ! VÝRAZ Pravda, pokud VÝRAZ je nepravdivý.\n" +" VÝRAZ1 -a VÝRAZ2\n" +" Pravda, pokud oba VÝRAZ1 I VÝRAZ2 jsou pravdivé.\n" +" VÝRAZ1 -o VÝRAZ2\n" +" Pravda, pokud VÝRAZ1 NEBO VÝRAZ2 je pravdivý.\n" +" \n" +" ARGUMENT1 OP ARGUMENT2\n" +" Aritmetické testy. OP je jeden z -eq, -ne, -lt,\n" +" -le, -gt nebo -ge.\n" +" \n" +" Aritmetické binární operátory vracejí pravdu pokud ARGUMENT1 je roven,\n" +" neroven, menší než, menší než nebo roven, větší než, větší než nebo\n" +" roven ARGUMENTU2." + +#: builtins.c:976 +msgid "" +"This is a synonym for the \"test\" builtin, but the last\n" +" argument must be a literal `]', to match the opening `['." +msgstr "" +"Toto je synonymum pro vestavěný příkaz „test“, až na to, že\n" +" poslední argument musí být doslovně „]“, aby se shodoval s otevírající „[“." + +#: builtins.c:983 +msgid "" +"Print the accumulated user and system times for processes run from\n" +" the shell." +msgstr "" +"Vytiskne celkovou dobu procesu spuÅ¡těného z shellu, kterou strávil\n" +" v uživatelském a jaderném (system) prostoru." + +#: builtins.c:990 +msgid "" +"The command ARG is to be read and executed when the shell receives\n" +" signal(s) SIGNAL_SPEC. If ARG is absent (and a single SIGNAL_SPEC\n" +" is supplied) or `-', each specified signal is reset to its original\n" +" value. If ARG is the null string each SIGNAL_SPEC is ignored by the\n" +" shell and by the commands it invokes. If a SIGNAL_SPEC is EXIT (0)\n" +" the command ARG is executed on exit from the shell. If a SIGNAL_SPEC\n" +" is DEBUG, ARG is executed after every simple command. If the`-p' option\n" +" is supplied then the trap commands associated with each SIGNAL_SPEC are\n" +" displayed. If no arguments are supplied or if only `-p' is given, trap\n" +" prints the list of commands associated with each signal. Each SIGNAL_SPEC\n" +" is either a signal name in or a signal number. Signal names\n" +" are case insensitive and the SIG prefix is optional. `trap -l' prints\n" +" a list of signal names and their corresponding numbers. Note that a\n" +" signal can be sent to the shell with \"kill -signal $$\"." +msgstr "" +"Příkaz ARGUMENT bude načten a proveden, až shell obdrží signál(y)\n" +" SIGNAL_SPEC. Pokud ARGUMENT chybí (a je zadán jeden SIGNAL_SPEC) nebo je\n" +" „-“, každý určený signál bude přenastaven zpět na svoji původní hodnotu.\n" +" Je-li ARGUMENT prázdný řetězec, každý SIGNAL_SPEC bude shellem a příkazy\n" +" z něj spuÅ¡těnými ignorován. Je-li SIGNAL_SPEC „EXIT (0)“, bude příkaz\n" +" ARGUMENT proveden při ukončování tohoto shellu. Je-li SIGNAL_SPEC „DEBUG“,\n" +" bude ARGUMENT proveden za každým jednoduchým příkazem. Je-li zadán přepínač\n" +" „-p“, pak budou zobrazen příkazy navázané na každý SIGNAL_SPEC. Nejsou-li\n" +" poskytnuty žádné argumenty nebo je-li zadán jen „-p“, vytiskne trap seznam\n" +" příkazů navázaných na vÅ¡echny signály. Každý SIGNAL_SPEC je buďto jméno\n" +" signálu z , nebo číslo signálu. U jmen signálů nezáleží na\n" +" velikosti písmen a předpona SIG je nepovinná. „trap -l“ vytiskne seznam\n" +" jmen signálů a jim odpovídajících čísel. Vezměte na vědomí, že aktuálnímu\n" +" shellu lze zaslat signál pomocí „kill -signal $$“." + +#: builtins.c:1009 +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 "" +"O každém NÁZVU řekne, jak by byl interpretován, kdyby byl použit jako\n" +" název příkazu.\n" +" \n" +" Je-li použit přepínač -t, „type“ vypíše jedno slovo z těchto: „alias“,\n" +" „keyword“, „function“, „builtin“, „file“ nebo „“, je-li NÁZEV alias,\n" +" klíčové slovo shellu, shellová funkce, vestavěný příkaz shellu, soubor\n" +" na disku nebo nenalezený soubor.\n" +" \n" +" Je-li použit přepínač -p, „type“ buď vrátí jméno souboru na disku, který\n" +" by byl spuÅ¡těn, nebo nic, pokud „type -t NÁZEV“ by nevrátil „file“.\n" +" \n" +" Je-li použit přepínač -a, „type“ zobrazí vÅ¡echna místa, kde se nalézá\n" +" spustitelný program pojmenovaný „soubor“. To zahrnuje aliasy, vestavěné\n" +" příkazy a funkce jen a pouze tehdy, když není rovněž použit přepínač -p.\n" +" \n" +" Přepínač -f potlačí hledání mezi funkcemi shellu.\n" +" \n" +" Přepínač -P vynutí prohledání PATH na každý NÁZEV, dokonce i když se\n" +" jedná o alias, vestavěný příkaz nebo funkci, a vrátí název souboru na\n" +" disku, který by byl spuÅ¡těn." + +#: builtins.c:1036 +msgid "" +"Ulimit provides control over the resources available to processes\n" +" started by the shell, on systems that allow such control. If an\n" +" option is given, it is interpreted as follows:\n" +" \n" +" -S\tuse the `soft' resource limit\n" +" -H\tuse the `hard' resource limit\n" +" -a\tall current limits are reported\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" +" -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" +" \n" +" If LIMIT is given, it is the new value of the specified resource;\n" +" the special LIMIT values `soft', `hard', and `unlimited' stand for\n" +" the current soft limit, the current hard limit, and no limit, respectively.\n" +" Otherwise, the current value of the specified resource is printed.\n" +" If no option is given, then -f is assumed. Values are in 1024-byte\n" +" increments, except for -t, which is in seconds, -p, which is in\n" +" increments of 512 bytes, and -u, which is an unscaled number of\n" +" processes." +msgstr "" +"Ulimit poskytuje kontrolu nad zdroji dostupnými procesu spuÅ¡těného\n" +" shellem (na systémech, které takovou kontrolu umožňují). Je-li nějaký\n" +" zadán přepínač, bude interpretován následovně:\n" +" \n" +" -S\tpoužije se „měkké“ (soft) omezení zdroje\n" +" -H\tpoužije se „tvrdé“ (hard) omezení zdroje\n" +" -a\tnahlásí vÅ¡echna současná omezení (limity)\n" +" -c\tmaximální velikost vytvářených core souborů (výpis paměti programu)\n" +" -d\tmaximální velikost datového segmentu procesu\n" +" -e\tmaximální plánovací priorita („nice“)\n" +" -f\tmaximální velikost souborů zapsaných shellem a jeho potomky\n" +" -i\tmaximální počet čekajících signálů\n" +" -l\tmaximální velikost paměti, kterou může proces zamknout\n" +" -m\tmaximální velikost rezidentní paměti (resident set size)\n" +" -n\tmaximální počet otevřených deskriptorů souboru\n" +" -p\tvelikost vyrovnávací paměti rour\n" +" -q\tmaximální počet bajtů ve frontě posixových zpráv\n" +" -r\tmaximální priorita plánování v reálném čase\n" +" -s\tmaximální velikost zásobníku\n" +" -t\tmaximální množství procesorového času v sekundách\n" +" -u\tmaximální počet procesů uživatele\n" +" -v\tvelikost virtuální paměti\n" +" -x\tmaximální počet zámků na souborech\n" +" \n" +" Je-li zadán LIMIT, jedná se o novou hodnotu daného zdroje. Zvláštní\n" +" hodnoty LIMITU „soft“, „hard“ a „unlimited“ znamenají současný měkký\n" +" limit, současný tvrdý limit a žádný limit. V opačném případě bude\n" +" vytiÅ¡těna současná hodnota limitu daného zdroje. Není-li zadán žádný\n" +" přepínač, pak se předpokládá -f. Hodnoty jsou v násobcích 1024 bajtů,\n" +" kromě -t, která je v sekundách, -p, která je v násobcích 512 bajtů,\n" +" a -u, což je absolutní počet procesů." + +#: builtins.c:1074 +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 "" +"Uživatelská maska práv vytvářených souborů je nastavena na MÓD. Je-li\n" +" MÓD vynechán nebo je-li uvedeno „-S“, bude vytiÅ¡těna současná hodnota\n" +" masky. Přepínač „-S“ učiní výstup symbolický, jinak bude výstupem\n" +" osmičkové číslo. Je-li zadáno „-p“ a MÓD je vynechán, bude výstup ve\n" +" formátu, který lze použít jako vstup. Začíná-li MÓD číslicí, bude\n" +" interpretován jako osmičkové číslo, jinak jako řetězec symbolického zápisu\n" +" práv tak, jak jej chápe chmod(1)." + +#: builtins.c:1087 +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 may be a process ID or a job\n" +" specification; if a job spec is given, all processes in the job's\n" +" pipeline are waited for." +msgstr "" +"Počká na zadaný proces a nahlásí jeho návratový kód. Není-li N zadáno,\n" +" bude se čekat na vÅ¡echny právě aktivní procesy potomků a návratová hodnota\n" +" bude nula. N může být ID procesu nebo identifikace úlohy. Je-li odkazováno\n" +" na úlohu, bude se čekat na vÅ¡echny procesy v koloně úlohy." + +#: builtins.c:1099 +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 "" +"Počká na zadaný proces a nahlásí jeho návratový kód. Není-li N zadáno,\n" +" bude se čekat na vÅ¡echny právě aktivní procesy potomků a návratová hodnota\n" +" bude nula. N je ID procesu. Není-li zadáno, bude se čekat na vÅ¡echny\n" +" procesy potomků tohoto shellu." + +#: builtins.c:1109 +msgid "" +"The `for' loop executes a sequence of commands for each member in a\n" +" list of items. If `in WORDS ...;' is not present, then `in \"$@\"' is\n" +" assumed. For each element in WORDS, NAME is set to that element, and\n" +" the COMMANDS are executed." +msgstr "" +"Smyčka „for“ provede posloupnost příkazů pro každý prvek v seznamu položek.\n" +" Pokud „in SLOVECH…;“ není přítomno, pak se předpokládá „in \"$@\"“. NÁZEV\n" +" bude postupně nastaven na každý prvek ve SLOVECH a PŘÍKAZY provedeny." + +#: builtins.c:1118 +msgid "" +"Equivalent to\n" +" \t(( EXP1 ))\n" +" \twhile (( EXP2 )); do\n" +" \t\tCOMMANDS\n" +" \t\t(( EXP3 ))\n" +" \tdone\n" +" EXP1, EXP2, and EXP3 are arithmetic expressions. If any expression is\n" +" omitted, it behaves as if it evaluates to 1." +msgstr "" +"Ekvivalentní k\n" +" \t(( VÝR1 ))\n" +" \twhile (( VÝR2 )); do\n" +" \t\tPŘÍKAZY\n" +" \t\t(( VÝR3 ))\n" +" \tdone\n" +" VÝR1, VÝR2 a VÝR3 jsou aritmetické výrazy. Chybí-li některý výraz,\n" +" chová se, jako by byl vyhodnocen na 1." + +#: builtins.c:1131 +msgid "" +"The WORDS are expanded, generating a list of words. The\n" +" set of expanded words is printed on the standard error, each\n" +" preceded by a number. If `in WORDS' is not present, `in \"$@\"'\n" +" is assumed. The PS3 prompt is then displayed and a line read\n" +" from the standard input. If the line consists of the number\n" +" corresponding to one of the displayed words, then NAME is set\n" +" to that word. If the line is empty, WORDS and the prompt are\n" +" redisplayed. If EOF is read, the command completes. Any other\n" +" value read causes NAME to be set to null. The line read is saved\n" +" in the variable REPLY. COMMANDS are executed after each selection\n" +" until a break command is executed." +msgstr "" +"SLOVA jsou expandována a vytvoří seznam slov. Množina expandovaných slov\n" +" je vytiÅ¡těna na standardní chybový výstup, každé předchází číslo. Není-li\n" +" „in SLOVA“ přítomno, předpokládá se „in \"$@\"“. Pak je zobrazena výzva PS3\n" +" a jeden řádek načten ze standardního vstupu. Pokud je řádek tvořen číslem\n" +" odpovídajícím jednomu ze zobrazených slov, pak NÁZEV bude nastaven na toto\n" +" slovo. Pokud je řádek prázdný, SLOVA a výzva budou znovu zobrazeny. Je-li\n" +" načten EOF (konec souboru), příkaz končí. Načtení jakékoliv jiné hodnoty\n" +" nastaví NÁZEV na prázdný řetězec. Načtený řádek bude uložen do proměnné\n" +" REPLY, Po každém výběru budou provedeny PŘÍKAZY, dokud nebude vykonán\n" +" příkaz „break“." + +#: builtins.c:1147 +msgid "" +"Execute PIPELINE and print a summary of the real time, user CPU time,\n" +" and system CPU time spent executing PIPELINE when it terminates.\n" +" The return status is the return status of PIPELINE. The `-p' option\n" +" prints the timing summary in a slightly different format. This uses\n" +" the value of the TIMEFORMAT variable as the output format." +msgstr "" +"Vykoná KOLONU a vytiskne přehled reálného času, uživatelského\n" +" procesorového času a systémového procesorového času stráveného prováděním\n" +" KOLONY poté, co skončí. Návratová hodnota je návratová hodnota KOLONY.\n" +" Přepínač „-p“ vytiskne přehled časů v mírně odliÅ¡ném formátu. Zde se\n" +" použije hodnota proměnné TIMEFORMAT jakožto specifikace výstupního formátu." + +#: builtins.c:1157 +msgid "" +"Selectively execute COMMANDS based upon WORD matching PATTERN. The\n" +" `|' is used to separate multiple patterns." +msgstr "" +"Provede PŘÍKAZY vybrané podle shody SLOVA se VZOREM. Znak „|“ se používá\n" +" na oddělení násobných VZORÅ®." + +#: builtins.c:1164 +msgid "" +"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" +" if no condition tested true." +msgstr "" +"Provede seznam „if PŘÍKAZŮ“. Bude-li jeho návratový kód nula, pak bude\n" +" proveden seznam „then PŘÍKAZŮ“. Jinak bude proveden popořadě každý seznam\n" +" „elif PŘÍKAZŮ“ a bude-li jeho návratový kód nula, odpovídající seznam\n" +" „then PŘÍKAZŮ“ bude proveden a příkaz if skončí. V opačném případě bude\n" +" proveden seznam „else PŘÍKAZŮ“, pokud existuje. Návratová hodnota celé\n" +" konstrukce je návratovou hodnotou posledního provedeného příkazu nebo nula,\n" +" pokud žádná z testovaných podmínek není pravdivá." + +#: builtins.c:1176 +msgid "" +"Expand and execute COMMANDS as long as the final command in the\n" +" `while' COMMANDS has an exit status of zero." +msgstr "" +"Expanduje a provádí PŘÍKAZY tak dlouho, dokud poslední příkaz ve „while“\n" +" PŘÍKAZECH má nulový návratový kód." + +#: builtins.c:1183 +msgid "" +"Expand and execute COMMANDS as long as the final command in the\n" +" `until' COMMANDS has an exit status which is not zero." +msgstr "" +"Expanduje a provádí PŘÍKAZY tak dlouho, dokud poslední příkaz ve „until“\n" +" PŘÍKAZECH má nenulový návratový kód." + +#: builtins.c:1190 +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 "" +"Vytvoří jednoduchý příkaz volaný JMÉNEM, který spustí PŘÍKAZY. Argumenty\n" +" z příkazové řádky spolu se JMÉNEM budou předány do funkce jako $0…$n." + +#: builtins.c:1198 +msgid "" +"Run a set of commands in a group. This is one way to redirect an\n" +" entire set of commands." +msgstr "" +"Spustí množinu příkazů v jedné skupině. Toto je jeden ze způsobů,\n" +" jak přesměrovat celou množinu příkazů." + +#: builtins.c:1205 +msgid "" +"Equivalent to the JOB_SPEC argument to the `fg' command. Resume a\n" +" stopped or background job. JOB_SPEC can specify either a job name\n" +" or a job number. Following JOB_SPEC with a `&' places the job in\n" +" the background, as if the job specification had been supplied as an\n" +" argument to `bg'." +msgstr "" +"Ekvivalent k argumentu ÚLOHA příkazu „fg“. Obnoví pozastavenou úlohu\n" +" nebo úlohu na pozadí. ÚLOHA může určovat buď název úlohy, nebo číslo úlohy.\n" +" Přidání „&“ za ÚLOHU přesune úlohu na pozadí, jako by identifikátor úlohy\n" +" byl argumentem příkazu „bg“." + +#: builtins.c:1215 +msgid "" +"The EXPRESSION is evaluated according to the rules for arithmetic\n" +" evaluation. Equivalent to \"let EXPRESSION\"." +msgstr "" +"VÝRAZ bude vyhodnocen podle pravidel aritmetického vyhodnocování.\n" +" Ekvivalentní k „let VÝRAZ“." + +#: builtins.c:1222 +msgid "" +"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" +" \t( EXPRESSION )\tReturns the value of EXPRESSION\n" +" \t! EXPRESSION\tTrue if EXPRESSION is false; else false\n" +" \tEXPR1 && EXPR2\tTrue if both EXPR1 and EXPR2 are true; else false\n" +" \tEXPR1 || EXPR2\tTrue if either EXPR1 or EXPR2 is true; else false\n" +" \n" +" When the `==' and `!=' operators are used, the string to the right of the\n" +" operator is used as a pattern and pattern matching is performed. The\n" +" && and || operators do not evaluate EXPR2 if EXPR1 is sufficient to\n" +" determine the expression's value." +msgstr "" +"Vrátí status 0 nebo 1 podle vyhodnocení podmíněného výrazu VÝRAZ. Výrazy\n" +" se skládají ze stejných primitiv jako u vestavěného příkazu „test“ a\n" +" mohou být kombinovány za pomoci následujících operátorů:\n" +" \n" +" \t( VÝRAZ )\tVrátí hodnotu VÝRAZU\n" +" \t! VÝRAZ\t\tPravda, pokud VÝRAZ je nepravdivý; jinak nepravda\n" +" \tVÝR1 && VÝR2\tPravda, pokud oba VÝR1 i VÝR2 jsou pravdivé;\n" +" \t\t\tjinak nepravda\n" +" \tVÝR1 || VÝR2\tPravda, pokud VÝR1 nebo VÝR2 je pravdivý; jinak nepravda\n" +" \n" +" Jsou-li použity operátory „==“ a „!=“, řetězec napravo od operátora je\n" +" použit jako vzor a bude uplatněno porovnávání proti vzoru. Operátory\n" +" && a || nevyhodnocují VÝR2, pokud VÝR1 je dostatečný na určení hodnoty\n" +" výrazu." + +#: builtins.c:1240 +msgid "" +"BASH_VERSION\tVersion information for this Bash.\n" +" CDPATH\tA colon-separated list of directories to search\n" +" \t\tfor directries given as arguments to `cd'.\n" +" GLOBIGNORE\tA colon-separated list of patterns describing filenames to\n" +" \t\tbe ignored by pathname expansion.\n" +" HISTFILE\tThe name of the file where your command history is stored.\n" +" HISTFILESIZE\tThe maximum number of lines this file can contain.\n" +" HISTSIZE\tThe maximum number of history lines that a running\n" +" \t\tshell can access.\n" +" HOME\tThe complete pathname to your login directory.\n" +" HOSTNAME\tThe name of the current host.\n" +" HOSTTYPE\tThe type of CPU this version of Bash is running under.\n" +" IGNOREEOF\tControls the action of the shell on receipt of an EOF\n" +" \t\tcharacter as the sole input. If set, then the value\n" +" \t\tof it is the number of EOF characters that can be seen\n" +" \t\tin a row on an empty line before the shell will exit\n" +" \t\t(default 10). When unset, EOF signifies the end of input.\n" +" MACHTYPE\tA string describing the current system Bash is running on.\n" +" MAILCHECK\tHow often, in seconds, Bash checks for new mail.\n" +" MAILPATH\tA colon-separated list of filenames which Bash checks\n" +" \t\tfor new mail.\n" +" OSTYPE\tThe version of Unix this version of Bash is running on.\n" +" PATH\tA colon-separated list of directories to search when\n" +" \t\tlooking for commands.\n" +" PROMPT_COMMAND\tA command to be executed before the printing of each\n" +" \t\tprimary prompt.\n" +" PS1\t\tThe primary prompt string.\n" +" PS2\t\tThe secondary prompt string.\n" +" PWD\t\tThe full pathname of the current directory.\n" +" SHELLOPTS\tA colon-separated list of enabled shell options.\n" +" TERM\tThe name of the current terminal type.\n" +" TIMEFORMAT\tThe output format for timing statistics displayed by the\n" +" \t\t`time' reserved word.\n" +" auto_resume\tNon-null means a command word appearing on a line by\n" +" \t\titself is first looked for in the list of currently\n" +" \t\tstopped jobs. If found there, that job is foregrounded.\n" +" \t\tA value of `exact' means that the command word must\n" +" \t\texactly match a command in the list of stopped jobs. A\n" +" \t\tvalue of `substring' means that the command word must\n" +" \t\tmatch a substring of the job. Any other value means that\n" +" \t\tthe command must be a prefix of a stopped job.\n" +" histchars\tCharacters controlling history expansion and quick\n" +" \t\tsubstitution. The first character is the history\n" +" \t\tsubstitution character, usually `!'. The second is\n" +" \t\tthe `quick substitution' character, usually `^'. The\n" +" \t\tthird is the `history comment' character, usually `#'.\n" +" HISTIGNORE\tA colon-separated list of patterns used to decide which\n" +" \t\tcommands should be saved on the history list.\n" +msgstr "" +"BASH_VERSION\tInformace o verzi v tomto Bashi.\n" +" CDPATH\tDvojtečkou oddělený seznam adresářů, který se prohledává\n" +" \t\tna adresáře zadané jako argumenty u „cd“.\n" +" GLOBIGNORE\tDvojtečkou oddělený seznam vzorů popisujících jména souborů,\n" +" \t\tkterá budou ignorována při expanzi cest.\n" +" HISTFILE\tJméno souboru, kde je uložena historie vaÅ¡ich příkazů.\n" +" HISTFILESIZE\tMaximální počet řádků, které tento soubor smí obsahovat.\n" +" HISTSIZE\tMaximální počet řádků historie, které jsou dostupné uvnitř\n" +" \t\tběžícího shellu.\n" +" HOME\tCelá cesta do vaÅ¡eho domovského adresáře.\n" +" HOSTNAME\tJméno současného stroje.\n" +" HOSTTYPE\tDruh CPU, na kterém tento Bash běží.\n" +" IGNOREEOF\tŘídí reakci shellu na přijetí znaku EOF (konec souboru)\n" +" \t\tpři samotném vstupu. Je-li nastaveno, pak její hodnota udává\n" +" \t\tpočet znaků EOF, které mohou bezprostředně následovat na prázdném\n" +" \t\třádku, dříve než shell skončí (implicitní hodnota je 10). Není-li\n" +" \t\tnastaveno, EOF značí konec vstupu.\n" +" MACHTYPE\tŘetězec popisující systém, na kterém tento Bash běží.\n" +" MAILCHECK\tJak často, v sekundách, kontroluje Bash novou poÅ¡tu.\n" +" MAILPATH\tDvojtečkou oddělený seznam názvů souborů, které Bash\n" +" \t\tkontroluje na novou poÅ¡tu.\n" +" OSTYPE\tVerze Unixu, na kterém tento Bash běží.\n" +" PATH\tDvojtečkou oddělený seznam adresářů, které jsou prohledávány\n" +" \t\tna příkazy.\n" +" PROMPT_COMMAND\tPříkaz, který je proveden před vytiÅ¡těním každé\n" +" \t\tprimární výzvy shellu.\n" +" PS1\t\tŘetězec prvotní výzvy shellu.\n" +" PS2\t\tŘetězec druhotné výzvy shellu.\n" +" PWD\t\tCelé jméno cesty do aktuálního adresáře.\n" +" SHELLOPTS\tDvojtečkou oddělený seznam zapnutých přepínačů shellu.\n" +" TERM\tNázev druhu současného terminálu.\n" +" TIMEFORMAT\tVýstupní formát časové statistiky zobrazované vyhrazeným\n" +" \t\tslovem „time“.\n" +" auto_resume\tNeprázdná hodnota znamená slovo příkazu objevující se\n" +" \t\tna řádce automaticky, které je nejprve vyhledáno v seznamu\n" +" \t\tprávě pozastavených úloh. Je-li tam nalezeno, daná úloha bude\n" +" \t\tpřepnuta na popředí. Hodnota „exact“ znamená, že slovo příkazu\n" +" \t\tse musí přesně shodovat s příkazem v seznamu pozastavených úloh.\n" +" \t\tHodnota „substring“ znamená, že slovo příkazu se musí shodovat\n" +" \t\ts podřetězcem úlohy. Jakákoliv jiná hodnota znamená, že příkaz\n" +" \t\tmusí být předponou pozastavené úlohy.\n" +" histchars\tZnaky řídící expanzi historie a rychlého nahrazování.\n" +" \t\tPrvní znak je znak nahrazení historie, obvykle „!“. Druhý je\n" +" \t\tznak „rychlého nahrazování“, obvykle „^“. Třetí je znak\n" +" \t\t„komentáře historie“, obvykle „#“.\n" +" HISTIGNORE\tDvojtečkou oddělený seznam vzorů používaný na\n" +" \t\trozliÅ¡ení, které příkazy by měly být uloženy do seznamu\n" +" \t\thistorie.\n" + +#: builtins.c:1295 +msgid "" +"Adds a directory to the top of the directory stack, or rotates\n" +" the stack, making the new top of the stack the current working\n" +" directory. With no arguments, exchanges the top two directories.\n" +" \n" +" +N\tRotates the stack so that the Nth directory (counting\n" +" \tfrom the left of the list shown by `dirs', starting with\n" +" \tzero) is at the top.\n" +" \n" +" -N\tRotates the stack so that the Nth directory (counting\n" +" \tfrom the right of the list shown by `dirs', starting with\n" +" \tzero) is at the top.\n" +" \n" +" -n\tsuppress the normal change of directory when adding directories\n" +" \tto the stack, so only the stack is manipulated.\n" +" \n" +" dir\tadds DIR to the directory stack at the top, making it the\n" +" \tnew current working directory.\n" +" \n" +" You can see the directory stack with the `dirs' command." +msgstr "" +"Přidá adresář na vrchol zásobníku adresářů nebo zásobník zrotuje tak,\n" +" že nový vrchol zásobníku se stane současným pracovním adresářem. Bez\n" +" argumentů prohodí dva vrchní adresáře.\n" +" \n" +" +N\tZrotuje zásobník tak, že N. adresář (počítáno zleva na seznamu\n" +" \tzobrazovaném pomocí „dirs“, počínaje nulou) se dostane na vrchol.\n" +" \n" +" -N\tZrotuje zásobník tak, že N. adresář (počítáno zprava na seznamu\n" +" \tzobrazovaném pomocí „dirs“, počínaje nulou) se dostane na vrchol.\n" +" \n" +" -n\tpotlačí obvyklou změnu adresáře, když se na zásobník přidávají\n" +" \tadresáře, takže změněn bude pouze zásobník.\n" +" \n" +" adresář\n" +" \tpřidá ADRESÁŘ na vrchol zásobníku adresářů a učiní jej novým\n" +" \tsoučasným pracovním adresářem.\n" +" \n" +" Zásobník adresářů si můžete prohlédnout příkazem „dirs“." + +#: builtins.c:1321 +msgid "" +"Removes entries from the directory stack. With no arguments,\n" +" removes the top directory from the stack, and cd's to the new\n" +" top directory.\n" +" \n" +" +N\tremoves the Nth entry counting from the left of the list\n" +" \tshown by `dirs', starting with zero. For example: `popd +0'\n" +" \tremoves the first directory, `popd +1' the second.\n" +" \n" +" -N\tremoves the Nth entry counting from the right of the list\n" +" \tshown by `dirs', starting with zero. For example: `popd -0'\n" +" \tremoves the last directory, `popd -1' the next to last.\n" +" \n" +" -n\tsuppress the normal change of directory when removing directories\n" +" \tfrom the stack, so only the stack is manipulated.\n" +" \n" +" You can see the directory stack with the `dirs' command." +msgstr "" +"Odstraní položku ze zásobníku adresářů. Bez argumentů odstraní adresář\n" +" z vrcholu zásobníku a provede „cd“ do nového adresáře z vrchu zásobníku.\n" +" \n" +" +N\todstraní N. položku počítáno zleva na seznamu zobrazovaném pomocí\n" +" \t„dirs“, počínaje nulou. Na příklad: „popd +0“ odstraní poslední\n" +" adresář, „popd -1“ další vedle posledního.\n" +" \n" +" -N\todstraní N. položku počítáno zprava na seznamu zobrazovaném pomocí\n" +" \t„dirs“, počínaje nulou. Na příklad: „popd -0“ odstraní poslední\n" +" adresář, „popd -1“ další vedle posledního.\n" +" \n" +" -n\tpotlačí obvyklou změnu adresáře, když se ze zásobníku odebírají\n" +" \tadresáře, takže změněn bude pouze zásobník.\n" +" \n" +" Zásobník adresářů si můžete prohlédnout příkazem „dirs“." + +#: builtins.c:1344 +msgid "" +"Display the list of currently remembered directories. Directories\n" +" find their way onto the list with the `pushd' command; you can get\n" +" back up through the list with the `popd' command.\n" +" \n" +" The -l flag specifies that `dirs' should not print shorthand versions\n" +" of directories which are relative to your home directory. This means\n" +" that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag\n" +" causes `dirs' to print the directory stack with one entry per line,\n" +" prepending the directory name with its position in the stack. The -p\n" +" flag does the same thing, but the stack position is not prepended.\n" +" The -c flag clears the directory stack by deleting all of the elements.\n" +" \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" +" \tdirs when invoked without options, starting with zero." +msgstr "" +"Zobrazí seznam právě zapamatovaných adresářů. Adresáře si najdou svoji\n" +" cestu na seznam příkazem „pushd“ a procházet seznamem zpět lze příkazem\n" +" „popd“. \n" +" Příznak -l říká, aby „dirs“ nevypisoval zkrácené verze adresářů, které\n" +" jsou relativní vaÅ¡emu domovskému adresáři. To znamená, že „~/bin“ může být\n" +" zobrazeno jako „/homes/bfox/bin“. Příznak -v způsobuje, že „dirs“ vytiskne\n" +" zásobník adresářů po jedné položce na řádek, přičemž názvu adresáře\n" +" předřadí jeho umístění na zásobníku. Příznak -p dělá tu samou věc, ale\n" +" umístění na zásobníku předřazeno nebude. Příznak -c vyprázdní zásobník\n" +" adresářů tím, že smaže vÅ¡echny jeho prvky.\n" +" \n" +" +N\tzobrazí N. položku počítáno zleva na seznamu, který zobrazuje\n" +" \tdirs, když je vyvolán bez přepínačů, počínaje nulou.\n" +" \n" +" -N\tzobrazí N. položku počítáno zprava na seznamu, který zobrazuje\n" +" \tdirs, když je vyvolán bez přepínačů, počínaje nulou." + +#: builtins.c:1367 +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 "" +"Přepne hodnoty proměnných řídící volitelné chování. Přepínač -s znamená,\n" +" že se každý NÁZEV_VOLBY zapne (nastaví). Přepínač -u každý NÁZEV_VOLBY\n" +" vypne. Přepínač -q potlačí výstup. Zda je nebo není nastaven každý\n" +" NÁZEV_VOLBY, indikuje návratový kód. Přepínač -o omezí NÁZVY_VOLEB na ty,\n" +" které jsou definovány pro použití s „set -o“. Bez přepínačů nebo\n" +" s přepínačem -p je zobrazen seznam vÅ¡ech nastavitelných voleb včetně\n" +" indikace, zda je každá nastavena." + +#: builtins.c:1380 +msgid "" +"printf formats and prints ARGUMENTS under control of the FORMAT. FORMAT\n" +" 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" +" argument. In addition to the standard printf(1) formats, %b means to\n" +" expand backslash escape sequences in the corresponding argument, and %q\n" +" means to quote the argument in a way that can be reused as shell input.\n" +" If the -v option is supplied, the output is placed into the value of the\n" +" shell variable VAR rather than being sent to the standard output." +msgstr "" +"printf naformátuje a vytiskne ARGUMENTY podle definice FORMÁTU. FORMÁT\n" +" je řetězec znaků, který obsahuje tři druhy objektů: obyčejné znaky, které\n" +" jsou prostě zkopírovány na standardní výstup, posloupnosti escapových\n" +" znaků, které jsou zkonvertovány a zkopírovány na standardní výstup a\n" +" formátovací definice, z nichž každá způsobí vytiÅ¡tění dalšího argumentu.\n" +" Doplňky ke standardním formátům printf(1): %b způsobí expanzi posloupností\n" +" escapovaných zpětným lomítkem v odpovídajícím argumentu a %q způsobí\n" +" oescapování argumentu takovým způsobem, že jej bude možné použít jako vstup\n" +" shellu. Je-li zadán přepínač -v, bude výstup umístěn do proměnné shellu\n" +" PROMĚNNÁ namísto odeslání na standardní výstup." + +#: builtins.c:1396 +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 "" +"U každého NÁZVU sdělí, jak budou argumenty doplněny. Je-li zadán\n" +" přepínač -p nebo není-li zadán přepínač žádný, budou existující definice\n" +" doplňování vytiÅ¡těny tak. že je bude možné znovu použít jako vstup.\n" +" Přepínač -r odstraní definici doplnění pro každý NÁZEV nebo chybí-li NÁZVY,\n" +" odstraní vÅ¡echny definice." + +#: builtins.c:1408 +msgid "" +"Display the possible completions depending on the options. Intended\n" +" to be used from within a shell function generating possible completions.\n" +" If the optional WORD argument is supplied, matches against WORD are\n" +" generated." +msgstr "" +"Zobrazí možná doplnění v závislosti na přepínačích. Je zamýšleno pro\n" +" použití uvnitř shellových funkcí generujících možná doplnění. Je-li\n" +" poskytnut volitelný argument SLOVO, budou vygenerovány shody proti SLOVU." diff --git a/po/lt.gmo b/po/lt.gmo new file mode 100644 index 000000000..002e50f38 Binary files /dev/null and b/po/lt.gmo differ diff --git a/po/lt.po b/po/lt.po index 5cdde2e1b..4a69bd618 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: bash-3.2\n" "POT-Creation-Date: 2006-10-23 17:20-0400\n" -"PO-Revision-Date: 2008-03-14 22:41+0200\n" +"PO-Revision-Date: 2008-07-28 03:07-0400\n" "Last-Translator: Gintautas Miliauskas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" #: arrayfunc.c:48 msgid "bad array subscript" -msgstr "" +msgstr "blogas masyvo indeksas" #: arrayfunc.c:362 #, c-format msgid "%s: cannot assign to non-numeric index" -msgstr "" +msgstr "%s: nepavyko priskirti prie neskaitinio indekso" #: bashhist.c:331 #, c-format @@ -32,7 +32,7 @@ msgstr "%s: nepavyko sukurti: %s" #: bashline.c:3030 msgid "bash_execute_unix_command: cannot find keymap for command" -msgstr "" +msgstr "bash_execute_unix_command: nepavyko rasti keymapo komandai" #: bashline.c:3079 #, c-format @@ -62,7 +62,7 @@ msgstr "%s: nepavyko perskaityti: %s" #: builtins/bind.def:248 #, c-format msgid "`%s': cannot unbind" -msgstr "" +msgstr "„%s“: nepavyko atjungti (unbind)" #: builtins/bind.def:283 #, c-format @@ -77,7 +77,7 @@ msgstr "%s nėra priskirtas jokiam klaviÅ¡ui.\n" #: builtins/bind.def:295 #, c-format msgid "%s can be invoked via " -msgstr "%s gali bÅ«ti iÅ¡kviestas su" +msgstr "%s gali bÅ«ti iÅ¡kviestas su " #: builtins/break.def:128 msgid "only meaningful in a `for', `while', or `until' loop" @@ -85,7 +85,7 @@ msgstr "prasminga tik „for“, „while“ arba „until“ cikle" #: builtins/caller.def:131 msgid "Returns the context of the current subroutine call." -msgstr "" +msgstr "Grąžina esamos procedÅ«ros kontekstą." #: builtins/caller.def:132 builtins/caller.def:136 builtins/pushd.def:666 #: builtins/pushd.def:674 builtins/pushd.def:677 builtins/pushd.def:687 @@ -97,23 +97,23 @@ msgstr " " #: builtins/caller.def:133 msgid "Without EXPR, returns returns \"$line $filename\". With EXPR," -msgstr "" +msgstr "Be EXPR, grąžina „$line $filename“. Su EXPR," #: builtins/caller.def:134 msgid "returns \"$line $subroutine $filename\"; this extra information" -msgstr "" +msgstr "grąžina „$line $subroutine $filename“; Å¡i papildoma informacija" #: builtins/caller.def:135 msgid "can be used used to provide a stack trace." -msgstr "" +msgstr "gali bÅ«ti panaudota generuojant steko iÅ¡rašą (stack trace)." #: builtins/caller.def:137 msgid "The value of EXPR indicates how many call frames to go back before the" -msgstr "" +msgstr "EXPR reikÅ¡mė nurodo, per kiek kvietimo freimų eiti atgal prieÅ¡" #: builtins/caller.def:138 msgid "current one; the top frame is frame 0." -msgstr "" +msgstr "esamą. VirÅ¡utinis freimas yra 0." #: builtins/cd.def:204 msgid "HOME not set" @@ -316,7 +316,7 @@ msgstr "%s: nepavyko paleisti: %s" #: builtins/exit.def:83 msgid "not login shell: use `exit'" -msgstr "" +msgstr "ne prisijungimo aplinka: naudokite „exit“" #: builtins/exit.def:111 msgid "There are stopped jobs.\n" @@ -328,7 +328,7 @@ msgstr "komandų nerasta" #: builtins/fc.def:328 msgid "history specification" -msgstr "" +msgstr "istorijos specifikacija" #: builtins/fc.def:349 #, c-format @@ -338,7 +338,7 @@ msgstr "%s: nepavyko atverti laikinojo failo: %s" #: builtins/fg_bg.def:149 #, c-format msgid "job %d started without job control" -msgstr "" +msgstr "darbas %d pradėtas be darbų valdymo" #: builtins/getopt.c:109 #, c-format @@ -352,7 +352,7 @@ msgstr "%s: parametrui reikia argumento -- %c\n" #: builtins/hash.def:84 msgid "hashing disabled" -msgstr "" +msgstr "maiÅ¡a iÅ¡jungta" #: builtins/hash.def:130 #, c-format @@ -361,11 +361,11 @@ msgstr "%s: maiÅ¡os lentelė tuščia\n" #: builtins/help.def:108 msgid "Shell commands matching keywords `" -msgstr "" +msgstr "Aplinkos komandos, atitinkančios raktažodžius „" #: builtins/help.def:110 msgid "Shell commands matching keyword `" -msgstr "" +msgstr "Aplinkos komandos, atitinkančios raktažodį „" #: builtins/help.def:138 #, c-format @@ -387,28 +387,35 @@ msgid "" "A star (*) next to a name means that the command is disabled.\n" "\n" msgstr "" +"Å ios aplinkos komandos vidinės. Jei norite pamatyti šį sąrašą, įveskite „help“.\n" +"Ä®veskite „help fn“, jei norite sužinoti daugiau apie funkciją „fn“.\n" +"Ä®veskite „info bash“, jei norite daugiau sužinoti apie aplinką apskritai.\n" +"Naudokite „man -k“ ir „info“, jei norite sužinoti daugiau apie komandas, nesančiasÅ¡iame sąraÅ¡e.\n" +"\n" +"Žvaigždutė (*) prie vardo reiÅ¡kia, kad komanda iÅ¡jungta.\n" +"\n" #: builtins/history.def:150 msgid "cannot use more than one of -anrw" -msgstr "negalima naudoti daugiau negu vieno iÅ¡ -anrw" +msgstr "negalima naudoti daugiau negu vieno parametro iÅ¡ -anrw" #: builtins/history.def:182 msgid "history position" -msgstr "" +msgstr "istorijos pozicija" #: builtins/history.def:400 #, c-format msgid "%s: history expansion failed" -msgstr "" +msgstr "%s: istorijos iÅ¡skleidimas nesėkmingas" #: builtins/jobs.def:99 msgid "no other options allowed with `-x'" -msgstr "" +msgstr "su „-x“ neleidžiama naudoti kitų parametrų" #: builtins/kill.def:187 #, c-format msgid "%s: arguments must be process or job IDs" -msgstr "" +msgstr "%s: argumentai turi bÅ«ti procesų arba darbų ID" #: builtins/kill.def:250 msgid "Unknown error" @@ -442,156 +449,157 @@ msgstr "" #: builtins/pushd.def:663 msgid "Display the list of currently remembered directories. Directories" -msgstr "" +msgstr "Rodyti prisimenamų aplankų sąrašą. Aplankai" #: builtins/pushd.def:664 msgid "find their way onto the list with the `pushd' command; you can get" -msgstr "" +msgstr "atsiduria sąraÅ¡e su „pushd“ komanda; galite kilti" #: builtins/pushd.def:665 msgid "back up through the list with the `popd' command." -msgstr "" +msgstr "sąraÅ¡u su „popd“ komanda." #: builtins/pushd.def:667 msgid "The -l flag specifies that `dirs' should not print shorthand versions" -msgstr "" +msgstr "Parametras -l nurodo, kad „dirs“ neturėtų spausdinti sutrumpintų" #: builtins/pushd.def:668 msgid "of directories which are relative to your home directory. This means" -msgstr "" +msgstr "aplankų, santykinių namų aplinkui, pavadinimų. Tai reiÅ¡kia, kad" #: builtins/pushd.def:669 +#, fuzzy msgid "that `~/bin' might be displayed as `/homes/bfox/bin'. The -v flag" -msgstr "" +msgstr "kad „~/bin“ bus rodomas kaip „/home/bfox/bin“. Su parametru -v" #: builtins/pushd.def:670 msgid "causes `dirs' to print the directory stack with one entry per line," -msgstr "" +msgstr "„dirs“ iÅ¡veda aplankų steką po vieną pavadinimą eilutėje," #: builtins/pushd.def:671 msgid "prepending the directory name with its position in the stack. The -p" -msgstr "" +msgstr "prieÅ¡ pavadinimą priraÅ¡oma aplanko pozicija steke. Parametras -p" #: builtins/pushd.def:672 msgid "flag does the same thing, but the stack position is not prepended." -msgstr "" +msgstr "turi tokį patį efektą, tačiau pozicija steke neiÅ¡vedama." #: builtins/pushd.def:673 msgid "The -c flag clears the directory stack by deleting all of the elements." -msgstr "" +msgstr "Parametras -c iÅ¡valo aplankų steką." #: builtins/pushd.def:675 msgid "+N displays the Nth entry counting from the left of the list shown by" -msgstr "" +msgstr "+N rodo N-tąjį įrašą skaičiuojant iÅ¡ kairės sąraÅ¡e, rodomame" #: builtins/pushd.def:676 builtins/pushd.def:679 msgid " dirs when invoked without options, starting with zero." -msgstr "" +msgstr " „dirs“, iÅ¡kviesto be parametrų (skaičiuojama nuo nulio)." #: builtins/pushd.def:678 msgid "-N displays the Nth entry counting from the right of the list shown by" -msgstr "" +msgstr "-N rodo N-tajį įrašą skaičiuojant iÅ¡ deÅ¡inės sąraÅ¡e, rodomame" #: builtins/pushd.def:684 msgid "Adds a directory to the top of the directory stack, or rotates" -msgstr "" +msgstr "Ä®deda aplanką į aplankų steko viršų, arba pasuka" #: builtins/pushd.def:685 msgid "the stack, making the new top of the stack the current working" -msgstr "" +msgstr "steką, nustatydamas esamą aplanką į naująją steko viršūnės reikÅ¡mę." #: builtins/pushd.def:686 msgid "directory. With no arguments, exchanges the top two directories." -msgstr "" +msgstr "Be argumentų, sukeičia virÅ¡utinius du aplankus." #: builtins/pushd.def:688 msgid "+N Rotates the stack so that the Nth directory (counting" -msgstr "" +msgstr "+N Pasuka steką, kad N-tasis aplankas (skaičiuojant" #: builtins/pushd.def:689 msgid " from the left of the list shown by `dirs', starting with" -msgstr "" +msgstr " iÅ¡ kairės sąraÅ¡e, rodomame „dirs“, pradedant nuo nulio)" #: builtins/pushd.def:690 builtins/pushd.def:694 msgid " zero) is at the top." -msgstr "" +msgstr " bÅ«tų virÅ¡uje." #: builtins/pushd.def:692 msgid "-N Rotates the stack so that the Nth directory (counting" -msgstr "" +msgstr "-N Pasuka steką, kad N-tasis aplankas (skaičiuojant" #: builtins/pushd.def:693 msgid " from the right of the list shown by `dirs', starting with" -msgstr "" +msgstr " iÅ¡ deÅ¡inės sąraÅ¡e, rodomame „dirs“, pradedant nuo nulio)" #: builtins/pushd.def:696 msgid "-n suppress the normal change of directory when adding directories" -msgstr "" +msgstr "-n iÅ¡jungti įprastą aplanko pakeitimą pridedant aplankus" #: builtins/pushd.def:697 msgid " to the stack, so only the stack is manipulated." -msgstr "" +msgstr " į steką, taigi, pakeičiamas tik stekas." #: builtins/pushd.def:699 msgid "dir adds DIR to the directory stack at the top, making it the" -msgstr "" +msgstr "dir prideda DIR į aplankų steko viršų; DIR nustatomas" #: builtins/pushd.def:700 msgid " new current working directory." -msgstr "" +msgstr " naujuoju darbiniu aplanku." #: builtins/pushd.def:702 builtins/pushd.def:722 msgid "You can see the directory stack with the `dirs' command." -msgstr "" +msgstr "Galite pamatyti aplankų steką komanda „dirs“." #: builtins/pushd.def:707 msgid "Removes entries from the directory stack. With no arguments," -msgstr "" +msgstr "Å alina įraÅ¡us iÅ¡ aplankų steko. Jei nenurodyta argumentų," #: builtins/pushd.def:708 msgid "removes the top directory from the stack, and cd's to the new" -msgstr "" +msgstr "paÅ¡alina virÅ¡utinį aplanką iÅ¡ steko ir pakeičia darbinį aplanką" #: builtins/pushd.def:709 msgid "top directory." -msgstr "" +msgstr "steko viršūnėje esančiu." #: builtins/pushd.def:711 msgid "+N removes the Nth entry counting from the left of the list" -msgstr "" +msgstr "+N paÅ¡alina N-tąjį įrašą skaičiuojant iÅ¡ kairės sąraÅ¡e, iÅ¡vedamame „dir“" #: builtins/pushd.def:712 msgid " shown by `dirs', starting with zero. For example: `popd +0'" -msgstr "" +msgstr " (skaičiuojama nuo nulio). Pavyzdžiui: „popd +0“" #: builtins/pushd.def:713 msgid " removes the first directory, `popd +1' the second." -msgstr "" +msgstr " paÅ¡alina pirmąjį aplanką, „popd +1“ – antrąjį." #: builtins/pushd.def:715 msgid "-N removes the Nth entry counting from the right of the list" -msgstr "" +msgstr "+N paÅ¡alina N-tąjį įrašą skaičiuojant iÅ¡ deÅ¡inės sąraÅ¡e, iÅ¡vedamame „dir“" #: builtins/pushd.def:716 msgid " shown by `dirs', starting with zero. For example: `popd -0'" -msgstr "" +msgstr " (skaičiuojama nuo nulio). Pavyzdžiui: „popd -0“" #: builtins/pushd.def:717 msgid " removes the last directory, `popd -1' the next to last." -msgstr "" +msgstr " paÅ¡alina paskutinį aplanką, „popd -1“ – prieÅ¡paskutinį." #: builtins/pushd.def:719 msgid "-n suppress the normal change of directory when removing directories" -msgstr "" +msgstr " iÅ¡jungti įprastą darbinio aplanko keitimą Å¡alinant aplankus" #: builtins/pushd.def:720 msgid " from the stack, so only the stack is manipulated." -msgstr "" +msgstr " iÅ¡ steko, taigi, pakeičiamas tik stekas." #: builtins/read.def:210 #, c-format msgid "%s: invalid timeout specification" -msgstr "" +msgstr "%s: klaidinga laiko ribos (timeout) specifikacija" #: builtins/read.def:233 #, c-format @@ -614,17 +622,17 @@ msgstr "galima grįžti (return) tik iÅ¡ funkcijos ar scenarijaus" #: builtins/set.def:744 msgid "cannot simultaneously unset a function and a variable" -msgstr "" +msgstr "negalima kartu iÅ¡trinti funkcijos ir kintamojo" #: builtins/set.def:781 #, c-format msgid "%s: cannot unset" -msgstr "" +msgstr "%s: nepavyko iÅ¡trinti" #: builtins/set.def:788 #, c-format msgid "%s: cannot unset: readonly %s" -msgstr "" +msgstr "%s: nepavyko iÅ¡trinti: %s tik skaitymui" #: builtins/set.def:799 #, c-format @@ -642,12 +650,12 @@ msgstr "postÅ«mių skaičius" #: builtins/shopt.def:227 msgid "cannot set and unset shell options simultaneously" -msgstr "" +msgstr "negalima aplinkos nuostatos vienu metu įjungti ir iÅ¡jungti" #: builtins/shopt.def:292 #, c-format msgid "%s: invalid shell option name" -msgstr "" +msgstr "%s: netaisyklingas aplinkos nuostatos pavadinimas" #: builtins/source.def:115 msgid "filename argument required" @@ -664,7 +672,7 @@ msgstr "nepavyko sustabdyti" #: builtins/suspend.def:105 msgid "cannot suspend a login shell" -msgstr "" +msgstr "nepavyko sustabdyti prisijungimo aplinkos" #: builtins/type.def:232 #, c-format @@ -694,7 +702,7 @@ msgstr "%s yra %s\n" #: builtins/type.def:339 #, c-format msgid "%s is hashed (%s)\n" -msgstr "" +msgstr "%s yra heÅ¡uotas (%s)\n" #: builtins/ulimit.def:352 #, c-format @@ -723,12 +731,12 @@ msgstr "aÅ¡tuntainis skaičius" #: builtins/umask.def:226 #, c-format msgid "`%c': invalid symbolic mode operator" -msgstr "" +msgstr "„%c“: netaisyklingas simbolinės veiksenos operatorius" #: builtins/umask.def:281 #, c-format msgid "`%c': invalid symbolic mode character" -msgstr "" +msgstr "„%c“: netaisyklingas simbolinės veiksenos simbolis" #: error.c:163 #, c-format @@ -758,7 +766,7 @@ msgstr "blogas jungtukas" #: error.c:406 msgid "bad jump" -msgstr "" +msgstr "blogas Å¡uolis" #: error.c:444 #, c-format @@ -772,7 +780,7 @@ msgstr "\alaukiant įvedimo baigėsi laikas: automatiÅ¡kai atsijungta\n" #: execute_cmd.c:474 #, c-format msgid "cannot redirect standard input from /dev/null: %s" -msgstr "" +msgstr "nepavyko peradresuoti standartinio įvedimo iÅ¡ /dev/null: %s" #: execute_cmd.c:1058 #, c-format @@ -802,7 +810,7 @@ msgstr "%s: negalima vykdyti dvejetainių failų" #: execute_cmd.c:4112 #, c-format msgid "cannot duplicate fd %d to fd %d" -msgstr "" +msgstr "nepavyko dublikuoti fd %d į fd %d" #: expr.c:241 msgid "expression recursion level exceeded" @@ -838,7 +846,7 @@ msgstr "eksponentas mažesnis už 0" #: expr.c:822 msgid "identifier expected after pre-increment or pre-decrement" -msgstr "" +msgstr "po prieÅ¡-didinimo ar prieÅ¡-mažinimo operatoriaus tikėtasi identifikatoriaus" #: expr.c:850 msgid "missing `)'" @@ -871,12 +879,12 @@ msgstr "getcwd: nepavyko pasiekti aukÅ¡tesnių aplankų" #: input.c:237 #, c-format msgid "cannot allocate new file descriptor for bash input from fd %d" -msgstr "" +msgstr "nepavyko iÅ¡skirti naujo failo deskriptoriaus bash įvedimui iÅ¡ fd %d" #: input.c:245 #, c-format msgid "save_bash_input: buffer already exists for new fd %d" -msgstr "" +msgstr "save_bash_input: naujam fd %d buferis jau egzistuoja" #: jobs.c:876 #, c-format @@ -886,7 +894,7 @@ msgstr "" #: jobs.c:983 #, c-format msgid "deleting stopped job %d with process group %ld" -msgstr "" +msgstr "trinamas sustabdytas darbas %d procesų grupėje %ld" #: jobs.c:1378 #, c-format @@ -896,7 +904,7 @@ msgstr "describe_pid: %ld: tokio pid nėra" #: jobs.c:2061 nojobs.c:575 #, c-format msgid "wait: pid %ld is not a child of this shell" -msgstr "" +msgstr "wait: pid %ld nėra Å¡ios aplinkos dukterinis procesas" #: jobs.c:2265 #, c-format @@ -911,7 +919,7 @@ msgstr "wait_for_job: darbas %d yra sustabdytas" #: jobs.c:2746 #, c-format msgid "%s: job has terminated" -msgstr "%s: darbas baigtas" +msgstr "%s: darbas užsibaigė" #: jobs.c:2755 #, c-format @@ -938,49 +946,49 @@ msgstr "" #: lib/malloc/malloc.c:799 msgid "malloc: block on free list clobbered" -msgstr "" +msgstr "malloc: blokas iÅ¡ laisvų blokų sąraÅ¡o sugadintas" #: lib/malloc/malloc.c:876 msgid "free: called with already freed block argument" -msgstr "" +msgstr "free: iÅ¡kviestas su jau atlaisvintu bloku" #: lib/malloc/malloc.c:879 msgid "free: called with unallocated block argument" -msgstr "" +msgstr "free: iÅ¡kviestas su nerezervuotu bloku" #: lib/malloc/malloc.c:898 msgid "free: underflow detected; mh_nbytes out of range" -msgstr "" +msgstr "free: atvirkÅ¡tinis perpildymas (underflow); mh_nbytes už ribos" #: lib/malloc/malloc.c:904 msgid "free: start and end chunk sizes differ" -msgstr "" +msgstr "free: pradžios ir pabaigos blokų (chunk) dydžiai skiriasi" #: lib/malloc/malloc.c:1003 msgid "realloc: called with unallocated block argument" -msgstr "" +msgstr "realloc: iÅ¡kviestas su nerezervuotu bloku" #: lib/malloc/malloc.c:1018 msgid "realloc: underflow detected; mh_nbytes out of range" -msgstr "" +msgstr "realloc: atvirkÅ¡tinis perpildymas (underflow); mh_nbytes už ribos" #: lib/malloc/malloc.c:1024 msgid "realloc: start and end chunk sizes differ" -msgstr "" +msgstr "realloc: pradžios ir pabaigos blokų (chunk) dydžiai skiriasi" #: lib/malloc/table.c:176 msgid "register_alloc: alloc table is full with FIND_ALLOC?\n" -msgstr "" +msgstr "register_alloc: alloc lentelė pilna su FIND_ALLOC?\n" #: lib/malloc/table.c:183 #, c-format msgid "register_alloc: %p already in table as allocated?\n" -msgstr "" +msgstr "register_alloc: %p jau lentelėje kaip rezervuotas?\n" #: lib/malloc/table.c:219 #, c-format msgid "register_free: %p already in table as free?\n" -msgstr "" +msgstr "register_free: %p jau lentelėje kaip laisvas?\n" #: lib/malloc/watch.c:46 msgid "allocated" @@ -1005,11 +1013,11 @@ msgstr "klaida: nežinoma operacija" #: lib/malloc/watch.c:56 #, c-format msgid "malloc: watch alert: %p %s " -msgstr "" +msgstr "malloc: stebinio įspėjimas: %p %s " #: lib/sh/fmtulong.c:101 msgid "invalid base" -msgstr "" +msgstr "netaisyklingas pagrindas" #: lib/sh/netopen.c:168 #, c-format @@ -1237,37 +1245,39 @@ msgid "" "Usage:\t%s [GNU long option] [option] ...\n" "\t%s [GNU long option] [option] script-file ...\n" msgstr "" +"Naudojimas:\t%s [GNU ilgas parametras] [parametras] ...\n" +"\t%s [GNU ilgas parametras] [parametras] scenarijaus-failas ...\n" #: shell.c:1737 msgid "GNU long options:\n" -msgstr "" +msgstr "GNU ilgi parametrai:\n" #: shell.c:1741 msgid "Shell options:\n" -msgstr "" +msgstr "Aplinkos parametrai:\n" #: shell.c:1742 msgid "\t-irsD or -c command or -O shopt_option\t\t(invocation only)\n" -msgstr "" +msgstr "\t-irsD arba -c komanda arba -O shopt_nustatymas\t\t(tik iÅ¡kvietimui)\n" #: shell.c:1757 #, c-format msgid "\t-%s or -o option\n" -msgstr "" +msgstr "\t-%s arba -o nustatymas\n" #: shell.c:1763 -#, c-format +#, fuzzy, c-format msgid "Type `%s -c \"help set\"' for more information about shell options.\n" -msgstr "" +msgstr "Bandykite „%s --help“ arba „%s --usage“, jei norite gauti daugiau informacijos.\n" #: shell.c:1764 -#, c-format +#, fuzzy, c-format msgid "Type `%s -c help' for more information about shell builtin commands.\n" -msgstr "" +msgstr "Bandykite „ldd --help“, jei norite daugiau informacijos." #: shell.c:1765 msgid "Use the `bashbug' command to report bugs.\n" -msgstr "" +msgstr "Naudokite komandą „bashbug“ klaidoms praneÅ¡ti.\n" #: sig.c:557 #, c-format @@ -1277,12 +1287,12 @@ msgstr "sigprocmask: %d: netaisyklinga operacija" #: subst.c:1160 #, c-format msgid "bad substitution: no closing `%s' in %s" -msgstr "" +msgstr "blogas keitinys: trÅ«ksta „%s“ %s" #: subst.c:2328 #, c-format msgid "%s: cannot assign list to array member" -msgstr "" +msgstr "%s: negalima priskirti sąraÅ¡o masyvo elementui" #: subst.c:4265 subst.c:4281 msgid "cannot make pipe for process substitution" @@ -1332,12 +1342,12 @@ msgstr "%s: parametras tuščias arba nenustatytas" #: subst.c:5342 #, c-format msgid "%s: substring expression < 0" -msgstr "" +msgstr "%s: posekio iÅ¡raiÅ¡ka < 0" #: subst.c:6179 #, c-format msgid "%s: bad substitution" -msgstr "" +msgstr "%s: blogas keitinys" #: subst.c:6255 #, c-format @@ -1393,7 +1403,7 @@ msgstr "run_pending_traps: bloga trap_list[%d] reikÅ¡mė: %p" #: trap.c:319 #, c-format msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself" -msgstr "" +msgstr "run_pending_traps: signalo doroklė yra SIG_DFL, siunčiamas %d (%s) sau" #: trap.c:355 #, c-format @@ -1408,12 +1418,11 @@ msgstr "klaida importuojant funkcijos apibrėžimą „%s“" #: variables.c:711 #, c-format msgid "shell level (%d) too high, resetting to 1" -msgstr "" +msgstr "aplinkos lygmuo (%d) per aukÅ¡tas, nustatoma į 1" #: variables.c:1670 -#, fuzzy msgid "make_local_variable: no function context at current scope" -msgstr "make_local_variable: " +msgstr "" #: variables.c:2813 msgid "all_local_variables: no function context at current scope" @@ -1422,12 +1431,12 @@ msgstr "" #: variables.c:3030 variables.c:3039 #, c-format msgid "invalid character %d in exportstr for %s" -msgstr "" +msgstr "netaisyklingas simbolis %d %s exportstr'e" #: variables.c:3045 #, c-format msgid "no `=' in exportstr for %s" -msgstr "" +msgstr "%s exportstr'e trÅ«ksta „=“" #: variables.c:3472 msgid "pop_var_context: head of shell_variables not a function context" @@ -1435,7 +1444,7 @@ msgstr "" #: variables.c:3485 msgid "pop_var_context: no global_variables context" -msgstr "" +msgstr "pop_var_context: nėra global_variables konteksto" #: variables.c:3557 msgid "pop_scope: head of shell_variables not a temporary environment scope" @@ -1458,7 +1467,7 @@ msgstr "xmalloc: nepavyko iÅ¡skirti %lu baitų" #: xmalloc.c:115 #, c-format msgid "xrealloc: cannot reallocate %lu bytes (%lu bytes allocated)" -msgstr "" +msgstr "xrealloc: nepavyko iÅ¡skirti %lu baitų (iÅ¡skirta %lu baitų)" #: xmalloc.c:117 #, c-format @@ -1468,7 +1477,7 @@ msgstr "xrealloc: nepavyko iÅ¡skirti %lu baitų" #: xmalloc.c:151 #, c-format msgid "xmalloc: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)" -msgstr "" +msgstr "xmalloc: %s:%d: nepavyko iÅ¡skirti %lu baitų (iÅ¡skirta %lu baitų)" #: xmalloc.c:153 #, c-format @@ -1478,7 +1487,7 @@ msgstr "xmalloc: %s:%d: nepavyko iÅ¡skirti %lu baitų" #: xmalloc.c:175 #, c-format msgid "xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)" -msgstr "" +msgstr "xrealloc: %s:%d: nepavyko iÅ¡skirti %lu baitų (iÅ¡skirta %lu baitų)" #: xmalloc.c:177 #, c-format @@ -1494,12 +1503,22 @@ msgid "" " alias substitution when the alias is expanded. Alias returns\n" " true unless a NAME is given for which no alias has been defined." msgstr "" +"„alias“ be argumentų arba su -p nuostata iÅ¡spausdina alternatyviųjų\n" +" vardų sąrašą formatu VARDAS=REIKÅ MĖ į standartinį iÅ¡vedimą.\n" +" Kitu atveju apraÅ¡omas alternatyvusis vardas kiekvienam VARDUI,\n" +" kurio REIKÅ MĖ nurodyta.\n" +"Jei REIKÅ MĖ baigiasi tarpo simboliu, kitame\n" +" žodyje ieÅ¡koma alternatyviųjų vardų keitinių, kai alternatyvusis vardas\n" +" iÅ¡skleidžiamas. „alias“ grąžina „true“, nebent duotas VARDAS, kuriam\n" +" neapraÅ¡ytas joks alternatyvusis vardas." #: builtins.c:257 msgid "" "Remove NAMEs from the list of defined aliases. If the -a option is given,\n" " then remove all alias definitions." msgstr "" +"PaÅ¡alinti VARDUS iÅ¡ apraÅ¡ytų alternatyviųjų vardų sąraÅ¡o. Jei nurodyta\n" +" nuostata -a, paÅ¡alinti visus alternatyviuosius vardus." #: builtins.c:266 msgid "" @@ -1535,12 +1554,16 @@ msgid "" "Exit from within a FOR, WHILE or UNTIL loop. If N is specified,\n" " break N levels." msgstr "" +"IÅ¡eiti iÅ¡ FOR, WHILE arba UNTIL ciklo. Jei nurodytas N,\n" +" iÅ¡eiti aukÅ¡tyn per N lygmenų." #: builtins.c:304 msgid "" "Resume the next iteration of the enclosing FOR, WHILE or UNTIL loop.\n" " If N is specified, resume at the N-th enclosing loop." msgstr "" +"Tęsti kitą FOR, WHILE arba UNTIL ciklo iteraciją.\n" +" Jei N nurodytas, tęsti ciklą, esantį N lygmenų virÅ¡ esamo." #: builtins.c:311 msgid "" @@ -1548,6 +1571,9 @@ msgid "" " shell builtin to be a function, but need the functionality of the\n" " builtin within the function itself." msgstr "" +"Vykdyti aplinkos įtaisytą funkciją. Å i komanda naudinga, kai norite\n" +" vietoje įtaisytos funkcijos naudoti savąją, tačiau reikia\n" +" pasinaudoti įtaisytąja Å¡ios funkcijos viduje." #: builtins.c:320 msgid "" @@ -1560,6 +1586,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 "" +"Grąžina esamos procedÅ«ros kontekstą.\n" +" \n" +" Be IÅ RAIÅ KOS, grąžina „$eilutė $failo_vardas“. Su IÅ RAIÅ KA,\n" +" grąžina „$eilutė $procedÅ«ra $failo_vardas“; Å¡i papildoma informacija\n" +" gali bÅ«ti panaudota kuriant steko iÅ¡rašą (stack trace).\n" +" \n" +" IÅ RAIÅ KOS reikÅ¡mė nurodo, per kiek kvietimo freimų grįžti nuo\n" +" esamo; virÅ¡utinis freimas yra 0." #: builtins.c:334 msgid "" @@ -1575,6 +1609,17 @@ msgid "" " instead of following symbolic links; the -L option forces symbolic links\n" " to be followed." msgstr "" +"Pakeisti esamą aplanką į DIR. Kintamasis $HOME yra\n" +" numatytasis DIR. Kintamasis CDPATH nurodo aplankus, kuriuose bus\n" +" ieÅ¡koma DIR. Aplankų pavadinimai CDPATH skiriami dvitaÅ¡kiu (:).\n" +" Tuščias aplanko vardas tapatus esamam aplankui, t.y. „.“.\n" +" Jei DIR prasideda pasviruoju brÅ«kÅ¡niu (/), į CDPATH neatsižvelgiama.\n" +" Jei aplankas nerastas ir aplinkos nuostata „cdable_vars“ įjungta,\n" +" tada žodis bandomas kaip kintamojo pavadinimas. Jei kintamasis\n" +" turi reikÅ¡mę, tada esamas aplankas pakeičiamas į kintamojo reikÅ¡mę.\n" +" Parametras -P nurodo, kad turi bÅ«ti naudojama fizinė aplankų struktÅ«ra,\n" +" užuot sekus simbolines nuorodas; parametras -L nurodo, kad turi bÅ«ti\n" +" sekama simbolinėmis nuorodomis." #: builtins.c:350 msgid "" @@ -1582,18 +1627,21 @@ msgid "" " the physical directory, without any symbolic links; the -L option\n" " makes pwd follow symbolic links." msgstr "" +"IÅ¡spausdinti esamą aplanką. Su parametru -P „pwd“ spausdina\n" +" fizinį aplanką, be jokių simbolinių nuorodų; su parametru -L\n" +" „pwd“ seka simbolinėmis nuorodomis." #: builtins.c:358 msgid "No effect; the command does nothing. A zero exit code is returned." -msgstr "" +msgstr "Jokio efekto; komanda nieko nedaro. Grąžinamas klaidos kodas 0." #: builtins.c:364 msgid "Return a successful result." -msgstr "" +msgstr "Grąžinti sėkmingą rezultatą." #: builtins.c:370 msgid "Return an unsuccessful result." -msgstr "" +msgstr "Grąžinti nesėkmingą rezultatą." #: builtins.c:376 msgid "" @@ -1635,7 +1683,7 @@ msgstr "" #: builtins.c:416 msgid "Obsolete. See `declare'." -msgstr "" +msgstr "Pasenusi komanda. Žr. „declare“." #: builtins.c:422 msgid "" @@ -1643,6 +1691,9 @@ msgid "" " 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 "" +"Sukurti vietinį kintamąjį nurodytu PAVADINIMU ir suteikti jam REIKÅ MĘ.\n" +" „local“ gali bÅ«ti naudojamas tik funkcijose; jis sukuria kintamąjį,\n" +" matomą tik pačioje funkcijoje ir jos dukterinėse funkcijose." #: builtins.c:431 msgid "" @@ -1669,6 +1720,8 @@ msgstr "" #: builtins.c:456 msgid "Output the ARGs. If -n is specified, the trailing newline is suppressed." msgstr "" +"IÅ¡spausdinti ARGUMENTUS. Jei nurodytas -n, nespausdinamas naujos eilutės\n" +" simbolis pabaigoje." #: builtins.c:463 msgid "" @@ -1689,7 +1742,7 @@ msgstr "" #: builtins.c:481 msgid "Read ARGs as input to the shell and execute the resulting command(s)." -msgstr "" +msgstr "Skaityti ARGUMENTUS kaip aplinkos komandas ir jas vykdyti." #: builtins.c:487 msgid "" @@ -1742,10 +1795,12 @@ msgid "" "Exit the shell with a status of N. If N is omitted, the exit status\n" " is that of the last command executed." msgstr "" +"IÅ¡eiti iÅ¡ aplinkos su klaidos kodu N. Jei N nenurodytas, iÅ¡einant nustatomas\n" +" paskutinės vykdytos komandos klaidos kodas." #: builtins.c:542 msgid "Logout of a login shell." -msgstr "" +msgstr "Atsijungti nuo prisijungimo aplinkos (login shell)." #: builtins.c:549 msgid "" @@ -1936,6 +1991,8 @@ 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 "" +"IÅ¡eina iÅ¡ funkcijos, grąžinama reikÅ¡mė N. Jei N nenurodyta,\n" +" grąžinama paskutinės vykdytos komandos reikÅ¡mė." #: builtins.c:764 msgid "" @@ -2017,6 +2074,12 @@ msgid "" " 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 "" +"Kiekvienam PAVADINIMUi, paÅ¡alinti atitinkamą kintamąjį ar funkciją.\n" +" Jei nurodytas „-v“, unset veiks tik su kintamaisiais. Jei nurodytas\n" +" „-f“, unset veiks tik su funkcijomis. Jei nenurodytas nei vienas iÅ¡\n" +" Å¡ių parametrų, unset pirmiausiai bandys paÅ¡alinti kintamąjį, ir jei\n" +" tai nepasiseks, bandys paÅ¡alinti funkciją. Kai kurie kintamieji negali\n" +" bÅ«ti paÅ¡alinti; žr. „readonly“." #: builtins.c:847 msgid "" @@ -2053,6 +2116,10 @@ msgid "" " ARGUMENTS are supplied, they become the positional parameters when\n" " FILENAME is executed." msgstr "" +"Skaityti ir vykdyti komandas iÅ¡ FAILO ir grįžti. Keliai\n" +" kintamajame $PATH naudojami aplankui, kuriame yra FAILAS, rasti.\n" +" Jei nurodyta ARGUMENTŲ, jie tampa poziciniais parametrais iÅ¡kvietus\n" +" FAILĄ." #: builtins.c:897 msgid "" @@ -2060,6 +2127,9 @@ msgid "" " signal. The `-f' if specified says not to complain about this\n" " being a login shell if it is; just suspend anyway." msgstr "" +"Sustabdyti Å¡ios aplinkos darbą, kol bus gautas SIGCONT\n" +" signalas. Jei nurodyta „-f“, nesiskųsti, jei Å¡i aplinka yra prisijungimo\n" +" aplinka (login shell) ir sustabdyti ją bet kuriuo atveju." #: builtins.c:906 msgid "" @@ -2315,12 +2385,16 @@ msgid "" "Expand and execute COMMANDS as long as the final command in the\n" " `while' COMMANDS has an exit status of zero." msgstr "" +"IÅ¡skleisti ir vykdyti KOMANDAS tol, kol galutinė komanda iÅ¡\n" +" „while“ komandų grąžina klaidos kodą 0." #: builtins.c:1183 msgid "" "Expand and execute COMMANDS as long as the final command in the\n" " `until' COMMANDS has an exit status which is not zero." msgstr "" +"IÅ¡skleisti ir vykdyti KOMANDAS tol, kol galutinė komanda iÅ¡\n" +" „until“ komandų grąžina klaidos kodą, nelygų 0." #: builtins.c:1190 msgid "" @@ -2328,12 +2402,17 @@ msgid "" " Arguments on the command line along with NAME are passed to the\n" " function as $0 .. $n." msgstr "" +"Sukurti paprastą komandą, iÅ¡kviečiamą PAVADINIMU, vykdančią KOMANDAS.\n" +" Argumentai komandų eilutėje kartu su PAVADINIMU perduodami funkcijai\n" +" kaip $0 .. $n." #: builtins.c:1198 msgid "" "Run a set of commands in a group. This is one way to redirect an\n" " entire set of commands." msgstr "" +"Vykdyti eilę komandų grupėje. Tai yra vienas iÅ¡ bÅ«dų nukreipti\n" +" visos eilės komandų įvedimą/iÅ¡vedimą." #: builtins.c:1205 msgid "" @@ -2508,6 +2587,17 @@ msgid "" " If the -v option is supplied, the output is placed into the value of the\n" " shell variable VAR rather than being sent to the standard output." msgstr "" +"printf formatuoja ir spausdina ARGUMENTUS nurodytu FORMATU. FORMATAS\n" +" yra simbolių seka, sudaryta iÅ¡ trijų tipų objektų: paprastų\n" +" simbolių, tiesiog nukopijuojamų į standartinį iÅ¡vedimą,\n" +" kaitos sekų, konvertuojamų ir kopijuojamų į standartinį iÅ¡vedimą,\n" +" ir formato specifikacijų, kurių kiekviena iÅ¡spausdina kitą argumentą.\n" +" Be įprastų printf(1) formatų, %b reiÅ¡kia iÅ¡plėsti kairinio brÅ«kÅ¡nio\n" +" („\\“) kaitos sekas atitinkamame argumente, o %q reiÅ¡kia iÅ¡vesti\n" +" argumentą kabutėse tokia forma, kad rezultatą bÅ«tų galima\n" +" panaudoti įvedimui.\n" +" Jei pateiktas parametras -v, iÅ¡vedimas įraÅ¡omas į aplinkos kintamąjį\n" +" KINT, užuot spausdinus į standartinį iÅ¡vedimą." #: builtins.c:1396 msgid "" @@ -2517,6 +2607,12 @@ msgid "" " reused as input. The -r option removes a completion specification for\n" " each NAME, or, if no NAMEs are supplied, all completion specifications." msgstr "" +"Kiekvienam VARDUI nurodyti, kaip argumentai turėtų bÅ«ti užbaigti.\n" +" Jei pateiktas -p nustatymas arba nepateikta jokių nustatymų,\n" +" spausdinamos esamos užbaigimo specifikacijos tokiu formatu, kad\n" +" jas bÅ«tų galima panaudoti kaip įvestį. Nustatymas -r paÅ¡alina\n" +" užbaigimo specifikaciją kiekvienam VARDUI, arba, jei nenurodyta\n" +" VARDO, visas užbaigimo specifikacijas." #: builtins.c:1408 msgid "" @@ -2525,3 +2621,7 @@ msgid "" " If the optional WORD argument is supplied, matches against WORD are\n" " generated." msgstr "" +"Rodyti galimus užbaigimus priklausomai nuo nustatymų. Naudotina\n" +" iÅ¡ aplinkos funkcijos, generuojančios galimus užbaigimus.\n" +" Jei pateiktas nebÅ«tinasis ŽODŽIO argumentas, iÅ¡vedami įraÅ¡ai,\n" +" atitinkantys ŽODÄ®." diff --git a/tests/RUN-ONE-TEST b/tests/RUN-ONE-TEST index 72ec06a2c..3efcf32d6 100755 --- a/tests/RUN-ONE-TEST +++ b/tests/RUN-ONE-TEST @@ -1,4 +1,4 @@ -BUILD_DIR=/usr/local/build/bash/bash-current +BUILD_DIR=/usr/local/build/chet/bash/bash-current THIS_SH=$BUILD_DIR/bash PATH=$PATH:$BUILD_DIR diff --git a/tests/core b/tests/core new file mode 100644 index 000000000..0f50e9d8f Binary files /dev/null and b/tests/core differ