From d345f817ff4cbcf28cd19d8de284db153e3b6207 Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Tue, 9 Feb 2016 09:03:09 -0500 Subject: [PATCH] commit bash-20160129 snapshot --- CWRU/CWRU.chlog | 13 + builtins/alias.def | 2 +- builtins/bind.def | 2 +- builtins/cd.def | 2 +- builtins/common.c | 2 +- builtins/complete.def | 2 +- builtins/declare.def | 2 +- builtins/echo.def | 2 +- builtins/enable.def | 2 +- builtins/eval.def | 2 +- builtins/evalfile.c | 2 +- builtins/exec.def | 2 +- builtins/fc.def | 2 +- builtins/getopts.def | 2 +- builtins/hash.def | 2 +- builtins/help.def | 2 +- builtins/history.def | 2 +- builtins/jobs.def | 2 +- builtins/mkbuiltins.c | 2 +- builtins/printf.def | 2 +- builtins/pushd.def | 2 +- builtins/read.def | 2 +- builtins/shopt.def | 2 +- builtins/source.def | 2 +- builtins/suspend.def | 2 +- builtins/test.def | 2 +- builtins/trap.def | 2 +- builtins/ulimit.def | 2 +- builtins/umask.def | 2 +- doc/bash.0 | 3491 ++++++------ doc/bash.1 | 20 +- doc/bash.html | 11 +- doc/bash.info | 271 +- doc/bash.pdf | Bin 324726 -> 323619 bytes doc/bash.ps | 9460 +++++++++++++++---------------- doc/bashref.dvi | Bin 742288 -> 742388 bytes doc/bashref.html | 13 +- doc/bashref.info | 271 +- doc/bashref.log | 16 +- doc/bashref.pdf | Bin 730357 -> 730457 bytes doc/bashref.ps | 306 +- doc/bashref.texi | 13 +- doc/builtins.ps | 2 +- doc/rbash.ps | 2 +- doc/version.texi | 8 +- lib/readline/bind.c | 2 +- lib/readline/callback.c | 2 +- lib/readline/chardefs.h | 2 +- lib/readline/colors.c | 4 +- lib/readline/colors.h | 4 +- lib/readline/doc/history.texi | 2 +- lib/readline/doc/hstech.texi | 2 +- lib/readline/doc/hsuser.texi | 2 +- lib/readline/doc/rlman.texi | 2 +- lib/readline/doc/rltech.texi | 2 +- lib/readline/doc/rluser.texi | 2 +- lib/readline/doc/rluserman.texi | 2 +- lib/readline/doc/version.texi | 12 +- lib/readline/funmap.c | 2 +- lib/readline/histfile.c | 2 +- lib/readline/kill.c | 2 +- lib/readline/mbutil.c | 2 +- lib/readline/misc.c | 2 +- lib/readline/parens.c | 2 +- lib/readline/readline.c | 2 +- lib/readline/readline.h | 2 +- lib/readline/rlconf.h | 2 +- lib/readline/rlmbutil.h | 2 +- lib/readline/rlprivate.h | 2 +- lib/readline/rltty.c | 2 +- lib/readline/search.c | 2 +- lib/readline/signals.c | 2 +- lib/readline/tcap.h | 2 +- lib/readline/terminal.c | 2 +- lib/readline/text.c | 2 +- lib/readline/undo.c | 5 +- lib/readline/vi_mode.c | 2 +- lib/sh/mbscasecmp.c | 2 +- lib/sh/mbscmp.c | 2 +- lib/sh/shmbchar.c | 2 +- lib/sh/shquote.c | 2 +- lib/sh/strtrans.c | 2 +- lib/sh/tmpfile.c | 2 +- lib/sh/unicode.c | 2 +- lib/sh/winsize.c | 2 +- 85 files changed, 7032 insertions(+), 7018 deletions(-) diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index 717393cb..602a1454 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -10393,3 +10393,16 @@ lib/readline/text.c key sequence and key sequence length when we read a character that is not bound to self-insert. Bug report from Geir Hauge + + 1/25 + ---- +doc/{bash.1,bashref.texi} + - word splitting: add example showing how -d'' is equivalent to -d + after word splitting and null argument removal + + 1/27 + ---- +doc/{bash.1,bashref.texi} + - read: modify description to make it more clear that the line is split + using the same rules as word splitting, and use `delimiters' instead + of `separators', which people read the wrong way diff --git a/builtins/alias.def b/builtins/alias.def index fe5560c6..c598fe74 100644 --- a/builtins/alias.def +++ b/builtins/alias.def @@ -1,7 +1,7 @@ This file is alias.def, from which is created alias.c It implements the builtins "alias" and "unalias" in Bash. -Copyright (C) 1987-2009 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/bind.def b/builtins/bind.def index 22c29409..649d73f6 100644 --- a/builtins/bind.def +++ b/builtins/bind.def @@ -1,7 +1,7 @@ This file is bind.def, from which is created bind.c. It implements the builtin "bind" in Bash. -Copyright (C) 1987-2014 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/cd.def b/builtins/cd.def index 09626ad7..b5e4c605 100644 --- a/builtins/cd.def +++ b/builtins/cd.def @@ -1,7 +1,7 @@ This file is cd.def, from which is created cd.c. It implements the builtins "cd" and "pwd" in Bash. -Copyright (C) 1987-2013 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/common.c b/builtins/common.c index a5ebf2eb..b100ebe1 100644 --- a/builtins/common.c +++ b/builtins/common.c @@ -1,6 +1,6 @@ /* common.c - utility functions for all builtins */ -/* Copyright (C) 1987-2010 Free Software Foundation, Inc. +/* Copyright (C) 1987-2016 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/complete.def b/builtins/complete.def index 3c9f1549..a0329ff6 100644 --- a/builtins/complete.def +++ b/builtins/complete.def @@ -1,7 +1,7 @@ This file is complete.def, from which is created complete.c. It implements the builtins "complete", "compgen", and "compopt" in Bash. -Copyright (C) 1999-2014 Free Software Foundation, Inc. +Copyright (C) 1999-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/declare.def b/builtins/declare.def index 875740b0..a1e9b4e5 100644 --- a/builtins/declare.def +++ b/builtins/declare.def @@ -65,7 +65,7 @@ $FUNCTION declare_builtin $SHORT_DOC typeset [-aAfFgilnrtux] [-p] name[=value] ... Set variable values and attributes. -Obsolete. See `help declare'. +A synonym for `declare'. See `help declare'. $END #include diff --git a/builtins/echo.def b/builtins/echo.def index c7587059..3f8b5a93 100644 --- a/builtins/echo.def +++ b/builtins/echo.def @@ -1,7 +1,7 @@ This file is echo.def, from which is created echo.c. It implements the builtin "echo" in Bash. -Copyright (C) 1987-2009 Free Software Foundation, Inc. +Copyright (C) 1987-2016 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/enable.def b/builtins/enable.def index 079288f7..39c36698 100644 --- a/builtins/enable.def +++ b/builtins/enable.def @@ -1,7 +1,7 @@ This file is enable.def, from which is created enable.c. It implements the builtin "enable" in Bash. -Copyright (C) 1987-2009 Free Software Foundation, Inc. +Copyright (C) 1987-2016 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/eval.def b/builtins/eval.def index 5e824c92..a92b538f 100644 --- a/builtins/eval.def +++ b/builtins/eval.def @@ -1,7 +1,7 @@ This file is eval.def, from which is created eval.c. It implements the builtin "eval" in Bash. -Copyright (C) 1987-2009 Free Software Foundation, Inc. +Copyright (C) 1987-2016 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/evalfile.c b/builtins/evalfile.c index 0399d154..316b7940 100644 --- a/builtins/evalfile.c +++ b/builtins/evalfile.c @@ -1,6 +1,6 @@ /* evalfile.c - read and evaluate commands from a file or file descriptor */ -/* Copyright (C) 1996-2009 Free Software Foundation, Inc. +/* Copyright (C) 1996-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/exec.def b/builtins/exec.def index 2b76328f..7d7edce0 100644 --- a/builtins/exec.def +++ b/builtins/exec.def @@ -1,7 +1,7 @@ This file is exec.def, from which is created exec.c. It implements the builtin "exec" in Bash. -Copyright (C) 1987-2012 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/fc.def b/builtins/fc.def index cd989e9d..0c38a313 100644 --- a/builtins/fc.def +++ b/builtins/fc.def @@ -1,7 +1,7 @@ This file is fc.def, from which is created fc.c. It implements the builtin "fc" in Bash. -Copyright (C) 1987-2011 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/getopts.def b/builtins/getopts.def index 27b97e06..7eef2fa6 100644 --- a/builtins/getopts.def +++ b/builtins/getopts.def @@ -1,7 +1,7 @@ This file is getopts.def, from which is created getopts.c. It implements the builtin "getopts" in Bash. -Copyright (C) 1987-2004 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/hash.def b/builtins/hash.def index c7ae7b25..bec4b073 100644 --- a/builtins/hash.def +++ b/builtins/hash.def @@ -1,7 +1,7 @@ This file is hash.def, from which is created hash.c. It implements the builtin "hash" in Bash. -Copyright (C) 1987-2013 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/help.def b/builtins/help.def index 88cd6b0d..95a1a360 100644 --- a/builtins/help.def +++ b/builtins/help.def @@ -1,7 +1,7 @@ This file is help.def, from which is created help.c. It implements the builtin "help" in Bash. -Copyright (C) 1987-2013 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/history.def b/builtins/history.def index feb78cbe..48b59aeb 100644 --- a/builtins/history.def +++ b/builtins/history.def @@ -1,7 +1,7 @@ This file is history.def, from which is created history.c. It implements the builtin "history" in Bash. -Copyright (C) 1987-2009 Free Software Foundation, Inc. +Copyright (C) 1987-2016 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/jobs.def b/builtins/jobs.def index 22dbf2f0..2dde2552 100644 --- a/builtins/jobs.def +++ b/builtins/jobs.def @@ -1,7 +1,7 @@ This file is jobs.def, from which is created jobs.c. It implements the builtins "jobs" and "disown" in Bash. -Copyright (C) 1987-2009 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/mkbuiltins.c b/builtins/mkbuiltins.c index 4a773720..4f512010 100644 --- a/builtins/mkbuiltins.c +++ b/builtins/mkbuiltins.c @@ -1,7 +1,7 @@ /* mkbuiltins.c - Create builtins.c, builtext.h, and builtdoc.c from a single source file called builtins.def. */ -/* Copyright (C) 1987-2015 Free Software Foundation, Inc. +/* Copyright (C) 1987-2016 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/printf.def b/builtins/printf.def index d51efc4e..d39a6d3f 100644 --- a/builtins/printf.def +++ b/builtins/printf.def @@ -1,7 +1,7 @@ This file is printf.def, from which is created printf.c. It implements the builtin "printf" in Bash. -Copyright (C) 1997-2010 Free Software Foundation, Inc. +Copyright (C) 1997-2016 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/pushd.def b/builtins/pushd.def index da8e1820..82653c47 100644 --- a/builtins/pushd.def +++ b/builtins/pushd.def @@ -1,7 +1,7 @@ This file is pushd.def, from which is created pushd.c. It implements the builtins "pushd", "popd", and "dirs" in Bash. -Copyright (C) 1987-2013 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/read.def b/builtins/read.def index eb29a19f..5e2348ce 100644 --- a/builtins/read.def +++ b/builtins/read.def @@ -1,7 +1,7 @@ This file is read.def, from which is created read.c. It implements the builtin "read" in Bash. -Copyright (C) 1987-2012 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/shopt.def b/builtins/shopt.def index 56ecc289..f371ac88 100644 --- a/builtins/shopt.def +++ b/builtins/shopt.def @@ -1,7 +1,7 @@ This file is shopt.def, from which is created shopt.c. It implements the Bash `shopt' builtin. -Copyright (C) 1994-2012 Free Software Foundation, Inc. +Copyright (C) 1994-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/source.def b/builtins/source.def index 8e187ef5..b3df1f9f 100644 --- a/builtins/source.def +++ b/builtins/source.def @@ -1,7 +1,7 @@ This file is source.def, from which is created source.c. It implements the builtins "." and "source" in Bash. -Copyright (C) 1987-2009 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/suspend.def b/builtins/suspend.def index b803f2e7..db28feec 100644 --- a/builtins/suspend.def +++ b/builtins/suspend.def @@ -1,7 +1,7 @@ This file is suspend.def, from which is created suspend.c. It implements the builtin "suspend" in Bash. -Copyright (C) 1987-2009 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/test.def b/builtins/test.def index 249b2c2a..d6c89bf9 100644 --- a/builtins/test.def +++ b/builtins/test.def @@ -1,7 +1,7 @@ This file is test.def, from which is created test.c. It implements the builtin "test" in Bash. -Copyright (C) 1987-2010 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/trap.def b/builtins/trap.def index dfc12de5..57d9b522 100644 --- a/builtins/trap.def +++ b/builtins/trap.def @@ -1,7 +1,7 @@ This file is trap.def, from which is created trap.c. It implements the builtin "trap" in Bash. -Copyright (C) 1987-2010 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/ulimit.def b/builtins/ulimit.def index 642d3597..62def4f6 100644 --- a/builtins/ulimit.def +++ b/builtins/ulimit.def @@ -1,7 +1,7 @@ This file is ulimit.def, from which is created ulimit.c. It implements the builtin "ulimit" in Bash. -Copyright (C) 1987-2010 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/builtins/umask.def b/builtins/umask.def index ff9f4508..d3138d4d 100644 --- a/builtins/umask.def +++ b/builtins/umask.def @@ -1,7 +1,7 @@ This file is umask.def, from which is created umask.c. It implements the builtin "umask" in Bash. -Copyright (C) 1987-2009 Free Software Foundation, Inc. +Copyright (C) 1987-2015 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/doc/bash.0 b/doc/bash.0 index efb9a28e..10c8e99a 100644 --- a/doc/bash.0 +++ b/doc/bash.0 @@ -9,7 +9,7 @@ SSYYNNOOPPSSIISS bbaasshh [options] [command_string | file] CCOOPPYYRRIIGGHHTT - Bash is Copyright (C) 1989-2015 by the Free Software Foundation, Inc. + Bash is Copyright (C) 1989-2016 by the Free Software Foundation, Inc. DDEESSCCRRIIPPTTIIOONN BBaasshh is an sshh-compatible command language interpreter that executes @@ -1849,98 +1849,99 @@ EEXXPPAANNSSIIOONN ter with no value is expanded within double quotes, a null argument results and is retained and passed to a command as an empty string. When a quoted null argument appears as part of a word whose expansion - is non-null, the null argument is removed. + is non-null, the null argument is removed. That is, the word -d'' + becomes -d after word splitting and null argument removal. Note that if no expansion occurs, no splitting is performed. PPaatthhnnaammee EExxppaannssiioonn - After word splitting, unless the --ff option has been set, bbaasshh scans - each word for the characters **, ??, and [[. If one of these characters - appears, then the word is regarded as a _p_a_t_t_e_r_n, and replaced with an - alphabetically sorted list of filenames matching the pattern (see PPaatt-- - tteerrnn MMaattcchhiinngg below). If no matching filenames are found, and the - shell option nnuullllgglloobb is not enabled, the word is left unchanged. If - the nnuullllgglloobb option is set, and no matches are found, the word is - removed. If the ffaaiillgglloobb shell option is set, and no matches are + After word splitting, unless the --ff option has been set, bbaasshh scans + each word for the characters **, ??, and [[. If one of these characters + appears, then the word is regarded as a _p_a_t_t_e_r_n, and replaced with an + alphabetically sorted list of filenames matching the pattern (see PPaatt-- + tteerrnn MMaattcchhiinngg below). If no matching filenames are found, and the + shell option nnuullllgglloobb is not enabled, the word is left unchanged. If + the nnuullllgglloobb option is set, and no matches are found, the word is + removed. If the ffaaiillgglloobb shell option is set, and no matches are found, an error message is printed and the command is not executed. If - the shell option nnooccaasseegglloobb is enabled, the match is performed without - regard to the case of alphabetic characters. When a pattern is used - for pathname expansion, the character ````..'''' at the start of a name or - immediately following a slash must be matched explicitly, unless the + the shell option nnooccaasseegglloobb is enabled, the match is performed without + regard to the case of alphabetic characters. When a pattern is used + for pathname expansion, the character ````..'''' at the start of a name or + immediately following a slash must be matched explicitly, unless the shell option ddoottgglloobb is set. When matching a pathname, the slash char- - acter must always be matched explicitly. In other cases, the ````..'''' + acter must always be matched explicitly. In other cases, the ````..'''' character is not treated specially. See the description of sshhoopptt below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS for a description of the nnooccaasseegglloobb, nnuullll-- gglloobb, ffaaiillgglloobb, and ddoottgglloobb shell options. - The GGLLOOBBIIGGNNOORREE shell variable may be used to restrict the set of file- + The GGLLOOBBIIGGNNOORREE shell variable may be used to restrict the set of file- names matching a _p_a_t_t_e_r_n. If GGLLOOBBIIGGNNOORREE is set, each matching filename that also matches one of the patterns in GGLLOOBBIIGGNNOORREE is removed from the list of matches. If the nnooccaasseegglloobb option is set, the matching against - the patterns in GGLLOOBBIIGGNNOORREE is performed without regard to case. The - filenames ````..'''' and ````....'''' are always ignored when GGLLOOBBIIGGNNOORREE is set - and not null. However, setting GGLLOOBBIIGGNNOORREE to a non-null value has the - effect of enabling the ddoottgglloobb shell option, so all other filenames - beginning with a ````..'''' will match. To get the old behavior of ignor- - ing filenames beginning with a ````..'''', make ````..**'''' one of the patterns - in GGLLOOBBIIGGNNOORREE. The ddoottgglloobb option is disabled when GGLLOOBBIIGGNNOORREE is - unset. The pattern matching honors the setting of the eexxttgglloobb shell + the patterns in GGLLOOBBIIGGNNOORREE is performed without regard to case. The + filenames ````..'''' and ````....'''' are always ignored when GGLLOOBBIIGGNNOORREE is set + and not null. However, setting GGLLOOBBIIGGNNOORREE to a non-null value has the + effect of enabling the ddoottgglloobb shell option, so all other filenames + beginning with a ````..'''' will match. To get the old behavior of ignor- + ing filenames beginning with a ````..'''', make ````..**'''' one of the patterns + in GGLLOOBBIIGGNNOORREE. The ddoottgglloobb option is disabled when GGLLOOBBIIGGNNOORREE is + unset. The pattern matching honors the setting of the eexxttgglloobb shell option. PPaatttteerrnn MMaattcchhiinngg Any character that appears in a pattern, other than the special pattern - characters described below, matches itself. The NUL character may not - occur in a pattern. A backslash escapes the following character; the - escaping backslash is discarded when matching. The special pattern + characters described below, matches itself. The NUL character may not + occur in a pattern. A backslash escapes the following character; the + escaping backslash is discarded when matching. The special pattern characters must be quoted if they are to be matched literally. The special pattern characters have the following meanings: - ** Matches any string, including the null string. When the - gglloobbssttaarr shell option is enabled, and ** is used in a - pathname expansion context, two adjacent **s used as a - single pattern will match all files and zero or more - directories and subdirectories. If followed by a //, two - adjacent **s will match only directories and subdirecto- + ** Matches any string, including the null string. When the + gglloobbssttaarr shell option is enabled, and ** is used in a + pathname expansion context, two adjacent **s used as a + single pattern will match all files and zero or more + directories and subdirectories. If followed by a //, two + adjacent **s will match only directories and subdirecto- ries. ?? Matches any single character. - [[......]] Matches any one of the enclosed characters. A pair of - characters separated by a hyphen denotes a _r_a_n_g_e _e_x_p_r_e_s_- - _s_i_o_n; any character that falls between those two charac- - ters, inclusive, using the current locale's collating - sequence and character set, is matched. If the first + [[......]] Matches any one of the enclosed characters. A pair of + characters separated by a hyphen denotes a _r_a_n_g_e _e_x_p_r_e_s_- + _s_i_o_n; any character that falls between those two charac- + ters, inclusive, using the current locale's collating + sequence and character set, is matched. If the first character following the [[ is a !! or a ^^ then any charac- - ter not enclosed is matched. The sorting order of char- - acters in range expressions is determined by the current - locale and the values of the LLCC__CCOOLLLLAATTEE or LLCC__AALLLL shell + ter not enclosed is matched. The sorting order of char- + acters in range expressions is determined by the current + locale and the values of the LLCC__CCOOLLLLAATTEE or LLCC__AALLLL shell variables, if set. To obtain the traditional interpreta- - tion of range expressions, where [[aa--dd]] is equivalent to - [[aabbccdd]], set value of the LLCC__AALLLL shell variable to CC, or - enable the gglloobbaasscciiiirraannggeess shell option. A -- may be + tion of range expressions, where [[aa--dd]] is equivalent to + [[aabbccdd]], set value of the LLCC__AALLLL shell variable to CC, or + enable the gglloobbaasscciiiirraannggeess shell option. A -- may be matched by including it as the first or last character in the set. A ]] may be matched by including it as the first character in the set. - Within [[ and ]], _c_h_a_r_a_c_t_e_r _c_l_a_s_s_e_s can be specified using + Within [[ and ]], _c_h_a_r_a_c_t_e_r _c_l_a_s_s_e_s can be specified using the syntax [[::_c_l_a_s_s::]], where _c_l_a_s_s is one of the following classes defined in the POSIX standard: - aallnnuumm aallpphhaa aasscciiii bbllaannkk ccnnttrrll ddiiggiitt ggrraapphh lloowweerr pprriinntt + aallnnuumm aallpphhaa aasscciiii bbllaannkk ccnnttrrll ddiiggiitt ggrraapphh lloowweerr pprriinntt ppuunncctt ssppaaccee uuppppeerr wwoorrdd xxddiiggiitt A character class matches any character belonging to that class. The wwoorrdd character class matches letters, digits, and the character _. - Within [[ and ]], an _e_q_u_i_v_a_l_e_n_c_e _c_l_a_s_s can be specified + Within [[ and ]], an _e_q_u_i_v_a_l_e_n_c_e _c_l_a_s_s can be specified using the syntax [[==_c==]], which matches all characters with - the same collation weight (as defined by the current + the same collation weight (as defined by the current locale) as the character _c. Within [[ and ]], the syntax [[.._s_y_m_b_o_l..]] matches the collat- ing symbol _s_y_m_b_o_l. If the eexxttgglloobb shell option is enabled using the sshhoopptt builtin, several - extended pattern matching operators are recognized. In the following + extended pattern matching operators are recognized. In the following description, a _p_a_t_t_e_r_n_-_l_i_s_t is a list of one or more patterns separated by a ||. Composite patterns may be formed using one or more of the fol- lowing sub-patterns: @@ -1958,58 +1959,58 @@ EEXXPPAANNSSIIOONN QQuuoottee RReemmoovvaall After the preceding expansions, all unquoted occurrences of the charac- - ters \\, '', and "" that did not result from one of the above expansions + ters \\, '', and "" that did not result from one of the above expansions are removed. RREEDDIIRREECCTTIIOONN - Before a command is executed, its input and output may be _r_e_d_i_r_e_c_t_e_d - using a special notation interpreted by the shell. Redirection allows - commands' file handles to be duplicated, opened, closed, made to refer + Before a command is executed, its input and output may be _r_e_d_i_r_e_c_t_e_d + using a special notation interpreted by the shell. Redirection allows + commands' file handles to be duplicated, opened, closed, made to refer to different files, and can change the files the command reads from and - writes to. Redirection may also be used to modify file handles in the - current shell execution environment. The following redirection opera- + writes to. Redirection may also be used to modify file handles in the + current shell execution environment. The following redirection opera- tors may precede or appear anywhere within a _s_i_m_p_l_e _c_o_m_m_a_n_d or may fol- - low a _c_o_m_m_a_n_d. Redirections are processed in the order they appear, + low a _c_o_m_m_a_n_d. Redirections are processed in the order they appear, from left to right. - Each redirection that may be preceded by a file descriptor number may + Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form {_v_a_r_n_a_m_e}. In this case, for each redirection operator except >&- and <&-, the shell will allocate a - file descriptor greater than or equal to 10 and assign it to _v_a_r_n_a_m_e. - If >&- or <&- is preceded by {_v_a_r_n_a_m_e}, the value of _v_a_r_n_a_m_e defines + file descriptor greater than or equal to 10 and assign it to _v_a_r_n_a_m_e. + If >&- or <&- is preceded by {_v_a_r_n_a_m_e}, the value of _v_a_r_n_a_m_e defines the file descriptor to close. - In the following descriptions, if the file descriptor number is omit- - ted, and the first character of the redirection operator is <<, the re- - direction refers to the standard input (file descriptor 0). If the - first character of the redirection operator is >>, the redirection + In the following descriptions, if the file descriptor number is omit- + ted, and the first character of the redirection operator is <<, the re- + direction refers to the standard input (file descriptor 0). If the + first character of the redirection operator is >>, the redirection refers to the standard output (file descriptor 1). - The word following the redirection operator in the following descrip- - tions, unless otherwise noted, is subjected to brace expansion, tilde - expansion, parameter and variable expansion, command substitution, - arithmetic expansion, quote removal, pathname expansion, and word + The word following the redirection operator in the following descrip- + tions, unless otherwise noted, is subjected to brace expansion, tilde + expansion, parameter and variable expansion, command substitution, + arithmetic expansion, quote removal, pathname expansion, and word splitting. If it expands to more than one word, bbaasshh reports an error. - Note that the order of redirections is significant. For example, the + Note that the order of redirections is significant. For example, the command ls >> dirlist 2>>&&1 - directs both standard output and standard error to the file _d_i_r_l_i_s_t, + directs both standard output and standard error to the file _d_i_r_l_i_s_t, while the command ls 2>>&&1 >> dirlist - directs only the standard output to file _d_i_r_l_i_s_t, because the standard - error was duplicated from the standard output before the standard out- + directs only the standard output to file _d_i_r_l_i_s_t, because the standard + error was duplicated from the standard output before the standard out- put was redirected to _d_i_r_l_i_s_t. BBaasshh handles several filenames specially when they are used in redirec- tions, as described in the following table: //ddeevv//ffdd//_f_d - If _f_d is a valid integer, file descriptor _f_d is dupli- + If _f_d is a valid integer, file descriptor _f_d is dupli- cated. //ddeevv//ssttddiinn File descriptor 0 is duplicated. @@ -2019,22 +2020,22 @@ RREEDDIIRREECCTTIIOONN File descriptor 2 is duplicated. //ddeevv//ttccpp//_h_o_s_t//_p_o_r_t If _h_o_s_t is a valid hostname or Internet address, and _p_o_r_t - is an integer port number or service name, bbaasshh attempts + is an integer port number or service name, bbaasshh attempts to open the corresponding TCP socket. //ddeevv//uuddpp//_h_o_s_t//_p_o_r_t If _h_o_s_t is a valid hostname or Internet address, and _p_o_r_t - is an integer port number or service name, bbaasshh attempts + is an integer port number or service name, bbaasshh attempts to open the corresponding UDP socket. A failure to open or create a file causes the redirection to fail. - Redirections using file descriptors greater than 9 should be used with - care, as they may conflict with file descriptors the shell uses inter- + Redirections using file descriptors greater than 9 should be used with + care, as they may conflict with file descriptors the shell uses inter- nally. RReeddiirreeccttiinngg IInnppuutt Redirection of input causes the file whose name results from the expan- - sion of _w_o_r_d to be opened for reading on file descriptor _n, or the + sion of _w_o_r_d to be opened for reading on file descriptor _n, or the standard input (file descriptor 0) if _n is not specified. The general format for redirecting input is: @@ -2042,27 +2043,27 @@ RREEDDIIRREECCTTIIOONN [_n]<<_w_o_r_d RReeddiirreeccttiinngg OOuuttppuutt - Redirection of output causes the file whose name results from the + Redirection of output causes the file whose name results from the expansion of _w_o_r_d to be opened for writing on file descriptor _n, or the standard output (file descriptor 1) if _n is not specified. If the file - does not exist it is created; if it does exist it is truncated to zero + does not exist it is created; if it does exist it is truncated to zero size. The general format for redirecting output is: [_n]>>_w_o_r_d - If the redirection operator is >>, and the nnoocclloobbbbeerr option to the sseett - builtin has been enabled, the redirection will fail if the file whose - name results from the expansion of _w_o_r_d exists and is a regular file. + If the redirection operator is >>, and the nnoocclloobbbbeerr option to the sseett + builtin has been enabled, the redirection will fail if the file whose + name results from the expansion of _w_o_r_d exists and is a regular file. If the redirection operator is >>||, or the redirection operator is >> and the nnoocclloobbbbeerr option to the sseett builtin command is not enabled, the re- direction is attempted even if the file named by _w_o_r_d exists. AAppppeennddiinngg RReeddiirreecctteedd OOuuttppuutt - Redirection of output in this fashion causes the file whose name - results from the expansion of _w_o_r_d to be opened for appending on file - descriptor _n, or the standard output (file descriptor 1) if _n is not + Redirection of output in this fashion causes the file whose name + results from the expansion of _w_o_r_d to be opened for appending on file + descriptor _n, or the standard output (file descriptor 1) if _n is not specified. If the file does not exist it is created. The general format for appending output is: @@ -2070,11 +2071,11 @@ RREEDDIIRREECCTTIIOONN [_n]>>>>_w_o_r_d RReeddiirreeccttiinngg SSttaannddaarrdd OOuuttppuutt aanndd SSttaannddaarrdd EErrrroorr - This construct allows both the standard output (file descriptor 1) and - the standard error output (file descriptor 2) to be redirected to the + This construct allows both the standard output (file descriptor 1) and + the standard error output (file descriptor 2) to be redirected to the file whose name is the expansion of _w_o_r_d. - There are two formats for redirecting standard output and standard + There are two formats for redirecting standard output and standard error: &&>>_w_o_r_d @@ -2086,13 +2087,13 @@ RREEDDIIRREECCTTIIOONN >>_w_o_r_d 2>>&&1 - When using the second form, _w_o_r_d may not expand to a number or --. If - it does, other redirection operators apply (see DDuupplliiccaattiinngg FFiillee + When using the second form, _w_o_r_d may not expand to a number or --. If + it does, other redirection operators apply (see DDuupplliiccaattiinngg FFiillee DDeessccrriippttoorrss below) for compatibility reasons. AAppppeennddiinngg SSttaannddaarrdd OOuuttppuutt aanndd SSttaannddaarrdd EErrrroorr - This construct allows both the standard output (file descriptor 1) and - the standard error output (file descriptor 2) to be appended to the + This construct allows both the standard output (file descriptor 1) and + the standard error output (file descriptor 2) to be appended to the file whose name is the expansion of _w_o_r_d. The format for appending standard output and standard error is: @@ -2106,10 +2107,10 @@ RREEDDIIRREECCTTIIOONN (see DDuupplliiccaattiinngg FFiillee DDeessccrriippttoorrss below). HHeerree DDooccuummeennttss - This type of redirection instructs the shell to read input from the + This type of redirection instructs the shell to read input from the current source until a line containing only _d_e_l_i_m_i_t_e_r (with no trailing - blanks) is seen. All of the lines read up to that point are then used - as the standard input (or file descriptor _n if _n is specified) for a + blanks) is seen. All of the lines read up to that point are then used + as the standard input (or file descriptor _n if _n is specified) for a command. The format of here-documents is: @@ -2118,18 +2119,18 @@ RREEDDIIRREECCTTIIOONN _h_e_r_e_-_d_o_c_u_m_e_n_t _d_e_l_i_m_i_t_e_r - No parameter and variable expansion, command substitution, arithmetic - expansion, or pathname expansion is performed on _w_o_r_d. If any charac- - ters in _w_o_r_d are quoted, the _d_e_l_i_m_i_t_e_r is the result of quote removal - on _w_o_r_d, and the lines in the here-document are not expanded. If _w_o_r_d - is unquoted, all lines of the here-document are subjected to parameter - expansion, command substitution, and arithmetic expansion, the charac- - ter sequence \\<> is ignored, and \\ must be used to quote the + No parameter and variable expansion, command substitution, arithmetic + expansion, or pathname expansion is performed on _w_o_r_d. If any charac- + ters in _w_o_r_d are quoted, the _d_e_l_i_m_i_t_e_r is the result of quote removal + on _w_o_r_d, and the lines in the here-document are not expanded. If _w_o_r_d + is unquoted, all lines of the here-document are subjected to parameter + expansion, command substitution, and arithmetic expansion, the charac- + ter sequence \\<> is ignored, and \\ must be used to quote the characters \\, $$, and ``. If the redirection operator is <<<<--, then all leading tab characters are - stripped from input lines and the line containing _d_e_l_i_m_i_t_e_r. This - allows here-documents within shell scripts to be indented in a natural + stripped from input lines and the line containing _d_e_l_i_m_i_t_e_r. This + allows here-documents within shell scripts to be indented in a natural fashion. HHeerree SSttrriinnggss @@ -2137,10 +2138,10 @@ RREEDDIIRREECCTTIIOONN [_n]<<<<<<_w_o_r_d - The _w_o_r_d undergoes brace expansion, tilde expansion, parameter and - variable expansion, command substitution, arithmetic expansion, and - quote removal. Pathname expansion and word splitting are not per- - formed. The result is supplied as a single string, with a newline + The _w_o_r_d undergoes brace expansion, tilde expansion, parameter and + variable expansion, command substitution, arithmetic expansion, and + quote removal. Pathname expansion and word splitting are not per- + formed. The result is supplied as a single string, with a newline appended, to the command on its standard input (or file descriptor _n if _n is specified). @@ -2150,22 +2151,22 @@ RREEDDIIRREECCTTIIOONN [_n]<<&&_w_o_r_d is used to duplicate input file descriptors. If _w_o_r_d expands to one or - more digits, the file descriptor denoted by _n is made to be a copy of - that file descriptor. If the digits in _w_o_r_d do not specify a file - descriptor open for input, a redirection error occurs. If _w_o_r_d evalu- - ates to --, file descriptor _n is closed. If _n is not specified, the + more digits, the file descriptor denoted by _n is made to be a copy of + that file descriptor. If the digits in _w_o_r_d do not specify a file + descriptor open for input, a redirection error occurs. If _w_o_r_d evalu- + ates to --, file descriptor _n is closed. If _n is not specified, the standard input (file descriptor 0) is used. The operator [_n]>>&&_w_o_r_d - is used similarly to duplicate output file descriptors. If _n is not - specified, the standard output (file descriptor 1) is used. If the - digits in _w_o_r_d do not specify a file descriptor open for output, a re- - direction error occurs. If _w_o_r_d evaluates to --, file descriptor _n is - closed. As a special case, if _n is omitted, and _w_o_r_d does not expand - to one or more digits or --, the standard output and standard error are + is used similarly to duplicate output file descriptors. If _n is not + specified, the standard output (file descriptor 1) is used. If the + digits in _w_o_r_d do not specify a file descriptor open for output, a re- + direction error occurs. If _w_o_r_d evaluates to --, file descriptor _n is + closed. As a special case, if _n is omitted, and _w_o_r_d does not expand + to one or more digits or --, the standard output and standard error are redirected as described previously. MMoovviinngg FFiillee DDeessccrriippttoorrss @@ -2173,7 +2174,7 @@ RREEDDIIRREECCTTIIOONN [_n]<<&&_d_i_g_i_t-- - moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard + moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard input (file descriptor 0) if _n is not specified. _d_i_g_i_t is closed after being duplicated to _n. @@ -2181,7 +2182,7 @@ RREEDDIIRREECCTTIIOONN [_n]>>&&_d_i_g_i_t-- - moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard + moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard output (file descriptor 1) if _n is not specified. OOppeenniinngg FFiillee DDeessccrriippttoorrss ffoorr RReeaaddiinngg aanndd WWrriittiinngg @@ -2189,117 +2190,117 @@ RREEDDIIRREECCTTIIOONN [_n]<<>>_w_o_r_d - causes the file whose name is the expansion of _w_o_r_d to be opened for - both reading and writing on file descriptor _n, or on file descriptor 0 + causes the file whose name is the expansion of _w_o_r_d to be opened for + both reading and writing on file descriptor _n, or on file descriptor 0 if _n is not specified. If the file does not exist, it is created. AALLIIAASSEESS - _A_l_i_a_s_e_s allow a string to be substituted for a word when it is used as - the first word of a simple command. The shell maintains a list of - aliases that may be set and unset with the aalliiaass and uunnaalliiaass builtin - commands (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). The first word of each - simple command, if unquoted, is checked to see if it has an alias. If - so, that word is replaced by the text of the alias. The characters //, - $$, ``, and == and any of the shell _m_e_t_a_c_h_a_r_a_c_t_e_r_s or quoting characters + _A_l_i_a_s_e_s allow a string to be substituted for a word when it is used as + the first word of a simple command. The shell maintains a list of + aliases that may be set and unset with the aalliiaass and uunnaalliiaass builtin + commands (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). The first word of each + simple command, if unquoted, is checked to see if it has an alias. If + so, that word is replaced by the text of the alias. The characters //, + $$, ``, and == and any of the shell _m_e_t_a_c_h_a_r_a_c_t_e_r_s or quoting characters listed above may not appear in an alias name. The replacement text may - contain any valid shell input, including shell metacharacters. The - first word of the replacement text is tested for aliases, but a word - that is identical to an alias being expanded is not expanded a second - time. This means that one may alias llss to llss --FF, for instance, and - bbaasshh does not try to recursively expand the replacement text. If the - last character of the alias value is a _b_l_a_n_k, then the next command + contain any valid shell input, including shell metacharacters. The + first word of the replacement text is tested for aliases, but a word + that is identical to an alias being expanded is not expanded a second + time. This means that one may alias llss to llss --FF, for instance, and + bbaasshh does not try to recursively expand the replacement text. If the + last character of the alias value is a _b_l_a_n_k, then the next command word following the alias is also checked for alias expansion. Aliases are created and listed with the aalliiaass command, and removed with the uunnaalliiaass command. - There is no mechanism for using arguments in the replacement text. If - arguments are needed, a shell function should be used (see FFUUNNCCTTIIOONNSS + There is no mechanism for using arguments in the replacement text. If + arguments are needed, a shell function should be used (see FFUUNNCCTTIIOONNSS below). - Aliases are not expanded when the shell is not interactive, unless the - eexxppaanndd__aalliiaasseess shell option is set using sshhoopptt (see the description of + Aliases are not expanded when the shell is not interactive, unless the + eexxppaanndd__aalliiaasseess shell option is set using sshhoopptt (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - The rules concerning the definition and use of aliases are somewhat - confusing. BBaasshh always reads at least one complete line of input - before executing any of the commands on that line. Aliases are - expanded when a command is read, not when it is executed. Therefore, - an alias definition appearing on the same line as another command does - not take effect until the next line of input is read. The commands + The rules concerning the definition and use of aliases are somewhat + confusing. BBaasshh always reads at least one complete line of input + before executing any of the commands on that line. Aliases are + expanded when a command is read, not when it is executed. Therefore, + an alias definition appearing on the same line as another command does + not take effect until the next line of input is read. The commands following the alias definition on that line are not affected by the new - alias. This behavior is also an issue when functions are executed. - Aliases are expanded when a function definition is read, not when the - function is executed, because a function definition is itself a com- - mand. As a consequence, aliases defined in a function are not avail- - able until after that function is executed. To be safe, always put - alias definitions on a separate line, and do not use aalliiaass in compound + alias. This behavior is also an issue when functions are executed. + Aliases are expanded when a function definition is read, not when the + function is executed, because a function definition is itself a com- + mand. As a consequence, aliases defined in a function are not avail- + able until after that function is executed. To be safe, always put + alias definitions on a separate line, and do not use aalliiaass in compound commands. For almost every purpose, aliases are superseded by shell functions. FFUUNNCCTTIIOONNSS - A shell function, defined as described above under SSHHEELLLL GGRRAAMMMMAARR, - stores a series of commands for later execution. When the name of a - shell function is used as a simple command name, the list of commands + A shell function, defined as described above under SSHHEELLLL GGRRAAMMMMAARR, + stores a series of commands for later execution. When the name of a + shell function is used as a simple command name, the list of commands associated with that function name is executed. Functions are executed - in the context of the current shell; no new process is created to - interpret them (contrast this with the execution of a shell script). - When a function is executed, the arguments to the function become the + in the context of the current shell; no new process is created to + interpret them (contrast this with the execution of a shell script). + When a function is executed, the arguments to the function become the positional parameters during its execution. The special parameter ## is - updated to reflect the change. Special parameter 00 is unchanged. The - first element of the FFUUNNCCNNAAMMEE variable is set to the name of the func- + updated to reflect the change. Special parameter 00 is unchanged. The + first element of the FFUUNNCCNNAAMMEE variable is set to the name of the func- tion while the function is executing. - All other aspects of the shell execution environment are identical - between a function and its caller with these exceptions: the DDEEBBUUGG and - RREETTUURRNN traps (see the description of the ttrraapp builtin under SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS below) are not inherited unless the function has been - given the ttrraaccee attribute (see the description of the ddeeccllaarree builtin - below) or the --oo ffuunnccttrraaccee shell option has been enabled with the sseett - builtin (in which case all functions inherit the DDEEBBUUGG and RREETTUURRNN - traps), and the EERRRR trap is not inherited unless the --oo eerrrrttrraaccee shell + All other aspects of the shell execution environment are identical + between a function and its caller with these exceptions: the DDEEBBUUGG and + RREETTUURRNN traps (see the description of the ttrraapp builtin under SSHHEELLLL + BBUUIILLTTIINN CCOOMMMMAANNDDSS below) are not inherited unless the function has been + given the ttrraaccee attribute (see the description of the ddeeccllaarree builtin + below) or the --oo ffuunnccttrraaccee shell option has been enabled with the sseett + builtin (in which case all functions inherit the DDEEBBUUGG and RREETTUURRNN + traps), and the EERRRR trap is not inherited unless the --oo eerrrrttrraaccee shell option has been enabled. - Variables local to the function may be declared with the llooccaall builtin + Variables local to the function may be declared with the llooccaall builtin command. Ordinarily, variables and their values are shared between the function and its caller. - The FFUUNNCCNNEESSTT variable, if set to a numeric value greater than 0, - defines a maximum function nesting level. Function invocations that + The FFUUNNCCNNEESSTT variable, if set to a numeric value greater than 0, + defines a maximum function nesting level. Function invocations that exceed the limit cause the entire command to abort. - If the builtin command rreettuurrnn is executed in a function, the function - completes and execution resumes with the next command after the func- - tion call. Any command associated with the RREETTUURRNN trap is executed + If the builtin command rreettuurrnn is executed in a function, the function + completes and execution resumes with the next command after the func- + tion call. Any command associated with the RREETTUURRNN trap is executed before execution resumes. When a function completes, the values of the - positional parameters and the special parameter ## are restored to the + positional parameters and the special parameter ## are restored to the values they had prior to the function's execution. - Function names and definitions may be listed with the --ff option to the + Function names and definitions may be listed with the --ff option to the ddeeccllaarree or ttyyppeesseett builtin commands. The --FF option to ddeeccllaarree or ttyyppee-- - sseett will list the function names only (and optionally the source file - and line number, if the eexxttddeebbuugg shell option is enabled). Functions - may be exported so that subshells automatically have them defined with - the --ff option to the eexxppoorrtt builtin. A function definition may be - deleted using the --ff option to the uunnsseett builtin. Note that shell + sseett will list the function names only (and optionally the source file + and line number, if the eexxttddeebbuugg shell option is enabled). Functions + may be exported so that subshells automatically have them defined with + the --ff option to the eexxppoorrtt builtin. A function definition may be + deleted using the --ff option to the uunnsseett builtin. Note that shell functions and variables with the same name may result in multiple iden- - tically-named entries in the environment passed to the shell's chil- + tically-named entries in the environment passed to the shell's chil- dren. Care should be taken in cases where this may cause a problem. Functions may be recursive. The FFUUNNCCNNEESSTT variable may be used to limit - the depth of the function call stack and restrict the number of func- - tion invocations. By default, no limit is imposed on the number of + the depth of the function call stack and restrict the number of func- + tion invocations. By default, no limit is imposed on the number of recursive calls. AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN - The shell allows arithmetic expressions to be evaluated, under certain - circumstances (see the lleett and ddeeccllaarree builtin commands and AArriitthhmmeettiicc - EExxppaannssiioonn). Evaluation is done in fixed-width integers with no check - for overflow, though division by 0 is trapped and flagged as an error. - The operators and their precedence, associativity, and values are the - same as in the C language. The following list of operators is grouped - into levels of equal-precedence operators. The levels are listed in + The shell allows arithmetic expressions to be evaluated, under certain + circumstances (see the lleett and ddeeccllaarree builtin commands and AArriitthhmmeettiicc + EExxppaannssiioonn). Evaluation is done in fixed-width integers with no check + for overflow, though division by 0 is trapped and flagged as an error. + The operators and their precedence, associativity, and values are the + same as in the C language. The following list of operators is grouped + into levels of equal-precedence operators. The levels are listed in order of decreasing precedence. _i_d++++ _i_d---- @@ -2327,46 +2328,46 @@ AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN _e_x_p_r_1 ,, _e_x_p_r_2 comma - Shell variables are allowed as operands; parameter expansion is per- + Shell variables are allowed as operands; parameter expansion is per- formed before the expression is evaluated. Within an expression, shell - variables may also be referenced by name without using the parameter - expansion syntax. A shell variable that is null or unset evaluates to + variables may also be referenced by name without using the parameter + expansion syntax. A shell variable that is null or unset evaluates to 0 when referenced by name without using the parameter expansion syntax. - The value of a variable is evaluated as an arithmetic expression when - it is referenced, or when a variable which has been given the _i_n_t_e_g_e_r + The value of a variable is evaluated as an arithmetic expression when + it is referenced, or when a variable which has been given the _i_n_t_e_g_e_r attribute using ddeeccllaarree --ii is assigned a value. A null value evaluates - to 0. A shell variable need not have its _i_n_t_e_g_e_r attribute turned on + to 0. A shell variable need not have its _i_n_t_e_g_e_r attribute turned on to be used in an expression. Constants with a leading 0 are interpreted as octal numbers. A leading - 0x or 0X denotes hexadecimal. Otherwise, numbers take the form - [_b_a_s_e_#]n, where the optional _b_a_s_e is a decimal number between 2 and 64 - representing the arithmetic base, and _n is a number in that base. If - _b_a_s_e_# is omitted, then base 10 is used. When specifying _n, the digits - greater than 9 are represented by the lowercase letters, the uppercase + 0x or 0X denotes hexadecimal. Otherwise, numbers take the form + [_b_a_s_e_#]n, where the optional _b_a_s_e is a decimal number between 2 and 64 + representing the arithmetic base, and _n is a number in that base. If + _b_a_s_e_# is omitted, then base 10 is used. When specifying _n, the digits + greater than 9 are represented by the lowercase letters, the uppercase letters, @, and _, in that order. If _b_a_s_e is less than or equal to 36, - lowercase and uppercase letters may be used interchangeably to repre- + lowercase and uppercase letters may be used interchangeably to repre- sent numbers between 10 and 35. - Operators are evaluated in order of precedence. Sub-expressions in - parentheses are evaluated first and may override the precedence rules + Operators are evaluated in order of precedence. Sub-expressions in + parentheses are evaluated first and may override the precedence rules above. CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS - Conditional expressions are used by the [[[[ compound command and the - tteesstt and [[ builtin commands to test file attributes and perform string - and arithmetic comparisons. Expressions are formed from the following - unary or binary primaries. If any _f_i_l_e argument to one of the pri- + Conditional expressions are used by the [[[[ compound command and the + tteesstt and [[ builtin commands to test file attributes and perform string + and arithmetic comparisons. Expressions are formed from the following + unary or binary primaries. If any _f_i_l_e argument to one of the pri- maries is of the form _/_d_e_v_/_f_d_/_n, then file descriptor _n is checked. If - the _f_i_l_e argument to one of the primaries is one of _/_d_e_v_/_s_t_d_i_n, - _/_d_e_v_/_s_t_d_o_u_t, or _/_d_e_v_/_s_t_d_e_r_r, file descriptor 0, 1, or 2, respectively, + the _f_i_l_e argument to one of the primaries is one of _/_d_e_v_/_s_t_d_i_n, + _/_d_e_v_/_s_t_d_o_u_t, or _/_d_e_v_/_s_t_d_e_r_r, file descriptor 0, 1, or 2, respectively, is checked. Unless otherwise specified, primaries that operate on files follow sym- bolic links and operate on the target of the link, rather than the link itself. - When used with [[[[, the << and >> operators sort lexicographically using + When used with [[[[, the << and >> operators sort lexicographically using the current locale. The tteesstt command sorts using ASCII ordering. --aa _f_i_l_e @@ -2405,30 +2406,30 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS --LL _f_i_l_e True if _f_i_l_e exists and is a symbolic link. --NN _f_i_l_e - True if _f_i_l_e exists and has been modified since it was last + True if _f_i_l_e exists and has been modified since it was last read. --OO _f_i_l_e True if _f_i_l_e exists and is owned by the effective user id. --SS _f_i_l_e True if _f_i_l_e exists and is a socket. _f_i_l_e_1 --eeff _f_i_l_e_2 - True if _f_i_l_e_1 and _f_i_l_e_2 refer to the same device and inode num- + True if _f_i_l_e_1 and _f_i_l_e_2 refer to the same device and inode num- bers. _f_i_l_e_1 -nntt _f_i_l_e_2 - True if _f_i_l_e_1 is newer (according to modification date) than + True if _f_i_l_e_1 is newer (according to modification date) than _f_i_l_e_2, or if _f_i_l_e_1 exists and _f_i_l_e_2 does not. _f_i_l_e_1 -oott _f_i_l_e_2 - True if _f_i_l_e_1 is older than _f_i_l_e_2, or if _f_i_l_e_2 exists and _f_i_l_e_1 + True if _f_i_l_e_1 is older than _f_i_l_e_2, or if _f_i_l_e_2 exists and _f_i_l_e_1 does not. --oo _o_p_t_n_a_m_e - True if the shell option _o_p_t_n_a_m_e is enabled. See the list of - options under the description of the --oo option to the sseett + True if the shell option _o_p_t_n_a_m_e is enabled. See the list of + options under the description of the --oo option to the sseett builtin below. --vv _v_a_r_n_a_m_e - True if the shell variable _v_a_r_n_a_m_e is set (has been assigned a + True if the shell variable _v_a_r_n_a_m_e is set (has been assigned a value). --RR _v_a_r_n_a_m_e - True if the shell variable _v_a_r_n_a_m_e is set and is a name refer- + True if the shell variable _v_a_r_n_a_m_e is set and is a name refer- ence. --zz _s_t_r_i_n_g True if the length of _s_t_r_i_n_g is zero. @@ -2438,8 +2439,8 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS _s_t_r_i_n_g_1 ==== _s_t_r_i_n_g_2 _s_t_r_i_n_g_1 == _s_t_r_i_n_g_2 - True if the strings are equal. == should be used with the tteesstt - command for POSIX conformance. When used with the [[[[ command, + True if the strings are equal. == should be used with the tteesstt + command for POSIX conformance. When used with the [[[[ command, this performs pattern matching as described above (CCoommppoouunndd CCoomm-- mmaannddss). @@ -2453,106 +2454,106 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS True if _s_t_r_i_n_g_1 sorts after _s_t_r_i_n_g_2 lexicographically. _a_r_g_1 OOPP _a_r_g_2 - OOPP is one of --eeqq, --nnee, --lltt, --llee, --ggtt, or --ggee. These arithmetic - binary operators return true if _a_r_g_1 is equal to, not equal to, - less than, less than or equal to, greater than, or greater than - or equal to _a_r_g_2, respectively. _A_r_g_1 and _a_r_g_2 may be positive + OOPP is one of --eeqq, --nnee, --lltt, --llee, --ggtt, or --ggee. These arithmetic + binary operators return true if _a_r_g_1 is equal to, not equal to, + less than, less than or equal to, greater than, or greater than + or equal to _a_r_g_2, respectively. _A_r_g_1 and _a_r_g_2 may be positive or negative integers. SSIIMMPPLLEE CCOOMMMMAANNDD EEXXPPAANNSSIIOONN - When a simple command is executed, the shell performs the following + When a simple command is executed, the shell performs the following expansions, assignments, and redirections, from left to right. - 1. The words that the parser has marked as variable assignments - (those preceding the command name) and redirections are saved + 1. The words that the parser has marked as variable assignments + (those preceding the command name) and redirections are saved for later processing. - 2. The words that are not variable assignments or redirections are - expanded. If any words remain after expansion, the first word - is taken to be the name of the command and the remaining words + 2. The words that are not variable assignments or redirections are + expanded. If any words remain after expansion, the first word + is taken to be the name of the command and the remaining words are the arguments. 3. Redirections are performed as described above under RREEDDIIRREECCTTIIOONN. 4. The text after the == in each variable assignment undergoes tilde expansion, parameter expansion, command substitution, arithmetic - expansion, and quote removal before being assigned to the vari- + expansion, and quote removal before being assigned to the vari- able. If no command name results, the variable assignments affect the current - shell environment. Otherwise, the variables are added to the environ- - ment of the executed command and do not affect the current shell envi- - ronment. If any of the assignments attempts to assign a value to a - readonly variable, an error occurs, and the command exits with a non- + shell environment. Otherwise, the variables are added to the environ- + ment of the executed command and do not affect the current shell envi- + ronment. If any of the assignments attempts to assign a value to a + readonly variable, an error occurs, and the command exits with a non- zero status. - If no command name results, redirections are performed, but do not - affect the current shell environment. A redirection error causes the + If no command name results, redirections are performed, but do not + affect the current shell environment. A redirection error causes the command to exit with a non-zero status. - If there is a command name left after expansion, execution proceeds as - described below. Otherwise, the command exits. If one of the expan- - sions contained a command substitution, the exit status of the command - is the exit status of the last command substitution performed. If + If there is a command name left after expansion, execution proceeds as + described below. Otherwise, the command exits. If one of the expan- + sions contained a command substitution, the exit status of the command + is the exit status of the last command substitution performed. If there were no command substitutions, the command exits with a status of zero. CCOOMMMMAANNDD EEXXEECCUUTTIIOONN - After a command has been split into words, if it results in a simple - command and an optional list of arguments, the following actions are + After a command has been split into words, if it results in a simple + command and an optional list of arguments, the following actions are taken. - If the command name contains no slashes, the shell attempts to locate - it. If there exists a shell function by that name, that function is - invoked as described above in FFUUNNCCTTIIOONNSS. If the name does not match a - function, the shell searches for it in the list of shell builtins. If + If the command name contains no slashes, the shell attempts to locate + it. If there exists a shell function by that name, that function is + invoked as described above in FFUUNNCCTTIIOONNSS. If the name does not match a + function, the shell searches for it in the list of shell builtins. If a match is found, that builtin is invoked. - If the name is neither a shell function nor a builtin, and contains no - slashes, bbaasshh searches each element of the PPAATTHH for a directory con- - taining an executable file by that name. BBaasshh uses a hash table to - remember the full pathnames of executable files (see hhaasshh under SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS below). A full search of the directories in PPAATTHH is - performed only if the command is not found in the hash table. If the + If the name is neither a shell function nor a builtin, and contains no + slashes, bbaasshh searches each element of the PPAATTHH for a directory con- + taining an executable file by that name. BBaasshh uses a hash table to + remember the full pathnames of executable files (see hhaasshh under SSHHEELLLL + BBUUIILLTTIINN CCOOMMMMAANNDDSS below). A full search of the directories in PPAATTHH is + performed only if the command is not found in the hash table. If the search is unsuccessful, the shell searches for a defined shell function named ccoommmmaanndd__nnoott__ffoouunndd__hhaannddllee. If that function exists, it is invoked - with the original command and the original command's arguments as its - arguments, and the function's exit status becomes the exit status of - the shell. If that function is not defined, the shell prints an error + with the original command and the original command's arguments as its + arguments, and the function's exit status becomes the exit status of + the shell. If that function is not defined, the shell prints an error message and returns an exit status of 127. - If the search is successful, or if the command name contains one or + If the search is successful, or if the command name contains one or more slashes, the shell executes the named program in a separate execu- tion environment. Argument 0 is set to the name given, and the remain- ing arguments to the command are set to the arguments given, if any. - If this execution fails because the file is not in executable format, - and the file is not a directory, it is assumed to be a _s_h_e_l_l _s_c_r_i_p_t, a - file containing shell commands. A subshell is spawned to execute it. - This subshell reinitializes itself, so that the effect is as if a new - shell had been invoked to handle the script, with the exception that - the locations of commands remembered by the parent (see hhaasshh below + If this execution fails because the file is not in executable format, + and the file is not a directory, it is assumed to be a _s_h_e_l_l _s_c_r_i_p_t, a + file containing shell commands. A subshell is spawned to execute it. + This subshell reinitializes itself, so that the effect is as if a new + shell had been invoked to handle the script, with the exception that + the locations of commands remembered by the parent (see hhaasshh below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS) are retained by the child. - If the program is a file beginning with ##!!, the remainder of the first - line specifies an interpreter for the program. The shell executes the + If the program is a file beginning with ##!!, the remainder of the first + line specifies an interpreter for the program. The shell executes the specified interpreter on operating systems that do not handle this exe- cutable format themselves. The arguments to the interpreter consist of - a single optional argument following the interpreter name on the first - line of the program, followed by the name of the program, followed by + a single optional argument following the interpreter name on the first + line of the program, followed by the name of the program, followed by the command arguments, if any. CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT - The shell has an _e_x_e_c_u_t_i_o_n _e_n_v_i_r_o_n_m_e_n_t, which consists of the follow- + The shell has an _e_x_e_c_u_t_i_o_n _e_n_v_i_r_o_n_m_e_n_t, which consists of the follow- ing: - +o open files inherited by the shell at invocation, as modified by + +o open files inherited by the shell at invocation, as modified by redirections supplied to the eexxeecc builtin - +o the current working directory as set by ccdd, ppuusshhdd, or ppooppdd, or + +o the current working directory as set by ccdd, ppuusshhdd, or ppooppdd, or inherited by the shell at invocation - +o the file creation mode mask as set by uummaasskk or inherited from + +o the file creation mode mask as set by uummaasskk or inherited from the shell's parent +o current traps set by ttrraapp @@ -2560,244 +2561,244 @@ CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENN +o shell parameters that are set by variable assignment or with sseett or inherited from the shell's parent in the environment - +o shell functions defined during execution or inherited from the + +o shell functions defined during execution or inherited from the shell's parent in the environment - +o options enabled at invocation (either by default or with com- + +o options enabled at invocation (either by default or with com- mand-line arguments) or by sseett +o options enabled by sshhoopptt +o shell aliases defined with aalliiaass - +o various process IDs, including those of background jobs, the + +o various process IDs, including those of background jobs, the value of $$$$, and the value of PPPPIIDD - When a simple command other than a builtin or shell function is to be - executed, it is invoked in a separate execution environment that con- - sists of the following. Unless otherwise noted, the values are inher- + When a simple command other than a builtin or shell function is to be + executed, it is invoked in a separate execution environment that con- + sists of the following. Unless otherwise noted, the values are inher- ited from the shell. - +o the shell's open files, plus any modifications and additions + +o the shell's open files, plus any modifications and additions specified by redirections to the command +o the current working directory +o the file creation mode mask - +o shell variables and functions marked for export, along with + +o shell variables and functions marked for export, along with variables exported for the command, passed in the environment +o traps caught by the shell are reset to the values inherited from the shell's parent, and traps ignored by the shell are ignored - A command invoked in this separate environment cannot affect the + A command invoked in this separate environment cannot affect the shell's execution environment. - Command substitution, commands grouped with parentheses, and asynchro- + Command substitution, commands grouped with parentheses, and asynchro- nous commands are invoked in a subshell environment that is a duplicate - of the shell environment, except that traps caught by the shell are + of the shell environment, except that traps caught by the shell are reset to the values that the shell inherited from its parent at invoca- tion. Builtin commands that are invoked as part of a pipeline are also executed in a subshell environment. Changes made to the subshell envi- ronment cannot affect the shell's execution environment. Subshells spawned to execute command substitutions inherit the value of - the --ee option from the parent shell. When not in _p_o_s_i_x mode, bbaasshh + the --ee option from the parent shell. When not in _p_o_s_i_x mode, bbaasshh clears the --ee option in such subshells. - If a command is followed by a && and job control is not active, the - default standard input for the command is the empty file _/_d_e_v_/_n_u_l_l. - Otherwise, the invoked command inherits the file descriptors of the + If a command is followed by a && and job control is not active, the + default standard input for the command is the empty file _/_d_e_v_/_n_u_l_l. + Otherwise, the invoked command inherits the file descriptors of the calling shell as modified by redirections. EENNVVIIRROONNMMEENNTT - When a program is invoked it is given an array of strings called the + When a program is invoked it is given an array of strings called the _e_n_v_i_r_o_n_m_e_n_t. This is a list of _n_a_m_e-_v_a_l_u_e pairs, of the form _n_a_m_e=_v_a_l_u_e. - The shell provides several ways to manipulate the environment. On + The shell provides several ways to manipulate the environment. On invocation, the shell scans its own environment and creates a parameter - for each name found, automatically marking it for _e_x_p_o_r_t to child pro- - cesses. Executed commands inherit the environment. The eexxppoorrtt and - ddeeccllaarree --xx commands allow parameters and functions to be added to and + for each name found, automatically marking it for _e_x_p_o_r_t to child pro- + cesses. Executed commands inherit the environment. The eexxppoorrtt and + ddeeccllaarree --xx commands allow parameters and functions to be added to and deleted from the environment. If the value of a parameter in the envi- - ronment is modified, the new value becomes part of the environment, - replacing the old. The environment inherited by any executed command - consists of the shell's initial environment, whose values may be modi- - fied in the shell, less any pairs removed by the uunnsseett command, plus + ronment is modified, the new value becomes part of the environment, + replacing the old. The environment inherited by any executed command + consists of the shell's initial environment, whose values may be modi- + fied in the shell, less any pairs removed by the uunnsseett command, plus any additions via the eexxppoorrtt and ddeeccllaarree --xx commands. - The environment for any _s_i_m_p_l_e _c_o_m_m_a_n_d or function may be augmented - temporarily by prefixing it with parameter assignments, as described + The environment for any _s_i_m_p_l_e _c_o_m_m_a_n_d or function may be augmented + temporarily by prefixing it with parameter assignments, as described above in PPAARRAAMMEETTEERRSS. These assignment statements affect only the envi- ronment seen by that command. - If the --kk option is set (see the sseett builtin command below), then _a_l_l - parameter assignments are placed in the environment for a command, not + If the --kk option is set (see the sseett builtin command below), then _a_l_l + parameter assignments are placed in the environment for a command, not just those that precede the command name. - When bbaasshh invokes an external command, the variable __ is set to the + When bbaasshh invokes an external command, the variable __ is set to the full filename of the command and passed to that command in its environ- ment. EEXXIITT SSTTAATTUUSS - The exit status of an executed command is the value returned by the + The exit status of an executed command is the value returned by the _w_a_i_t_p_i_d system call or equivalent function. Exit statuses fall between - 0 and 255, though, as explained below, the shell may use values above + 0 and 255, though, as explained below, the shell may use values above 125 specially. Exit statuses from shell builtins and compound commands are also limited to this range. Under certain circumstances, the shell will use special values to indicate specific failure modes. For the shell's purposes, a command which exits with a zero exit status - has succeeded. An exit status of zero indicates success. A non-zero - exit status indicates failure. When a command terminates on a fatal + has succeeded. An exit status of zero indicates success. A non-zero + exit status indicates failure. When a command terminates on a fatal signal _N, bbaasshh uses the value of 128+_N as the exit status. - If a command is not found, the child process created to execute it - returns a status of 127. If a command is found but is not executable, + If a command is not found, the child process created to execute it + returns a status of 127. If a command is found but is not executable, the return status is 126. If a command fails because of an error during expansion or redirection, the exit status is greater than zero. - Shell builtin commands return a status of 0 (_t_r_u_e) if successful, and - non-zero (_f_a_l_s_e) if an error occurs while they execute. All builtins - return an exit status of 2 to indicate incorrect usage, generally + Shell builtin commands return a status of 0 (_t_r_u_e) if successful, and + non-zero (_f_a_l_s_e) if an error occurs while they execute. All builtins + return an exit status of 2 to indicate incorrect usage, generally invalid options or missing arguments. - BBaasshh itself returns the exit status of the last command executed, - unless a syntax error occurs, in which case it exits with a non-zero + BBaasshh itself returns the exit status of the last command executed, + unless a syntax error occurs, in which case it exits with a non-zero value. See also the eexxiitt builtin command below. SSIIGGNNAALLSS - When bbaasshh is interactive, in the absence of any traps, it ignores + When bbaasshh is interactive, in the absence of any traps, it ignores SSIIGGTTEERRMM (so that kkiillll 00 does not kill an interactive shell), and SSIIGGIINNTT - is caught and handled (so that the wwaaiitt builtin is interruptible). In - all cases, bbaasshh ignores SSIIGGQQUUIITT. If job control is in effect, bbaasshh + is caught and handled (so that the wwaaiitt builtin is interruptible). In + all cases, bbaasshh ignores SSIIGGQQUUIITT. If job control is in effect, bbaasshh ignores SSIIGGTTTTIINN, SSIIGGTTTTOOUU, and SSIIGGTTSSTTPP. Non-builtin commands run by bbaasshh have signal handlers set to the values - inherited by the shell from its parent. When job control is not in - effect, asynchronous commands ignore SSIIGGIINNTT and SSIIGGQQUUIITT in addition to - these inherited handlers. Commands run as a result of command substi- + inherited by the shell from its parent. When job control is not in + effect, asynchronous commands ignore SSIIGGIINNTT and SSIIGGQQUUIITT in addition to + these inherited handlers. Commands run as a result of command substi- tution ignore the keyboard-generated job control signals SSIIGGTTTTIINN, SSIIGGTT-- TTOOUU, and SSIIGGTTSSTTPP. - The shell exits by default upon receipt of a SSIIGGHHUUPP. Before exiting, - an interactive shell resends the SSIIGGHHUUPP to all jobs, running or + The shell exits by default upon receipt of a SSIIGGHHUUPP. Before exiting, + an interactive shell resends the SSIIGGHHUUPP to all jobs, running or stopped. Stopped jobs are sent SSIIGGCCOONNTT to ensure that they receive the - SSIIGGHHUUPP. To prevent the shell from sending the signal to a particular - job, it should be removed from the jobs table with the ddiissoowwnn builtin - (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) or marked to not receive SSIIGGHHUUPP + SSIIGGHHUUPP. To prevent the shell from sending the signal to a particular + job, it should be removed from the jobs table with the ddiissoowwnn builtin + (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) or marked to not receive SSIIGGHHUUPP using ddiissoowwnn --hh. - If the hhuuppoonneexxiitt shell option has been set with sshhoopptt, bbaasshh sends a + If the hhuuppoonneexxiitt shell option has been set with sshhoopptt, bbaasshh sends a SSIIGGHHUUPP to all jobs when an interactive login shell exits. - If bbaasshh is waiting for a command to complete and receives a signal for + If bbaasshh is waiting for a command to complete and receives a signal for which a trap has been set, the trap will not be executed until the com- - mand completes. When bbaasshh is waiting for an asynchronous command via - the wwaaiitt builtin, the reception of a signal for which a trap has been + mand completes. When bbaasshh is waiting for an asynchronous command via + the wwaaiitt builtin, the reception of a signal for which a trap has been set will cause the wwaaiitt builtin to return immediately with an exit sta- tus greater than 128, immediately after which the trap is executed. JJOOBB CCOONNTTRROOLL - _J_o_b _c_o_n_t_r_o_l refers to the ability to selectively stop (_s_u_s_p_e_n_d) the + _J_o_b _c_o_n_t_r_o_l refers to the ability to selectively stop (_s_u_s_p_e_n_d) the execution of processes and continue (_r_e_s_u_m_e) their execution at a later - point. A user typically employs this facility via an interactive - interface supplied jointly by the operating system kernel's terminal + point. A user typically employs this facility via an interactive + interface supplied jointly by the operating system kernel's terminal driver and bbaasshh. - The shell associates a _j_o_b with each pipeline. It keeps a table of - currently executing jobs, which may be listed with the jjoobbss command. - When bbaasshh starts a job asynchronously (in the _b_a_c_k_g_r_o_u_n_d), it prints a + The shell associates a _j_o_b with each pipeline. It keeps a table of + currently executing jobs, which may be listed with the jjoobbss command. + When bbaasshh starts a job asynchronously (in the _b_a_c_k_g_r_o_u_n_d), it prints a line that looks like: [1] 25647 indicating that this job is job number 1 and that the process ID of the last process in the pipeline associated with this job is 25647. All of - the processes in a single pipeline are members of the same job. BBaasshh + the processes in a single pipeline are members of the same job. BBaasshh uses the _j_o_b abstraction as the basis for job control. - To facilitate the implementation of the user interface to job control, + To facilitate the implementation of the user interface to job control, the operating system maintains the notion of a _c_u_r_r_e_n_t _t_e_r_m_i_n_a_l _p_r_o_c_e_s_s _g_r_o_u_p _I_D. Members of this process group (processes whose process group ID is equal to the current terminal process group ID) receive keyboard- - generated signals such as SSIIGGIINNTT. These processes are said to be in - the _f_o_r_e_g_r_o_u_n_d. _B_a_c_k_g_r_o_u_n_d processes are those whose process group ID + generated signals such as SSIIGGIINNTT. These processes are said to be in + the _f_o_r_e_g_r_o_u_n_d. _B_a_c_k_g_r_o_u_n_d processes are those whose process group ID differs from the terminal's; such processes are immune to keyboard-gen- erated signals. Only foreground processes are allowed to read from or, - if the user so specifies with stty tostop, write to the terminal. - Background processes which attempt to read from (write to when stty - tostop is in effect) the terminal are sent a SSIIGGTTTTIINN ((SSIIGGTTTTOOUU)) signal - by the kernel's terminal driver, which, unless caught, suspends the + if the user so specifies with stty tostop, write to the terminal. + Background processes which attempt to read from (write to when stty + tostop is in effect) the terminal are sent a SSIIGGTTTTIINN ((SSIIGGTTTTOOUU)) signal + by the kernel's terminal driver, which, unless caught, suspends the process. - If the operating system on which bbaasshh is running supports job control, + If the operating system on which bbaasshh is running supports job control, bbaasshh contains facilities to use it. Typing the _s_u_s_p_e_n_d character (typ- ically ^^ZZ, Control-Z) while a process is running causes that process to - be stopped and returns control to bbaasshh. Typing the _d_e_l_a_y_e_d _s_u_s_p_e_n_d - character (typically ^^YY, Control-Y) causes the process to be stopped - when it attempts to read input from the terminal, and control to be - returned to bbaasshh. The user may then manipulate the state of this job, - using the bbgg command to continue it in the background, the ffgg command + be stopped and returns control to bbaasshh. Typing the _d_e_l_a_y_e_d _s_u_s_p_e_n_d + character (typically ^^YY, Control-Y) causes the process to be stopped + when it attempts to read input from the terminal, and control to be + returned to bbaasshh. The user may then manipulate the state of this job, + using the bbgg command to continue it in the background, the ffgg command to continue it in the foreground, or the kkiillll command to kill it. A ^^ZZ takes effect immediately, and has the additional side effect of causing pending output and typeahead to be discarded. There are a number of ways to refer to a job in the shell. The charac- - ter %% introduces a job specification (_j_o_b_s_p_e_c). Job number _n may be + ter %% introduces a job specification (_j_o_b_s_p_e_c). Job number _n may be referred to as %%nn. A job may also be referred to using a prefix of the name used to start it, or using a substring that appears in its command - line. For example, %%ccee refers to a stopped ccee job. If a prefix - matches more than one job, bbaasshh reports an error. Using %%??ccee, on the - other hand, refers to any job containing the string ccee in its command - line. If the substring matches more than one job, bbaasshh reports an - error. The symbols %%%% and %%++ refer to the shell's notion of the _c_u_r_- - _r_e_n_t _j_o_b, which is the last job stopped while it was in the foreground + line. For example, %%ccee refers to a stopped ccee job. If a prefix + matches more than one job, bbaasshh reports an error. Using %%??ccee, on the + other hand, refers to any job containing the string ccee in its command + line. If the substring matches more than one job, bbaasshh reports an + error. The symbols %%%% and %%++ refer to the shell's notion of the _c_u_r_- + _r_e_n_t _j_o_b, which is the last job stopped while it was in the foreground or started in the background. The _p_r_e_v_i_o_u_s _j_o_b may be referenced using %%--. If there is only a single job, %%++ and %%-- can both be used to refer - to that job. In output pertaining to jobs (e.g., the output of the + to that job. In output pertaining to jobs (e.g., the output of the jjoobbss command), the current job is always flagged with a ++, and the pre- - vious job with a --. A single % (with no accompanying job specifica- + vious job with a --. A single % (with no accompanying job specifica- tion) also refers to the current job. - Simply naming a job can be used to bring it into the foreground: %%11 is - a synonym for ````ffgg %%11'''', bringing job 1 from the background into the - foreground. Similarly, ````%%11 &&'''' resumes job 1 in the background, + Simply naming a job can be used to bring it into the foreground: %%11 is + a synonym for ````ffgg %%11'''', bringing job 1 from the background into the + foreground. Similarly, ````%%11 &&'''' resumes job 1 in the background, equivalent to ````bbgg %%11''''. - The shell learns immediately whenever a job changes state. Normally, + The shell learns immediately whenever a job changes state. Normally, bbaasshh waits until it is about to print a prompt before reporting changes - in a job's status so as to not interrupt any other output. If the --bb + in a job's status so as to not interrupt any other output. If the --bb option to the sseett builtin command is enabled, bbaasshh reports such changes - immediately. Any trap on SSIIGGCCHHLLDD is executed for each child that + immediately. Any trap on SSIIGGCCHHLLDD is executed for each child that exits. - If an attempt to exit bbaasshh is made while jobs are stopped (or, if the - cchheecckkjjoobbss shell option has been enabled using the sshhoopptt builtin, run- + If an attempt to exit bbaasshh is made while jobs are stopped (or, if the + cchheecckkjjoobbss shell option has been enabled using the sshhoopptt builtin, run- ning), the shell prints a warning message, and, if the cchheecckkjjoobbss option - is enabled, lists the jobs and their statuses. The jjoobbss command may - then be used to inspect their status. If a second attempt to exit is - made without an intervening command, the shell does not print another + is enabled, lists the jobs and their statuses. The jjoobbss command may + then be used to inspect their status. If a second attempt to exit is + made without an intervening command, the shell does not print another warning, and any stopped jobs are terminated. PPRROOMMPPTTIINNGG When executing interactively, bbaasshh displays the primary prompt PPSS11 when - it is ready to read a command, and the secondary prompt PPSS22 when it - needs more input to complete a command. BBaasshh displays PPSS00 after it - reads a command but before executing it. BBaasshh allows these prompt - strings to be customized by inserting a number of backslash-escaped + it is ready to read a command, and the secondary prompt PPSS22 when it + needs more input to complete a command. BBaasshh displays PPSS00 after it + reads a command but before executing it. BBaasshh allows these prompt + strings to be customized by inserting a number of backslash-escaped special characters that are decoded as follows: \\aa an ASCII bell character (07) - \\dd the date in "Weekday Month Date" format (e.g., "Tue May + \\dd the date in "Weekday Month Date" format (e.g., "Tue May 26") \\DD{{_f_o_r_m_a_t}} - the _f_o_r_m_a_t is passed to _s_t_r_f_t_i_m_e(3) and the result is - inserted into the prompt string; an empty _f_o_r_m_a_t results + the _f_o_r_m_a_t is passed to _s_t_r_f_t_i_m_e(3) and the result is + inserted into the prompt string; an empty _f_o_r_m_a_t results in a locale-specific time representation. The braces are required \\ee an ASCII escape character (033) @@ -2807,7 +2808,7 @@ PPRROOMMPPTTIINNGG \\ll the basename of the shell's terminal device name \\nn newline \\rr carriage return - \\ss the name of the shell, the basename of $$00 (the portion + \\ss the name of the shell, the basename of $$00 (the portion following the final slash) \\tt the current time in 24-hour HH:MM:SS format \\TT the current time in 12-hour HH:MM:SS format @@ -2816,8 +2817,8 @@ PPRROOMMPPTTIINNGG \\uu the username of the current user \\vv the version of bbaasshh (e.g., 2.00) \\VV the release of bbaasshh, version + patch level (e.g., 2.00.0) - \\ww the current working directory, with $$HHOOMMEE abbreviated - with a tilde (uses the value of the PPRROOMMPPTT__DDIIRRTTRRIIMM vari- + \\ww the current working directory, with $$HHOOMMEE abbreviated + with a tilde (uses the value of the PPRROOMMPPTT__DDIIRRTTRRIIMM vari- able) \\WW the basename of the current working directory, with $$HHOOMMEE abbreviated with a tilde @@ -2826,66 +2827,66 @@ PPRROOMMPPTTIINNGG \\$$ if the effective UID is 0, a ##, otherwise a $$ \\_n_n_n the character corresponding to the octal number _n_n_n \\\\ a backslash - \\[[ begin a sequence of non-printing characters, which could - be used to embed a terminal control sequence into the + \\[[ begin a sequence of non-printing characters, which could + be used to embed a terminal control sequence into the prompt \\]] end a sequence of non-printing characters - The command number and the history number are usually different: the - history number of a command is its position in the history list, which - may include commands restored from the history file (see HHIISSTTOORRYY - below), while the command number is the position in the sequence of - commands executed during the current shell session. After the string - is decoded, it is expanded via parameter expansion, command substitu- - tion, arithmetic expansion, and quote removal, subject to the value of - the pprroommppttvvaarrss shell option (see the description of the sshhoopptt command + The command number and the history number are usually different: the + history number of a command is its position in the history list, which + may include commands restored from the history file (see HHIISSTTOORRYY + below), while the command number is the position in the sequence of + commands executed during the current shell session. After the string + is decoded, it is expanded via parameter expansion, command substitu- + tion, arithmetic expansion, and quote removal, subject to the value of + the pprroommppttvvaarrss shell option (see the description of the sshhoopptt command under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). RREEAADDLLIINNEE - This is the library that handles reading input when using an interac- + This is the library that handles reading input when using an interac- tive shell, unless the ----nnooeeddiittiinngg option is given at shell invocation. Line editing is also used when using the --ee option to the rreeaadd builtin. By default, the line editing commands are similar to those of Emacs. A vi-style line editing interface is also available. Line editing can be - enabled at any time using the --oo eemmaaccss or --oo vvii options to the sseett - builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). To turn off line editing - after the shell is running, use the ++oo eemmaaccss or ++oo vvii options to the + enabled at any time using the --oo eemmaaccss or --oo vvii options to the sseett + builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). To turn off line editing + after the shell is running, use the ++oo eemmaaccss or ++oo vvii options to the sseett builtin. RReeaaddlliinnee NNoottaattiioonn In this section, the Emacs-style notation is used to denote keystrokes. - Control keys are denoted by C-_k_e_y, e.g., C-n means Control-N. Simi- - larly, _m_e_t_a keys are denoted by M-_k_e_y, so M-x means Meta-X. (On key- - boards without a _m_e_t_a key, M-_x means ESC _x, i.e., press the Escape key + Control keys are denoted by C-_k_e_y, e.g., C-n means Control-N. Simi- + larly, _m_e_t_a keys are denoted by M-_k_e_y, so M-x means Meta-X. (On key- + boards without a _m_e_t_a key, M-_x means ESC _x, i.e., press the Escape key then the _x key. This makes ESC the _m_e_t_a _p_r_e_f_i_x. The combination M-C-_x - means ESC-Control-_x, or press the Escape key then hold the Control key + means ESC-Control-_x, or press the Escape key then hold the Control key while pressing the _x key.) Readline commands may be given numeric _a_r_g_u_m_e_n_t_s, which normally act as - a repeat count. Sometimes, however, it is the sign of the argument - that is significant. Passing a negative argument to a command that - acts in the forward direction (e.g., kkiillll--lliinnee) causes that command to - act in a backward direction. Commands whose behavior with arguments + a repeat count. Sometimes, however, it is the sign of the argument + that is significant. Passing a negative argument to a command that + acts in the forward direction (e.g., kkiillll--lliinnee) causes that command to + act in a backward direction. Commands whose behavior with arguments deviates from this are noted below. - When a command is described as _k_i_l_l_i_n_g text, the text deleted is saved + When a command is described as _k_i_l_l_i_n_g text, the text deleted is saved for possible future retrieval (_y_a_n_k_i_n_g). The killed text is saved in a _k_i_l_l _r_i_n_g. Consecutive kills cause the text to be accumulated into one unit, which can be yanked all at once. Commands which do not kill text separate the chunks of text on the kill ring. RReeaaddlliinnee IInniittiiaalliizzaattiioonn - Readline is customized by putting commands in an initialization file - (the _i_n_p_u_t_r_c file). The name of this file is taken from the value of - the IINNPPUUTTRRCC variable. If that variable is unset, the default is - _~_/_._i_n_p_u_t_r_c. When a program which uses the readline library starts up, + Readline is customized by putting commands in an initialization file + (the _i_n_p_u_t_r_c file). The name of this file is taken from the value of + the IINNPPUUTTRRCC variable. If that variable is unset, the default is + _~_/_._i_n_p_u_t_r_c. When a program which uses the readline library starts up, the initialization file is read, and the key bindings and variables are - set. There are only a few basic constructs allowed in the readline - initialization file. Blank lines are ignored. Lines beginning with a - ## are comments. Lines beginning with a $$ indicate conditional con- + set. There are only a few basic constructs allowed in the readline + initialization file. Blank lines are ignored. Lines beginning with a + ## are comments. Lines beginning with a $$ indicate conditional con- structs. Other lines denote key bindings and variable settings. - The default key-bindings may be changed with an _i_n_p_u_t_r_c file. Other + The default key-bindings may be changed with an _i_n_p_u_t_r_c file. Other programs that use this library may add their own commands and bindings. For example, placing @@ -2893,18 +2894,18 @@ RREEAADDLLIINNEE M-Control-u: universal-argument or C-Meta-u: universal-argument - into the _i_n_p_u_t_r_c would make M-C-u execute the readline command _u_n_i_v_e_r_- + into the _i_n_p_u_t_r_c would make M-C-u execute the readline command _u_n_i_v_e_r_- _s_a_l_-_a_r_g_u_m_e_n_t. - The following symbolic character names are recognized: _R_U_B_O_U_T, _D_E_L, + The following symbolic character names are recognized: _R_U_B_O_U_T, _D_E_L, _E_S_C, _L_F_D, _N_E_W_L_I_N_E, _R_E_T, _R_E_T_U_R_N, _S_P_C, _S_P_A_C_E, and _T_A_B. - In addition to command names, readline allows keys to be bound to a + In addition to command names, readline allows keys to be bound to a string that is inserted when the key is pressed (a _m_a_c_r_o). RReeaaddlliinnee KKeeyy BBiinnddiinnggss - The syntax for controlling key bindings in the _i_n_p_u_t_r_c file is simple. - All that is required is the name of the command or the text of a macro + The syntax for controlling key bindings in the _i_n_p_u_t_r_c file is simple. + All that is required is the name of the command or the text of a macro and a key sequence to which it should be bound. The name may be speci- fied in one of two ways: as a symbolic key name, possibly with _M_e_t_a_- or _C_o_n_t_r_o_l_- prefixes, or as a key sequence. @@ -2916,15 +2917,15 @@ RREEAADDLLIINNEE Meta-Rubout: backward-kill-word Control-o: "> output" - In the above example, _C_-_u is bound to the function uunniivveerrssaall--aarrgguummeenntt, - _M_-_D_E_L is bound to the function bbaacckkwwaarrdd--kkiillll--wwoorrdd, and _C_-_o is bound to - run the macro expressed on the right hand side (that is, to insert the + In the above example, _C_-_u is bound to the function uunniivveerrssaall--aarrgguummeenntt, + _M_-_D_E_L is bound to the function bbaacckkwwaarrdd--kkiillll--wwoorrdd, and _C_-_o is bound to + run the macro expressed on the right hand side (that is, to insert the text ``> output'' into the line). - In the second form, ""kkeeyysseeqq"":_f_u_n_c_t_i_o_n_-_n_a_m_e or _m_a_c_r_o, kkeeyysseeqq differs - from kkeeyynnaammee above in that strings denoting an entire key sequence may - be specified by placing the sequence within double quotes. Some GNU - Emacs style key escapes can be used, as in the following example, but + In the second form, ""kkeeyysseeqq"":_f_u_n_c_t_i_o_n_-_n_a_m_e or _m_a_c_r_o, kkeeyysseeqq differs + from kkeeyynnaammee above in that strings denoting an entire key sequence may + be specified by placing the sequence within double quotes. Some GNU + Emacs style key escapes can be used, as in the following example, but the symbolic character names are not recognized. "\C-u": universal-argument @@ -2932,7 +2933,7 @@ RREEAADDLLIINNEE "\e[11~": "Function Key 1" In this example, _C_-_u is again bound to the function uunniivveerrssaall--aarrgguummeenntt. - _C_-_x _C_-_r is bound to the function rree--rreeaadd--iinniitt--ffiillee, and _E_S_C _[ _1 _1 _~ is + _C_-_x _C_-_r is bound to the function rree--rreeaadd--iinniitt--ffiillee, and _E_S_C _[ _1 _1 _~ is bound to insert the text ``Function Key 1''. The full set of GNU Emacs style escape sequences is @@ -2943,7 +2944,7 @@ RREEAADDLLIINNEE \\"" literal " \\'' literal ' - In addition to the GNU Emacs style escape sequences, a second set of + In addition to the GNU Emacs style escape sequences, a second set of backslash escapes is available: \\aa alert (bell) \\bb backspace @@ -2953,20 +2954,20 @@ RREEAADDLLIINNEE \\rr carriage return \\tt horizontal tab \\vv vertical tab - \\_n_n_n the eight-bit character whose value is the octal value + \\_n_n_n the eight-bit character whose value is the octal value _n_n_n (one to three digits) - \\xx_H_H the eight-bit character whose value is the hexadecimal + \\xx_H_H the eight-bit character whose value is the hexadecimal value _H_H (one or two hex digits) When entering the text of a macro, single or double quotes must be used to indicate a macro definition. Unquoted text is assumed to be a func- - tion name. In the macro body, the backslash escapes described above - are expanded. Backslash will quote any other character in the macro + tion name. In the macro body, the backslash escapes described above + are expanded. Backslash will quote any other character in the macro text, including " and '. - BBaasshh allows the current readline key bindings to be displayed or modi- - fied with the bbiinndd builtin command. The editing mode may be switched - during interactive use by using the --oo option to the sseett builtin com- + BBaasshh allows the current readline key bindings to be displayed or modi- + fied with the bbiinndd builtin command. The editing mode may be switched + during interactive use by using the --oo option to the sseett builtin com- mand (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). RReeaaddlliinnee VVaarriiaabblleess @@ -2976,249 +2977,249 @@ RREEAADDLLIINNEE sseett _v_a_r_i_a_b_l_e_-_n_a_m_e _v_a_l_u_e - Except where noted, readline variables can take the values OOnn or OOffff - (without regard to case). Unrecognized variable names are ignored. - When a variable value is read, empty or null values, "on" (case-insen- + Except where noted, readline variables can take the values OOnn or OOffff + (without regard to case). Unrecognized variable names are ignored. + When a variable value is read, empty or null values, "on" (case-insen- sitive), and "1" are equivalent to OOnn. All other values are equivalent to OOffff. The variables and their default values are: bbeellll--ssttyyllee ((aauuddiibbllee)) - Controls what happens when readline wants to ring the terminal + Controls what happens when readline wants to ring the terminal bell. If set to nnoonnee, readline never rings the bell. If set to - vviissiibbllee, readline uses a visible bell if one is available. If + vviissiibbllee, readline uses a visible bell if one is available. If set to aauuddiibbllee, readline attempts to ring the terminal's bell. bbiinndd--ttttyy--ssppeecciiaall--cchhaarrss ((OOnn)) - If set to OOnn, readline attempts to bind the control characters + If set to OOnn, readline attempts to bind the control characters treated specially by the kernel's terminal driver to their read- line equivalents. ccoolloorreedd--ccoommpplleettiioonn--pprreeffiixx ((OOffff)) - If set to OOnn, when listing completions, readline displays the + If set to OOnn, when listing completions, readline displays the common prefix of the set of possible completions using a differ- - ent color. The color definitions are taken from the value of + ent color. The color definitions are taken from the value of the LLSS__CCOOLLOORRSS environment variable. ccoolloorreedd--ssttaattss ((OOffff)) - If set to OOnn, readline displays possible completions using dif- - ferent colors to indicate their file type. The color defini- - tions are taken from the value of the LLSS__CCOOLLOORRSS environment + If set to OOnn, readline displays possible completions using dif- + ferent colors to indicate their file type. The color defini- + tions are taken from the value of the LLSS__CCOOLLOORRSS environment variable. ccoommmmeenntt--bbeeggiinn ((````##'''')) - The string that is inserted when the readline iinnsseerrtt--ccoommmmeenntt + The string that is inserted when the readline iinnsseerrtt--ccoommmmeenntt command is executed. This command is bound to MM--## in emacs mode and to ## in vi command mode. ccoommpplleettiioonn--iiggnnoorree--ccaassee ((OOffff)) If set to OOnn, readline performs filename matching and completion in a case-insensitive fashion. ccoommpplleettiioonn--pprreeffiixx--ddiissppllaayy--lleennggtthh ((00)) - The length in characters of the common prefix of a list of pos- - sible completions that is displayed without modification. When - set to a value greater than zero, common prefixes longer than - this value are replaced with an ellipsis when displaying possi- + The length in characters of the common prefix of a list of pos- + sible completions that is displayed without modification. When + set to a value greater than zero, common prefixes longer than + this value are replaced with an ellipsis when displaying possi- ble completions. ccoommpplleettiioonn--qquueerryy--iitteemmss ((110000)) - This determines when the user is queried about viewing the num- - ber of possible completions generated by the ppoossssiibbllee--ccoommppllee-- - ttiioonnss command. It may be set to any integer value greater than - or equal to zero. If the number of possible completions is + This determines when the user is queried about viewing the num- + ber of possible completions generated by the ppoossssiibbllee--ccoommppllee-- + ttiioonnss command. It may be set to any integer value greater than + or equal to zero. If the number of possible completions is greater than or equal to the value of this variable, the user is - asked whether or not he wishes to view them; otherwise they are + asked whether or not he wishes to view them; otherwise they are simply listed on the terminal. ccoonnvveerrtt--mmeettaa ((OOnn)) - If set to OOnn, readline will convert characters with the eighth + If set to OOnn, readline will convert characters with the eighth bit set to an ASCII key sequence by stripping the eighth bit and - prefixing an escape character (in effect, using escape as the + prefixing an escape character (in effect, using escape as the _m_e_t_a _p_r_e_f_i_x). ddiissaabbllee--ccoommpplleettiioonn ((OOffff)) If set to OOnn, readline will inhibit word completion. Completion - characters will be inserted into the line as if they had been + characters will be inserted into the line as if they had been mapped to sseellff--iinnsseerrtt. eeddiittiinngg--mmooddee ((eemmaaccss)) Controls whether readline begins with a set of key bindings sim- ilar to _E_m_a_c_s or _v_i. eeddiittiinngg--mmooddee can be set to either eemmaaccss or vvii. eecchhoo--ccoonnttrrooll--cchhaarraacctteerrss ((OOnn)) - When set to OOnn, on operating systems that indicate they support + When set to OOnn, on operating systems that indicate they support it, readline echoes a character corresponding to a signal gener- ated from the keyboard. eennaabbllee--bbrraacckkeetteedd--ppaassttee ((OOffff)) - When set to OOnn, readline will configure the terminal in a way + When set to OOnn, readline will configure the terminal in a way that will enable it to insert each paste into the editing buffer as a single string of characters, instead of treating each char- - acter as if it had been read from the keyboard. This can pre- - vent pasted characters from being interpreted as editing com- + acter as if it had been read from the keyboard. This can pre- + vent pasted characters from being interpreted as editing com- mands. eennaabbllee--kkeeyyppaadd ((OOffff)) When set to OOnn, readline will try to enable the application key- - pad when it is called. Some systems need this to enable the + pad when it is called. Some systems need this to enable the arrow keys. eennaabbllee--mmeettaa--kkeeyy ((OOnn)) - When set to OOnn, readline will try to enable any meta modifier - key the terminal claims to support when it is called. On many + When set to OOnn, readline will try to enable any meta modifier + key the terminal claims to support when it is called. On many terminals, the meta key is used to send eight-bit characters. eexxppaanndd--ttiillddee ((OOffff)) - If set to OOnn, tilde expansion is performed when readline + If set to OOnn, tilde expansion is performed when readline attempts word completion. hhiissttoorryy--pprreesseerrvvee--ppooiinntt ((OOffff)) - If set to OOnn, the history code attempts to place point at the - same location on each history line retrieved with pprreevviioouuss--hhiiss-- + If set to OOnn, the history code attempts to place point at the + same location on each history line retrieved with pprreevviioouuss--hhiiss-- ttoorryy or nneexxtt--hhiissttoorryy. hhiissttoorryy--ssiizzee ((uunnsseett)) - Set the maximum number of history entries saved in the history - list. If set to zero, any existing history entries are deleted + Set the maximum number of history entries saved in the history + list. If set to zero, any existing history entries are deleted and no new entries are saved. If set to a value less than zero, - the number of history entries is not limited. By default, the + the number of history entries is not limited. By default, the number of history entries is not limited. hhoorriizzoonnttaall--ssccrroollll--mmooddee ((OOffff)) - When set to OOnn, makes readline use a single line for display, + When set to OOnn, makes readline use a single line for display, scrolling the input horizontally on a single screen line when it - becomes longer than the screen width rather than wrapping to a + becomes longer than the screen width rather than wrapping to a new line. iinnppuutt--mmeettaa ((OOffff)) - If set to OOnn, readline will enable eight-bit input (that is, it - will not strip the high bit from the characters it reads), + If set to OOnn, readline will enable eight-bit input (that is, it + will not strip the high bit from the characters it reads), regardless of what the terminal claims it can support. The name mmeettaa--ffllaagg is a synonym for this variable. iisseeaarrcchh--tteerrmmiinnaattoorrss ((````CC--[[CC--JJ'''')) - The string of characters that should terminate an incremental - search without subsequently executing the character as a com- - mand. If this variable has not been given a value, the charac- + The string of characters that should terminate an incremental + search without subsequently executing the character as a com- + mand. If this variable has not been given a value, the charac- ters _E_S_C and _C_-_J will terminate an incremental search. kkeeyymmaapp ((eemmaaccss)) - Set the current readline keymap. The set of valid keymap names - is _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_c_o_m_- - _m_a_n_d, and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d; _e_m_a_c_s is - equivalent to _e_m_a_c_s_-_s_t_a_n_d_a_r_d. The default value is _e_m_a_c_s; the + Set the current readline keymap. The set of valid keymap names + is _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_c_o_m_- + _m_a_n_d, and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d; _e_m_a_c_s is + equivalent to _e_m_a_c_s_-_s_t_a_n_d_a_r_d. The default value is _e_m_a_c_s; the value of eeddiittiinngg--mmooddee also affects the default keymap. eemmaaccss--mmooddee--ssttrriinngg ((@@)) This string is displayed immediately before the last line of the - primary prompt when emacs editing mode is active. The value is - expanded like a key binding, so the standard set of meta- and - control prefixes and backslash escape sequences is available. - Use the \1 and \2 escapes to begin and end sequences of non- - printing characters, which can be used to embed a terminal con- + primary prompt when emacs editing mode is active. The value is + expanded like a key binding, so the standard set of meta- and + control prefixes and backslash escape sequences is available. + Use the \1 and \2 escapes to begin and end sequences of non- + printing characters, which can be used to embed a terminal con- trol sequence into the mode string. kkeeyysseeqq--ttiimmeeoouutt ((550000)) - Specifies the duration _r_e_a_d_l_i_n_e will wait for a character when - reading an ambiguous key sequence (one that can form a complete + Specifies the duration _r_e_a_d_l_i_n_e will wait for a character when + reading an ambiguous key sequence (one that can form a complete key sequence using the input read so far, or can take additional - input to complete a longer key sequence). If no input is - received within the timeout, _r_e_a_d_l_i_n_e will use the shorter but - complete key sequence. The value is specified in milliseconds, - so a value of 1000 means that _r_e_a_d_l_i_n_e will wait one second for - additional input. If this variable is set to a value less than - or equal to zero, or to a non-numeric value, _r_e_a_d_l_i_n_e will wait - until another key is pressed to decide which key sequence to + input to complete a longer key sequence). If no input is + received within the timeout, _r_e_a_d_l_i_n_e will use the shorter but + complete key sequence. The value is specified in milliseconds, + so a value of 1000 means that _r_e_a_d_l_i_n_e will wait one second for + additional input. If this variable is set to a value less than + or equal to zero, or to a non-numeric value, _r_e_a_d_l_i_n_e will wait + until another key is pressed to decide which key sequence to complete. mmaarrkk--ddiirreeccttoorriieess ((OOnn)) If set to OOnn, completed directory names have a slash appended. mmaarrkk--mmooddiiffiieedd--lliinneess ((OOffff)) - If set to OOnn, history lines that have been modified are dis- + If set to OOnn, history lines that have been modified are dis- played with a preceding asterisk (**). mmaarrkk--ssyymmlliinnkkeedd--ddiirreeccttoorriieess ((OOffff)) If set to OOnn, completed names which are symbolic links to direc- - tories have a slash appended (subject to the value of + tories have a slash appended (subject to the value of mmaarrkk--ddiirreeccttoorriieess). mmaattcchh--hhiiddddeenn--ffiilleess ((OOnn)) - This variable, when set to OOnn, causes readline to match files - whose names begin with a `.' (hidden files) when performing - filename completion. If set to OOffff, the leading `.' must be + This variable, when set to OOnn, causes readline to match files + whose names begin with a `.' (hidden files) when performing + filename completion. If set to OOffff, the leading `.' must be supplied by the user in the filename to be completed. mmeennuu--ccoommpplleettee--ddiissppllaayy--pprreeffiixx ((OOffff)) - If set to OOnn, menu completion displays the common prefix of the + If set to OOnn, menu completion displays the common prefix of the list of possible completions (which may be empty) before cycling through the list. oouuttppuutt--mmeettaa ((OOffff)) - If set to OOnn, readline will display characters with the eighth + If set to OOnn, readline will display characters with the eighth bit set directly rather than as a meta-prefixed escape sequence. ppaaggee--ccoommpplleettiioonnss ((OOnn)) - If set to OOnn, readline uses an internal _m_o_r_e-like pager to dis- + If set to OOnn, readline uses an internal _m_o_r_e-like pager to dis- play a screenful of possible completions at a time. pprriinntt--ccoommpplleettiioonnss--hhoorriizzoonnttaallllyy ((OOffff)) - If set to OOnn, readline will display completions with matches - sorted horizontally in alphabetical order, rather than down the + If set to OOnn, readline will display completions with matches + sorted horizontally in alphabetical order, rather than down the screen. rreevveerrtt--aallll--aatt--nneewwlliinnee ((OOffff)) - If set to OOnn, readline will undo all changes to history lines + If set to OOnn, readline will undo all changes to history lines before returning when aacccceepptt--lliinnee is executed. By default, his- - tory lines may be modified and retain individual undo lists + tory lines may be modified and retain individual undo lists across calls to rreeaaddlliinnee. sshhooww--aallll--iiff--aammbbiigguuoouuss ((OOffff)) - This alters the default behavior of the completion functions. + This alters the default behavior of the completion functions. If set to OOnn, words which have more than one possible completion - cause the matches to be listed immediately instead of ringing + cause the matches to be listed immediately instead of ringing the bell. sshhooww--aallll--iiff--uunnmmooddiiffiieedd ((OOffff)) - This alters the default behavior of the completion functions in + This alters the default behavior of the completion functions in a fashion similar to sshhooww--aallll--iiff--aammbbiigguuoouuss. If set to OOnn, words - which have more than one possible completion without any possi- - ble partial completion (the possible completions don't share a - common prefix) cause the matches to be listed immediately + which have more than one possible completion without any possi- + ble partial completion (the possible completions don't share a + common prefix) cause the matches to be listed immediately instead of ringing the bell. sshhooww--mmooddee--iinn--pprroommpptt ((OOffff)) - If set to OOnn, add a character to the beginning of the prompt - indicating the editing mode: emacs (@), vi command (:) or vi + If set to OOnn, add a character to the beginning of the prompt + indicating the editing mode: emacs (@), vi command (:) or vi insertion (+). sskkiipp--ccoommpplleetteedd--tteexxtt ((OOffff)) - If set to OOnn, this alters the default completion behavior when - inserting a single match into the line. It's only active when - performing completion in the middle of a word. If enabled, - readline does not insert characters from the completion that - match characters after point in the word being completed, so + If set to OOnn, this alters the default completion behavior when + inserting a single match into the line. It's only active when + performing completion in the middle of a word. If enabled, + readline does not insert characters from the completion that + match characters after point in the word being completed, so portions of the word following the cursor are not duplicated. vvii--ccmmdd--mmooddee--ssttrriinngg ((((ccmmdd)))) This string is displayed immediately before the last line of the - primary prompt when vi editing mode is active and in command + primary prompt when vi editing mode is active and in command mode. The value is expanded like a key binding, so the standard set of meta- and control prefixes and backslash escape sequences - is available. Use the \1 and \2 escapes to begin and end + is available. Use the \1 and \2 escapes to begin and end sequences of non-printing characters, which can be used to embed a terminal control sequence into the mode string. vvii--iinnss--mmooddee--ssttrriinngg ((((iinnss)))) This string is displayed immediately before the last line of the - primary prompt when vi editing mode is active and in insertion + primary prompt when vi editing mode is active and in insertion mode. The value is expanded like a key binding, so the standard set of meta- and control prefixes and backslash escape sequences - is available. Use the \1 and \2 escapes to begin and end + is available. Use the \1 and \2 escapes to begin and end sequences of non-printing characters, which can be used to embed a terminal control sequence into the mode string. vviissiibbllee--ssttaattss ((OOffff)) - If set to OOnn, a character denoting a file's type as reported by - _s_t_a_t(2) is appended to the filename when listing possible com- + If set to OOnn, a character denoting a file's type as reported by + _s_t_a_t(2) is appended to the filename when listing possible com- pletions. RReeaaddlliinnee CCoonnddiittiioonnaall CCoonnssttrruuccttss - Readline implements a facility similar in spirit to the conditional - compilation features of the C preprocessor which allows key bindings - and variable settings to be performed as the result of tests. There + Readline implements a facility similar in spirit to the conditional + compilation features of the C preprocessor which allows key bindings + and variable settings to be performed as the result of tests. There are four parser directives used. - $$iiff The $$iiff construct allows bindings to be made based on the edit- - ing mode, the terminal being used, or the application using - readline. The text of the test extends to the end of the line; + $$iiff The $$iiff construct allows bindings to be made based on the edit- + ing mode, the terminal being used, or the application using + readline. The text of the test extends to the end of the line; no characters are required to isolate it. - mmooddee The mmooddee== form of the $$iiff directive is used to test - whether readline is in emacs or vi mode. This may be - used in conjunction with the sseett kkeeyymmaapp command, for - instance, to set bindings in the _e_m_a_c_s_-_s_t_a_n_d_a_r_d and - _e_m_a_c_s_-_c_t_l_x keymaps only if readline is starting out in + mmooddee The mmooddee== form of the $$iiff directive is used to test + whether readline is in emacs or vi mode. This may be + used in conjunction with the sseett kkeeyymmaapp command, for + instance, to set bindings in the _e_m_a_c_s_-_s_t_a_n_d_a_r_d and + _e_m_a_c_s_-_c_t_l_x keymaps only if readline is starting out in emacs mode. - tteerrmm The tteerrmm== form may be used to include terminal-specific + tteerrmm The tteerrmm== form may be used to include terminal-specific key bindings, perhaps to bind the key sequences output by the terminal's function keys. The word on the right side of the == is tested against both the full name of the ter- - minal and the portion of the terminal name before the - first --. This allows _s_u_n to match both _s_u_n and _s_u_n_-_c_m_d, + minal and the portion of the terminal name before the + first --. This allows _s_u_n to match both _s_u_n and _s_u_n_-_c_m_d, for instance. aapppplliiccaattiioonn The aapppplliiccaattiioonn construct is used to include application- specific settings. Each program using the readline - library sets the _a_p_p_l_i_c_a_t_i_o_n _n_a_m_e, and an initialization + library sets the _a_p_p_l_i_c_a_t_i_o_n _n_a_m_e, and an initialization file can test for a particular value. This could be used - to bind key sequences to functions useful for a specific - program. For instance, the following command adds a key - sequence that quotes the current or previous word in + to bind key sequences to functions useful for a specific + program. For instance, the following command adds a key + sequence that quotes the current or previous word in bbaasshh: $$iiff Bash @@ -3233,51 +3234,51 @@ RREEAADDLLIINNEE test fails. $$iinncclluuddee - This directive takes a single filename as an argument and reads - commands and bindings from that file. For example, the follow- + This directive takes a single filename as an argument and reads + commands and bindings from that file. For example, the follow- ing directive would read _/_e_t_c_/_i_n_p_u_t_r_c: $$iinncclluuddee _/_e_t_c_/_i_n_p_u_t_r_c SSeeaarrcchhiinngg - Readline provides commands for searching through the command history + Readline provides commands for searching through the command history (see HHIISSTTOORRYY below) for lines containing a specified string. There are two search modes: _i_n_c_r_e_m_e_n_t_a_l and _n_o_n_-_i_n_c_r_e_m_e_n_t_a_l. - Incremental searches begin before the user has finished typing the - search string. As each character of the search string is typed, read- + Incremental searches begin before the user has finished typing the + search string. As each character of the search string is typed, read- line displays the next entry from the history matching the string typed - so far. An incremental search requires only as many characters as - needed to find the desired history entry. The characters present in - the value of the iisseeaarrcchh--tteerrmmiinnaattoorrss variable are used to terminate an + so far. An incremental search requires only as many characters as + needed to find the desired history entry. The characters present in + the value of the iisseeaarrcchh--tteerrmmiinnaattoorrss variable are used to terminate an incremental search. If that variable has not been assigned a value the - Escape and Control-J characters will terminate an incremental search. - Control-G will abort an incremental search and restore the original - line. When the search is terminated, the history entry containing the + Escape and Control-J characters will terminate an incremental search. + Control-G will abort an incremental search and restore the original + line. When the search is terminated, the history entry containing the search string becomes the current line. - To find other matching entries in the history list, type Control-S or - Control-R as appropriate. This will search backward or forward in the - history for the next entry matching the search string typed so far. - Any other key sequence bound to a readline command will terminate the - search and execute that command. For instance, a _n_e_w_l_i_n_e will termi- + To find other matching entries in the history list, type Control-S or + Control-R as appropriate. This will search backward or forward in the + history for the next entry matching the search string typed so far. + Any other key sequence bound to a readline command will terminate the + search and execute that command. For instance, a _n_e_w_l_i_n_e will termi- nate the search and accept the line, thereby executing the command from the history list. Readline remembers the last incremental search string. If two Control- - Rs are typed without any intervening characters defining a new search + Rs are typed without any intervening characters defining a new search string, any remembered search string is used. - Non-incremental searches read the entire search string before starting - to search for matching history lines. The search string may be typed + Non-incremental searches read the entire search string before starting + to search for matching history lines. The search string may be typed by the user or be part of the contents of the current line. RReeaaddlliinnee CCoommmmaanndd NNaammeess - The following is a list of the names of the commands and the default + The following is a list of the names of the commands and the default key sequences to which they are bound. Command names without an accom- panying key sequence are unbound by default. In the following descrip- - tions, _p_o_i_n_t refers to the current cursor position, and _m_a_r_k refers to - a cursor position saved by the sseett--mmaarrkk command. The text between the + tions, _p_o_i_n_t refers to the current cursor position, and _m_a_r_k refers to + a cursor position saved by the sseett--mmaarrkk command. The text between the point and mark is referred to as the _r_e_g_i_o_n. CCoommmmaannddss ffoorr MMoovviinngg @@ -3293,17 +3294,17 @@ RREEAADDLLIINNEE Move forward to the end of the next word. Words are composed of alphanumeric characters (letters and digits). bbaacckkwwaarrdd--wwoorrdd ((MM--bb)) - Move back to the start of the current or previous word. Words + Move back to the start of the current or previous word. Words are composed of alphanumeric characters (letters and digits). sshheellll--ffoorrwwaarrdd--wwoorrdd - Move forward to the end of the next word. Words are delimited + Move forward to the end of the next word. Words are delimited by non-quoted shell metacharacters. sshheellll--bbaacckkwwaarrdd--wwoorrdd - Move back to the start of the current or previous word. Words + Move back to the start of the current or previous word. Words are delimited by non-quoted shell metacharacters. cclleeaarr--ssccrreeeenn ((CC--ll)) - Clear the screen leaving the current line at the top of the - screen. With an argument, refresh the current line without + Clear the screen leaving the current line at the top of the + screen. With an argument, refresh the current line without clearing the screen. rreeddrraaww--ccuurrrreenntt--lliinnee Refresh the current line. @@ -3311,60 +3312,60 @@ RREEAADDLLIINNEE CCoommmmaannddss ffoorr MMaanniippuullaattiinngg tthhee HHiissttoorryy aacccceepptt--lliinnee ((NNeewwlliinnee,, RReettuurrnn)) Accept the line regardless of where the cursor is. If this line - is non-empty, add it to the history list according to the state - of the HHIISSTTCCOONNTTRROOLL variable. If the line is a modified history + is non-empty, add it to the history list according to the state + of the HHIISSTTCCOONNTTRROOLL variable. If the line is a modified history line, then restore the history line to its original state. pprreevviioouuss--hhiissttoorryy ((CC--pp)) Fetch the previous command from the history list, moving back in the list. nneexxtt--hhiissttoorryy ((CC--nn)) - Fetch the next command from the history list, moving forward in + Fetch the next command from the history list, moving forward in the list. bbeeggiinnnniinngg--ooff--hhiissttoorryy ((MM--<<)) Move to the first line in the history. eenndd--ooff--hhiissttoorryy ((MM-->>)) - Move to the end of the input history, i.e., the line currently + Move to the end of the input history, i.e., the line currently being entered. rreevveerrssee--sseeaarrcchh--hhiissttoorryy ((CC--rr)) - Search backward starting at the current line and moving `up' - through the history as necessary. This is an incremental + Search backward starting at the current line and moving `up' + through the history as necessary. This is an incremental search. ffoorrwwaarrdd--sseeaarrcchh--hhiissttoorryy ((CC--ss)) - Search forward starting at the current line and moving `down' - through the history as necessary. This is an incremental + Search forward starting at the current line and moving `down' + through the history as necessary. This is an incremental search. nnoonn--iinnccrreemmeennttaall--rreevveerrssee--sseeaarrcchh--hhiissttoorryy ((MM--pp)) Search backward through the history starting at the current line - using a non-incremental search for a string supplied by the + using a non-incremental search for a string supplied by the user. nnoonn--iinnccrreemmeennttaall--ffoorrwwaarrdd--sseeaarrcchh--hhiissttoorryy ((MM--nn)) - Search forward through the history using a non-incremental + Search forward through the history using a non-incremental search for a string supplied by the user. hhiissttoorryy--sseeaarrcchh--ffoorrwwaarrdd - Search forward through the history for the string of characters - between the start of the current line and the point. This is a + Search forward through the history for the string of characters + between the start of the current line and the point. This is a non-incremental search. hhiissttoorryy--sseeaarrcchh--bbaacckkwwaarrdd Search backward through the history for the string of characters - between the start of the current line and the point. This is a + between the start of the current line and the point. This is a non-incremental search. yyaannkk--nntthh--aarrgg ((MM--CC--yy)) - Insert the first argument to the previous command (usually the + Insert the first argument to the previous command (usually the second word on the previous line) at point. With an argument _n, - insert the _nth word from the previous command (the words in the - previous command begin with word 0). A negative argument + insert the _nth word from the previous command (the words in the + previous command begin with word 0). A negative argument inserts the _nth word from the end of the previous command. Once - the argument _n is computed, the argument is extracted as if the + the argument _n is computed, the argument is extracted as if the "!_n" history expansion had been specified. yyaannkk--llaasstt--aarrgg ((MM--..,, MM--__)) - Insert the last argument to the previous command (the last word + Insert the last argument to the previous command (the last word of the previous history entry). With a numeric argument, behave - exactly like yyaannkk--nntthh--aarrgg. Successive calls to yyaannkk--llaasstt--aarrgg - move back through the history list, inserting the last word (or - the word specified by the argument to the first call) of each + exactly like yyaannkk--nntthh--aarrgg. Successive calls to yyaannkk--llaasstt--aarrgg + move back through the history list, inserting the last word (or + the word specified by the argument to the first call) of each line in turn. Any numeric argument supplied to these successive - calls determines the direction to move through the history. A - negative argument switches the direction through the history + calls determines the direction to move through the history. A + negative argument switches the direction through the history (back or forward). The history expansion facilities are used to extract the last word, as if the "!$" history expansion had been specified. @@ -3373,79 +3374,79 @@ RREEAADDLLIINNEE tory expansion as well as all of the shell word expansions. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN below for a description of history expansion. hhiissttoorryy--eexxppaanndd--lliinnee ((MM--^^)) - Perform history expansion on the current line. See HHIISSTTOORRYY + Perform history expansion on the current line. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN below for a description of history expansion. mmaaggiicc--ssppaaccee - Perform history expansion on the current line and insert a + Perform history expansion on the current line and insert a space. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN below for a description of history expansion. aalliiaass--eexxppaanndd--lliinnee - Perform alias expansion on the current line. See AALLIIAASSEESS above + Perform alias expansion on the current line. See AALLIIAASSEESS above for a description of alias expansion. hhiissttoorryy--aanndd--aalliiaass--eexxppaanndd--lliinnee Perform history and alias expansion on the current line. iinnsseerrtt--llaasstt--aarrgguummeenntt ((MM--..,, MM--__)) A synonym for yyaannkk--llaasstt--aarrgg. ooppeerraattee--aanndd--ggeett--nneexxtt ((CC--oo)) - Accept the current line for execution and fetch the next line - relative to the current line from the history for editing. Any + Accept the current line for execution and fetch the next line + relative to the current line from the history for editing. Any argument is ignored. eeddiitt--aanndd--eexxeeccuuttee--ccoommmmaanndd ((CC--xxCC--ee)) - Invoke an editor on the current command line, and execute the - result as shell commands. BBaasshh attempts to invoke $$VVIISSUUAALL, + Invoke an editor on the current command line, and execute the + result as shell commands. BBaasshh attempts to invoke $$VVIISSUUAALL, $$EEDDIITTOORR, and _e_m_a_c_s as the editor, in that order. CCoommmmaannddss ffoorr CChhaannggiinngg TTeexxtt _e_n_d_-_o_f_-_f_i_l_e ((uussuuaallllyy CC--dd)) - The character indicating end-of-file as set, for example, by - ``stty''. If this character is read when there are no charac- - ters on the line, and point is at the beginning of the line, + The character indicating end-of-file as set, for example, by + ``stty''. If this character is read when there are no charac- + ters on the line, and point is at the beginning of the line, Readline interprets it as the end of input and returns EEOOFF. ddeelleettee--cchhaarr ((CC--dd)) Delete the character at point. If this function is bound to the same character as the tty EEOOFF character, as CC--dd commonly is, see above for the effects. bbaacckkwwaarrdd--ddeelleettee--cchhaarr ((RRuubboouutt)) - Delete the character behind the cursor. When given a numeric + Delete the character behind the cursor. When given a numeric argument, save the deleted text on the kill ring. ffoorrwwaarrdd--bbaacckkwwaarrdd--ddeelleettee--cchhaarr - Delete the character under the cursor, unless the cursor is at + Delete the character under the cursor, unless the cursor is at the end of the line, in which case the character behind the cur- sor is deleted. qquuootteedd--iinnsseerrtt ((CC--qq,, CC--vv)) - Add the next character typed to the line verbatim. This is how + Add the next character typed to the line verbatim. This is how to insert characters like CC--qq, for example. ttaabb--iinnsseerrtt ((CC--vv TTAABB)) Insert a tab character. sseellff--iinnsseerrtt ((aa,, bb,, AA,, 11,, !!,, ......)) Insert the character typed. ttrraannssppoossee--cchhaarrss ((CC--tt)) - Drag the character before point forward over the character at - point, moving point forward as well. If point is at the end of - the line, then this transposes the two characters before point. + Drag the character before point forward over the character at + point, moving point forward as well. If point is at the end of + the line, then this transposes the two characters before point. Negative arguments have no effect. ttrraannssppoossee--wwoorrddss ((MM--tt)) - Drag the word before point past the word after point, moving - point over that word as well. If point is at the end of the + Drag the word before point past the word after point, moving + point over that word as well. If point is at the end of the line, this transposes the last two words on the line. uuppccaassee--wwoorrdd ((MM--uu)) - Uppercase the current (or following) word. With a negative + Uppercase the current (or following) word. With a negative argument, uppercase the previous word, but do not move point. ddoowwnnccaassee--wwoorrdd ((MM--ll)) - Lowercase the current (or following) word. With a negative + Lowercase the current (or following) word. With a negative argument, lowercase the previous word, but do not move point. ccaappiittaalliizzee--wwoorrdd ((MM--cc)) - Capitalize the current (or following) word. With a negative + Capitalize the current (or following) word. With a negative argument, capitalize the previous word, but do not move point. oovveerrwwrriittee--mmooddee - Toggle overwrite mode. With an explicit positive numeric argu- + Toggle overwrite mode. With an explicit positive numeric argu- ment, switches to overwrite mode. With an explicit non-positive numeric argument, switches to insert mode. This command affects - only eemmaaccss mode; vvii mode does overwrite differently. Each call + only eemmaaccss mode; vvii mode does overwrite differently. Each call to _r_e_a_d_l_i_n_e_(_) starts in insert mode. In overwrite mode, charac- - ters bound to sseellff--iinnsseerrtt replace the text at point rather than - pushing the text to the right. Characters bound to bbaacckk-- - wwaarrdd--ddeelleettee--cchhaarr replace the character before point with a + ters bound to sseellff--iinnsseerrtt replace the text at point rather than + pushing the text to the right. Characters bound to bbaacckk-- + wwaarrdd--ddeelleettee--cchhaarr replace the character before point with a space. By default, this command is unbound. KKiilllliinngg aanndd YYaannkkiinngg @@ -3454,31 +3455,31 @@ RREEAADDLLIINNEE bbaacckkwwaarrdd--kkiillll--lliinnee ((CC--xx RRuubboouutt)) Kill backward to the beginning of the line. uunniixx--lliinnee--ddiissccaarrdd ((CC--uu)) - Kill backward from point to the beginning of the line. The + Kill backward from point to the beginning of the line. The killed text is saved on the kill-ring. kkiillll--wwhhoollee--lliinnee - Kill all characters on the current line, no matter where point + Kill all characters on the current line, no matter where point is. kkiillll--wwoorrdd ((MM--dd)) - Kill from point to the end of the current word, or if between - words, to the end of the next word. Word boundaries are the - same as those used by ffoorrwwaarrdd--wwoorrdd. - bbaacckkwwaarrdd--kkiillll--wwoorrdd ((MM--RRuubboouutt)) - Kill the word behind point. Word boundaries are the same as - those used by bbaacckkwwaarrdd--wwoorrdd. - sshheellll--kkiillll--wwoorrdd Kill from point to the end of the current word, or if between words, to the end of the next word. Word boundaries are the + same as those used by ffoorrwwaarrdd--wwoorrdd. + bbaacckkwwaarrdd--kkiillll--wwoorrdd ((MM--RRuubboouutt)) + Kill the word behind point. Word boundaries are the same as + those used by bbaacckkwwaarrdd--wwoorrdd. + sshheellll--kkiillll--wwoorrdd + Kill from point to the end of the current word, or if between + words, to the end of the next word. Word boundaries are the same as those used by sshheellll--ffoorrwwaarrdd--wwoorrdd. sshheellll--bbaacckkwwaarrdd--kkiillll--wwoorrdd - Kill the word behind point. Word boundaries are the same as + Kill the word behind point. Word boundaries are the same as those used by sshheellll--bbaacckkwwaarrdd--wwoorrdd. uunniixx--wwoorrdd--rruubboouutt ((CC--ww)) - Kill the word behind point, using white space as a word bound- + Kill the word behind point, using white space as a word bound- ary. The killed text is saved on the kill-ring. uunniixx--ffiilleennaammee--rruubboouutt - Kill the word behind point, using white space and the slash - character as the word boundaries. The killed text is saved on + Kill the word behind point, using white space and the slash + character as the word boundaries. The killed text is saved on the kill-ring. ddeelleettee--hhoorriizzoonnttaall--ssppaaccee ((MM--\\)) Delete all spaces and tabs around point. @@ -3487,65 +3488,65 @@ RREEAADDLLIINNEE ccooppyy--rreeggiioonn--aass--kkiillll Copy the text in the region to the kill buffer. ccooppyy--bbaacckkwwaarrdd--wwoorrdd - Copy the word before point to the kill buffer. The word bound- + Copy the word before point to the kill buffer. The word bound- aries are the same as bbaacckkwwaarrdd--wwoorrdd. ccooppyy--ffoorrwwaarrdd--wwoorrdd - Copy the word following point to the kill buffer. The word + Copy the word following point to the kill buffer. The word boundaries are the same as ffoorrwwaarrdd--wwoorrdd. yyaannkk ((CC--yy)) Yank the top of the kill ring into the buffer at point. yyaannkk--ppoopp ((MM--yy)) - Rotate the kill ring, and yank the new top. Only works follow- + Rotate the kill ring, and yank the new top. Only works follow- ing yyaannkk or yyaannkk--ppoopp. NNuummeerriicc AArrgguummeennttss ddiiggiitt--aarrgguummeenntt ((MM--00,, MM--11,, ......,, MM----)) - Add this digit to the argument already accumulating, or start a + Add this digit to the argument already accumulating, or start a new argument. M-- starts a negative argument. uunniivveerrssaall--aarrgguummeenntt - This is another way to specify an argument. If this command is - followed by one or more digits, optionally with a leading minus - sign, those digits define the argument. If the command is fol- - lowed by digits, executing uunniivveerrssaall--aarrgguummeenntt again ends the - numeric argument, but is otherwise ignored. As a special case, - if this command is immediately followed by a character that is - neither a digit nor minus sign, the argument count for the next - command is multiplied by four. The argument count is initially - one, so executing this function the first time makes the argu- + This is another way to specify an argument. If this command is + followed by one or more digits, optionally with a leading minus + sign, those digits define the argument. If the command is fol- + lowed by digits, executing uunniivveerrssaall--aarrgguummeenntt again ends the + numeric argument, but is otherwise ignored. As a special case, + if this command is immediately followed by a character that is + neither a digit nor minus sign, the argument count for the next + command is multiplied by four. The argument count is initially + one, so executing this function the first time makes the argu- ment count four, a second time makes the argument count sixteen, and so on. CCoommpplleettiinngg ccoommpplleettee ((TTAABB)) - Attempt to perform completion on the text before point. BBaasshh + Attempt to perform completion on the text before point. BBaasshh attempts completion treating the text as a variable (if the text - begins with $$), username (if the text begins with ~~), hostname - (if the text begins with @@), or command (including aliases and + begins with $$), username (if the text begins with ~~), hostname + (if the text begins with @@), or command (including aliases and functions) in turn. If none of these produces a match, filename completion is attempted. ppoossssiibbllee--ccoommpplleettiioonnss ((MM--??)) List the possible completions of the text before point. iinnsseerrtt--ccoommpplleettiioonnss ((MM--**)) - Insert all completions of the text before point that would have + Insert all completions of the text before point that would have been generated by ppoossssiibbllee--ccoommpplleettiioonnss. mmeennuu--ccoommpplleettee - Similar to ccoommpplleettee, but replaces the word to be completed with - a single match from the list of possible completions. Repeated - execution of mmeennuu--ccoommpplleettee steps through the list of possible - completions, inserting each match in turn. At the end of the + Similar to ccoommpplleettee, but replaces the word to be completed with + a single match from the list of possible completions. Repeated + execution of mmeennuu--ccoommpplleettee steps through the list of possible + completions, inserting each match in turn. At the end of the list of completions, the bell is rung (subject to the setting of bbeellll--ssttyyllee) and the original text is restored. An argument of _n - moves _n positions forward in the list of matches; a negative - argument may be used to move backward through the list. This - command is intended to be bound to TTAABB, but is unbound by + moves _n positions forward in the list of matches; a negative + argument may be used to move backward through the list. This + command is intended to be bound to TTAABB, but is unbound by default. mmeennuu--ccoommpplleettee--bbaacckkwwaarrdd - Identical to mmeennuu--ccoommpplleettee, but moves backward through the list - of possible completions, as if mmeennuu--ccoommpplleettee had been given a + Identical to mmeennuu--ccoommpplleettee, but moves backward through the list + of possible completions, as if mmeennuu--ccoommpplleettee had been given a negative argument. This command is unbound by default. ddeelleettee--cchhaarr--oorr--lliisstt - Deletes the character under the cursor if not at the beginning - or end of the line (like ddeelleettee--cchhaarr). If at the end of the + Deletes the character under the cursor if not at the beginning + or end of the line (like ddeelleettee--cchhaarr). If at the end of the line, behaves identically to ppoossssiibbllee--ccoommpplleettiioonnss. This command is unbound by default. ccoommpplleettee--ffiilleennaammee ((MM--//)) @@ -3554,263 +3555,263 @@ RREEAADDLLIINNEE List the possible completions of the text before point, treating it as a filename. ccoommpplleettee--uusseerrnnaammee ((MM--~~)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a username. ppoossssiibbllee--uusseerrnnaammee--ccoommpplleettiioonnss ((CC--xx ~~)) List the possible completions of the text before point, treating it as a username. ccoommpplleettee--vvaarriiaabbllee ((MM--$$)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a shell variable. ppoossssiibbllee--vvaarriiaabbllee--ccoommpplleettiioonnss ((CC--xx $$)) List the possible completions of the text before point, treating it as a shell variable. ccoommpplleettee--hhoossttnnaammee ((MM--@@)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a hostname. ppoossssiibbllee--hhoossttnnaammee--ccoommpplleettiioonnss ((CC--xx @@)) List the possible completions of the text before point, treating it as a hostname. ccoommpplleettee--ccoommmmaanndd ((MM--!!)) - Attempt completion on the text before point, treating it as a - command name. Command completion attempts to match the text - against aliases, reserved words, shell functions, shell + Attempt completion on the text before point, treating it as a + command name. Command completion attempts to match the text + against aliases, reserved words, shell functions, shell builtins, and finally executable filenames, in that order. ppoossssiibbllee--ccoommmmaanndd--ccoommpplleettiioonnss ((CC--xx !!)) List the possible completions of the text before point, treating it as a command name. ddyynnaammiicc--ccoommpplleettee--hhiissttoorryy ((MM--TTAABB)) - Attempt completion on the text before point, comparing the text - against lines from the history list for possible completion + Attempt completion on the text before point, comparing the text + against lines from the history list for possible completion matches. ddaabbbbrreevv--eexxppaanndd - Attempt menu completion on the text before point, comparing the + Attempt menu completion on the text before point, comparing the text against lines from the history list for possible completion matches. ccoommpplleettee--iinnttoo--bbrraacceess ((MM--{{)) Perform filename completion and insert the list of possible com- - pletions enclosed within braces so the list is available to the + pletions enclosed within braces so the list is available to the shell (see BBrraaccee EExxppaannssiioonn above). KKeeyybbooaarrdd MMaaccrrooss ssttaarrtt--kkbbdd--mmaaccrroo ((CC--xx (()) - Begin saving the characters typed into the current keyboard + Begin saving the characters typed into the current keyboard macro. eenndd--kkbbdd--mmaaccrroo ((CC--xx )))) Stop saving the characters typed into the current keyboard macro and store the definition. ccaallll--llaasstt--kkbbdd--mmaaccrroo ((CC--xx ee)) - Re-execute the last keyboard macro defined, by making the char- + Re-execute the last keyboard macro defined, by making the char- acters in the macro appear as if typed at the keyboard. pprriinntt--llaasstt--kkbbdd--mmaaccrroo (()) - Print the last keyboard macro defined in a format suitable for + Print the last keyboard macro defined in a format suitable for the _i_n_p_u_t_r_c file. MMiisscceellllaanneeoouuss rree--rreeaadd--iinniitt--ffiillee ((CC--xx CC--rr)) - Read in the contents of the _i_n_p_u_t_r_c file, and incorporate any + Read in the contents of the _i_n_p_u_t_r_c file, and incorporate any bindings or variable assignments found there. aabboorrtt ((CC--gg)) - Abort the current editing command and ring the terminal's bell + Abort the current editing command and ring the terminal's bell (subject to the setting of bbeellll--ssttyyllee). ddoo--uuppppeerrccaassee--vveerrssiioonn ((MM--aa,, MM--bb,, MM--_x,, ......)) - If the metafied character _x is lowercase, run the command that + If the metafied character _x is lowercase, run the command that is bound to the corresponding uppercase character. pprreeffiixx--mmeettaa ((EESSCC)) Metafy the next character typed. EESSCC ff is equivalent to MMeettaa--ff. uunnddoo ((CC--__,, CC--xx CC--uu)) Incremental undo, separately remembered for each line. rreevveerrtt--lliinnee ((MM--rr)) - Undo all changes made to this line. This is like executing the - uunnddoo command enough times to return the line to its initial + Undo all changes made to this line. This is like executing the + uunnddoo command enough times to return the line to its initial state. ttiillddee--eexxppaanndd ((MM--&&)) Perform tilde expansion on the current word. sseett--mmaarrkk ((CC--@@,, MM--<>)) - Set the mark to the point. If a numeric argument is supplied, + Set the mark to the point. If a numeric argument is supplied, the mark is set to that position. eexxcchhaannggee--ppooiinntt--aanndd--mmaarrkk ((CC--xx CC--xx)) - Swap the point with the mark. The current cursor position is - set to the saved position, and the old cursor position is saved + Swap the point with the mark. The current cursor position is + set to the saved position, and the old cursor position is saved as the mark. cchhaarraacctteerr--sseeaarrcchh ((CC--]])) A character is read and point is moved to the next occurrence of - that character. A negative count searches for previous occur- + that character. A negative count searches for previous occur- rences. cchhaarraacctteerr--sseeaarrcchh--bbaacckkwwaarrdd ((MM--CC--]])) - A character is read and point is moved to the previous occur- - rence of that character. A negative count searches for subse- + A character is read and point is moved to the previous occur- + rence of that character. A negative count searches for subse- quent occurrences. sskkiipp--ccssii--sseeqquueennccee - Read enough characters to consume a multi-key sequence such as - those defined for keys like Home and End. Such sequences begin + Read enough characters to consume a multi-key sequence such as + those defined for keys like Home and End. Such sequences begin with a Control Sequence Indicator (CSI), usually ESC-[. If this - sequence is bound to "\[", keys producing such sequences will - have no effect unless explicitly bound to a readline command, - instead of inserting stray characters into the editing buffer. + sequence is bound to "\[", keys producing such sequences will + have no effect unless explicitly bound to a readline command, + instead of inserting stray characters into the editing buffer. This is unbound by default, but usually bound to ESC-[. iinnsseerrtt--ccoommmmeenntt ((MM--##)) - Without a numeric argument, the value of the readline ccoomm-- - mmeenntt--bbeeggiinn variable is inserted at the beginning of the current + Without a numeric argument, the value of the readline ccoomm-- + mmeenntt--bbeeggiinn variable is inserted at the beginning of the current line. If a numeric argument is supplied, this command acts as a - toggle: if the characters at the beginning of the line do not - match the value of ccoommmmeenntt--bbeeggiinn, the value is inserted, other- + toggle: if the characters at the beginning of the line do not + match the value of ccoommmmeenntt--bbeeggiinn, the value is inserted, other- wise the characters in ccoommmmeenntt--bbeeggiinn are deleted from the begin- - ning of the line. In either case, the line is accepted as if a - newline had been typed. The default value of ccoommmmeenntt--bbeeggiinn - causes this command to make the current line a shell comment. - If a numeric argument causes the comment character to be + ning of the line. In either case, the line is accepted as if a + newline had been typed. The default value of ccoommmmeenntt--bbeeggiinn + causes this command to make the current line a shell comment. + If a numeric argument causes the comment character to be removed, the line will be executed by the shell. gglloobb--ccoommpplleettee--wwoorrdd ((MM--gg)) - The word before point is treated as a pattern for pathname - expansion, with an asterisk implicitly appended. This pattern - is used to generate a list of matching filenames for possible + The word before point is treated as a pattern for pathname + expansion, with an asterisk implicitly appended. This pattern + is used to generate a list of matching filenames for possible completions. gglloobb--eexxppaanndd--wwoorrdd ((CC--xx **)) - The word before point is treated as a pattern for pathname - expansion, and the list of matching filenames is inserted, - replacing the word. If a numeric argument is supplied, an + The word before point is treated as a pattern for pathname + expansion, and the list of matching filenames is inserted, + replacing the word. If a numeric argument is supplied, an asterisk is appended before pathname expansion. gglloobb--lliisstt--eexxppaannssiioonnss ((CC--xx gg)) - The list of expansions that would have been generated by - gglloobb--eexxppaanndd--wwoorrdd is displayed, and the line is redrawn. If a - numeric argument is supplied, an asterisk is appended before + The list of expansions that would have been generated by + gglloobb--eexxppaanndd--wwoorrdd is displayed, and the line is redrawn. If a + numeric argument is supplied, an asterisk is appended before pathname expansion. dduummpp--ffuunnccttiioonnss - Print all of the functions and their key bindings to the read- + Print all of the functions and their key bindings to the read- line output stream. If a numeric argument is supplied, the out- - put is formatted in such a way that it can be made part of an + put is formatted in such a way that it can be made part of an _i_n_p_u_t_r_c file. dduummpp--vvaarriiaabblleess Print all of the settable readline variables and their values to - the readline output stream. If a numeric argument is supplied, - the output is formatted in such a way that it can be made part + the readline output stream. If a numeric argument is supplied, + the output is formatted in such a way that it can be made part of an _i_n_p_u_t_r_c file. dduummpp--mmaaccrrooss - Print all of the readline key sequences bound to macros and the - strings they output. If a numeric argument is supplied, the + Print all of the readline key sequences bound to macros and the + strings they output. If a numeric argument is supplied, the output is formatted in such a way that it can be made part of an _i_n_p_u_t_r_c file. ddiissppllaayy--sshheellll--vveerrssiioonn ((CC--xx CC--vv)) Display version information about the current instance of bbaasshh. PPrrooggrraammmmaabbllee CCoommpplleettiioonn - When word completion is attempted for an argument to a command for - which a completion specification (a _c_o_m_p_s_p_e_c) has been defined using - the ccoommpplleettee builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the program- + When word completion is attempted for an argument to a command for + which a completion specification (a _c_o_m_p_s_p_e_c) has been defined using + the ccoommpplleettee builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the program- mable completion facilities are invoked. - First, the command name is identified. If the command word is the - empty string (completion attempted at the beginning of an empty line), - any compspec defined with the --EE option to ccoommpplleettee is used. If a - compspec has been defined for that command, the compspec is used to + First, the command name is identified. If the command word is the + empty string (completion attempted at the beginning of an empty line), + any compspec defined with the --EE option to ccoommpplleettee is used. If a + compspec has been defined for that command, the compspec is used to generate the list of possible completions for the word. If the command - word is a full pathname, a compspec for the full pathname is searched - for first. If no compspec is found for the full pathname, an attempt - is made to find a compspec for the portion following the final slash. - If those searches do not result in a compspec, any compspec defined + word is a full pathname, a compspec for the full pathname is searched + for first. If no compspec is found for the full pathname, an attempt + is made to find a compspec for the portion following the final slash. + If those searches do not result in a compspec, any compspec defined with the --DD option to ccoommpplleettee is used as the default. - Once a compspec has been found, it is used to generate the list of - matching words. If a compspec is not found, the default bbaasshh comple- + Once a compspec has been found, it is used to generate the list of + matching words. If a compspec is not found, the default bbaasshh comple- tion as described above under CCoommpplleettiinngg is performed. - First, the actions specified by the compspec are used. Only matches - which are prefixed by the word being completed are returned. When the - --ff or --dd option is used for filename or directory name completion, the + First, the actions specified by the compspec are used. Only matches + which are prefixed by the word being completed are returned. When the + --ff or --dd option is used for filename or directory name completion, the shell variable FFIIGGNNOORREE is used to filter the matches. - Any completions specified by a pathname expansion pattern to the --GG + Any completions specified by a pathname expansion pattern to the --GG option are generated next. The words generated by the pattern need not - match the word being completed. The GGLLOOBBIIGGNNOORREE shell variable is not + match the word being completed. The GGLLOOBBIIGGNNOORREE shell variable is not used to filter the matches, but the FFIIGGNNOORREE variable is used. - Next, the string specified as the argument to the --WW option is consid- - ered. The string is first split using the characters in the IIFFSS spe- - cial variable as delimiters. Shell quoting is honored. Each word is - then expanded using brace expansion, tilde expansion, parameter and - variable expansion, command substitution, and arithmetic expansion, as + Next, the string specified as the argument to the --WW option is consid- + ered. The string is first split using the characters in the IIFFSS spe- + cial variable as delimiters. Shell quoting is honored. Each word is + then expanded using brace expansion, tilde expansion, parameter and + variable expansion, command substitution, and arithmetic expansion, as described above under EEXXPPAANNSSIIOONN. The results are split using the rules described above under WWoorrdd SSpplliittttiinngg. The results of the expansion are prefix-matched against the word being completed, and the matching words become the possible completions. - After these matches have been generated, any shell function or command - specified with the --FF and --CC options is invoked. When the command or + After these matches have been generated, any shell function or command + specified with the --FF and --CC options is invoked. When the command or function is invoked, the CCOOMMPP__LLIINNEE, CCOOMMPP__PPOOIINNTT, CCOOMMPP__KKEEYY, and CCOOMMPP__TTYYPPEE variables are assigned values as described above under SShheellll VVaarriiaabblleess. - If a shell function is being invoked, the CCOOMMPP__WWOORRDDSS and CCOOMMPP__CCWWOORRDD - variables are also set. When the function or command is invoked, the - first argument ($$11) is the name of the command whose arguments are - being completed, the second argument ($$22) is the word being completed, - and the third argument ($$33) is the word preceding the word being com- + If a shell function is being invoked, the CCOOMMPP__WWOORRDDSS and CCOOMMPP__CCWWOORRDD + variables are also set. When the function or command is invoked, the + first argument ($$11) is the name of the command whose arguments are + being completed, the second argument ($$22) is the word being completed, + and the third argument ($$33) is the word preceding the word being com- pleted on the current command line. No filtering of the generated com- pletions against the word being completed is performed; the function or command has complete freedom in generating the matches. - Any function specified with --FF is invoked first. The function may use - any of the shell facilities, including the ccoommppggeenn builtin described - below, to generate the matches. It must put the possible completions + Any function specified with --FF is invoked first. The function may use + any of the shell facilities, including the ccoommppggeenn builtin described + below, to generate the matches. It must put the possible completions in the CCOOMMPPRREEPPLLYY array variable, one per array element. - Next, any command specified with the --CC option is invoked in an envi- - ronment equivalent to command substitution. It should print a list of - completions, one per line, to the standard output. Backslash may be + Next, any command specified with the --CC option is invoked in an envi- + ronment equivalent to command substitution. It should print a list of + completions, one per line, to the standard output. Backslash may be used to escape a newline, if necessary. - After all of the possible completions are generated, any filter speci- - fied with the --XX option is applied to the list. The filter is a pat- - tern as used for pathname expansion; a && in the pattern is replaced - with the text of the word being completed. A literal && may be escaped - with a backslash; the backslash is removed before attempting a match. - Any completion that matches the pattern will be removed from the list. + After all of the possible completions are generated, any filter speci- + fied with the --XX option is applied to the list. The filter is a pat- + tern as used for pathname expansion; a && in the pattern is replaced + with the text of the word being completed. A literal && may be escaped + with a backslash; the backslash is removed before attempting a match. + Any completion that matches the pattern will be removed from the list. A leading !! negates the pattern; in this case any completion not match- - ing the pattern will be removed. If the nnooccaasseemmaattcchh shell option is - enabled, the match is performed without regard to the case of alpha- + ing the pattern will be removed. If the nnooccaasseemmaattcchh shell option is + enabled, the match is performed without regard to the case of alpha- betic characters. Finally, any prefix and suffix specified with the --PP and --SS options are added to each member of the completion list, and the result is returned to the readline completion code as the list of possible completions. - If the previously-applied actions do not generate any matches, and the - --oo ddiirrnnaammeess option was supplied to ccoommpplleettee when the compspec was + If the previously-applied actions do not generate any matches, and the + --oo ddiirrnnaammeess option was supplied to ccoommpplleettee when the compspec was defined, directory name completion is attempted. - If the --oo pplluussddiirrss option was supplied to ccoommpplleettee when the compspec + If the --oo pplluussddiirrss option was supplied to ccoommpplleettee when the compspec was defined, directory name completion is attempted and any matches are added to the results of the other actions. - By default, if a compspec is found, whatever it generates is returned - to the completion code as the full set of possible completions. The + By default, if a compspec is found, whatever it generates is returned + to the completion code as the full set of possible completions. The default bbaasshh completions are not attempted, and the readline default of filename completion is disabled. If the --oo bbaasshhddeeffaauulltt option was sup- - plied to ccoommpplleettee when the compspec was defined, the bbaasshh default com- + plied to ccoommpplleettee when the compspec was defined, the bbaasshh default com- pletions are attempted if the compspec generates no matches. If the --oo - ddeeffaauulltt option was supplied to ccoommpplleettee when the compspec was defined, - readline's default completion will be performed if the compspec (and, + ddeeffaauulltt option was supplied to ccoommpplleettee when the compspec was defined, + readline's default completion will be performed if the compspec (and, if attempted, the default bbaasshh completions) generate no matches. - When a compspec indicates that directory name completion is desired, - the programmable completion functions force readline to append a slash - to completed names which are symbolic links to directories, subject to - the value of the mmaarrkk--ddiirreeccttoorriieess readline variable, regardless of the + When a compspec indicates that directory name completion is desired, + the programmable completion functions force readline to append a slash + to completed names which are symbolic links to directories, subject to + the value of the mmaarrkk--ddiirreeccttoorriieess readline variable, regardless of the setting of the mmaarrkk--ssyymmlliinnkkeedd--ddiirreeccttoorriieess readline variable. - There is some support for dynamically modifying completions. This is - most useful when used in combination with a default completion speci- - fied with ccoommpplleettee --DD. It's possible for shell functions executed as - completion handlers to indicate that completion should be retried by - returning an exit status of 124. If a shell function returns 124, and + There is some support for dynamically modifying completions. This is + most useful when used in combination with a default completion speci- + fied with ccoommpplleettee --DD. It's possible for shell functions executed as + completion handlers to indicate that completion should be retried by + returning an exit status of 124. If a shell function returns 124, and changes the compspec associated with the command on which completion is - being attempted (supplied as the first argument when the function is + being attempted (supplied as the first argument when the function is executed), programmable completion restarts from the beginning, with an - attempt to find a new compspec for that command. This allows a set of - completions to be built dynamically as completion is attempted, rather + attempt to find a new compspec for that command. This allows a set of + completions to be built dynamically as completion is attempted, rather than being loaded all at once. - For instance, assuming that there is a library of compspecs, each kept - in a file corresponding to the name of the command, the following + For instance, assuming that there is a library of compspecs, each kept + in a file corresponding to the name of the command, the following default completion function would load completions dynamically: _completion_loader() @@ -3821,161 +3822,161 @@ RREEAADDLLIINNEE HHIISSTTOORRYY - When the --oo hhiissttoorryy option to the sseett builtin is enabled, the shell + When the --oo hhiissttoorryy option to the sseett builtin is enabled, the shell provides access to the _c_o_m_m_a_n_d _h_i_s_t_o_r_y, the list of commands previously - typed. The value of the HHIISSTTSSIIZZEE variable is used as the number of + typed. The value of the HHIISSTTSSIIZZEE variable is used as the number of commands to save in a history list. The text of the last HHIISSTTSSIIZZEE com- - mands (default 500) is saved. The shell stores each command in the - history list prior to parameter and variable expansion (see EEXXPPAANNSSIIOONN - above) but after history expansion is performed, subject to the values + mands (default 500) is saved. The shell stores each command in the + history list prior to parameter and variable expansion (see EEXXPPAANNSSIIOONN + above) but after history expansion is performed, subject to the values of the shell variables HHIISSTTIIGGNNOORREE and HHIISSTTCCOONNTTRROOLL. On startup, the history is initialized from the file named by the vari- - able HHIISSTTFFIILLEE (default _~_/_._b_a_s_h___h_i_s_t_o_r_y). The file named by the value - of HHIISSTTFFIILLEE is truncated, if necessary, to contain no more than the - number of lines specified by the value of HHIISSTTFFIILLEESSIIZZEE. If HHIISSTTFFIILLEE-- - SSIIZZEE is unset, or set to null, a non-numeric value, or a numeric value - less than zero, the history file is not truncated. When the history - file is read, lines beginning with the history comment character fol- + able HHIISSTTFFIILLEE (default _~_/_._b_a_s_h___h_i_s_t_o_r_y). The file named by the value + of HHIISSTTFFIILLEE is truncated, if necessary, to contain no more than the + number of lines specified by the value of HHIISSTTFFIILLEESSIIZZEE. If HHIISSTTFFIILLEE-- + SSIIZZEE is unset, or set to null, a non-numeric value, or a numeric value + less than zero, the history file is not truncated. When the history + file is read, lines beginning with the history comment character fol- lowed immediately by a digit are interpreted as timestamps for the pre- ceding history line. These timestamps are optionally displayed depend- - ing on the value of the HHIISSTTTTIIMMEEFFOORRMMAATT variable. When a shell with - history enabled exits, the last $$HHIISSTTSSIIZZEE lines are copied from the - history list to $$HHIISSTTFFIILLEE. If the hhiissttaappppeenndd shell option is enabled - (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the - lines are appended to the history file, otherwise the history file is + ing on the value of the HHIISSTTTTIIMMEEFFOORRMMAATT variable. When a shell with + history enabled exits, the last $$HHIISSTTSSIIZZEE lines are copied from the + history list to $$HHIISSTTFFIILLEE. If the hhiissttaappppeenndd shell option is enabled + (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the + lines are appended to the history file, otherwise the history file is overwritten. If HHIISSTTFFIILLEE is unset, or if the history file is - unwritable, the history is not saved. If the HHIISSTTTTIIMMEEFFOORRMMAATT variable - is set, time stamps are written to the history file, marked with the - history comment character, so they may be preserved across shell ses- - sions. This uses the history comment character to distinguish time- + unwritable, the history is not saved. If the HHIISSTTTTIIMMEEFFOORRMMAATT variable + is set, time stamps are written to the history file, marked with the + history comment character, so they may be preserved across shell ses- + sions. This uses the history comment character to distinguish time- stamps from other history lines. After saving the history, the history file is truncated to contain no more than HHIISSTTFFIILLEESSIIZZEE lines. If HHIISSTT-- - FFIILLEESSIIZZEE is unset, or set to null, a non-numeric value, or a numeric + FFIILLEESSIIZZEE is unset, or set to null, a non-numeric value, or a numeric value less than zero, the history file is not truncated. - The builtin command ffcc (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) may be used + The builtin command ffcc (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) may be used to list or edit and re-execute a portion of the history list. The hhiiss-- - ttoorryy builtin may be used to display or modify the history list and - manipulate the history file. When using command-line editing, search - commands are available in each editing mode that provide access to the + ttoorryy builtin may be used to display or modify the history list and + manipulate the history file. When using command-line editing, search + commands are available in each editing mode that provide access to the history list. - The shell allows control over which commands are saved on the history + The shell allows control over which commands are saved on the history list. The HHIISSTTCCOONNTTRROOLL and HHIISSTTIIGGNNOORREE variables may be set to cause the shell to save only a subset of the commands entered. The ccmmddhhiisstt shell - option, if enabled, causes the shell to attempt to save each line of a - multi-line command in the same history entry, adding semicolons where - necessary to preserve syntactic correctness. The lliitthhiisstt shell option - causes the shell to save the command with embedded newlines instead of + option, if enabled, causes the shell to attempt to save each line of a + multi-line command in the same history entry, adding semicolons where + necessary to preserve syntactic correctness. The lliitthhiisstt shell option + causes the shell to save the command with embedded newlines instead of semicolons. See the description of the sshhoopptt builtin below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS for information on setting and unsetting shell options. HHIISSTTOORRYY EEXXPPAANNSSIIOONN - The shell supports a history expansion feature that is similar to the - history expansion in ccsshh.. This section describes what syntax features - are available. This feature is enabled by default for interactive + The shell supports a history expansion feature that is similar to the + history expansion in ccsshh.. This section describes what syntax features + are available. This feature is enabled by default for interactive shells, and can be disabled using the ++HH option to the sseett builtin com- mand (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). Non-interactive shells do not perform history expansion by default. History expansions introduce words from the history list into the input - stream, making it easy to repeat commands, insert the arguments to a + stream, making it easy to repeat commands, insert the arguments to a previous command into the current input line, or fix errors in previous commands quickly. - History expansion is performed immediately after a complete line is - read, before the shell breaks it into words. It takes place in two - parts. The first is to determine which line from the history list to + History expansion is performed immediately after a complete line is + read, before the shell breaks it into words. It takes place in two + parts. The first is to determine which line from the history list to use during substitution. The second is to select portions of that line for inclusion into the current one. The line selected from the history - is the _e_v_e_n_t, and the portions of that line that are acted upon are - _w_o_r_d_s. Various _m_o_d_i_f_i_e_r_s are available to manipulate the selected + is the _e_v_e_n_t, and the portions of that line that are acted upon are + _w_o_r_d_s. Various _m_o_d_i_f_i_e_r_s are available to manipulate the selected words. The line is broken into words in the same fashion as when read- - ing input, so that several _m_e_t_a_c_h_a_r_a_c_t_e_r-separated words surrounded by - quotes are considered one word. History expansions are introduced by - the appearance of the history expansion character, which is !! by - default. Only backslash (\\) and single quotes can quote the history - expansion character, but the history expansion character is also - treated as quoted if it immediately precedes the closing double quote + ing input, so that several _m_e_t_a_c_h_a_r_a_c_t_e_r-separated words surrounded by + quotes are considered one word. History expansions are introduced by + the appearance of the history expansion character, which is !! by + default. Only backslash (\\) and single quotes can quote the history + expansion character, but the history expansion character is also + treated as quoted if it immediately precedes the closing double quote in a double-quoted string. - Several characters inhibit history expansion if found immediately fol- - lowing the history expansion character, even if it is unquoted: space, - tab, newline, carriage return, and ==. If the eexxttgglloobb shell option is + Several characters inhibit history expansion if found immediately fol- + lowing the history expansion character, even if it is unquoted: space, + tab, newline, carriage return, and ==. If the eexxttgglloobb shell option is enabled, (( will also inhibit expansion. - Several shell options settable with the sshhoopptt builtin may be used to - tailor the behavior of history expansion. If the hhiissttvveerriiffyy shell + Several shell options settable with the sshhoopptt builtin may be used to + tailor the behavior of history expansion. If the hhiissttvveerriiffyy shell option is enabled (see the description of the sshhoopptt builtin below), and - rreeaaddlliinnee is being used, history substitutions are not immediately - passed to the shell parser. Instead, the expanded line is reloaded + rreeaaddlliinnee is being used, history substitutions are not immediately + passed to the shell parser. Instead, the expanded line is reloaded into the rreeaaddlliinnee editing buffer for further modification. If rreeaaddlliinnee - is being used, and the hhiissttrreeeeddiitt shell option is enabled, a failed - history substitution will be reloaded into the rreeaaddlliinnee editing buffer - for correction. The --pp option to the hhiissttoorryy builtin command may be - used to see what a history expansion will do before using it. The --ss + is being used, and the hhiissttrreeeeddiitt shell option is enabled, a failed + history substitution will be reloaded into the rreeaaddlliinnee editing buffer + for correction. The --pp option to the hhiissttoorryy builtin command may be + used to see what a history expansion will do before using it. The --ss option to the hhiissttoorryy builtin may be used to add commands to the end of - the history list without actually executing them, so that they are + the history list without actually executing them, so that they are available for subsequent recall. - The shell allows control of the various characters used by the history + The shell allows control of the various characters used by the history expansion mechanism (see the description of hhiissttcchhaarrss above under SShheellll - VVaarriiaabblleess). The shell uses the history comment character to mark his- + VVaarriiaabblleess). The shell uses the history comment character to mark his- tory timestamps when writing the history file. EEvveenntt DDeessiiggnnaattoorrss - An event designator is a reference to a command line entry in the his- - tory list. Unless the reference is absolute, events are relative to + An event designator is a reference to a command line entry in the his- + tory list. Unless the reference is absolute, events are relative to the current position in the history list. - !! Start a history substitution, except when followed by a bbllaannkk, - newline, carriage return, = or ( (when the eexxttgglloobb shell option + !! Start a history substitution, except when followed by a bbllaannkk, + newline, carriage return, = or ( (when the eexxttgglloobb shell option is enabled using the sshhoopptt builtin). !!_n Refer to command line _n. !!--_n Refer to the current command minus _n. !!!! Refer to the previous command. This is a synonym for `!-1'. !!_s_t_r_i_n_g - Refer to the most recent command preceding the current position + Refer to the most recent command preceding the current position in the history list starting with _s_t_r_i_n_g. !!??_s_t_r_i_n_g[[??]] - Refer to the most recent command preceding the current position - in the history list containing _s_t_r_i_n_g. The trailing ?? may be + Refer to the most recent command preceding the current position + in the history list containing _s_t_r_i_n_g. The trailing ?? may be omitted if _s_t_r_i_n_g is followed immediately by a newline. ^^_s_t_r_i_n_g_1^^_s_t_r_i_n_g_2^^ - Quick substitution. Repeat the previous command, replacing - _s_t_r_i_n_g_1 with _s_t_r_i_n_g_2. Equivalent to ``!!:s/_s_t_r_i_n_g_1/_s_t_r_i_n_g_2/'' + Quick substitution. Repeat the previous command, replacing + _s_t_r_i_n_g_1 with _s_t_r_i_n_g_2. Equivalent to ``!!:s/_s_t_r_i_n_g_1/_s_t_r_i_n_g_2/'' (see MMooddiiffiieerrss below). !!## The entire command line typed so far. WWoorrdd DDeessiiggnnaattoorrss - Word designators are used to select desired words from the event. A :: - separates the event specification from the word designator. It may be - omitted if the word designator begins with a ^^, $$, **, --, or %%. Words - are numbered from the beginning of the line, with the first word being - denoted by 0 (zero). Words are inserted into the current line sepa- + Word designators are used to select desired words from the event. A :: + separates the event specification from the word designator. It may be + omitted if the word designator begins with a ^^, $$, **, --, or %%. Words + are numbered from the beginning of the line, with the first word being + denoted by 0 (zero). Words are inserted into the current line sepa- rated by single spaces. 00 ((zzeerroo)) The zeroth word. For the shell, this is the command word. _n The _nth word. ^^ The first argument. That is, word 1. - $$ The last word. This is usually the last argument, but will + $$ The last word. This is usually the last argument, but will expand to the zeroth word if there is only one word in the line. %% The word matched by the most recent `?_s_t_r_i_n_g?' search. _x--_y A range of words; `-_y' abbreviates `0-_y'. - ** All of the words but the zeroth. This is a synonym for `_1_-_$'. - It is not an error to use ** if there is just one word in the + ** All of the words but the zeroth. This is a synonym for `_1_-_$'. + It is not an error to use ** if there is just one word in the event; the empty string is returned in that case. xx** Abbreviates _x_-_$. xx-- Abbreviates _x_-_$ like xx**, but omits the last word. - If a word designator is supplied without an event specification, the + If a word designator is supplied without an event specification, the previous command is used as the event. MMooddiiffiieerrss - After the optional word designator, there may appear a sequence of one + After the optional word designator, there may appear a sequence of one or more of the following modifiers, each preceded by a `:'. hh Remove a trailing filename component, leaving only the head. @@ -3984,80 +3985,80 @@ HHIISSTTOORRYY EEXXPPAANNSSIIOONN ee Remove all but the trailing suffix. pp Print the new command but do not execute it. qq Quote the substituted words, escaping further substitutions. - xx Quote the substituted words as with qq, but break into words at + xx Quote the substituted words as with qq, but break into words at bbllaannkkss and newlines. ss//_o_l_d//_n_e_w// - Substitute _n_e_w for the first occurrence of _o_l_d in the event - line. Any delimiter can be used in place of /. The final - delimiter is optional if it is the last character of the event - line. The delimiter may be quoted in _o_l_d and _n_e_w with a single - backslash. If & appears in _n_e_w, it is replaced by _o_l_d. A sin- - gle backslash will quote the &. If _o_l_d is null, it is set to - the last _o_l_d substituted, or, if no previous history substitu- + Substitute _n_e_w for the first occurrence of _o_l_d in the event + line. Any delimiter can be used in place of /. The final + delimiter is optional if it is the last character of the event + line. The delimiter may be quoted in _o_l_d and _n_e_w with a single + backslash. If & appears in _n_e_w, it is replaced by _o_l_d. A sin- + gle backslash will quote the &. If _o_l_d is null, it is set to + the last _o_l_d substituted, or, if no previous history substitu- tions took place, the last _s_t_r_i_n_g in a !!??_s_t_r_i_n_g[[??]] search. && Repeat the previous substitution. gg Cause changes to be applied over the entire event line. This is - used in conjunction with `::ss' (e.g., `::ggss//_o_l_d//_n_e_w//') or `::&&'. - If used with `::ss', any delimiter can be used in place of /, and - the final delimiter is optional if it is the last character of + used in conjunction with `::ss' (e.g., `::ggss//_o_l_d//_n_e_w//') or `::&&'. + If used with `::ss', any delimiter can be used in place of /, and + the final delimiter is optional if it is the last character of the event line. An aa may be used as a synonym for gg. - GG Apply the following `ss' modifier once to each word in the event + GG Apply the following `ss' modifier once to each word in the event line. SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Unless otherwise noted, each builtin command documented in this section as accepting options preceded by -- accepts ---- to signify the end of the - options. The ::, ttrruuee, ffaallssee, and tteesstt builtins do not accept options - and do not treat ---- specially. The eexxiitt, llooggoouutt, rreettuurrnn, bbrreeaakk, ccoonn-- - ttiinnuuee, lleett, and sshhiifftt builtins accept and process arguments beginning - with -- without requiring ----. Other builtins that accept arguments but - are not specified as accepting options interpret arguments beginning - with -- as invalid options and require ---- to prevent this interpreta- + options. The ::, ttrruuee, ffaallssee, and tteesstt builtins do not accept options + and do not treat ---- specially. The eexxiitt, llooggoouutt, rreettuurrnn, bbrreeaakk, ccoonn-- + ttiinnuuee, lleett, and sshhiifftt builtins accept and process arguments beginning + with -- without requiring ----. Other builtins that accept arguments but + are not specified as accepting options interpret arguments beginning + with -- as invalid options and require ---- to prevent this interpreta- tion. :: [_a_r_g_u_m_e_n_t_s] - No effect; the command does nothing beyond expanding _a_r_g_u_m_e_n_t_s + No effect; the command does nothing beyond expanding _a_r_g_u_m_e_n_t_s and performing any specified redirections. The return status is zero. .. _f_i_l_e_n_a_m_e [_a_r_g_u_m_e_n_t_s] ssoouurrccee _f_i_l_e_n_a_m_e [_a_r_g_u_m_e_n_t_s] - Read and execute commands from _f_i_l_e_n_a_m_e in the current shell - environment and return the exit status of the last command exe- - cuted from _f_i_l_e_n_a_m_e. If _f_i_l_e_n_a_m_e does not contain a slash, - filenames in PPAATTHH are used to find the directory containing + Read and execute commands from _f_i_l_e_n_a_m_e in the current shell + environment and return the exit status of the last command exe- + cuted from _f_i_l_e_n_a_m_e. If _f_i_l_e_n_a_m_e does not contain a slash, + filenames in PPAATTHH are used to find the directory containing _f_i_l_e_n_a_m_e. The file searched for in PPAATTHH need not be executable. - When bbaasshh is not in _p_o_s_i_x _m_o_d_e, the current directory is - searched if no file is found in PPAATTHH. If the ssoouurrcceeppaatthh option - to the sshhoopptt builtin command is turned off, the PPAATTHH is not - searched. If any _a_r_g_u_m_e_n_t_s are supplied, they become the posi- - tional parameters when _f_i_l_e_n_a_m_e is executed. Otherwise the - positional parameters are unchanged. If the --TT option is - enabled, ssoouurrccee inherits any trap on DDEEBBUUGG; if it is not, any - DDEEBBUUGG trap string is saved and restored around the call to - ssoouurrccee, and ssoouurrccee unsets the DDEEBBUUGG trap while it executes. If - --TT is not set, and the sourced file changes the DDEEBBUUGG trap, the - new value is retained when ssoouurrccee completes. The return status + When bbaasshh is not in _p_o_s_i_x _m_o_d_e, the current directory is + searched if no file is found in PPAATTHH. If the ssoouurrcceeppaatthh option + to the sshhoopptt builtin command is turned off, the PPAATTHH is not + searched. If any _a_r_g_u_m_e_n_t_s are supplied, they become the posi- + tional parameters when _f_i_l_e_n_a_m_e is executed. Otherwise the + positional parameters are unchanged. If the --TT option is + enabled, ssoouurrccee inherits any trap on DDEEBBUUGG; if it is not, any + DDEEBBUUGG trap string is saved and restored around the call to + ssoouurrccee, and ssoouurrccee unsets the DDEEBBUUGG trap while it executes. If + --TT is not set, and the sourced file changes the DDEEBBUUGG trap, the + new value is retained when ssoouurrccee completes. The return status is the status of the last command exited within the script (0 if no commands are executed), and false if _f_i_l_e_n_a_m_e is not found or cannot be read. aalliiaass [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] AAlliiaass with no arguments or with the --pp option prints the list of - aliases in the form aalliiaass _n_a_m_e=_v_a_l_u_e on standard output. When - arguments are supplied, an alias is defined for each _n_a_m_e whose - _v_a_l_u_e is given. A trailing space in _v_a_l_u_e causes the next word + aliases in the form aalliiaass _n_a_m_e=_v_a_l_u_e on standard output. When + arguments are supplied, an alias is defined for each _n_a_m_e whose + _v_a_l_u_e is given. A trailing space in _v_a_l_u_e causes the next word to be checked for alias substitution when the alias is expanded. - For each _n_a_m_e in the argument list for which no _v_a_l_u_e is sup- - plied, the name and value of the alias is printed. AAlliiaass - returns true unless a _n_a_m_e is given for which no alias has been + For each _n_a_m_e in the argument list for which no _v_a_l_u_e is sup- + plied, the name and value of the alias is printed. AAlliiaass + returns true unless a _n_a_m_e is given for which no alias has been defined. bbgg [_j_o_b_s_p_e_c ...] - Resume each suspended job _j_o_b_s_p_e_c in the background, as if it + Resume each suspended job _j_o_b_s_p_e_c in the background, as if it had been started with &&. If _j_o_b_s_p_e_c is not present, the shell's - notion of the _c_u_r_r_e_n_t _j_o_b is used. bbgg _j_o_b_s_p_e_c returns 0 unless - run when job control is disabled or, when run with job control - enabled, any specified _j_o_b_s_p_e_c was not found or was started + notion of the _c_u_r_r_e_n_t _j_o_b is used. bbgg _j_o_b_s_p_e_c returns 0 unless + run when job control is disabled or, when run with job control + enabled, any specified _j_o_b_s_p_e_c was not found or was started without job control. bbiinndd [--mm _k_e_y_m_a_p] [--llppssvvPPSSVVXX] @@ -4066,29 +4067,29 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS bbiinndd [--mm _k_e_y_m_a_p] --xx _k_e_y_s_e_q:_s_h_e_l_l_-_c_o_m_m_a_n_d bbiinndd [--mm _k_e_y_m_a_p] _k_e_y_s_e_q:_f_u_n_c_t_i_o_n_-_n_a_m_e bbiinndd [--mm _k_e_y_m_a_p] _k_e_y_s_e_q:_r_e_a_d_l_i_n_e_-_c_o_m_m_a_n_d - Display current rreeaaddlliinnee key and function bindings, bind a key - sequence to a rreeaaddlliinnee function or macro, or set a rreeaaddlliinnee - variable. Each non-option argument is a command as it would - appear in _._i_n_p_u_t_r_c, but each binding or command must be passed - as a separate argument; e.g., '"\C-x\C-r": re-read-init-file'. + Display current rreeaaddlliinnee key and function bindings, bind a key + sequence to a rreeaaddlliinnee function or macro, or set a rreeaaddlliinnee + variable. Each non-option argument is a command as it would + appear in _._i_n_p_u_t_r_c, but each binding or command must be passed + as a separate argument; e.g., '"\C-x\C-r": re-read-init-file'. Options, if supplied, have the following meanings: --mm _k_e_y_m_a_p Use _k_e_y_m_a_p as the keymap to be affected by the subsequent bindings. Acceptable _k_e_y_m_a_p names are _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_- - _d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_m_o_v_e_, _v_i_-_c_o_m_m_a_n_d, - and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d (_v_i_-_m_o_v_e - is also a synonym); _e_m_a_c_s is equivalent to _e_m_a_c_s_-_s_t_a_n_- + _d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_m_o_v_e_, _v_i_-_c_o_m_m_a_n_d, + and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d (_v_i_-_m_o_v_e + is also a synonym); _e_m_a_c_s is equivalent to _e_m_a_c_s_-_s_t_a_n_- _d_a_r_d. --ll List the names of all rreeaaddlliinnee functions. - --pp Display rreeaaddlliinnee function names and bindings in such a + --pp Display rreeaaddlliinnee function names and bindings in such a way that they can be re-read. --PP List current rreeaaddlliinnee function names and bindings. - --ss Display rreeaaddlliinnee key sequences bound to macros and the - strings they output in such a way that they can be re- + --ss Display rreeaaddlliinnee key sequences bound to macros and the + strings they output in such a way that they can be re- read. - --SS Display rreeaaddlliinnee key sequences bound to macros and the + --SS Display rreeaaddlliinnee key sequences bound to macros and the strings they output. - --vv Display rreeaaddlliinnee variable names and values in such a way + --vv Display rreeaaddlliinnee variable names and values in such a way that they can be re-read. --VV List current rreeaaddlliinnee variable names and values. --ff _f_i_l_e_n_a_m_e @@ -4100,174 +4101,174 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS --rr _k_e_y_s_e_q Remove any current binding for _k_e_y_s_e_q. --xx _k_e_y_s_e_q::_s_h_e_l_l_-_c_o_m_m_a_n_d - Cause _s_h_e_l_l_-_c_o_m_m_a_n_d to be executed whenever _k_e_y_s_e_q is - entered. When _s_h_e_l_l_-_c_o_m_m_a_n_d is executed, the shell sets - the RREEAADDLLIINNEE__LLIINNEE variable to the contents of the rreeaadd-- - lliinnee line buffer and the RREEAADDLLIINNEE__PPOOIINNTT variable to the + Cause _s_h_e_l_l_-_c_o_m_m_a_n_d to be executed whenever _k_e_y_s_e_q is + entered. When _s_h_e_l_l_-_c_o_m_m_a_n_d is executed, the shell sets + the RREEAADDLLIINNEE__LLIINNEE variable to the contents of the rreeaadd-- + lliinnee line buffer and the RREEAADDLLIINNEE__PPOOIINNTT variable to the current location of the insertion point. If the executed - command changes the value of RREEAADDLLIINNEE__LLIINNEE or RREEAADD-- - LLIINNEE__PPOOIINNTT, those new values will be reflected in the + command changes the value of RREEAADDLLIINNEE__LLIINNEE or RREEAADD-- + LLIINNEE__PPOOIINNTT, those new values will be reflected in the editing state. - --XX List all key sequences bound to shell commands and the - associated commands in a format that can be reused as + --XX List all key sequences bound to shell commands and the + associated commands in a format that can be reused as input. - The return value is 0 unless an unrecognized option is given or + The return value is 0 unless an unrecognized option is given or an error occurred. bbrreeaakk [_n] - Exit from within a ffoorr, wwhhiillee, uunnttiill, or sseelleecctt loop. If _n is - specified, break _n levels. _n must be >= 1. If _n is greater - than the number of enclosing loops, all enclosing loops are - exited. The return value is 0 unless _n is not greater than or + Exit from within a ffoorr, wwhhiillee, uunnttiill, or sseelleecctt loop. If _n is + specified, break _n levels. _n must be >= 1. If _n is greater + than the number of enclosing loops, all enclosing loops are + exited. The return value is 0 unless _n is not greater than or equal to 1. bbuuiillttiinn _s_h_e_l_l_-_b_u_i_l_t_i_n [_a_r_g_u_m_e_n_t_s] - Execute the specified shell builtin, passing it _a_r_g_u_m_e_n_t_s, and + Execute the specified shell builtin, passing it _a_r_g_u_m_e_n_t_s, and return its exit status. This is useful when defining a function - whose name is the same as a shell builtin, retaining the func- + whose name is the same as a shell builtin, retaining the func- tionality of the builtin within the function. The ccdd builtin is - commonly redefined this way. The return status is false if + commonly redefined this way. The return status is false if _s_h_e_l_l_-_b_u_i_l_t_i_n is not a shell builtin command. ccaalllleerr [_e_x_p_r] Returns the context of any active subroutine call (a shell func- tion or a script executed with the .. or ssoouurrccee builtins). With- out _e_x_p_r, ccaalllleerr displays the line number and source filename of - the current subroutine call. If a non-negative integer is sup- + the current subroutine call. If a non-negative integer is sup- plied as _e_x_p_r, ccaalllleerr displays the line number, subroutine name, - and source file corresponding to that position in the current - execution call stack. This extra information may be used, for - example, to print a stack trace. The current frame is frame 0. - The return value is 0 unless the shell is not executing a sub- - routine call or _e_x_p_r does not correspond to a valid position in + and source file corresponding to that position in the current + execution call stack. This extra information may be used, for + example, to print a stack trace. The current frame is frame 0. + The return value is 0 unless the shell is not executing a sub- + routine call or _e_x_p_r does not correspond to a valid position in the call stack. ccdd [--LL|[--PP [--ee]] [-@]] [_d_i_r] - Change the current directory to _d_i_r. if _d_i_r is not supplied, - the value of the HHOOMMEE shell variable is the default. Any addi- + Change the current directory to _d_i_r. if _d_i_r is not supplied, + the value of the HHOOMMEE shell variable is the default. Any addi- tional arguments following _d_i_r are ignored. The variable CCDDPPAATTHH - defines the search path for the directory containing _d_i_r: each - directory name in CCDDPPAATTHH is searched for _d_i_r. Alternative - directory names in CCDDPPAATTHH are separated by a colon (:). A null - directory name in CCDDPPAATTHH is the same as the current directory, + defines the search path for the directory containing _d_i_r: each + directory name in CCDDPPAATTHH is searched for _d_i_r. Alternative + directory names in CCDDPPAATTHH are separated by a colon (:). A null + directory name in CCDDPPAATTHH is the same as the current directory, i.e., ``..''. If _d_i_r begins with a slash (/), then CCDDPPAATTHH is not - used. The --PP option causes ccdd to use the physical directory - structure by resolving symbolic links while traversing _d_i_r and + used. The --PP option causes ccdd to use the physical directory + structure by resolving symbolic links while traversing _d_i_r and before processing instances of _._. in _d_i_r (see also the --PP option to the sseett builtin command); the --LL option forces symbolic links - to be followed by resolving the link after processing instances + to be followed by resolving the link after processing instances of _._. in _d_i_r. If _._. appears in _d_i_r, it is processed by removing - the immediately previous pathname component from _d_i_r, back to a - slash or the beginning of _d_i_r. If the --ee option is supplied - with --PP, and the current working directory cannot be success- - fully determined after a successful directory change, ccdd will - return an unsuccessful status. On systems that support it, the - --@@ option presents the extended attributes associated with a - file as a directory. An argument of -- is converted to $$OOLLDDPPWWDD + the immediately previous pathname component from _d_i_r, back to a + slash or the beginning of _d_i_r. If the --ee option is supplied + with --PP, and the current working directory cannot be success- + fully determined after a successful directory change, ccdd will + return an unsuccessful status. On systems that support it, the + --@@ option presents the extended attributes associated with a + file as a directory. An argument of -- is converted to $$OOLLDDPPWWDD before the directory change is attempted. If a non-empty direc- - tory name from CCDDPPAATTHH is used, or if -- is the first argument, + tory name from CCDDPPAATTHH is used, or if -- is the first argument, and the directory change is successful, the absolute pathname of - the new working directory is written to the standard output. - The return value is true if the directory was successfully + the new working directory is written to the standard output. + The return value is true if the directory was successfully changed; false otherwise. ccoommmmaanndd [--ppVVvv] _c_o_m_m_a_n_d [_a_r_g ...] - Run _c_o_m_m_a_n_d with _a_r_g_s suppressing the normal shell function + Run _c_o_m_m_a_n_d with _a_r_g_s suppressing the normal shell function lookup. Only builtin commands or commands found in the PPAATTHH are - executed. If the --pp option is given, the search for _c_o_m_m_a_n_d is - performed using a default value for PPAATTHH that is guaranteed to - find all of the standard utilities. If either the --VV or --vv + executed. If the --pp option is given, the search for _c_o_m_m_a_n_d is + performed using a default value for PPAATTHH that is guaranteed to + find all of the standard utilities. If either the --VV or --vv option is supplied, a description of _c_o_m_m_a_n_d is printed. The --vv - option causes a single word indicating the command or filename + option causes a single word indicating the command or filename used to invoke _c_o_m_m_a_n_d to be displayed; the --VV option produces a - more verbose description. If the --VV or --vv option is supplied, - the exit status is 0 if _c_o_m_m_a_n_d was found, and 1 if not. If + more verbose description. If the --VV or --vv option is supplied, + the exit status is 0 if _c_o_m_m_a_n_d was found, and 1 if not. If neither option is supplied and an error occurred or _c_o_m_m_a_n_d can- - not be found, the exit status is 127. Otherwise, the exit sta- + not be found, the exit status is 127. Otherwise, the exit sta- tus of the ccoommmmaanndd builtin is the exit status of _c_o_m_m_a_n_d. ccoommppggeenn [_o_p_t_i_o_n] [_w_o_r_d] - Generate possible completion matches for _w_o_r_d according to the - _o_p_t_i_o_ns, which may be any option accepted by the ccoommpplleettee - builtin with the exception of --pp and --rr, and write the matches - to the standard output. When using the --FF or --CC options, the - various shell variables set by the programmable completion + Generate possible completion matches for _w_o_r_d according to the + _o_p_t_i_o_ns, which may be any option accepted by the ccoommpplleettee + builtin with the exception of --pp and --rr, and write the matches + to the standard output. When using the --FF or --CC options, the + various shell variables set by the programmable completion facilities, while available, will not have useful values. The matches will be generated in the same way as if the program- mable completion code had generated them directly from a comple- - tion specification with the same flags. If _w_o_r_d is specified, + tion specification with the same flags. If _w_o_r_d is specified, only those completions matching _w_o_r_d will be displayed. - The return value is true unless an invalid option is supplied, + The return value is true unless an invalid option is supplied, or no matches were generated. - ccoommpplleettee [--aabbccddeeffggjjkkssuuvv] [--oo _c_o_m_p_-_o_p_t_i_o_n] [--DDEE] [--AA _a_c_t_i_o_n] [--GG _g_l_o_b_- + ccoommpplleettee [--aabbccddeeffggjjkkssuuvv] [--oo _c_o_m_p_-_o_p_t_i_o_n] [--DDEE] [--AA _a_c_t_i_o_n] [--GG _g_l_o_b_- _p_a_t] [--WW _w_o_r_d_l_i_s_t] [--FF _f_u_n_c_t_i_o_n] [--CC _c_o_m_m_a_n_d] [--XX _f_i_l_t_e_r_p_a_t] [--PP _p_r_e_f_i_x] [--SS _s_u_f_f_i_x] _n_a_m_e [_n_a_m_e _._._.] ccoommpplleettee --pprr [--DDEE] [_n_a_m_e ...] - Specify how arguments to each _n_a_m_e should be completed. If the - --pp option is supplied, or if no options are supplied, existing - completion specifications are printed in a way that allows them + Specify how arguments to each _n_a_m_e should be completed. If the + --pp option is supplied, or if no options are supplied, existing + completion specifications are printed in a way that allows them to be reused as input. The --rr option removes a completion spec- - ification for each _n_a_m_e, or, if no _n_a_m_es are supplied, all com- + ification for each _n_a_m_e, or, if no _n_a_m_es are supplied, all com- pletion specifications. The --DD option indicates that the - remaining options and actions should apply to the ``default'' - command completion; that is, completion attempted on a command - for which no completion has previously been defined. The --EE - option indicates that the remaining options and actions should - apply to ``empty'' command completion; that is, completion + remaining options and actions should apply to the ``default'' + command completion; that is, completion attempted on a command + for which no completion has previously been defined. The --EE + option indicates that the remaining options and actions should + apply to ``empty'' command completion; that is, completion attempted on a blank line. - The process of applying these completion specifications when - word completion is attempted is described above under PPrrooggrraamm-- + The process of applying these completion specifications when + word completion is attempted is described above under PPrrooggrraamm-- mmaabbllee CCoommpplleettiioonn. - Other options, if specified, have the following meanings. The - arguments to the --GG, --WW, and --XX options (and, if necessary, the - --PP and --SS options) should be quoted to protect them from expan- + Other options, if specified, have the following meanings. The + arguments to the --GG, --WW, and --XX options (and, if necessary, the + --PP and --SS options) should be quoted to protect them from expan- sion before the ccoommpplleettee builtin is invoked. --oo _c_o_m_p_-_o_p_t_i_o_n - The _c_o_m_p_-_o_p_t_i_o_n controls several aspects of the comp- - spec's behavior beyond the simple generation of comple- + The _c_o_m_p_-_o_p_t_i_o_n controls several aspects of the comp- + spec's behavior beyond the simple generation of comple- tions. _c_o_m_p_-_o_p_t_i_o_n may be one of: bbaasshhddeeffaauulltt Perform the rest of the default bbaasshh completions if the compspec generates no matches. - ddeeffaauulltt Use readline's default filename completion if + ddeeffaauulltt Use readline's default filename completion if the compspec generates no matches. ddiirrnnaammeess - Perform directory name completion if the comp- + Perform directory name completion if the comp- spec generates no matches. ffiilleennaammeess - Tell readline that the compspec generates file- - names, so it can perform any filename-specific - processing (like adding a slash to directory - names, quoting special characters, or suppress- - ing trailing spaces). Intended to be used with + Tell readline that the compspec generates file- + names, so it can perform any filename-specific + processing (like adding a slash to directory + names, quoting special characters, or suppress- + ing trailing spaces). Intended to be used with shell functions. - nnooqquuoottee Tell readline not to quote the completed words - if they are filenames (quoting filenames is the + nnooqquuoottee Tell readline not to quote the completed words + if they are filenames (quoting filenames is the default). - nnoossoorrtt Tell readline not to sort the list of possible + nnoossoorrtt Tell readline not to sort the list of possible completions alphabetically. - nnoossppaaccee Tell readline not to append a space (the - default) to words completed at the end of the + nnoossppaaccee Tell readline not to append a space (the + default) to words completed at the end of the line. pplluussddiirrss - After any matches defined by the compspec are - generated, directory name completion is - attempted and any matches are added to the + After any matches defined by the compspec are + generated, directory name completion is + attempted and any matches are added to the results of the other actions. --AA _a_c_t_i_o_n - The _a_c_t_i_o_n may be one of the following to generate a + The _a_c_t_i_o_n may be one of the following to generate a list of possible completions: aalliiaass Alias names. May also be specified as --aa. aarrrraayyvvaarr Array variable names. bbiinnddiinngg RReeaaddlliinnee key binding names. - bbuuiillttiinn Names of shell builtin commands. May also be + bbuuiillttiinn Names of shell builtin commands. May also be specified as --bb. ccoommmmaanndd Command names. May also be specified as --cc. ddiirreeccttoorryy @@ -4275,7 +4276,7 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ddiissaabblleedd Names of disabled shell builtins. eennaabblleedd Names of enabled shell builtins. - eexxppoorrtt Names of exported shell variables. May also be + eexxppoorrtt Names of exported shell variables. May also be specified as --ee. ffiillee File names. May also be specified as --ff. ffuunnccttiioonn @@ -4284,17 +4285,17 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS hheellppttooppiicc Help topics as accepted by the hheellpp builtin. hhoossttnnaammee - Hostnames, as taken from the file specified by + Hostnames, as taken from the file specified by the HHOOSSTTFFIILLEE shell variable. - jjoobb Job names, if job control is active. May also + jjoobb Job names, if job control is active. May also be specified as --jj. - kkeeyywwoorrdd Shell reserved words. May also be specified as + kkeeyywwoorrdd Shell reserved words. May also be specified as --kk. rruunnnniinngg Names of running jobs, if job control is active. sseerrvviiccee Service names. May also be specified as --ss. - sseettoopptt Valid arguments for the --oo option to the sseett + sseettoopptt Valid arguments for the --oo option to the sseett builtin. - sshhoopptt Shell option names as accepted by the sshhoopptt + sshhoopptt Shell option names as accepted by the sshhoopptt builtin. ssiiggnnaall Signal names. ssttooppppeedd Names of stopped jobs, if job control is active. @@ -4303,188 +4304,188 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Names of all shell variables. May also be spec- ified as --vv. --CC _c_o_m_m_a_n_d - _c_o_m_m_a_n_d is executed in a subshell environment, and its + _c_o_m_m_a_n_d is executed in a subshell environment, and its output is used as the possible completions. --FF _f_u_n_c_t_i_o_n - The shell function _f_u_n_c_t_i_o_n is executed in the current - shell environment. When the function is executed, the - first argument ($$11) is the name of the command whose - arguments are being completed, the second argument ($$22) + The shell function _f_u_n_c_t_i_o_n is executed in the current + shell environment. When the function is executed, the + first argument ($$11) is the name of the command whose + arguments are being completed, the second argument ($$22) is the word being completed, and the third argument ($$33) - is the word preceding the word being completed on the - current command line. When it finishes, the possible - completions are retrieved from the value of the CCOOMMPPRREE-- + is the word preceding the word being completed on the + current command line. When it finishes, the possible + completions are retrieved from the value of the CCOOMMPPRREE-- PPLLYY array variable. --GG _g_l_o_b_p_a_t - The pathname expansion pattern _g_l_o_b_p_a_t is expanded to + The pathname expansion pattern _g_l_o_b_p_a_t is expanded to generate the possible completions. --PP _p_r_e_f_i_x - _p_r_e_f_i_x is added at the beginning of each possible com- + _p_r_e_f_i_x is added at the beginning of each possible com- pletion after all other options have been applied. --SS _s_u_f_f_i_x _s_u_f_f_i_x is appended to each possible completion after all other options have been applied. --WW _w_o_r_d_l_i_s_t - The _w_o_r_d_l_i_s_t is split using the characters in the IIFFSS - special variable as delimiters, and each resultant word - is expanded. The possible completions are the members - of the resultant list which match the word being com- + The _w_o_r_d_l_i_s_t is split using the characters in the IIFFSS + special variable as delimiters, and each resultant word + is expanded. The possible completions are the members + of the resultant list which match the word being com- pleted. --XX _f_i_l_t_e_r_p_a_t - _f_i_l_t_e_r_p_a_t is a pattern as used for pathname expansion. + _f_i_l_t_e_r_p_a_t is a pattern as used for pathname expansion. It is applied to the list of possible completions gener- - ated by the preceding options and arguments, and each - completion matching _f_i_l_t_e_r_p_a_t is removed from the list. - A leading !! in _f_i_l_t_e_r_p_a_t negates the pattern; in this + ated by the preceding options and arguments, and each + completion matching _f_i_l_t_e_r_p_a_t is removed from the list. + A leading !! in _f_i_l_t_e_r_p_a_t negates the pattern; in this case, any completion not matching _f_i_l_t_e_r_p_a_t is removed. - The return value is true unless an invalid option is supplied, - an option other than --pp or --rr is supplied without a _n_a_m_e argu- - ment, an attempt is made to remove a completion specification + The return value is true unless an invalid option is supplied, + an option other than --pp or --rr is supplied without a _n_a_m_e argu- + ment, an attempt is made to remove a completion specification for a _n_a_m_e for which no specification exists, or an error occurs adding a completion specification. ccoommppoopptt [--oo _o_p_t_i_o_n] [--DDEE] [++oo _o_p_t_i_o_n] [_n_a_m_e] Modify completion options for each _n_a_m_e according to the - _o_p_t_i_o_ns, or for the currently-executing completion if no _n_a_m_es - are supplied. If no _o_p_t_i_o_ns are given, display the completion - options for each _n_a_m_e or the current completion. The possible - values of _o_p_t_i_o_n are those valid for the ccoommpplleettee builtin - described above. The --DD option indicates that the remaining + _o_p_t_i_o_ns, or for the currently-executing completion if no _n_a_m_es + are supplied. If no _o_p_t_i_o_ns are given, display the completion + options for each _n_a_m_e or the current completion. The possible + values of _o_p_t_i_o_n are those valid for the ccoommpplleettee builtin + described above. The --DD option indicates that the remaining options should apply to the ``default'' command completion; that - is, completion attempted on a command for which no completion - has previously been defined. The --EE option indicates that the - remaining options should apply to ``empty'' command completion; + is, completion attempted on a command for which no completion + has previously been defined. The --EE option indicates that the + remaining options should apply to ``empty'' command completion; that is, completion attempted on a blank line. - The return value is true unless an invalid option is supplied, + The return value is true unless an invalid option is supplied, an attempt is made to modify the options for a _n_a_m_e for which no completion specification exists, or an output error occurs. ccoonnttiinnuuee [_n] Resume the next iteration of the enclosing ffoorr, wwhhiillee, uunnttiill, or - sseelleecctt loop. If _n is specified, resume at the _nth enclosing - loop. _n must be >= 1. If _n is greater than the number of - enclosing loops, the last enclosing loop (the ``top-level'' + sseelleecctt loop. If _n is specified, resume at the _nth enclosing + loop. _n must be >= 1. If _n is greater than the number of + enclosing loops, the last enclosing loop (the ``top-level'' loop) is resumed. The return value is 0 unless _n is not greater than or equal to 1. ddeeccllaarree [--aaAAffFFggiillnnrrttuuxx] [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] ttyyppeesseett [--aaAAffFFggiillnnrrttuuxx] [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] - Declare variables and/or give them attributes. If no _n_a_m_es are - given then display the values of variables. The --pp option will + Declare variables and/or give them attributes. If no _n_a_m_es are + given then display the values of variables. The --pp option will display the attributes and values of each _n_a_m_e. When --pp is used - with _n_a_m_e arguments, additional options, other than --ff and --FF, - are ignored. When --pp is supplied without _n_a_m_e arguments, it - will display the attributes and values of all variables having + with _n_a_m_e arguments, additional options, other than --ff and --FF, + are ignored. When --pp is supplied without _n_a_m_e arguments, it + will display the attributes and values of all variables having the attributes specified by the additional options. If no other - options are supplied with --pp, ddeeccllaarree will display the - attributes and values of all shell variables. The --ff option - will restrict the display to shell functions. The --FF option - inhibits the display of function definitions; only the function - name and attributes are printed. If the eexxttddeebbuugg shell option - is enabled using sshhoopptt, the source file name and line number + options are supplied with --pp, ddeeccllaarree will display the + attributes and values of all shell variables. The --ff option + will restrict the display to shell functions. The --FF option + inhibits the display of function definitions; only the function + name and attributes are printed. If the eexxttddeebbuugg shell option + is enabled using sshhoopptt, the source file name and line number where each _n_a_m_e is defined are displayed as well. The --FF option - implies --ff. The --gg option forces variables to be created or + implies --ff. The --gg option forces variables to be created or modified at the global scope, even when ddeeccllaarree is executed in a - shell function. It is ignored in all other cases. The follow- + shell function. It is ignored in all other cases. The follow- ing options can be used to restrict output to variables with the specified attribute or to give variables attributes: - --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss + --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss above). - --AA Each _n_a_m_e is an associative array variable (see AArrrraayyss + --AA Each _n_a_m_e is an associative array variable (see AArrrraayyss above). --ff Use function names only. --ii The variable is treated as an integer; arithmetic evalua- - tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above) is performed when + tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above) is performed when the variable is assigned a value. - --ll When the variable is assigned a value, all upper-case - characters are converted to lower-case. The upper-case + --ll When the variable is assigned a value, all upper-case + characters are converted to lower-case. The upper-case attribute is disabled. - --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name - reference to another variable. That other variable is - defined by the value of _n_a_m_e. All references, assign- - ments, and attribute modifications to _n_a_m_e, except for - changing the --nn attribute itself, are performed on the - variable referenced by _n_a_m_e's value. The nameref + --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name + reference to another variable. That other variable is + defined by the value of _n_a_m_e. All references, assign- + ments, and attribute modifications to _n_a_m_e, except for + changing the --nn attribute itself, are performed on the + variable referenced by _n_a_m_e's value. The nameref attribute cannot be applied to array variables. --rr Make _n_a_m_es readonly. These names cannot then be assigned values by subsequent assignment statements or unset. - --tt Give each _n_a_m_e the _t_r_a_c_e attribute. Traced functions - inherit the DDEEBBUUGG and RREETTUURRNN traps from the calling - shell. The trace attribute has no special meaning for + --tt Give each _n_a_m_e the _t_r_a_c_e attribute. Traced functions + inherit the DDEEBBUUGG and RREETTUURRNN traps from the calling + shell. The trace attribute has no special meaning for variables. - --uu When the variable is assigned a value, all lower-case - characters are converted to upper-case. The lower-case + --uu When the variable is assigned a value, all lower-case + characters are converted to upper-case. The lower-case attribute is disabled. - --xx Mark _n_a_m_es for export to subsequent commands via the + --xx Mark _n_a_m_es for export to subsequent commands via the environment. - Using `+' instead of `-' turns off the attribute instead, with + Using `+' instead of `-' turns off the attribute instead, with the exceptions that ++aa may not be used to destroy an array vari- - able and ++rr will not remove the readonly attribute. When used + able and ++rr will not remove the readonly attribute. When used in a function, ddeeccllaarree and ttyyppeesseett make each _n_a_m_e local, as with the llooccaall command, unless the --gg option is supplied. If a vari- - able name is followed by =_v_a_l_u_e, the value of the variable is - set to _v_a_l_u_e. When using --aa or --AA and the compound assignment - syntax to create array variables, additional attributes do not + able name is followed by =_v_a_l_u_e, the value of the variable is + set to _v_a_l_u_e. When using --aa or --AA and the compound assignment + syntax to create array variables, additional attributes do not take effect until subsequent assignments. The return value is 0 - unless an invalid option is encountered, an attempt is made to - define a function using ``-f foo=bar'', an attempt is made to - assign a value to a readonly variable, an attempt is made to - assign a value to an array variable without using the compound - assignment syntax (see AArrrraayyss above), one of the _n_a_m_e_s is not a - valid shell variable name, an attempt is made to turn off read- - only status for a readonly variable, an attempt is made to turn + unless an invalid option is encountered, an attempt is made to + define a function using ``-f foo=bar'', an attempt is made to + assign a value to a readonly variable, an attempt is made to + assign a value to an array variable without using the compound + assignment syntax (see AArrrraayyss above), one of the _n_a_m_e_s is not a + valid shell variable name, an attempt is made to turn off read- + only status for a readonly variable, an attempt is made to turn off array status for an array variable, or an attempt is made to display a non-existent function with --ff. ddiirrss [[--ccllppvv]] [[++_n]] [[--_n]] - Without options, displays the list of currently remembered - directories. The default display is on a single line with - directory names separated by spaces. Directories are added to - the list with the ppuusshhdd command; the ppooppdd command removes - entries from the list. The current directory is always the + Without options, displays the list of currently remembered + directories. The default display is on a single line with + directory names separated by spaces. Directories are added to + the list with the ppuusshhdd command; the ppooppdd command removes + entries from the list. The current directory is always the first directory in the stack. --cc Clears the directory stack by deleting all of the entries. - --ll Produces a listing using full pathnames; the default + --ll Produces a listing using full pathnames; the default listing format uses a tilde to denote the home directory. --pp Print the directory stack with one entry per line. - --vv Print the directory stack with one entry per line, pre- + --vv Print the directory stack with one entry per line, pre- fixing each entry with its index in the stack. ++_n Displays the _nth entry counting from the left of the list shown by ddiirrss when invoked without options, starting with zero. - --_n Displays the _nth entry counting from the right of the + --_n Displays the _nth entry counting from the right of the list shown by ddiirrss when invoked without options, starting with zero. - The return value is 0 unless an invalid option is supplied or _n + The return value is 0 unless an invalid option is supplied or _n indexes beyond the end of the directory stack. ddiissoowwnn [--aarr] [--hh] [_j_o_b_s_p_e_c ... | _p_i_d ... ] - Without options, remove each _j_o_b_s_p_e_c from the table of active - jobs. If _j_o_b_s_p_e_c is not present, and neither the --aa nor the --rr - option is supplied, the _c_u_r_r_e_n_t _j_o_b is used. If the --hh option - is given, each _j_o_b_s_p_e_c is not removed from the table, but is - marked so that SSIIGGHHUUPP is not sent to the job if the shell - receives a SSIIGGHHUUPP. If no _j_o_b_s_p_e_c is supplied, the --aa option - means to remove or mark all jobs; the --rr option without a _j_o_b_- - _s_p_e_c argument restricts operation to running jobs. The return + Without options, remove each _j_o_b_s_p_e_c from the table of active + jobs. If _j_o_b_s_p_e_c is not present, and neither the --aa nor the --rr + option is supplied, the _c_u_r_r_e_n_t _j_o_b is used. If the --hh option + is given, each _j_o_b_s_p_e_c is not removed from the table, but is + marked so that SSIIGGHHUUPP is not sent to the job if the shell + receives a SSIIGGHHUUPP. If no _j_o_b_s_p_e_c is supplied, the --aa option + means to remove or mark all jobs; the --rr option without a _j_o_b_- + _s_p_e_c argument restricts operation to running jobs. The return value is 0 unless a _j_o_b_s_p_e_c does not specify a valid job. eecchhoo [--nneeEE] [_a_r_g ...] - Output the _a_r_gs, separated by spaces, followed by a newline. - The return status is 0 unless a write error occurs. If --nn is + Output the _a_r_gs, separated by spaces, followed by a newline. + The return status is 0 unless a write error occurs. If --nn is specified, the trailing newline is suppressed. If the --ee option - is given, interpretation of the following backslash-escaped - characters is enabled. The --EE option disables the interpreta- - tion of these escape characters, even on systems where they are - interpreted by default. The xxppgg__eecchhoo shell option may be used - to dynamically determine whether or not eecchhoo expands these - escape characters by default. eecchhoo does not interpret ---- to - mean the end of options. eecchhoo interprets the following escape + is given, interpretation of the following backslash-escaped + characters is enabled. The --EE option disables the interpreta- + tion of these escape characters, even on systems where they are + interpreted by default. The xxppgg__eecchhoo shell option may be used + to dynamically determine whether or not eecchhoo expands these + escape characters by default. eecchhoo does not interpret ---- to + mean the end of options. eecchhoo interprets the following escape sequences: \\aa alert (bell) \\bb backspace @@ -4497,189 +4498,189 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS \\tt horizontal tab \\vv vertical tab \\\\ backslash - \\00_n_n_n the eight-bit character whose value is the octal value + \\00_n_n_n the eight-bit character whose value is the octal value _n_n_n (zero to three octal digits) - \\xx_H_H the eight-bit character whose value is the hexadecimal + \\xx_H_H the eight-bit character whose value is the hexadecimal value _H_H (one or two hex digits) - \\uu_H_H_H_H the Unicode (ISO/IEC 10646) character whose value is the + \\uu_H_H_H_H the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value _H_H_H_H (one to four hex digits) \\UU_H_H_H_H_H_H_H_H - the Unicode (ISO/IEC 10646) character whose value is the + the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value _H_H_H_H_H_H_H_H (one to eight hex digits) eennaabbllee [--aa] [--ddnnppss] [--ff _f_i_l_e_n_a_m_e] [_n_a_m_e ...] - Enable and disable builtin shell commands. Disabling a builtin + Enable and disable builtin shell commands. Disabling a builtin allows a disk command which has the same name as a shell builtin - to be executed without specifying a full pathname, even though - the shell normally searches for builtins before disk commands. - If --nn is used, each _n_a_m_e is disabled; otherwise, _n_a_m_e_s are + to be executed without specifying a full pathname, even though + the shell normally searches for builtins before disk commands. + If --nn is used, each _n_a_m_e is disabled; otherwise, _n_a_m_e_s are enabled. For example, to use the tteesstt binary found via the PPAATTHH - instead of the shell builtin version, run ``enable -n test''. - The --ff option means to load the new builtin command _n_a_m_e from + instead of the shell builtin version, run ``enable -n test''. + The --ff option means to load the new builtin command _n_a_m_e from shared object _f_i_l_e_n_a_m_e, on systems that support dynamic loading. - The --dd option will delete a builtin previously loaded with --ff. + The --dd option will delete a builtin previously loaded with --ff. If no _n_a_m_e arguments are given, or if the --pp option is supplied, a list of shell builtins is printed. With no other option argu- - ments, the list consists of all enabled shell builtins. If --nn - is supplied, only disabled builtins are printed. If --aa is sup- - plied, the list printed includes all builtins, with an indica- - tion of whether or not each is enabled. If --ss is supplied, the - output is restricted to the POSIX _s_p_e_c_i_a_l builtins. The return - value is 0 unless a _n_a_m_e is not a shell builtin or there is an + ments, the list consists of all enabled shell builtins. If --nn + is supplied, only disabled builtins are printed. If --aa is sup- + plied, the list printed includes all builtins, with an indica- + tion of whether or not each is enabled. If --ss is supplied, the + output is restricted to the POSIX _s_p_e_c_i_a_l builtins. The return + value is 0 unless a _n_a_m_e is not a shell builtin or there is an error loading a new builtin from a shared object. eevvaall [_a_r_g ...] - The _a_r_gs are read and concatenated together into a single com- - mand. This command is then read and executed by the shell, and - its exit status is returned as the value of eevvaall. If there are + The _a_r_gs are read and concatenated together into a single com- + mand. This command is then read and executed by the shell, and + its exit status is returned as the value of eevvaall. If there are no _a_r_g_s, or only null arguments, eevvaall returns 0. eexxeecc [--ccll] [--aa _n_a_m_e] [_c_o_m_m_a_n_d [_a_r_g_u_m_e_n_t_s]] - If _c_o_m_m_a_n_d is specified, it replaces the shell. No new process - is created. The _a_r_g_u_m_e_n_t_s become the arguments to _c_o_m_m_a_n_d. If + If _c_o_m_m_a_n_d is specified, it replaces the shell. No new process + is created. The _a_r_g_u_m_e_n_t_s become the arguments to _c_o_m_m_a_n_d. If the --ll option is supplied, the shell places a dash at the begin- - ning of the zeroth argument passed to _c_o_m_m_a_n_d. This is what + ning of the zeroth argument passed to _c_o_m_m_a_n_d. This is what _l_o_g_i_n(1) does. The --cc option causes _c_o_m_m_a_n_d to be executed with - an empty environment. If --aa is supplied, the shell passes _n_a_m_e + an empty environment. If --aa is supplied, the shell passes _n_a_m_e as the zeroth argument to the executed command. If _c_o_m_m_a_n_d can- - not be executed for some reason, a non-interactive shell exits, - unless the eexxeeccffaaiill shell option is enabled. In that case, it - returns failure. An interactive shell returns failure if the + not be executed for some reason, a non-interactive shell exits, + unless the eexxeeccffaaiill shell option is enabled. In that case, it + returns failure. An interactive shell returns failure if the file cannot be executed. If _c_o_m_m_a_n_d is not specified, any redi- rections take effect in the current shell, and the return status is 0. If there is a redirection error, the return status is 1. eexxiitt [_n] - Cause the shell to exit with a status of _n. If _n is omitted, + Cause the shell to exit with a status of _n. If _n is omitted, the exit status is that of the last command executed. A trap on EEXXIITT is executed before the shell terminates. eexxppoorrtt [--ffnn] [_n_a_m_e[=_w_o_r_d]] ... eexxppoorrtt --pp - The supplied _n_a_m_e_s are marked for automatic export to the envi- - ronment of subsequently executed commands. If the --ff option is - given, the _n_a_m_e_s refer to functions. If no _n_a_m_e_s are given, or - if the --pp option is supplied, a list of names of all exported - variables is printed. The --nn option causes the export property + The supplied _n_a_m_e_s are marked for automatic export to the envi- + ronment of subsequently executed commands. If the --ff option is + given, the _n_a_m_e_s refer to functions. If no _n_a_m_e_s are given, or + if the --pp option is supplied, a list of names of all exported + variables is printed. The --nn option causes the export property to be removed from each _n_a_m_e. If a variable name is followed by =_w_o_r_d, the value of the variable is set to _w_o_r_d. eexxppoorrtt returns an exit status of 0 unless an invalid option is encountered, one - of the _n_a_m_e_s is not a valid shell variable name, or --ff is sup- + of the _n_a_m_e_s is not a valid shell variable name, or --ff is sup- plied with a _n_a_m_e that is not a function. ffcc [--ee _e_n_a_m_e] [--llnnrr] [_f_i_r_s_t] [_l_a_s_t] ffcc --ss [_p_a_t=_r_e_p] [_c_m_d] - The first form selects a range of commands from _f_i_r_s_t to _l_a_s_t - from the history list and displays or edits and re-executes - them. _F_i_r_s_t and _l_a_s_t may be specified as a string (to locate - the last command beginning with that string) or as a number (an - index into the history list, where a negative number is used as - an offset from the current command number). If _l_a_s_t is not - specified it is set to the current command for listing (so that - ``fc -l -10'' prints the last 10 commands) and to _f_i_r_s_t other- - wise. If _f_i_r_s_t is not specified it is set to the previous com- + The first form selects a range of commands from _f_i_r_s_t to _l_a_s_t + from the history list and displays or edits and re-executes + them. _F_i_r_s_t and _l_a_s_t may be specified as a string (to locate + the last command beginning with that string) or as a number (an + index into the history list, where a negative number is used as + an offset from the current command number). If _l_a_s_t is not + specified it is set to the current command for listing (so that + ``fc -l -10'' prints the last 10 commands) and to _f_i_r_s_t other- + wise. If _f_i_r_s_t is not specified it is set to the previous com- mand for editing and -16 for listing. - The --nn option suppresses the command numbers when listing. The - --rr option reverses the order of the commands. If the --ll option - is given, the commands are listed on standard output. Other- - wise, the editor given by _e_n_a_m_e is invoked on a file containing - those commands. If _e_n_a_m_e is not given, the value of the FFCCEEDDIITT - variable is used, and the value of EEDDIITTOORR if FFCCEEDDIITT is not set. - If neither variable is set, _v_i is used. When editing is com- + The --nn option suppresses the command numbers when listing. The + --rr option reverses the order of the commands. If the --ll option + is given, the commands are listed on standard output. Other- + wise, the editor given by _e_n_a_m_e is invoked on a file containing + those commands. If _e_n_a_m_e is not given, the value of the FFCCEEDDIITT + variable is used, and the value of EEDDIITTOORR if FFCCEEDDIITT is not set. + If neither variable is set, _v_i is used. When editing is com- plete, the edited commands are echoed and executed. - In the second form, _c_o_m_m_a_n_d is re-executed after each instance - of _p_a_t is replaced by _r_e_p. _C_o_m_m_a_n_d is intepreted the same as - _f_i_r_s_t above. A useful alias to use with this is ``r="fc -s"'', - so that typing ``r cc'' runs the last command beginning with + In the second form, _c_o_m_m_a_n_d is re-executed after each instance + of _p_a_t is replaced by _r_e_p. _C_o_m_m_a_n_d is intepreted the same as + _f_i_r_s_t above. A useful alias to use with this is ``r="fc -s"'', + so that typing ``r cc'' runs the last command beginning with ``cc'' and typing ``r'' re-executes the last command. - If the first form is used, the return value is 0 unless an - invalid option is encountered or _f_i_r_s_t or _l_a_s_t specify history - lines out of range. If the --ee option is supplied, the return + If the first form is used, the return value is 0 unless an + invalid option is encountered or _f_i_r_s_t or _l_a_s_t specify history + lines out of range. If the --ee option is supplied, the return value is the value of the last command executed or failure if an error occurs with the temporary file of commands. If the second - form is used, the return status is that of the command re-exe- - cuted, unless _c_m_d does not specify a valid history line, in + form is used, the return status is that of the command re-exe- + cuted, unless _c_m_d does not specify a valid history line, in which case ffcc returns failure. ffgg [_j_o_b_s_p_e_c] - Resume _j_o_b_s_p_e_c in the foreground, and make it the current job. + Resume _j_o_b_s_p_e_c in the foreground, and make it the current job. If _j_o_b_s_p_e_c is not present, the shell's notion of the _c_u_r_r_e_n_t _j_o_b - is used. The return value is that of the command placed into - the foreground, or failure if run when job control is disabled + is used. The return value is that of the command placed into + the foreground, or failure if run when job control is disabled or, when run with job control enabled, if _j_o_b_s_p_e_c does not spec- - ify a valid job or _j_o_b_s_p_e_c specifies a job that was started + ify a valid job or _j_o_b_s_p_e_c specifies a job that was started without job control. ggeettooppttss _o_p_t_s_t_r_i_n_g _n_a_m_e [_a_r_g_s] - ggeettooppttss is used by shell procedures to parse positional parame- - ters. _o_p_t_s_t_r_i_n_g contains the option characters to be recog- - nized; if a character is followed by a colon, the option is - expected to have an argument, which should be separated from it - by white space. The colon and question mark characters may not - be used as option characters. Each time it is invoked, ggeettooppttss - places the next option in the shell variable _n_a_m_e, initializing + ggeettooppttss is used by shell procedures to parse positional parame- + ters. _o_p_t_s_t_r_i_n_g contains the option characters to be recog- + nized; if a character is followed by a colon, the option is + expected to have an argument, which should be separated from it + by white space. The colon and question mark characters may not + be used as option characters. Each time it is invoked, ggeettooppttss + places the next option in the shell variable _n_a_m_e, initializing _n_a_m_e if it does not exist, and the index of the next argument to be processed into the variable OOPPTTIINNDD. OOPPTTIINNDD is initialized to - 1 each time the shell or a shell script is invoked. When an - option requires an argument, ggeettooppttss places that argument into - the variable OOPPTTAARRGG. The shell does not reset OOPPTTIINNDD automati- - cally; it must be manually reset between multiple calls to + 1 each time the shell or a shell script is invoked. When an + option requires an argument, ggeettooppttss places that argument into + the variable OOPPTTAARRGG. The shell does not reset OOPPTTIINNDD automati- + cally; it must be manually reset between multiple calls to ggeettooppttss within the same shell invocation if a new set of parame- ters is to be used. - When the end of options is encountered, ggeettooppttss exits with a - return value greater than zero. OOPPTTIINNDD is set to the index of + When the end of options is encountered, ggeettooppttss exits with a + return value greater than zero. OOPPTTIINNDD is set to the index of the first non-option argument, and _n_a_m_e is set to ?. - ggeettooppttss normally parses the positional parameters, but if more + ggeettooppttss normally parses the positional parameters, but if more arguments are given in _a_r_g_s, ggeettooppttss parses those instead. - ggeettooppttss can report errors in two ways. If the first character - of _o_p_t_s_t_r_i_n_g is a colon, _s_i_l_e_n_t error reporting is used. In - normal operation, diagnostic messages are printed when invalid - options or missing option arguments are encountered. If the - variable OOPPTTEERRRR is set to 0, no error messages will be dis- + ggeettooppttss can report errors in two ways. If the first character + of _o_p_t_s_t_r_i_n_g is a colon, _s_i_l_e_n_t error reporting is used. In + normal operation, diagnostic messages are printed when invalid + options or missing option arguments are encountered. If the + variable OOPPTTEERRRR is set to 0, no error messages will be dis- played, even if the first character of _o_p_t_s_t_r_i_n_g is not a colon. If an invalid option is seen, ggeettooppttss places ? into _n_a_m_e and, if - not silent, prints an error message and unsets OOPPTTAARRGG. If - ggeettooppttss is silent, the option character found is placed in + not silent, prints an error message and unsets OOPPTTAARRGG. If + ggeettooppttss is silent, the option character found is placed in OOPPTTAARRGG and no diagnostic message is printed. - If a required argument is not found, and ggeettooppttss is not silent, - a question mark (??) is placed in _n_a_m_e, OOPPTTAARRGG is unset, and a - diagnostic message is printed. If ggeettooppttss is silent, then a - colon (::) is placed in _n_a_m_e and OOPPTTAARRGG is set to the option + If a required argument is not found, and ggeettooppttss is not silent, + a question mark (??) is placed in _n_a_m_e, OOPPTTAARRGG is unset, and a + diagnostic message is printed. If ggeettooppttss is silent, then a + colon (::) is placed in _n_a_m_e and OOPPTTAARRGG is set to the option character found. - ggeettooppttss returns true if an option, specified or unspecified, is + ggeettooppttss returns true if an option, specified or unspecified, is found. It returns false if the end of options is encountered or an error occurs. hhaasshh [--llrr] [--pp _f_i_l_e_n_a_m_e] [--ddtt] [_n_a_m_e] Each time hhaasshh is invoked, the full pathname of the command _n_a_m_e - is determined by searching the directories in $$PPAATTHH and remem- + is determined by searching the directories in $$PPAATTHH and remem- bered. Any previously-remembered pathname is discarded. If the --pp option is supplied, no path search is performed, and _f_i_l_e_n_a_m_e - is used as the full filename of the command. The --rr option - causes the shell to forget all remembered locations. The --dd - option causes the shell to forget the remembered location of - each _n_a_m_e. If the --tt option is supplied, the full pathname to - which each _n_a_m_e corresponds is printed. If multiple _n_a_m_e argu- - ments are supplied with --tt, the _n_a_m_e is printed before the - hashed full pathname. The --ll option causes output to be dis- + is used as the full filename of the command. The --rr option + causes the shell to forget all remembered locations. The --dd + option causes the shell to forget the remembered location of + each _n_a_m_e. If the --tt option is supplied, the full pathname to + which each _n_a_m_e corresponds is printed. If multiple _n_a_m_e argu- + ments are supplied with --tt, the _n_a_m_e is printed before the + hashed full pathname. The --ll option causes output to be dis- played in a format that may be reused as input. If no arguments - are given, or if only --ll is supplied, information about remem- - bered commands is printed. The return status is true unless a + are given, or if only --ll is supplied, information about remem- + bered commands is printed. The return status is true unless a _n_a_m_e is not found or an invalid option is supplied. hheellpp [--ddmmss] [_p_a_t_t_e_r_n] - Display helpful information about builtin commands. If _p_a_t_t_e_r_n - is specified, hheellpp gives detailed help on all commands matching - _p_a_t_t_e_r_n; otherwise help for all the builtins and shell control + Display helpful information about builtin commands. If _p_a_t_t_e_r_n + is specified, hheellpp gives detailed help on all commands matching + _p_a_t_t_e_r_n; otherwise help for all the builtins and shell control structures is printed. --dd Display a short description of each _p_a_t_t_e_r_n --mm Display the description of each _p_a_t_t_e_r_n in a manpage-like @@ -4696,45 +4697,45 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS hhiissttoorryy --ss _a_r_g [_a_r_g _._._.] With no options, display the command history list with line num- bers. Lines listed with a ** have been modified. An argument of - _n lists only the last _n lines. If the shell variable HHIISSTTTTIIMMEE-- - FFOORRMMAATT is set and not null, it is used as a format string for - _s_t_r_f_t_i_m_e(3) to display the time stamp associated with each dis- - played history entry. No intervening blank is printed between - the formatted time stamp and the history line. If _f_i_l_e_n_a_m_e is - supplied, it is used as the name of the history file; if not, - the value of HHIISSTTFFIILLEE is used. Options, if supplied, have the + _n lists only the last _n lines. If the shell variable HHIISSTTTTIIMMEE-- + FFOORRMMAATT is set and not null, it is used as a format string for + _s_t_r_f_t_i_m_e(3) to display the time stamp associated with each dis- + played history entry. No intervening blank is printed between + the formatted time stamp and the history line. If _f_i_l_e_n_a_m_e is + supplied, it is used as the name of the history file; if not, + the value of HHIISSTTFFIILLEE is used. Options, if supplied, have the following meanings: --cc Clear the history list by deleting all the entries. --dd _o_f_f_s_e_t Delete the history entry at position _o_f_f_s_e_t. - --aa Append the ``new'' history lines to the history file. - These are history lines entered since the beginning of + --aa Append the ``new'' history lines to the history file. + These are history lines entered since the beginning of the current bbaasshh session, but not already appended to the history file. - --nn Read the history lines not already read from the history - file into the current history list. These are lines - appended to the history file since the beginning of the + --nn Read the history lines not already read from the history + file into the current history list. These are lines + appended to the history file since the beginning of the current bbaasshh session. - --rr Read the contents of the history file and append them to + --rr Read the contents of the history file and append them to the current history list. --ww Write the current history list to the history file, over- writing the history file's contents. - --pp Perform history substitution on the following _a_r_g_s and - display the result on the standard output. Does not - store the results in the history list. Each _a_r_g must be + --pp Perform history substitution on the following _a_r_g_s and + display the result on the standard output. Does not + store the results in the history list. Each _a_r_g must be quoted to disable normal history expansion. - --ss Store the _a_r_g_s in the history list as a single entry. - The last command in the history list is removed before + --ss Store the _a_r_g_s in the history list as a single entry. + The last command in the history list is removed before the _a_r_g_s are added. - If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is set, the time stamp informa- - tion associated with each history entry is written to the his- - tory file, marked with the history comment character. When the - history file is read, lines beginning with the history comment - character followed immediately by a digit are interpreted as + If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is set, the time stamp informa- + tion associated with each history entry is written to the his- + tory file, marked with the history comment character. When the + history file is read, lines beginning with the history comment + character followed immediately by a digit are interpreted as timestamps for the following history entry. The return value is 0 unless an invalid option is encountered, an error occurs while - reading or writing the history file, an invalid _o_f_f_s_e_t is sup- + reading or writing the history file, an invalid _o_f_f_s_e_t is sup- plied as an argument to --dd, or the history expansion supplied as an argument to --pp fails. @@ -4743,205 +4744,205 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS The first form lists the active jobs. The options have the fol- lowing meanings: --ll List process IDs in addition to the normal information. - --nn Display information only about jobs that have changed + --nn Display information only about jobs that have changed status since the user was last notified of their status. - --pp List only the process ID of the job's process group + --pp List only the process ID of the job's process group leader. --rr Display only running jobs. --ss Display only stopped jobs. - If _j_o_b_s_p_e_c is given, output is restricted to information about - that job. The return status is 0 unless an invalid option is + If _j_o_b_s_p_e_c is given, output is restricted to information about + that job. The return status is 0 unless an invalid option is encountered or an invalid _j_o_b_s_p_e_c is supplied. If the --xx option is supplied, jjoobbss replaces any _j_o_b_s_p_e_c found in - _c_o_m_m_a_n_d or _a_r_g_s with the corresponding process group ID, and + _c_o_m_m_a_n_d or _a_r_g_s with the corresponding process group ID, and executes _c_o_m_m_a_n_d passing it _a_r_g_s, returning its exit status. kkiillll [--ss _s_i_g_s_p_e_c | --nn _s_i_g_n_u_m | --_s_i_g_s_p_e_c] [_p_i_d | _j_o_b_s_p_e_c] ... kkiillll --ll|--LL [_s_i_g_s_p_e_c | _e_x_i_t___s_t_a_t_u_s] - Send the signal named by _s_i_g_s_p_e_c or _s_i_g_n_u_m to the processes - named by _p_i_d or _j_o_b_s_p_e_c. _s_i_g_s_p_e_c is either a case-insensitive - signal name such as SSIIGGKKIILLLL (with or without the SSIIGG prefix) or - a signal number; _s_i_g_n_u_m is a signal number. If _s_i_g_s_p_e_c is not - present, then SSIIGGTTEERRMM is assumed. An argument of --ll lists the - signal names. If any arguments are supplied when --ll is given, - the names of the signals corresponding to the arguments are + Send the signal named by _s_i_g_s_p_e_c or _s_i_g_n_u_m to the processes + named by _p_i_d or _j_o_b_s_p_e_c. _s_i_g_s_p_e_c is either a case-insensitive + signal name such as SSIIGGKKIILLLL (with or without the SSIIGG prefix) or + a signal number; _s_i_g_n_u_m is a signal number. If _s_i_g_s_p_e_c is not + present, then SSIIGGTTEERRMM is assumed. An argument of --ll lists the + signal names. If any arguments are supplied when --ll is given, + the names of the signals corresponding to the arguments are listed, and the return status is 0. The _e_x_i_t___s_t_a_t_u_s argument to - --ll is a number specifying either a signal number or the exit - status of a process terminated by a signal. The --LL option is - equivalent to --ll. kkiillll returns true if at least one signal was - successfully sent, or false if an error occurs or an invalid + --ll is a number specifying either a signal number or the exit + status of a process terminated by a signal. The --LL option is + equivalent to --ll. kkiillll returns true if at least one signal was + successfully sent, or false if an error occurs or an invalid option is encountered. lleett _a_r_g [_a_r_g ...] Each _a_r_g is an arithmetic expression to be evaluated (see AARRIITTHH-- - MMEETTIICC EEVVAALLUUAATTIIOONN above). If the last _a_r_g evaluates to 0, lleett + MMEETTIICC EEVVAALLUUAATTIIOONN above). If the last _a_r_g evaluates to 0, lleett returns 1; 0 is returned otherwise. llooccaall [_o_p_t_i_o_n] [_n_a_m_e[=_v_a_l_u_e] ... | - ] - For each argument, a local variable named _n_a_m_e is created, and - assigned _v_a_l_u_e. The _o_p_t_i_o_n can be any of the options accepted + For each argument, a local variable named _n_a_m_e is created, and + assigned _v_a_l_u_e. The _o_p_t_i_o_n can be any of the options accepted by ddeeccllaarree. When llooccaall is used within a function, it causes the - variable _n_a_m_e to have a visible scope restricted to that func- - tion and its children. If _n_a_m_e is -, the set of shell options - is made local to the function in which llooccaall is invoked: shell - options changed using the sseett builtin inside the function are - restored to their original values when the function returns. - With no operands, llooccaall writes a list of local variables to the - standard output. It is an error to use llooccaall when not within a + variable _n_a_m_e to have a visible scope restricted to that func- + tion and its children. If _n_a_m_e is -, the set of shell options + is made local to the function in which llooccaall is invoked: shell + options changed using the sseett builtin inside the function are + restored to their original values when the function returns. + With no operands, llooccaall writes a list of local variables to the + standard output. It is an error to use llooccaall when not within a function. The return status is 0 unless llooccaall is used outside a - function, an invalid _n_a_m_e is supplied, or _n_a_m_e is a readonly + function, an invalid _n_a_m_e is supplied, or _n_a_m_e is a readonly variable. llooggoouutt Exit a login shell. - mmaappffiillee [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC + mmaappffiillee [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC _c_a_l_l_b_a_c_k] [--cc _q_u_a_n_t_u_m] [_a_r_r_a_y] rreeaaddaarrrraayy [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC _c_a_l_l_b_a_c_k] [--cc _q_u_a_n_t_u_m] [_a_r_r_a_y] - Read lines from the standard input into the indexed array vari- - able _a_r_r_a_y, or from file descriptor _f_d if the --uu option is sup- - plied. The variable MMAAPPFFIILLEE is the default _a_r_r_a_y. Options, if + Read lines from the standard input into the indexed array vari- + able _a_r_r_a_y, or from file descriptor _f_d if the --uu option is sup- + plied. The variable MMAAPPFFIILLEE is the default _a_r_r_a_y. Options, if supplied, have the following meanings: - --dd The first character of _d_e_l_i_m is used to terminate each + --dd The first character of _d_e_l_i_m is used to terminate each input line, rather than newline. - --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, all lines are + --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, all lines are copied. - --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default + --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default index is 0. --ss Discard the first _c_o_u_n_t lines read. - --tt Remove a trailing _d_e_l_i_m (default newline) from each line + --tt Remove a trailing _d_e_l_i_m (default newline) from each line read. - --uu Read lines from file descriptor _f_d instead of the stan- + --uu Read lines from file descriptor _f_d instead of the stan- dard input. - --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The + --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The --cc option specifies _q_u_a_n_t_u_m. - --cc Specify the number of lines read between each call to + --cc Specify the number of lines read between each call to _c_a_l_l_b_a_c_k. - If --CC is specified without --cc, the default quantum is 5000. + If --CC is specified without --cc, the default quantum is 5000. When _c_a_l_l_b_a_c_k is evaluated, it is supplied the index of the next array element to be assigned and the line to be assigned to that - element as additional arguments. _c_a_l_l_b_a_c_k is evaluated after + element as additional arguments. _c_a_l_l_b_a_c_k is evaluated after the line is read but before the array element is assigned. - If not supplied with an explicit origin, mmaappffiillee will clear + If not supplied with an explicit origin, mmaappffiillee will clear _a_r_r_a_y before assigning to it. - mmaappffiillee returns successfully unless an invalid option or option - argument is supplied, _a_r_r_a_y is invalid or unassignable, or if + mmaappffiillee returns successfully unless an invalid option or option + argument is supplied, _a_r_r_a_y is invalid or unassignable, or if _a_r_r_a_y is not an indexed array. ppooppdd [-nn] [+_n] [-_n] - Removes entries from the directory stack. With no arguments, - removes the top directory from the stack, and performs a ccdd to + Removes entries from the directory stack. With no arguments, + removes the top directory from the stack, and performs a ccdd to the new top directory. Arguments, if supplied, have the follow- ing meanings: - --nn Suppresses the normal change of directory when removing - directories from the stack, so that only the stack is + --nn Suppresses the normal change of directory when removing + directories from the stack, so that only the stack is manipulated. - ++_n Removes the _nth entry counting from the left of the list - shown by ddiirrss, starting with zero. For example: ``popd + ++_n Removes the _nth entry counting from the left of the list + shown by ddiirrss, starting with zero. For example: ``popd +0'' removes the first directory, ``popd +1'' the second. --_n Removes the _nth entry counting from the right of the list - shown by ddiirrss, starting with zero. For example: ``popd - -0'' removes the last directory, ``popd -1'' the next to + shown by ddiirrss, starting with zero. For example: ``popd + -0'' removes the last directory, ``popd -1'' the next to last. - If the ppooppdd command is successful, a ddiirrss is performed as well, - and the return status is 0. ppooppdd returns false if an invalid + If the ppooppdd command is successful, a ddiirrss is performed as well, + and the return status is 0. ppooppdd returns false if an invalid option is encountered, the directory stack is empty, a non-exis- tent directory stack entry is specified, or the directory change fails. pprriinnttff [--vv _v_a_r] _f_o_r_m_a_t [_a_r_g_u_m_e_n_t_s] - Write the formatted _a_r_g_u_m_e_n_t_s to the standard output under the - control of the _f_o_r_m_a_t. The --vv option causes the output to be - assigned to the variable _v_a_r rather than being printed to the + Write the formatted _a_r_g_u_m_e_n_t_s to the standard output under the + control of the _f_o_r_m_a_t. The --vv option causes the output to be + assigned to the variable _v_a_r rather than being printed to the standard output. - The _f_o_r_m_a_t is a character string which contains three types of - objects: plain characters, which are simply copied to standard - output, character escape sequences, which are converted and - copied to the standard output, and format specifications, each - of which causes printing of the next successive _a_r_g_u_m_e_n_t. In + The _f_o_r_m_a_t is a character string which contains three types of + objects: plain characters, which are simply copied to standard + output, character escape sequences, which are converted and + copied to the standard output, and format specifications, each + of which causes printing of the next successive _a_r_g_u_m_e_n_t. In addition to the standard _p_r_i_n_t_f(1) format specifications, pprriinnttff interprets the following extensions: %%bb causes pprriinnttff to expand backslash escape sequences in the corresponding _a_r_g_u_m_e_n_t in the same way as eecchhoo --ee. - %%qq causes pprriinnttff to output the corresponding _a_r_g_u_m_e_n_t in a + %%qq causes pprriinnttff to output the corresponding _a_r_g_u_m_e_n_t in a format that can be reused as shell input. %%((_d_a_t_e_f_m_t))TT - causes pprriinnttff to output the date-time string resulting - from using _d_a_t_e_f_m_t as a format string for _s_t_r_f_t_i_m_e(3). + causes pprriinnttff to output the date-time string resulting + from using _d_a_t_e_f_m_t as a format string for _s_t_r_f_t_i_m_e(3). The corresponding _a_r_g_u_m_e_n_t is an integer representing the - number of seconds since the epoch. Two special argument - values may be used: -1 represents the current time, and - -2 represents the time the shell was invoked. If no - argument is specified, conversion behaves as if -1 had - been given. This is an exception to the usual pprriinnttff + number of seconds since the epoch. Two special argument + values may be used: -1 represents the current time, and + -2 represents the time the shell was invoked. If no + argument is specified, conversion behaves as if -1 had + been given. This is an exception to the usual pprriinnttff behavior. - Arguments to non-string format specifiers are treated as C con- + Arguments to non-string format specifiers are treated as C con- stants, except that a leading plus or minus sign is allowed, and - if the leading character is a single or double quote, the value + if the leading character is a single or double quote, the value is the ASCII value of the following character. - The _f_o_r_m_a_t is reused as necessary to consume all of the _a_r_g_u_- + The _f_o_r_m_a_t is reused as necessary to consume all of the _a_r_g_u_- _m_e_n_t_s. If the _f_o_r_m_a_t requires more _a_r_g_u_m_e_n_t_s than are supplied, - the extra format specifications behave as if a zero value or - null string, as appropriate, had been supplied. The return + the extra format specifications behave as if a zero value or + null string, as appropriate, had been supplied. The return value is zero on success, non-zero on failure. ppuusshhdd [--nn] [+_n] [-_n] ppuusshhdd [--nn] [_d_i_r] - Adds a directory to the top of the directory stack, or rotates - the stack, making the new top of the stack the current working - directory. With no arguments, ppuusshhdd exchanges the top two - directories and returns 0, unless the directory stack is empty. + Adds a directory to the top of the directory stack, or rotates + the stack, making the new top of the stack the current working + directory. With no arguments, ppuusshhdd exchanges the top two + directories and returns 0, unless the directory stack is empty. Arguments, if supplied, have the following meanings: - --nn Suppresses the normal change of directory when rotating - or adding directories to the stack, so that only the + --nn Suppresses the normal change of directory when rotating + or adding directories to the stack, so that only the stack is manipulated. - ++_n Rotates the stack so that the _nth directory (counting - from the left of the list shown by ddiirrss, starting with + ++_n Rotates the stack so that the _nth directory (counting + from the left of the list shown by ddiirrss, starting with zero) is at the top. - --_n Rotates the stack so that the _nth directory (counting - from the right of the list shown by ddiirrss, starting with + --_n Rotates the stack so that the _nth directory (counting + from the right of the list shown by ddiirrss, starting with zero) is at the top. _d_i_r Adds _d_i_r to the directory stack at the top, making it the - new current working directory as if it had been supplied + new current working directory as if it had been supplied as the argument to the ccdd builtin. If the ppuusshhdd command is successful, a ddiirrss is performed as well. - If the first form is used, ppuusshhdd returns 0 unless the cd to _d_i_r - fails. With the second form, ppuusshhdd returns 0 unless the direc- - tory stack is empty, a non-existent directory stack element is - specified, or the directory change to the specified new current + If the first form is used, ppuusshhdd returns 0 unless the cd to _d_i_r + fails. With the second form, ppuusshhdd returns 0 unless the direc- + tory stack is empty, a non-existent directory stack element is + specified, or the directory change to the specified new current directory fails. ppwwdd [--LLPP] - Print the absolute pathname of the current working directory. + Print the absolute pathname of the current working directory. The pathname printed contains no symbolic links if the --PP option is supplied or the --oo pphhyyssiiccaall option to the sseett builtin command - is enabled. If the --LL option is used, the pathname printed may - contain symbolic links. The return status is 0 unless an error - occurs while reading the name of the current directory or an + is enabled. If the --LL option is used, the pathname printed may + contain symbolic links. The return status is 0 unless an error + occurs while reading the name of the current directory or an invalid option is supplied. rreeaadd [--eerrss] [--aa _a_n_a_m_e] [--dd _d_e_l_i_m] [--ii _t_e_x_t] [--nn _n_c_h_a_r_s] [--NN _n_c_h_a_r_s] [--pp _p_r_o_m_p_t] [--tt _t_i_m_e_o_u_t] [--uu _f_d] [_n_a_m_e ...] - One line is read from the standard input, or from the file - descriptor _f_d supplied as an argument to the --uu option, and the + One line is read from the standard input, or from the file + descriptor _f_d supplied as an argument to the --uu option, and the first word is assigned to the first _n_a_m_e, the second word to the - second _n_a_m_e, and so on, with leftover words and their interven- - ing separators assigned to the last _n_a_m_e. If there are fewer + second _n_a_m_e, and so on, with leftover words and their interven- + ing separators assigned to the last _n_a_m_e. If there are fewer words read from the input stream than names, the remaining names - are assigned empty values. The characters in IIFFSS are used to - split the line into words using the same rules the shell uses + are assigned empty values. The characters in IIFFSS are used to + split the line into words using the same rules the shell uses for expansion (described above under WWoorrdd SSpplliittttiinngg). The back- - slash character (\\) may be used to remove any special meaning + slash character (\\) may be used to remove any special meaning for the next character read and for line continuation. Options, if supplied, have the following meanings: --aa _a_n_a_m_e @@ -4950,28 +4951,28 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS new values are assigned. Other _n_a_m_e arguments are ignored. --dd _d_e_l_i_m - The first character of _d_e_l_i_m is used to terminate the + The first character of _d_e_l_i_m is used to terminate the input line, rather than newline. --ee If the standard input is coming from a terminal, rreeaaddlliinnee - (see RREEAADDLLIINNEE above) is used to obtain the line. Read- - line uses the current (or default, if line editing was + (see RREEAADDLLIINNEE above) is used to obtain the line. Read- + line uses the current (or default, if line editing was not previously active) editing settings. --ii _t_e_x_t - If rreeaaddlliinnee is being used to read the line, _t_e_x_t is + If rreeaaddlliinnee is being used to read the line, _t_e_x_t is placed into the editing buffer before editing begins. --nn _n_c_h_a_r_s - rreeaadd returns after reading _n_c_h_a_r_s characters rather than + rreeaadd returns after reading _n_c_h_a_r_s characters rather than waiting for a complete line of input, but honors a delim- - iter if fewer than _n_c_h_a_r_s characters are read before the + iter if fewer than _n_c_h_a_r_s characters are read before the delimiter. --NN _n_c_h_a_r_s - rreeaadd returns after reading exactly _n_c_h_a_r_s characters - rather than waiting for a complete line of input, unless - EOF is encountered or rreeaadd times out. Delimiter charac- - ters encountered in the input are not treated specially - and do not cause rreeaadd to return until _n_c_h_a_r_s characters - are read. The result is not split on the characters in - IIFFSS; the intent is that the variable is assigned exactly + rreeaadd returns after reading exactly _n_c_h_a_r_s characters + rather than waiting for a complete line of input, unless + EOF is encountered or rreeaadd times out. Delimiter charac- + ters encountered in the input are not treated specially + and do not cause rreeaadd to return until _n_c_h_a_r_s characters + are read. The result is not split on the characters in + IIFFSS; the intent is that the variable is assigned exactly the characters read (with the exception of backslash; see the --rr option below). --pp _p_r_o_m_p_t @@ -4979,131 +4980,131 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS line, before attempting to read any input. The prompt is displayed only if input is coming from a terminal. --rr Backslash does not act as an escape character. The back- - slash is considered to be part of the line. In particu- - lar, a backslash-newline pair may not be used as a line + slash is considered to be part of the line. In particu- + lar, a backslash-newline pair may not be used as a line continuation. --ss Silent mode. If input is coming from a terminal, charac- ters are not echoed. --tt _t_i_m_e_o_u_t - Cause rreeaadd to time out and return failure if a complete - line of input (or a specified number of characters) is - not read within _t_i_m_e_o_u_t seconds. _t_i_m_e_o_u_t may be a deci- - mal number with a fractional portion following the deci- - mal point. This option is only effective if rreeaadd is - reading input from a terminal, pipe, or other special - file; it has no effect when reading from regular files. + Cause rreeaadd to time out and return failure if a complete + line of input (or a specified number of characters) is + not read within _t_i_m_e_o_u_t seconds. _t_i_m_e_o_u_t may be a deci- + mal number with a fractional portion following the deci- + mal point. This option is only effective if rreeaadd is + reading input from a terminal, pipe, or other special + file; it has no effect when reading from regular files. If rreeaadd times out, rreeaadd saves any partial input read into - the specified variable _n_a_m_e. If _t_i_m_e_o_u_t is 0, rreeaadd - returns immediately, without trying to read any data. - The exit status is 0 if input is available on the speci- - fied file descriptor, non-zero otherwise. The exit sta- + the specified variable _n_a_m_e. If _t_i_m_e_o_u_t is 0, rreeaadd + returns immediately, without trying to read any data. + The exit status is 0 if input is available on the speci- + fied file descriptor, non-zero otherwise. The exit sta- tus is greater than 128 if the timeout is exceeded. --uu _f_d Read input from file descriptor _f_d. If no _n_a_m_e_s are supplied, the line read is assigned to the vari- - able RREEPPLLYY. The exit status is zero, unless end-of-file is + able RREEPPLLYY. The exit status is zero, unless end-of-file is encountered, rreeaadd times out (in which case the status is greater - than 128), a variable assignment error (such as assigning to a + than 128), a variable assignment error (such as assigning to a readonly variable) occurs, or an invalid file descriptor is sup- plied as the argument to --uu. rreeaaddoonnllyy [--aaAAff] [--pp] [_n_a_m_e[=_w_o_r_d] ...] - The given _n_a_m_e_s are marked readonly; the values of these _n_a_m_e_s - may not be changed by subsequent assignment. If the --ff option - is supplied, the functions corresponding to the _n_a_m_e_s are so - marked. The --aa option restricts the variables to indexed - arrays; the --AA option restricts the variables to associative - arrays. If both options are supplied, --AA takes precedence. If - no _n_a_m_e arguments are given, or if the --pp option is supplied, a + The given _n_a_m_e_s are marked readonly; the values of these _n_a_m_e_s + may not be changed by subsequent assignment. If the --ff option + is supplied, the functions corresponding to the _n_a_m_e_s are so + marked. The --aa option restricts the variables to indexed + arrays; the --AA option restricts the variables to associative + arrays. If both options are supplied, --AA takes precedence. If + no _n_a_m_e arguments are given, or if the --pp option is supplied, a list of all readonly names is printed. The other options may be - used to restrict the output to a subset of the set of readonly - names. The --pp option causes output to be displayed in a format - that may be reused as input. If a variable name is followed by - =_w_o_r_d, the value of the variable is set to _w_o_r_d. The return - status is 0 unless an invalid option is encountered, one of the + used to restrict the output to a subset of the set of readonly + names. The --pp option causes output to be displayed in a format + that may be reused as input. If a variable name is followed by + =_w_o_r_d, the value of the variable is set to _w_o_r_d. The return + status is 0 unless an invalid option is encountered, one of the _n_a_m_e_s is not a valid shell variable name, or --ff is supplied with a _n_a_m_e that is not a function. rreettuurrnn [_n] - Causes a function to stop executing and return the value speci- - fied by _n to its caller. If _n is omitted, the return status is - that of the last command executed in the function body. If - rreettuurrnn is executed by a trap handler, the last command used to - determine the status is the last command executed before the - trap handler. if rreettuurrnn is executed during a DDEEBBUUGG trap, the - last command used to determine the status is the last command - executed by the trap handler before rreettuurrnn was invoked. If - rreettuurrnn is used outside a function, but during execution of a - script by the .. (ssoouurrccee) command, it causes the shell to stop - executing that script and return either _n or the exit status of - the last command executed within the script as the exit status - of the script. If _n is supplied, the return value is its least - significant 8 bits. The return status is non-zero if rreettuurrnn is - supplied a non-numeric argument, or is used outside a function - and not during execution of a script by .. or ssoouurrccee. Any com- - mand associated with the RREETTUURRNN trap is executed before execu- + Causes a function to stop executing and return the value speci- + fied by _n to its caller. If _n is omitted, the return status is + that of the last command executed in the function body. If + rreettuurrnn is executed by a trap handler, the last command used to + determine the status is the last command executed before the + trap handler. if rreettuurrnn is executed during a DDEEBBUUGG trap, the + last command used to determine the status is the last command + executed by the trap handler before rreettuurrnn was invoked. If + rreettuurrnn is used outside a function, but during execution of a + script by the .. (ssoouurrccee) command, it causes the shell to stop + executing that script and return either _n or the exit status of + the last command executed within the script as the exit status + of the script. If _n is supplied, the return value is its least + significant 8 bits. The return status is non-zero if rreettuurrnn is + supplied a non-numeric argument, or is used outside a function + and not during execution of a script by .. or ssoouurrccee. Any com- + mand associated with the RREETTUURRNN trap is executed before execu- tion resumes after the function or script. sseett [----aabbeeffhhkkmmnnppttuuvvxxBBCCEEHHPPTT] [--oo _o_p_t_i_o_n_-_n_a_m_e] [_a_r_g ...] sseett [++aabbeeffhhkkmmnnppttuuvvxxBBCCEEHHPPTT] [++oo _o_p_t_i_o_n_-_n_a_m_e] [_a_r_g ...] - Without options, the name and value of each shell variable are + Without options, the name and value of each shell variable are displayed in a format that can be reused as input for setting or resetting the currently-set variables. Read-only variables can- - not be reset. In _p_o_s_i_x mode, only shell variables are listed. - The output is sorted according to the current locale. When - options are specified, they set or unset shell attributes. Any - arguments remaining after option processing are treated as val- + not be reset. In _p_o_s_i_x mode, only shell variables are listed. + The output is sorted according to the current locale. When + options are specified, they set or unset shell attributes. Any + arguments remaining after option processing are treated as val- ues for the positional parameters and are assigned, in order, to - $$11, $$22, ...... $$_n. Options, if specified, have the following + $$11, $$22, ...... $$_n. Options, if specified, have the following meanings: --aa Each variable or function that is created or modified is - given the export attribute and marked for export to the + given the export attribute and marked for export to the environment of subsequent commands. - --bb Report the status of terminated background jobs immedi- + --bb Report the status of terminated background jobs immedi- ately, rather than before the next primary prompt. This is effective only when job control is enabled. - --ee Exit immediately if a _p_i_p_e_l_i_n_e (which may consist of a - single _s_i_m_p_l_e _c_o_m_m_a_n_d), a _l_i_s_t, or a _c_o_m_p_o_u_n_d _c_o_m_m_a_n_d + --ee Exit immediately if a _p_i_p_e_l_i_n_e (which may consist of a + single _s_i_m_p_l_e _c_o_m_m_a_n_d), a _l_i_s_t, or a _c_o_m_p_o_u_n_d _c_o_m_m_a_n_d (see SSHHEELLLL GGRRAAMMMMAARR above), exits with a non-zero status. - The shell does not exit if the command that fails is - part of the command list immediately following a wwhhiillee - or uunnttiill keyword, part of the test following the iiff or - eelliiff reserved words, part of any command executed in a - &&&& or |||| list except the command following the final &&&& + The shell does not exit if the command that fails is + part of the command list immediately following a wwhhiillee + or uunnttiill keyword, part of the test following the iiff or + eelliiff reserved words, part of any command executed in a + &&&& or |||| list except the command following the final &&&& or ||||, any command in a pipeline but the last, or if the - command's return value is being inverted with !!. If a - compound command other than a subshell returns a non- - zero status because a command failed while --ee was being - ignored, the shell does not exit. A trap on EERRRR, if - set, is executed before the shell exits. This option + command's return value is being inverted with !!. If a + compound command other than a subshell returns a non- + zero status because a command failed while --ee was being + ignored, the shell does not exit. A trap on EERRRR, if + set, is executed before the shell exits. This option applies to the shell environment and each subshell envi- - ronment separately (see CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT + ronment separately (see CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT above), and may cause subshells to exit before executing all the commands in the subshell. - If a compound command or shell function executes in a - context where --ee is being ignored, none of the commands - executed within the compound command or function body - will be affected by the --ee setting, even if --ee is set - and a command returns a failure status. If a compound - command or shell function sets --ee while executing in a - context where --ee is ignored, that setting will not have - any effect until the compound command or the command + If a compound command or shell function executes in a + context where --ee is being ignored, none of the commands + executed within the compound command or function body + will be affected by the --ee setting, even if --ee is set + and a command returns a failure status. If a compound + command or shell function sets --ee while executing in a + context where --ee is ignored, that setting will not have + any effect until the compound command or the command containing the function call completes. --ff Disable pathname expansion. - --hh Remember the location of commands as they are looked up + --hh Remember the location of commands as they are looked up for execution. This is enabled by default. - --kk All arguments in the form of assignment statements are - placed in the environment for a command, not just those + --kk All arguments in the form of assignment statements are + placed in the environment for a command, not just those that precede the command name. - --mm Monitor mode. Job control is enabled. This option is - on by default for interactive shells on systems that - support it (see JJOOBB CCOONNTTRROOLL above). All processes run + --mm Monitor mode. Job control is enabled. This option is + on by default for interactive shells on systems that + support it (see JJOOBB CCOONNTTRROOLL above). All processes run in a separate process group. When a background job com- pletes, the shell prints a line containing its exit sta- tus. --nn Read commands but do not execute them. This may be used - to check a shell script for syntax errors. This is + to check a shell script for syntax errors. This is ignored by interactive shells. --oo _o_p_t_i_o_n_-_n_a_m_e The _o_p_t_i_o_n_-_n_a_m_e can be one of the following: @@ -5111,10 +5112,10 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Same as --aa. bbrraacceeeexxppaanndd Same as --BB. - eemmaaccss Use an emacs-style command line editing inter- + eemmaaccss Use an emacs-style command line editing inter- face. This is enabled by default when the shell is interactive, unless the shell is started with - the ----nnooeeddiittiinngg option. This also affects the + the ----nnooeeddiittiinngg option. This also affects the editing interface used for rreeaadd --ee. eerrrreexxiitt Same as --ee. eerrrrttrraaccee @@ -5128,8 +5129,8 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS HHIISSTTOORRYY. This option is on by default in inter- active shells. iiggnnoorreeeeooff - The effect is as if the shell command - ``IGNOREEOF=10'' had been executed (see SShheellll + The effect is as if the shell command + ``IGNOREEOF=10'' had been executed (see SShheellll VVaarriiaabblleess above). kkeeyywwoorrdd Same as --kk. mmoonniittoorr Same as --mm. @@ -5144,363 +5145,363 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS pphhyyssiiccaall Same as --PP. ppiippeeffaaiill - If set, the return value of a pipeline is the - value of the last (rightmost) command to exit - with a non-zero status, or zero if all commands - in the pipeline exit successfully. This option + If set, the return value of a pipeline is the + value of the last (rightmost) command to exit + with a non-zero status, or zero if all commands + in the pipeline exit successfully. This option is disabled by default. - ppoossiixx Change the behavior of bbaasshh where the default - operation differs from the POSIX standard to - match the standard (_p_o_s_i_x _m_o_d_e). See SSEEEE AALLSSOO + ppoossiixx Change the behavior of bbaasshh where the default + operation differs from the POSIX standard to + match the standard (_p_o_s_i_x _m_o_d_e). See SSEEEE AALLSSOO below for a reference to a document that details how posix mode affects bash's behavior. pprriivviilleeggeedd Same as --pp. vveerrbboossee Same as --vv. - vvii Use a vi-style command line editing interface. + vvii Use a vi-style command line editing interface. This also affects the editing interface used for rreeaadd --ee. xxttrraaccee Same as --xx. If --oo is supplied with no _o_p_t_i_o_n_-_n_a_m_e, the values of the - current options are printed. If ++oo is supplied with no - _o_p_t_i_o_n_-_n_a_m_e, a series of sseett commands to recreate the - current option settings is displayed on the standard + current options are printed. If ++oo is supplied with no + _o_p_t_i_o_n_-_n_a_m_e, a series of sseett commands to recreate the + current option settings is displayed on the standard output. - --pp Turn on _p_r_i_v_i_l_e_g_e_d mode. In this mode, the $$EENNVV and - $$BBAASSHH__EENNVV files are not processed, shell functions are - not inherited from the environment, and the SSHHEELLLLOOPPTTSS, - BBAASSHHOOPPTTSS, CCDDPPAATTHH, and GGLLOOBBIIGGNNOORREE variables, if they + --pp Turn on _p_r_i_v_i_l_e_g_e_d mode. In this mode, the $$EENNVV and + $$BBAASSHH__EENNVV files are not processed, shell functions are + not inherited from the environment, and the SSHHEELLLLOOPPTTSS, + BBAASSHHOOPPTTSS, CCDDPPAATTHH, and GGLLOOBBIIGGNNOORREE variables, if they appear in the environment, are ignored. If the shell is - started with the effective user (group) id not equal to - the real user (group) id, and the --pp option is not sup- + started with the effective user (group) id not equal to + the real user (group) id, and the --pp option is not sup- plied, these actions are taken and the effective user id - is set to the real user id. If the --pp option is sup- - plied at startup, the effective user id is not reset. - Turning this option off causes the effective user and + is set to the real user id. If the --pp option is sup- + plied at startup, the effective user id is not reset. + Turning this option off causes the effective user and group ids to be set to the real user and group ids. --tt Exit after reading and executing one command. --uu Treat unset variables and parameters other than the spe- - cial parameters "@" and "*" as an error when performing - parameter expansion. If expansion is attempted on an - unset variable or parameter, the shell prints an error - message, and, if not interactive, exits with a non-zero + cial parameters "@" and "*" as an error when performing + parameter expansion. If expansion is attempted on an + unset variable or parameter, the shell prints an error + message, and, if not interactive, exits with a non-zero status. --vv Print shell input lines as they are read. - --xx After expanding each _s_i_m_p_l_e _c_o_m_m_a_n_d, ffoorr command, ccaassee + --xx After expanding each _s_i_m_p_l_e _c_o_m_m_a_n_d, ffoorr command, ccaassee command, sseelleecctt command, or arithmetic ffoorr command, dis- - play the expanded value of PPSS44, followed by the command + play the expanded value of PPSS44, followed by the command and its expanded arguments or associated word list. - --BB The shell performs brace expansion (see BBrraaccee EExxppaannssiioonn + --BB The shell performs brace expansion (see BBrraaccee EExxppaannssiioonn above). This is on by default. - --CC If set, bbaasshh does not overwrite an existing file with - the >>, >>&&, and <<>> redirection operators. This may be + --CC If set, bbaasshh does not overwrite an existing file with + the >>, >>&&, and <<>> redirection operators. This may be overridden when creating output files by using the redi- rection operator >>|| instead of >>. --EE If set, any trap on EERRRR is inherited by shell functions, - command substitutions, and commands executed in a sub- - shell environment. The EERRRR trap is normally not inher- + command substitutions, and commands executed in a sub- + shell environment. The EERRRR trap is normally not inher- ited in such cases. --HH Enable !! style history substitution. This option is on by default when the shell is interactive. - --PP If set, the shell does not resolve symbolic links when - executing commands such as ccdd that change the current + --PP If set, the shell does not resolve symbolic links when + executing commands such as ccdd that change the current working directory. It uses the physical directory structure instead. By default, bbaasshh follows the logical - chain of directories when performing commands which + chain of directories when performing commands which change the current directory. - --TT If set, any traps on DDEEBBUUGG and RREETTUURRNN are inherited by - shell functions, command substitutions, and commands - executed in a subshell environment. The DDEEBBUUGG and + --TT If set, any traps on DDEEBBUUGG and RREETTUURRNN are inherited by + shell functions, command substitutions, and commands + executed in a subshell environment. The DDEEBBUUGG and RREETTUURRNN traps are normally not inherited in such cases. - ---- If no arguments follow this option, then the positional + ---- If no arguments follow this option, then the positional parameters are unset. Otherwise, the positional parame- - ters are set to the _a_r_gs, even if some of them begin + ters are set to the _a_r_gs, even if some of them begin with a --. - -- Signal the end of options, cause all remaining _a_r_gs to + -- Signal the end of options, cause all remaining _a_r_gs to be assigned to the positional parameters. The --xx and --vv options are turned off. If there are no _a_r_gs, the posi- tional parameters remain unchanged. - The options are off by default unless otherwise noted. Using + - rather than - causes these options to be turned off. The - options can also be specified as arguments to an invocation of - the shell. The current set of options may be found in $$--. The + The options are off by default unless otherwise noted. Using + + rather than - causes these options to be turned off. The + options can also be specified as arguments to an invocation of + the shell. The current set of options may be found in $$--. The return status is always true unless an invalid option is encoun- tered. sshhiifftt [_n] - The positional parameters from _n+1 ... are renamed to $$11 ........ - Parameters represented by the numbers $$## down to $$##-_n+1 are - unset. _n must be a non-negative number less than or equal to - $$##. If _n is 0, no parameters are changed. If _n is not given, - it is assumed to be 1. If _n is greater than $$##, the positional - parameters are not changed. The return status is greater than + The positional parameters from _n+1 ... are renamed to $$11 ........ + Parameters represented by the numbers $$## down to $$##-_n+1 are + unset. _n must be a non-negative number less than or equal to + $$##. If _n is 0, no parameters are changed. If _n is not given, + it is assumed to be 1. If _n is greater than $$##, the positional + parameters are not changed. The return status is greater than zero if _n is greater than $$## or less than zero; otherwise 0. sshhoopptt [--ppqqssuu] [--oo] [_o_p_t_n_a_m_e ...] - Toggle the values of settings controlling optional shell behav- - ior. The settings can be either those listed below, or, if the + Toggle the values of settings controlling optional shell behav- + ior. The settings can be either those listed below, or, if the --oo option is used, those available with the --oo option to the sseett builtin command. With no options, or with the --pp option, a list - of all settable options is displayed, with an indication of - whether or not each is set. The --pp option causes output to be - displayed in a form that may be reused as input. Other options + of all settable options is displayed, with an indication of + whether or not each is set. The --pp option causes output to be + displayed in a form that may be reused as input. Other options have the following meanings: --ss Enable (set) each _o_p_t_n_a_m_e. --uu Disable (unset) each _o_p_t_n_a_m_e. - --qq Suppresses normal output (quiet mode); the return status + --qq Suppresses normal output (quiet mode); the return status indicates whether the _o_p_t_n_a_m_e is set or unset. If multi- - ple _o_p_t_n_a_m_e arguments are given with --qq, the return sta- - tus is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero other- + ple _o_p_t_n_a_m_e arguments are given with --qq, the return sta- + tus is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero other- wise. - --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for + --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for the --oo option to the sseett builtin. - If either --ss or --uu is used with no _o_p_t_n_a_m_e arguments, sshhoopptt - shows only those options which are set or unset, respectively. - Unless otherwise noted, the sshhoopptt options are disabled (unset) + If either --ss or --uu is used with no _o_p_t_n_a_m_e arguments, sshhoopptt + shows only those options which are set or unset, respectively. + Unless otherwise noted, the sshhoopptt options are disabled (unset) by default. - The return status when listing options is zero if all _o_p_t_n_a_m_e_s - are enabled, non-zero otherwise. When setting or unsetting - options, the return status is zero unless an _o_p_t_n_a_m_e is not a + The return status when listing options is zero if all _o_p_t_n_a_m_e_s + are enabled, non-zero otherwise. When setting or unsetting + options, the return status is zero unless an _o_p_t_n_a_m_e is not a valid shell option. The list of sshhoopptt options is: - aauuttooccdd If set, a command name that is the name of a directory - is executed as if it were the argument to the ccdd com- + aauuttooccdd If set, a command name that is the name of a directory + is executed as if it were the argument to the ccdd com- mand. This option is only used by interactive shells. ccddaabbllee__vvaarrss - If set, an argument to the ccdd builtin command that is - not a directory is assumed to be the name of a variable + If set, an argument to the ccdd builtin command that is + not a directory is assumed to be the name of a variable whose value is the directory to change to. ccddssppeellll If set, minor errors in the spelling of a directory com- - ponent in a ccdd command will be corrected. The errors + ponent in a ccdd command will be corrected. The errors checked for are transposed characters, a missing charac- - ter, and one character too many. If a correction is - found, the corrected filename is printed, and the com- - mand proceeds. This option is only used by interactive + ter, and one character too many. If a correction is + found, the corrected filename is printed, and the com- + mand proceeds. This option is only used by interactive shells. cchheecckkhhaasshh If set, bbaasshh checks that a command found in the hash ta- - ble exists before trying to execute it. If a hashed - command no longer exists, a normal path search is per- + ble exists before trying to execute it. If a hashed + command no longer exists, a normal path search is per- formed. cchheecckkjjoobbss If set, bbaasshh lists the status of any stopped and running - jobs before exiting an interactive shell. If any jobs + jobs before exiting an interactive shell. If any jobs are running, this causes the exit to be deferred until a - second exit is attempted without an intervening command - (see JJOOBB CCOONNTTRROOLL above). The shell always postpones + second exit is attempted without an intervening command + (see JJOOBB CCOONNTTRROOLL above). The shell always postpones exiting if any jobs are stopped. cchheecckkwwiinnssiizzee - If set, bbaasshh checks the window size after each command - and, if necessary, updates the values of LLIINNEESS and CCOOLL-- + If set, bbaasshh checks the window size after each command + and, if necessary, updates the values of LLIINNEESS and CCOOLL-- UUMMNNSS. - ccmmddhhiisstt If set, bbaasshh attempts to save all lines of a multiple- - line command in the same history entry. This allows + ccmmddhhiisstt If set, bbaasshh attempts to save all lines of a multiple- + line command in the same history entry. This allows easy re-editing of multi-line commands. ccoommppaatt3311 If set, bbaasshh changes its behavior to that of version 3.1 - with respect to quoted arguments to the [[[[ conditional + with respect to quoted arguments to the [[[[ conditional command's ==~~ operator and locale-specific string compar- - ison when using the [[[[ conditional command's << and >> - operators. Bash versions prior to bash-4.1 use ASCII + ison when using the [[[[ conditional command's << and >> + operators. Bash versions prior to bash-4.1 use ASCII collation and _s_t_r_c_m_p(3); bash-4.1 and later use the cur- rent locale's collation sequence and _s_t_r_c_o_l_l(3). ccoommppaatt3322 If set, bbaasshh changes its behavior to that of version 3.2 - with respect to locale-specific string comparison when - using the [[[[ conditional command's << and >> operators - (see previous item) and the effect of interrupting a - command list. Bash versions 3.2 and earlier continue - with the next command in the list after one terminates + with respect to locale-specific string comparison when + using the [[[[ conditional command's << and >> operators + (see previous item) and the effect of interrupting a + command list. Bash versions 3.2 and earlier continue + with the next command in the list after one terminates due to an interrupt. ccoommppaatt4400 If set, bbaasshh changes its behavior to that of version 4.0 - with respect to locale-specific string comparison when - using the [[[[ conditional command's << and >> operators - (see description of ccoommppaatt3311) and the effect of inter- - rupting a command list. Bash versions 4.0 and later - interrupt the list as if the shell received the inter- - rupt; previous versions continue with the next command + with respect to locale-specific string comparison when + using the [[[[ conditional command's << and >> operators + (see description of ccoommppaatt3311) and the effect of inter- + rupting a command list. Bash versions 4.0 and later + interrupt the list as if the shell received the inter- + rupt; previous versions continue with the next command in the list. ccoommppaatt4411 - If set, bbaasshh, when in _p_o_s_i_x mode, treats a single quote - in a double-quoted parameter expansion as a special - character. The single quotes must match (an even num- - ber) and the characters between the single quotes are - considered quoted. This is the behavior of posix mode - through version 4.1. The default bash behavior remains + If set, bbaasshh, when in _p_o_s_i_x mode, treats a single quote + in a double-quoted parameter expansion as a special + character. The single quotes must match (an even num- + ber) and the characters between the single quotes are + considered quoted. This is the behavior of posix mode + through version 4.1. The default bash behavior remains as in previous versions. ccoommppaatt4422 - If set, bbaasshh does not process the replacement string in - the pattern substitution word expansion using quote + If set, bbaasshh does not process the replacement string in + the pattern substitution word expansion using quote removal. ccoommppaatt4433 - If set, bbaasshh does not print a warning message if an - attempt is made to use a quoted compound array assign- - ment as an argument to ddeeccllaarree, makes word expansion - errors non-fatal errors that cause the current command - to fail (the default behavior is to make them fatal + If set, bbaasshh does not print a warning message if an + attempt is made to use a quoted compound array assign- + ment as an argument to ddeeccllaarree, makes word expansion + errors non-fatal errors that cause the current command + to fail (the default behavior is to make them fatal errors that cause the shell to exit), and does not reset - the loop state when a shell function is executed (this - allows bbrreeaakk or ccoonnttiinnuuee in a shell function to affect + the loop state when a shell function is executed (this + allows bbrreeaakk or ccoonnttiinnuuee in a shell function to affect loops in the caller's context). ccoommpplleettee__ffuullllqquuoottee - If set, bbaasshh quotes all shell metacharacters in file- - names and directory names when performing completion. + If set, bbaasshh quotes all shell metacharacters in file- + names and directory names when performing completion. If not set, bbaasshh removes metacharacters such as the dol- - lar sign from the set of characters that will be quoted - in completed filenames when these metacharacters appear - in shell variable references in words to be completed. - This means that dollar signs in variable names that - expand to directories will not be quoted; however, any - dollar signs appearing in filenames will not be quoted, - either. This is active only when bash is using back- - slashes to quote completed filenames. This variable is - set by default, which is the default bash behavior in + lar sign from the set of characters that will be quoted + in completed filenames when these metacharacters appear + in shell variable references in words to be completed. + This means that dollar signs in variable names that + expand to directories will not be quoted; however, any + dollar signs appearing in filenames will not be quoted, + either. This is active only when bash is using back- + slashes to quote completed filenames. This variable is + set by default, which is the default bash behavior in versions through 4.2. ddiirreexxppaanndd - If set, bbaasshh replaces directory names with the results - of word expansion when performing filename completion. - This changes the contents of the readline editing buf- - fer. If not set, bbaasshh attempts to preserve what the + If set, bbaasshh replaces directory names with the results + of word expansion when performing filename completion. + This changes the contents of the readline editing buf- + fer. If not set, bbaasshh attempts to preserve what the user typed. ddiirrssppeellll - If set, bbaasshh attempts spelling correction on directory - names during word completion if the directory name ini- + If set, bbaasshh attempts spelling correction on directory + names during word completion if the directory name ini- tially supplied does not exist. - ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in + ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in the results of pathname expansion. eexxeeccffaaiill If set, a non-interactive shell will not exit if it can- - not execute the file specified as an argument to the - eexxeecc builtin command. An interactive shell does not + not execute the file specified as an argument to the + eexxeecc builtin command. An interactive shell does not exit if eexxeecc fails. eexxppaanndd__aalliiaasseess - If set, aliases are expanded as described above under + If set, aliases are expanded as described above under AALLIIAASSEESS. This option is enabled by default for interac- tive shells. eexxttddeebbuugg - If set, behavior intended for use by debuggers is + If set, behavior intended for use by debuggers is enabled: 11.. The --FF option to the ddeeccllaarree builtin displays the source file name and line number corresponding to each function name supplied as an argument. - 22.. If the command run by the DDEEBBUUGG trap returns a - non-zero value, the next command is skipped and + 22.. If the command run by the DDEEBBUUGG trap returns a + non-zero value, the next command is skipped and not executed. - 33.. If the command run by the DDEEBBUUGG trap returns a - value of 2, and the shell is executing in a sub- - routine (a shell function or a shell script exe- - cuted by the .. or ssoouurrccee builtins), the shell + 33.. If the command run by the DDEEBBUUGG trap returns a + value of 2, and the shell is executing in a sub- + routine (a shell function or a shell script exe- + cuted by the .. or ssoouurrccee builtins), the shell simulates a call to rreettuurrnn. - 44.. BBAASSHH__AARRGGCC and BBAASSHH__AARRGGVV are updated as described + 44.. BBAASSHH__AARRGGCC and BBAASSHH__AARRGGVV are updated as described in their descriptions above. - 55.. Function tracing is enabled: command substitu- + 55.. Function tracing is enabled: command substitu- tion, shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the DDEEBBUUGG and RREETTUURRNN traps. - 66.. Error tracing is enabled: command substitution, - shell functions, and subshells invoked with (( + 66.. Error tracing is enabled: command substitution, + shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the EERRRR trap. eexxttgglloobb If set, the extended pattern matching features described above under PPaatthhnnaammee EExxppaannssiioonn are enabled. eexxttqquuoottee - If set, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quoting is performed - within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double + If set, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quoting is performed + within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double quotes. This option is enabled by default. ffaaiillgglloobb - If set, patterns which fail to match filenames during + If set, patterns which fail to match filenames during pathname expansion result in an expansion error. ffoorrccee__ffiiggnnoorree - If set, the suffixes specified by the FFIIGGNNOORREE shell - variable cause words to be ignored when performing word + If set, the suffixes specified by the FFIIGGNNOORREE shell + variable cause words to be ignored when performing word completion even if the ignored words are the only possi- ble completions. See SSHHEELLLL VVAARRIIAABBLLEESS above for a - description of FFIIGGNNOORREE. This option is enabled by + description of FFIIGGNNOORREE. This option is enabled by default. gglloobbaasscciiiirraannggeess - If set, range expressions used in pattern matching - bracket expressions (see PPaatttteerrnn MMaattcchhiinngg above) behave - as if in the traditional C locale when performing com- + If set, range expressions used in pattern matching + bracket expressions (see PPaatttteerrnn MMaattcchhiinngg above) behave + as if in the traditional C locale when performing com- parisons. That is, the current locale's collating - sequence is not taken into account, so bb will not col- - late between AA and BB, and upper-case and lower-case + sequence is not taken into account, so bb will not col- + late between AA and BB, and upper-case and lower-case ASCII characters will collate together. gglloobbssttaarr If set, the pattern **** used in a pathname expansion con- - text will match all files and zero or more directories - and subdirectories. If the pattern is followed by a //, + text will match all files and zero or more directories + and subdirectories. If the pattern is followed by a //, only directories and subdirectories match. ggnnuu__eerrrrffmmtt If set, shell error messages are written in the standard GNU error message format. hhiissttaappppeenndd - If set, the history list is appended to the file named - by the value of the HHIISSTTFFIILLEE variable when the shell + If set, the history list is appended to the file named + by the value of the HHIISSTTFFIILLEE variable when the shell exits, rather than overwriting the file. hhiissttrreeeeddiitt - If set, and rreeaaddlliinnee is being used, a user is given the + If set, and rreeaaddlliinnee is being used, a user is given the opportunity to re-edit a failed history substitution. hhiissttvveerriiffyy - If set, and rreeaaddlliinnee is being used, the results of his- - tory substitution are not immediately passed to the - shell parser. Instead, the resulting line is loaded + If set, and rreeaaddlliinnee is being used, the results of his- + tory substitution are not immediately passed to the + shell parser. Instead, the resulting line is loaded into the rreeaaddlliinnee editing buffer, allowing further modi- fication. hhoossttccoommpplleettee If set, and rreeaaddlliinnee is being used, bbaasshh will attempt to - perform hostname completion when a word containing a @@ - is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE + perform hostname completion when a word containing a @@ + is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE above). This is enabled by default. hhuuppoonneexxiitt If set, bbaasshh will send SSIIGGHHUUPP to all jobs when an inter- active login shell exits. iinnhheerriitt__eerrrreexxiitt - If set, command substitution inherits the value of the - eerrrreexxiitt option, instead of unsetting it in the subshell - environment. This option is enabled when _p_o_s_i_x _m_o_d_e is + If set, command substitution inherits the value of the + eerrrreexxiitt option, instead of unsetting it in the subshell + environment. This option is enabled when _p_o_s_i_x _m_o_d_e is enabled. iinntteerraaccttiivvee__ccoommmmeennttss If set, allow a word beginning with ## to cause that word - and all remaining characters on that line to be ignored - in an interactive shell (see CCOOMMMMEENNTTSS above). This + and all remaining characters on that line to be ignored + in an interactive shell (see CCOOMMMMEENNTTSS above). This option is enabled by default. llaassttppiippee - If set, and job control is not active, the shell runs + If set, and job control is not active, the shell runs the last command of a pipeline not executed in the back- ground in the current shell environment. - lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line + lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line commands are saved to the history with embedded newlines rather than using semicolon separators where possible. llooggiinn__sshheellll - The shell sets this option if it is started as a login - shell (see IINNVVOOCCAATTIIOONN above). The value may not be + The shell sets this option if it is started as a login + shell (see IINNVVOOCCAATTIIOONN above). The value may not be changed. mmaaiillwwaarrnn - If set, and a file that bbaasshh is checking for mail has - been accessed since the last time it was checked, the - message ``The mail in _m_a_i_l_f_i_l_e has been read'' is dis- + If set, and a file that bbaasshh is checking for mail has + been accessed since the last time it was checked, the + message ``The mail in _m_a_i_l_f_i_l_e has been read'' is dis- played. nnoo__eemmppttyy__ccmmdd__ccoommpplleettiioonn - If set, and rreeaaddlliinnee is being used, bbaasshh will not + If set, and rreeaaddlliinnee is being used, bbaasshh will not attempt to search the PPAATTHH for possible completions when completion is attempted on an empty line. nnooccaasseegglloobb - If set, bbaasshh matches filenames in a case-insensitive + If set, bbaasshh matches filenames in a case-insensitive fashion when performing pathname expansion (see PPaatthhnnaammee EExxppaannssiioonn above). nnooccaasseemmaattcchh - If set, bbaasshh matches patterns in a case-insensitive + If set, bbaasshh matches patterns in a case-insensitive fashion when performing matching while executing ccaassee or [[[[ conditional commands, when performing pattern substi- - tution word expansions, or when filtering possible com- + tution word expansions, or when filtering possible com- pletions as part of programmable completion. nnuullllgglloobb - If set, bbaasshh allows patterns which match no files (see - PPaatthhnnaammee EExxppaannssiioonn above) to expand to a null string, + If set, bbaasshh allows patterns which match no files (see + PPaatthhnnaammee EExxppaannssiioonn above) to expand to a null string, rather than themselves. pprrooggccoommpp If set, the programmable completion facilities (see PPrroo-- @@ -5508,50 +5509,50 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS enabled by default. pprroommppttvvaarrss If set, prompt strings undergo parameter expansion, com- - mand substitution, arithmetic expansion, and quote - removal after being expanded as described in PPRROOMMPPTTIINNGG + mand substitution, arithmetic expansion, and quote + removal after being expanded as described in PPRROOMMPPTTIINNGG above. This option is enabled by default. rreessttrriicctteedd__sshheellll - The shell sets this option if it is started in + The shell sets this option if it is started in restricted mode (see RREESSTTRRIICCTTEEDD SSHHEELLLL below). The value - may not be changed. This is not reset when the startup - files are executed, allowing the startup files to dis- + may not be changed. This is not reset when the startup + files are executed, allowing the startup files to dis- cover whether or not a shell is restricted. sshhiifftt__vveerrbboossee - If set, the sshhiifftt builtin prints an error message when + If set, the sshhiifftt builtin prints an error message when the shift count exceeds the number of positional parame- ters. ssoouurrcceeppaatthh If set, the ssoouurrccee (..) builtin uses the value of PPAATTHH to - find the directory containing the file supplied as an + find the directory containing the file supplied as an argument. This option is enabled by default. xxppgg__eecchhoo - If set, the eecchhoo builtin expands backslash-escape + If set, the eecchhoo builtin expands backslash-escape sequences by default. ssuussppeenndd [--ff] - Suspend the execution of this shell until it receives a SSIIGGCCOONNTT + Suspend the execution of this shell until it receives a SSIIGGCCOONNTT signal. A login shell cannot be suspended; the --ff option can be used to override this and force the suspension. The return sta- - tus is 0 unless the shell is a login shell and --ff is not sup- + tus is 0 unless the shell is a login shell and --ff is not sup- plied, or if job control is not enabled. tteesstt _e_x_p_r [[ _e_x_p_r ]] Return a status of 0 (true) or 1 (false) depending on the evalu- ation of the conditional expression _e_x_p_r. Each operator and op- - erand must be a separate argument. Expressions are composed of - the primaries described above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS. - tteesstt does not accept any options, nor does it accept and ignore + erand must be a separate argument. Expressions are composed of + the primaries described above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS. + tteesstt does not accept any options, nor does it accept and ignore an argument of ---- as signifying the end of options. - Expressions may be combined using the following operators, + Expressions may be combined using the following operators, listed in decreasing order of precedence. The evaluation - depends on the number of arguments; see below. Operator prece- + depends on the number of arguments; see below. Operator prece- dence is used when there are five or more arguments. !! _e_x_p_r True if _e_x_p_r is false. (( _e_x_p_r )) - Returns the value of _e_x_p_r. This may be used to override + Returns the value of _e_x_p_r. This may be used to override the normal precedence of operators. _e_x_p_r_1 -aa _e_x_p_r_2 True if both _e_x_p_r_1 and _e_x_p_r_2 are true. @@ -5568,120 +5569,120 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS null. 2 arguments If the first argument is !!, the expression is true if and - only if the second argument is null. If the first argu- - ment is one of the unary conditional operators listed - above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the expression is + only if the second argument is null. If the first argu- + ment is one of the unary conditional operators listed + above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the expression is true if the unary test is true. If the first argument is not a valid unary conditional operator, the expression is false. 3 arguments The following conditions are applied in the order listed. - If the second argument is one of the binary conditional + If the second argument is one of the binary conditional operators listed above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the result of the expression is the result of the binary test - using the first and third arguments as operands. The --aa - and --oo operators are considered binary operators when - there are three arguments. If the first argument is !!, - the value is the negation of the two-argument test using + using the first and third arguments as operands. The --aa + and --oo operators are considered binary operators when + there are three arguments. If the first argument is !!, + the value is the negation of the two-argument test using the second and third arguments. If the first argument is exactly (( and the third argument is exactly )), the result - is the one-argument test of the second argument. Other- + is the one-argument test of the second argument. Other- wise, the expression is false. 4 arguments If the first argument is !!, the result is the negation of - the three-argument expression composed of the remaining + the three-argument expression composed of the remaining arguments. Otherwise, the expression is parsed and eval- - uated according to precedence using the rules listed + uated according to precedence using the rules listed above. 5 or more arguments - The expression is parsed and evaluated according to + The expression is parsed and evaluated according to precedence using the rules listed above. - When used with tteesstt or [[, the << and >> operators sort lexico- + When used with tteesstt or [[, the << and >> operators sort lexico- graphically using ASCII ordering. - ttiimmeess Print the accumulated user and system times for the shell and + ttiimmeess Print the accumulated user and system times for the shell and for processes run from the shell. The return status is 0. ttrraapp [--llpp] [[_a_r_g] _s_i_g_s_p_e_c ...] - The command _a_r_g is to be read and executed when the shell - receives signal(s) _s_i_g_s_p_e_c. If _a_r_g is absent (and there is a - single _s_i_g_s_p_e_c) or --, each specified signal is reset to its - original disposition (the value it had upon entrance to the - shell). If _a_r_g is the null string the signal specified by each - _s_i_g_s_p_e_c is ignored by the shell and by the commands it invokes. - If _a_r_g is not present and --pp has been supplied, then the trap - commands associated with each _s_i_g_s_p_e_c are displayed. If no - arguments are supplied or if only --pp is given, ttrraapp prints the - list of commands associated with each signal. The --ll option - causes the shell to print a list of signal names and their cor- - responding numbers. Each _s_i_g_s_p_e_c is either a signal name - defined in <_s_i_g_n_a_l_._h>, or a signal number. Signal names are + The command _a_r_g is to be read and executed when the shell + receives signal(s) _s_i_g_s_p_e_c. If _a_r_g is absent (and there is a + single _s_i_g_s_p_e_c) or --, each specified signal is reset to its + original disposition (the value it had upon entrance to the + shell). If _a_r_g is the null string the signal specified by each + _s_i_g_s_p_e_c is ignored by the shell and by the commands it invokes. + If _a_r_g is not present and --pp has been supplied, then the trap + commands associated with each _s_i_g_s_p_e_c are displayed. If no + arguments are supplied or if only --pp is given, ttrraapp prints the + list of commands associated with each signal. The --ll option + causes the shell to print a list of signal names and their cor- + responding numbers. Each _s_i_g_s_p_e_c is either a signal name + defined in <_s_i_g_n_a_l_._h>, or a signal number. Signal names are case insensitive and the SSIIGG prefix is optional. - If a _s_i_g_s_p_e_c is EEXXIITT (0) the command _a_r_g is executed on exit - from the shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, the command _a_r_g is exe- - cuted before every _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, - _s_e_l_e_c_t command, every arithmetic _f_o_r command, and before the - first command executes in a shell function (see SSHHEELLLL GGRRAAMMMMAARR - above). Refer to the description of the eexxttddeebbuugg option to the + If a _s_i_g_s_p_e_c is EEXXIITT (0) the command _a_r_g is executed on exit + from the shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, the command _a_r_g is exe- + cuted before every _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, + _s_e_l_e_c_t command, every arithmetic _f_o_r command, and before the + first command executes in a shell function (see SSHHEELLLL GGRRAAMMMMAARR + above). Refer to the description of the eexxttddeebbuugg option to the sshhoopptt builtin for details of its effect on the DDEEBBUUGG trap. If a _s_i_g_s_p_e_c is RREETTUURRNN, the command _a_r_g is executed each time a shell function or a script executed with the .. or ssoouurrccee builtins fin- ishes executing. - If a _s_i_g_s_p_e_c is EERRRR, the command _a_r_g is executed whenever a + If a _s_i_g_s_p_e_c is EERRRR, the command _a_r_g is executed whenever a pipeline (which may consist of a single simple command), a list, or a compound command returns a non-zero exit status, subject to - the following conditions. The EERRRR trap is not executed if the + the following conditions. The EERRRR trap is not executed if the failed command is part of the command list immediately following - a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, + a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, part of a command executed in a &&&& or |||| list except the command - following the final &&&& or ||||, any command in a pipeline but the - last, or if the command's return value is being inverted using - !!. These are the same conditions obeyed by the eerrrreexxiitt (--ee) + following the final &&&& or ||||, any command in a pipeline but the + last, or if the command's return value is being inverted using + !!. These are the same conditions obeyed by the eerrrreexxiitt (--ee) option. - Signals ignored upon entry to the shell cannot be trapped or - reset. Trapped signals that are not being ignored are reset to + Signals ignored upon entry to the shell cannot be trapped or + reset. Trapped signals that are not being ignored are reset to their original values in a subshell or subshell environment when - one is created. The return status is false if any _s_i_g_s_p_e_c is + one is created. The return status is false if any _s_i_g_s_p_e_c is invalid; otherwise ttrraapp returns true. ttyyppee [--aaffttppPP] _n_a_m_e [_n_a_m_e ...] - With no options, indicate how each _n_a_m_e would be interpreted if + With no options, indicate how each _n_a_m_e would be interpreted if used as a command name. If the --tt option is used, ttyyppee prints a - string which is one of _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or - _f_i_l_e if _n_a_m_e is an alias, shell reserved word, function, - builtin, or disk file, respectively. If the _n_a_m_e is not found, - then nothing is printed, and an exit status of false is - returned. If the --pp option is used, ttyyppee either returns the + string which is one of _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or + _f_i_l_e if _n_a_m_e is an alias, shell reserved word, function, + builtin, or disk file, respectively. If the _n_a_m_e is not found, + then nothing is printed, and an exit status of false is + returned. If the --pp option is used, ttyyppee either returns the name of the disk file that would be executed if _n_a_m_e were speci- fied as a command name, or nothing if ``type -t name'' would not - return _f_i_l_e. The --PP option forces a PPAATTHH search for each _n_a_m_e, + return _f_i_l_e. The --PP option forces a PPAATTHH search for each _n_a_m_e, even if ``type -t name'' would not return _f_i_l_e. If a command is hashed, --pp and --PP print the hashed value, which is not necessar- - ily the file that appears first in PPAATTHH. If the --aa option is - used, ttyyppee prints all of the places that contain an executable + ily the file that appears first in PPAATTHH. If the --aa option is + used, ttyyppee prints all of the places that contain an executable named _n_a_m_e. This includes aliases and functions, if and only if the --pp option is not also used. The table of hashed commands is - not consulted when using --aa. The --ff option suppresses shell + not consulted when using --aa. The --ff option suppresses shell function lookup, as with the ccoommmmaanndd builtin. ttyyppee returns true if all of the arguments are found, false if any are not found. uulliimmiitt [--HHSSaabbccddeeffiikkllmmnnppqqrrssttuuvvxxPPTT [_l_i_m_i_t]] - Provides control over the resources available to the shell and - to processes started by it, on systems that allow such control. + Provides control over the resources available to the shell and + to processes started by it, on systems that allow such control. The --HH and --SS options specify that the hard or soft limit is set - for the given resource. A hard limit cannot be increased by a - non-root user once it is set; a soft limit may be increased up - to the value of the hard limit. If neither --HH nor --SS is speci- + for the given resource. A hard limit cannot be increased by a + non-root user once it is set; a soft limit may be increased up + to the value of the hard limit. If neither --HH nor --SS is speci- fied, both the soft and hard limits are set. The value of _l_i_m_i_t can be a number in the unit specified for the resource or one of the special values hhaarrdd, ssoofftt, or uunnlliimmiitteedd, which stand for the - current hard limit, the current soft limit, and no limit, - respectively. If _l_i_m_i_t is omitted, the current value of the - soft limit of the resource is printed, unless the --HH option is + current hard limit, the current soft limit, and no limit, + respectively. If _l_i_m_i_t is omitted, the current value of the + soft limit of the resource is printed, unless the --HH option is given. When more than one resource is specified, the limit name and unit are printed before the value. Other options are inter- preted as follows: @@ -5690,12 +5691,12 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS --cc The maximum size of core files created --dd The maximum size of a process's data segment --ee The maximum scheduling priority ("nice") - --ff The maximum size of files written by the shell and its + --ff The maximum size of files written by the shell and its children --ii The maximum number of pending signals --kk The maximum number of kqueues that may be allocated --ll The maximum size that may be locked into memory - --mm The maximum resident set size (many systems do not honor + --mm The maximum resident set size (many systems do not honor this limit) --nn The maximum number of open file descriptors (most systems do not allow this value to be set) @@ -5704,53 +5705,53 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS --rr The maximum real-time scheduling priority --ss The maximum stack size --tt The maximum amount of cpu time in seconds - --uu The maximum number of processes available to a single + --uu The maximum number of processes available to a single user - --vv The maximum amount of virtual memory available to the + --vv The maximum amount of virtual memory available to the shell and, on some systems, to its children --xx The maximum number of file locks --PP The maximum number of pseudoterminals --TT The maximum number of threads - If _l_i_m_i_t is given, and the --aa option is not used, _l_i_m_i_t is the - new value of the specified resource. If no option is given, - then --ff is assumed. Values are in 1024-byte increments, except - for --tt, which is in seconds; --pp, which is in units of 512-byte - blocks; --PP, --TT, --bb, --kk, --nn, and --uu, which are unscaled values; + If _l_i_m_i_t is given, and the --aa option is not used, _l_i_m_i_t is the + new value of the specified resource. If no option is given, + then --ff is assumed. Values are in 1024-byte increments, except + for --tt, which is in seconds; --pp, which is in units of 512-byte + blocks; --PP, --TT, --bb, --kk, --nn, and --uu, which are unscaled values; and, when in Posix mode, --cc and --ff, which are in 512-byte incre- ments. The return status is 0 unless an invalid option or argu- ment is supplied, or an error occurs while setting a new limit. uummaasskk [--pp] [--SS] [_m_o_d_e] The user file-creation mask is set to _m_o_d_e. If _m_o_d_e begins with - a digit, it is interpreted as an octal number; otherwise it is - interpreted as a symbolic mode mask similar to that accepted by - _c_h_m_o_d(1). If _m_o_d_e is omitted, the current value of the mask is - printed. The --SS option causes the mask to be printed in sym- - bolic form; the default output is an octal number. If the --pp + a digit, it is interpreted as an octal number; otherwise it is + interpreted as a symbolic mode mask similar to that accepted by + _c_h_m_o_d(1). If _m_o_d_e is omitted, the current value of the mask is + printed. The --SS option causes the mask to be printed in sym- + bolic form; the default output is an octal number. If the --pp option is supplied, and _m_o_d_e is omitted, the output is in a form that may be reused as input. The return status is 0 if the mode - was successfully changed or if no _m_o_d_e argument was supplied, + was successfully changed or if no _m_o_d_e argument was supplied, and false otherwise. uunnaalliiaass [-aa] [_n_a_m_e ...] - Remove each _n_a_m_e from the list of defined aliases. If --aa is - supplied, all alias definitions are removed. The return value + Remove each _n_a_m_e from the list of defined aliases. If --aa is + supplied, all alias definitions are removed. The return value is true unless a supplied _n_a_m_e is not a defined alias. uunnsseett [-ffvv] [-nn] [_n_a_m_e ...] - For each _n_a_m_e, remove the corresponding variable or function. + For each _n_a_m_e, remove the corresponding variable or function. If the --vv option is given, each _n_a_m_e refers to a shell variable, - and that variable is removed. Read-only variables may not be - unset. If --ff is specified, each _n_a_m_e refers to a shell func- - tion, and the function definition is removed. If the --nn option - is supplied, and _n_a_m_e is a variable with the _n_a_m_e_r_e_f attribute, - _n_a_m_e will be unset rather than the variable it references. --nn - has no effect if the --ff option is supplied. If no options are - supplied, each _n_a_m_e refers to a variable; if there is no vari- - able by that name, any function with that name is unset. Each - unset variable or function is removed from the environment - passed to subsequent commands. If any of CCOOMMPP__WWOORRDDBBRREEAAKKSS, RRAANN-- + and that variable is removed. Read-only variables may not be + unset. If --ff is specified, each _n_a_m_e refers to a shell func- + tion, and the function definition is removed. If the --nn option + is supplied, and _n_a_m_e is a variable with the _n_a_m_e_r_e_f attribute, + _n_a_m_e will be unset rather than the variable it references. --nn + has no effect if the --ff option is supplied. If no options are + supplied, each _n_a_m_e refers to a variable; if there is no vari- + able by that name, any function with that name is unset. Each + unset variable or function is removed from the environment + passed to subsequent commands. If any of CCOOMMPP__WWOORRDDBBRREEAAKKSS, RRAANN-- DDOOMM, SSEECCOONNDDSS, LLIINNEENNOO, HHIISSTTCCMMDD, FFUUNNCCNNAAMMEE, GGRROOUUPPSS, or DDIIRRSSTTAACCKK are unset, they lose their special properties, even if they are sub- sequently reset. The exit status is true unless a _n_a_m_e is read- @@ -5759,19 +5760,19 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS wwaaiitt [--nn] [_n _._._.] Wait for each specified child process and return its termination status. Each _n may be a process ID or a job specification; if a - job spec is given, all processes in that job's pipeline are - waited for. If _n is not given, all currently active child pro- + job spec is given, all processes in that job's pipeline are + waited for. If _n is not given, all currently active child pro- cesses are waited for, and the return status is zero. If the --nn - option is supplied, wwaaiitt waits for any job to terminate and - returns its exit status. If _n specifies a non-existent process - or job, the return status is 127. Otherwise, the return status + option is supplied, wwaaiitt waits for any job to terminate and + returns its exit status. If _n specifies a non-existent process + or job, the return status is 127. Otherwise, the return status is the exit status of the last process or job waited for. RREESSTTRRIICCTTEEDD SSHHEELLLL If bbaasshh is started with the name rrbbaasshh, or the --rr option is supplied at - invocation, the shell becomes restricted. A restricted shell is used - to set up an environment more controlled than the standard shell. It - behaves identically to bbaasshh with the exception that the following are + invocation, the shell becomes restricted. A restricted shell is used + to set up an environment more controlled than the standard shell. It + behaves identically to bbaasshh with the exception that the following are disallowed or not performed: +o changing directories with ccdd @@ -5780,16 +5781,16 @@ RREESSTTRRIICCTTEEDD SSHHEELLLL +o specifying command names containing // - +o specifying a filename containing a // as an argument to the .. + +o specifying a filename containing a // as an argument to the .. builtin command - +o specifying a filename containing a slash as an argument to the + +o specifying a filename containing a slash as an argument to the --pp option to the hhaasshh builtin command - +o importing function definitions from the shell environment at + +o importing function definitions from the shell environment at startup - +o parsing the value of SSHHEELLLLOOPPTTSS from the shell environment at + +o parsing the value of SSHHEELLLLOOPPTTSS from the shell environment at startup +o redirecting output using the >, >|, <>, >&, &>, and >> redirect- @@ -5798,10 +5799,10 @@ RREESSTTRRIICCTTEEDD SSHHEELLLL +o using the eexxeecc builtin command to replace the shell with another command - +o adding or deleting builtin commands with the --ff and --dd options + +o adding or deleting builtin commands with the --ff and --dd options to the eennaabbllee builtin command - +o using the eennaabbllee builtin command to enable disabled shell + +o using the eennaabbllee builtin command to enable disabled shell builtins +o specifying the --pp option to the ccoommmmaanndd builtin command @@ -5811,14 +5812,14 @@ RREESSTTRRIICCTTEEDD SSHHEELLLL These restrictions are enforced after any startup files are read. When a command that is found to be a shell script is executed (see CCOOMM-- - MMAANNDD EEXXEECCUUTTIIOONN above), rrbbaasshh turns off any restrictions in the shell + MMAANNDD EEXXEECCUUTTIIOONN above), rrbbaasshh turns off any restrictions in the shell spawned to execute the script. SSEEEE AALLSSOO _B_a_s_h _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l, Brian Fox and Chet Ramey _T_h_e _G_n_u _R_e_a_d_l_i_n_e _L_i_b_r_a_r_y, Brian Fox and Chet Ramey _T_h_e _G_n_u _H_i_s_t_o_r_y _L_i_b_r_a_r_y, Brian Fox and Chet Ramey - _P_o_r_t_a_b_l_e _O_p_e_r_a_t_i_n_g _S_y_s_t_e_m _I_n_t_e_r_f_a_c_e _(_P_O_S_I_X_) _P_a_r_t _2_: _S_h_e_l_l _a_n_d _U_t_i_l_i_- + _P_o_r_t_a_b_l_e _O_p_e_r_a_t_i_n_g _S_y_s_t_e_m _I_n_t_e_r_f_a_c_e _(_P_O_S_I_X_) _P_a_r_t _2_: _S_h_e_l_l _a_n_d _U_t_i_l_i_- _t_i_e_s, IEEE -- http://pubs.opengroup.org/onlinepubs/9699919799/ http://tiswww.case.edu/~chet/bash/POSIX -- a description of posix mode @@ -5836,7 +5837,7 @@ FFIILLEESS _~_/_._b_a_s_h_r_c The individual per-interactive-shell startup file _~_/_._b_a_s_h___l_o_g_o_u_t - The individual login shell cleanup file, executed when a login + The individual login shell cleanup file, executed when a login shell exits _~_/_._i_n_p_u_t_r_c Individual _r_e_a_d_l_i_n_e initialization file @@ -5850,14 +5851,14 @@ AAUUTTHHOORRSS BBUUGG RREEPPOORRTTSS If you find a bug in bbaasshh,, you should report it. But first, you should - make sure that it really is a bug, and that it appears in the latest - version of bbaasshh. The latest version is always available from + make sure that it really is a bug, and that it appears in the latest + version of bbaasshh. The latest version is always available from _f_t_p_:_/_/_f_t_p_._g_n_u_._o_r_g_/_p_u_b_/_g_n_u_/_b_a_s_h_/. - Once you have determined that a bug actually exists, use the _b_a_s_h_b_u_g - command to submit a bug report. If you have a fix, you are encouraged - to mail that as well! Suggestions and `philosophical' bug reports may - be mailed to _b_u_g_-_b_a_s_h_@_g_n_u_._o_r_g or posted to the Usenet newsgroup + Once you have determined that a bug actually exists, use the _b_a_s_h_b_u_g + command to submit a bug report. If you have a fix, you are encouraged + to mail that as well! Suggestions and `philosophical' bug reports may + be mailed to _b_u_g_-_b_a_s_h_@_g_n_u_._o_r_g or posted to the Usenet newsgroup ggnnuu..bbaasshh..bbuugg. ALL bug reports should include: @@ -5868,7 +5869,7 @@ BBUUGG RREEPPOORRTTSS A description of the bug behaviour A short script or `recipe' which exercises the bug - _b_a_s_h_b_u_g inserts the first three items automatically into the template + _b_a_s_h_b_u_g inserts the first three items automatically into the template it provides for filing a bug report. Comments and bug reports concerning this manual page should be directed @@ -5885,10 +5886,10 @@ BBUUGGSS Shell builtin commands and functions are not stoppable/restartable. Compound commands and command sequences of the form `a ; b ; c' are not - handled gracefully when process suspension is attempted. When a - process is stopped, the shell immediately executes the next command in - the sequence. It suffices to place the sequence of commands between - parentheses to force it into a subshell, which may be stopped as a + handled gracefully when process suspension is attempted. When a + process is stopped, the shell immediately executes the next command in + the sequence. It suffices to place the sequence of commands between + parentheses to force it into a subshell, which may be stopped as a unit. Array variables may not (yet) be exported. @@ -5897,4 +5898,4 @@ BBUUGGSS -GNU Bash 4.4 2015 November 16 BASH(1) +GNU Bash 4.4 2016 January 25 BASH(1) diff --git a/doc/bash.1 b/doc/bash.1 index 0a67667e..470f6de4 100644 --- a/doc/bash.1 +++ b/doc/bash.1 @@ -5,12 +5,12 @@ .\" Case Western Reserve University .\" chet.ramey@case.edu .\" -.\" Last Change: Mon Nov 16 10:54:48 EST 2015 +.\" Last Change: Wed Jan 27 14:48:54 EST 2016 .\" .\" bash_builtins, strip all but Built-Ins section .if \n(zZ=1 .ig zZ .if \n(zY=1 .ig zY -.TH BASH 1 "2015 November 16" "GNU Bash 4.4" +.TH BASH 1 "2016 January 27" "GNU Bash 4.4" .\" .\" There's some problem with having a `@' .\" in a tagged paragraph with the BSD man macros. @@ -50,8 +50,8 @@ bash \- GNU Bourne-Again SHell [options] [command_string | file] .SH COPYRIGHT -.if n Bash is Copyright (C) 1989-2015 by the Free Software Foundation, Inc. -.if t Bash is Copyright \(co 1989-2015 by the Free Software Foundation, Inc. +.if n Bash is Copyright (C) 1989-2016 by the Free Software Foundation, Inc. +.if t Bash is Copyright \(co 1989-2016 by the Free Software Foundation, Inc. .SH DESCRIPTION .B Bash is an \fBsh\fR-compatible command language interpreter that @@ -3393,6 +3393,9 @@ null argument results and is retained and passed to a command as an empty string. When a quoted null argument appears as part of a word whose expansion is non-null, the null argument is removed. +That is, the word +\f(CW\-d\(aq\^\(aq\fP becomes \f(CW\-d\fP after word splitting and +null argument removal. .PP Note that if no expansion occurs, no splitting is performed. @@ -8780,13 +8783,16 @@ invalid option is supplied. .TP \fBread\fP [\fB\-ers\fP] [\fB\-a\fP \fIaname\fP] [\fB\-d\fP \fIdelim\fP] [\fB\-i\fP \fItext\fP] [\fB\-n\fP \fInchars\fP] [\fB\-N\fP \fInchars\fP] [\fB\-p\fP \fIprompt\fP] [\fB\-t\fP \fItimeout\fP] [\fB\-u\fP \fIfd\fP] [\fIname\fP ...] One line is read from the standard input, or from the file descriptor -\fIfd\fP supplied as an argument to the \fB\-u\fP option, and the first word +\fIfd\fP supplied as an argument to the \fB\-u\fP option, +split into words as described above under \fBWord Splitting\fP, +and the first word is assigned to the first .IR name , the second word to the second .IR name , -and so on, with leftover words and their intervening separators assigned -to the last +and so on. +If there are more words than names, the remaining words and their +intervening delimiters are assigned to the last .IR name . If there are fewer words read from the input stream than names, the remaining names are assigned empty values. diff --git a/doc/bash.html b/doc/bash.html index 0b012fa6..3f80a52e 100644 --- a/doc/bash.html +++ b/doc/bash.html @@ -3,7 +3,7 @@ -
BASH(1)2015 November 16BASH(1) +BASH(1)2016 January 25BASH(1)

Index @@ -42,7 +42,7 @@ bash - GNU Bourne-Again SHell

COPYRIGHT

-Bash is Copyright © 1989-2015 by the Free Software Foundation, Inc. +Bash is Copyright © 1989-2016 by the Free Software Foundation, Inc.  

DESCRIPTION

@@ -4274,6 +4274,9 @@ null argument results and is retained and passed to a command as an empty string. When a quoted null argument appears as part of a word whose expansion is non-null, the null argument is removed. +That is, the word +-daqaq becomes -d after word splitting and +null argument removal.

Note that if no expansion occurs, no splitting @@ -13471,7 +13474,7 @@ There may be only one active coprocess at a time.


-
GNU Bash 4.42015 November 16BASH(1) +GNU Bash 4.42016 January 25BASH(1)

@@ -13577,6 +13580,6 @@ There may be only one active coprocess at a time.
This document was created by man2html from bash.1.
-Time: 20 January 2016 13:59:15 EST +Time: 25 January 2016 10:12:33 EST diff --git a/doc/bash.info b/doc/bash.info index 63c7ef5a..08fc7609 100644 --- a/doc/bash.info +++ b/doc/bash.info @@ -2,12 +2,12 @@ This is bash.info, produced by makeinfo version 6.0 from bashref.texi. This text is a brief description of the features that are present in the -Bash shell (version 4.4, 16 November 2015). +Bash shell (version 4.4, 25 January 2016). - This is Edition 4.4, last updated 16 November 2015, of 'The GNU Bash + This is Edition 4.4, last updated 25 January 2016, of 'The GNU Bash Reference Manual', for 'Bash', Version 4.4. - Copyright (C) 1988-2015 Free Software Foundation, Inc. + Copyright (C) 1988-2016 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, @@ -27,10 +27,10 @@ Bash Features ************* This text is a brief description of the features that are present in the -Bash shell (version 4.4, 16 November 2015). The Bash home page is +Bash shell (version 4.4, 25 January 2016). The Bash home page is . - This is Edition 4.4, last updated 16 November 2015, of 'The GNU Bash + This is Edition 4.4, last updated 25 January 2016, of 'The GNU Bash Reference Manual', for 'Bash', Version 4.4. Bash contains features that appear in other popular shells, and some @@ -2012,7 +2012,8 @@ from the expansion of parameters that have no values, are removed. If a parameter with no value is expanded within double quotes, a null argument results and is retained and passed to a command as an empty string. When a quoted null argument appears as part of a word whose -expansion is non-null, the null argument is removed. +expansion is non-null, the null argument is removed. That is, the word +'-d''' becomes '-d' after word splitting and null argument removal. Note that if no expansion occurs, no splitting is performed. @@ -11317,134 +11318,134 @@ D.5 Concept Index  Tag Table: -Node: Top897 -Node: Introduction2817 -Node: What is Bash?3033 -Node: What is a shell?4147 -Node: Definitions6685 -Node: Basic Shell Features9623 -Node: Shell Syntax10842 -Node: Shell Operation11868 -Node: Quoting13161 -Node: Escape Character14461 -Node: Single Quotes14946 -Node: Double Quotes15294 -Node: ANSI-C Quoting16572 -Node: Locale Translation17825 -Node: Comments18721 -Node: Shell Commands19339 -Node: Simple Commands20211 -Node: Pipelines20842 -Node: Lists23585 -Node: Compound Commands25314 -Node: Looping Constructs26317 -Node: Conditional Constructs28780 -Node: Command Grouping39701 -Node: Coprocesses41180 -Node: GNU Parallel43012 -Node: Shell Functions46985 -Node: Shell Parameters52191 -Node: Positional Parameters56593 -Node: Special Parameters57493 -Node: Shell Expansions60830 -Node: Brace Expansion62767 -Node: Tilde Expansion65548 -Node: Shell Parameter Expansion67896 -Node: Command Substitution82028 -Node: Arithmetic Expansion83383 -Node: Process Substitution84315 -Node: Word Splitting85435 -Node: Filename Expansion87292 -Node: Pattern Matching89576 -Node: Quote Removal93274 -Node: Redirections93569 -Node: Executing Commands102818 -Node: Simple Command Expansion103488 -Node: Command Search and Execution105418 -Node: Command Execution Environment107754 -Node: Environment110738 -Node: Exit Status112397 -Node: Signals114067 -Node: Shell Scripts116034 -Node: Shell Builtin Commands118549 -Node: Bourne Shell Builtins120583 -Node: Bash Builtins141185 -Node: Modifying Shell Behavior169701 -Node: The Set Builtin170046 -Node: The Shopt Builtin180459 -Node: Special Builtins196079 -Node: Shell Variables197058 -Node: Bourne Shell Variables197495 -Node: Bash Variables199526 -Node: Bash Features227790 -Node: Invoking Bash228689 -Node: Bash Startup Files234638 -Node: Interactive Shells239741 -Node: What is an Interactive Shell?240151 -Node: Is this Shell Interactive?240800 -Node: Interactive Shell Behavior241615 -Node: Bash Conditional Expressions244990 -Node: Shell Arithmetic248991 -Node: Aliases251768 -Node: Arrays254316 -Node: The Directory Stack259400 -Node: Directory Stack Builtins260184 -Node: Controlling the Prompt263152 -Node: The Restricted Shell265898 -Node: Bash POSIX Mode267723 -Node: Job Control277635 -Node: Job Control Basics278095 -Node: Job Control Builtins282814 -Node: Job Control Variables287344 -Node: Command Line Editing288500 -Node: Introduction and Notation290171 -Node: Readline Interaction291794 -Node: Readline Bare Essentials292985 -Node: Readline Movement Commands294768 -Node: Readline Killing Commands295728 -Node: Readline Arguments297646 -Node: Searching298690 -Node: Readline Init File300876 -Node: Readline Init File Syntax302023 -Node: Conditional Init Constructs321787 -Node: Sample Init File324312 -Node: Bindable Readline Commands327429 -Node: Commands For Moving328633 -Node: Commands For History329776 -Node: Commands For Text334065 -Node: Commands For Killing337454 -Node: Numeric Arguments339935 -Node: Commands For Completion341074 -Node: Keyboard Macros345265 -Node: Miscellaneous Commands345952 -Node: Readline vi Mode351756 -Node: Programmable Completion352663 -Node: Programmable Completion Builtins360124 -Node: A Programmable Completion Example370010 -Node: Using History Interactively375262 -Node: Bash History Facilities375946 -Node: Bash History Builtins378947 -Node: History Interaction382944 -Node: Event Designators385908 -Node: Word Designators387127 -Node: Modifiers388764 -Node: Installing Bash390166 -Node: Basic Installation391303 -Node: Compilers and Options393994 -Node: Compiling For Multiple Architectures394735 -Node: Installation Names396398 -Node: Specifying the System Type397216 -Node: Sharing Defaults397932 -Node: Operation Controls398605 -Node: Optional Features399563 -Node: Reporting Bugs409820 -Node: Major Differences From The Bourne Shell411014 -Node: GNU Free Documentation License427866 -Node: Indexes453043 -Node: Builtin Index453497 -Node: Reserved Word Index460324 -Node: Variable Index462772 -Node: Function Index478231 -Node: Concept Index491451 +Node: Top895 +Node: Introduction2813 +Node: What is Bash?3029 +Node: What is a shell?4143 +Node: Definitions6681 +Node: Basic Shell Features9619 +Node: Shell Syntax10838 +Node: Shell Operation11864 +Node: Quoting13157 +Node: Escape Character14457 +Node: Single Quotes14942 +Node: Double Quotes15290 +Node: ANSI-C Quoting16568 +Node: Locale Translation17821 +Node: Comments18717 +Node: Shell Commands19335 +Node: Simple Commands20207 +Node: Pipelines20838 +Node: Lists23581 +Node: Compound Commands25310 +Node: Looping Constructs26313 +Node: Conditional Constructs28776 +Node: Command Grouping39697 +Node: Coprocesses41176 +Node: GNU Parallel43008 +Node: Shell Functions46981 +Node: Shell Parameters52187 +Node: Positional Parameters56589 +Node: Special Parameters57489 +Node: Shell Expansions60826 +Node: Brace Expansion62763 +Node: Tilde Expansion65544 +Node: Shell Parameter Expansion67892 +Node: Command Substitution82024 +Node: Arithmetic Expansion83379 +Node: Process Substitution84311 +Node: Word Splitting85431 +Node: Filename Expansion87375 +Node: Pattern Matching89659 +Node: Quote Removal93357 +Node: Redirections93652 +Node: Executing Commands102901 +Node: Simple Command Expansion103571 +Node: Command Search and Execution105501 +Node: Command Execution Environment107837 +Node: Environment110821 +Node: Exit Status112480 +Node: Signals114150 +Node: Shell Scripts116117 +Node: Shell Builtin Commands118632 +Node: Bourne Shell Builtins120666 +Node: Bash Builtins141268 +Node: Modifying Shell Behavior169784 +Node: The Set Builtin170129 +Node: The Shopt Builtin180542 +Node: Special Builtins196162 +Node: Shell Variables197141 +Node: Bourne Shell Variables197578 +Node: Bash Variables199609 +Node: Bash Features227873 +Node: Invoking Bash228772 +Node: Bash Startup Files234721 +Node: Interactive Shells239824 +Node: What is an Interactive Shell?240234 +Node: Is this Shell Interactive?240883 +Node: Interactive Shell Behavior241698 +Node: Bash Conditional Expressions245073 +Node: Shell Arithmetic249074 +Node: Aliases251851 +Node: Arrays254399 +Node: The Directory Stack259483 +Node: Directory Stack Builtins260267 +Node: Controlling the Prompt263235 +Node: The Restricted Shell265981 +Node: Bash POSIX Mode267806 +Node: Job Control277718 +Node: Job Control Basics278178 +Node: Job Control Builtins282897 +Node: Job Control Variables287427 +Node: Command Line Editing288583 +Node: Introduction and Notation290254 +Node: Readline Interaction291877 +Node: Readline Bare Essentials293068 +Node: Readline Movement Commands294851 +Node: Readline Killing Commands295811 +Node: Readline Arguments297729 +Node: Searching298773 +Node: Readline Init File300959 +Node: Readline Init File Syntax302106 +Node: Conditional Init Constructs321870 +Node: Sample Init File324395 +Node: Bindable Readline Commands327512 +Node: Commands For Moving328716 +Node: Commands For History329859 +Node: Commands For Text334148 +Node: Commands For Killing337537 +Node: Numeric Arguments340018 +Node: Commands For Completion341157 +Node: Keyboard Macros345348 +Node: Miscellaneous Commands346035 +Node: Readline vi Mode351839 +Node: Programmable Completion352746 +Node: Programmable Completion Builtins360207 +Node: A Programmable Completion Example370093 +Node: Using History Interactively375345 +Node: Bash History Facilities376029 +Node: Bash History Builtins379030 +Node: History Interaction383027 +Node: Event Designators385991 +Node: Word Designators387210 +Node: Modifiers388847 +Node: Installing Bash390249 +Node: Basic Installation391386 +Node: Compilers and Options394077 +Node: Compiling For Multiple Architectures394818 +Node: Installation Names396481 +Node: Specifying the System Type397299 +Node: Sharing Defaults398015 +Node: Operation Controls398688 +Node: Optional Features399646 +Node: Reporting Bugs409903 +Node: Major Differences From The Bourne Shell411097 +Node: GNU Free Documentation License427949 +Node: Indexes453126 +Node: Builtin Index453580 +Node: Reserved Word Index460407 +Node: Variable Index462855 +Node: Function Index478314 +Node: Concept Index491534  End Tag Table diff --git a/doc/bash.pdf b/doc/bash.pdf index e97841a24d969219c63c0e2932416f6629fded2b..c6838fba49f1e0c39defa95c855986dea0801912 100644 GIT binary patch delta 290030 zcmV(+K;6Ig=o6#h6Od7V!#;pn6N?#Oa7mtIS@CLPOO8dSvPHSJAQGgo1_2ru%i2oi z3;ZK_;6J8&uHcZ8U9ME6wsyB{%%!L2^y$+*{73?yk^uiv|6goQetMgbb$1ew^~uK* zDn1hRzr}_;pPfttKjdV#fRQPFnXOLbWJ(f7k|-jx&58H?bTa#Y9ae#HH1v6xr7&W) zgg+!cg(3GR-u2Hn9=(~6mqlH)d4=O?mijD|BLgw$tl4bxdfAcJc|FKM#sEfPG?$|v z-B53%W-^*d+cU7;&p4VtjUt#4lW7=>8JDA_xX&|XkoWo=|K1*(1%4DHWJ(!+o_n`> zcSm;Q<>fo_ycybmx|p7>C)^K$BxGJ**5vxC||*UPIn*B94v zuT1SFhKPN{HjW|8=QLo-%z3lz%ckz$llek=@3*dR%X&@zMZQ$Ud%LjSpQm!ZHR9~* z&984SUj97W-^f}q_nzZv%Z{8i+X*ZcP@Z`YZMnYd$$tocTx2$70gcJ+1L^My^4GQ~ z$aS;o?_sc)x9~R;Dt+TML%qz=g(2Miyv$q#-W*1kNkNW8Op^qZC$%ra! z`B@SQe8BBQ+ZH|TwU9lP}vMTa^ zXyMP=G4Y_@6ZeIww1YnYmFh9k?*qgDOPhWnX&T@+Sk z<}x7wJ96VWH=e>VP5gXty+D(3co_q-qx&xoW`}-i&A*vA7ch;2z>kw`1n{HarBR$| z@N$-D@FL9WWw9iELv9PW;zd)hnik;FlXA1IicL}XBDhGi5~#UG9}vXqyS}W-zJz;& z`y3B{xi~*RCvUELB##!C5H>SFvwH+uU2^ zH695L^kog`(nl0_O-IKBhFKOXK`TSmAEOTjuI16l!&ibmt{)?}z)#{>obnW0rJT|M zgI2|KahJFG0;5`hi72uq%Vsg4ufa}WdYrI-EV@NoZby!F=nB#ox6mwlouZuN8iCJZ zJ?wTEF@*+IS@p1|rXcAzu~-O+4Ytwef-p;E?uEczlDsq4-`^F|Xn80Btg$&X0^Xx~ zzfXK|LXw_6zGhy7j#|*f4-V#Ej6L6U_o{Syk?VldLr9tq$r}vhBc0!&391-Xi zkh{hH;dr29Jx!_b+{FpbTPEWjs%w9B&qU(*aPQ;d-^rEtr${^UIgE z>q*_zQ#Chl#m%Jvg+wpA7NB<+ISkQ%VR{JcFqLSG8OVglIC&&Z@H_XDDBQ1W^qCw6d4VTdo2~k>^La?Mij<2YFzyOCVJ`li0HtSHkSO!v@GF_83&kEbxxmPn zb9)rWXk(2vI!^q^=7VR}FbH=R>THXKMcOdwYGqfNhRQCyt-R~XbzLkKPGjzWhs?UL zZybh&TmlQIy?+QCL@+<2nbANIYTAfBs#6eQw3VG_pL-d%Y-+K&f0>IZWecPb`1`}KH`8&Y?L6VOj+(yic4p~)fHdywMF zPdXa(W)U-F=c*VMMZQ&^-mW@+!nyZ4|9~EZl$Lsh<0#-WYIWe(>KrhC5mQ*XLL$Ed z;<_!6)c2S>1?rB?jHj6!Vc~N3+*{_5JVbfpb-66wL?D1>G{U)A12CkMZvai^0y9Ae z!ARWBy^G6#Ou$!JN@MTp>~xZ05fp}=C};NF4Kt%uhbxqqg-B#DJWIWM6ju(+LJskp zX7&==?}u4?5Hqpmv?pPIc3S{T7M-rt6SoF{!<+2U+LQ^z7h}Ds)DRFXh^(cf(86(@ zaOi3fRC{F#UGVrhx9$((bN%EL|hmo=De$5e4oN z=;2J~^7%0r1H%B;>qg`WQS3#ASzE!xDvhbR+qPK%BLPP_sa}$QXb5DT#LQ~mm?n}B z50!wfG>IrEk)2~GU(*EGxzr+( zWc#vM)+rw(N6UH~S#7Tjj{%GZ*ML?r)rDGO+Npk>q= zr`5PqMN?+Bk5k=$l;|-HfkUCJ7;d5J_&79JSxDU>FtI4G>bre#GG7{uYKkBBA(o<1 z*=RSVKLp51QMxqs{(Uz?uP;3Hqaej}+zAz>^hiLV$g-uOA90cMJ-LdsRnaeVf-^CCf-tg)D})Mg3DXi@Yi@3hJhJ$^!;}GAq$1Jv+#XG)YZXY#k?I zwUB5UF?H^UXTXUzYxq*UCLnvWbiW7|@W(P6i|B)Rk7F!ARk*uN4X9r17BYhVg28R{ z_K`)gaY?men49 z@2oNfrnY&1=x`Mi6WmWtZA<+iGkuMw-dAF#a?2NsV%rPoA9|d^CE1!l?0dYZX4tba zY3PZf`Y_3aSPAP!q9>9Ic`jle?jYfsz~5cGnq*k-WSHA873YGINST#MXIHOZpI*Lj z8W9|e6MYDgo3J$w7MqKKJjf+gV74L`E64vJP7<4cOP_LoG@_q`o1UmnI{WU0)Xi;Y zba&-IItDIfCaD@#{b|Bb?*yQjt3ll=5Q4(IlWHl28-PS4xA^hs7V6_r;}$YFxoN{g z8fCJ_QTE3?!ypFIuX`r)LF1cBhUz5+5dn{FG31xeOx4hdGT@WAC~!WHB0E)fKJe__ zS0U|x_RFAfFcf0oY|Vs&gXD>+U#1k$Q2objZf)>sZG1 zR6Ed!7l#iqm2$Rsx1nfS?>D@FrfkODtDjlQ4XnXFc@Rtw%d*>6`GYLcaw#7Y$nD%| zh>MA)29dJCpTerFpGj&F*DFgV+k#+aPvw= zOaWK|q!@g_AK`#G2!W2Qh8Bh#5qZLJmViUGhfZth;V_P5>VQw?{vL9jS5oyc4MNj` zUyqz_UMa@C5*c=oEuzqt;Rke#Qs3-&;D}JS00RTr9&~3fZ{tf<*vOLo1v$XN6v-oa(+xvvOz$csUzc>gpzqSwLFxanKTyan&lJwlw;b zkHUhEQgVg+x{V6ZFr)s~frG%ikCfYCn)+Gt^qT>=*VH&5ZG%Yhka)x~J<^=i!{!zN zwIZ7Va^9%JtpF&I1qcb_#4Z;q1%!HkP$P9SU>j?@E%H{gj(Hd>YpG;d82c=v`*C?& zKx7uj`|NsgSt5Y)ZPs=9$AP|)u6T7a`_mjexh!rc6gxE$^@jBt0J~pXkDL8bqJ;2i z3u1JQJ>yn&@NXvoxgdx#xd?_E;8K~QG_a9o*xod)vB$I-ZYPl|L>d{NTx11*py{@k zKF23CxilPwnM5$Nas~T+Mn=xPwnpUyhT)?@3iaV<^*V$nL1RGM2z@ZaazkG;=htY707I6G<(wk9d#EI?$6g z7LUogxzcr}$(UKpv#)$fVm&0be+crB@)Hnr$mDT4iKVVbhf5Z3}F%x|=cCreuB^*`2flYia|G0Ci#_w* zK4Gix=C>icoqEcE9Tzy>c~uGd_<_hQs2vc9cVNcs?R^&MKfoTLsTO%ApDzj|Qd>7; z)5@_wgY2IqkL?D59+@|P6I?b`zn$oMY=UXYuKm3&+D>$@&{<_(m48Uld+0V6fOv|{ zW&ZmoA6we(BuwCv;?!HXISB&R)F!2&*J%i%&K5Y5ok#DqNBde3VaCCuzLxyuL!cU4 z)WYjyN{YtX300p2A-iMSe6vnL?eNWS;mP(J%P> zul9j3E*6MlT_97m`+RotclhVOu169^Wo~41baG{3Z3<;>WN%_>3N|1xAa7!73Nth} zIFkepM1OAFMiPD3SMVV~I17npvv2H2ClL|{iIcS^y8)!df|{W`+{};@l4DtU*e}Sh z_#d~b@8rxV+F%z3Y*}n}SJ&m#sVe@O8@?^P!l_fq|K3tfWNg|6xGL|fN7k}v&uNTXI!7i|l(2P@6!iwb@{v$I2 zOCB%Mn{Vz?a<@pnuG_k=wz!_CGApQAnd?PgcDr5Gu7~9Nsy&!RUVwtYYHn7aJ&r1JQ zm$coO9ELg>H+Ay$+n?-RNNEh|wl7&GNnY5q``X{C%%uHgwca*uJw2)bWe}y@otyi< z>Yw1+Nncm%WMxd4;Cn;zxT#w$#jvTj+kd1PlBONO{;Sa`m>A<0EMrcMAL>ZIMWo-k zdZ;3q6hS?=T0i@KL1d;BQEB)4wqE>W`Rz$Xfoh4=Zf7;7<*yqMw>L6B4P(8#dTiG4 z^H}xcVV~fJS_qQ6a41#Axz*xr`l=pRuRsLGGF5VRN(3geTu|%yY1b!}cEuv&D1Q$q z1GGXVaXUVBi-MC(l0&Tb8DAl(4ts0xIMbU?u z>{o@9S*g5AZqt9i%I>RS^H011hh6zeCGs+(As#MgyYdVoJLgV*x8=55C@@O_7s24e z9g9q;a*8gTX3iroyAb3#?&&;rc7LA8@}eX(I!{X<1lIyhkD=gi4otEyjQXuCgk@B? zv!2#L2D8GRQa>y}s63Z6tq$Aq(rPG*`qFQL*Pq2uk;z<^&U#wBM~uM=zz=*6Vi(P2 z;-?u+;5bOq!VsQG=@F@O(PVngrl@VIoa-iS{i#(&@$As$@} zD%;?cfCEJg;0UWW*6-4xu3f+?Z6}ajIN-QV-@N^sjuKgx=?`DNUMTRloYHjp=7+a4 ze}gw!seDA-*ISGUqy5LbMK)7D0D{PvRC8niU?}mWGF=^`f=O6eQItoRfOu9<@JjNm zbTOZPJcn1S!)P%0nUI{L34ds$V6)Ka7m!EuT%3?wWz5G#^Y9X=1m7VhJV~_s`kC{hx>Y? z1(gWg-t}Zz=!G8|$O+xU^khmgI@EbY0l!g&PeTA4y*X>`kg8zD1RZ#zaldu*uqbSv zdH@$q9{O&lU;6Qfn>RmW(redMzeY}@twaFUDBR0uP)d!+yJ}o*jAh+Bcj?Tv%K~uK zUN+S_OLpCQMlK-f2!BUO3UE2IJ%o62GeZ-gA&j~hL`jU6Z?3PC*WcazFxyr@{wzEm zBYtQXD)BAw6_F{AOzGo8OfG474^uTD0;sBPS2a?eDp_}{!%p+QO*MkD$Ew+y;3&Xk zjQZe6H{HZ-rE{^zeH>-dQ!5uuPEkn}TWd8A33|cjHj$cLX@BM}G2F+IfZpyi7x*60 znOJI9TX4JS2^i%^{K}B4l8Lk)#=cpN_4+KsN|!#=?`t52kkESn)`Klo=kX8$W>Wy?hpyiltbm`u#WiAMh=cpj5el)p zl;;5o`EBk2s%xik(H+M9VYI21AoTFal2|MdO!+vUwUYz`H`n}?**v=UyHLV8p|bjIiJb$^Vb`|c`WIMoAW*2Lzyecz#g zP?BA0@!L>B%#05X8kps$)y()n(>Qk)XuA^|&>V7)Gv24+=zWs=_pNN33Q(d34mlk5 z`)yONFSXWx?}yP~l#-SxS$3zDATh-`M+PN8nGuwLS-Tnr_!;v8?5=lgs~vg-03vW2 zC<0r+!G9K1V#D87g@bnMLP03``sdBejevsWggoy@oH#8U6JyBFjw${zgJ9%{L)@n8 z2B3sN;a#L{Tyf=@U`22ZW^xn8guVjcBJO!lyE4S85a^6Cv0};+t0UzV;I2N-&*|<~D{l?KVPJOEH~TSLTyZFT6_E&d zZ5LFFPEtE2ZjK?M%!qhVjbl+oF9D|IF%GX$p3+WkC6S7!uK`ZSvEJ=9vLG@gyJ}r~ z&WWmFLPgHSjdKByZCwz!d#(nS+hJ=exv6ClpSX-I^&$Q+9(x2vM9WyCWL$dPe3awf}88?SJhU zz0A8_3>&$2y{--GGh&B5WKX9eq7yZg z9H+X)hEl=vwC^UMUQ$oUTHEM@zfIm+S1Fe9AC4M{z$g405q}i<>bjd<2uK!qb9-gkL1h{uB&VL>+@*(h3v6cI z&Y}=R>KW=mJsA(^k7;XPubSWM_1!{e0Vl(eUJ0m$IrliCMpq1gx#STB@LX98&=)a& zmOECar7p3wU_{G&2nq6n}ujagt^L zzxXV@ z%U)n`=4>Q>@B3=ML5D^GfS+#+-Vsh9vpL;8&J`;;QGBLYudpfo4u34S{x~5<+}F0Z zmb?KMi)SYTCVt?+LmPZZh}4rN@I0$(#Ti+bB0CRhE>&KclX|M9x6aJJ|s15oiX>Kh|PSmDiQvGKj_Kf$iO^Ml#&5R^%UU$|^ydMG?INJ0MO8s*bnifNn|fM~vVZKx8% zHf9l~4G|0~i!Gr+cAH-R{Nq9*vH_!g{r2XV!2r+VA!G-@et(~k1<+_j#E_By4zzA& z^%$m38eMr%1$`(Fn@2UN3W)eeMQN#y8{4w2*(I_%n*(dS?+mmI7Y+f>HLR- zfzl5k&XF(Xx_{|52?BpNjSjF4>MnHUU2Uhy=ear+l5Xjn>i=z>TAv#46f$Gpeb3H{ zDUeb&#a&2QW#}AUHYR1+{!V!p5;zDbU)YD_o=HNiW5G`paP&d zWXWr6b!p&=`%7UfR2?Rs(e4>E4zVXBiRv~}3qq~X{eOa`)O?IfOCZR?mlQ9aM8lKw zlV~{fg_CH>=96fM?tsM8YO$21@6@f2Y^?VRXU?Y4Cyv744c%8`TwJEi*BCh74v`)6 z5nhym{@a!T8lvkha{FB%I7Gnf*=>~f9SDJQ!2qg;n(f^i21sl1Fj98yV>on1px zS1a0$>VE~okmAHRp_Zi?v|!c!wl>XQobeVug)NUN3h*W-JR6BW41uchlqW%eap68k z0`Wv#VeG0WY;_(6BA4K2$>+^k0%xT!^xz|8j6cVsK=6z5_;W1#0Z2*g2OwB5&FqNehle3A z+7T!dCt^}OVVi|V1q9_M_yCJ45PMSK1Aj~V?FSQj+8K5dwqLDr(qf(Nr2uFef-pzu z0>4BNF+xA{fsU>jNf0VVXOwDA7m3a`es4RrrYv0r=nvE*W{y6*qK1a#VJeeP&IY== z-P*=ZnNb!X0vOI}J^=*G4x{52VTk*#@dF zjvM~^T^Phkgd>0aHxPbF8gX@a6!Tx~z3#AKF=u=u(f@%`7ViR!74HZ17dP zz2Vl0r_VYU=m|c-PZoX8tm+$NNjavTX2@iKgtIbYB45A#DZwdN!ZNnFB8*6t7C7qu z7C*c0pOS)W(V3$|X@R?4FE9QIfBpk#XTffh?;RQhGdVdqlMNn1e_QQt+(wrD@2998 zEV67sVpuGGRXiBLNxY5*iJi5zGYiPUg6gIuj=RYY$+qHI?>>QF#qYT1);HNL#esiV zR##Wux^?fl=iDm)%95C~g#MVn*SjZQzb@JB_#|PsPkw#E)rZXdwcfFBFQ1$zvB=rw z8Y3(Ev4 z%jI96q%w;O;a4_Gt2vuZFk!8}rM`16vOF$QY?i0q!Ck#;SbxK6_G#O&sb@n|Z`6{F zaT!<6=1CQ2e`dw#x5l|i#%YC3nh(~8sfo3hr14Uk#k@#Tdrb9sH}_&H;(|--=j-OK zp08WQMU`;#@q4v!8s|q#UqxfRN;7y|ifC-%fFw?mGP;@6=9R4}=Hk|rs|en_>9^Y+ zU&FW3GP-ZOTej8_$L`^K<85zD%HuTq5+`iF(Ys8!f7#}_;00EP^D8w7Cw;{}ckEC9 z`t36vTz_J}Jf*|xSRDTLDZ6QH@XphYg4RxVeV94M2LCiU8>=`e5?%zGrzk<}f#Z1KxS_4D5rpl?x_+XN z-%vn~f5?UP9gb>H34k!Am{n1B&XG;LBCi&)cErWaJp5o`QkFKlPDNjqnvauM@=_%Q zENHvX>AZ}yqO|*b-`fzKd;6V=2+YV!{ecjEbDMkbHRPcvtvlN3PHl{KHMc!Sl1n>G zTka2G>W6k+ZxJ%EJxMYdHN)8U-H6ZCGGV?8pCe0m15_*T$9hzL%m@NX2TQ0A zxrVd#wjZ1A2LiEuKaMSeoebi()S6gnP{?TgfBw9+#s;+$ zLtJX~`w6jhMy2o5FrxlVQ?uJo<74G07csXH{U8*RwL)1-m~5e4N1Z4XdoX^BZiarR zP2`EkhP-ms;_GHwf4v`8S*DA64Kop~&R2*MJE!z&(+aNIPXx@L34!Kn)JGz|$i#bzo)*3BN{)-zry5Xq_h zJv2iF()MYZ&EB-#+LoqLg)-=GnmRAlK}bO)z+meovripU^GqR1nDZ}VI>`x^V=8)y z^;}UhmIQDDGRd8`IzbY0f2X_>V6ZlJ(>IzJn)2{ibpUh=%XJ?o>aHj-ssNZvv#dlT z01&Q7t(_nGP+}%dm5_Fv=UjgKE_d?we;f2z~`Oe zO+td(3Lb=SrIEkuS)*uhibJ*EMv$0~Z<_TKGezPBT6AFwBN4|Pc0Lkk)+AvSadjdzl+BfQgg6}= zv0)*^@x@$|pDJJiWjpz@v~((P=CV2j1L^xCi_`=k3^L>o)RD(3NbZ?ML-92(nHKbk za3UXEzx{172kN&se|gt$fU!52XeM6BtE`43%ycJcO;i7seSFN-vNTQQXyvk`r$`Y*+ zLm{_m5D+_x$$JHFie6neq~M1`r=y?vnp5y?w?9lI^gGlmtrVbSn@M3m^)gH0*E9NJ zcxS&rQEw1dqQ(UzFG-DqMs3NQItYSI2Stzf_}KLae|0QFv+Kbml;UQa8vjDZ9mYew z-F^sxdL{))n_AEueDIgl?o4b{-faw^A9d6cCkiR2F(Mj5Nm#{25vVyfHtWMMH*tYl zG7m9$9QD$CSa0gIPyD-h7{=IDK4HS_$m3lCNC}SI}78SMJ_#yqvq04 zKIneh{;(26l8Y)@8}Uz|H5dO7XSsB3JCgqe5nDd%YExf1fPa$xgdPD_wBw|=+K%QX z00C2i*BVb!Q%-7(gI5UUVs@cA$GMiM775L$fBP0eL=0)uYY&rLn$eXC(C)5gevhrF z#UJA=bHpthEkbXjuL^Ki@Ro(HIUMVAWp$bypsqNi@A zKh)+x!rPl1-Q@^5_gYtzGj^@=m?#49ylYw-!OR=caUJT*3 zh||n987#O3=!1B5O$gs}xz$&b+YgKI&dNAP7<{=%rlY|*&uPBmu3=k;%Dr~*sQR|V z*F2x6tJB;@%Ka3kNA5y+XFNadn|1rCe{nRJl%lWT0Hj3sNiJ@fHzOdmuF<50Bqvr_ z*!U&^IoF4Xq}*NNadM8Obq8-JwF?V3CQY=DM?}oq=yvE2`?o9BZWORIzoK~B&OV}O zOQAL&r+YF-VNPVF$SsO|-p|h&=Kw?t$UrWNurq0{p2ov|zip}S11WuyBb^zSf889q zwLUQVguaV3Z-#b8=CtGxCAF*z*E0~N$L}wPgU#sMY5NtM)Ng)x{^O6Ye!hG&>!9TX zJ~l9H18s59os+*EUOaNmeKb3eAm^@ib~ZC`KI?bi|7;dVsW&HHc~pEB051pgFYKH@ z%+{l#$mK$1y1w#kLDyk7=Fl~lf6ww4Kfe0*;>F8Xub)3401A}X(n0To{J%_O!2icH zs&?k21k6!5jUy;?2M8Z#wac4C#Z<$ny5MK?mjWbdf?z;AnPQDO66r%$COUB1Ti{&d z^T4EPS;kqGeQ~O$Nq#a_3z@kNoJl{;BJ zl${WEh40e(l(gx{>S+PQ5=vUQw$A%LI753F>sl*db7beD0vQOJzGi3P1!$V+yHBIK zMkp{{#i)Q8Pb(c=3gh5~#)Vs*^TY}Fg0;9PP8+M}{_6a*C{Vsr7;r;qR zp&2jF6wCYwO24hUcdLK1)oNyn0f0c_i`h$zeGU3RmkRauDoeCu;{`=-;xYgJS}v;2*mIsMxh2Z-C8y9*LOAbGMa&iemAz8W@ywEe{;=7xDtHl09RT$ zs44?xLXt$!wqwuUb;kAJTKAp$-ol51%h+8sP5nEiSZH|DEr=Pc_puW#rMi%yj?Oc_ z4SIYQOM*lq+Fdl>_gbCsJc~BR1~_Vu!zna;D7TCg#Z}*dFVU^Xc7IoQ2$`W>haOZ{ zDIHumu7O{p#;s^IX1erf@|?rMh6r z@MwnSrWpp)T_D?*uNf#>YniuceHD!+F5ooJcDxoY#p|_ zgI82;YZKJonQmhox?d0dMD<{7_V}DsscMz*qNE3NN!T3fe}~N&vsaz+dM1|LA@F?7 z3j^4o*u^P)qa2hkauTrv(07J^{Oal3=OwUjfBMe8r3#*x(Y3Wg-SNZjy5El9EaL2(8vJw*>m<4M(8rJLEB4h_>?wQt z6!e#Y`hH{|zf$L#RIz*6^k?J2zZ@404l!PqzGxVazJC7Z`D=BhUhp#d+wmrD_?~T27@`Fk1bVV->MnRI8VfQ>gPRzO`q#|#);Gwi=-r5K@DJ@GFGNV<&0g#cZuNh-Nki1E(#OfRQi?8s-Ch3 zula&$ZhYmh=swo92NnojsQWJ0y4CJe4>UP3f3+o;RRyJvCt3dzz_5%H_v9DHF3n3d z><7oP_jkGdnwn!9!h&WC!O(0mq8aNo`^0V>prSHa2+=(>VD}b;QauAT(PdUNo-Yk9 z98ih2<}KX+u>WOKyKC6h75n9vV*n`AMe?5t4A0QL+SK9pUGQouyghjkXgM`dOW!rD ze~i$dMelqzREN^th_#AW1@ucR0rmXQ;9gSr*-dAvw)ZpR2xUY>bque(QsA%Z*e}_u zNZ}{Dv?j63%et)atnl1cR|)gpdY;i1h~+a;dRP91-Rx6$?*V|!?%uWUVgs>&9ppJZGSb(M zfAR7^8C|t89LMUM(>tvwr6=5frT+^td|+v=tjt{hSkO$*FQ5De{`^0PZM)Kw>n|Gv zG&wkv2{1%|jvL1jec!L>yhtRn?DS=>QD8u}6=x0Ga^%egSP951Ib2Rm&QLSMU9F){ z@UP_C@(Zcz+jKX{l^p0{Agm$Fv&Sx_PMn@qj*Rkzz!?P?(3SM5Q+wwc+{&l~NSkJZ#ov+&D`J>^9c@u4${WUXj~JGBkISqA@WWm+|I|3T}7b zo6p0qWjejWXi{bh4sf=L4E6hy?lCMOjD5n(jFskL*N0znPNm2!GCn@Tr>QnN$P)&@ zWHxN{dXqacAb;@-nR!9EiOvRyVa(>l*zD>!SX36yv?o9Q&p!MV4lgp77VqAX8}d8y zE{eFwXl7H@OBpy}=%OUFoq2LrHD#G0TF6>L|$&A^4L%Na+>7a z8dR^E9+O!!4}Z>vy0&;J)#>w$vc&T5n^#|7y?OQ3_0{ViBBsy5^)5QM^|n)W3@9=y zjR9z{4#>mXIVD%?5SOCx<9mclNweHq(F}$dQlOi{vFl-|SC?_V0c!H%1Ztpqrcutx zf))uU}t%5|s=gzCQ6oCxOPqkrW^DrlDF!j{0xW-haY<}97H zy0EHcAvYMe$epcLjfy=06zgS_8kZyh^w^!iYnEpx0DI!h0NC)%`MEP&%G9&FekZGBWg07pq;$w_?ijFXQ#)zs3y<$#ww zb*K-sEq{}F>17)#lx7K=_frnoS~vuu^Ep9hr(h)owhXF|&r?BuR%=ikCOr+MbIGX- zhM$`Zxs-o?ZYuq;fRv|DAUzV*C=E26mQ+f+`NdJK2I32x$#Ut5FYAkKHH>zP0wq%xUw#+iMflugoz z7fu?PjV>MX&;ieNP_jaakus%eV!<;^VFAI)(!$0oaHnzLJ-(ZRD&p+HNP^ zXMffPj!`i_ESC_-^Y+wQJeR$J2Aoqw24>a>s3_<8P0`!Edhdxvw=1YW@z65({XjK~+$OO%2d^m~%F(u$Um_s%>P(L6ro= zhWPbh)U-hYDQ>h4m6alzahmoHq5`dBie)TQX+YIBny0=)H3m8W9e$;JF@Nrt{(qoI zpA_X;URYlnm|-?UVRFUmMgtCbl`$?5Y2+MYNWHE01NwX*59l8F3*rHpdqsxFVXSuq zt-vZf9Cn(D!FgeP7CDfwR>X*QcRZ2sgo~5PwUS=M2~# z&t<5Firl(dGA-i~iDopRDI@`kNL`ovVKibEz|2brrm_23DQK)%6OMAJSqmI{t9`^l zVJF4(To=K+284tzD&${_=L$v{q@s|;F^o!sqP(z1fttAb{?(sfzxn>1O%zrBF)o9|hfT{^) zTsSbJ_A+y9MVRt%J z6W5HMO;tRMZq$RE)yK|Lnut8?hp_R+Y*vZ8)`v5BZIq8Xzn60Akh53Sax;x<+o)SX zjWCHJ0d1HqfnJ>rl@OFyUDYc$`veitq5K6U-q4y}>V1a8t$*_V+j%_J1^Gl(=GXz^ zcg-;Vrim`gT!wGq+o&8v(Qr}*YD7|gdY)^Ya(J?A#aqh64a@S^=2} zT#2a?YGIVZkAKkxg7$c%zL=ye`F~vO`}b)68@btc(`g@tquD>Twc@!iBIZrdlWsPv zCki?EC>YC@x~H4HR^S?-0|FRN7>mwP!gnqKpG9a9m`vPm=mxgVc{#M(Tm*rgKF(>8 zvC=NRse(qY^e<;{@~&;Z$1cnHDyOd6PRDwG0D?BH0e@uMrKunAk%EDk-q-a)#XhO& zg3LB{Dm}84=2I60BE^g|8huCTI{`rPYugN)OQpQVqp2wbov9`krTBF3j-_{@brn|{ ze7cdOg}EtkrMU`0k>Gs8bzVnwfx)yKh?9XZ+PqZjf0pvm3Sw-qcD?X4=7Vk}6DmvR z&VNEnj~h1@BDF8af?*E=2V8`1DRAhTd(&n!v;-7Eqa2Ns!pW%_OD6miqi0e_gD|L2 z?mqfy515ixlt_JkNt60sYpHtX02(kYeDS7f8u^#(&)0E9~mOO39M!W2zz@p>xP`d zy9#P3v@B`r|90kOYeDl=0D@n3e2(vJI=K}xdg>;B0ffQut51_LJtP4glU6-30ZfyK zJwE}RlgK?J0q2wLJ!vqTAO1$ZtcDE%bvIw|1Z2ug;19CC#h+;Qk3^(ukHlTwB)H0} z>x;j_zyAS@Fak)Ekv<#(G&Ym3K0<$6+mho%5`FKl5Ile!(JoX~DoM308_~>mz!1y~ zJ7ZuYx`_?7Eq80NB_qkx(_HqC_8&L1?vm}fFtfo!gQdDMvH&#S^VY2 zZ1HcH1>U2a2rdhFW3ht&$O(m4?$6>EUth=cdKP_EHC0z`@O>%^!nl4jQ7=7ex7)H= z_0f~E+3T0w1{j66g?{_wf_51-GEH(KvS`jT_2@drUq5?J6LSzwI8PEga#Qz%e!(4- z!S)hrp6f}2;VdDkU--!Il;nRYW9ED$p;Vo*?xV^aj0$srG^ci%SCu=NB&?7{svlg% z%l%NTqPmI7sNdi8chzPSRn3e`A`6kmFYB&twpBAk*KuD}v!52HU@vVcbbcl5u66t}bsjRaEwUeX9=B zM}UXuMr|#jL=@5wQNX&2_w{A~t1K;chP!fz%Jqz;M9PH4>uNc`k5!~h_Nm$+UAeX; zxr?AQVK##L8cg&s38a*R!_zkf63(L|(FK$;{=VzblP<0had3u|TF!9+MkdBcB{(5@ z!zp~oZ1?>T-Bb~{eOosr?%}>3?jWq23ZN0+Z|bIs+D=CjO995Y0}&_85Ncm->t(xX z8xk$<>K>QOfh&J$VUL+p6Chx(pBodUERFAhK_INAC=p<#EVFcW+u?+TVz|`LDAdyJ zerLgoZwdV%biT+*B2#M;vhY!#5^h=iDt-;HP4K=J*noT=yw>hVb~AzaQ@XQc_r)**s-;pOM5qG6whKDCE~Hu?MgzsyLe9&c{OqAW2F)^tb7nS(ec3b;}Ct z-9HY70!!OP%g)9q&!@o;E@qa`hMLKc7BM=IvpB?NhNe*k|#fWKFD zkYNCLIH3x2#z>J`8&@k!DmsA`nGz8uf!((rJPeYYB`??}yrsgeTOo{h7~KN~_t0Xr zch$1JZR%gE6|y?SqA0TXMcphbM7%;aKnmx8nRAYzYNO;~HDkFT85MEcs5jO6I0vP< zUq9FDLmpa|`yS63ct4XWjCkC_u5P-j{P}#eT&^=Qgn>K%!;^eNCJ*KT{8U2<+?7k@ zLQnxM?31xW6BS*Xm;$G=2?)nPuU@&c7bGiO>|Di@*+U@-HUjFFx4{A9esKv5Otby}^(6XE{b1b;a+cP?M)b4u7q>_FS86n(>m)BL(jJx~~r3Foyv?%0SzU zwImFtP9)Z9GP4CC<5v(JsF8lz*Ln`?dnrLCIIN!XeY`<@v?8P+ouc z{PM-zR8+trx#OZ2F!;rojPgLw5M%gatYZN~1uN_>ehj1t6tTYP0@Vh0Ql#H)K!zZW zPzUYG;jSsSBZa*y8%0!TR4igaxvbl6iyrz7~lmE50}me$7E%ia5{=124awp%`nc{pAP~21n7L>INLN8>dnf854e#Dy8ymm zDkN)z^9Z#KsEevo=F%(=`Ve%i?o1fFu{;<9&xSh~R4>hAY{&S=wyejd%}|@7iOiM6`$iq^P%~r2 z>H=Iv2h_QXZy^Zo0EzqF)X=j}gNCSQnXG#+#*##lP{SWP5amJ z84F@{+#$lVaNOTci~|ktjofxavaCG2fV`2 z+J%O^Fg+Ayw_$oLBzCWezWCxmsHe&4qk*|yyEFc1I+l@yyF%NY4mk(CrE)F&#u_tAXIYF7kqQDg!A!d{c4(T$(sx$v{BA8?A zdK@Jgfv_1johY%BkjL6Pg*1Hw=2g#n2)Ou^@l_+o0S)52uN0amdbj|6;9gT!Hg3wX z9q;>Dx#j@l0e`fPw!e--HM4197$Jb%+U~KxZETpBD;dxlnKk!qXhR+rku2At*sW~H z;R!Ib%gyetyiuvsx5hLKgamu#V;Dg8fUGTekT$biPpyTt>gRA^F_{Gy1%-M=6>3;+ zMfEzQ8_f%SWczO3>fmOV8nm17-k><;=PRiD+Zh)b$$w=EhYcc&!%vy@Ok4FzXlX-F zmjz%72fvR_ttx>|eR{f{g?+~?FKkA~z9TRsa-bFu)R&rCWP+X~%+qFk(FA!CS=;yL zA9i8y%gQWm+s-kySq@J3fH~YJbik5scG=%{klGM{I@vpV?o~O2t}#0VgXn&a$zd$j zy6ysaeShV2$xYpq-GfUMno0^HZ8PLZ|1)I{U|;;lG<8${8bbqv)-zD}P*@}u|jXgq3$dWiI8!<=VawM|_tN}>JoUVjO_F-koX;ET-0uoPCQ4^S1udmZ*U z;@kbE>_(#7c3sdC`u@aBILjBy|bKulf7fWF$6y@wrZh;=TkH5?gItrtZgByYpZ zCmP%Xyc&Bi4KG*#eP(ahF~=4n-t4G}psoVr`c`vdTD^|->|N)ZIBq!L10xf24!p|z zEq@bF%~g+Mi|DbE@*)rJQW6CKwH4jBa-OiB!Px~^El;=~q8jDn7Fqw$48ZN=_c7(t++@sK*aH=(lB4eGj!wpH1{Q{N4` zap#Akz=kI7L))_&ddnbKlej_=*UlW6tWRx*!KPW32i%<*w&@{rxQ}5}d}t0t>M^aF zb9VyWuSbhf&}M~n4I*ayKc~Ap8h=gZR=OGL&Tn#x4)bA2o~z_Kw`;j>S73ZqW*dl@ z5oiGgt>^`IeDGg;bJ3AyE)SaS;+4x@HxJmdf}H`ot42w`zX^ML4o1id=2Hht)5$o2 zNx;oFK7l?gn)1J^hHyTKXmz53g{KywfE2ujYKnE<`gmou{+JDk#Hz9Qr zgq@aM2hsh~ra;F1wX$-U?b(0|4mHfEXhaR!v+v$~b(?V+Nu(Pbi|^T-SHKSP!mu0t;L z3?zL}OXWp&aJynM>ayKJO@9UR`4;24-RRaB zE%3`5cRQLF+Ew@JzRGs@&Lh0+*EGGVmXN>HM4+~-4sD=n9-W8ne3oQXCG?kZErXZ% zpB}r8!f(|)1%0S1yy?d@bAYyL_jwtlKMcAuw|ISUF-&u6FNR%_IN3GuDrmg7-}U$s zP3YA}y}t2n+UT1r_kR^#jMv1*!K!TzS*#rsdg}UCFHd|z7k3?$YwEa0ECl7N2~)=5 zeE!2v2a4%UE%#3U$j0{v_3x1{m?7b)n*sM_Ko^`d3B<52XF=MpPi&0^@%bM2pc#}N z{$mF4(0WD_08nq+_=hXcDV8z*4DVnTI>CKPL)?Gz$%(U48Gn9j_710Ir~EL7l|>qU z9&^GG+6U1MRHG+0hc}PDMfwh#qZ40@jbR!p$E-2B$$4jMj2GnL_i~{0_Z2y@?3^W# z)&37||NZw9E5bQHq{|sHNziY6gUhQL8xW_Q4$Rx%NYoM z{GLugm856;>MiN_(U)a^7XdNPAPdo4#tiG!Z}5MT=pG^_)by#VZ3WJBxj6d={PRCJ zX1=$RTu&PVF*z`kdQVM%f=LY#bOYT0R!?$DNtAM8uRPAy)<_Q+5~D%FA!z{gXk7jY z{?U7Gf8&GXD4Wfu^dMURx^LglbM9^a5Tyx=Qu<^5UO&G2?fWA7)W1rjPp^J>#ni*d z{I!0JzPfp}N|Q`PH*36E(vzF}SNdZX6+9~PJi2*&6@T^S>gI2MSOxE~ED>2%;*FaP z{-;P7UU_;IfA_}^G5c^8{h`@4UA?9ESyd)H({HBgrQhuzAM4$wkN#Zmj`}4h0B3kx z=(kU9Xtz;cW(7-xj8>Uck8U0s`sd%iuk1mpgjLLZ_^V&(hxU{l`=*SWrx0rLZJDHH zTA9Z`|2+N}4|A4(nvWS&z|`^f2ONFacYUf(@e;%xGQgHr_Nt(>=DkMjfeZhGVzG$+$>TmP>mO^$?4-T@$VM zyG=VlntBV1F}#=-S^W9XX&Do}o3*0%5puj0lS!#geZLP*o%&P9o%S84ESXf9xAv}n zRL17XBn)wXXjsTP=^Nfu=;5*xrDKfeCBATj4j;T>hOp9qCmPyKn73kF-{r!6g#tmLJa#AZaMJru#gtUlwUN~RIrH=z0fSltIV!VF+^PBh zDPh@Oe&zjc-5_*2t@*>gx9RmzcknqRXegqFgJ=)?5ciE0R7z>}Qt3J^5|LU}ejDHd zmSmYz*!wqsetYxw{dZ%jM3z)Go!rKE4MLgfKw6dY(}ydQ*fV$pPUcj|gpVszKKh}5 z9*#YUtI7s#0&L@RFMXtg;d49Kw@s1R)`$da4t46OD?_4-HsLPZlyQ>iovOv~KVfr{ z6XG`3QZjQ?N-$K&tVAlM=(BTVHIWzg@VBwfcdA&5N@uxoh~$6-zN(z9IU4h!iXOK^ zPsyO(Ma|=3cvjir8VJeirH|^and+r~;7NHY!gYYF1QV8fZ?7~t5pFA9&`#ACRPb`K zfPcWB6R@bF3hqkADOdzl#3ovlNPbSouTQK#u6Jiv=l`dxXXjS`a0N;*snf{ax%Z%d zIR-$Qb@>uinaBsc^!IH?E=fLw!Z|!3NwsV3ktNLNi-LoNC-epcn^F?~Vw)F#iFEWQ zsCV4fJ5l8}8ctCMI*wGwQ5<3u)$27-3;~K^ujAvmZNN^Ne%-ZqctNE^$|KOJ%Db#& ziFetjqffU;l0sMs09ZP!`AQd}g2*2CX;etAM0xZ6-OV47oZtN}diz)UrazXG8;~r zDMPBwUq(!Oa;2Y|Zm)DKK>;ixqV=`O-&(wNN`ENJ;PfxlUy!^*MV3x~|AD|r9$D#< zgBQ3)vDvLiYz>u5IBQxss0>bcJ;ghqwBk$_0^Z@Qn#Zfdr>Xn;eDQL%OZntVTMh>- zfFGUZIIu2hHgH*vwX*69Ts9Ri(D*!?OW#A8r=<*Zp}OQa;Cx1W?X4EPKqeu)5q6qV zs&}WFdiE-Wucl5UuNkL*fGC99@btUpp&r`?QgfH$er!%}dmH!l6$cKf;=a}Y0p@Vu zDo8}1l&W!sZz^eZJB&3{5o%7w1r5hF3`D8Q^3W9u&sszQEP4Bd~^l`>P7^o#q9O)8jbz zh>@|*3*g?;0sH5@GEPyJ@%^A)Om#;QDc0`$FqUbRm6E*A>NSjskz5+YTIW)jvfYhL zEM(aHI-Nb+O)>^6D+ah+hya21pwa7Lnu$bGGPnLBXAc`iQ$Q59dFG5Z#Ond26}h3b z^R^V2h{tyyUoW?RrI_oE{;L5VD7@flkUI11WS57?(Y(u3`nF$||?eXzW14N zRjqD*a~m6ZO*+U56+YMcIC>(YS|J5<1CU9fqzM>*m*wf?EP{?3ZCzN`(ydk95qeTs zIz#HQufo5~tB}Zbdnj|}v&EchD9=!TMS&~507@kd*c>yu4r420F6eF%T(91hl1e{jyHkTANvU<+?uhO+U3a zNEL{B;dt({$$6DKfLiHxA~x9ri(0eqj@vCcctw5g%+w|u5ab=TojMuNDqzM5XjMVK z0HikURhAP!iFY9y;z=%r^kV5GXNL#We{dat>(T7MW(dkzeuVM;pc z303!OfqHEjoOAIa&6s`Y(vS}*c!gz@OW;7#bn+bU$}i6aEb+P@bddtc)_&m~ykLH| zp-~x83&pK3Cvy5iW6$70Hflp!Pn+RgMx@Wr5U!~?p2pozL13k$;di$u!V>njpPG4dJ1r9z zZRaJQk_KL7L_9ocSl9hDh(;nU!TJ$@pbhYRyIWSmc$9n_$QyRJKg1s=f{dRZYJjP3 zf|?$TRcf3eXnFpRWeUSE>e}((Z?uBCI$nz zEdBOPU#};Og-KLbhb7}T6O0QUQMxepwsxV%Q0RrLqJ_*y^S@uZ-Zc9p(MT(QhGG!Y z5g!yKT;W?b_qxm6@WFXTUvhp;>7R?!9S& zQeDUTA{pYP@D+C2HUVtRE_O{=QW)-QsH(9=yWP0H6fc}EuYi%%l z^uk@bIMw|DLpNJ)lZe{mQ~Lm}`TlI+AR;SVolFGPpHiCA7CUNgbem8+Ac}oT~ZZ zNLQPbt{UCZp#TN*wIo96O_ka(bW8An!ogY9I5b%Y3nkI_{j9qv=*FtE_v^`(RW$_W z{{EL)4)qSqd)>@`al1su6sNU-#az!#v)yUqJ`0Cj=U^(uz(9}}1Zf8bP5$h|ENICw zfT7cHN(7fu>42J<)P28Sw`$I5*Nt{=H1C)A|N+{fZ zzhDp~cP;`IPAvim=^vjq1l?108GC97>bY>~YO}F~>W8U+6ho2Sz_rY=RUOPLoYo%2 zU$)adw4pI|kB}wHgV_->uo)xnhHEodG3`j5Z*u&Ha2-QtUVpxh0tkb5r0x0G5!OlEDu+Ar@oFJvfS9Q+Eq_f3sOvN2RzNQLtf86RI zr#x8}*sM^0jhV)D4_Q($f9_(+WRW(0a_mogVk(eo@@RZP*;>uy6WT0I<8P=3_0;x_ z8d~}Zo-K^$CwR@cTf__K@SjVJM~s+z(le!}bSXaz>1lgES-%8p_nh$3`e)}q)Tfx`&s0{yYB}N0|t2iT=z8$Z&#4+JOv_UfRP&;O+-NJNbB^V7G!jiP$rUFLxcizjeEEa$E1 z)5Un)>gB!_bm<;5*vC&{2ig2ENddryT4={+c8LV&Qf5KHeR^nTKl|XS+=RwhP41s^ zx{v6R^o3g&^ET<^M#qZ(FILysepL}J_EX2$U2GhOlVIbW|J~0Oq&W&9k(OslpSy^E z;%(}-mOs{+-34DM6+Q)$l2KS)~ zH|Gv#dhLdOUbwEerZqEJm)akNIAdOaG3xv4b+1heuS5;^t&??gFwD20K333s@t5*Q z%Zf!pvfa4J1d^EhUdpK^Q;huc9}6jd3{hvEkkS3ph5Mtv2js)&lrvJFyz*cqI`2?3 zke<`+?{gUfGCB_LT*qA)9tph4U~l>{z{P8W@W$MNK;w6+{g%=%%xq;^bj^i-T1%q~ zr{`17VhuI_Ei?T{JHP0|Y!*juf*H`!3ruv(LsvXab#b!V3a*gR-C>u%0`tCrkZL!Z z-%Sj&@#R_VtsmCz!pkppKjqVsm{9dHn5nPr@(hV1TFD|YKdk!0U%rpNs{4lshq*%0 zWPUR2$EBVKC z&mGw1MUEd*dXViM%=C1h?mpc;{+Lk05{iH9-}BYc7jN?9!*E2C4@V!5nEo-bf6Z6P z^NXVyB_c~M=CHEBUoNhX%*QOrd6G+inOv-n(&x{PFMfetU>y@A6J-G_E*9`FIbpD5 zca*;U=6%ZEA17beZQWN(T+hmaaA8(bz34@^T2<|0NWQDuty$y+;0#u0X7#-Xx?}Ly zFW!_^;+f(>ZP?B`Hguo6RO$NdbZjW>rEs6Z*2vkW|TVQ!kgv+}t}^_w~G9)QjZmF4^4F z<6E#ykX(*VWjQGeA>q`?k%AM+xIHrM>!I#H;ci?KUeHJsu0??pclu{ac+N`mGn{6B z?)n8uv=(6BG8e`4dlW|BJb_Dp)z)lGn=Q*p!K9Pqw)S=_L6Wkt_etm54G2*UckN7n zE(%bnDx3`{$#R3E`Ay%o-F8^sB~6P8++JxNp1{XRbB${A>b$8ylXcxDo4Q{$ZG}hd zn$69=ZUvQumKKZYU(Aml@Qg^B*(;zVnZ0zo>APjptpU)RuGjh@G}qUER+0#h){|X8 zD<^p=t%g&SrAjvXXTb<{A9ORPL;MEdD~JlpNOzSs7SShxbeW>uetEZ!kIG`_YSwj9 z51Z<0*?`7SGn<`O4rpv_GsYD0GCpLoru|?MjOsS3w@4s*M-Dm!7bhCWi~9Pwgpf|TNUQB~ zqZI-Wwd(dUS%NIVG%sF%|K^yR@6y*V_VWM@wjuZ34$>UW3--CUn@PA|rg#XM%0$f7 zcG&0}Ue*4R5Gf~rI4*M{R9QZVV-5+^FTwORO^mQd;q5v!tM$?c2 zQeAbUC?qhkdv$%fFATju{#(+4$@*P0)F(-^!5q}I5b`0LnxvvF`ddG2Mp2dLloWXg zs$HyT<}V7tUmBqFi=;CNW_&erJX2s>5GnopjSZ-ijEF#g@E7Bpky1VqUN22bG-$Le z!TBlVy}qyRl26AxORK(tkX|QRi4%CvILHO`$uk-JY#5tDU~ciKx~i924-hI!6;!}- z4W%6rxCbKx(4Z{)Y`-i(-Tv3cDG*GE>tsQSEXcvMAh#Q5igD(G>ncyp9@eeTU1&Z) zE=ZuW6J*GLc2S|Nx104A&#_7kFwZc4sRvyJ)Xo|6uA+sMJcAJLi~-KXOGhMHh~@y* zPfZ0;c#WBQ)4@Oew!}y@%==~y1S4qSM3M_b$sm7~oO#>{yTluRrD?5A#*rtNapJhoBpJ=3opZ;+ z|4036N|!&)00sv%CzM8kno&~`{2|t1IbiRp$@w1JaH6b8mrUEnAQ;JoRGtVsv9-Q1 z%#Fw;&^w6ftzoKqJIwE3gxqu0KFAiAR8WpIy`?wFu&(E}Bmhn=nGa?ROBG|n-+aa7 zslSPThL%p2hQ$LVFI{kYbNce^&FPDav)AWiJt(LOxvOvvheIfg?8y)h19A&c4(Gl! zvP;G`1h7H$hC~c#ST?_!>{MwzFbH%RSK)h8T7B5A>UJ|YgNp(PN0vu*5z9<=8dZ{m z22md?ay#e%;2deE=?zx}R(Cc-aR^XcW$u=L)NGyJuB&#yJ^Wo22;mv6mtpU&6(9hK zN9C}p9R`?&H^ZkYau*i4OS9BTt!d4zONeoWH$4V<8y9T#7l{TSDT5i9UFfp$*-M|p zwZ4Y6mVg2C6f%5d)1C3OX^w$Hjf$s4+>xOB>}Lf)cgKvTaE2~E$HswQeVc$7bu#ejJT9Ar zMbq1+ogXl+A!x>@TiwiX-3lkq$$sm9fdgVy`NXyk)<+q4ekX+MM3~F^j+rL7PP4`pqzKv9fqrkLJBAX0IA;jMP+uePlYddbWBx3)25vPnZ_K0#H~s=B_pHF2x~+!&Z70s6p5p6jnw(wu74k*QP{DU!vSML4Z?~y{o<% z(0F}Kq?FAtX{kXh0495X13MYF5Atg6Nd*)X&Lcfd2v#a^+Tinlx44_Ynv+0CEX9k1 zwJi=bk~MO;%1P+{jIbTr8JzG?3_R=zB{tlAbRN|o{szjKoNDXak(Y_mZuT{yQk0Rx zH7(O=i;PJf`5$SKLAi&I_Tpa_+gTh#*P~uzSR+%6GSHLYWVRBMR2a~&b zOlm?3w0A(c0GFWMx*yx3fC}6Xx*oHENtC$?iSh|%05MJc7$@iPC`kEM2MtjJheBPe zIh4ezN2a&)TKmd>m&rkoE`b6=x_mfX6c8?G>ErJ`?kp*rxHHX#b7v&c&PuGz&`O8= z+BVZ?mP147R>-K?L8U3KqR4R7S9AMuUw_;}&AK2{_vZqtbkpuNGLe@$UqaS)o2HRmh(4(;lj8qBw$O5{#{peF27unb#;~oQUV>2p$K#aD@J$vKpsxa{Q+|AK+yPIZy;I#}+ z7<}7u?{Gc4by;PUA%zI=_!+TEXWNOafU| zfx8{-9D=3I#ZB`NV_b`U(L-~DLXbRqZg%?WRq|Z>eMwkoP`*2RrK593nCHRi#o2j( zg3x(({&E7HJSU=5?4j6xiNXB@&@}GcU)8?2{Lr*5_V{(5XYx(~$Y#Nvy8b-jOGIXj zzZgFp{U7urXjh62)e2oE!X^}LZH+bTU)d5 zvT60G4VXalq3s;;;~c@_VX3HzQqS&xgSyOtV@gk@OS^swbzX$tsoPUS9W~Y&Iy;6L z@FyBQ*ZTcXHzO=bfe@7ej0YS5Z(ih{G6_41u&&@>x#(*1YNc8ls0gIIrVavKc<0El%l8cYh!^1y(^0qAv@=md z1{9cEifA@o7(aEFTr`6ohB@IjICDXS>5-26uR*>O{Ak@zX7*Ur_}7;AR&lUtsFVe; z|0u?=LPnLc!>GRhb>FSvK6o=={oRMw4tfo8c}em0Pdryihwc2v&i(g)g;hc`lt+ZU zL}`7yT@PUV;MR__a!!B`6!Acd7se8&73BF)d&ST!KvTl!AlSW{Ys!iJdC;=SK3SP+ zb>nz#`XmwJNaho!ZOQDt^(sKQVboxy0-%O$&9G(T3yrv?<2YiLc~<)J^sBS;vjZ#< zT!KbV7~K7Ds$mcAF^si;ZS+Gri&LPQ_+nvf#*ct!{kG1&LeoCEMhJmzn$1uzuZhj; zaO^7#e3pMl@5b!YWzbXCV@dH>;M<&pr&z-E(wudZYwv#5yjeo|V|ytEg4%J$kHgG+ z2vCIx@5#S8dwZb=k0sdh^&7nwXm6ZR&fU~5820{E3qIt5D0+KtH&Qi>Oc_mvL6P3 z1p$LiX3{>a{`&k$UGlsdZW2l4@r+59mnp}Q%(wVIVZbIl(;rIZ-pA*7^6ACV5Af%| z+a>NWWo~41baG{3Z3<;>WN%_>3N$hxFd%PYY6>(mGm}qqM1NUt+{h7rUFcVEjR2tn zO)vZ4(TgC7>=^P}2C&u`8a3E^pUQ^A`BKDoI+(~D`8 zvnUrLy4jq?&wnq^Z~hItzC*_7>ah~AX#PQT;?U=-d?_1h;8w8yBGBFRabMGKy(M>ngwucH$FkE_0} zqtCl;Y}!xJrmj|H+YFoGTX<6A(r-S{#A=(RBxQQ{kAHDJROPmgs&ksgtFnh5B%vaU z%WACq^MBoZf5ynnT$zMdq%`tf3{LQZ6oo8=c>t2EwM_MJ5rGk+Ww*O?eR94V}z;3KCg2acGWkgUbr?)J;#05yr-Tuc7 zoodZOxp*3ynp{o9rK^p%Wlb z>K#{d-k9zqKZHB1r z#($_8hkC8VTObesuvmjpLK#y#>hQksNo<7{l2Dguzg=c4Du^=nb%`ld4pAB5U!$sP z0Y!GDvh;0?UWFGgKwx~ouQ#1RF{)9FOCkzu+%M`d4)$jFP(r|YL|ESY5T!&~5JG*m z1^aHJjMcQ;-53oh+XgMDqly9e(ZX5@;(zyEM{LgH`??w%6{ub=c;r!3%at6+q)~eP z7&V{TuCJH3=R_YS2*;>!c$5$(Rm^{kU$)h{8xUw+><=JvG=zv3ZB5?UJU^Ok3II&D z)n&B`vI#Q+HpMj-Ff|(IQt2m>jL5>4kINw}A2La)L*a!k9V{V*w8qnFJ87d$`G2T_ zva70HAKlgCzOH8qUFg(w_N5Y%Je!!;REnw7+r5`ekldr$3QhncRrL}P{1L*><%sqH z1Cg_d3lgs5{1;%+mArI74Yb@MHXjdLOMGz@-@04=A4$nAnibt+#^eya(76j{u z69Gslq$(=q!EKi74E=1a_J?V%TYvvwOxHlcgsNv_;J?!~oN(^(;mMV@U}h-e$$}YQ zl!0=oD3a7GmupM60AqV}`KlSlu78ARf^d)plkvm0YzNdF;H7R$@Zj=7S<_2JQ>023 zWWL7JQoVO|QZe$Q54@ZtA`1f#Jvgjt@NR>VGb`jdhY)ecZ6VYiqD{A~t$#6Q=Zci@ z+*Xi_(H)xuAIj;RE=bQ70-?U1`ISf>EG@BS7z&tSZS=K*OJ(7B*w$48F}$gP`ax!x zP@Sa2K@Mj*VR<^k?n35Ir*TFo%^icBITaCE7RQ{b0gMW$M0sYRA0ZmW2QC{V+SF1R z#}({&1_0@lF5qHQECMSR5PuZ8Je~=FiiL(4W`IFxUeniOsq-9a`LD68X0r)Gx#YZ@{|7sFEmR_vCBT_9ZreRAj%X$YmC#2zpd=J_#XvNYcCDjtj(bTUN>WI_ zLNkp06hyzB86L9P6WU)3Js^!te+Tqr&;X>=mXv4Hl^NlMr`}JVseeI>13s`PL8}W1 zGaAJ3vaelc1>sp2=(n5Qnj&itnBIWoe>I`@R6;n)sp( zB#~+~ofbN9xh|yWOrUA1Bu&ccA_Z2E$Sl6PcMuySts)jVs3TpIMGfV)X}oU$D?!R_ z-QRcp1_a%;>v{mz*niFvF2#Cv9Mw#|(FqOt7;CbugrC=NL=V+R!Fj6S&(uniS$cUx z*qZD`%R515E{`4cDTe@le}Z zlL1XsNg^YuIeR4UhJ`7* zvfzMv*jsof{1_xX54usH_f%tOzZ^Vx_M3xBl=#m21R#Dj9}771Lq`K9(<}n3`xKoJ z9Gwrp@|3E8R(}Z!u50IA&t{@&{iwl+=^Y`DxdStD6Y5(q>P!dv?av`XWx{ye^-BW- z(9Jn0M58bV17Mf2o2e$C`{m-Oc602VXm=5?35Eb`^A3Q^cYhkFb-WKl$Q8f6Ho1Ve?lNk zx#+&Gmw!(!Zci+3r(GxwFnPZY1I}h@)6Nx7a}B`$u>QnhRoVAV`Kd-ix9i)d-?sU5ydVEf2cCyP-(Hr3Jnp=n`LP3Lo@X_R2}KPBQxuP{r-SONH)a3RQya{nZAuo~c7GmpP>9?t<72Ewm(8cuxVUS=ndpAi z4YeBf=#fIB2M%2|9?XCY0(b$`jO^6;)U$!x7zzK_nOlHm^9g#313X|^N<4&z#+5wP$b^Y#} ztCufeQ6{q6^CK2k{U#?lcdc}4XDvr8k7NDN@~RVua+=e^6_efkJ_F}(nQios=(6A( zXSY*2@5AxF+x5{Z#AG+cdI+o@!0}O&Q-8el3M~G^oL(h?fJY3Td2*17;`iE`${gAn z#}-p@+Scx(*YS|-GqTGC_<(1J%7MQ z)rlEbrF#5`BWU1oyS2LG&?ReOZ(o3}HM${K0&6RKc>bx4R^?Llh?|x1@v4AY1ej0y-Rj8Y>Q;a~j^8LH(tAFYUmU7OxARYazC>Zt@ev+!1tI%aQW7hXe zII|EqRm-hP#*XSL4ve_a9W0hWR){IG8UwdW*Vd@3LHpYVEd%>3!+0X50v6Qv;9v+; z%F-X(8NZ)=fRGoN9h4kz#2LsJ+*!t#b3B8tmonFFZtZ`KHzb^%e3+si%+S-qB}O51 z-`U`NDFVHk@lo9`M>w*o2aUp-F_@U?8X&r3vpY{q~=J1 zatlN)NUBGPT<{r`fqFqZTLvF16yas_ZgZz$$n61?kGeRy=*~G_H6|?XJO7;l7}pI# zQD#k6{8WF}j*+GVb5$!i53;Q=_p0k=P@hTEdKL__Fs_Lbkr}htvEPMbpVUpt03B!9 z0@^3iKE5`>yjNRGz#{u(GUQ6NG?QT|2txg+!Uy2AF4ENThA$=bToBxIt`E*&!R)T| z12$;KTm6m5vQvAbKH&6GIeloRG|7nt4!!+LDmsM23y`Ke^^`3LNp`OB=MCx-*<1VZ08%{HS9 z)xqY(nIYac$H$R`qj(VucPNUm@BfJ#y?!WK8LE7P|4$)tGCgMcW>TY zzWw{PlS@xjSw>Rnz6Uus-&W=6tat(1b0~jb0U3%fgU^Npk-2M-SZW4oHj$7R)gw|N z==d;>74vbPEe%hGHZ#f0E+~R32%lLK&1jCoZa&jHtEDe(ew&On{ zm>=-2t!k^g;$Q;Ga^`6FmymJFpe!)Ei%CIQOU(7C~k>lLjAX{pNty0VRWWU>Z*;Pk%X{tiS+jLj1y*UEM`9h$fL(YW>~Y zAEM_tCly4TFQ}loj9CJ;?0fwFv44zMs@4ieFA5a@<;~eY;NSlM+zFv(Wo~41baG{3 zZ3<;>WN%_>3N$w$Fd%PYY6>$oIWm*MfkS`Wj@-tzeV?x=1P07Wx*1lniWeLRIC9`5 z3UXw{p1=V#dEj(&W|(w0+a!BN`iJ~V{_*Tf-N^2i1wY7|Db{6Q)?RB@=@*fuQe^m_ z{d2Rw`TdWjcp7gq@pSXcjig@+`^RQ4zPr0wXK8N4-3CTh_?x@O8~#{|Qi)P)akqcJ zNxpk~d-pGx1;)udHF;gZh`TNPrA#FZdA&(~`tyAv?{CGQ+Cw`uI~*_TDpfg;%xKUb z`u)B+Y)A2b&Edp@{05YS(S}D~UC=E#R zEEj88q!mqfX!eWcluV1lFZbr-VvZ`Ui@FXw-krYq{XfYH6_~AtpM`bbJuc?0)1tzy zU7uH{rj)gH6*x_iySh;v`bj)>)=`oim8(>1E!}Lb_f(y#s;)Hu;$w1Hk*$ATZk0*1 zOzFgWK)|%Y#4zG;+U>x`Lw9&eZ~uAsmm68a9>mdp4&~Ko?)eKgCE&x!bkYQ zFQ`=gsf` z@!_`AU>jK`Z{Pp)?uYlZgJAM?UP7F~9;{)Khj!N!3=|aBJdsKZus?qW*X#XlDmYYC znHHJx;U{^-$0Q1$JQ(!38AUgZcKO;aUzTawp0#ukbTz@%@a=!wEc>riYm%nQhhn<8-X3A>jr0mQ=c>bEtzdHf$ zY#~{|_ZOlgQxF|PJ7Rdi&ul<{u+OCi_lJPElBCIjfmD?toDoZC^^URboBQNGNz?TH z7SKIjnd4GekT{L7(|d}dxnpEu(n1?|xH^;M{E$hPCIn`>R$4jZ~pf;izunntgIY1H8x7%T*{YKSeZfqth{SF#7TGj9Clcv9}Q$h z<<6PBo+XO9`Yvr z5O$!WtpO}f&sYf^5Y}dY89NqN!Ep%4*7|Tz%{K5}O2u0$8(4|SWEogm1)JINzFLn0 z3wpB~d(j+^Z8K0NkvSw3{@kSpe#)5ibmH%z@PoJKb}MvR`Q&eQU9%`TvQAx;C#%J$ zxIku{LALE?2iuS(L{hGjb^)Y0;*pE+FHV(ApN}no)mePizQ}!l`TO?Mu^*P71CSQ; zRf7pHIxK&j(j~}SfewBcQK%Tv;w=Z!X zkFdLb<4L4iOgdI4apMl6m(3*Qs*O)^N zo|Ij}O-?9f3rnScQYp(&vX&%A0)Ph~D=V7~{n&jH`+nOxvo6yTD6R2^og%Lon9j4a zX9yheaI3Q9MCYeuv6)z8X`xiWL0uQLw#_0iR^us5^9T?j`a>)F0k$;&y*oe#9yaZ0 z+42H@G^Cp>?EdU5mwgB)QGVnl7h2EZHimWrpv2`yN8lZQOsrK6Dkb;l$>t~_jzbR+ zGj;8lS|A3W{S{1}mvrpA-+oNq(bRBgAQn^tDxh&tke8*Um6rE_eVbtbMC$<58B2AMd}5aUyElQI;w0X8 zMQ#fqoUxgIV2%xJ7eo%#>xq%^K>vsHZ?_ivU{6>}rGkCUSj1EwlrPnvOHQL!r*PljS51`LjY~lql=)hR1xO?shZ*}Rw#eEM%<*?bEwk=^h zfoc^2x#!8asdbLgX98+n1_o(&wg86lw0RZ|_Igv(u)F1+WJtzlQ6h zns{h`+XIpQbKuW(;Om$8zLr^#%|<%ed`A2WKkh2={{r2I@xX>Nle;;H_pf~yB#Y!| zW*Fa)UlBlWx9vQuYY^}uXXC6^n11J3y@{)HRb`&qorVDeH4?pGqm}hD!XI+4b}m&V zL{M#h#TLAgS7(zDp9VyMhZTQVicb+o;K5>luE&H zh6FkGC$wQm%KKO-yLLnYl-eEXEv~!Zh9EubK&&rH8B{Q<;G^86b&!&CAJwM5;G~z} zBnb*A(0D91PNW?m%Has4pz()Lzz%#^u9Q^{;vq`zg6;bT_lCiAXn6}|LB0gRP~@4D z@`)8V1J<+TsXK6~oQO|64Q+$m0?_dg#(qoD#Vd}*IFubmtU)8U4q0eJltKW0Ma*P0zWd7^@=cm z8+~k2pAd-R9AvIMTUHqNWzY18PCf9WpdW6*=79RZavqm72YZJ;`Mywn8E4N#0@z)7 z#g+Vb(HKHL;PVBDEwy1TNp=I<$j*h^HEyQUJam=&McV{yUrP0L$`jn-vHl{#tf~dU z-oD2+Pm#pRNPmlLK?dMJE=>~4mCjt-70Yq3)ZEm?j&AqAlJb>>WOm$4)KsiV^Z zb_I=gt+1hYHU#Gk5^;*b#=O<91QxEbxTL~M2=~pZzf~2~JgJkR;VwNHTmc$u?YTnE zeR`M_L>uT+<_SI6bKsg=>9q3g@C8rs1WUu5o+r$7i3xJ2*;zwC8T3siqir*PaisKj zsYl%=NImdzcRcNg0zzTwhITXUSdka>EdnIWasfAi69tq4yj&EeDlXF83g%NR%fk@5 z1(LqbT(3ZoU)o1U^)eOT<_ylHTSib&++gmgfglTaMG~&oR?J3LSl?_*Us$M68Dk?L z#E7kq?myI9W>+~nu*7PGeP&~Sz80YhY>$5pM8Uq=-J>ICETg%1$vF!dP~;J1((b66 z=>&1`Idqvte{kS$ON6uGh+SAbjRqZ z%{Oumyz4L&a?Mgk*m$>pZD-c8xC^F?q6(o2iep`;2>vD$_pfnzB6zNa9tEtxJEEF+Xn5PiXRfN>LL_~PzNX}~BKlpOMg*PXpk$y^b9$0%6v2w0#lU7ss?jCvn7A1nHQ%V{{QxbHweM+1;-nt`~g zDk^QUkUrP5IivtLZ8j(B61{a&)B6rluKx8acYCtLQ8KU}_DdcZ5%U7eoiFmq;z0~h zzbKU*!IE`;;l6!}D>DSECv9inb?!gr99$cn{9TFEIU}2>v|2V|;k|RHasPrwp z1$`QYdrL#22sjFp(5#{>^?-G*(Gfa>AQAjcHNc1;!1Jc!J@0n3t#KILd zmNEXekl)PB``{8k4|m#G;Uc05&+Npu1?**u#`ntG?x{nLGM9k@Gj3;pD>80~VWZ6L z;{)u|QA0_6`Y3exDB&2^K-{W!TJ>@0_q-H;7E#xPx0Is-`Q&6*Goy*HnhI=Wc#4>U zG$8=Fn_%xNsV;JBo*x9b007=rhd#}VC#3WH@PA*s9@}!Aw+~!_D7v$S-hU1e8DiiJ za-@l0R9;0KdLEU30dat- zVaWx{fRgjA@vnHTYIJI%*R8=wpz^(uBGd&U4zX#1xjsfu=MX@-J#ZOdL-!Dol#P7n z@Pu{SD8_l9lt_){-0MQ14D;w5c}x7{svy+HPfAk6Rx;hiHv-DrfH9sgT*h{PnP}Ah zd5G)X|HMgV1u{PPuOooxfBx+@Zu?r>{)82r`K6uBmy@EfWP)C4 z!!Ae;T}&hUjugmzI1Z#xizB9g)+#)Oj}*(oX&qT8_mnji?e~@%j~!sVYODW|eaOLk-WWuFfP2OvFK8-2ZAf)Q@{S4OEq_G}SdV zJX~9)y7UGY>(Md14MlE-0>^l5XY6Or72y#;sUS(tre_DT?8*Gg*!XRK@fs>9V2US? zDmC`uXTRB;Ak=4G7S4@eF5aKUe?H)dv(Z)z&pgN=XnP&Hpfh_;YWX9C7xldWKsiF@ z|G+>=#3r%ME0kJ3jsEoh@8Y{=d=?7UD1XZ)t|lLK*sA7q0x)xasfj zZvF=U{XgI`szqgPWOH|RQj}5;tMxZ1pQ3+E_uMc5 z$z4^Gvy`cS-ji-ykdIBJ9#iBEI@r5~=nKqS7!ii(LKvjehD(BB|g^ zn#b*-Se5yX+~P|jqhXesM=|K5b;z4CU+xM@7TdhT_Yy{vG~xO^)HPM_mF*>YVpTDV zWi(@{c{6zWB|b&L>BLQ;e&afLQqJNy0sSM``s`nSiyyS%cmhfbYqO*$AD4{01m zZe^~2V`0}9r-Ckml@lq)LFXLgc{-(O>Ku8_RbYO-oQ=Gz&3H9VqodW%EaFs$E%#Mh zbeC57xrkyK#hDF)kY+-tS25@I1z4mdc~g*461InYRkX@QEQUk~ZJtkblvGMC(+6~f zTr)9?D?25tez#LPl8G9>*JTAd+?Cz7?mJR{R`5i-O2#yl*0n`dRyPJz1Q_q)w`Et>6@bW~?MOqL`>eZ?T1K_U9imdB?u3%wqL^&X)*-`i=3 zSvSJI2W3!SM=w=0{LO`Ao^yq9?v+M=CzhA#e?h_zJk z?WK)BloUsvq|JboLnJ|->U7k>Xax@n$4rYx4U~YTkr~>3au4{snJZuCcs9NI{kG*PF3CIr&U$fP_{KN;AY7{B+2Fj?8?i zvIEmtWk(9x5m_yT$gFSxF$A)zK8G69i;Tl9lRX z(Q|FlNx5RfYsCjIWVx4C2qp$`6B@@3aWzwfe5-1V!yEE8C}}}m1%jkSVQEZd5?YpY zKiY#F_##-YDfab9RRJhERKnYT;*5gpx3ekavqS(gIoSX6Y1p5lebw)mnkby~AVG)* zM!C;-50sd{o?h#Ex|q%w$km zP}*CfSolZKr9Z&0Wo4mV!9LHZbX4@V_BN9Zt0}YzRym5jG`+&u0Wt9YP}m9qJjh?f zi+HHNk$r2~AFmdaJE-eqrQ4rNfCnA<95M=+);RLFb&K?=v)xO(Ep|Inc5SiSKr*yF zl;^xXR+h!kirC=&R8FXWQ;1-1b=0Ojj&B~u$Re$$o}Tj*x4dD>YnmE(UQ4dNwIQdJ zr?Yv?8I7Ppxx&KoHh@O4?U(A|C2Y-)+D8PMXwanz)O=~oW@G_q=yi>BI{V^GLjCF7 z<{~Lia<(H?ey^94lsfEy=dO`u>Tj0$>YdIG)q5bClVXfT3C2!;{7BmAtTSi{$PG1k z6f+PGIT*IRuU6Zpu4+hm6KfD^q;C;MkK+Y;UTFbzd2=STu~l_2`#@|%U>4){Mx+oY z7G|%5A6`Ev-@Jac_<1Ib#k;EV$|SSQ_&Ul2#SQU89n{ z2JU=Z;lU?=Zi@9V)&MGRumi;iKQu)Pt0+H6i9M}L(bouRGal+3HC?7iG2TW1byv29 z0{Y2LptnMA_bs>pejA4}izAwRRv=HiDoEIY0@`pe#L{^v3C*q1bS+nRe|TMN=P@ zX>eqe4Y>E)xl$I!TG3|~pH#T_hfCiH`LeBd;B%m)-Sz=@aIk`FIM4V44W^fTSCDRi z5pZN04_fKzz&X@~(8U-Y7fQx3@}kcQUawFNZG|lY*H|qNdE2T&tvPcw6H;^8+Y;)h zGCU}Mg*leO@0qZPwkz9?nzk5P0p`ZiKsSo_yKM zay{Wcsjvh zp6y!Y^dzBB)A&@f7g3vjw|gv_n8*O@9t|gdgVgT|GMJ7fP&0?+H3I@tY<4vY8{h~K zH*Davg%>(_wBSfFRCetF-Qgg2a&*o{NrdnaC0>-^@C|HKt0JPd4@Ju;0<<@Yaipnd zb*pW$dWV6%&r3C|gnF(AAw~@!F|UVtD%sY%b$diuP>QO-h7kk()On-UnW<4~k_E+o z`iM5g$Q{6j8m8W;%=>jFIe>V^?8!wt;bz?FcMa4Bd|dAgJ7ci~e20Z^;eXxdW(Yj) zV*X;GP)q<@Y4cK@`+VW~#yj?z6m(7_2i;Rzr^4^C(jsX3NNrKCo2t|*~;G) z4;@y7k)a*+uCC_8ARoaGqYn%V9$s7UR$QmW9xsF*E=+?Ln2cs5$0Hnb*%VR|z+5@T z3O0N(#M`c1TZof_TZr4#jl(!^=$dkm5Pxcq2w4Jqbdky^LhnGxEN+e&88jV#v2bU5 zTX^+!E5xxoab)oEHvdFRlnE+^wcdRH;^j;7T-6H+KxQX|!7o=Y^-&2@UMqWX^$Pl@ zAAfxI>f6b&NSZ+j92CQ@3BOLLbdd+O%2)#XD6-H-KnRw}cqm|cj09(LL+y+V4(EqM zkt>Edog#-V zL3*gpfc*R(W$;}Izhi%4fM8kRJP;g}uQ4?8%21$4^F|4P=D_y8^&=t_R!dDx5w=@% zmJwqEG_8sY&wxDj4T!7H>k9Z+5(o55q45Vm51{BzSKpqlH^W&)mVMrk$j+O@bVb9M4{av%=$X8=Pb z_Dr#aCYe1rH-yN4(#xr$Ny&>{fe@$UB?2CLA*^4_*K13%kwYls=z?U?Nhzdu{WY*= zl?)jkrWrNvrY)sUB5&=(=%}lNzE^9|T$0|8mvD#|yd}}OO9Tn_p4PAtjYDB>1)zGJf*s!Fm@v{xM*YyGmx1a zT~#I24eX0VurYsTanKEaw(W3p0H@c&-Ba<}dxF!j?i{=bq+QwP8RqBjzImj|NPF0h z;9|jGQu;K17~JZiM3}j@2EUHn{UhCvO->_6N06%IZyK+|JXyLp4(a)HwsztecrNgW zHp?FGyrGG=`-I*b$;K+zv#QlQY%73LMv|$n^Q7{Vb3&*xO$~CY0vWjCFq^(wDZw~t zQZuIUWOUksKcp)&Y)Ov^?DYWeVp>Gg;o9BgT3U>MpSuyPJ_Z~e2FR4T0b*PCX7VGV zU}Y{dXtp-#OJX^UG2hPcDhxJsQPAf4PsW0-^KQj}OdeYm!E{}HaOWV}>Y!JKx4<$v z>|4)y)GQ;Mn`>cPirQdgY?$w^1T zq73nW`_YDEl#u$$oWKtDv?t~0oMqu=nSc%LX+6LZ*|6T{Dq?~PZ-?-qatiGWq`P>q z=$(JNu~!BR$xpu1PB65(D=Mt5>tZ?MVbI^)s5w==E_4&C?++C^b%t9rlja;RfpK>< zP<-f69FrQZ`kTo>DMFs(tou-dK01PYs6me$M`QmJoa5Sb=aI^ee zH2?K6liQ<80v|_{C!{`0Ir!!|tnCknU5VoiD9BUr;&>)6@lJb&Jk;gqcdvdS&%u8L zqGdJ*C{AU-L*T_f;6?i8p72S*!B;^H6h&wl_<1bvv3yQCZfH8hjiq*Q+c zOj3D}Wv%UvB{>$o$(FR`0?CntH3(<{P?w}OU*KQKKc?pnfTTpbTrQVo5uEAiK7IOh z4}M1>CMcAD%)g7(!Jj{*=(;@!(e=Ua2Sj~{%s-12dO16ohB!*lYynSZ@{`%sf&MZ< zDMe`dSG2!;qQ>u>DB8B*Q#rnX!Rl!c%pe*^NN$jVMdhimrd%ZWEK{ zyN&m?NN*dbIF9YM7eQT>kLdnJRH&$sn2;FrjPl^26V*~I(NfGOG{hl^S+KsoE~;y^ zs+R&?2CWdNyAhLLXFnZGNtWV>qbZ?2E=$oan&P%A>I&6Y>RDw7H-@AX#~F8qh=)#Y zMmXl2rm&e>xo0;47dcIKgX&is#O_9$_0YIo* zfmUKQ7fp*6b<>FUwyu`O(SVUoG*w=ro4mb2o%#;Mc41Ob`-L$ar>u7n!V_g!-lA0w zOTb@%*8FiZc3FZ`#w~v3CObk$aT+G%iO^BZ%&sbg7#){lB`Td!kUyzQ6KNmQ_AMpk z)lrKU<;q9-?XAcgnH+!e{QlT~MK`tLBS3z}Vq?j@7zBtA9a8<_o&7M@mQo0e{bKXN z9bp>r5aR0HmnBr0x2}K@I+=pnG+|DJ7Hf!8)j=XJYtf>r?$9D%Lm*9DP?fLX_i(Ve zK#f?{10y3!02f0eBj8WEY31_D;|ji%*)KKq%DG3a9mU}PD7JrRpjd}Oc@CquSC*uQ z`4cfrwsZ9}sgnRevXJzv0t8U`>jf%0R0677_@PDZt$;i#(QQ-Til!?>`vQ$(mZX@* z18*qvN4~fSs$xQ8$yULY`6)|+&i~lzbWmr2k_NnN3(!`uBajUo;} z-H%VsPEHO_Up;?GDFhBiU6HZi@aUNf39gYlA~-#>8$F0#ruDobSB})mi**M%R5vJ} z*Xzz;Znz`|t0cUhUQ)000-{)owpH-bWf3AfGBE^)$H^Y+soc>3WfW&58&)jqkz8*F zp;?!md3OyKM(sy?BEXvjkM&AWP&#)Cz!1%#^iySxFy0Q0?^@$T*E@#)!fg_lRJ@R~vi zUjQwaapr%jE#o?swwKPlQR)blQ0h>%*1rV!wDr1K2=oOoEmaphC31-;S7`wY>X3Ff zXB1~#?WcDDjM&Plg=U7sDCL%$e*AcPbgG0~$b!R@V=Gw5u#6@NPC#0k+LdeOkL5;+ z;FF$=vdSaY8HY*4jVq=EYs;!TazYiI z#=)Tr--W>+39W31FthppLot$>IPGEV*FQ$+41r*|mr$uK9;4t{0iffjPDxn|>FvoC z{+DVNgx7`c=EiHy9(WgkEWXM=<#=}0a? z^#OlXWn+0cxp&c^;2uhx-~vF7%#I;NduD53S&x$uVpIETc1pyEMvik2nRq|2aghQ@$QNqhBmGc0?-Z8{DLs2DH$#()E6%M!wz z^dv^4UO~CJ0{2%7F!jCw1q$Q?N)AF|>fV3Vx>`sQyqsVyJR!Sn;6AouKnKwF5*AxG zZzH`(%2ubef!6D})a6!^gKI#Fr-S-<5g4h^PmD<-TZlA*?si901by>!%zUA!`D_x) zPBY=b;j2lMm>*xhJ3jyP-Y(8nWzBfMrX0@t{V(?)yiv4`!*qzQDR_>^?!cOL=plbZ z64@CLt7;O>2X$Fj(^lN(O)k|}gy1FSu>!pDgDrH@NZqXHJq2(he@L~Zt ze1zZTOI0xDif+Mulv!P%N03K+)KM$(`ejG!#1fU{W+_q0Jw_q#t7I#7c9zr# zPM_=-xev!DhZAlBHamJV>fAT#YZ!kf8c)3fOAU;6ms9A0i|bzFIMg6=(i6qjlYjf~ zi00uiQQ{gtsEW#=^PC+yAhxvah=#NrOwq_i;vt0Q16qF}ma(Ai zeDgsW)HOmJ$D`Z2=}l!&+cj#glXr_7`Gfo&Yzp8;x*U)UHj3HUd)Mm{I%928DxGh) zc(?^I(>lE-F)pdwOPSuNYwHQ2Lr4)S7+N&zrmLr!M>SGQXtSR)E7jrB3;9~-swUtx>M`3^5j}qp&rwfu?;hG^JZXf-vS4=v7zE8dRH+ma6Lnn$kdo(&v5_)g+QgOGt26G6+tYs^&vb2OalA3B?uREh zZ2C(Pr!ByHajXpn>Q?tM15N>FZ>P$ex?I9T_UZ50^!YNidr>T+l? zfVFU)h{kPK{v{&kd{88jf4L-crU zmH!3-(GinIn~0f7!)4&E)!-1Ock#*u)Ld$XN#j!slm-iJUm27lZ%68%N}6{QfL&}v zQy|K(gZ+~}BH!$zqS8Jx8N16z1J|UoW|>9qpf@Fm8!}aVy0tDu)y1SYq1MpSxW|TkdS~Qjp8v@o>?%Mq6Go%l6mt7}RAQ@!bSX!|!K! z{Ebm*gvvDNDDrOI0xSi-#xF+A1ZOz%J>pz+IoT-SUO7F5#R$5R@0gs)w}wkrBwa&$ zbwo>O(A!9L$)?l8ooTE{0VD2*e$Q9yUr&G95M4846vXD9DJ9sSeM*V%_xBlhw$ zH7Wd4+idv>LB>;kw+jT3y1u;do(qB1Tz}iuBVB)+z^AOImX$@?AW6nx(D@%DlR(CX zp&zkCR)dSnm zTW$kMWLoMB&f2@`B)ZwN?QlMjBd`Sb!hM$(k&6)X4uO8vL5ebYi!*57Bq;3adI$;q zbn1T^_Q9Qqzu5Y0F4|c}Hm*f3g5`V?u}qGKgU9|TM+!3H(o5EbroL|S)k@j7s8_e8 z(2`FF3tX2kin5S5-TI}S5o)J$a29S%df!9w%q04R+y_leG{uknMg4V5;wxc`I z6o&g>fu(qv7S59UoKKc|)a zo%Y^Y$>Pk-X~#JZl{j<5pJ#GB!BNb&=XfHCh@`_DmzvCSv$TS1lW?*YUwg6-;ys<})O82QmQrzd1*QX!ROZfs-jN{1^cr4`sl|9Q(^2N>O5z$0_GfrIhpoG%#?BE~p z=l{h=u<>PXWOH!-(nf!zN=-!Jjg4C{LCl4JzSXz<5#r-(v+>3o5 zr3r~r{Ad4PZjQdX6wyt0ltwp4?~jQ7V`TqZZlY)NqmwjYJen`zNr``%Umuy5NhD|_ zvMic!j^byhv-y8ue-(I+u!J)u;feVQeh~?QNA8Z|H{ZUC$-7zfO<9+1vBu|#k_lzz z$y7h|yxDAudeucQi+X1s@&-@>PjmD1!42Iu_}8y4m9_XJOGU!-=!E6^q30JbU;q2{ z#rdnbdCr{-{(M5HHYdq*p-r0KmQhu&N_>(f1V3FKF`fu1e~8)hD*o8a7|D}dlK8rx z{W$;5SVn1*Wtn{nSIqT_u;6mnwq@Pp|6S8Y+or4fs;Q&4To-+1k4^Nk2^EO~H`_&& zUF1U<_0FVRKgYqBTv<0X{oo&XDa)r;T%j3@az?U5sg%YyRb5y0P1IaReQ2NwNHRO& zIUEokJl7BCe?y*7LLoR}a2jVO*oV$nby3ml4a$0TV6S8S;Rm#ziZr1@I@38O0-9c| zccpn77W^=yJV{d}{_idPE=L>k|Z3qW|!r9SPpZFAEWU>lwW zjNGnEf1MrIGsxAHWO-aHt2Jay*+uW-t}G`}Bm&CMZTq^N0WhSgka4i;bHA#6*Mk>P z9!0L=MY(Q#`rN&nCDVKXr{LqxXF6Br|9X9P7&lTVczw_}C1iR7QGrDbb&d!ADf+(Le{B151rIW+SXN<3fc9PnYNC`NZIuw})C`$lnl>5UolLnHBajE19A*m~g z`1sntE)h?Oa+S=O0aw6=x@k8iSM3>&jc>h4iYD-?E5E-T*qJ}ECvLT_x*k0|>;*-0 ze+|VFb-U%V?79i^W?7OEk3PAz*&(lS3q&=wxfmCVZfd+vAOcL`GUyNZK$fJ6jO}OO zlcD~CQ>a8y;vzy4u88xTJ5I6I^*-SZ0h?shqf6=brDjnogVODqS(XCoC=u7&pnL%g zMMj6MsfFLRuOMW1Go`tMfibI508J5jekVm+z`1{C`!2@8Ev*)P@q%el3A}nsySw9Fjme z`i%c%jpq~N<>By2NmJ&1$gK|{ew(u11qT3*%{d3?&p~r|3Q;0|ghEKp6HcC@e~?cg zj#27>qXcBW&)M>0ur3X$Nl^na6T*qc+#)mZj+Z8na|=&0s`j%B&tO9`CK!ojsRnb@ zCz4E>si#Or0Ze85QJOKqV2l8<4w@q1o)JrMZOZ^oJ>LqYCp@bGa|_0hWNAeAaOZnrI$2#}D1a16|_sF*u|7`5thtD`+m@ zoP@^L_QzDj{qSSg4F$neA~5`B;oYJuPmHI44%krArrUbI1KACb0OF(UlS#`oB-AAR z4rd-XhG(V#PeHA;ZE^3Ue-0BK#r74OVo5e2#3{bnO(Yh$$M;gEd@w6=Xo$QjfjWXp zuRF_&w!MJnO*5lX376bUklbMZRs5k^?L3KdCpd|CjE}2Dsd2fiGY5cET7F85Rr15iC&K?I&~gj964enn8fsq<01D!XM{El}Jp zno;2ZL8_^$;pV+b;fxwJ;BfzzZ_v1g56RuM(G>)f6w}xGkD|YCA=I@%#~3BDs7BOLp+_C@c}sem>jw!V*BR&yc;Sgu821V&Dl05gWKB zx^31gjWNH%?k3~6n*V_JqGs1`cYSo-HXGg7S2g^qLkExoe-JQ1a?@w->blsJD8(V* z*w5HQjes5A1qSrh3y_pRx^UF7LyD~TPJ_Y?->Ye{Q9Qes$%kRelIT84}U6m#@-yeAT1Rp^K27B)ddmf3r#5!~dP5s8!XLONjk_)b+*kr^E!BL%SdcRhKF=TYF(2#*!?y+p=gK zS?QPEFTfpaLaIgEfD4LyNUO!YTW)X^2r!o! zaELAhxIi1iCwb-qw%CQuk@*nq;}%1KyOZb?n(>?3e=<)lAsXJVePg*pCUmF+s8mO= zn{u;2q3Z^Op%6iib%Ec&r;9SuLlh_=Yyq$DeJr$l*HEsj`;mW-qlHcuCTQY1f85+q zz^;GjqZ9k6OZDxpyIoDxGn`Q5E-bbm3kP06I38xU&31Lb(E$9^FSF0l@Jf~sj_#t( z4!Y>T6br>_r2(fcH`79AL#qijn)x~OYLh;^7JoW5O;5lyM`P;JBpaqUHg+ZhATNX( zP@ZuUgS!f77n*)-dg_~URC&JAjBsG~Xi&JRtLEfLG$1gqGR@C?Sz6ZxjS^GOPpK_YxNB(XIvQ zxeL=%DmLA&1DHI2F};j{dT0%D=J*_X1=Gck83%Vsobb4&7W{~_vFg95U3)750XN!y zx7BVTDF~LF4o299$&Gw?phw+!fhN%C4u84_F$p#1EJr}&Dth+!ObH`rCt2#6n zdICKDqUrl)bFyhVHv~o9m68B9rNJ2IsCTiJ574A)m*FqB)y-|$_1=91G@i+9KbLRz3e`i`RJwGY} zx189M!;AS)NKg^NoZMYaPQpPze|pt%C>((0b`=wikm0m1WS&Se5ig!Z2qHZ9=NoD@ z&G(clcs*y-_jSd{T(F7-Ny3EZXPctjWITvenLAfE?#OnW3_8W%-dqnu?0-DThHD+W z5@yV@e=uJIB{R_V=tNQ+I+8a!6_3r;Y^?(vq+YJ&jMtp2XqzLIn(jhx3f##^P0AYNiXrzWQ=h1i%=^hvmx$nD4B9fq~rY>)~%Q2@i^iPQQnX2zWmuB39;iIK$5HJ zHKPD`DZky9)p$LDUq$eG{l{PSPe>I!<*)1FyJCDEf|uiNgD#-=G?BwpQs1we(TyGN zOe|q|Z$^frJ=0Sx$$zu>)JN{Y=_H59c+0-5{z4`_qDuIn+Rgcbu?V)yf(7j|kw*T4 zO4SqTdWT)}r0N)Q*Fj57B0sbgG&BEHPXPQu62Mq3ZZ-5>SW z9NGhYGJYG3`mx=fJ{kR!4Slkkf^_3CjxUN~N)9Rm&Zy*MK7WT;U)6Y{RTzIyW*qfrZW`k=E_0k{sh!s&K^+i`1Jvlus3b9+iD4acUvuQA9O)_Fdmtq ziV2rq7zGk|$&d7t0E}=*?_#Xgkh_G!dxqfKV!|}+23RN32*_39oHO-a(W73%_PHhl zr1CoI31x)%7Jn)u2C{?N_K@Xn$34=BdvgwIBfHiiZ3GOFXTRl0=qvjBuN1OQA%{b0#AhJSXA(OerE!^*6Y^0*HBLh$J@ zoC>VM;yOO~WlB9O=8#zq;UXIcY;92zWOG*{H3VtL`wjCe z`;Xg=8>y?4?88i@YT}q6(C9vW`gC)CCs9aAgn#Vc^Yz)!p9FbOXAyZg`~8gShs6Fh zUz4}fvvCyigiPnKGQ%g+<(YYz62XXwV=`Tz1%GePN7H}7F0hXBFyVOyE2azhhX^Sw zc|Hs7K7I-4ml63OE7=q)Tu<{XWZbNb^rCn5dRZZS5cQ&3xgIa%Mpg@1wc+R= z(_euCwG{suBvcW?exs;8p=5p~y zds{uq)rzQYrrNUYT8Kdb@tBwEVnwQMJ%hIzxoM;V15M=g9r4IZ@M|Q@k@K#BU4L5$ zG=vmZ!rLnhp55Y0pxUC*8$6foBSAdl4`qdzfZ%UhQa5DTRr9v2t8nzw8IK?`B6R_b zM6M6|^-)%&s=6;FBDk z5-jbHSrWAUk4ou#>(l^lVmxx&g7-|&A(Ig&fa7frp(*%EILq&YtMgF;{(sM68oc|c z*~H-f5S@UH-%2MCn>{WuDP}3lo~jjjY)(6eTyC1;#bstfgQ6*m*-9dFNV#)R z4tUB_OR&K?zNvOj0rvM!pUG9NIV%nGG|?Kh~>-DL>jLy1?dr`N&QA z_}T)*iv^jzI3nz=N`Uq=7ngOh`D5h}!nS1qRIWH>zI1g1thhQCNT)+h5-wi`;zx$N|!k zBbFG5Je75)$g_qFjnklR{*8ILC>uF%>*j?NN++%L+jcl9lvKeTpcmVxQUtAiWHipM z?TqCphP-Vzx6@IU8-IQ||McM~xzI3WhIXgACLlLLWLRorh|g{L&}9N73F2c_C@44^ ztR?{35fyL}kAsJ9jr9+hcrKNai^ErCAUC4e-St7Xu#q~7l2nM-L1MjP6J=P2vKY>C zS#tOB;_}j-1cgTTrO-sze@M5|g@F z5(i&FG=p$zp%NLp@Rvy4iY%LYt>NKvSfK<%E5|hE7~VYzwysq>hVrF_?RZC3i$RBX zH0<{nZ(s|MTfLDFP2E8rZ_16-4bqoDqZ7K_7k58^EMOf#4i^QF+SEUkRDe>bRzB{x zlYQbeCQkdSlgWR3SITtn_tT&$0E~p0yO!GYD4`&297>#uEU@82ESH|;^d^95(Wll) zd2;XciEd1b1zvoVT14&3OW<-kfcXJ|67}-Lb);65B>8uW5@^0N=e{2iC4j2l)=xm8 zH&@5$E=iN`>f8$g?dbwAT~qtT!{V`EMG&xzE|(p7TA+jxb03T{b}Ui-s{LIK$0EY+Pn@dAY4o>paJrG%y6JR zC$D$mGzNb?;k4YJ)rP~`FzGAsr;GFVIGXq;{^z*fO5$E4BR|0b%JPT1VrImRJ19$_ zPQ)%sO;3(l=v+`Nko$HHg`HC2wRaM0?Hy>6oN15oFpE=P5W1zWJ&+gLE2wvc_BR}r zd47Jg9O^6JCg-xcA)S(X5M^wER^0Y-U_cgmc>sSxlZ?Oa07if}y}aJnWeo1)%{97= zyw&5uJQRK$`+1_(8Zw*U&SzG4*?}Y2!Xh!~s!@$?yACvN+zZ-Q#h9RG{T>uOB`k5}Ld>0~654{#X z2oZmfV))hxh-6_Jvs}Ci5r}^V+V3PpAgaEdJOB}}A^!&Hp8chy`#r$r77k*;Z%13} z;LZqj-7o7I{t^JO>Gq~4hp@pR0;iF2xT(U{x>uQpnyUMqX3EZ2_S<*`zmkJt$*vHI z(xDK!yLflApOb^U5&8F3cXXQ_oP*<(1m1sLD3pV9H?OzzL+b+$U`QQ#Jk3aa^Vwiz4-L9L+1-M48@QJ8wXb)hLhE`*I<1dp^(7rgyZSnNZpME% z&E3pcXVoeD=>XXp2vo#=dhb5FXv>^Kw108%eO!_xsqj2=5JSixsjsAmKMpwcp~Hy+ zis#$?WN=)T#Hh$U2mWcF2RL}MPbOr+o7<^&1@?`6XLQo%-TAy{LjZ^WAPPc|8$zsC zbv0HJ6Ac?N-!fL%bS!KxnOU9+N8^7)q#=)Dlc&$4Tu-7I)PRL8XJ!Y4{cuvfDi@wY zGVW$Z(DfZ?E5_DRcZdJhJDo)wayJX5s0j=_&A8Dp>dw?T1#{6apkbh;?guW1hXD9-&zy;6YVfr+_Bmo>X}Et4L`E_s zx5!f0W+MwdJ~AxoFNohkl3_7+FdQ&b0%Y!S7SY^w!Vnn9Nc>bTYRowGv zP*-~mrSM;mW-r?z#%`15v=1>cs7Z_g!!QFT2cjgL*o-#Iu(^*j=c;8plsu5_{Xn!- z2R_7<$|Zp`lM|F0eYl^>rq+L4X+}}= zo7!LS|LSO72un<(lej2Sj)q)J&;Aa7{s)4*`2~}E&Kv?ZGn1LlO@HEVV}J>O5yd?C3-r-Bw>Kg;#w-}eBY&1eGRKI^4gQlcjv;qPtBW5#uK34w@V#nOSJX6~%bbbGj12Xl z({{HjnoS?PDVl>B_u6hl8w^_&9D3CS=dY71&>u5eHPuiRb@gA^pcsOF ztLob9_poQ{lOzmRms=d+(^|w#%22F|t}3o;72v~86`QuH@7I%k&=(OfnF?;&x^CBk ze#6D;u4-=Wlcmrp6HmJcVHHNw8KLO=>bAj}!A9Mzli|=M0bi2`(IFy^xvVi+>to4| z@+M#AP(I0_Ur&E}^UlsA^%^m(<(7DH>61#)Ab%Te%ZR1)TkI=FnB>k$eK~Fz))L%W zl9n>&Zg=})sIIHJ8t#Ky*%NSmf&{6Q3TOOJ%FiX4z}f90w6vM4X2FHhql9E>m^@gF zHoZ}O*;V_YY8#tu^9+_8hjw}1Z`=J~_ax@l6B!F5;T&*%m~75{Sk*(-=wC+}KJ|uP zxqo;NEYFP9QYKUBPI@;^#*t7`xa~9>g9ekFKt#pD2XT}M3*Be0Uk5LB01K9lGkiFI zt#KR?m3lP0JbxP?eBQix`|4tzQhCf$5xMi+w4KhTr2$Q*@Q`feH^NOebya)lgYpqK z%aFz6#y*`GL**Guv&bhEBmBoaszyFF8-H4@>H?*)8{r}Ikedl$N;C3Cl|#>h%dLwg zVX`3^v*A-QaTXsViB{t#0Vv{k#XT}tpSY}cMIAJU-8E49<4Unxb{xb^pgNLGsH_ZX z%`M#BP6yGLvIUx-7#!so1=R65mnFth{l0BB1e>-Xz|2*Le0$7vK0|nlYCWFoiGK{i zM(rZVkn@|z(FO%h`bhedk%nWJlDllo61^7!l!l-L7SxDh&aHO);a*QKGSG)CA7dfG zf3&HF4u(25h4NYRfJB6GJTng4k0KW5sY9yJoIUGH;{gOq`c2~V+^5a znydzoHTG$6bEz|5wAGaa{wqthA3QZ&lsOdiP-K6gDkJcC{9IM0oml{)@@&i5^@OES zni>O;1n~yA`?#8>Vd|9)`F~Csb%ag2Pd^tsThg+G#feA!)xK883+a(DFe4ZC#yqi@ zS7PF!elMZP&7CTm-ee*mUe`xt9nnroR+DcIh5);+P$r(|_8-?ijA9_2j~=_g7>(SD z0TX+a_(k1YSa2lYETp)7cFw?Nm$9nlKJ7CLB46c9JC6zaf0l&fg*LhL()D@M>NXG zXQCv^Cz6fg;Bfturqx7$w!(4hZnpkLOT{#unFM?{8}azv#3W$SS?byR4|8)Mbx}k3 zXb&pcqm(PUa_h?vkQ&vfK+5~AJRwa5XL0=XG^WPQufJTrf3Z#oL9%FddiJ+hi}uZf zw2pI2!;#mHfJ`{H6q)AOV`;Ix*|8K&$_S2d3a?k%PA@CK$fT=(Bnu!0P>*et$D2UX zAC0!DU3XU@vF{KDCeenjp!U*X*dK=AmU?HpHbkNCoULqOkOErAojO9XHGQ{&(tiXl z!CeV}9QM#dW;yx%phjdOpLiNBysnikyv49I2Y#HJRgG@8Z@RIz|zQY{tOat z)Y+fLeL(1juCr!`+ak$=4>U2s_~XY*6PAngYfv>m9M9wb<8b~=8bu8Ci6XF##Fqn< z^@#f>hZa$R(MdsB9H<@jAT|*dkheV*c+1SFHM%LfjbYL-v`l8EEsr8tC=Xo#v$x|R zGg6oC^zC4!!Lt^_<^?wY=S75+sdPrmOcvot0xJCBlb6>l0$GBbO-uq|8L!h#2s=JZ^Gp4s-7qBfh}+{_ zmZ|A~7a(ud1`tUE#&nYiz0E>E7H#^B?x(!vW9YlgHc@)&HorIw?GAr9R3e&n^D+m~ z@SCQ4qRh3Ng6fe=hZq2#`j{`bs{HM)f`a(3TEYU#W;V`hV9~Ttf(hXxV%9j$jG8}G za}^7B$L=Olu*lBy2?;)}>uH|IUesyvF z{Xfp%p89HLhU8eucL0Bv;74tYcq|N8E9!o}KYK@4!>fNjc_~cH*4Y0AjM8<;40pFD z{DmP6%H5rXz6`zT+MTIP^KF0u@aWlV$SCobv~-oOFLJH`i-w%EX|g_tUN= zox}HV^TbQ|eb?SXChv;*VFKIIgvKjM)7$%qfL9BEfHtFBe5YcKI0~nJo8Lp@%n!NH43alJRMYk?Kt+K8b;O~Uv#s_Uglec?Jx5ibD`3hW&=H_$dYje zoAXuIHu~5a{>CD&-wX7BMj)fP-yUf2NQBhl+K$*sSCT~3Oh!j zm2x!{lN%S>CiigPA9kvDWldS-11ZAi7w=b=8`1-YLt}q*k_N!DT~YS-NQiT~v5C{w z;l>agcz$sXVAnMOENIb(^^GVc*Hw=AznFbpgiY(s9|_nl zj$0D?Ud~?^@}KS!rOS$g)8rGMR<8Ny-~)O%P5vNwJPIA~VJzwG#Hx8WhmP0_8Dd1i zuHC2yZ)GJi1G?U#znq<(fB*KU_h%Nac(!Obj@ExMd09YA%xh-B4b(p&lb+lbVK?$g zP5|alM-$Dq3$7cDZS3aFw4!2&C&2?4w-LyXos_e5M8uEl&205}RJ(%P3-T{I=*ida zsJ4aI8Teb0$K8_^-7N{K#ZHZN zjdEY=lS|zhNn8sW&)#L}zVE1f6S&&TUNdCVD&1i>Ha(pRa9YF6E z^ck+zwlF}INWgR3xo0YKD3Ynq(5q!bAc{s#@Su~e-5~+hlh55P1n!FNUXtE12ijfH zm5=1>lQ`Z#P}pOtm~P5FRI1OzZQWikqIEXJz_SrF%<^BH2+Au0LpApL{_Th0CG`+u z7O(L=&*Vykz`-Bs2`XGK5^bwEakl3%O?7s8^mqLEA3>i;Ta(e=9050z?%qugg}tjy@iVtu7vlc(P#0>8hL&EFw^tN@&0b*xrjJkT6NPrrSaYl-Jk zm3LeBze{|BIjQ^}0EEU0ksXhv-(OWQjyKS3!SM7^K(N`;PTX((JuD$NKrZ@9E zV0px}e4n1A5oD`V^~&|x8CO9bJN9?v>AZxZXo4}L-Z@gAfNSd{q1_E>p!r&Z-lYmy*tn2q5- z1?^vd`_oAxsfW|>>+*71(E1k7W!Hr0; zqfzvsa*~y2c^27t)2D6&@0H$?mLga)n;~`M0zw*yEDViD9@;Z7Fjwx*ISj@|?*8DH z1)b56W&oub(=q#0R)~OpgWz&BBJWw1m=Hl4k2Eqt;_BpYABP~J1qPb7URfM}kt!6E z-`+xzaSVDV(s+BGeoKA)y zfhmOW%%lhjysR{8t-R$&dTS%`KpIBGK%3Y&@M&K(+9#=?xYRO20qy<{J_)>=wN^_= zPm2i9%*`gnCpY(KiBX4ElWR49AenTAP=zZNtdQqCmD138Mp3WWcI`RDvWA#K);vms zlt=u6U&tMDT>|$r3;x#=P&1*SaH#G97v7=TwWB-&14x8H-_J$eYCV`I46@-J7Y03x zcHK#&0h-bz8mjpBH}4lO-rg?W&3GQ*9Ol1$Bh7%ULP&mD*a@pXDI}DCpDx55z*BpO zAgDubpklP!ErsBwwMPrNb;_KQ_c%F|8{9E`s6c7$ijiRx*k8o?#ISn%k!e5pt9Hhd z7{6tH(@Q}@g>gZcnJqr}urc5RBU|WxMzwwH3G({rFQ^V(!Jfqm>Ngy~g5n65#2_=;q z@>A3HQ(vVS>IBawzRF36Q(x7HS1^j4k9|crYOzGQN<&hTf!yYQgD>J(!K33ziArHC z!B*rzHXAt49){3^+qgklRYu#j(%U*spysmV)Mu;X-ZFLr zG<0o(jOIh-iL_~dFBm5b@^i*nw*6*moCKxVWrW=Z)pJ9o6x4aLZ;}K_6y=}Glws$X z1yPb)FE*>mW(@oz&$7?BFov4bw2NF651tu5qpS{sEmDg_g=2L#SUps`5>+~9JMvs& zrK%39+J)RNy0gJ0f&u(gZ0TeG)(@#bje+vl*2EdWDP{S8z$J7Sq~h#Mcp9cdk2GsI zDRL}Nf|y66xI>9oZQ12Ahm;=j&6GJ8f^pcIx+=-_qyV*2lSBV7vDDC?onk z_R#RJT117?PS!FFACY8vbDqH&19}uAV>vu8iZstFw)IN0g^Ve-aP3ius_;YWBFUem zt(%HMw>WgVy1>&TQqRK>gkf4)qO+9+EFh0iS@J1=3rG?^KwQL>l#^JzMvJ`sxhiER zMxtp2!q}qWm}BxN2GR`NpImWF&t=xo^r1asrD<1mot7aAbWI6eM_qM~9;#YhduDO5qLy51Zp?Bp zEn}#EP#}WAP4|26!k}>7a9C}tt}`5cOd3zDm?fyUdHzM=oa4TE7?C)E-3eLEPQ%n+-T5v;hAcF%O~*!z z3Kiq7ZDy!$Ik3Th`)(#EI(g#%^R#qCHr_9PjgbAX24ZQ< zB}ax52sjTSVRaxU>qatnXF0wCcBdescshjkw{L@G(QW>tEi6%RT%ytb@N6j2H%_B9 z?x)tn;BoXo1-`;OS@=$!dWPDvh#J^0Xzw0fpiiBcrio#pflf8KSseLKb&nQrJY_|H z+rempF^%5$H~+dA!DzEMw-IcnKh1Hs1fU|86<|=SR^b0urhXZv5$1|4qUOXVt!Pi( z3jTwnms1x94i9y)r1U`F)^#Xc*w&)9qD*tMpHby9Ys%Ghz?Vg0A{rghAC65~NU*Bc zUQ?9-mqJAd0$mLvz^el;ECOBkNDlCS6SRYEIc_nmzm!4Xac`#?NTX=T)O5>_ijgoB zK~N5(kl{!i6~(BM8A`9IRl7x7*qgy>pvTSO5RrIeK%a@;a_C`|SI|tjQ~wIIUQ;vn zc&OzZtnSrVS_Llk8Ic&m17%80aC88Y%)kP3)gS<;YJrSMGvX06bT_vg*dtPZ;cy1g zAyfEy$C2#6R)fE)s{NyOQRvQK_{c3+#P+X z)Sb>9@*(5HAPrNU1?~tbr5=mgD8+XGQ{o(v&nYNlq|YsQVUeJ>-~m~5DblWyz>EVHI~;UV*S5k&&OcNhPV5F z(cK)q=z81s7~j-0x|vDB)Yt4>nNTX885m*u;QhX8z$J-SkWFaw#F;e@5<13GY}706 zX?2QT)3)2RT)`92y6YW(>#WuF2aK|*%Ksr+_K2iUa;!XJQFFR|OWDQ2DFN9@&jhEY zgv}aI(p;BANtO37Ds^h}1RMt)hkw%$f3D?qi$()9bGu?|+Z&~+?Yr$jt-FS6#yBD9 z!Z$XIlLnEW=LW_@--c?r?dwA~HNrdy31su8s9sHY09rI5!9bm9~#!hRo z(=-OtVTFkK8Pc|NuPnq6qgkvgh?-B3|91OcNhi%pnV-c(hrha6Q}vAo9T9Wt8&A|o zXVS`fU(>O1)NxaP#s6r>Mx&{79UG!8O6<+i*EGF|SYjQMj&w0x=nRRnX^}{sx!~#t zh#Ute%hJGJ*FW|5+jcqO%kE{crb6vr)&6l!0a=h>#k^8nIw~3&G?0j0|A~NW@1{&LEH>pp4{B$ZJB|3g;qsTVc9@Cx=p$H^=Q3?P}kD8Ji?5upg<=hR&B9wdTSFeZ4`S z6@f5zXc%FM)0+}TZLKMzK9;TfdN;Yd6EuIeSa;`(yBVR-9$WSXI_E+_@!aK&scOS% zKb&9e_SD?BWi9EuyhE&r;*M{sR&}@E79T4!&mG&Ih5(UaQNAnD}PLV#qZ&J<8JxV{<=SraJSqCUH?nrW@2 zHn(ey)|{@e6!%Dpj_H7P7*I@;dwT<1T74{51D@$P(`d`oaIL}E{GYG(4lfh$uH6f~ zyS-0)RDJ20|MHdh{e15rAR+hWIjl_aoB8dYewca*^OAok^5&~O|NEoa{9o`ESVu#` zLy^LY`2zk(2!$mNd;ZnwN1uM2d2eMUo2RxMiZT~=-MB4+@j zu$t@DJ2$l3;J1gD!dQF|1qtD?cM!&E(dqklCwhfF6MS(%nKGHM1Z}zY=S%4=>y`8t zMI-aBZk~U<`qt~<(|pr3vg*7|E1SQlPZsiaCWsI$PW^0Cc3#%ZXhK99M*iJqg^O?N z2A9tMIsai`8cS1>SmX1BIWe1fJS0ghgjsd7ac39AK3bGrQF*!cAHfB2s=|z4!b$9l zl`9XzG$0YTNA~Zt!5e8R(r6HrYrot`ee$C9?q`3D`&mLF8@2qTV^uxk?Sjx&< z%LdN5DyloLE6RoR&?xpF*ICsTbwwr~IEc8~(^+%+{%Zc_?EHlY1(X}OR9#k7 ztqMVvt(2LW_ZdyA)Q2s8h!$lKl2*Tw2G;j9AZcu!bSS(0a9OuqJKi{AM8tu0ez$}- zwab5cQ!cz4=`}JlCs(^IWvM~Sct}#ltjPi4+Tuz|KzCPTq}HYEB$$hPqVXzfG=w09 z#wL7>s^<`kWzlwcz;)fW1-jopXkP}-ZM{|YgofqIth!TCDM}rD`{v$@T^QxNDnxmtIyS$2QhNdWfiQxYq&DggpL-(V zB%Vj zrr@hG8B%5v2FfB5#r9;+#2_RAb8a*kP|(JgPBJYP1iX}fIn$z;xdU^mh}ef$);E~v zDjLsb!GTFS*oHeIG3+(X5HdU9LEw`D@)LhHm5Nul9At;G5aC_QtdW|G2k@qX5-NIl zpS`)-V!9D+5Bx}xo;mB;f$KA#0pOb|E4??fD1xdJQNNJDP*-xDX-uSy&?E?5xBx2S zaAHAlI8-c$$3tSr!u5cwlL0NodgHoTcke802{D-B1}fw>+NpWXJ(P()Br*7#ITE&8sWJku2gM|db*Hx(v0{qgh-_50 z>}Mdrcw&7FB?8R@RAt)wwpPV`z3I^7JV1&C-c_`z;ly}K(gF8HEbhx3gaUuJ515OG zDiE914Qv6nLg{E_z5#z&XljQ<;E=@T<$aH&o;(;~G=AYwG!1NaxkI&Bp7W)*+5lrf z(e9qsSVgr_pBwnFU#e?(0{BY?vLZBYS2?ErqVfyg25BqD)FUED+)zv?-5qjNUsKAg zx$<#(*q>MQMsY@#sFf6St)IDH0teIHk zT(MealV|`udC!8evEm*pTIFnoK!;(pWeAAzrpT==pi6D(#G-1-C-4{J@wATAeIoBW z(NBYCavZW>(*Xdp7#zeL7kB}WyFV^Jj8fF(yATwRq>o)&+*QSAseykYfm{K)I`~Gj zC^Qp3%j4ZTI|{i|pP&#bBc@-VT+l-?4Zc9R2++x9}c&vj~-12B+9AH z4BFU$#<8E9^#jF{gtmW5eDqr>M^pzv3qpG=|MKMMZ|7$h6G?Fpq68Gq>(~B`ENd<7 z04NV1XIpik50QUP$;b z{|b}jSbGgwhR0ehFw zVPm_36+MG&!smd4f&yRl@yNp7?NS%n^ z(rZCN;$E)7(?{p$yKAmULOVXt?K0}IBz2TmkGU)c=kySH8OJ8y?;SWY-IYmjjsYNK$2r!?Zsag3E}>KT zyGIY;NR40PHwBm5CnYn7=rz(GIt&4uyCg!G&0?(eEb(8+plh`B`2G3$(M)iEelkh$ zVPqr9wj)au7g?8JwhJxGOiQh10qUY3lC-r3Dz0i|3rv5cTGe&dEfvM;8Bxd+5(+CR ztd!o@31GhKnL3WNZ5YpqAvY2VDArY!J@-YegieF4x7mrtArVpJ*f-X!|F{O@aL;z% zlb<%lD4sDVao;cOiXwE;RSvEwv$mD+8nn*%1)F_}SS4}3#S zP)E(h8XJGmrt(%N2aW2MSNMJ~j$y z6cZsydv6O+E|!@HBKtD_l5eZ+61IrISZE9rywrjw=)>~uuuz(M4p1gl-Vk|=6PHFtt;~4TC6dsBcpBVt) z;={X>%d?%*=YKqxs-kwzsS2EHoK0(?N08l@kvTuxJ(~XGtXgDUrjc2=`REso1L?A3 zQi1AiAT}Us-Ez`D&20YXn zz+-=S1z(To$5BkH&~T8%&;#(EUI;TZceLqhIDTQ3Naq!|+xClOI7`TvGXM8O0V(#| zM9G3?f%d_*#Z2?EU$5=76jU^XY=I3&QN7fH0h0_{psxD_|zUom}yrKIBgp;O{z4~-`ZEaJ38BzMOIJ-dW?N$ZV}eN zaVwLf_$q(qz0W9#BRBIu-Jww^PQ$`4RX02r8)}q7w|Qz7F>+P{U22$2JMUo=kU%V_ zingdQGj&emRg;}(XCMYghU4TiPDa);!nf?b_OY>uPzi+o?MmgkZk3_92&>RRLlmXE zKT#qb;A&#?4!(o<=r)~4{(-q$aWR|4hH$p0S8#vCgpc5Ie0p;H_uW!D5V{Sy(nhr2 zvNlH(x($KG$-#3tEsRJ?g^k{A2a@X}I1}QM*VUq(-VTCvjCx2sf7=iwE~NvJ>guaV zpjFhf0=KA^U%<}McnZiO-E0Cl;=tNq7AGlJgJ_%*;4BK*Shoihs&5z$20b9z?J!*J z>$ZR0@B4i{XlQFQ{DGjf>oR+?QWN-bl|fdm8z9$?=qm<_F|h=~jEFoNT=qdU#puRQ zkG##KL_a@PC199KX`_-Os(TeXSH>*KY;C-2WTx+pGStebHM0^Q|4laa=y*koMzreO z+6`Z*Swm(JDj`BZPv7eeiGhI>b6=clplN@c4f0eF&P3dk-cde8UF=*LnY)_0tgC|- zr|=mH9D8|ThAHa0L|xXwQ50G*b4-o4n2LnL6Rd8tJ87O!wa)evxYEEz*uhGHVo1m@7!f9XD83l?#6? z6x}chpr}5ur!)Qkuit&8t2U>)H6J5PrHm3YhNilK^6e~5ns@F`@IiS{k-&6AG%DSuSD8<|c0 zB%}p~)6;qZMLl2>@U~BFCs$zaT2>1L$wyz3JF@Q`4u!oA&lI{LCvI}``oq=9<)nCm zxaof3YSqY0uz&S{3w6ha@$4{eNE{r z@DP{5jR<3K$EIqlY{zkwvTUzR*JevhB@j81kbnRKfRdeW@UP?__w-x=khGo6Zn+Zi zGMMS<%jwhI{LS$_=J@na{atNN9$lo)O?TouHz&WHF!80M{;W36lf}v0_rlm&tgtep zZx+`l@?qwrfs;m&v)F%}xKAF>7QbK@tYe`Uhk1q-i#6V)9>bFR6Zg$`OP4KY&U0S# zwy0=5%QG(sHdfIF@MZNBv^P=9#MMi*tVRbB5A3abXL*G8S$d$zN$WOgEapqwn z7QK4Ccy@6i*XUc}t2qmVC|;Q5B+jLKcI|Y$clyTZZ@F_f3nG6n&w|`7svURO>FmeF z_k&}y$n#mmlq6S0cRM~J2)r!Mw502@+g8Q<&f#s_w9bZiU2(%Z=SC=~=WFNcJsmr~ z3QICC^0gXnc;9UMPU$Ha+bIma$SUS)XEc_3>O<)V{NHJ8q86g#tq; zKaR73iV|hjXD@$VI8SJCh!tU)tK;6Dy$~jjJ(h-AhQ--S=jp5S^T#j0c{5f`ns@;V zl~VdL(WSCu2y4YkUW#EXn+?;7!R%l@EV(976YzwzXIv=DwHbR*6C+ zn7&Y_cB{7B_H;Pc`wP!cQ?Z%a>)r5>AhU<8c5oU`J()(*8B7Q;cwZ9gv)$K&0Al#U zY`^$!;z(G>S(hze^-WuHGJ$h{TatB*VXCJ2Rl2+0-*{vMJfahZk{od5%!gOS z+D(-=I?sN1_Vn%I?A6Qh<(Z#*d8idEyppb#czKemEdnoB2a}&VLajmOr3MH{GA0)M z&f8{Q@%je(TDtYFs(^?3!tb5BfDhu%D(1=cg!zBx0sK7)B4fL|V&DPHdH}RcP>GWW zo||FPO;s>(VPND-3y@c{7~G8#UZ)0e7dnpVZrbo>tBi$ zWRrgpm>?gq)H+R;WD@CxKX#{1BMvHRjT7`i-xg(6);H2=z1cj@5--hj5d>>~Ex;-8 zndb*4PO?PCNwKSX86j}{?tRzu&3w(byk0}5Q-|P|zCe<(Xg}9`DKTNNFp%L>tTzy> zgGA5~qN9PFU0+mHH%Sv2ATo_6sVHRFC?9`k3E0MGI=+X-Nq}o7mrGP(-Bu{uZVgT(d2UtBQZi zIsnolz0_+$>aV2sm4eeAos&SeZ_L~bJi482c?XIq&j??kANM;);2W=MH?|DtmGBr^M zXflW=3BcG;*kc@@5yg;3>r3~vfIpH=Vz(>hOFwn5dvOt=rXU5CGVo5|ER%nsl*B|Q zuAEs8McSD+&H+oMk*AT{=y^;}A`lCE@6Vto!*ESu)oc*47qb8IFYh)*{Ka@DqNHrsxB zIYGJN|z$G4;B|^=O2H8r6f(J6-nXLyUi7Eof||i&;S}h+9HlIRE8f!Mj5+K z-ip3e&w_E8>}FFhF1>B$65Ala3kZ;-P=f%Azg@aDz^5Y#THY6eqY0N_bQ)0h-4^p|Ceta&&^Qq`0m5C3cOFe(T?)c$`g4Fb4og{`_( zvE_%@Ac_Rik&Z4{C=?Nu2n(IPd_J*BoO!tcr(vCf{9x)7(2Urd^8BZ_V7e0KU-fjBg1s$?J?58A@9C0f9*S~PHFeh^eqv+%Kv=K=C~6xtg3 zaM#$k)ny@&%WBNDkJmfFaf&G|iLej@SEeyZR_3Zh~Pba2I~m#qZ>9)BYf{$(ea zifA6Koeg5V+)`0iZe&F%(LN=LV&kvoD{7C+zLH`_VK%69P#Ehyw|)Q`u^uk(|EC zeLtMZ(Gp*aB00mY2y@z~tmPR5ICv$ki0j5_KJdp#H5|9)mZL)D1g!kSJ3~};t#hEz zWYp=@OrNl2&)7a<*?$yIu$-jLl*0^(qy6Qa(o22AfRZRvgPS$%*6b?6d0T!+#^ZxP z*iQOhgDmqB127NvieMJ$?=0pbp|s6H&U)o*BDNO?IpqjW~@hw|{UsX$Df1*pgv8epsLN<7M^ZbX3iN zjro92qtq|96o02u5m=DhMV;yYv4d-J8EC zogC48Qoh&YV~ju13AFE)w={GrZuqI_rs;;_(tYsO`O10l237AP=fQ;>*NUAJFH>-7 zC#>4bC)$XC|Mphfu`HRW*EIHsVe7iQK>`~9xoO#31%LaXKc=s>ZD(N$_L5{Sp6MWi z2L5zX^(Iuk%A-y#{%6$p^mPN;s{C3sWklQxnRI&vBI2Bl`o%}!BSj8N{UBDIa-g6Z zv6|^9Ijs-^gSTs?j}?iy`cinhnQHNM4EQ;(qK{SMxS?pHo$52B>S3 zNjey`tcf#|nL4c_EnLfe?8(M1+XgtbdlGngpwtN11PanUKg4u&acmc&QpF zq*XlV6tJ+WcB1_U@`6aFF|nk6v|^&20Lt@C*?xY$*QFkGdZ*8(UOE_ky_sOyG|ku} zP2&3Y+sPxrphhCvt*&YsW;TqF?d{C`SQt_CsOC)wSq&aGQy)R?lkMTP87XObCCy$F z1D8Px0Tq9bT$pP18R(=Wp&Om!@vZ2{*zv8ZC8odMVi~c6ZB}R=9UgpB_Mu7v?c~?%E58b zB9GUMTnfQrF=|AKnn-0ofBDvV0y8_27tQ7@VyI^WpC!)s^y|a+y%WUZ(J0m-$x;&a z+2RT0pZND5h1R>vmuL$C90E8nmxc=gM1OAN#+ClBr{H1{m<>n_tBSXR5d>q$h-G+Y zvK|>pFyqZq-IT<*o0LhmE`El2m3_xOm%5S78F>@T4~@FXs&oC$cTSaliPA(wDgHA* zw}-Re|4>G^<5?Qrp8awr=*!6b*dC&6)S582CcjSkh08+ryIY0f$4ed7g?eBlkM&gSsEt9;6E>uAeUA=z$;}t(*m4a_B zgd|B4oe7lYeSCQnjm;EIeN;ye8-JN6X{xKZ-XELjc4+FU8KUW~?xJ6tp+DdJboCwW zsmVy0N(y16TH6pTqmAxXc*`*mfdDo@$-i|EZ3iY9qxL3h zyL-@m*TZjJKSlL0v_=U*(IE<*sM0P~2wv-zvKHW;r}mm=uEu$gQ&DOxYrtTpToQ9-3=kZ`M$O^AA21F+?%`L9ew17#2&I&> z%!tAL1%4$HQ!;`mh{t0XnW}O%V{Dct2QW!Nk+9Yg>E zwbLEB1-u671qk}j{@U(`(2~PimB6@|jBGaljco8CMGWPEfUPSP>cxH;A!Xp%M-)*( z!N{u0OIOh&{jiJ17IS|i+S-DS(qZ))8jh8=?;sb4CMhJFxvJSqH^Y`1cQY4v6jpQnHfi4S|6L-x(mg;~M z9Io5jV>>-Z^?u(we(>1rzC?hS?4ySs^+cl315ThfcTQ36umu80|DkU=)}N|8yxx(ZM|)}X%FIUx6L?$&g5Y%#LbREUgn^* z%@0?>MQTg92A?{cV7f2THcv8FWKb-odISl9na>dwFy=UGb%A?YzhQvVvXHE~@YO;n zNsB#A=O{KRW|@Bh!R-w_qf5NW@L3ZM|5=E8?=F9RS%P@7XCX95Wy zS(+BcSd|o2n%a!5nc6_DS8Bnj9J0mdQ}DJH(#jcoFOJ9i`+WYBG#m4bs->2G2=@tvXcTe{iN2M(DV)@ZeAsotX48Qg8Kv%l?+ zo^45_pPqkYO($d<7$G7wi}AZZF7h;xk^hS(#VCQzyQ%#M1>*yhLANL|;xfbb!{*3$ zZ@-GZe*5N%m`5&?%9ZoC-_Lgg>X}x~^ViLu!V5mtt`@6A86h4&Y?A2mh5!KERaRmt zrtQEwjz4;Fi>0Ts$P+*JAzCZv4n$y1cZsPPSb%?V0rQ?Q(?wn57 z2@npU2W0u<(@7K>3Q~!JC4z`dZHA0pNJ2_r8NQ=1odE>)mt3MLP7LvSDNbBZ7z71k zhXc9aEyFyuA~}`ktyykmi%n)-DClOS(4H2#@Y&>s=OhamE<87iK_$radKf=NUL{mR zvM_&?qG%$DktKOa{)S2^JfZLVO@9Qt{Fz=rIrvy zC=3$ThB8shGJd+RyAjz2b)Wsu&?0a_Z@Tu^ns^8&$*j>wfDSs1Z!h0nZ3G04&UO6u zhmAtJ$Rhqb=dnUN6@dl6`P*MMCH389{OW(ryUVw47Thw=9WVSuDwQTIDV0nSSI|Z} z-YCFn{K&@vBG;M3)YU~?R5?Vwf04P9w-zp*C#7=1Va>L1ss`+}tSNR|at@cA8Gvch zPj2SrQ5R`Y9=*uiTu?BI3K^hJ&r(;MKx2CgiNTzK=>cWv!sEGcqMrks8xBC?o}+*N zIcZ#wtyn<$kA;$eHI4*8YOnzD7v2qNk~!|^Bs4>VmmEPn$>HxW$9Busqip~_${-`+ zpT`ha3TbgP#`4upM;=EgXl}DCs3RwS!y%h?J?hMF61=Wg{PyT~mOup@ph?p)P}+fp z#Mpr5k9YlmY5-)zROKN6BmCC?SycKGrZ-YMXa+lu))>`N$+TMoXpGxfFXqK zyfpkD$wTLe2n`{iO~)ER{L~Rlrjix#CG93kd70b3j%RZO4yEGR9B8);oC0i-Id1*m zpADRp7oP{ttnV`q^!E(@SRRJ;0D`Ue4r@xe3?G{M{O7Ge&_tgF!#HLnP z4thG91W0Evvv3sTW4ki*DkeCPpclIq_8&RWF&gKCUV=A^icgJUg<5}{4$^jYh)k7o zf>7*^{kDawK3hBkd%a}y3x|z&5O-Ze2 z&krG$6O%`vn`|34k>SW`yd8 z21nN;#>#0h067JEvIqvV-7FZui~UAcG6B>Y>VR*9(`4z2B*@SF1{oLxCUWie_6S9L z|7>P$lDG@>5x#p%F6XM0l}powycx-KB5(Cl@JfFkhOk9*$Dz4lT9ZS$^h}j2RtCLj zQ3MmWT$}RWbX$K=?1)oPn!UR2;TEm@0Wxm8Kko2b$kgfX&`j+Xqcvx?@C5v3L}(j7 zY^cvbQSkWi;<_GjZs>7ocI2aQE>byKUg>-lm@4TWF%qw8tN{el6^+YTiI^)}57+HP zb9m-YBaW2QH2$#zPy^gX9`)ElErJS#q>Q3%rUT9}vZa6b^3VGY^2#$!f>>fLP$+B@ z-u2x@XX7L_B?8ZI%}cl8NJa(QETA7^Q>1q21)*&1+lFJKJm~bu`DWyc&QDB-hf@RU zkxi`x9$4^due#G5gcOuG)eo(LE#eD+oZ)m$%6W6 z+vCkD4$go5EY73ca#nMY2invIg28b?Soqvc_0w{`P==GSmEkcS&bTOizj%AbkZ}lS z!W2a;{nUTl4($1mca{;=$Csd={hKG@kW9u8OYk~EhvEE#zSQ)>gn$~Rz0 z9ap5xMB=YWz}|*8&MyK`0SRHm3=JKO7?8(Y@P&Vsvn|b&D)(xx4<_UN5%%I64t&aK zZ9zq#1WnR%#Q<622LSynpaDs6E+bz&n1R&hYOz+pPx1t^N_bz`Jjq^weub&1gER?W z126i)_3Ug=`|uf;gI1jDIXMis2^N)zaqjKre?yZMUY2^<>*HH4+*gtXuSz%|Je}1_ z>=A$c!H4EHB!2hpH{X9BeMJJIC9Nxeyrh{e#&N0KC6&uJ(bsQZzkc=RPw(ctm)cqC zJx`(BS=Wcn$;2;9$+g!1-bVIR_LC-pHqk4&G!anq6Z7bQ4NJm&3|MP$R{YbVvBd7d zu8^A3#HiknJ)N!HPguHFMrnXV!4;TwAW(mhkbYylhH(qcuQ{Nj!GD^Co!4sPqQa42 zP`zfiU!-Qj zGo<2=`W)gO{_Sa>X`DOmr5&6ABkQD~lGPM%_XqtILLql*r1@=@QOzq4XE_ZUT41jR}@u zbDHg`UToric?>fk>IdjVQ3kRokL5Y>0X>H3D?NrcINgJ;la7NMH9KP z_w`V3f2M1(sZ?<@jnqTC;2?hhu}8V*%#B?i>V%PiMn!3@|I}_|0Xddt@fc1v0N*{u zHJHQ}N+llG`PqPh)T#e6=z>vfYa(Q!WQ7!3s??$EQ@>I05!fZZnPxK;?Fuy>el>fZ z=Qw0E*J1YcIL-DD9Fc(0HtnBgF{j*#3JNV|qZ*uPKidF* z|4ZE8O*i;{RXw0%CYoz7;;+O{-37CbFM^DccpmawiA?OrYxxPM_Xmn4c7${OMu+}3 zZor}@+YIf(TdleBT*Dnf(X~GAccUc*G!|Sm44Fz&N1lKCFtl*Nw^qr`S)8rpNd$f% zMyQBcxrDN3a1ZV72>E}*tj7eD<3_7Z{SxRUFg@vyI{y8J{@=#)wNe9Q*`2pS7b2Km zSbyQk|L%x0t@?W2wQ9_1cYo%=Oa$otlk2&E^`VHVR=P|*jquZvYYH{ET-J+hZJ&9) z@cRU9EWb93`8J4^LKlt+-JFv5E7%I#a0rn?nK^-kd za)p9Wv?TjqoylcpCxC-4gahqv(Zp_q0cg*c3?$BK))1lcR}4@Io|a<8Ft@!=FT@Yc ze%W`?2))R?gl;Z7St%?}DEu_05AG}BBmSPgm7`nyg$V+)J%+GBg@0V5oadj|J5b^- zRFz}_MF08Cj}a;!%|#&U=0ZT!=vbmzzr#PW8J;7V6AWd!4Hi-1V&7by{TKZEKN<0U zu$SB&0UQD`IhXn!0Y!i9j^xI5{Xb8^I0nQKddjTgxAjN6#@bmUmXy^52{0=l?C$Cr zTHWL<$=;cX;WtnoMemq%>znMJ*$pHIg0!pdV)53kbMHO(qd!Cm<55EYm_Ij%i{HH~ zqucQ!iEb}GTyXVeWd7J3qSx0KR|!k==z4>d6@7EPyU-8ws1$!unPt)S;Ua$h>hk)p z*aho&%JQ_Xu;O})|0x;Al81}<`+s>K^Y@q0pJXS8W>4#RT``gBm5EyPhyHMAy6qVK zrRk1(krP00tj_i7XJ2Svqn^x?lI2Bol@{u&en+4F?j29;K{zW4`(W1`Bz>Q^~D&gj>Q)|ws zpU+v!6K*!(jFTkT;G>LMzd_D$Fe7%tDzm2Bwi`J{oBr5M(Yo3E8107s5KVV7lHE4y zcj~XrFf>oIWAd_QRh=1mR)L@i6J=!u#THE$wcU2Eq%41Byvl2w6Gio6H@OKtn-{~93aq|{NbS}MO zJv5}vW}t(7IJN_hG4&dLK$#$o)VPAm8O+DtsR}?aAGTX`;J9#mv)%rEV+1DBU!>qp4j_s zNBwPWuVnV^*Yih#fHbo>?uW&bf~6(5-+oD78ks{6VBOAY3Y3)!_e!Ukn;1BLxU5-S ziJIeWTPOtXxr{C1&LHwF|Z!>-TolWUxxNh;7?@w&kK{1v6fXti&)xUAKoDrPJwe*4Go7kDmNAu8u{ z$9uVHn?2+f=B&-oHqh}3zHLkHYXL7r-K5Uy&r>KA`L$ML22AIfRix5@bZ+zn!fAiP z>N0=+9XW!wwRzHnCJFj_j4E+Kc&0$472LVP%B;kdvFJYlS{*Q|oYmX`2(dtvdc!+7 zbL9@Zes*Ew>WpJgGdSlLgbo!$@2CvazV=XqO?jwwJz32yySyqB!Adv;V-+(aFprYS zStl9wo6T_;wRLd#$GXn#;o#~JaMgc{ja4=l%F5xabj;U#R%x*3&I6M)e2@SpndD#l zwv&Mcto3czWf9-DT}MF>>nFQGKeYH5hyPBH5qREKA9Q;iBF!eF;Reg2>$Yhpkqm%zd*-=Zx<*=WJAV~Ie)Qu6t-pQ zx(2ZkH>6{=3yuLHt8m1C2bfDxgp8b_x5ZXx8{JU_Zi?n`#oE>48d-l*1x`!U+G$ak z8Kb_FLiusj zY~Q6Yl-$T!s$&y4Z<;v_Ke4ZQlveWW1lRF4$PJO(rVj6-)-hRySG&D%39;MYV-r{m z4|d)k5$+8+)7PRMZH|BZomc)g3hii-y^VB-IM08}prj@JsiDq>$Q-(89i1 zq}O!V#Bx;-6yehANh6Jm%B0xbxvSnMNL;OO(W(%&PQ7JxJIID2lM;$Ba%djg!|@Pg z%$!!!9w5X#4>M+H6Vw36a9OfIR#JFmglW6kCKbp*9S5Y61a^M`=1)r!6!@xNsU#8l zZumn0g?nSs(enRThXBZR6#^W``u0_blPvW(nHM3cjj4QMy`GU{!J7)q?Lb=83*P~Z+E)XOelPlE_YoC;4SB#8SDE`SoEq3lnBxDpnNifRUlty zNc8cYdr=0f&s~esomI=q!Tc&4>PuHB4ddrK6yF&U?*plX*~!~rp?#H@2x0s?T7zrf6}m@;J?Ht=MH~h>bVCMIwvx9#eh_aYgxo1&9yS(r#Zh&tV#$-`Y3_ZM=tDgK_~G%S%j$nfTYR^|7_a0^~c~Wshtq+{2W2e z-{{jAL~+a3o5|4}j$JZWm3mxAT9P=nJVugUnd%FoqPJ!*eu0}_+7yoD=^y)M?(iwG zulcXUAE9(!Th2ZD4FK`FvOPmBA=dbkHQ;}9lDQNW2$@ylqaoRqKHT$(ONtZJA+S_& zaFIFys(A65{%2Xq$bl=AEe~^GG~;b=BPS2WyHd2%r$Z5)|jP8Wj|$&K`+r*qfl=41^>Q!2t5L&f;J->mH|X4uKz;F zq@GZl7J5RR?be#mnutn{nP}!k)K@V410+6_r>HneFlV}#QqUd*` zv^0miPCn6jL;k?McUzWv^p|#vXQO}9Ntq{1D|9$CnaJ5HkIzS{nFi!xVV-5!1^yVO zi3@TXHu8cK=yFjvwS&!3i`*pwa8u>WaTI%rw6a@mXLr z{Nv~705zslPX|ofsM%~JQlVyk;z}@&#h;r6L&}hYS#9+96HzY&1x34dPvt=z7b zHZ6cK@r+U+P3atPOwo?G4W95O05*;oypdZfE~pSwAh47!-8A-g4#-qgwk+j2AfE>@ zO$Yd^JO^TpT|=vKRt5K(nc)VF=y3@XxXve$2`JVLR=9u`m}QZ; zhtGASQb!Eu{xB7>oH3lxd=mH#Pj$}b8HV9#ud;2&`#o8zt;$dZC$DvRAPPIAP+~*< zdGPCIzwh-*eE6V9_Z3-h_>bdpYd-;eeO-y8N=y6LA1T2g~27?q^U%!nvvV-9c{C=LFL- zIs(;oUCvQek+fmtG%DpiixEQ^_S}Ptlr5;P-g4^Omv*fd@62gS zZWS=K`>owLgM;|hHokAvX`t28Cyb^EPN?{3>yGN(RmEzb^ZwFzTjaT%GA*fq$bC{d zwbOAreFLp>)b4-e9W(od_|qMZ({6AAk$9QsR#Rn6yu4rhpc$rZC*-PfZo_+!Y4ULP zjf@8lotP8?oN(+;h^l1SykJ|onXU*{ZQ7T5 z)T8uODXMDyK2o!Qi^(1O_N&O^Rh69+pr&w^l5sOzVpo5!g1HL?IbH5gMC`G*e8Vd8 z7d!7pUD?-t+WdK4g!ZqenF3Hc_(ktykW{Jt{9f*+tEs;l+S|J++G&#ned3kh*K~23 z@eWVFzx>J!?B%JRc^fS(zEZDTCd4^S{^fy@nTiW#c4_LZ!=}m9TBT%_u(JWd>1!tA(pgr3|YWH+y zOAk7$rrjF{8iKs1-pEYpnrW(&g+^1(DqbPYpz^Yt61r#T4V^&=65|G(KL&rADV?FtM&@Q-=~VI0z|drgV8Bp; zw^~l69}T!~Y0xsX$~vtBo6#stvT}~X)e?ou+RDmHL?GJSHQlXT3^wQit+Xl-l-;Os zR(Vzs`O!mfqIUhKOq8pRj5?X~EIk4E%<$Q`oR15~Fm;_N^JD0=b8dxP%xppwfJ|^d z%~F5(wZ2!zgI<~24m6vtAaGbj+m(2#lhNw@hBPwwT4_?ig?xtB3O$z6?r-Ld7~Cs! za>c(rU-+P2hFS5OCJbGPk4MnpVrxnUeHHd($f#0X1Q)ej;mK9h=Y^-Qb%W?sHel2m z4TQ5j_E84I3%;B22wJY@^pZpx}An*crt%& z;nDuE;a2_dW|CWWd6gFlWGrGDeGE47y)cb`7#ioopF}svW|M2IaHGUT9&B$g{6Rnl zVETFE@Nhy+!Yq3!+#AR$C`};JaW`Uh)FI%fy`=Yy{%}zz=|BBsevANohHYal-y zriU9T^p*MI0Eh<@Vu*GNP~FUDo3Ve+Ep@e;A2o-v=b*9Yw6^3xPNDSN%{!YcTMf|U zK|;v&?79kbrX#M)0=o7W8gt@%A2$@S(-J_gcr2U4+Kg5RR^*GHF<@2TB38SgOp;ZJ z8$0bOGgiu@-i=EXd9I5c54uqxTjlF%UVCVza&{^#UindYi@;tl`*2iKBN~74G-Z+b zJZX@leh04P}36#h^>lo`WG*&XxH0(J`tIfG1TCqA1i3&#ZsPr zoP6m!*Y6A!M{{-oJD*igxUEa7+A$8Iu0YY7LH_ipL6hTZR3uXcP^}kJRW4}&FAav= z^mI4<#%5~Vkh7V_u&1>{)LwsbGuGItpKNG!nzuoCdF4j0 zx3rj;v~7vowbl_Rc5T>gX(k6UZcew-Onsc zv=+59J2UU1r~0R81bLR*udKk4rv5rTYRwG270Die@FoYv1qDTLd$)gf@CH&ve^lQJ zmoJ-~wYU66{j8)p+$-9+nB&fEp#9sziO-_&cD2zSZq`D`e5!vw2G2KwWUY^~F`5i88rf>>K=GU%I?wh{BXS!eg<@)z@1ZIxFcyj&aMXEopKC`l` zjMu6zoa}Dh%n0uvT``%}=J9|1gC6|sEz6xDROU|o4xjcbR%SUXRT}L)8LePhnFlTX z(|>G%4+Q;oMRLJd8PA=DuJ3g6Va0J^#jCX0J?Ny{x)sCrrOb-FWJe+t@{9;&##!M# z1Dh3gvv!yis5jZ_N^;m-)kcb&zFF%5hR{i`zk6tVSmp6fAC|%}m1l)K*2fdVs6u#s zK!hf_?}nBv==@HII?Dz3+Q~C6ttSWL8h?*T_8nv!@8CAwK_{E`wjGTR7%ArlV|9@+ z$zLL5o(tvQhm_lHx9e7%KB`#y2xZ)Sg6Qiz$h0;h-L>nx1aFc@kDc{D&K35R{wO?? zRb`HHqm%Z4&+dCo5z!3fxg%_yv?G>)P{tWqS!IGbImj%FbHQE}ubzJ_naNtZ_kT$k zX@oIG81D3LH^mQ$w9&)5Z*NGxo6bRkizmr4g|Dq#AGCW|6&A3R+wV%$GOKds&!7Gw zLJyvmb%=|%ufBSH{rc@6=`kM6aS#43r3%(~zk(qOg%A;G-@qn0j8&zF#+=qHE(AQt zFK!X8@0(BXtS zuxfp?g?H-Y`+gWBKS4Mzz(iy+$od>37Qp2)_Dup#3zB)6eq8UGeM8}dxPp(-N$mpu zs4RyWna94L%ugvYA@Y1Wr9tVX*CB)@e*yl)5~nUin#H1mX9cgrq7(xCN`FWKLY``i zfjp~=YVI5Kng8apU2z0@1!oxB$r)goQuyN@#=hG;0NJdkNt@!X1gyXUO7o*07D{4GMR2aO!9Dst(1#Gm_pdqkn)B1%Y!qga7gRyAcIO3-U~e?qbDV{Ef&!!fi$_xyJ_}jLVt#64=i8_ ziPAh2FH@3;PG3xU&3^!i-d9_28My4jEr_qwM51%o#7fC}I5u#mxxE1Q#Kg*>k& z*1;Ts>Vp*_l_Eu$ZJ<4A0xp=7981qKzAP#ByxBpdy(MQ%nt!%(p}W@i6f#bSt!0uV zu#HNJ5Wm|%#{$V-q^Sz8d6w(b)RZpbJO#ZXS5#P4)~Wvf<602^vk*$>saw!A=!&x8zhq%#)1d{jRh!-YDRzP391lG3d*D*H3#OrmBH!kA5|TE{Y< zAtYqxi3>if)eJN)kwZNy(f24Iy7j|eAE?6dsu#riy-Uc@R(Q00+&Tq#f>0sxWVhMn zBJcq50Dm3#!q2bf(Lu!mtTQp#`Nyz0Q-S^7oMKU>s=Z5$U;W<3YWSJf6T}-hbVQ%0DEtlB;S;w-x8cWxgGB@*BNv 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 LY@0=+QMhwY^-rm&0Y#x2p5TS$@i;7hEVhU z*Jlw)>`fD|HD?6ehGZ3rBt!+ZO|OpohNBxqao)swwQv6Zqw|4G554eu!$Ov1E+?A* zmVWyOobyPo8`{Zx=+i=9-(LL#|NIA2&92L3Ze(+Ga%Ev{3T19&Z(?c+GB7tFFd%PY zY6S{2Ha0SsR%!x7e_7jZ+sYMv_gC=E6lyV?;r%?d0DeG$zbT5-9JCFZ`aDGiN|Pgt z4R0YSEABVsSM-lvdoH}$mICypD2m{~I?`}vU)ElG?crC;b(rPSKm9kWZr**0tjGSw zwH|N2-Z1&2rT=7=_5S{5>pEUw-Dg-C(=Ye?8}%@=B5p;#Z{1fn_J8}|ZSMbxU9gUM zPT(amR@~?KpU7cYa=Nkq_Q##gb{p$wQHw4uX+29~hkI(JD;NE~sj9Tjd+X0>eN>A^ z131I#K&^iBKywWJ`tDPrE#CTWht$f^w!S)SevJepIE$Q zTpH)Fgp+}v?fXN~TYpa*9yl)J+)le9eJI79bvlUJ>cwCU&F1g-zswG2ZaCTfv8FS) z6ViT*pn8rsd2yGG?j=s>aaTvlPLDmT?L?ZFMJ;fcC4I4^6Q@Jd3#(2me0~rz!ZCA_ z#MdE)7oH6BV^LeDVmMf-^$*7wM(jkxC=~N?1QjMM3k&E;m}+8iIZ?P#-o}*=R0l~>hF*JfOuQ| zv2Dvje5-(!<+1}ZwLxD=D(r1dK zsM_Hf@Ouyd9`@KUs#rg?pR0;FaNlH#z>TgT zH;C9Www~kCLl=)ANQ0PDNRo$XeMU?b2)zU9XCqTolFQ0UsZVL0Xj;oydmr z+3HgK+J9k5T3cxkJ|HKzGR#5fME*L;GE*BQI7xV91M8yC(iYekUyq{B#HBE{>7zK$ zl6jSMV>iAS%E0j>FJ6VxqlbPdl!=4(6ep`tN`gf+iW(8DRS$aiiMe{W1VlJ80&218 zHYgXDg`q806~{riQ4;C>w`K8VVIl0o>0_0&Q-Aqz8F)?jkCdKfOm1rRStmrjKbEf) ziOL+>1@gm|q@zNf4%lHRD)BbKAjj~1o~ZMo>56|f^^lf;%#{jYj)(AEW*36{GHWqC z^MhFfwZys+(P0WBuUEnhY_b$&vqXOTrUS`Z3%@|fY1tmq2Rx8z?Gb?g6ZEr@3A$W# zs((W$P2xJyYc=Y5t{cyU&1ZX7XL+;XD4;m-?UQN(Dy6D+pm&%?@R%Ghp6j_|Lbu%E zD#T#6r@0XFgSna#-Ef9$=X5yN;v~cKYVtU|nOYR2z_qetzQ1NLmi&0xxje>Mt~o7v znZRS6H^@dwTvk6KVW#Q0P6T68j*;H?*<;Jpz5;+t3q&)C%uLP5n!vSdf<-`4wQ*)~z+uJ+Z=g%m2N z?~uGUqD(yph#bq|Zsn%#W>u3H-vL-?V{$nyh@bL8;wTB2{Z!$3kSVj=xI;3(V<|Yp3BhWn8S35ivO=rZ$OqlGC zbtb98*=z$35_DDoD@7kMCl2|d0)IHVm4C4UPIH3y`PjI?DJ0!VyTI@{_|So&CgQPD zlmqq?@G$L_KsL|z(y}x5;CeD~G7r_Wl7JeN*(>S_U_tYfVKF?ZR4E|};47+1RZ2h?l2?4)M+sGcI>VzHmM$ z<;~P8z$W0M^xO9n1{kIxGqo|bDKY9x?&g4GyaevJ{f_{b8ud6HUH~o%&m6;~6nTML zPMCaYGjaMQj4FK-MASnjbbq^^>LJwQA=W{YswoAYR24pXJu>`ryI^o{{K1^orrl70 zO=lq4*@T+cCK7b>`gU;|hr~}jGg}U`G`Z7k4VzU#LaPhFZaxU9_KeXHP>5D4?msS3 zOBLqZ)8ztAigujn^Yb9S4c7-vH}NkCUhXyPTc?%t);9}I^ny`jxthUi6b1lNEa-|SfL}Q31ich=b(*(XH+Z?- z>TYZ1yuRM4iadvdz+9?!V+opn7#qR2D7JcRUcM}JvKN2wK}ri;e>Zo2%- z8`yJL2&M%(=c0^?x~d82AMGqNhbg-l(4zu#ZjXZ zNV*P$8b!^@)h&X=`5neEY~Cpz)n$1a;Y7Rbo3d==Wh-ImWU4efc9`HSqE7g4<;S+9 zBBpDzx33?bihpxf<%-t&fhZ9*wzKiwZgXjzWqKTvLPI}@PkP2&k**#~B#P61kWii& zr>IgWd(Awu7(f%6awOEK!OO$QN;*Yi^>%`)pEzv1et^j4V{4reWavb}G++f>UtNQq zkVL~&bOI^e0K+8X@J`IHwacSCUW`{g-&#BbXXzG0Dt{z&V6H}Bm=T$)P?3IFlorX; zQRW4J@(j#w&^|e+nbD=%s$}{Q+p<$kesP;?SG|AMk43h-WWoj?siOCv)ggyEc8nl@!2e7CPrnY)&MG1p(k(m>3MF;FET@J zKYvMLd8=R|`V73K^d`1dSIH00s}}`PGJiWkaao3g-c6df!aJK|Y9P?It&ml#gRkEX zDuoxu^gdykJ;_Qm{E;)S&8ISFTf$?c2fUyE@~icpss;vZw#>(#HYdk^p?B^eJRV2{ z`GGOsXSB&5?r;8zfByy!71+3CZe(+Ga+fuB0u}=|IWd<`b^=3xm0Ig=ypR<&on$O#}gR;POPiwD|c=;`ZsrIC1*h$2igwu&>g=$)*# zho+V6P1kOlvFY0CK%a-PKiA`+U$*KB&Q@F~8N(j}T4VvTWAdj*g2UfA&HOCU3 zWIxPQ5(! zT`h;9>#zT_{_%=r`H5sHa}s9#=iA_M-_(0n9S+^KNW!uxgU5mWs#e2%T$wL}9m|9p zYvXgKEH0ma*k&?i78XTX+BK10a~m`ew!Mdn?Up^LBgz~~_D!`pNH)lERF9$CMzWLa zcU^y!TUHH92dHyCj7lRpj6-<6N~1E&qB2u+Li%+GKYttXnQ~z){QO0pgi+3&ag$6a2h=v~wEyr*nuPIeVXPLyr5o!AZRumR zm26W%4~EboQ%ee}_MRQPt-Mj+jIuvA6lEJp56)P8ql{Q&VVT0$F1C}rQ0H{Lda*j4 z4o$6pqw+k^yS)i|Wi%caVLpXQlIJ>9*6Pe_o+1&12tJNBlF9c>KZrzv2a@vKqys+N zb#%gCSlh9BU-eZD`3D^l_CzbN5|(18mmkiEjxBB03>`8Fc{wgzs~!5&RY0b>e)Y#3 ziaBAnND=mt{ zoW4Pfr(s?=q5a?&$T`?C*m;5 z6fP1cV6oitxapVvuwTr4J3SNpt+8pu!%ek#poIN(<{<+yWHcFDzW$g%PqhyDF zS&G!?0~|Y6r-gSoA)d8FtxL-dpoZ{x7^}9X98oE^5=c6prc*ZLacaynPHES)lXN^X z$K*(Rea3B|EcKc8-d6o}j1()81X~rrlVCX{&z$5~yV#NEVU}Bc^_KN`_-JEcUX7D7 zOn723?N{miUBWyQ3X*x?!}jpRn%&HQ!H~8m(9m`ua8J^Cl6B{C3IpZi1#BXPCd4Gf z`9B~tPcrKwdUKIs0@?u#Z470mYN-_S1Bp_>iLiwu&*KSR**wia{*^`oPOFI+(MN0hVK?oK^6$xuOEZz!!jPIlfgbUHl>2L{N@bo06(IxLbQ*`)?tD0~wmQnGikWgsREWMf zb-l9Q;<+waNTwL3nkAFkZ6guEQoZr1AI7;d1yMMQo55!VrSqHz#G9w#+ULO;kA#IH zfUseNq+1??KNuKtIFpF5$jYfyw2Ok2g_*OR*IS)w?m6OCbQ%D!cmMF4YcnJRts?d@6XywtIXP{-n?IP1lW2ewdTcn7# z(gj``#X9gN#s?QI(aYP+0hlG&#GJ9GD2m|Q3Z6h;aNk!)9cx*M6v@0^g`37plQ&Jo z4eB47O<(m-wDEAEqVYI?4YMqHuAWK-?U;-wbJyVf!U9%sQ+ap+Q4F1*MO z+z{{cVe1zVg7O6lmV_&*D?f#Kb&1s65w2-_2i4elXE0W|8Ke zrm^nr0_A?==5Qt%RU6mN1>berD+N_51@MW3f}n3aXGBq2WQ!*7HkjxTfnMht$tVpT zDS8ZfV%2s_jqakgdZ<}o{7cD)=D_H8rg?)H%b?fsHkZuz?XgaME0Ef z9{o1aQMASm-5#2M?mVzZ*MWCEu}gz^E^pBQrWQKUIPDi?gWh#!`)Yw49DFhb=@rQf z{N2aj;2X2Mfv}Z*YBA+cKToDfz};;C-v(p^JtJ6XN)AbrOPZPn$?Ri~_~P#F&F7CF zzW9palib|h(T^Q|e6c_?HBbn?L=y&`UZM9Eegmw(zDVeQsNDmGIcklDe~_{@JlXk& zq|{QQ|1(;AtY~s_V+$tvy;{0Uq#|^X@;ml6GCYI(h=X6v)Hw|D1$yeHPfC6$29#`p zvzK}~bT$CCKPKC6_i{)E+sRdax`?TF(gX=@@|?*g=&9TxAARQUQ8daJA~}uMhVQOR z@)9Vj1)R8^qg?D3@-mWMB$OYla^;q>=Eyk9FROPuqMch@l?o5+HH zFKwEDin-=wBlVDvIBzy}K}4O@kniqV2}z2m;<-Wt0Vqh8Rj_ME^eUu<;t?PU$Z^n0 ze4_@ekvCi&AC*X^6mc|Di4~{wD)ekPs*I$6n*HIcCEHIO^3iCxCcnbkSr({CxM_Z7 zG&qUe#=k@V!9~D)-L6qqys&FV2)b?g|vF9 zK1D=j$Zh$UHQ6*KbjL{LSY@j+OiE!Ntc>18nB`voB1EEN(Fg~AG*CG*bjjSTL_+m1 zHc}Q0Hjc54%avwOP+3r!DFBr#OQ$+JHIL}dY}TmJ;6HPn!-Lsu#SJM=s9#=F@ z?5UJK64wQ-EYx=k`F7^AtJQfXI9;PmD4r*C5S?S@%-VD4$hLG`c%ZmCwE0JT1)yHz#iJ{<68u*c{ff z0co9MOT8u;H1ZH)jw*h7D(g~17Tdoja73CA?zkaXRYF(8cnSA^CeoQ9cB5DUy=I(r zJrFCUk^&si#z6OGMi<VvsRT+bR|glPnHIl4LNE^W_zUIsqw?0jHd$G!W|EA zVIW&w16JUSilNL5qGnuE71_#9hFZ7&-xY8mxI6RFOQc!1?_1@@$Za;rxJrF1b?-}E zOcQcrcEXb-6Fl2IKU!D`y50mHCLjb_*SCNFC!?_wOTy%O#S@;FfdDUOKhhu5z}+HM zCP-2nu!*3pzFlAajDPaZ`o z0l@;9!ER=P*geQ|E zmBf^h82{YoVsr8Rr;Ob77csfJ_;F^#E6$ZP>Cb9^&fUf9iyWSnGD zlG)}WdiQ_hWcD981=cY^6H(-_VphSIj51iVzlc76xQ*EDg#4r$)s<^p&x)LKVOPdx z(ff9@DVwS%S7o!aiv|TagVl*${iHxI#_W`FMw66GMQS9#|Cy0;-8R#@S#)Zn8eOhQ zugY$*Qa$NZSrNTb1fJKOaxX})ySlj}bG2;op)P+rjo)?a7r=9}DfME7k5_fC+wOs^ z>qhm|*vZN47iZyYb$aZke1M~ge%Pvt%pZ*WU9UOyNY zyAeev-+_+`=c6fSWXe*S8&E!hUATrge93jWQ9Y^_ylOUZ<1{J?hRWU;ZI|tO-A;Hy zV5+OMeeiNd|Urw?ZUAB_A7u z6vR))iqmuT;Cj18=CKD6Ibh)ebsSbvrTRrzZ*|=^{iUTAiygNTM0E(!ZCf|`gnWO3 z7HKi);GEm3rRt1p$7F}k9ztW=_B9H-B+ervc`OAuJz1hn*?oCLTs#tYDz7}1Li*Ar zBj+&SqsVU{p9sm&ztMv>emDLEs->~#pC#=mekJELNs0m9 zUg^WRAricsdthOMF~h|lB{O?!Dj|RN{G!;>R4c>BI1|wy8q$p3E7cg7jdx7wqBsn7 z14{?V34!TNfI0Gt%vOd0c+O(#Y3yRk*ot{LW~qB|2Y?>i0cd7GZug#^U?ISQG^Dee zP$rfpFQFCStE(2XOu^GUx<`hhk|C=_b9GlY4ZJwC%Y(^=x6%7UX=_DLMWlbjj;r?A z=YnPfi@|sU_B~{7TxGzAH4-fKM2=b=qBjOocnfVQSh-sAcs4(VAcJ$!hh8<+R7Ym0 zztjxS#v3sx5AwKc9GG~M@X-X4bWG|wBYAJ2_8le#1>5kfET*dwz!ZD_O*7 z#vY*&G|>LNWPwHw(?^pL)<8()Jb|3r?s|`J4guiNb=5k6E5Or3lJKHl2G^LwWd>c! zF_NdCzX{oXrPk{M6bgTdWX_ObXXO4ikYfl+`8c0rQ9MIvX}7(N(46LCDD;IBd`##> z6el7A=#^U6n_Aluqk#eF>#oIb1|G6ey0j<J}ndc(9+u_uGiCtx<`c-HrIph=|!Aau%f^=9thuN1_CLjwn=8pwY=O(2hDMH+oX9>FAGM8PM9 zirQ?oGm)k+=$IQG81nrPa5RixHF_QS19Z@Sf~h%>N31ky=##{QwI4oyp1uF|diH5zx(6Bk`paprr%zN;1F^6qWdt{81 zBIbed|4`aq>4Y3EnakmB%q7dN-JDV25&$wGfh~Wr$#YnoNZmNf_xh}-AKBNaKlG8N z&C}idSV^qhE)1b^zd}Km1dM`9Y!&dDED?$63|^`1(OespzB>Hym(7GXI28Wb^)7Ea zL!54t)IoG+)DuJQ*rvbzzs$LHvxQ3JO&XmTOYC1=4hv<`TyPBYEmia~BwtrR)_4z$ zOn`s?A)8iD)-;xPwg5{~ z3))ZD|0M59Xq+UKlPQxdDA zb98cLVQmU!Ze(v_Y6>zkG9WM@Z(?c+GBP+f3T19&Z(?c+GBTGjxdIcGjRGluZsW!k z{_m$?g8-oli{V^&nV*~OHgS;MP1i~x;1pO#Sd=i4!-~Zce#s&NOCGPn+wbl}az6{c zm9=b(Ev_dbk0{eCW3}jYv)dK*vJ2i8^+7Kh1fT>~Cwle83+*-d?bjcKk$BGIEK1T~ z&Qe@-7uHREtm?9zkt`B9PeZwrbzf|c?d4WDqVoF4R`6-b8-6@NS zr@~#>cJkQC!ko=`SZhuy+KZA$(?}_fg8XoQ6&Bs>E2C)~`~9|(%i!Tz-FoO`J4-m|p71a- zsya`k`W&O`3$9qrC?3K|*tCzJvN38twP$@|Pw=uiom>7(gc#*{l(9@0 zr@<84q9Kioemi|pYT$8wA3E^zQyLQK_3_yP=YUL%0Di;n!E`C5+H^NH1h~eTU)rt@ zJSVIVD09#^TD?}zXac6qSoo=G4qZ@cl!xp+bb#_(jT@aT8~70Y00F-YntHsQ3$q=K zXL3G{GLh(*?yViaLipyWAQKTwg$e)gFO}1rL^%;dUSvXlQ&hhJp9I=^ptvIyt&lbi ziETi!hzf4aSF26<$(Sq?U^svPv+CN(kVi?za%Q(%V@@y0Rc?ECct`7x?@(@sX=u7t z+w7e25QF06#P;~T+9qPka2o_(JwVu;WHb^$?>4&dDCBGiE6;RPm`oa<{vc-ru`5f% zH5~d_SrP4jT|s<5iwxmpcm_BnAra40qwA~MkiRBk0uexBF>o=}UYCHl_$wcc=$9bik*PZcRMxrcc6wAq4I3(P6?)MR!Uw5%ORsY3dl`j`bk459eW0UVTOV#IS=30rBtUDn)wM&qBMIk z;=xzBb;4Ag48O|<1Jm3DMy2lFA9}gGw$~}3h?xZnSOW2a;sX6Y^$Jp#K>_ioA@qyi z8Pppjp)nv)enApz*e|r91c?NlkdcLSeJvu>)4r&?3NU9=VE6)(cY9e@zsTihA$MDJ z{R!rO=IQ4#cTS=dEUqMadyInX*_coWNB{TShH|6>!1z(GgS_>c4bY8Q-AZ># z8gWK*r<+~_Bn$Y|jMbosASoTGVPko$haZBBV@GFwxNF8RO-CZ;acV_;a3W>^ZmFk# zh6!P)!OoUlTljfxKo;vRFHBWK1ek#_c^{hcOjBXZGxf2}V%wb#??9{*b`b=NCR0w`KYQnsJ>x6Cnb@2&?FN#h~^?JcL#fIAZSp5m?y2tTEk zUL$WLkYnTz^dOBqv64qX^1F&`?dk`p7QHWCt{*Z(&*$ogj1qhGh5CV;-Nuc7P#%?= zsU_8^6g-y`=G)(vs;7x^A7UR9KpNQok1(*6z7&c%vlZGKK;~efs}+tJn|YS!Ck$zt z(19UWx>KSYQnuPweFdTyt!n&LD4H!XHC#Sq>=2cT4M+yj%<=(B9vkOBjJkmi%vc4= z2frlv@{7P{@&AOtp+Qy0+nc+8jofaJ5>HqjRWjeJc1TX!A-{(l8lg98pH@<}b=r~Y z&|ulf4r{IyN>;*kd$*S@IA{k(+g7j`H#|ooap*n-^6`NQN@dQPZtHZa-cq;*oyQqYPy{4opq;<|ILkP~8Vg^&yS;h;Zo)VqVv^fq9^|(1>MTe$;h^+! zV7RKit!~m(p%N|OwxXz~@$}czw$c4t)#6t`M zCI6g{MDCDBu-r5}&QWtsLL5sDHVNwA;6$%*-xcesJa+q{l$ZQPkP$EX%QV$5`AcQC zu3Km!|Kb2W(ARc zmR-&+rYAwpTN+-^5ZLA1f^vshh0f&`W64m}{c!W@_RZ~B9!`Me6KkmAVNwZkReB7# zE{5i0<>y{P_)r})v*w&xt$s-KG19oX7WFil0~Hc=4VSj~_+^BhVj7zI*W3MkhG6LX z_V=BB+5Q(My*h_~{N6;+bm(jmcI_z1^nfXjUF^v1tR#K0yO$UMwjT6^ zue#B+X=vn(6`pIT+n^SC-VN_5P9-ip@Bhkn3%W&bkTCTfNudyR{%fGHD0->7)X8^gZuopE$duZ^y@Dl_#TTz}T?E%3mzcWQ(n>!%qWvY2P{@Xj%+En%;*2|EH#j1oRxY zUACSVX=?Y!WQG$CPq~@ zjqULHo1)uHA3}gXozY|S=FrRC9w)yI@Vsxygb%!bc*%}nzCm_JF_7n{;3x-49{NZMyMh7vs1%x{TNZy1mEjTQLk~Rw3rDBpXMY4&^(zo6PIj|XU*#P z%XTsnOk$5(Lie!s`nWuKQ?oQQKyW5BC@nA#?2{ry)UqlIHS&U6=gn#kx2iyv{k4N- z><3up4JPy(?^ChcZy|#op7rgZgX^b;hCl3o`rgb`)JC8CYy%obH}-8y7zj)0FneG1 zUIy~mxg0xPPnixf5gPNyjWm;uJcowLdss|_d%tL<8Yt9_|H5j3!U2PN?^BPZnzkNH z8-+vfs;r^2y|Tcn{h?PE!OBBhCxN(w7OE0vrP|GBTGangT?BTFsK%xDme3Qy@30O2QH#K!BB# z?R7TZWH%K@TU)7d4jhV-7*nK7QX@~^Y2Go7f07z$;>{(M@?kV1pwT~Hf8A*K3yLv8 zvHE9!7Kgj(E4x} zy?wKPSpO5Gz&es(o@5eMtT*tBzyy|@@1no`@l!-TEzl2TQ+9c+){{(PnwXWbUi7X# z9P(z@D)(bO6v~J()O=#GcNNvoEq3lq9KA>Y;H3Qc6PztN9ifSX(8$WDeQ`MvG zsVRo4Z4i8ZXiv=s4XqZ}=ZA^RUjKC%o~Bk%nqdLnG={$a%O9pXQ}9Df&A0cF61N~3 z&Ln5iYVnWtk9Vs?aGa*ZnHK5eln{!whhce~#Ka!3%)N^<%)rC$W1ZU2F z)QUj|C)7l_fGD?3{REC!qP{Fq{?OV`6Rn6$F(=Lzh`-+TSfXtRI>&@$*+}Yr)OOl$ z<#s_ij$@HT+p-vXtc@Rmfn*70!h7K%FFv31Zu2}v#m5uGXt)Io&XeoFcqsRkim>|Q zsq0(qXKwZ=^%*9y12g_L*d;K_Y)V9b`?5j1YT_AXnM)b)i25$Uu@RbKItoOSH(n~l zfV0#E_H-z_szA9`DUp~F>KqCB8O-irQ8Pev^2zZm!Kw6dk#;deW|%~VlDWWpFa{Y1 zgHy@{VFsCB2h=teodDoeFz;V2TKVsDRoAGinjN;fP)kTYq9H2Lw)L7w9LqR=cEr%> z7{3(k8D0g>6tY78iyL8vEH1lQlqt@Hi86!4@ljr$f{%<;#}mRZWK)-YKa!<*0{BH^ z8lco}^~btu$|b5Ablz9R9u;}7b<(aOJi}7RsS9slQk`Iff@h35a_N^-3k#mBrZ2le z^W~Q%diVTzD>sD5OxWLS%z+Jm#2m0ohzfa7X?Qx8o(Gj_=uxAA2!a{6NJ}s^;-a#9 z$cO5H(HaO8P#rfhJEFP7)_AGWL31 zd(iK*k||Qau3uG79VdXIMJ7BOesNmJSrLW2lYwiuBd#T}knRhED4&0St3(P&5+9oK z>uBFN`}4!GF6S|2T(6nH<31YlhjDBl(Rz`^(VMprUPGLh@x6~em<>6C-N8i*Zi)AT zb4PIM%X%9Q%$Mk4iQX&`S)$)95ytpBtlX*76x0y90pFp^oBr7LCfR#!4dE*mP-6QUfnRFtt^RU>TAFY z-Nq6fG`dL)WGI-glhktUBar1x$BYxIb%gHXT-LRT(27E-6~ea!1QY3-79-#W2@R@1 z>DI>k*tRZbgL+jfbXozZ6K7Fdj9a%*E25BSV=wE->PC^fg+G^nHYsA`W-{s)qTRS{ z8Fwbbw32e1keEz^6WbgEpTumICaRr+ib6QC#SthbpT?U*o`xamKj{>>mfx{%GNw6TkWLk2 z0*WSiaLoI`u7S#brU^i;$+rr#0kDeyW6H+poFxnuszl5ahEw)R!la4!no^zFjstKT zu-}fczk*H~Cz+eND@MsEAGj+O()?2bC?8#DGE~Ut*SHkUr%VN1S7dND?fP8AWVb51?~n5jDR_G*DEdld>dp`-2#LRkkYLm+>NNa=mV&XtQn|?7#(&SRs6q4 z6}yfqDPBdD*?sR|>0$dA>3kk{3}UP4xJldCep%}~gTc!jLo zHCAn9FL6~y6Hiv|)-}PERKuQ`jF)i*r9RvgeiN>!ZrxtS6;zBk$!_Dy>1Sb8Ougjk zDp6JY6*STR88|t`uEHv6N39x^P#XHB?%Y*yr9ZSA7pvKwixMmpOF2>Nk+HD~jh}3= z#E{N^ZdaFRI-4@HrOUQ))}ClxkkZB3rJER@s^Ngs_}3~ZKt>*e)(tS%pwjnDUypTF zRI2^&tD%}YTL?wI;SQY0N#hw?rlP+7DfPt+}tdD|6# zi5oLhb6%m1@I%q}Gs9hyK4J^5zbB+t9o43->c#6$Y^ z(Jl}?j?(~(U~iaU>6iiwC44>rm|S_!rYq==AVFUz=n@w z0DL?(+LVj=7*{jBR23}6{(q|KS~*W``ujriC~rQ)?|Ksr?>A~N{;Y?lYNqx1`b^76 z46#sQ*mmu~8e=0eyWifL;dx(ARrrctdo{6|=>7iYp~g~HhllVqu&bIzIpIH4>C{wT zwINOLbhIy4C z`i-HuysMzr=3N=yh4pK23zx)G56F6Wy7C4_po3tpuw8ouySJ}klX2k8_fXnL4-*$- zD4F4O6w)aXC{OyZdMdbJ{)*sP$#1kzRCe-f6UW?%)H}aZ>zX&e)sZjzZ)BEJY-WUr zaXR+Uia{Y%%*;8qw*Bz)FX(OF?-BTOv4S!svWTkQ<45&h8@eY%xfaT})17f8>izoe zuki2R?3>9Pm#(A&90NBtHkZw$0!4qzlH0fy-S<~ukp(p+VF>U6VwKpF)WnnVq~cL3 zmFmudO+gZ4iqw#l<<25s;9t={=3cz`XsLT9Rj#gb%S{ltk8{sG7y5;Sl#vjB?C;`m z_w5HkcHLb_c6YzrG5wI(U&VpEUEi%j8YN_1z{(7tthaaOWkv)iB96)Wa2J2PeY05q z8+L(pETTyyGgz_Sz<&f~u;hFf{QT#KfITe8_o`NHUg3HsGs+{gGSrK{YYvCJ-gM-B zUZ2b&ZvbboIx(wn9_Wt2r{8{%*5Xwh3Yw&36{Wc7KIrzUsxBW(_~*P}Aq_(j1x>qI z{A>Ng$WvIpVqBX?1<$mJe}R9O$hK_`S-EbCIpRBvy}_)cEMvRB^O}TId3-??V#job|uuApn`=qP63_eFJdvxyc6z#$GrHc zH};8qF^3Ti0Y5tWI*I6-dkK=TFCox6r&Mp@LdbXqadN=B6~F&KbUch{nz{W4&sI8* zQJhkl4xZaUB4$}4ulRqPz>~qMc_6dYJaw=(;W*Xh=V>8a+7o!wlZW8D%Nfe)c3nhi z{4A!3Vin}DDfD7;G zdYl+35(h@G2=M`t?@jrHGQ;vIJIId9G}Ai@*f9#3-SLyc9XWr^%yE+POlGm$cGE04 zL^EM=Q1^NpeKrR+3VrzZ$|MmN`j`c1&Z>n#JcIeLMyKRUrD_0>O@>)~Ee9+W12>rz zz}h$jcJ<+8Y3iBh^`yW<4c{v7_N3V7ZC>=MHAps91Ne*6adH6mrf?!W*yS-;`xt~Y zj_1f5XXZvy5eXf6wB>)Ay3ebN3Clz9 z{_^nPy36xS1b@^ok{r^Y-{?#v^G9R^43i_6TX{DTxwH!=poSp8YF9S(&GH*n-4Mch z(uG%e^ThQh%XA z%_7Ls5PE--ut$x$k>Het+1F}EHdVh#I9$tH626)_o(UhYFwEuwi-Zo?wyCN{Ta$?_ zI3rEo%wv)P)ub;b5)$!RB2y;#V3(L-DvZUiNhEM5x1!x=6wFJ#Ox!k3T5E$c8fF*- zt7KN*AYg5H?W?Mf;3=;^YMt?9h;_xLfOZb;23&H%Laa)d*$6Fj}p2tG7@-m9r0OWh2#yH?DPSThE7 z>gw%0jNfF;f!}u9_G34ObP{Vw&zw#YP&{6Vqq$Qr zLE(R-eq(^ZY!Cp|JYd_!Yq~?sp`+gfNhG2D#1P38`4^M>)9IkvvLJ6-&t^OLQ{8t~ zHVy#Yl)JLO8S#xdekNez@?F4S_%VSl48l$$&$pk8rk?XXkBdyF|hA46Fh+v?9nM_Z| zIMiid>WYGDT#~LKYC6xtAP(FfzXD1;&`uNvo+jYiQ(g3WHUcZYv>i005_I1o|EMK$ z!g!!M7a$#7iM;Dhvq04D0iDXZ7IQH?wIgi;EkX`6^b$1YNUsjf{ytDegVXMR*dWyG zgF%=vmau8ey7F_cRBhA|gzL(T%CO+rAPMlE_z07>t=h2wD9jU_)z=GY)xw*%FZ6n# zlF0S?zE_8%Zt_Rf0+bHK?uQ|_QMXg86e%KWJl)Oh<`IyHo9%+PdAFY_shEnyHTm3} z-HlJ|K~mV<8)D;WM4_Yj{;LdsF^0fY{)#z?EKtEZeYy6@Xx$JxRa@qd6~?CA4wnWd zM%otx8Boc|aB-AGrjhT;y3<`^N|Y!dT+a`FH+9h8!96VSmPxgEn>9V%T4qjn6+0X? z8%tx50FguDe`o3&@9z8%gC|1U>L(`};ByA!4tqI>A{>JFXm8!2)!#CIECmqp#GU@^*EN4T7|&wtr^MH@D4!Tx6DC-|3h2rQL5b$aFDt zHzATVXin9J>}R)^93aagCtAYHi{i(DMFmQ54-vZrzY*H$@5=fsUm6JDW|=v_jq_of zd<0^AB%z#Fvv5ROvfLQNQX^>m9>Ccr7h-iguF`zP75rQt$|{F{ZrscWBZe@z%a>rh zA8;GKI~o2nm?^vrTaJRJzmb#vx&<#fkCnc1?Vnwj0G~g4v_Ukj*2Qb@N||ynU+Lki z6~eUHnlyq2U^qezy+T^lTmv!GCXB{-w-kI(N2N12@BR@ykL9nCq}Xz{&&XEz3!;}2 zB2YoQDG;rW?G&g)ju@b}IqmjiZ+%T#^xzmoRuKJobbavsPk$%a#Yjx!#frsD$bjR( z_XB=g+ddJVXlG;3gmH@d{b_yoH~9G<)rTbOmyNIj90NBqIhU-k0z`jV+m7SL5q;NJ zbbtUMfmJWNc}HHd;~0)FYdCA=X(kUXsYjwmB4u7?R|t?V*k92 zXZmGEQclt+B8&aZyL*4*FMfer;2aBS9OfCESghfXlrlK-e&+rBj|Y!E_~aW|%3AF3 zJj*l6Lwzz(hrX)zdr__%@>Z0cKI9bO3{J=T^i_dYjCwOn8I2P%4-+MUW;|C?R@MHn zlWkFz%_~xrjjY?E+z=^NTe24|d@oAUc6CXWmT5)>bmp*t+xBNw};O$LoeJi$H`q`{0Wnx`5_+lIth;9+-kMtGd_}rPz^H`YZ-T zqs05rDg$KGR<(azQ-2<(pn&(LB%=0NO7koWy-l~5B|_l;d+{AeXMxo=&nb@#gkGsl zvATg*dE!jjSH|f~Ih}EugaI=TpQTeBF3j>QG7lPkr4tCOV`-jF3!H~Jv(Ph|hKT&V zcc_{|`HVbP^?N@DWO$N!qFyUD4E(DoBAdSwK}xAi1$BP|t!~bcty=6x473dg+P1}+ zjWG>bz!LqC(?BT%wi02FW$JD~ISIJAqu#j7GrT7lTH|R)?8OndN4iF?kxyf28AL~X zDRtS?Bcn06&eB7yp5FT`KuEOJVZt$fEsHgd?Y6GE&DJ4?TnPeiu?7CDba*3`in4{! z(TahN%c_4v_Ei?nT=Un`orehxjUwJ+5c?dM=VJd3Kj(Cmt`eFg;7fDn)pFpJ%$n9I zdUvH(V|gTN`3R=cAjp9N-43kKl+GQ80!Fjg+U^0~-N^*LJS`C_gz1cTkcM2qXI#Pk z?Hc@4tT5K9^8k->8ZqbXv+H$?hkRrv(4&80U?zWd1F^TaVAPC>fT06H))dQ~JkOB==rGD}bCySxrPKJH!K2`Mz{dk?!JdCvLzpJ+z z<$8QotXf%v8f*BjKI`hHs=?``tXd*kQzc!sf$~$Ts#l-a*HV%PZ&y4irNfZZEU`Y5 z=llU9(lE0XXJEy-_Ay}JL;m1X-8ba$agu-ahDFBX-#%JpM{2zS?YCl-UQ?PzW47gd zf^SVR$VqV?xnyOt!|r&IAL5V(iHm9*SEoT-DPm~Vhj{{QOZ&*Bi=M#|6oJ@27^Q1N zA!Q+l(2SyZl=p{8GrdBto-Cfrl^=Jq6nk{++tX{^xJ|L^9vZGz?hh@oFZ8C8N*8}< z>{lWv2yuk{%2GlhmymLx)ZEgh%NWHWWXV+$>2I2y%(#9Qa`DqLssh;VM~>IS1`V< z_Lm3wMHV=epL=50g+TcT^`HMAP&a>D93P&29$VQj1N~X|YU+&%yl?CNX{*uxX}-qiKW!}}7o9jG?3Bc^}4u4h2wjOpxt8{FxnJE5f& z+-n-bkP&6Jdjo;PJ%AB6*Hzh^?1yF+n~?+65n97WO*(3bztm1_eDy~N9E5+lA3oR> zqLI*o!elG!XLlCn5;f{n^%@>(>OOYm$~3I{gQd@OE9G^?4$Q<(w$!5$s`!IxMn9IS zfJ^@`eRBYm?Dcq_g!AjufkYwt|1gq^;_s;_kxFa$Qv3+}%iLu7Uf#Ndiwp(gOVlC(T*} zIE8X~%4qJEL=o3ZFU>OS5F7GXS9|rowZJyhbMx-7pYlNb6xw$AKu6=!8DwJVs@1Z# z6SW!kU;^rwW%BvTKIJ4o97H*qUtwxZgK)UEN|;%NX;5)Un?@GbXiOd#I8{9sHg09tR36qU%6czt-D~)P0{3L4-yq{`dRhO+6 zk)IrwVf0w-DqQKjFWN061fxV#8DFBM_73RWh0Z&A42W=Ka?Stqa6!ce?k{#K@7Nur z%61Q4BS%9P1m9qkxI=$E$k#}m1{56)>FBq9U$7jlq9VncskEQuz-c$MRuA4L34b;h3%awRT0Damo$Gul^6W;*+zq#rJ>3l z4-z?Jd;}A9jVr&WQMd;&O)Tp2cm-Dt2-;bVsn20T?zg2LjJ;EsB(d7Dy$}}vCM?hc z^qBnIRtH3an{@U^kO0AT|t^xAi$+C=snLWCJ_i&J+?stFlJf=~aj#9Srt=YMZ6pU!lr?T4$j(wKrI$4sZXyilTWohnl z+;)D4|HFfl%VTwQ6x#$JrFhlXi`hTn>o;Sc?TeQPxdI#mGBz=nC%FPcf2~>Rj^oA= z{y$IAaDbQ-NNslW4uT-|!m!uK28m~k{Ma=Dit5qOBat#m&G8QVDtgC!)fbOB;26OG zJ3CUdtLm$-PX5Y5E?7uE_IGu-`0B@u?fQ$5?Jj=35c*4Ie^m$e&Gp4P%&Fxf6dpI*T3KvoD&gGq9VtM>n;AsxWJKzi{R?}Pl5P!$-YyK z>dHNx7e&rxWKM?q(7X0a-Ny%KL+RSQe?cy<1|p^fA(BA^>F^YSL{>p z?)=E!ojb_>`TB*E^GQ`bQQrndC}RROT3l?I@r59rXK zxha;lT(tc>LTCPkS{tFAg2!f=`!Agt8Q0PT~9*Y}@nccvRqK&O-rrRAsNu_m=|H z39~3rU0=5i6#Z~6SM0-iL;qOjj6_R8Y#WZjBMFt^BAG#&{=VhPR3nia=!G{ zTEr30vq=mje}q^PqodL(j?`Si!u4$m!1#>66)x*Jw@Zt z&P5|JW_jpDlXd5X{79fa_}iCpAd8U4Y3zdu9&B~C_|J-&WPEx(Z3OR|s#BDw$~~he zSBTnUe@S_9|HSBA^5djR#mThPsctya zl{zT9rJ@p{my8h;7M9jOk&PvC4t(D1RL>6ORvF$BnEO@MAx~eQy+$q26!RSv?*}DB=Fc z*9r15_^0aN`~%ZZu}Q??ah*=vW>#$;e7bGB?HlnQpgf!pWp}5^`Zr3&f9a29rT+Ss ze>PXj)HeN~O;pFWZU#6!2}4SzC2LLx)zuX%ZI=?o!R|yPCmQs~SNmFRSK~eOsj_7Y ziSXF=0J3e~QeHh8>YcUlGmso@p_qGoBj&CiblWG9N?qI|k>ru#c6l6)Vh{Cj>-8iP z(ZR_g1*b>A@w-QKI<05cpa_>Hbvs@|e-6(g$IN?W3S5@U=j7fV$G9~|yslF7&`LBd z6$xwiTg}=Cc|FeKIcs0ivz*0TMgdzC3*C}unxWE{mof>7h(SMS14GldauNDW>0z5k zf{4-E$dOXMZk&5%8B>S?A8Tj+Y>QFE!{r1pap~99tV1f|!eNy}I%fsGIKk|Wf4W}6 z%s3gJ9NI$|yU3u;rWb&?BvoqA&Z2r9-64=RZ? zGqu$X<{^cZkagRlH{YtyjqT$Wk`l>dH&{b}8HOXeZ0VYQKgtdf2x;Mm;k(NMAA}M^ zmZ>)p>P()GPQW}aOi+H`f0ET;^|#HIN*c0$m>0nnsq28nD1vkq>nnp@-IzjHvUhDW zbnTv9IV0a=I;qM5Rv}qmz5jH%VyFIu*6@j;$v=NI!A&~+9Xdpj7)LH$C+#)U+2@N- zpFV!E0!m*_1C1uEYzC4ENh9utmcLCRARJM|yY zHC1byY>_m^T+2ht&Uygs9>-GWFWsQp4tIqXwI3)VkVf!dH2)fpp(~%J(Sc-VnisdZ z(EEo7L=97)&rUaHf35{VZhXzsn&{G$Mt-K^*VFkUjeH&g1&lp82p=tK2PkoBj4_)h zgwKucYpHyeh}RW#l3{QfJl(wA6W+a?MvUcW0)=u9)sH`zb`h?7y>|S&o)RnfjS`;8 zjmn60C^YYXbKClwcK6xj)(buDs{wxiA+ze~LXJtp4YXLV(VQH>#fr z%zMIjo39PVc56m+n#Kl+svO)@wbuPjluXt|^zkg}AUU?PA(Uy%)@e4D*r6~1XOb{` zHYaFUKx;P+(uJlVzdSkMPrpv9Fnb}-mT>-Vw^x5=wGOql$R(|PeV9a2I6tW=-HoX} zAkgN`9gf4ogQprakCTkA_*rDg0qx1gNNQZCc@HE+RIDd*lw(Y2?(|6UD~%`fsr z;h~A7G=>;0Y!qrOYP;{GV9iJJh9+S>IPw#SEiFDDYSg9$9!9^(at58gTaZ7uV@9?- z^g~J>S+vWJs^4A_t8TjXFatXgFM-YN(iY887|F4!f5)kfwD%2DHR;dHLd|;#yeO+m z9W{kvil&(wH*osUEi&Lnsb;#UqCr1&trJNqj3k=$DESmxS*eqc1wBt*bA6r@_!G!n z-i~<=|GGeW4M?@w2sWbMpn^+{{5gV>v(-2Kz7VGF0w&TG+Q z=k(^{S(mvOl_wO?^?ak)e4m71Ova7STMH$n3yz-M35jR@DDaJnaYEVc+YQx{BQgB^ zpot>WoVG8zwCvv4rcSyt;+b9Dq(VQuQD_#`e>i&#C<>O=B|DY_Fl)?URSvgJc_525 zlVkLyiC=7Fg$aDOFIw4NuE9mPqVDfleW2cgx(BoKvKLq-^#*|I)A6X9E#ie;+rpiu z+=Q$F|hGU~_wpdBKv`wZ=ZyU2-sQbSXUoS0iBYKH zFmgE;e%RJMsPbeyWEX%k<5EPE@}HS3FfEjw+IG4lOwoS(x3wrF_UuD55=(yue_~-4 zl2QI5v2r1O(y`)}#47Utg;#7r9?LV#tJKV_sq6MU`|ck<>Q=`|MvRgU-WN%_>3Nkb|ATS_r zVrmLAF*7p?Wo~3|VrmL9H8CJCm;S{9M1QOju``1K22*+RJxXNBvAJ=!tW*jjMs3szX3-l}tG3+Wcq)s8rDi12gI+Y-ZCS6n=xtf=%^-gOMqzYj zMnAcs+s4kMdgeS8G|BR4p5}Ut`sydkgcY*jcJi*QyQ--Z{Pj=orM>T*XL?jLr%Vr9 z?YFzfn|;0PVQ^;#JLA9>b{I)=CV%v;-nCWTN9AS{H8)YeR*|0@!DaC$RU7>}Ix^*X zB80TINu*s#-AC8M#YMs?IDxp`avbw1uIg1)-*!>o=*?PHt~OPzqGsRk_I=d#@RMya zn`b#oGMUC_H&GeY`>krLWmLAae=q)~jm?F#%k6%yPnQ-f$%Vh5*>0=ga(`79b^G0J zQ>oRd-qmgfKfh_(ZQ1u~6;(A1TCQQYyO~U6k)>H&-ox+`2KLditfOlcZOfI4c4gb6 zwaQu_=co6SI0L6LDROf#yesU|&eA-QlCgMcM|*G3givYC7(Z;(fon;g6yCF+jBCH> z({Y-{Wm}ck8`Vvh^-iXVfPdw+9S*$QslLbAg9pCMSe6hX3%_sxfG@`Ij3))7Hhhx8 ztX*#Q>h~R*7X+@W{i)ZQyTv>rQ<7;M1>OdG@HC-0FC36k!p*L?`|tBDC4bzlb9V^u zia+bxT$ll4-)_rgI|FbNn$fs<+OY&egB_1vZ~sZi5(p>Zj9A#&5Pz}V5V3i}1octv zc2J-9s$PPFubVx>p^5O6jRyyM*hKVN;aX`zWUALIG9X76rT0z9i8w_6+>VBQwA+&C z>}Iq`3Xx7SXGrjjUj*)xGDoZiF@^?mU}ENZAT}rxNj6X^T#glg7DeDBo__~JWWW%T zej`P|ZGcA$A0)@16o0_N+-X&HyG?oj*saxO1AKvJB_fSgi}@qEieEf_jb1!{fkgBa zz&^z<%_0!^lxx0m)2rH81pi$ECVFkJ<-TpTA?vO$0WNTPySO_igP3q(9AB5+dYqaV z8kE?45g*)<01hx(awMIVCNv!=L=rCl86RG!ghyf04sodk)$Bi$)ZRdmLNh(oP}CJkGfk|8a2U6 z-A*m5ho!ONRa_nrjysX_JI=*PCO8Tv$EpX?4o``_Kzub@hjBt({Lmz2Iv>O(gtLO% zuhc^gciDFk!GA7*2eVTmle}=M#vWf;USZ=CaM*_z-oN`m#JC?;o4&%^cFOM~?cobi zP_L0*ou5a~^+jcp5ldR}&u8aamSqVQsatY!b`ia}eEas<#mf(4Jc$CC&z?qYH2VO0 zWG(|^XcCC;u4bq1@{n^`A_0fvklM8Y$O1p!=ybBIHh)!LVZLk?M1V>#FT~!&wep(xmYh75|*agvFXy(?jg9ME>x)9- zXPo80 z%6^T=KDB1j_j2bMjnLU#mF;qE3}Zql<%u9(!7-5OCJQ`3{P+Vy>}UQQkb8|DZAON? z(SJJV=+37)BbbQ5p;`-o%^zUGkyG!QR;Ma0Tg=vu?{Auo<*Wj1D82k;M$pH1mat*z zauanM$fuerfGDUOG8wa>ti!(Pl(S10t(vHAdXS6VeuHT{IA0KLI30pYX4)yoqK&1l z5d79~gA*1$++L2OWX`EfAg7P$_cy{W9e--;C&CWkF^HF5?0ql2!7}h@pF`OkC zb-W2_XT*At*?a)GMF!AKe^|?GvG?PM{>&G!rjSQ273rkE_W{4%J}hnJJTb7~3vrkQ$-J(KHVK zTve@F_Dy?lM9qMwL9o$+9=3gS>0>(@5X!Ej;jgN7X9le1PW$@o&Bf*WNq_R^pi_L# zj)S;<*!0R!xOJeFX@sC!7~m5>(?rS>0*cPWDH&iI5@`x0sZ+HSYE|3h7_#vQZRL>b zl&;St6Y*EuAjIFn@oL+VnU-N0l*c@GPI@zO64c2#pU53Vk7F`Wm)h(QC!WRa^}v~5 zA(JlFu0o)uy(s}~g~w-n*ME#?%aaK}A~UN1^#%J`{JTrl3eNzUOIzNC28J1dV~~7U zEAtvc2TSCmLHkNV&k za#)s53kzLP7=C^lU8m9YjFH%s+G7k;sB`!shOzpXG{(nZ{!#`N2Y(H^%qCDGuTPDn zr%Ay>TwiE|LA(!S54_E&xztxnl(t^*$hBG5mduifpkzKmLDzcRfv^O=9bh$2DpnuhND4F^R zZgL4($c5I~>q$il#(&Fm-y7CODK$r7{EFOhl*yEvYFptpx^$zEbBp+cM%d?l)7#^( zo4V20Gc_DdBpuQWwQ1&62~nbxhs-DoYC5Q}^u&S$Z9h#SE44COL5={M5NVBUjCBo` zaQstb-186kzS^vgG1Dpb#elRB-YEVpKl9=4=19m<=@83Ant#G)SjJTk-Tu1ktA1}X z0{#RR>enXT+$z2qp32-k3iQ189*}CBPJw^g6gE~WNQ@q}p;D2i z4;6yo)xX}&1o9R@^V!9Rv&#$Lwvtw`q-i#3ia9(L*vKM7H^ZK0p_{;{>P z$9zcn6l05b%48DsKx`99r=L^bI1dT|*G@*+4~xM<%70dfhjqD$cSFVJ;CQIOw85U; z*tF64!~x|A6zblMk|%|r{`n@e6Ty$yA$|!HZirhOD;%GaU3~~TG1Ya6Kyvk};l2wK zd>$@lic!sD?v)W$o)2f2D4r-C3ju!h(&hC*rzZ3LWms)GH=#q1@$tp6vU6y&L&YUR zdD`iAT7MmOK0!P(ADMr&uLr_Y7=5xzBGlnpC1z0RlcAqtM}*xHu$8yl!HH-JMH2u1 zR^#bGKEsZEP*q*NefOX9vkNbS3`M#5r=zJt-!Pc??(*znF`Aj1PUErJa}MzX^Bo`Q z75@I}m+{W@aK5JosHp`>57A&n6XcY9bg#uP?|+^WPMLm!`aR) z_3+UX1CVOKwr9gR2r#H`0@;oQ2gQ%-A5IWdXK@*D108}HSICcWL)BSk9U~odN#^^< z|9=;xYsv09T%QaiK5B-?2d2ySFF#D)lR)Z0q5L$yr0-|i)n0t`1w1V0p9m&c69hOw ze4|LW2-|cGzUG_uA7E^F6?M!q=LD5p_|$Hnz{2l6LMA>W7ZfhvY4A_h;znBEdxK4MDQz##Y!f!; zzj<+(#A!agc#2(Avydy1A;+b@$$%$MhgZ&nlRJ^pud8--=T0RrEi?3YMIk;fOdGPh4uIKxXKtNQGo{>*}oTXE*ADkCRF%0_b196AT$^-5US zuhWj5IqY5jC3-53u|4hPL^rKcbAQ{YGW(3W?5k#rMXkM)vu4=f!gkh=;8ba3-=v#$ z6H+_Nhi|{Q6_M_IBbhhOSrT87y-J%ZJP!KCC%i+7$}tapTUPLQm}G{Bu!i7XBiP|s zm2^Xk3-lHb;>lgp`(az&V-v-{rr0eDsI>~>pCs;^8Ivh+7maU%5N0@v4}TGC`b#Fe z3fPMe+nT)YU!hOIF3Zh+W$UJSnh8k3!>0s?x*DI>jvg`DVB%ws{DW38 zul<9@agXq@YOb@M5CI)gkb5R2-2rP_du6#T4ujX#<~FP@WHvl6^30a^;iHR(?>s|& zP1E?SkG6Y=x}E)UE!zkl`adY1CZ-(370Juka;#1lT7L&yjjGXiqz zZ}@3ydmph(Pvx1zJ(p;=SBsN>z@PsCT``UCWo~41baG{3Z3<;>WS98W0uBT-IW#br z3f2Nef9r1C#ufgrr4}2N1t0h*Z^yKRHOux)oB3KfJ>}qr7f4zJ$yZRNoU>%o!B(oGNu2%RZ@i~?} zo_X)SyYcwVjD1^FMU$^-JY$6anKc*>{4_DIeEeEJbk>agDBuHmxDu$|c4b|$vSnpu%pmCe zF!Ymz+w&i4^NiE8%(qr}UszSl0|^U-`r);=DrX`}eI7(!m8&0vjC)lv``6X?v{^{+ z$j}c1$<2nR9pHf3CDbDqlsBAIE`{G9SFmQzwbHrkA^#Ev+4Q zi@DlILd}#XY!1U5mu<)D zTRLaEF6j04oYhsqwnc-7RdG&Iz;CSWAV=P;SiS4EyUtf;Oc8i-(x0J2=4HNof8Vb2 z_MUC>JzErP*A^=+J)%BMBP+cM?Q0Jw6zwwK77z%w7NHMAaPLu{U*6)6%c5=bWeLsv9c0eeYtn}#-qvkfF4o0RIhHpCyHknQ6)P3l&&h~Mq7w;T za0#=28fH=`6YdnH3KRlX^h#(@}_#N&Ps zop&F$dDTL^FIhg;kOD0eCQrR*69pBhWH!OdO1s7g0g0MoyUv#b^Rcd&f59vP4`YB2 zoT-yf#Q0k*UFi6c5GH)^&f_dY&}0GkYJ}*bD62c`_F|nb;5V7gq<{`^qh-z(HbuTvD!X5`MK%t+G`25$Q;Bl1Da(KNv1Y-ge7-mEviPSg=LG zdr|4Lb=@Jvj~(KVOF@!m4tvs2V~AeP0BZd&?~bQ^pF)qewf-!@~WEDn;YH&GSqLLs+i&JS7n6)wl@i$>Y|hYf}NGm^RWvcop1#> zO?6$W_H5hxJHZ)!?TYl8Yp*GuJ}}KKZdJ|AMB?F3hxLrme{v^)qnmR6 zT&YX%G)22xcN%QFT~oPAi{JAV@s0s$z>lkf>ZQdFI{6s6P)-HW3pF9RG&BTp^!!Z1 z#jZ%w8ttivf3n`S>;2r;dqjs)dR41@v`ob@@FYyMPqBrg{QFJs>}X(LjjvAYu_t2T zOP7KlYqlyIbwun3iQRxWL3@y2S!}(3Z5hksi~=zTGY@8JcaFSFLI>=XWBbe{ur1N! zGeShN>m&?Ee7r9z>+UUus5z5Z0?u3&PZgy!v?!Kcf8Fev;xhv$68X_3&Ju#TJ;&uA z2!1REzMB+(gmw>{Fxhs!YjNPjLJ?H#I|^qY;wM3veA+-+2=}GdD<`bOfv(O0$LumV z>a<n3=@ednFyjoG69$@XEKNY zt+ChLscn>!g5o{x*`7{$ldkPCWH|vSw>uQ4w&=9V8BQ0xCugxVB=;ob%%d0;mV0Ob zlu=Z3B+*ucwq%fbCMb*+S6a_4KszTnj`BR{e<38-B23#T0w@K21CYEWE^3FLOFIC89iu}w_|X+a~V?AwgFHv z40eCqr4sosU3d9WGtf}Ls?JPD{VFABZe#=oWCn)zi~yM$#!ovKe8r{tDG!UDgPkr^ zK_Z8MY_sIK=}nWs6n6C9X>`=ZQO~Qie@_zS5-~{gfhY9L00dKHax!nRgubV|Q#aiZ zbJLL8CwONN#$^WCd~7Ze)4bqxV2Qzmafl~3v!3b<14Gfe6yZ3k10vKd>rZ6rA?8=B za+&Kc3H{|KxxlJu@z`j!ZR)!w-)!fS2F5wAKn-5@~C9i(m1Z8c!vfm0bNv&B{pP zhna{>@muc-Q$#1uP{X;*jb1i+^Zp~TJZcCsDLi|YdCfX0$^6(hUvxCL?SfJBK{pG5 z@bac4i%~G!`l?%{lxCC`k3Q8af31twF#yy+HGQa$P%oka)JO-W?Q7o8VLmev#c4gI zy!ObPE=G%$RyjSTZ3^rSNB!b~s%aEjRSj{pFAZXn>q>(v4A&yQ+8QB8xKcNrnz60+ z2mpj9+B>$XSLN+~Fr#v$M?^$F9Fp^ln{7+QDK<5_k6l}UG%y7;YJ^u3f1}te&^ww& z$ZTRv0;rT`Ql^kkPoNxuin1wmj9b8IiOo<~vk4%w`CsVdSe-Py5kWz-&4hnB1hc+L z_qyl0%BAYvh-#dxsqJ?7QZl$-FkFaCs~dbuR-Ko&Z#QHQeAMmt;lz-_TkaIcZFNXx zAV@tYrXGF5fY?0%a*alwfAZGij)t9~9rdtX%}%<83d~|}c%hoJRS=b%WcpBcG-K~} zDj_%m4`nd}15PCs##~cRpASYFR%5eeOK)i&wuE?hW?JOnF>l*?S<>9QpS9Zi1&RxW zOe2&8_yF@_jkbEI+L!hl&y`I>WuF>EXWrl~9)qg5u>@rD`qT`RClEN@bNMUq2~$H#b6b zjTGt$EgWUz`Ef973sI~rmG-P7C}wS_koA3i`xX<_^tW9m=2YqfHEM{Ob>>Dh7JLA2oRRN3XqESt&!oL1DrL$9tcE#O_VH0V{T1B@`OH>%d?rx(8lQ^-n zC`%VuizY{jH+NWMUldO@CK^-$_^u?X@T5Ydf%ms{wNm@(e|oAIg0&~z0!8tZH4V~5 zvxeK+c?I0=k#=(}50SkIsJdt;KIkc6AUlr8^S~v4Hn@v2s-e{TrC<4r@<4Or-OMQ4 z6g%<$gCCWdWj}HDzvyGp^0JGfTV4=38*J#WF8;{<_Wld@)y1lKxTvTr6<|gl`73rPC!3ENF#6SU_UERw_*tYUM37yix~g7#-(9}D(tIUO zyf<%W5*ZqM|CrQpImmEndY_*R$V@sP?x%e|qAf&n5ks61`q&Q#S*sg{{wA*9j`A*X zBM{rfoBQa|Tr=w1?cD&-tV@uN<>72vqdf3U;{yWCe_aVk-G6xx<%)(YOS&H&iO2&> z=cv~Y`+BY5{;1k<1~J`T#<^*yHy?)@j+H8Evv|ztxSqr0kb! zQ1Rfv>==E`bQ7wsrnE2=2k$Qb`OWAmec&({II(L_-Kmr8x{_%wN9I=a$yBduXQ#^j zL>bgFf9CylwIA9$JyI6tZpYL3kZ!jF$KDdX`TXre>Ndh=$rdWw10yD6!!jtjDy%$P;cYf zTrb}bEJvR@P`$0$HU~{8)JFnXYC0(4+L$31GgsZjaf(S?$_O%8EWP%=`T55gdiDUl znD^rKyURDPC*TB(Nc$_}d@;E~3zc0yV=vEqwquY*-z&OrKn$cnh&Ud@O4p|Xr>Sv2 ze-4Q>sk`>nM-$dw#sVVgEik+pb4@85bfGGP`zB67)`Mn8S?2dcNNwbH6pfOYxm!Zf zc=_$?H*Y8L2rik5^vIP`rY~8!{+7x1f3(flZ(d)$orz2<^X3QVlgy0#k{;jv$)&A* zI%w_!^BKjPiYeN-+n$f&Onr+~c4fXUfB#LNR9H?)bc2|M;{DoSs>h?jO*l5pNGAxM zWO87ZSC>B=CTZ$!rmwwGdKztA36K&zRai6s@4{Eb|9A}uhO_&dnQy8<3`b>yD!?Pl zPLFD7KjAUxKF%PH-QpPO-RnwH9?c3$C{y>Bi`bYFt!9@Qd z4(lkD{aA4tq=~{x>n44vJ{Vfk7h+lRi37|oH0MqFnXZ|ZQ(de;X3iP))`iM;;)CbZ z_|(-L#wnUoPp&1Wc_ktvl>U$`FMs>`@9ZUwz(PNq%{g*3^8~f^-_z%dNEs0+qlA&Q zLln@4-&~#j4gdZR=qy)>m(Jw^9RfHwm+j>OLw}`P*^=AHm3^qzV=ZP*{p8e?$L@|8efk6#&U+3-2C=^8hq++qTtibmm8|S49t)65d3g=vx!K|gS!%*%k1}O{D zB!3C+4maTsFIIQ|fKlK%8WSGp89Z@U!9P+$;gQo#_~F&ZkbYbRKgmXR#U7uhc}7^Q zpN!N)KemTM(Nul#rf5d}kXrzw@HE#?U!BlSW8P%y%}o-ego|Jk3-!!n;a<)O&GIZU zYk;*fT*rO5ALTk|yPyb~@gTdp3?5f3A%A(6W?=ze27B4}!SGNt!9Qi!uHjc1Jko29Ap>l+Wo#&`^i}vo_}N& z)bL1E!$S8@!S)HZUDcoJAt*XnSp%;eI|-Wz3fOafkQ=)`HeFvtB5;FROFtBcV-NFm zY9;V?3B$wU?3!?wXp$%=V9~n=*-JIDc@gJrk3-!y#U55v)%|f_Ji!7gd6bPBsns?F zw{Q}{#M&+GPAv@=^!g@*2Ufp^$bZd)Tm>#CX_`@Ox%=?d?T5R&+cz)&@b3Ma7pok- zOGS96_hw_qhkcfkT*M|^uf`ArBhOVVcXhGdOA?^F@mcdtdBZc33LCFQ?*o~VEX%2N zY^2Az4R*S`WPr!hO*XY72hbA||=bv+zG~+kYQ!|K}yn z>vxyrB#R?6d8mRAy`b_a&QlU6)ccv5Etc)EhGp!!_AraMJ^T!YR?lEp!5E1|GF`G<_TO&al~jj->4l1ccLOT?3Iyq z$YCy83x5oIDb?O8*_U0dAAf)-o6Wpo9D;w6sr>^CHJ=y4G-uQrcx)=!&Fll;#~fZa z3yUC5HEh0o{W|zT1rXw&-QJ&XUn>aZgr>2z%H8eT;Kz4w-n@AGUmxbPr<@4R?d)5* zSI(heRFUU?PKAEq>Ep`8k`04ETM`U1v`gp$oPnlc#Fr1>&^^ zrm0Fb0l%cqLXUEiU=ze+M3}+4Q&$gzY)Ejso0&3!1fz)^Xc=iH3?SVFb6bbNQDefQ z#-^8p0{?n<38u#e=f&`tqrO4>zL;%_aSZ$H7d91ED%v**#Bc&jafahrtkyM;cN;KK zBK{3DOS0^j&bg%Cc|;$*4_Wt61M1nYhki-cs9g{{WGND~K=*oQ)GL_fgH3r`0R#)2d)b6`x9 zRGXoI`lt$8FS|z#zfgOyG?rZplt2SX59|PdqK6VEpz4bpN`D-N4t##8G#f)eOh(+> zAx?En`nnCqg;F>``5Wv0VOlU11gkupmDpZ|72|^NB)5BsQ?r*BI~)`Omgc|&QV~94 zVV$f`tt%!Oz5up@0%*%qxE`hv!_z2s23{nLE+J5ZFmGL8r(7qoBS^TpvTcT zL)%HkujWN0fqz&@*dnvftCz@Gz{KRcE<9@$J z>ex0Ly?Yvg5j|1T=AST2Q^kvmw3B}?<5WxtG6cC0Ab=)kcfYwuz7=e>*EtQxdJiF` zViCBv;|>NVauP?etvb7MZWGuSci^UK<=kDFueFOxmVcyzeP<~HKRB9nt(37mx1|i= zN98Oep9(TXPQb=MNP*xs74YtjoMATQK$sjC`g#qsHwLmZA|`>Iq`HWf;{atdIJTXk z3}*~UR!@^&Jt^GyjO{poS2tkK-N!a2cSA?jy;FwE`M@L>m)z8_Z4R68LZp ziBxpugZ89&KVRcuQhkvJD;a%4P@3dPp@dv61n81uPKt$qz z%NXoVzG5YygSiitrTrGfBxkVe>>K8|536NNxEZQ2;HFN;wVU*lroJhQOt=Er1J-~jtCg2M>NrNP1&0y0|7 z!!nS6nP*Q?Y6u1{uQO1uEP?zl<$X##( zx+Q}~A`}!bGHlus!|CuegNo%kS8^u!bC(}aKz+&qDt_5^oh%2SDw@4zpk{K%Pk+uU z1Vk&dgY1D`pZQg{zxYJI$7yn|dM~+i8ObrSYnK?p3YH zda`ZXZMJP|Yr|&OX6wA)nK|Fg`6uqV^}8+uf^z0m>ZtqTyeX-=-ynAlX_#36PK`oaKAawTm3lO&D%2>}Rs0>XyrTg9XpXOE~Gf z2v-yz-eu-sxQKtzb7ikVWoe|pi2np<1mI!d!s0=HUt7HVbbcLskvXsgl*-(0I#{};C)qjJm zHP%58RdP#))zJV;DNWuD9ola2jZPg#_Jyf=Rbx}@Mrmi8KO9}>@SHGc1JP+mNO3rK zhmkm$#M|CVM;3lyML{~UpmkwZl*V(5;rj&S-;`i(W{aWIB@hj)%zEkI$9;AI0dQDZ z(|zt?pigu~5d1WLBe*8tLE39Zrp6*Ae?l28lkFp4TVlNVfV9s19yEuAG;aJy451owR{_iB7$uW`L0J*<~Tm9yo4G-D&ZirLn zjM&S!Y(QkB>}v8LJjkCbX@>7NAM-UEttlfqA%OL$leu$SBUO=rHqRVL_~z#OH@%KP zrUFb5rbnR=!A>sgMV7Cf7aD&=N0G}Mz*BYt zXAAQxi#@|H5t=yre{qAv+BF24uiTzVgjDXRziR%(Nif24HQ~~sixKXiRZ-E(=(UPg0?LXO4O)(52t5~bB!U| ztQ!qMbcHf1zAF_h;#nIoyl}Ol6q(&)hsHb_@mUnohRYBqPzt1;3dqR6#CHdJDwGL8mJ@uQ+ z>C6OtWPnA@rvD!uT2FSXd~49a*VZ;T%+cC3)ZKkYuw$LrX>omet?VVLjVqwVUZ&^a z?M@l$H%-0=edG$;!2PF~_cv%W+Ru#P$I|Ht`);$1BQ|r6!EVI($kor_HpykI@p>$3 z{Ppix0@w1Y-_zktRp1n8oBuGtc}n`VAn3f-F4Nr6`TLJw|By($cJ7EJg7f4t!5U<9*|i0U8;+S-O#nABZ7J97ZTQzP!opma$MVt;d_MFr~v1fF3e-U#9QR~~Q^c9T^P zk|sEGe{aex99A{_Vj_SBda53w@;s-)1`}=1mkORh2QYkRoTYtTUnT7;hZqS|Q(y-d zx$NZM%eUHPd(^KwTA@S;=-9Huul7I z&On9${K!D$N37p`87nXp`5jknl8RL-%o*9f!^D)g5?v+H7)#^yao1lo%SJE zf1GI9mb^2^CADX-MdPuIu3veV<$oa$CML_xO4pB6@O0&|D3iY!O7Cg=`(EXCEYeAI zB{=N*KM_)n_IbEkEs_R_j9sFPR->J|73{6R?Js4X%{8I*for@X7C`iMu@eHe>HFT2I9j|e8T9z8&IAhXs70= zB9G#^3L3=smMK$?Sm`q4@*jsypF=`VULyr5uDTUa;M~@#pS{9{74$-??Gh@O!ioCz@w2H32qkce7HCE?{cG;c8bK6rB!a*dujS{cCK1G2Sv-%$}&SM2&Bz()+$5Zl)ZA3|Ho z$m}PA+o%9t1>wuu10Ia6ELtGAbP(5ui z#;XyW9c|AR?9P9K&ihnWr6dWWWBosU5<4dw&;JHCIRCFcDWm@dj1^dhn~}!9+|QRE zKWMSemS3_qDSIWYFiq5xi4+M06V`u22*B(&o&Up^UiwRh>VUXuq&N4%v(GiXouWK; zW+@Jzqo#!>$FNZ8y=*Ts2weI zU^a1DA0Ie+LjcHMY^^80cQ-)}lgk?E-`z|?XVRzbPBQ^1n zodtALneLBy4Rckc->L_>QNOMvN^xZrpqwe87Hdg{d|uqk?jlYo3R39 zSG{x=l8<=dMcU-2p46cG)Y?2O4>YD5g)&5`jUeYvpd36?xZzXxY0ZBhDbYekAbb7% zsWf{TiUG{1j?F}7X71*deyoIgrEBrp6$iLDBl336y3n7tY#@U3+HEGp$#71cm??=!TUVq*sQ+(vj6%f> z1$4T^G{&~+cdJg8%3u|E*ovC%F8&cRf@~ge5(9mM#MVSP>;e}pRh_IQT~hv3|MDLQHqzHqS*cpMCJ`SIbnmqw0Is8EO9f+j!myiW$-kp%ogJO5ePA$5eX+D z!v@sUMj>F~pIIl5H1d?ds~@m?7QK^O;9E2n3=cYEb}&c%**jpZtYWNv3g(`)`Um?) z%AY+pPI<&rizLnK4QpQdmwnp-Va_6Pg7#ZMRf}bPLdKusp7Dg$9=dTi)3_({pE{`4 z(&DH$*0?YPi5rDqe1iT?m0f6S0{+BMP!HgL8vvs(AZmm+B2W4Ux0BQG9q;o)~r&hJ!c9bpDyXr z`WHMxxpp*d2nJPxyuihrJvvEjK|tZ-zN~|btW8DI8|2OC_jVRI`8&h9GRI>cq6&yb zNoi*~fePF&7Fu6PFr$_3xBegecqd#a0~#?i(kL#4ja^x9EXkOL&Y&Glv-Jg#KY+$up=Tia&WaU@`jI<5&(Tqh5YbSM)jLRX+6~jDd zZ~|9+zpYm5-FT$XU@Uf?e*}ysP<9$U1qnJim95~}cWfe+z4;WP#%u94Ek;qgW{SwA zn{7l^%l8t`j{onfL9Zzhhb>D1)v_waox{K&93B*OxZ}>oHf}8rNY&rZePHzDz_Q5S zrE>f><%uO;Q*H>Hdz~Z{|LYL6f=Fj(Kv!`bD%lqgF~S-GK214;Yat)peM&J)s+T{zW}0Pxuol}!-n3=V+ssh22s zR9`FFWH02AX5y!NcfF2?1?-z69)FdofGW?KGL4tSy?pT)L36Y~Ln57zLnP&2A z2DIHek7+tMVl`gnsgjc`K6bu^->vfb0pvez@h*@>5b6K6WW}jYMQ1G_PAB&D4&f!6 z4L&xg#|!OO$JXUIr1pS!rFysAcZ@hI`oZ*^Je=A6BU7J=#_~r?96z~yec-x$WoFBn z*Niit?+HveGDzXQ2V7m1H{AyTP40ZkL9-v6UvGc%vfoFE&_!n3NEF}`evrmaGY|Tm zd*qZ2AT+VCc_N_^vmL7T=DJ~hy#;{yxH0vPv02@)S%4dc3-J2WI(_T9eU|zx;&k+k`Cmm_Q?x7~R*Q2FoC@f^`@E0TLH1(NtuEKMmo5&ENDa zs>pW&2pO5r+cFs7{|a>1(%MiAiW%WG_q9=yFK5XJj?9!P=%D{ZPF4zND|61^Ci|&@ z96nAtq<)COrA}*FLR};Zrew+H5B`^hBGXuZ{k_!8$4&jEFXaAjA| zORK#$8-AKCtqJl$DVD8W1Y4}^4p)a!yDWR2Fmkb_7Qm&_$|9huR{%EypXCY)J{Cbb zeXH|Ve@r^cEuZv*fGhfqi=d=a?BR(8lYj2zhB&8duwz?WMX$PEh5xOX;(y{H)+ zZ(2W=2DbI#M>MQ=qEE_3E|?}Zk&Bij?5JfUm~vx$b>B6{RFn%drbV=Uyw{{f?>PT< zGtmcjtkd1$wEb=Feu`jH?#a~`5=d8soz{r#wYfr%Zh{EyD|VWOTr+OU>2cCD9!HBW z0X+3AxE-0xCoe;()X||$!=fmkNGJTLs;cKM098Wd^JK>r65QpbS&N6q%w^>h>1|XN zgkA!15dFNI${GI)D5#-ZADh~Xvg&=`UEEXdV2V$7Xk1rzHSjO^_HhGj&s_U}A`izl zbPU-nD=SToUd%T)s}QZnj_30rbaf^uqId|u+k#~g9Q*tW+e=ei>3_=P83>Iv#dbg<^D6xb>2rPkb5;_7|^7a?g} z0A=lXh(12fTHCG?g#GC^`=oWYhQYND(1G|&yp@>+*4ve=6iO23!&kXk@)=t^u=_1O z=m+~TC79iDLdl*>`RSFyc*#2MoT%m4u3U%GGjgTaR}9K-ViV%Y`ALGHdJd|OwQXwP z(4uHLcEvMGFsj<4y;6fO@UfyKdU$n0>LbO~Oj}QBDil5Y5vM)(#PGvC!H&Zjm~w$) zu;9E1^)Nu>y{&4g;Yx0B5D}o@sI3IOCZ%iGJY}ctLVXkrVxWX%<`EzyO`Om8bDi%c zOazqhr2%fp|&9BGeP5fqkKr(`%In*YIbE_FCVUWK~EN+DOpZaJ~kv5(SOW4!U z;`4h%!ke?N_zEC4sZL#k&0{}~@#`eK{+S*~9_yj)370q&rrGPt7$IXgrkzC$^5zbY zuGxlwF!>JZ`h_wUhu1z%cYw@iwWTp^eZ1$eQEmfs7=)wsh*j&^il5j7%!HpDsO1d} zUw7h6hvkMtKVtsM#T(utirq&rw7R@}vPy&0RPI-64!t?1?ZCLq8viGNL%ceC-3*fO zeEO{`SbQqw{~GBspe&5p;TyD_6IbJ%09(>otmQ!_qHsB5s~tmRGzX}FbH61%W2)UQ}cX-+yxgL)-z zY&Ce?YLhcvlJ}cWv6+E-Qq30XSSIel>)|JWHGWenQIy z!Lb4Fm1N5jNiI$OXRF#}0Rc6|Iwkb>St4gye2`H*fh=6uz>WvfkQj9BU3aQ{|v1!Hei}PUEyw`^-c+jCV zT)3Amp8uUGdnS$sc=(G^QtI58;q`P3kvbJpoioq-+H4VIST)p5^|_NQRYF!AjfTM< z(x26l3>rGZBrns_iKuHoD4!MJ0f3F;+U)izdFStgq=@_jKT+sKdw=W?ATtbBfnomx zUs(F9k}N*({YQX~s}}`-N>h2(tpQcRVP6;bE9loJv3B+ZsP6xai3tCj>*wHN$+&_7 zmjLV?x1?RZ>I@fOo613|W-Xfklp+rf_HAFjH85r9U+IJV5w66IA9;)e2 zzgaXs=Z<3!Atv=1VLn8f!Y}LUGAi<`&%KpYr=+9*^XsmD{<$xp>?E95b@6@rimgJ9 zdTs2YuCJS8{7;b7sXLfL8Q{{&v&_Us#s-kx=jv@2P}Upd8-7C747kRs4c4ILcjyiS z6y`S*!#a1<4d?>H-fDUtfLyev`iz{d;;Nr4}CBwJs_U z>@3=r?46`6DJIG2QRZ8aw^12u>)z%(EH~)IZ-4ZXBHFl0@7Z})6D#iy_mfC-^9Ce! z(sJAl9d8`x0gI|dQHdBbCHQ;ie*KI2ykxj3Hit4Bsimv-P5326hydc8DEZzE_@{#6 zG@WcUgF7iLPM-lbSpV|RS?<>50Gr>~rNlRBv9eX{)NpinJxld^)YwIn4axH_)tpN=x;tjb+94k###!1TQo~yS{>3b75iIxHuBbZEEF;W$$;V>u#b zn6@$|zYr_&uNX1c+&#wquqZLg)LYlsMQbuU2IrPtR=5HYvXHC6pb3k?BfPSFqecLbi=H8h_qS$Ys)%IQZ)FILsqKf6~4#NG*c&3h@Y#&&xl z1!BjF4E9_bK)>9HfFC-#i%ouH+D6N&*Ss;=2zHED-AvsR%`Up-njG%Gv{W>!z$@P0 zc2`sqN~sQtF8GdYGr^Fa&A`tnhbSk0shd#`PWt#EWb(K=`uT#*-4w1($_>@j19&dFQtO4rbXBgzMw|z6Dx%KJ3n-wStotQNA8^JNA9&_wYtoE|EFSHTyiKDyyuuNQMKFk9 zr+~6xz5p_r4D;bti-}8eA$olFhhV@LK@lqS#=dE&Z5^~E{^n-gw$-!sE(z5`Y;N|2 zvlERmSAUmn@eM8M@vlV#@qFIl_n6lh6!yWQa^oFwfK`qTeq5Kx-&@U5DkU2--+pX@ zKKq@T>3m?@<*drAeTHkuh9L`2VQL_(*~(oQM#Ix9e{! zfNx3pS)GTGvM-k_U0`a;GdRDxJCZ^1IxP**ugQfJi4AK~F~mgQEk*f; ztfr(1vscrpIf?~vEne}dIvVW1ayDBFT`6-PH-Sp3#G(uqBIi487bw_qtz;0@g;R`# zf`lTy7~+j%3mp1LNpQbgTWq*yaH&N5fP{k-jO8V{w4*#pTm6(d9=)+dU6a+HL~;pW zv8T%i?&`}k$tUh$SO;h`YP>NL%&Ef`SRj9GB;z@hvtJXZ!;E=^!1On*$|ua4K&$Wg z(w+qhf|_u)u8?{Mc*74Tiz1LY@=P@(y=@epoT2MGy<98la8fn*kZ zx=v-7q(brT|3u6F33sO(P&~cSa)oP8bA82h=iBVj?sxh`6jG+*z5xMqlo zZA&8&IQb!wyHg!2{LngOA(1ND)KUC|hAq0Gtz5X;;JI z=tmaJL(D?iMs?95$}Ej!@Ab^mdVed6hKvg-hRtyV)+#Uc`OF>$7u}YjzBP5z@07~F zkB~v0Osjv`U=GPhh$X7i!s(%{t7+imSm|38Ab*Xuo_=Al{|3$T<2yd@mUyC#nR zT4oLOxkx$7wyGTTXh`yo0`dZpQzyxzv2@?0FbET0^jgyyqNKu5whJW=o`%m#z1b-@)V|yh?V>chqJHv;f@pGYI8BkGvOUP|WRfBS>Uj4ssQ(oHmMnEvQ#7sa2xC4(bR!VB%a%m+d;=`{zk zh%Lq{>DCvXWPrgaq_e8~*2d^eK$ssNBScL2nxA?Y4)xuD;KD20Ze3(W@^J@OE_s0R zz2^__QHgtOt#U#MkNP-74w~xrcl&@)fdA!BhQ=OHv~lv029So_g%uC_AFl3)5JZKo zRqBSR!u`N>Tqd}d$lxopKg_y;XfRRrZq*@s_q<%eG_VgvrHln9U$dmC*rPl>_mKwe?XNd50Ved=?eIqrC;Ovdi+V5x=E3!X!PT{ z@W}IuhY1IQ4ukn?ZStGfBfudhO!|oKJ)j94jbTmzm1m|*d@KEug%*4-5L0Hd_q;_+ z!OKTLRRhOxz6bp$S)ch$QR7CM9B&(vE^pw%T!p(zpG&m| zvMHu!C0LbXs`M!aWX~Vvi?kNx%AEqBIJ$&TOp<&{Iiq@`gr2%1ErnU%D^RXFphYm+ z0&5yoz#M2wL3`1LrjdFnh(lnn)jZgC>yY48M-N(&$%91boR?{tW9A{694Gz5a72TG zo_C+J<8ySDkyPnu>{~;j)#{c_LO1BjIpt#svtk+13Pqx}$EKw9PU`uM(Vp%th}rR= zL}y*AEqtT_5yGBu zY+HQ!67F!4KAs0i{0_uR&+;KzpL|%h=Us2FM|9L1O&@`NJ`4QG&E%tylpQ#O#>?O< z0PVI@QaqF4EeGyEOcc7*(MqN^Lg-0I~H(L^Bf z8EU@$-{9Vrdw7b>!q-7>1+5uh)lm1nq2D@HurO$>Cj`0K?kNnv zP%-q&@{xU<5;b@?b12RqDnTGF@;m0LJ}_5JX=uP0mSpgI%+^h5%j(QlSllumRCcj# z`W)4`EkD#-c6oK=hvfVMoT<&xe|Iu?J}W~H?-d@#I|S(3;(l(ea$A9~0n1iR9hA87 z2oA+Lq7&~S>QCBo0yOQQFq;>s?tc9Diw(xzN*>TYZ4R2ZG?svN_&S8Z!)gs%si>bNgJAe+u#WIZKU zmyGx0?_3vxEl@f%@tvW&fDsrciwL$X?j+^ym(9585K*M*%d6c~lRcsqY)|Dx5sC{d z)sjHVjkQd5fizjN#4ck$>^I$We74@9dco7)R|;6)w*X2HT+DLJ0Iy)_eR-VJPyTsu zqX7r^!))$(=dXa~Qw`IG&h$-Z;t5cb51gJvhQbr_k3XTW4Qp5OK)ipWD%7yta-8x6 z;?K&t*9Aun2M4Lucc=DldQIzDk=i3hP5zlK^(}HQhkpY5Qw{y)s(V;%t^1Y<7XH$Z z*2bR{*#cb{1T#d#fwP04(>7IX;^me1pe*NTig(KM=0>D3$lFw@MeV~Ss@r!6Ea$w= zxrX{XHHCqLd;U1yfR{Cy^2F`*8dArGLvLh^4X8e~P0)KMQm{7+W?!K<_TT5p&)V%n zCqv?TDl#}?P4sw%`RJ(m&Fz;xrT&lConyeM@WbcFz80c+%a>l>AfjGWwKL4m`dhN^Eq#4Mh|Saq)sI%? zy3X~rtB%dz05l(cyHqR_=*b?;`8uUh^QW^(TH4AEsh_1TkgPS$7ZqXj1y)u-?XVux zy3;DkWZk`aEBYyEbLU`S9sFl$%3nYwGldfx4Mi%bXO2b9&Z@@p?=}9tK+Ibx9mIIO zSre0*L@5~VI7B05Er?Q%J}LW7RZqQ^Si(-Zy5TxMK&b|*d`fs`eQ(C11X_2bTSCng z3x>(5idfr+a~F3u4D;cW!o=%h&A8*??`i#(7n9SVt+e7m5C~cIPl56?pnJ>_mb0~s zv&3=Vr9lhykPG?sp z2m`) zv^lQ2tm{MSkm))rj68A1j5MI%U2x9bm61en5gz+4ryG%`h^Wh96X4F}r$$QGBJ{W8 z3n1Oy2!8}82z7P&d^sf;z9k4^QWbkcaZZF#7QIl!b$Hd)6Tfxo39;L=34XNI3dIK# zKbbDK4g;c@1vimuYag>zI7siGZB=VAyXES~)I%Tqajd2mH&I@@ZAg-~Nf7dS7;~W+ zdkTbhT~}><6|i``@Yf4;-CcHj?>AKqZ`4fiS5(OrsCK$ng7 zr|ra`mGiGbr>!*KD2R}496dc8xv+kO$0)4@ZeVJk0r=KhV2GX#VVCu0l!yEx8pNxo zmNe&|T2fcgAfDxe8_+CT#2lgzZWOyr#U~hQrZJB47a=uhsH#DAYUPc7Mu=Ed?&kq< zV8@D(<|h1@$V4i!)X=ydcWD(c52FN697)9q=`A4jDjv#_C{0YXp4LZPxVB{yPXWs$ z16CPpJ8SKCin@Im9_Lp(dJQ4k5x<@rE=K;TX|t=z z^+CMkV}nd*HaU?Nc9_W!f!3dG4~5YA-JU`Goh^SDuuio#Wt7E-qlo5N&Ph`0zEQ~4 z-<8YusC;*}5ezrr#7XF(h07&vSMy?)0)7`~hnA#DZ*qx&WLl-xSCy_ZOkJuv%0Y*W z4DMnjv3vZb3nV9LXl#0cvBv>mthjZV1aswa5X*MU^@>BookQ>lpni2i`XNf-eei`Od`JLaa!P^0(|qn zc<2I2wh@NmYL^${txq#aLnmyhID%!u-8vSpZWki*YV+-ghg7AAxOv-9zp9#<&T$xIOVHIAp{?oRvHwtJ04UyAJJ_^;B>Bi0OH)!)(Ckylvda+AXHdYwr#DFi zUtds`+wIWBiY997`n=rI3Ta04K?mkBBckXzC_njbKS!EdAeFJZXbSpe3W1JUC--j_ z+vBmtFpD)g3I?+6HYy^v2z90j^6?#g7Sn zgHXhS-pRZa#Nk6i<}e$W#eEN%gPB`zT)0|FC7|9C@ooP`8PaE>s&_!$OG#xEsjd=b zY?Z0l6hIwMAq@JH$i}F{2_IY*e1GivkNiO|?epOB-dIayy85@XHo5`IV}^Pc3EV!% zyPgap&hwDEyk}^~-BrwZ0Cev9;r<~mi?AO*i>_SrLyw-6=d)Pm)@dy$66Kl>pIOMY z*JQAP@0iG2C3Yir`sfBI_hOra8kv18G3ArJ6(V0TC>Qd3O6?_j31NRLm!(yGe}r70 zHAIvXHmbM}93Z^m}mLt>3~fx7#oc3V1)y!^uo zv2EfIv|=BGe-3y9rz;SFW7<;H3}Xn69Y^bh9EQa`@aY=xI$%!bX|DKgi~>RXT;{zD zItIRF&7<+fR^|^&c3WXvk@$p}Z&`r%R~RwyQQEJfJw_b(6Xv#Kfe$0if$z8fk7lOO zR@CMGq2v>b(#E9bvDj*wh)AP0lDthUH>>0eLUbn>uF-ekGM{jC*NA=~ZW`?tWcW_+zlvQ~?hbPfqJfx@$BmIVj^*hT%mg09g-PZDrGB zD0DlJ42oTfh3QJX%Wq;uB((*#Yw{K^zDCCC9?P{2@@MsjDGr>?>*aQBjWU|ti0au6 z2a1X)ko~RolrQoI|6Z4aioVF4Zu*(oP?A+^O#F4*VU`f2RhEvn;a|siV-=N&MXeGd z(#&g4h*9diH_yd%O~Ix9b|aJFeZ=ghp~mZgy{b^f#^8ZtT5ewq6JJ6n^Y~Pn=2`p@ z#FSQNj&u$qO&}(5C*wy0xe4E*zqQ+NyU<<@2o4ORgEAEkadWq9`V6EEDf#QWui4)_ zW;UXa^Kl<`B_Z0Avx5|Gi66Ak*fy_FuXS^UnO0WNpe+vx$!6{pL-7R=ZhuV5S z#en7L_SAAdFT;o=HPq#I#lc$iWz^=^<;S}0OQyv3Ouy&F&$#j%T7c<(Jm%d3!yPUV z@aPet_G!`3RyoUkw&#uT)i1vMtdz|>Y8hQYBhWI=4;?bSKz|l56?}atBFw3EA$o>a zwiCmvZFIsz8A3Aaa^nN?U5o!%SGJ=}{k=1aRD3ya&D892Aci!2AEf~ay&vCB-D_@K z?AqV}`Td`Ae%3LwN=txjc=?sN43k_5P{4DjScyMDD(B?;QP36wbOlRg9j`TWSxAVY zbt8I%6~%iVX-n^vPyCSY_;BP!C81;aFIdzljO1Rg#xjF|upjeB*Q~8Am@TgYbZaE@ z1rGrp4ar(M+0A#oc6TSyCCeK{StrW{3FGl!C!YgrJ-aFA0edy&` zhNuVO)(9pcXIW1l4X5W%;nqAg@X*1aZYc?V8Ah}2#8j>r1-e&_R;%(T{rSs8opO4W zXRu_ML8Dtc(ibr@!{R|{4MyBaGqIfk?|gWOPal#}{#V%cy@pd7&kh2qKD`x3Nj3Tn zM%9FCH!B-=_cfy)mNh%ZsqzXWZpj!VH()^rT45@7Q%3Z+K+wbId!a?snCX)CRFr;d!KWc%~&b*G*QTy zli6x7s^_o+f1@+?lR3(q7?N~(^4%d>|D#$N;$~eXv0-*d;kWe(*WzO4a}`Fg*r5F? z+jgmSV!S#@cSzzL*xkk<0E?qoW@NNnyz#)v&23Ls#bmi`Rc5I^SrX@|k&3}3ilKpr znk5mDyZX<}Twn~1H@j-egIOu-XP`-@3mzfKpH%wPfZS(~TdS#}47iT=r~i^TBQyV= zUCtBG;i~#PL*>q4GW@Tpi?$k@N?}9~gOWsWHOdaP-At@ID1dkrIoL&mF~5vbFK?6yvr zHqV)bVH6+*8vf11pI=~3nz_BU2T)+MwON>gAYg4WDBjtaaW-`4bLi$I;H(uJ;KClz zDD${~mE?x2e{cMS2V|KYMdiCs8w*Rze^NT}=;cWb){~i!JFG!Hfv58YvG*Jry_*q7 zwq#A2m*=>WL9wdYfbLd4+~^WT$%scwMkI4+4;9T;^D0LmSEn)aKnzVQL!=*q6J838 zB2mF74l3UmBNv5gJ7(10ivF52yv>xv|K70oVzxXWYB5$t15#FsH}(FrBM(hK3QQ_X z5JJQr8R8eMHF#pIoMRD}7N9H6(CkhJ-Y2+_F@!8sY-i3LJfvb%uc#ab+Pn62;Sk)T zNl6lGRwK<829CedwoghKwf3CvZ;z(l4KM*}oarLUQ??XpTq~ld5sC7O*!;#E`3M2Qsn$N|>cUUok*rV^0S05Zsan zk3jxP?ROO4)oK055_VCS9)m5dDs2|kp~>%FD~#J!ymHbH3tGZ{!LvnB>2*G6k4sy2 z%rIlX*O5DRrcTH2$LAZbWByz)jjPf9UI zogx=WfCoKDjPLVs;WHtgn|OIRhDKu*J7JQFrx4@R+}@@kgohuVdm7Nv>1ph{v@e@V zRaPJHGG{AsFsj(AMH%tf!V(6j=y8=JvYkDe53sndb6Ql{Fs&)m+neo>$XZomnJ;+$f>% ziTd{%xDOW_ko_LWhX;G1-7w(38TI!BEqXL^yozN0=WQE8BsoVjZH_|rTj3h(CWQCb z=+A`cY!`P^hL9e|e=mZrbR>b9z4V`}42f3xSulgaa?ybhCeSVc4e~A#k$oRu8N2r` z9k3uqCvwS&zhG$Tk{xe=!9d|cy-O;VZPWZ+HzvlpfMB6-XyU%at&A>Oa6&LP_KZKY z;F5sL))=b)iPkQu23SqU&6ZQM;r>s8vRv&(Tt1D|8iao)osk|vh=G)&fU;oN|5ztX z11Ymo<&aZhj2QoC%KwM^$wvko2lKTkv=$LFA23tWy%#L*iT&MIcxPM+{6b#TTEnJK zzG3e&7|wwd?EGs`nP8pTOoL65$@e=^}f{w?8`@zxo@U&DWq%2)O}+9Ufq zo4+=F`(k~obGYc+ICyViKpR`l5$}6&_vBW;vWWcBZKZxp*8dNU;Zglpkgq69GGNj* zyHuxTKP#7%R-D!n*VCPSMWg?(#JJ6t#AaQ>jb~1I{hH~TkmN-jVNJRH1|Pv`GeAts z;>#qRoW(JI11fmpiry%G>M2;iEep#~!SEQKLY7ujWrXW++{U}2vRrLFT{*HSn~t&K zhYftr^4VvQr7bV<(`p+N0p3@~B{Ed3)x;k0yG$isuwovwoJ|VwhID7Z`6^yj!xhtQb9re_2GK03aDGVlrf?^oWLCC4>u6D7qk-a=i-P_Y z_1B8Ae84OUbRdW8MYcS>9||P{Mc3l;u$B!nv?0e0KNJE-xq-FdF3_?Xfh;d8Z%eiy z4K}j}WzJ78`?}6L;yepL`7KJfQCw zY>WdkIK$%6!5P(lpvb5k4&nZuxamcZ?S3@A!2DG4=oOq8CVX`P6m9O<<{PpMqT3o| zD?{Gw-8yYv<+!&vZXoa0=r>1LzuOEMm}iwjnLM{bThE_43(c^>h0qdq&L^c#p&~4{ z2s3dovtM@pcUlMp2irk3T^;H#W*ni#v^J?wN75 z*G+17aWaRLS+fTOFrcw>2r@IIQ(Pm#%?QT;;V_oxTq${ifKNsZoTG|)c{=17WvKX* zfC!>e75|)JICDZ5$m4RbUUB`Ok}s6#a*P3YE2Iy`2pqq&cJEKXj(!t6sk+&1$P^Y_ zXw9@?{kKcwe+#GE(@WCOeONbk6GEw&>K|qcYoa96y%Pv5K%!}JgE;3nh_W?}r)q1t z<=xlM0x#{k`9!PmdFi+6G>vg`7>ta~D-y5);U$s)9KZK1G)LyE1~kDR_c(4ax?*V#9I`rh`zy@gJQO??&Z_I-X>f-(>=hXQCWRkemI7oq~$k zk^f~vZ_P&c8{Nc~)zem?JLyS!miNm-AitfZT1t=JvQpf`Z=0JAc0;&$9 z)~gsiP|6+qX#9Twhd_A0Q0^8b6o;ut{XEn4Sv5*ub^RDM!de*`)HvV96kZ zcv=Ru3_&%3Gn7IF1Ven4DUCmlb-O{kjbq>3N)%HL0yVXP&beCtX#{$$hM`+GQs-;Y z_GvG5Z#7lBG$Vgh8pukTa!$Mhd;I!}oiO9@mem8;4AwHb2B)JjD zD2}g?7Mp)MtZPd(M#Ys-Mv6il%KJ~+BQIHCaf~%;~ToPJR8H>SwDfe;;;e}b8 zi%l6pQFRM413>JONhg^#YHO7G z+CrNzqU|N{vXojNPGP?=K>yGTbrOWuN>){{Jw<^^4+a<)5Uw_UZk{VbpN>D@Pd|p> z6SlVz{~Aabkm%mm%dYRX!msA+Evm z<7t1U1EEN?x?*{S02UH9R1L~Oyl zJ3%zUw>lxMuuqdIg%0wrvj<ohs=H|q530>PvmiK^WN;wW zV`vpK>1OP_^9Y)Wy2YQvU6xYU$W)oOfL(LHs4NwNj&%>SfYJu)MifETt`$iTQO1AO zX+I+UV0i|KNz%{Oz+>)fSzMRm|8RDea;J`*=0Ss=s=jK+T4v$s6TqzkY-^&ne0mz2 zeKR(-l3NVYn(e14uPY1qbtKJ|nywop!MUUoD0Ez%{_||jX=zJtX|5m%Fa!lDlUY#`3dTi>*);2FG(4v_jY0#|rcB+a zJP;vJ4{LNXrSjxHOaOK!I;U-q4=yl$J2Q|;`Adej#Q<(WX${rd*fhg&Up;?f+MR)G z#Q{K~baq+5SLPj!FirSYx_6rsHaDv1fXeb7>d(0DZ#&589&}Vzrv<2N%QQ@%`79QZ z0=#PV%<_`xGmy`%l3c)x5JlJ+nt*U2ZM> zX0_)!<9pAA9Jt!BPyA3R{HA|IXpE+=3LdtTzJLu68SUCZkPwwdr6|y#aD}{^5oGuR zZQg3SS*XGBBd8(kz6V%$YgsFAOfvRQpP*{WIV22&on>UgOV;94R-bZ#uA1JewQ9R# z|03s}-EnP{<+%J5BBe;J)2Hf5t^|~A#|6Tzk;`FLkeC<>QE3jR8os)IsT z9>Hl%>cjBYnQFr*{3~N>DjTCY_|a;H$Ib;hzF|+U>?|wD;7|b+&R%7~%(CmFKK7ge zKg<2HS{t%nhCXD@!krN<0v{%&KKNw^#v{_ah(F?Lw2YY6coct+-wWHypDW$m3RfE$ z_S-xu8MT>0w^cNAOt_ZE}#wAieWe@E{5=wq3T!33CSna%klq>pAbqD)(;{b?>2Qp6YXS*EH1| z-k#I~#44^A8e-M$8tUx3e|;EE_li4n$T1V{%&=o>^~ogXdxQjKt!3eERwn|<7M{X6 zu3Va2m@y^p$o@6+eeO3IQKI@)sj(`HA13En1_<#qvO#7zbT4|Tn}7WtYPe+p;h-We@+gSYaugr+ps zGfp&r>241^-*Gp$>b$S>V%|PRyH3#y<+ADkcne6-ljZ|T zDs}DzxwkZ}tNzX|vp~tEek;$!q*ku0b$Gy#37@VP_u$4KcHL=@m#K^_(0Q*6TB4XuOR4CL&(Zn@&h&Jp5hl?qaE}BUNE&^s_TSAnVuN^ts8$H zAAwo16gVT%)L6PNiu$qA=V+kiQ8>yzbY(6nVN?8JP#REn`IIIxbG!b!YUlU0Y)hi} zY|VLJR`{H>)OY3Hy^HXc2usSKb8N2IxHE^sKNi2&XPE_^pKTA-+6nXm!D36FWjTu% z!xw-?AwzK<;LJ?v;cY?zS7y~h7leO~Jb??e{jQ?M9}Am|&URbxvM}`v%}@yCct_>A zV4f^YpO_%Hv8w^E+Hy1o412&1Xwg>xitzG+2piI z^~AAMMvRV9OCQuNeXV)bR`3!Ol(pVDp4tia8`mlZbo5uSuSauOt*#n_YmI-zx`}^N zhePsQ=#7#qXnoFoLVe?biuh2}O?zjrFCu-)bLAV+UWbT`=o9L)f-HSAmn3}jA^_cG z@iH~-ST!Z$RyBV>^m|k7s=?kZ!_q_EEyJ_Xx^AOQ{i#I~l$kq&3`w7JqkrD>?W{9U zu<*QR;yi^o3~sNXL^5*{w%~u*=sE96&oKh@ZqM9)lh;Mw=zOSdadG0`fSJ0@x28UB zeue*(s$>EW)$^d_3|$LEd%LgN4|svIR>yV%>uoCAYWT_Z&fe<9F0$O7Zt6^`*MQF- zu>JFZWj3Cc3VXp^=xa-Op5%S(U%-jL)% zgjlkI_`4v`Cbvq0TYX>Ho=Xe+=`V^}NSe(m9V3#j{H8+bwf<(^P}!ceEdI~ws#ZW> z34!Vh{*q*#gTMRRKccVj8Y$H2mn$l0Ud9ab)L-yFd-abIOXc=OYJiibIP|yI7k`I8 z{{@5w{1unLI|Cg8G&PssI|D|4cH2f0-SaDY7w{aj)7^MyXU`;YeBwMTW+l%81VITl z2+#m1oB!Zn;XkITp8!b6mgdN|B%-^Xw{BIzp9rIzF#OWr^Znw-cQLu^7L432J}tO> zNc6XSPhPDTD@Og0taCV-;FI-kp)PY03lawbS??F#tC!352ap2ixKBfWKTY7odJDhA zl*5tF3-9Ljdyl_gl3$CuXtN5>^E9EtS0|Y~^q*$G&+2VQ-e&bt9kK=p4yQwPdRC!P zBX9aKr(r}^ek3)}7?h!w=Fpc--I4bm=z2lQ9jS}F=(?;u;XR)UJP4ARPh*~H$uD}V zGNB>!xwhQ9FYv*S?@|+gA3>u?m}}?1)KeS1kTPEwbHRYg<#=@YW^y^8L1HeWLt^L< zM7O(dj@6cI3i9dL^u?C+4LP*%Q{I#QzSxsp+w6%nSTIg`6lqOg4q3g@QS&h?D=u7K zIuH*+cTHQMn6b$br>W1l7L+&pLsj&J&Yc)zCtx(;sc~;}v>{D@sR>D0^<_=Uj+FIK zh982p_U1#QpYieKkHtWu53mUIgDo8!y#m*15*atWbEBSfWY^S}Jx`pse`B5=)*$5^_P1b|^c%QRdNzH}Nsj==hk=rO|z`|O0!Z)*6v`{^R# z0Zm=HHd%MSEq2+l>c;{DX6=QLs$~3Cw1EA+bg(VD-ozAt1jw+kh=!rD!igLdb?jn^ znkP6?=@=D|WT~Q{kjXQaV~dzE(w@?TY~fzU^-u(43a>#Mt7yE;Z4FOIvP>u#H z>C&#Ls%9xd1;EdeKO37E!0Kc5_0vUv9fdGQxu{fSHUqF*?XciFeK>`xTa}dNj?2U@*%FH&$eAo1Gpcsfs9pUuVY(uocge2N@<7 z`*66-FcjMQS<<`pHf4>SZ@G#E^WJGbP?f89AEzZZ-X{sxgt9USEjH^EX0HRV=^KV&BWT*$^rHcO#7?5Os?T)zo; zQf@_H6T6utmIJdeF_+sEmOVFAYTa{d!L4~s@f`HQ0BZ^EoL``iyM6J(NHGSWoNE(L zvEC!#`|o&CdZM`jweLC3+b6|;6u=H6gIzny4k7VnsFQYbhJW zJs#fi&c%}u24xT?!#!or%U?>zUQgm)4qK$LZ8w$<{NOV-Ya4?B-kN5AhU+;rP3dJY zjL$EMcTi6;3@(te=6JZQDDC^NEj)dW^AR|2CW-Ui_ctEkXy(WX{5kZ^q0DD}e+?&y zJOUF5{K@k|jyGz8n!c;_@hup$qOZTUgYrlmZsuRxUA$yV0p`y1rt8ggcAW!W>l3h) zf#rSn(T=u7tzKQ?%mKiEbaB>RnOLXFTv#4Ww|o8P&H9($e*bx*H39O9g-NQZO*6>o zTD;%^k$}g{b-)kJ=6a2IZ<>u+O<~u9b40(aAXQ`BsmiyOB|c zA-QNDEM3Z76>mim4aN+KyNqQ=H7ouf-1zZH?JN*9as<>K>sl|nS8{LJM<2uVeBq0Ea}F1vxi!}DjcS!hfD+)c3*PK{mpFumY75E&Nz z;~(-0-{pY6OIU|Wc$|7rwh?)Q|MLUGiU_5~z;sD3j8M?e>&4&j^)HiO3Z7+dWOH3Nn{bF9H*nzeEEkf2~^UZrsKd z{;#K)0s%~++6m{v%OJm!)JYx0X=*D?3ps$PT}sQAOKwQ6Y`ueD#lQN3J!kIZ?kY}O z$gnOP&YbIazH?@OB`IYj#V`APy}S7QRYC5@i}DarNjeFTq^zMu@HdjxkcB{Wt;f$1K_UN0WZ8oGDE?Jq}A9i&&e~sj>AIP+=FMqlI zE;_Z$sA5Xl-9Gk4CT~SSxqSq(G<`>=UT-p!JQFm{Q@0T0wkF{Vmq^OOvfG0fTv2D3 zrk$FOF6_d2PIE<8jGO(p)+{Hi@p@agEwQ3@)vg{%1^?FTdOy`0a{G8JJj*04oak=r zW8ry5%izG@A-sUle~>}==Dsr_b4q&s(8#^q2NwA~ATIXx=FBEPXs!D@VwaJB_P65| zY3}d`vhKTS=v&gDRi?)3%5?0qLQaEGxTPD^%^`~=UO zcB?E+lb6*asoJq8w>25}^}6{0@>b&_MA1XJkI=&+LK)>Df2gQa$T%+unL?NcAs?zp zIk)rBRJUzC-(46Kn%T922pe^rJ>cR((ZUA?rHfrTEOW zMf^_k@nNBO>ce*F5|Jt@ys{s^Hji2A?MY=w`L#haT*D>JN;uHH89j>J$w8{j8l2HI zGa5rc)$?eAf6bV5x$*v7IIRzum`z72G9GS?UF!}PmnuRgJSf)(Jv2k#A);Lokc~8e zZ2e){A0~`xh(5F_{5s++Zs{gsYLtu&C+s`3g(0D?$E7qi@ALO zD00xxZ35=7wdERQGWyM5^t%`ECgbeM-9<))l5Wkhf6<}L6ynp3j&@ofh5^h;V%sx_ zt`O6?)xevclApI`A;`>GVJ(8X3cV8dMFmz`I>A#Y5JfOa$&4>GOdlyB1pL5%Lx&rq z#FbXz!!S;|+7%#mDQw9jZ;~aFq!0z%S>ZE=TMKY$z9>{4vEE!Zm%1#M9AH=PW=buj zrgs(Ue^Y3EKoo>GL{N13!?=B%v%TyLg zKWvWWMExD>SaD5*@+db_VRW3f&0q-&O<9qjf7K+<;Cbe%)MrBD7R_;=^O`_~058uy zh@p}>5Y&2TvIi)^l@I4s8u3uI{ZOy#4XQUewN=W+DYZ#IPc3+`G8SMAoSe(p0^A&- zBc*M+8fzn@AA>l?ECYliAG!vzbG(}28i_!RV2lj)G&I)IE|+))_9`79n4*s6V#lDc zf4Pg9q=F(6%)pF{L%-7^JX}JlP%2|k#11apy`z*Vxd08ght>2Z`T8#}e|+`)$L}u{ zr)gSd$v^BH&SzL7Ss9f`4E+Hp0vv~4m$|E}bP*IQWnT5b{q1qdQ>8DZ_icZ>uNE8< zG)l4D`20&<{vmL~@~uwo`V#g^Q!bPDfBUK%5y0TtR1ck%DV!;Qw(|0+GlfK4&lKpTAT@r}GlKR7Y zt?HuCom?|3i&8i`03aefZKyV=RW)g4ZnXsp7BLiDZ0gT_({-3<5N~z0-k!Hk*wkWAL#Jk?a3Q+rGf73P=n4@T6G-UI&YuUn90Mn&nN4w?u$=x6k)65e| zOJ=~BBj_;!XLOjp-c|#2MfEURZsasnCL@Gz^Qr&9WaF4BN{f6qaK5^Ka< zz$rO%%+6w5a<-F9b3@uFMz#RRgn+cqnMBuOC*>pYDgv$0M zt{hPELZ6n2!1M5o+@E36f5%QzjH$r1vv!5^5=bQv#VAv`v2pAmR|ec*BcdoS<*UFC z12HynXYeEJXTk{1`~D))PJ?|epT%aEpa=Ke#aYvqz5{_4HTBsx)VqGp^Ha)0vtlq< zKoHBPxe3$t!1nBxkf0Ii?0w)ptY9ugzHH-398ZONP*-TKIg)WGe+{|svHmdEFNf2^ z9H?3LaJp~u&C3%ea+uz^-Y3nD)xMAC6e2u8yPBAtYTN9Zu>HbBkIGBUVMOzwxm@kLt5e3X@KvCuB}H*6u^APow=Q0Ajo+kVqdV> z7cw`wjU!h(dc@*#FnNx)c7HbIc-mIoVg`w=f8p%>alfc7l5(E=Iqa}_mr<^AKP6fW z-yqtVuYHLT%QodXs3EfeF(PNC7HD*O*G${~0A2OMzj=<$f3Oo3QSoT}k#Xk4F+Fbq zuS7w8aMK%tLA%@Q$<40X)Ch@3p#Z#y<}7#BJI}czDisNlisM;de^D2+Duk?=vaKuq z3xfJmF=$u{4IZv^oX{;EVB4C9TbV-F_47kar-0?|J)jd{E*=Vh9tQZKUqf%Gxi6x1 z6|=W^lcTB#e~qjb!N=T8ULlDe61wO#{@(#$owe~}4k3S_(RX&B6M&K@Q_?G=%m zTeOd>`D9K(0;I*Kj2CTTScw7~*vL8sH-#%QOLGUgvz&#(%1}q0Ex^%y>DHM`#^^Q- zctVzWMh;xoAu+_jVdlg`!W>Kj_i zl$P#_e{33PSE@%hSUeF^rWQic0?70zb|TKeWSR8*=470eu?T(!ww!5M8LT~J%FU?6 z^%A!EDN0>%v42=vnx{A-IZob47N90Ru1rIMvs8T-BJqYHFikG(wMw(`cbzlblVEe{ zXJL9KXF?RDj9LcWk633dF99LdrN4?gbqNTse<+jw`Zf@Hy>UG>w>aRqo!2!uRqzG- z&CJ_JS8mradsQ9-j;=DH1%!n2fV-dqKnne+-d*Q5-KK$3qgkXK!9WGBnl5f4MqmQ% zMmH`Hf4zmhQoGL62WVOR=>M(mlfc}fP%Z)AZt6Q|0Fw$@#AiAX1o*791OKQ5Je%=P ze;LtFJt7Tp_l1$U0qly0ABIzyA#CMm@Nu2i3P2|eJzyCcZdMe_7K?154TPpj&mU7& zCJ#-27{Lg79<-@HbgprQmtloV=>-b3veItwLq8VFR zo?`57?)!<1J>xW0eyVqdvEyOIZ!z{0)O2SGdYFMg(3knV%Zf|<(fDY@z3p0+s(>gJ3IxMTVG0M4O2`ILF`?E{!sPaz;pGr6cMI2ZFY;;N4U5cimi?mr&@ zs2RHRv2N@2@=l|Ou7mBl81{X?f2ZWd-O`&S5ZU64Hx<}cGM_<37EMvj=NGO_HI;y7 zTtsytReI%MJZ&&+nHdVFlIrO=nzkVZh*n{-OPNwp6sI>Sse;n)INk0rPWGzd^H+e& zeoP$c|L>*#O!*Cj9$GuaRDG z;Jnc-YG!ZU(J1zku&qGDxw*)js5VQy1azvto%;Q%ol||DQyD_?>;$HLW|(ox^aX4N zowxEi_^gfIVqAFi18Lq|5-SOtAzKX1aL_gLLko6pzaFX<>j5*B3@FtqS2Q=c{p}Awk*}(8OCSg?S4^@( zB^-Oo@9@Kd!z1CDmQ`lX`dNY7Jios9D}4P2=4YEgmtkZB6PKP-0|^5(IXIW9Qv*YP z?OV%o+{P8%^DD3uro?HZyYcF%yr67Zk;`%tWfUzaRT-S=ArZ|0V*o=*|Da#tKjz+k z1M{E~XOTrp3l#~VANO(2xwo6YM+u=(g8$6_%k9N?Z;I%)zeu9ni{CG(dKj7imfPt0 z;$of0N_b{E&I8PFPJKsZf zwf^b0-Zb5?|BNp(GBH<9Nl6oC-v4mz7Vd`>gysp&?U1{p<4{UietaC7937~swo!NY+zU*W# zhw&mgBWdXz`hV;HG3(E11}5Nt&gQs}43q6T{!wLtjP7SFg+yRQTy=GIvypuSN%&pc zMYpxe49G#M7D2%boSG!0kWy--_+CbX&&Ld=%b0z~%og9tZBz|ISKr{9DXdAPCc`+y zgnns1$eu*6*7yp~2)CweC#ItKNm@=UZN@omtG@E9WF&D5@T&xCz@9aK?3gVJlK83a z-9#xq6of&frgj~H5x_WUO8xMuHu;@wqE+4RHr1DCxU;4&lPpGe_ffmH24`yaITKV( zW;5pAZvn#1PY#GxGQ9=uLJ}?R6w^y?cSGGa(WiQ| z871X-5R(|Mng)MW(Z7(RtT zz4O4^g^s`5{Z=+Ze;HM)RgHG9Hj#D!{H_JFcVPQ!x-qb|C@nRAKCCA@18XI2b>N`` zt1#-~`{5@IIYn`Ze*unOhEZ6+=fOr&n@II-({^&D@F^`xncGR;9k_<&BnJ{d?VE(B z-Z%Yzx7*a#KN*7*AN!}>4-*$5m=yf9hjNm-$44B*0QLCTLG^GlB~aR=ph`sMzc%?F zWQj`rqVy?I!D#S*>x?8c%{>&~RXWE+8Q<5bLblN zJGrdC%2jk@)_f3X%3-ufh(iM$f~p~2t)r$jfoNWjkV33WBA*^UI&;F4;*@Vkym~qQ zG>3VU(h%xcwQ+W!+8|ZIcBQpPLUMy(=b#Hs9XiEYKXgieeXi#mqr&GGf`(E_Z~to$O(y%R#N$>_A05D6mhY=fe6-qz!ngd^u6TAI@ zzq;4dNP%XY;wgmTcIR>AK;>G;wV_r{1p*lc0t|RiU=^rDZ1)696kA~3hbou5yt9)U ztqN%91K`?90))IWr3yg*GzCd`^%tz9XHP=kTg$yTgb_BX&yUJo>L@+2F;gLFtj3Xl z!%HN1Itm?A?v8_J6%=li2!|`zan}LyVAfenMDOEXPMM$>m4R3IQGc%KP~EiS5Kq-| z9!tabGcsv-upD5p6fPwnt|rs|x9n_8T=jjstgB&M!)C6OP6)RF6__+9j9WJ(I+*|0 z?OH+@cC3mI* zUknECD--#HoY5@4mEAL7RKSO=9O|V-g%Ix3gSf6OXUvdQDKg16O!sEMEP8<<|qf zzAuIgsYSxn)R&63phS|LmY*4o=g42t@~-Nt zK-(8ZImx~L2?JLPzJ&5R!UnZV;`bqx6Ae}w2GSWMrEsRi0lFE_G5VkoT~C!004f!KuH|y7F6UI( zy8JTQRv)ptuLp=8CF?u61|8olB|5ZfwCK?Sq|8a4`hJoMK%x}@PgE`FiiM0iqyoKZ z2T{RU{L!#ETG^3mM138^;f5RvgB&aL(Xif{52-P zhL}n&+a1$gtT_Xa5(R&MtObH?DQjshzn7Jke8aS}T!zu^c7YACbDOvf6Eh1A0X{F~ zZouLIGrhUB{hJY)2@bjJVsDxZs`-^X5=%PehF)&gm%2i>XsOMVb3!Tg%D1$dwGH8n z3eWb=^cWH*ynQxcA)8KYG)KNUVJJVb@g$kIt+Q~Dk?AO0E1{T zjV_osJsVzq7oJIcsl~OahU#SP-P&W9$2#enwaI~;3$qe$^97*)jC?jLJ0a*^s zXZdW}7Xy&!_cy(N{CyAUs7*_g5=_fRrj32hM*RSCNM$cpKKrJZ!&K9S=A9l1KFSDC zhcR)460or>PIE#|O2@886?RsNGpvvi>P{@K;{n(`)09{(r`0s33{dv@JO(sljuRmK z)eD(d0N9h&&p|bSV_cUH8*&nK zyJPV;FBWg#OeEo)Bg>YP1RJ_)*GKEF-72tIf*3*|RBZt4;U$UE(F5-3SVG@{h;CY4 zO;?*}E2{>-M^rUB49fp+%G&)&g{SpXpzjcNKtH+t1}gB|C7*3Z@D#$(0w(G()jq?@ z&K5bvgoieX9RDtZyf#h^a-SDKLBuJyZpC*hbPgn@0#AoDW-HSqC6z6m9pzm zpEzi2j!v9V2?fDQ8FeR4cE(HJnbJF^1=R{gYavjG)8-o{Yn*XthD%U1z&-upcqMX(KVF}nDd63;Y<#wM`3#ivmu9FwBPZ!I zq{!7PR&E&O6J8oIY?Nwfd9*yvL~uiYVAU$*8+4{ZRWB4Ly!@2Q0a9hCHzC0Wr9H~Q4Ae}LDoNN$WXEX`L1ZL0;Z$>V+(l&tNE=roo$jL6 zhNH?XNHwpp!=v9NI0aOhTwSUr`v9fPPMu6`tCi}{sP2iuVf9%MRlvly`YVBdx%^!K z$jkQo8-3lxDF4ybMO=$drps!^1b|POkJ%6kLSEYAH@7l#9t23A27#aC21e|$fq|=# z0%5}3_t6G_EQv-Pb6b~D0%G`o{1FD^hpUSI(<6+_sBJ6&P9QA<^c%O%CQAUAr;aA- zUgc*sN+4i$>${Znxd>n^nUAOYOf7EE*zTv^1o=m?H+Ri|96lGG{Kf@)%C{vdotic!ka;th8@xB*7 zpT3@SgqaZWkA9)5X8;;NSO0E*i%#f{11R3@`@7Zn z)E`O&S6QFr@;jhji4#X5`KuH zeNZ2u4ri`bYzAck*JQ$-gO!Q|Rg1nHV*DJ~7iiM-g>%(DbUMlY<%vQvU7@(ja0C|F z1_nnyQ(l>kVV9}lvz)Q5Dg6S6$f3Hf0otIl4yvm>h^F)mheBL`$abwOrr z`V@nU-xCe7lSiJVx$ybdu3hc%W>ck1iZf`YUGHI{T{YaPAbqCSB^3}+0qI>7ekeoN zm>YHwJe{bJwbjrd2(69+YSYrvjxy;b!Zdg7Hn71gH@#^&;yTe0Xa+u0ogD-Bc zmQk2w!R-nw3wm<9xl%8)fX4w()8KZ0wfN$H&)2sfunX3)B+Qbsz>3>7{)dMQOP;S5 z-@m0%aE76Fq+R=Je7Ga#Im62TZWxL;3&AJc%UNuLx$O;fMtj^Txvj>`E=;>$Q zm0IFu!daN*!7|C^qK^ml+-QWK)!W~8bu$FRRs`$16RV-^UW0z9RzC*M^{@@vMg*dN z8SvvlbiuA}L^wSNhp<>3@-%-)6vjM}+WzL#Zh}K6etD^z$3Rr8t$r#O*FzuF&05fz zame8tm?nwKFwJ9i?%m?0zK%H$1SEU^@h#F4DhE84jiCj<1cl8f7n&8J=tQqPZlO=F~3#j_Q`0UyTxE^vTBdb zKz7=6?OvLACpJUSZq$F*{Sfrq_BzfM&rR^~DvjY3i(!(Sn^=Q$`tiYW6!Ij~c3nJg zMFZRGU{!`sVA71~1y8Mh#^_lY8g+gYHi*kGK@6wnMD2nsjH1MtSY-$~yFEgGlfzKA zO@BiH(@9Nb82l`{_EJp#9xt)-*S(a6dBiWf>7sYK`f)qso-{1WC_dvO*f>is`6$U# zcELwTlO+A0UG)3hqnwiC9EAuOm#^QFDa3H>nn0pQT84RPl%QpWTvqLlBB*=(d~9~2 z?}N%$PNHRzgr!5pr^-`<6;6$RUA@+_(tiE%aM;xXKXnra1F6q=mxny#g|V}NAhM*C zgYhuRO9L)12A@a~k|p+J=^w^#A_r~ei&swp|E0EB%a{@PtHVcv=~C_$mpKx-9Q(-O z>};lJr`#c?`u4g+1jc!R5Y+K!Gb9dE78wk<8}F1LR-(uV|FP45l z(QO28Em{O9~Q>B6=k%KbKq#B5A8#L5UWYfCt+kTFAT%rKa&_>X=olF>h<_t zs1g?u^WJ{1otcs#OBSK-l*|IrziL;%Sy(U=A#i>iD=&@ns1y5k6dt_5exa5eiQrY8ZAz`wZ(fTo>!A2o$LbARk68xS041}IK3>1L*X?34)nI57#dI(BkT z%3u?yP&t6HPKq0|cE2MF9ec43ua{W_yk+I$odl9e!N~wTuAqF}p6Fj>GvYsv!y-jR zvl00u&VX8TBl+D#TfkEm7GT^aiOxkqndY`+WJT_W!ATmWc^Jj497zNmptq({tv7zo zrYv`7X!WvAMWn6HIDHq~pt}?9Oiro&jSc!>uKqZrSVhbYBr?tuz zR3|<#&?3@Aez_n4fJQb(!jn3Rlr_pB0-JW?{}@!*Mf<#e^HVIb-ki@K6VC{yJkQUi zGvF(a**Ki{qH21w^+^;J$Qy1N4XQ>K?b?wM8L305a{dX^1Y;F+ij|0YxvFM+{}kSeggAQo?k$NjS^& z6!kgbjT23C2<_O~IebYh*#Jpuh0a5)tT(Sg1?DPwd(6R8K`#k@lT!T#|ia=u#sgfM0Vcm2vtPJ z!c7{h#_5~ma5xS#^(!SjFFxhOB+TrIcMIw(#Gyje07@S~W)Ia$;Kxn7+fh@iVD?!( ztb#_BG9+}!%yDs8YU!Tk93!|@(xn9|phsKO8r_qCG!Msq96`ZzR}UI*Iq)D!odJ?a z^(&%(>p%$F6)JQuVK0N%ZIN0SuH#5=3ewK4Q%|5N%B|4|<0$fe(HIvDT~+TWgP^sv zL|Q5p4VggV$!af6Qi8>&wvZ)}YQx@bPVodWotCcrixc*Os{8BZ9}vzhgkP%vbu$Rn zH56f*aC5F|YZ8c^a}NqrjV(}aP*9?KAul3-;uPH}?DBxdr{7imb}9N*bwH4;wg{ya z&XcYc4OMS#pt!(ER<7HrQ5Znh!RW^~6Qkr|Y*CS&z2TUtkgxq9_I>bw z3~DTl$h4R2Z#c9oEJnRL45qlSQ9~M;dTu?Il2R8?#fD6cuU>-(Aqg>+qxEZ3?duhaFo_6>_moL6f@~3x z)PVj;ofA4Jhi}JPai_*RA4gGj)#KTRq%ZTGjU#r=JC{fD{9d9@SW5Zo_+9uP~X z<99cKyuY6|V`c}5OH{}%y*wo&=4Auy!RFYh(3Caz(pK^u{C#sqq2?r_F738CBiN?x z_Q6Jo^`)1m!&mciBRn=U9^5_ee2g&=S2t7ZWgPfj7T#gqnZs69*VWad<(U`c9nNgA zZM*vCwi&7&wSbp)csc_LcB`|0wXqurj%M~xGr7(?LBw{q}0zzIms@XIX zr=d>A9z~OROhfJELp`_<0(7>(swcX6FjHJw+OEiGPqI>j8Odil16}`zuDi_6osZVa zJiA}eoLM!+oiLlP>&JTNPjWLxADCvI-Y*yRe*5B6N!=(3xe0dKiK{9w zV|il7zU3t;j-asV0hA+uCWD9wvhw(>F3Tiga{f3PyDOg{C^zk~3${MA*~v+U{O>_$Y zC-{B;seUxUF@5^P12RL$E-R2Y%&$s${l*XOX?A{FG~w zb#v(F=K$zP&ddSMY&9LjGa37z2ZKMQxxJLAs zMV6Wq5xNg_zoSQB8ohJ0VYW?sIma7TN9wf9h)++elxCYF4m(uCmIOHMA;}c>o>=#N zNs`R8?SnrcXDqhgRJ6y(t?psi=uRK%m7W!(+6^e9Y`A)VQFSZyHbBho#QbP)1b!DI zqxZUN&r{hgMziA;Boj+r(|$T$;kFuBOjjPS!Ak=qIe1I(9qrUOd!I)xA<}MCv@%m7R)g zy;FN7T-SA*6;^E9w(V4G+o{;bitVIg+qP}nuGn_I`#E@z_Wlp^y2hMy^wyi0ll09l z>s;OTbVkopPjKLx8%%E-fB6IiJZaZOd>PZWkzn}5PHyH=p+{jxancR6xJ^I{4*wZ^ zOgTHRX!`1VUl9an0xJ6XyArmbCW&V=1j`d}Dr~~oWfN(KCk6z^t;&z(KK$%FQZ9a@ z6Kz(DEq!bqH(F1p{035WaA?fs`LMyl)&m=sNe2K@7xKJ+3W$E2f(I%3t+t@bgG(6z zn?<8{mp+|L;@(&wJFEZC%o*`oc-M^22dUCXn%)S?yZk_nEZ8|q-U?+}e*5;jq+1?H z`W_n)XQ59WgBO$Mbt}H=>g2akFuQ6(Y$;(_CSA=X?u338f~~f12d`A5;1D+4-rXaA zuM1Jyohd9^Gb|4`uw2l<)E{xY`z){E>U{~wCCdu^JZlw2-tI~*92<8aBh-O~K37V* z&8B$>(U$mSutB%QMtbUwSd!|IwPOLq3@K6)R=Cc&S1@`>PDRR@;1h z-JF~iAnIXYRL2fXB13o>+i5a=cdgF(XdCp?>OU&QvVdXn)!Hj*kw{69+6+BzjJ&IE zhC_xBzSO7n#Wr2i#8rvU7j_l@_b5RzqnnVckHNSIw~tDf@Dp;yagAZ{br`l6Rj~_M zcl?wHFq;sUwRy3AZ^ImBm?>g)U!1bZ`rCAuxmgK3*aZS0)s!IrKPhikrvK|BX60n! zOg(b`@8P=Xbi|S9yQ*<(TLzB~2?Ee3_+)zaGWRxi>$;d9kq_=5ETc&tazxjn(6X}b z%?B3$II=oYMi!?O;_us`!-C&C-Dk<3u12GzD1Dmz^z!d~-ks2RXW0FDc6qpfUnDet z25y=>e|=4dCW@H9=y)`YC|tjA9#7I$dZ-%i~@b8)<-ul87nkQy!%eHR8aNPD9im$!}dLFKDLv;EH-neMg73C`u{5k z@_h=qW`EBV9}cH$lv6tIjt^CPr{7MNJ6SxNE8o`R5UjkMlXG^%>GV_Yth#6odytpY z@&`x&Be8LRziiYWw-d`Nk{A!EX+3q7>wKUC3y8Tq$GAktp>RtM(K6qX>V)}rtr1)JuJE*U;!c&7g zQxp|h7V&aS&wL5X?e!mtDWmL@l-b8wSxPWSDM?;GFR<}A5ITsv7-q`NN{4}$1_N1? zHb8`+3JcM-F$#oYNI#F5nmTKMf%Z@5&x>CM_An$4!l1kXPwijit`b@IcjYc>(#57!@B~`m7P`av)#dS4jcc z!5+arT^;}7HGzTa&Ut*-V&=^;G)6E{K@-jWZU=Yfv73Mb#XfWHo^|yO5gA4*Pbx^+ zlmH`Xn2hy+`|lXGuqfYtDfAG;H~%=tq{XwWY=%DVn@w{h7yMHYoM$II}-DbCAlrzTPllmOL3>4VbKgNysL zRSa42XSQ2sqAgpX2nc&a)h}EMY$HB0_ZmNyP4M|L`C7Ak4(s+z;5I?D{emvdVC z*X>DotgNP#sH3zn=0XBxn)e;Xudjw8pDTL5?0?oaBlNShM0tVEyFh4lEb@_Zsj@z+ z=BOD3$eJ{vsP~GbP8NLI2D*^RW!lVOD|)>;k@3QXRBSzyUc>ItOZ?@tIlE=FdpzdS zJVp46&zqo1TK~KyQx)j>wKjO5z_4qG6ZVe9+9a1vy%>oHKpRkW`dR_A@Cy^Q(olEh z9yGc(Q!zeNrgf(f6d1I2uQxymK+{sgCf(E0YhhoghS9XaeCDMN$Ydg9PRJ*xQ>VBr zf^7LWI1r#{NdSgau!K)7L0rb`pn4*05lL|b0n40Q#9TFAq?42ZZ>h*_>EzKr1y^5p zZP%#B3&_oS`W**yW>^t=|5<+FU4(|vfD96h=4fddi2kDx0|Z-8Hkp#(Ih~NdVmrG} z$w+ntxaiiTtJZcgSsofOP`k30} zam@8yqAf{sVCJZ5`z57o2r0DHqNa}j*RRc$iq%h z|2C(~==BE^B}jERpEwC)?Qp9DkWulBF$;fbSBEgLmR}T9K<1|UU5v>;+olrz7j_!m zoE1|P0!mSaxvCaoRcoy!QJWBYd9WJ(YspTg&kSX>RABci6{zb7n%>N?2JAhxvWasE z#zmR}7qpH79JWIt;>1F04>=>~5lIoNB>dVXb1Qv{Uxs zntNW=n}SWw>YyzNv5*Z-g?D51V~eB7EgUk|fT$QIE1=>vh!@YJhOlO>9mDtvn5USrN7`Sn_+Y&~J0ZOb-4s3S)<+gC8luF!VQcAlYpk z4KPK1i6(Edx=s}{xvcz58Oy~P^sJ5=bJu?1s7nDn@^Fx+Q?h)xGb(0ezn>>1V9ajs+q;Fla1D1qs6E#D}p3ab(3Z|u~v|&8@-)f68s%SZ81|o>P zo+<7MnykXvuTbwd*vZ>nF5xv}1>H+|bg51X(OU2?yc1mVQzc5lrN`G?ysPYFHju z6nV2zw@+~mVw#Gr`>1C=#8J2F7KTgDq|7hwz~x2lz^Om`@EDdEBo767>nlW;7Hrd~EAk2CXne8Z z5jNt=pmlAsS>@4v-G?~OHBPJR43AivvF>-X2C23W@LG;~XaH=Z5tJ)rV9_9)D^E)Q z68HeI@iBhJ6<2YWSsFyetVu2Xe$1MWDC9wqDJlU8?_o944ff4M&uE5ygenN_>>9;X zZ-IANDlAvc7e%`*koRw30~&Phw6i{~-H`j4_1GJH>Vx2iDC9$(uw0qAZ2EEGK^`jl zr_Ppae{Gxff==)xtuWnkp@KSC-SSF8RKcIYX3L*CZ24;4B>)2C%e+l8^xFpGucySK<~)*|IU zZQe>-@8;bH@v~Y4|Do~lFCO4&7}mo{3^GBbT9@k%*AyENduMr;s7@e{lS~`rnT$>X zGy2GvU33sWgV{YF2U=`e2055TIZAMqSCUd=MwAA>3D~B7A=tUiGas)#IT2P~p!z3r z6?R#SIh>9zn}H08BYoZw1t7kq-lePuT(fPayu&mm2TXMbX%`?!MpF%3zNt)r6Ek?m zLw?w%#J;+!Aq+jrjk{SbYFtofu}-*is6^3l2Q1~F5FnF~12@Ee^H$^Ne{6wqfy)u8+bSa1%pD{8TX&Do zVBN`SD=)N6ZmFk zB{YTUz;i1bHj!X;IvrajWBav5hE_`5aHG|Q?ycuA+)KpY?oq*=DQNfrH5Q&R@NG8J zMnV_i9o}V-On1scucitm5RmV9Uo$q#n*F~NjC9Rz=^}80tO)Bw?=IH&ph-fW%l2w5 z5FJv2cA!@w^iw+W{UF-)7yYntyhmP#xt&tgz^4S6g(Akk(-Sfm;c#=qR}~j_Ji_E6 z-?}mhy)J{E+8!YDio1=0KwwDWZ++(a=7fbU#4QI$y;q1l17trne6Osm(E-Hq%`ytw z@5IxQ`O@=2J0wi5DvI6Yym|SNC>DLl^FQuP475T3@hm@;t~k5F!L~u%NN?09kEq&k z;K{f+{_%Lvp;Ko9=wMY#_D%3Rhhj@s_X_0UfPt@fWxq0pAK6a~qzu)|+LVxqC=z^! z=+4cCqeU&h)q^NMx$D24AJh>(iKc9QN%?|7lT3*ht@>36VMxcnc8!oms*G;XZ3f|g zvn5hLr$~=aYB9gWVG1^l614X}go?WCfFt}~Ww4-AGdEU(o)ZQ>ABK*UtUts5sTu~9 z#5SCvV7eF-6#{Nw3%aWmKpd#Q%qn$v!!J%+7R{Xe2uiqA*}9YuaGkAR%nC+6mr*!4>+DxZn}PRp^rB3K)_L zriUhYTHQ0L`h+*noaCV6H)j1BPz~1E?7>B`v7r(Fl}Pp*KBesHA@6Z`&P*dtxGUmx z=6qQy7JnaW#Zs_NEnGy&asULkttyahf&9uNwLm0bn&qUsQf0#dtgGS+J_a_zAO6qX zj5pGiALQ@!s0;psGxc@t1l_CK-Ol73^07QB@2g@Cn^V1{d~!5`bLxjpAd8FHe^>PK zzNc+?yw5LCcW0={cO6c5|B;j&O3W7i$^bWY#fK+&qet8py3ME$hGb!$*YD#@u__9P zr-4)EvqzY#6o{7m{}iU(WbZM*>Qr^fZ7MMrOn?HWSNVgu9AG6;i|p?u>Jxgx2C6+8 z9DXlQ+bOR>^w^drY6p1~KsbhL3MvB7zHUe>Y%8d`nT|&|&Zf#f>;%r^Ra7!+KXB!u zrqs93o;JJXjz|`}!Ft@UrkK5A-aGvgN{Oke3VUGg$C(Jlxr{rN2~7)<|B7?J2#A;X z;clASG+7U87qjjM!bubcDmsUwkKnV@2Z_}*nG}32jYyi0&g;h_aO1yx!SA4 z+4Iij!=-?M7Nyle6_rA`ZkG@`v$wX`5JZDz~eY zW_m?{aN$LO0cr|3a5;p-D97n4$I>AV{cMJRJekBuumh94u9WUvviT);Jx;BQpdrH;b}Fb7ev>p|Ksp$8aSBy167vPSor_*$Nw3q zSecoLn27#osNzfAC;)>=Z3qFQ_>b_P{$EXX&ja;wJWUYwwTC$qmf=B=jJ$5FZp0x~ z=0v~(U;{#Gt+NlNFR>t3xVFGu_T>|-lkA`B1k|RkpA0aU>qg4mYDV?wV+bw#y>S?z)~@baDmOI*burlm@Jsx8yK?f0 zu?~iB)LHweBam`M=QTIc$>V6BEo|=UbS>Ff5cXP+XS=fp1Af0CFd-yVU#*?_8 zlXo}mupV2wMEp`jj5}JaA^wUHT#;nd5Z9V-SX#fp^?AJCejklO58I4vAfaW5_N5-3 z?9U!CUmUcxdpAb~BHmbGvn#pBY_sNcH&uyS@iOS0Cm5&z z=WM69=Xd~fln7Y>ZhU)XYk|e?SN%4p zILr9u-F4s-kTpLL^pnku;2*?V)8*K}Iqk8G4=(exF!Idn)`!F2lV15*rUw>4HL?_rsz(0Eg~zO(iNFYz>9#m`b4$1BR<(Nr zx0sOxtGyp-=mIc&xO91n-{>k6+uHHx9{f9vG1hSg#E`Q{fvV9Yu_W)qCEuFfz2QqE zazICwg6u>9moR4|zndv8rsfOiRBRv(vxqz)W#68j-=kcs;-JOp<;OZ?0R(fA{6kDD zx!w43l(zSiHUu^PO$qL{Df?xlt;~%V;K_6_yEy08T2#q@^IAv)czic=fwFXJ1J5vq zBXZ;gb_7A}(3P7KxA!)}hNx%=MM{s}X5sTN>yRg1Ryh;iV^JM_kuod6_wRy@0TPhF z__>z`*WyJ5Td?Y$5Pm>bvoZk651%|D(%KPDmMO#3Y-GawjDdD#n|5qUkoJ8TDfUEV zP86a8V0T5fe%(P=oNc@W*ZdNXCB0W0yBSwNP6@;KTX4u3x!%nuePd>Pl0Zz1BE;u| zTlLJnZJ`KP>T6Y^^HEgw1<(c>y%8&Q?AwIkrf0%;V zbXFb&DlO_d?8WsL_ALvm7x)}}xE;5hmXvKYb6a=+j~!T6+Frh3KRI@-oZq$`-5I~3 zM-L%=T?NF5sPAvXjl5x}XKa+mRJ(kDE*n+BK?%!<98K4EG14G-(z!e5 z`Qq1lEMOiJCsR|4FjV?_Gcrh$9coLT8n#U05IO1s05g1WM#XD;Vw^zJB?5fu-_2ooU=5c3r&$t#*3%F=knBv_n$WHaBK2zeaKnV4SV9g%ox~!^e%2m zR%Ap93J+Qipr3!C$#a|s-u@V?C5R;zB8s{lrjfZ`kRd24TKE=4aD*~9#{v%s1#1m{ z9x?5C9)$k$UVS((tWU=4-Un7TGD3A{oCp(U%sB`&(G5wV8dL5~o+p61#78%S#`iq^ z`V+gc@2~}T)&Dyyh6dFEU6;ocxU!4y7(aveWlQ~r7!L0v+p#qCX>^II_^Sg1I|FeP zBMJU<{9P`UXe2Pv<%l!RjEUih<;#Xnv?B@urXKE~?;5lpuM)R4inc}7nD4mZ2o7H; zn$PP5kB`Z}{Z}(;+iL@;l=3)@_tSA${8sZr^MY{z8W0}DF#!sz8tiW{kVvdtVEXwu zT8TdDWDa7yjw%qXEKTj_$?^QzGoEphJI*BQ;j z$Lo)f<#k+VIlmBl+@w*5{v5L+Y}*?I<}phV!#+6d1lMdupT-P?%CAC~-RK61iPmaj27WZ`OVsjQi(j^|#7_0hRNN4TTN((xM{xC*c=UIx>K%Re%n zu|RZ)x{!O5o-0D2Qabhw5|zWb0Mp!C1Yx>3Kw z;qY9(%nRhyyG(8xxJ~@Yt!ngq-Pd({vgt-_4e_Zl27Y{Q=teKEv?#vZuY@03cY&cT zdicTTZ~*%+HZsvu_&ZO;IsW&-u+u2+fH6&49U-#v;nLD(apk4VEH4at(rUOr+dmv2 zdr5<+plr(^H_pEoL-DwTal_WEiL|x%B3-DC3Yh)HGL>a5;1`$j{YHy=fBOD%+r?2o zer3*g5jJ>BG|pW_1Ka`|>=%`;!5i0O^Sm-w%5A)Xi;X*jH^qLw>>lrga8jE-o8(VX zpdk?hyjb;JU36?U?yw;yMdK=deFDhP8eC{w?O02-eJ8MI+dBX2Rn7-v+8oigy1XrY4BC=>1pF=1NnLhl&v9PTQY`X?~b;Y{Rwn3xZc6I0WtN4J}pZRx2rZP=8^ zJ)Mz`Mmoe#=|!#w>o6!5;Xx{8qJDe#5M@zoPe^u5++jW^Z#P4~ajbKhP(Bw)B7|mu zP$=$#?`I8X(DzA+C%3^WWRgonv$GfHf83&zJuj&%de^8GOD~YTqY4gu<`^M}Mb!Tt zKuG;^HA2>nTc4!H;bqDWEhO~Yl&cNT)JmJ@-W&Yd{cEe0X;K9PKXbT#5i!(Xnf~=B zHoLS9*L`{I4@ZP}kt+fckQ(#Rsi$KI*hqK$KzXl8o|Mq()urQsP>0Iz-Th~M%Dgkz zU6ceKWuLJu_I-cbRkFtNm(V(T^1qWoP<_Rs)OxxP@ObxMyz8*MV)bLMiQO%WZ=y08 zN4e`FQg=x;E-B%OE1B6g&YEc_5ldAto85@M5A6}f;L_2e|5SeV_UOg~9&#eEfy^Oe zKZF}sZi;?G$jbcN`{MF{^rn6DK6-`8|bN28+ zl|x`GVLcsLpF}sKrD)tIMD}Edg7y#vJ9Vsezz;9k^6r*-=v_!*&4AgtnTJF?Zcx(} z8L-)5FtNP=H}!_rs!<7aqZwg(Zfq8UfL0_`~(R9wK-Q`OebVL$evq6 zeyW!`4w%Lw1sJ>?{j;Q_6t1fKJxMD4xkc^I>)>+^~Zh8ET>By0--lhb4E{%uE<0gK< zuG=&5*A*sX8t>L9`)#3pCD3FWt6fq$E0+6QCqr~7POo7$N&@0DZIs=j%vDq&9$8I| zj8tHi(LGO~n4c*%dl^TDPE%n&xy>u%DKAlFJS~TN)#lyk&xmN80YpinqgrwaXRPCe z&NXGWY(z$dho3@%+p+9PfohMlQ6?3)YWlFv(%HMJD5~)mTRbLO6cC$RR;~K2p0s1E zAfrKyNLPIKfUZ%~gX2v%IE8p&#y~Di={E-a?;Xz9@>oX#b7{PSQUMq3EHI8p%EBt? zQpH?%O3OUDDDEm7!*&6bQdx?!g%(qPB0l-BLPEt*dDv%E>jym({&j8)gw1J8q@4Q= zgdNreWG4vLaFBtgCm@ku+q3K-C!;iu_|%t*fsfnqVev}23`B@0`bA|=BWVGd|obVjedhQY6T{i$xrSv(;=P_P5Y_c&Zi>qOuC zrNE>ckTr0z{eO`%`scEFpkK%qo`a;wApoHxl3~a4n^nx8VBk0GEc?J@YSv#cTyR!y zZqC%szyB2wCvN`dmCmj0%Pg-(7V&?XPD164P?2xA_(O}Bq#BY)6ag(hLG~}=r@!|A zxMjBmEyY^yyOB|$G>ruQ?)B~>dLt!^9dY*?Xcy~l&_z4u*A+GXef@=>gc$L?hBvNJ z*=Z)56kWyfzmmSn?QE~~guo;cx$$!kOy4J``gbs(TYxKFzLxUeI^*ULL6`}{@k71G z2lrly%TDvl+2zZeh-{;Ki;O#J z|8WR7m~4~d|KkvX{wP?5%twqixn%N987TZo9IE$x_4LNO<1P)*^AK5NG51=xM^qnR z-1)C^rna1F(j?`Az0@mXXbz$vxrwfts#glP2%UZ`(b1Ax`xrv|g4k<0y0qn6QZaYC zom{T&P@~Ih+e;B7vIf98baC*2%lxg72Vbvbp! z%$}~eS2tdJf@_Vv)?X-)dcc|NXB3c&Dc>g-$jmtDHU!5hGw1|BLjmgNgolG%zs|{M{}|Ih#q3f&tEjFGknzHQgy4MEMOs|Nz9Ie?W z5ah*6VRwU%;S=rl$@Qr{pA?=_2szUiY1nYfEpS6}5vQNfEV-&;MPgWAIKp%xI9%RU zm2w1WGmyv4b&!%rQj&Aa*-$f07)`IZzJf9Q=lKP#CCKpFhC#jg%f^RxKXLTpZttgG zz4Lkdo|(Htk1h`2NK*%{gd)x(GGeO1M8}rS)BJLpvCKi2Ajq*uiHwlC530!};@Ei3 zVM8tW^bGz}7Ql-nj+?*&(%;|v9~5B)k2vY3;vAr==0kHz^FLq#aEDt7DU~F+#7--}u)78)TowXGqWK38M(8h7eNDwk`=&HDz8z zWYs2HIsc-=_Eg)*^S7ed9%GJkoxYh9yJ)%oer!Y4iaJ9c#A#Mp$zq#4sCWpvAhS<6PPc%p(O((~xdFfr38m%o{|9KAbK67dQ=~>U+3zB~$95 ztGh@oN}vQ241xnrPhiLSgcH?V|Dz?u;EOtcrqew?r-IrU(gTJVeNSh$)}ADSW?@P! zhe^tWz9NmzD?mbKW|#H}=ck2`gsvZWG&S8rg>#(fmtmz8Tb>mUZnPLUOjV}+jyv5e zESsM{6dXL5Wz|$ajvckNyKSr0Q9=yR0F8s};Gbf$(9+eL}K6u#E-(ra(soJjC1jcKu zLs=Zrxi$c)B_Sr@I*91~v+T7$}3_v|bUke)Nng~v=@G|gr_ zjUG(1HOwbGZ}!4r`EV^x4(%Io-%UJt0DM=zqEo?lWrtzEiR4MszGk9=x(L&Z^9jLctB?gpmLw z%2?X(9^68K4o2oRXBlZ-(a$Eo>eseQi<2b!kvrBYHG;5auS}0X0_SZngq;)GgbFIy zLw1@JbskU7Tym&9mn$I&GXmBQoyzq?p`(E~us2!AD9;5G)Q?mCIcbKTzTDLyQx*4* z1-_!wjGL`Z(sCpCvzihRp1^C$zvp?~`^$>CtVI{Zq5z4Nj>uL+t;f~!YgGhDhm+Co z7-IPNC|$tF>R>Biy}xZgh-dn{;f~0dB2=K4I^6tvRg}@WU*FK=`RI%c(~`>ADDkvDg3D3l31( z^z$p@XEPDV7)OXNtGN`g2{i}v`2&n*;32%CD8|bWd>&c#)Gv3?h(?$ZI?bx1Z4VqC z^?G#%5X73Cl1~$V(?lbQJx%8moWm>Pmh&(bbcuDNs0(dr4ZK7-vwR9N;K}|gM(ENi zD$hs*ac~}u^Ean@@loawNpYyP{?PWSH1!BFPAH#nDsG_Onzi1q|6-Xb_zhI-4j|WI zbNxVm^MvAqM~g(NmHd1(!hz2;j8pGu&cl+PuG z{-x%;&D-GaYBTNMrpbi2y7>@K1PJ;&u~S)^#B_T0)6Bm4nSu4pwgc(yHB3jDb*5+) zmOLSjm`iK^s<`}O1~SmBq2oL+#q_(+P(m0dKn#|2=jmFKXm~jP2)?^2+6c?UE%EzO zZn~B3k5tggCzy4LZC`n6kwbu~oG_GwM?8_fL7#KNbZlhlC z;6;nv3ec!-+Y#A|8~`hwZ|ZmsuIw*6oJb#76v|DwJs=(}{W}0D7!9?u z=BGeAvui&ceS1js0*;*cl^c|YG5#o7od`|Ddkx41*0Uhs+aP_%4dUtZaZUx;NOjG$ zbkCo6iL1Ndyu%NiW@;opfKJCRqNwPyk3LGjs>m%*6X0Z!lmjc;As?v&I#7}^KUkVd zMEOJ9Od!gRE+Mg#^3h zF=I}l7m}Z_Zs7X{cB|@azcsT^te z&fB1kT@K$0j~Xs{a}c|2AT*er-F7Xf_%6>4L8@8swa6SD?46&|k#O2bGMvnGO6c?u zKJ35n*qFE2ndzA2rlxtVZApr3A+$=0!w`1AUkUHk_^Ambr5A@$&}b{d4_6&~Mr(0} z-;UBW zz5L@OTe+sPBQQsIC%0&~i@W=iQZeAT-C z{BwE%g<>MQRR#0&{MOEokB;5wad%hX9AY~x6O01p`&l8>hRITb^VJ_|kr1@4&$=s)aXUd*ULqz6Tj1^`!q*Z4{pUq|mEtrt@*}#~ zUFxoHUix2J%9JSJbn<|$Ow)BL(*N{u6?JQ=+a%ZdQnxPvof6rC<+x8bF z_`(jaSilo8C-t> zZgrR9!wAY4Cu!5jeT@(loT1HnJKGCr35S8w&z7o*fGEO&Kx9%*(BjU8zn%y@@=Sr2smMkUt(^r=JY|4ZU~ zS@OT-DiaE+n|1IB_c_(ebME(&ZEJ#F>d?fImEC}+hu1rrOcYBZw1tp~d#7<&vZQ?l zuy<|PeF@4>w<>wLbMz{ah@De8$Ms&4-vi)f_oBN29$@+>?xsB~vrXkGSzw&ii0Zb)s-+5Gr zI>q1J+~v}JfZ}Esr+qW{w>lIA3pzS*#=+cXByhDEn0=ftJJ3mc;kQL>=>~)F#IS-c zpO^hkNjbx3R)mm42Ry_VNGuF)WBIeR+Pg;)oYn!iZ?&~Z3@;Aycyl2)OL+{A6U zWKXVf+EkwdS=e^2$#TlSq~)|i-K0kkRAj;of{ZYb%wk095QgF9_)TH<0Y}8*Fm?*> z$~v6L67*fBDV_TqzX}n0%07Y=Lsy8`j)>!1V^9KBv${ix(eAFc^Z=_&I+OlM1j5GM z%1!3l7l0y77(~FnC4CuiTaKt$DM$heUTzJ%y1!oeXzNt+A)Ey=x@M0=fP;$8%n)_p zRo0}G4@%LD+}+b6!7Qt&OnM;Yp;k^+(T6!VeFdJrwqkCsM9=h(=HA_**Lc)~3d@0t ze$6(ou*RibPu`yHUN!_sv=9{)JS#OLSQ@lBVw?^gg4(XHdrcA09l^&DaPM4^RLpYU zR7?4HaEo~Yo)#b>d$NEKtuWBf0L8c`DJ*t9P*2xv07-r}3uPVC0ZvcE!ldDZUn{&i z1Rq{Ep(~6&sYA3#kT7k4ej2spR3F%zuSkcVy1^h^HkdERgY=MWv*{Hqx!8GooA(ZW zN><$MV(Uzs(&++J=hG{Wzg1M?47+-kDIle#dO1!ur*2CSC{frj@&|6SPa9$R!q+xg zk&m$?zx8fmYZ5I7ig3Y3CfVYyDx)o`=}JLo>_|M3$B&&})SYR}5eNSviU6Shtb1K{ zcC_oP#Ma<>oc+qdBzPKMATJ{jLFYR3<#ml=u##~I==!hsc|~|1S>-4kCA7?ay8~3S zvb;)2W_=PrE9iba?rd!a01E~F&v-Hu5i=F|cD?;?c=KpmFnLxaamx4H=f~Z-h00|L z%KN2P->XbW>P+Qj_yri%1tQI0$6wa7GyU)jG5@h%Y(Ua-=;1Dz43o2D8zLd&_`wZy zq?w*e&4vQVM)jfYath9;Lh(Q@hdYKt$N55@lK2$9F;O6Ze1Lu~)bapQ?*f8}drG)R z*r)%vTYne|_{_)MTpOes;^TOz(^DC3CUS;YePGXiK6?sm|IZs;OOwXD`TGR~?2fJG z8*5u!C_FWhyKskKwdYjYfRB6u@}U94;gsnnN1(1ksK zNC0n2M(es&T|YDDAf{}|!YvdpW=Z_!1Cyp785mUT`t+nOnim6&DF6=otLVOMt<8GZ zUy4mshc_z-zCx!it_`S}Pl1t0x71Cl1Y^H-#L{%NpwYu&3l)pPB_*pDZIpE^k8GAN3~1}@ff>@24Edm@ zDy^=Sq@%YDd#BlMnqE0)u&}J0p<){@`%M}Yd{>yNgsz?}W61yEIZe-g5u3DS9x)g$ ziN7EQbw<+8{Rr>mmIA_KeGc{v%hctoj+GBw650@3&S%9}2Ve|?Dg|8)(-I_gDRu`;&_kUzNK^@2K76ba)K z%=EQ*pT#me?K-hH^ga25%2bs$Z#u&(Rmxt)DRLry;}OPx%P(2&Nnz3z#x5(?2qgla z_dpUQ%LyTp`F5H&t62p+UV3(#MtaZ8yWrxH;-WkVa)Jp zN>}6Q{Y5AGocJ5J8n$O#)3YIu4`Tmuo2jfN`8I8=odqLIy!nRazTJLop{9kWlIcgKhyscsz(u z3Z=g~VUHO-+a&~{KIoHFYtf8fF9NNVl*kKB`S!3wNt|IVWalqCewX71@#g}{ehiAq z=ldOE2`@%bEBUJ)5~Kw61g7Ax1}>n3%>|aBo?+UYU<+s>vDPY+TV8(91>&>_afSSv zs^iivUr!Q6yo{b-0@Ew0(D&?tEhhpqlW0C`1?;6^DwoGKPrjK0LQ+GN3|M!jT#fEz zkzmYy_nVltTwGwOO8BMqi^YLK?aAkmAi8UpUR1DvXtWgp3>7lS6sWBbrhAMb^yd32 z!QMd$Kp>t2J3gziW=1NY`ortzf}_JKRwHJzoz$cpJpr<@P_FapdNqKAbSla(R12RX zO?U;fM73h-i!=Mt*9S$_v?py&$>xj7VfTO*!OO4Y<;K)98zH4tKNVP;@BAMV$(gxq zLZci}%X@sK48|9(g{0E5>gqhfvW@#;>01XIP*!F7gnq&y6Ot?d^669daaLzH`&RLv z4VzIG0>m!=Gag&!g7L12psKGkw=!Yq^Z0}hjF7>XkhLs4IJ0pj-Z1oC29I_?YR~@r zD--y0y!$iz9V2d(0|h+1*R4JE0SN}dYJ^(yV7N3;!TtrL%AcCoaB?e~$6*Z2wBISieq= z0R1Fa2*ceq@sCso|MEhD?n^aYjGdmlDutk_q!|Fn&RlY4fdiodITSwshAt)DYz3?P zLI61J(uxdbIsg6zW(2&fMRus-gPKCG;WfWut!nYBn)n{h=TF{Hw@bZ}A=g)JujzqLb>A0|J9HTRVM`j`A>Wow^1rIcS+~ zG0t2F*Z9#*|)*E7?Wz!C5yg$MeXx?Bvph zRzw>&-6sPuLkyAj$YH^Z&vc7-nTrKn?{BFY74gCQcGlQ3y;PGP~@oBJZy8z0sJy8B^S@EiM3 z{;UD@qtVIT`n!@3>6xvAfafESNo%Hjv@F35a8O)~>47bjY6^@^GZltwKQ2`^-*Y>& zrTS?n_l8O1obtZlpi*f4k_Fd$IIYN}vf$bt%s`qnre|hxwf$hM=3qPfXtDOMQ5ASd z)v7)qQ}k#*(I`QM#g{|!6ZeP*N51lz#j2*&0ax;EEAxvdB@112pqj5hsPtN3gf$CgQq>S0&duviiOpdFvf0PAh3z1k**jgV;!MAGD(} zpDAK4{Ey;JK2^7MQFQZpgG}kjE^Lq&^e8>CN1Hy2Ys^-F!vB+IaAjG%>5E)yT>5OK zmjreo1YPMZT}o^H(dfU~K^yE`5qKb<0L-F}>=&;n(?M_?w7#4g{RNWNg{FoUvVTW+ zsQl5YgjXQWgwY5iP7R4LIUQ#g{O=#MlY@0YZNtNYJ@SFoSXEFYtgW5xPe?HY`_;nS ziXR(@`4LpB&?4Kzld+Cw7E_jPxhmND96T)XGKguVG@p%tGWh=kbwG;0>APhJG(JrP zQjGL}V=ZPTK95tPx*bWoZOz&iu4mXmtlK_QAv5~T4z3a^{hQslcxjho=H##U0VodqcO+{n^Rjtq&!oPY+QD<*S--`%DELO6 zIjGGljnM#tUbi>9p*5R*p=8ZAF$4TlQIFw&tvD6q+EL%@oObyiSGY)tg9g9wh!Yvy zeexIxerUkBG}t+dVkQNfaeI|7H?ALW_rBS-b)3U;#6WUc_8b9i9vr7e9w8zGUs!Hd z<@3#|)w`C#;xQ#suPwMOliAjop0lie*9BDMOE!Si3%l&Dq;73 z9cLd_#TyXKahdJI{3BSR(QeBnPvPhRBp8`Kl2rOv7+ecUnahS(i zS5Hyan(gbXcQe)2kZV2!eXV)Z>^~!aVHOIS@aIXtM0ELO(1Pd+H6?$}0MYoU`~q?} z`)ZJOq+F_IY(v%1;Bycrbt9;shAwQrZMvat02Y5iJlp(4%*kB0&Lk;Zo%~}L(iTDC zujkO#>zLh58ll)nUd*zaX@lTbNY$%&nF3iurl(QwNY-dtD99;4`H(^-l>tes>R)QK~;&B))a(gE@JAg zIfcBlur>E!>c;cD@};xyTH!A@6)1;`pho=mZ+}m|smHs76MlLQP^ywCLl65aey9xk zWrZ>&Uf5I094WoKJoz8^@BaXl2{g=?FSP?50y8m}PPGF?f6bEHHWI$iQ}B`sRT&`! z2#}y}PHK~NYIm#FnXMdVeBemXh_OVHDQU*ps&)BbTLgi|hwlEq zZtz2r5t?N9$Ns(AUw!|!Odf`-EP1&4a7FdQ#QwF~CqLX=Ei;mf?T$z_? zQnIAvJh|Clf2BXXUflc+v%ol-6OmUEM%=97KP90sG|E^!vA!wRoAAl!zi(=7k>gxi!z- zj^Jlw1QCLwA-CzT$HSpl!=Q#_+^VGQ`hC4iR@=ILe^5!cN!CrTR%6#cC68OxCcWBs z3(84Vl|}loX&?N624>jw-Cj>KjP>gMbux5|cQ?OWQI_2N!|r_C)??DOyQeTNX@&&Q zXb#6+J*qWXd^_0^YzHTR?R;l;Lo@qKkkXzQ)hEPT_nbGsc2#2|GkXwKtQSAtbuDWA8B8DEfo!X3u zy8d@FjLER=7EGj%ZF2vlu?)zt%-I7+FvQ!4T(}@bQB`)_^$=|+%d^a(FxI`c`c81fBp)uQ@{47dVkodR|XnJ-9d3u`Z2~q z4&7m$e3wlzsGCf4FxIL+kG9-#J~z9>X`ZNc`ImavL5!I(%d zny5Wnt-5wiX7LFY>G-rje*S+sH2fs0XF01Y#BR=|I}+_XV22KZVGPIB z3TSI{++8R2bV`~Pr1T8x942xUI2g*@fr53pwhksesD1+ksMbk6B#&x`bHj4lkJWhW zTO_RUIG_R9EVgM?lCrwE5uj#Ha-TynX$s>@W@aGI1vqL(MU~dOK_$%w)=rw%e_)!S zB!EMfkcgvTujA8?++x?PlkPA!U5lowR>!64)%sd*CXl)(V6{JtPsYtES{NNtlHBE^ z>$(l`1RI5{ZJ%`QQXeV&T7)ox?U{i71R)Q(!7RBnA;)u)Rn$XaSuvPnatR*tL9LoU z(P{{|so_?kY!($dbs^Kb*$reyf00H!SU*e;ebbJcnSYf&0&l11nUg$X$j={76D0Ge z(9ax9zw6@Z-AR&{(ZuL)^*A%ig!0rb|Ng|V+Y}ZD@tI`+!NYM6&zh$&oQ+i=#%60vK?<2wU%oalnk*d>kS46?Yu9xTe;#@q563Y% zwrgdM7btV=yPc(rIpUzAOU_PkE5QC46|e~vkelGTkg|E zD1@mcEgNa8`sie|-5G57UO_GynuivWirv4S7owGLAFp-a)c3pjju|qDs4lvhAeHcs z`x@p(7$IxiE95xs?_pU7f4g=8mJ7nlphS$pI;Am=YCXLHbiSS7FG0Gz;I@STwtaYyR#>zmBSD5;8IY?c?UBsd8RLp=s(n+R7m`Wcv~YOoGqvLG72)5nd_TCvqy zg~BVOXv>$4qZ7LuS!l#gwiBKE(hag^hp?B_hP|FtKzT~1aR{R-;n|A3F~Th~!zd+r z;c`jZ1}X!Dc}c1Ff1_NNs_A;&=rB9u&XKjCDs#>~51&i<42tnAnx5(DP1SxD@438y zB}DPu3KI6{(g?<24<+_E*vz`yX=eaAP*mKdqDM=OkYdpKDK+AuMsgGQbU?da&DhSA z+37d;I&SARe`?%hroJQ?;q&1og7hQ6V=L#eU7~y=;L`zpfAt=?djK7{Jqaj~F*d*V zy&4Ws7{QjT^FY)f3`wK=umXb~A^gu7YEfC=yOOw7O>>b*)Hwbnv3>nF(1Gav!H=7OEuoOcsGTietr_27@dRNN7<7OnO^XIRwt*a_-&BWgwROEOX-Ep?r7>k`Ft~Y4 zI?q)Mf9(sJ$IcE}1_`9zfrMCqZpt!N*{y>5V`zLOpv*fe?0i090AcvN0yD#QG+&rq z&>U(QD#I=$FU>luBY+OG;t3kXuw=6-^fN=57@98kRT4cZsxS3+z~4P{ee?|pBXC?o zd>^ZxJol<6*NqfS)g*bN1Btyp9 zqRW7kE6@9vg&8s@;JvLUZ$phFavzPZ-y+3n#{~&w!H}k94kA2@v`3Ds#-D>mo z+F0nyAT@GfvPTVEsZ^UhG$%%gQogVSG|NoWVjwoA8;Q)yB5Pd7JK=_K3OSLAO+De^hY{_n3+F5gk(ZrEHti&KoKWT>~Kt>=d># z*4+`Rz2w8O8`ZU~2@$4TD-Rypt0tT!Ffx~cyN8IS>emccQ+&8qL5t3r}6 zuG#~0gFBdrzqWZJW4e(rb#;_LheO{%a;hvZFO#AYnE6py`np{aNrw)37fDEOdTpKmL+QD;Bu?BIQfuL0iOe@=S*;U4nz zKC}pIoSvUryfo?Qoz%&sXJ(t}dI=H3K(9LS{dG}_+X0ikt($oZjmC|_ca{N2CbCFR z!~S&)yk4&{jfWnzCDE}vxI8;+tn0pY-;Lm;Lwqm3uityIYVYePH!7xp!qI{K7+u%p zQQto!md*UamKJcgJicNme{CgzU3Fa+TDkbBI}in_d;=zQ?7RMbe6O!B1%!FJx+0<0j|T0AVunTw>a5#a%^{ye@|Y#XerG5SVNS= zElFOxeM^gK)XnN2yqz*!X<9&0d;|iR>DvmlX(s$-Yh?|GtUkskNWFp%n~Qr^IfKek z_@0%m^OkwkNZzZuh2Mu)v!rJ81H^tRo{Tu~jOZPncq+YM*-=mlSwL5fy zfS;u#U->f>%v2^8f8Wltfw$(224WOsJ$p9w;>^;2R}$d4OTYB%5~M{z&wgS8J1(>Z zZtLMolX)(_bonlc3}I4} zB0sU*LE~Kar*u_|%Sf||8|0GLF)PP>Y(*|XnZ6n;^(Px^+%$wwF{<~e?%Qd;}X_gXjzt-$*7 zdX8uX%$Hx@5~OoLt_)P3S&ipuJZABgyTFTcLxy62Pu<(~%BFX;zMO*6$RAv(W0$$k znXv2QM-0htrhfrGAw3;C12KNX_hlM{nU<1}7DC{iNI%bzH(+LddFK-mxXgJ;O1z!o z`0+!Cf}j8OpX3L;_kkc=EGfv&DrKm;f5ER?A&8jJ=fmCYPFirB@NYL)|As&R1uyGh zR+o^&0~`Z3GcuR2!vjTs%a+^55#7&M^b$O0*g-cQ4a6(UugE8{9BXp2nDGK6n?uAP zKm(v=Cg0#+(LbiD-vCHym*kv&>|J;lwqv4zma+%@^~6waA`sle73#G;EX(FX0zL>^~V%6 zPg3)sYu8d~AZX5i%F_J$To0pcN3yGXxgERyh3J!HBaiqyoH(51w*EuzZb{dZ@gRe> z+e6hpN-}o%yOO_5X~qh&X53rIZa`YKhErvmRDdC!4W71M>XfoP=K8^Xbng49fcsTR z%OXp%sH&TRu717y5j z=jpp((6orHsee@(=QPipzTht%IzRU{2#waNHbd8(M@dfAcxbDmB;8&;*c#2Alvj#` za$yd}Z8Eh@*Z)?xk6w9Pn(3$8n>?juoLOn;U1-5Ha}N%|(I*rOJhAQCv8vmFw4G9d z=Nv-C`;D@Hf@|Ns95-E4Z%I?PzYV0`TTgqN6&YnhSd+~y2BMVAs>KSX)jExJ*Q($; zpH58;66x5Q?#$wt#=_>$$Bvv1Du7Z*FJ=NHdKv1iPP@RzIn4yK1~8}jDD@{~3C-ig zE*#`&(wEQR15R`qwmCaPm(+$z-Hde$W>r`Kis@v3<`6G&X{`z#&J(4-Y^zNpca*%{ zt@V;hgGA&WWIt4ab68Op7XF%gr=^8(P17krEyIzT69CFoAUJdZ z-8{DR(j8V%n*r5skpUnfe-+-ye$dcfuzVJQ5J|a1?O*TR!C|)0)F1S*(kHRl%aOsZ zMo6^tm7^eea)-aKI%+pRDuc9jk9V@EkJrwB;*_&5QmdYy1v`{Ev(;jhD**U77D@Cx zs?u=Dm}yvgUUO>uDGl$VcDuq~Sei$Ns$ap&>feJCKrBpL=4JL-0UWCSG(SJ50;t0O z?flav{e?aL)UQ%=dZuUJuQ9tjbzJ(ofGn^$Ss!J09&KdJ4ol+KpL70%cF}%+ zmd}EU!l$g}04b=J3kxbX$=!a_EVro_7$#&q5v5e^TF@*mh43{Q(--0DT`Li!B?1;= zC)xMiQ6VNkZo8{`C_wG$JSxKGp8WwxyOYDVuTOxbGYL6hD033dRR(K`Aje$It`wqU zzzJHG36CDniZqU$3V}5*AkJb3wihaYTS`SHikTnWu?ZaO3R?{H1hl_5Xnjkt&??3H z0Z9}FeVmp+nXvwXY(xFnf{?oGt5t?7dOw#OoXKW>;mFNrk;_8Pcssg?5)gPLOTCPx zmJxj+p|b9bV64oPU`81IY#|OHSDvTW!(=LjE@x!|1grExl4{fQ)LqfXHZc-7}ZOzOD7LXXa5v7E{S{T9#tBwAL^bUspvnfz^i4+1+W~f>VrI0 zeFY)6^hr}KeZmt6^tlZ(rPg(i(6^!VjCnq=_r5B@Jw6K$Qde*2xS)0i2Fz0J!m5{K z57i{o)#OR`;7b%18kf@5EL?AYI4#;@nvN<9At~Wk`~h+W6&f@d>*Wz>7g|XDNbo#o zAlKzNmb13U+GM)MbihNI?iri294NWdNteR!BJmA|SpywhUv0r{gP~QJoTZ}1pg6ZL zL~p-;KTA&Nl3DB`0i{QxiLM<09dz%bQL2UCOd1HL?Q|Y2;Tw?f^=F`ehx)$<*)$qG z7{Fp)20e+$673o|Xdrt4H>qN+;AQlDs@efb+(V>6ZiD!=F+gNvo+a458=z%0)*C|b z6VK^Eu`Eq&0PbXO+#s@P34sWV?Ia-jcNaEaHu{{%5v2Zmv(2ci^|&K$|{)Kn5L%^C2j|Xw8z$H5LyKx>l+)Cdo7@X%DMos7#Xc;B4Ii zK-;jf*#osV&%Kj?7O5pR7$D52xRWseIqsT@M6bU`CseDo@@JMt?F-TDMTwC>cM3ew z!K}#iJ2+UV8gi7CN~FCRP_)v~q31C$kIGJjD_p2z6Pus9Jy%$NQS>B%3-rH*k9Vrp z3{s{vweCq}UR11MU-jf@&Xq*oL3e#Nveuip~4yfB*y@i}Kja$|C z5FsD5JyTH8rb*R**Vy>Z=@GV;@j}LgX4!(ah6Qj40I*CP0AgM%OOI8L`9`Xd#B_G% zI)N%7JTbr#3bJ1}s+U=DHYjrPP@fG4caTnI3Hh& zZZ8Sl=eoUVla~Y$dS^+S&&+N=+Z32%>?duPHU;X)JQFc<4#g~Ff2`YTltB%~WWOaq zL%?{Z5=)g|h&506bfGq&2Mw}nX3`}00H*W$?fwDuXq6jp%l<8co+wME7H_Y+ss4;44nsU4rhkwgD<;{noU_QfjIzm zR}>=pMQSq;MFzrg(F4F0bUJEGT=Kk#s&fOq5CFA*S}%9CLIs6xWyW|^;TUuzCos0^ zT#%4 zNvSEG9`HhC*jwi0sH+EQ0pjx4O`*cc3^2xjMEC;@nG0Hx5U8Zy^V zX)mC3=yoARU|2Xr%|SLRR%)yVNIrC}YDS5wDmAJH*szzLZ<(VPRTeVOQu|kH3oIga zqqd2XSaVh6o6u5MYgVKcwqHQ&qGdTwpz?7aLyOTMG|NF@{Nfk_j6?AF(ij48WY(pB z0BF}^h^P%q=mOk`?HMehF*Y0oK&uun)cAaCL6a*kSbH8)`u&S>W#S1sn>-7y_PEfQ zVWQ5?*v!?&ckjMe*R$=mJL4EcU1?pb@gk>*>oH$vVVogm+#!?gfN%&3y!$+=(g>|f z^sS5PKzl9L+Gti5faf9Wk2QtSVw-w@tN9BCDHcbZVc?C?pj)oyMfFj;PCeXKfaF(n z<ZKF=numsPXIcmI8>N=ha`0f#vdlT$IAb zLLTdEQ$8Ebr9H&?=q}~m42c&Ez&`!#3@JuJrZQOdYm<4Z+7g=Nyzn=Jd2ZT9oyl_( zD3p7M)F4uoVen1#yp{Ue4N}R?GQI-VqmXcpde9FPc`*I@*w11H@2@A#njI7ayoSB> z!)k%3X`$bBdoOM~re)b)cL0oky6cYX-Ojf)L`F47Hw5uukb3C`B|tS!T{f`Xj2m0u zYN$I^9Yr}lR=ud3b49n)`EB7*6&%uGl0$k|b)#mHX5z_BTXgGM-EqXBq#E04#%90- z+J>}9f=2o(?R}{ytk=a4Hytqo&SYNcN{Z&irygyC!MM{lMT~7B-0J;*=en&qhXw?^ z9!tKr%gomtZ``bH*GZl35ZdPcLk`>O6vVq8SmO*)eS(uw=9;SMHySKUm_I48N$dxE zN}YD7cM6xm>>Iqp??=-v1CWD(OE%*?VY3v+(c4zNQ*X~rr3VMbIUrf-F92?*`xFLv9pMZV%ms(MHI{7nhBUW-b83%f`tJA`L<5n@`n2L6f}r!jhjB!gWt6_iZss zLsaHM5jI6J=y&VpjPsoR1+HwYr+Vay_%E~0M?(&vTxZxr`TG!m12`KsrU{Juu(G93 z;X9&xy=Z6k=RloPE+6lYLNZCG}B_sukJa*2k(rO*dwy z&ogX&X4#{PR0TnW?R^LFL{43=>WCT2+WR1Tfnhg3bx?gxl-?b{GXAR)1yXYF22Oj4 zql3xKL;}1!an;vn!jS8A=0AwQU;#GJ3$C4-hFM32lb18ad)@;Cr%iqcL@cQ5%1X# zW|I@2eztlN5^_Gkyu==kqs| z(ZyQ;NUY$SSby`&=U@VER7Bx_cW};idX|@D;RxFD(WiQlj*q%@ zg2XQT&4hdo)CrQ%RFjF39#s!*W)J`l=4)DFVp5F{{Ke%~%AKVwYheA9fq8}+s>-s!HQNO#p`6vAOAN>|P;$?1Rb98cL zVQmVRQ`7?z128o>muS=jMSt6Jxn9DP5Y>kj{W;C7N;xS-#>^S(mHyZ& z%ovF2-f-2_tEBCA`+q4}5B)azanmHLW?T;KZt92lU{(-$>fDl)GRy3_L}^P!MLY+)-{cg8uo7F`!-8adm?V4mz z3XMrUj_qC7tdgl$A3i7_$$|)(yA#^_cGFnvR``w_!buk99e+3J)#abRI?|WczN@jAPPtt3|(Fpr2a&*RtPtQ!{`KOngzP1H5w4AW81bIy5fS zz?#+&kt-p9WPi@A@FggT0!%Gt}H=X8`8F4F89NDk-z~UW7}!dTYvF#UMZ_*&kC1r+7+gY(kvH} z(1JOyX`y{0pCV$Y?>+yS-9r>P>_>--#S@!o1Jsx$_bw%%?dy;r<1~ z=W?Hfr$PXYHGe@)iPiOH4na9Yl+X3g^_w+*&ParCm_SIQ-as%0t`tWYE{X=oZk zzSBTROTsA)vs&d8;=x^OU8gI9z!G6%uL)w01+mv1D8Re|C$Lk}%HbM<=e8ccKd&G) zn2;%irOlY%8@vRt&nSnq+3Ydz*ZAYHF%jx(0)Ie!@!X3ml6gaI>n8yIDYd~uTT;#o_8IjP|ipqQ!&x{mc4 zMSoEFOgLOr9>SD>3Sth%%+nO4S&`)WzKIf35K)vqF(aix!kk-Nm$|`Kqdq7&4efFo zt^WZwWmZ_&98vAITQwFeb-02`5LxDhpOiR8#yDnI9!SCZr7!ivP(O{o_a?Q{1fWW)v+7@d92VJjmz*2c`FJzke|F zrUXP19U)x2FF2_py;&TWY5A~VYgCbQ}pB&dN{juQf4 zz1etPp)wqw+zl--u$3wS49Z4cQETObF$eSD+Gfz9S3t@@Tss@Es!)$v&m&3#LheUR zUu{sUmEkWtlDw6sh=9`HbC@sKWuB%2>xT#9U7%Dup`xvs92Ol&>Um24hxbY zgQy@nVBK$YbfF+$0Ws^(e+>-0@O2nuLtX?Xe$*8wCIDcdGWWFqkN`j)TYqMCoB~`- z0R`X)oc1tZOshf_Q|mCpOj+qP!nkV!9vHNA90&|QEnlHEJS`u&_V~m}&Kzdnqvfal z&;=AeOH8++*>T9-Y0i9(KTD1c%t96B0nRcJgnHb1DCemG?;A34eOp{*)kVEQ*H`1+ih!0TK~>lr)uJUPyi8Mp1`(mSHB zc^uTeEDs28W^n$U#s;qp;=?%gyQG=HKFxqJJ39601ndLW>?fpTb$_?AVH~j6lInyT zcg?c>QKkMNe+8I!K8|!Magbtz9d*!70UiXkY6;~)BYL4efl>wCT5f|dCGUO40o$^w ztRtgBb)rG*@{9l&WBsl2YJ;2BX_6TT4F89Nr&64m%;ohC>Rxns_paf zG+nD=KUqGoY5*;_IP97aUS4o411M&>_^DdbpcfN5ylxvP-+%h;v9balQvR-TNMGmf zHgtE+oe@s^TUJ7ruk-gY9AnT(IfE*Z9*_IIV6XFgvf2*{Xy)8WFjCRX5r;oszQvYW z7I~3=`$Z&F4t{2CVu+TzIP{ruvIbEBRHEQMzfG9^j{yL1NZjjBCw4BYAh98&V?QU_ z|0m~-fc+K!iGQhz2OSKL1juF1d93wpNTP5miV8o^8Ewa4y3V3-b$LOF)~0(%dMmMU zy_NC%&=gpKUB^lchXHbtIS!M)KNYoLNY1LC5w(yTZiPTHY5H^UtcnWY(__18g4%hJ z+@8})9|la@glOEM7m)W3d7q1N1a53|5|IE|TlknhGc~+P z#~w{lLbl{QT{d>kCV3PG*pE6_e>`7?RW%PL04n4!pfsD>h@Xm}HrlY(1Vm+yVuPpn z2RNg8iGNu7p=ztKT0ljb);4`1xoNVQfFeQz z-E*cJ%ztB50Ylym@Ls?`B(|o~TV+Qhml`qTZcc^o)WzaZTK!cOI#m%aqu$5ds3Kez z6+dpOl1RT}xk(SEcg6>%%PI^NY)4}wC~i0bbT&e=sfq+pyG?@zRr`b=mvuKKGP#AH zE0J;bBA8Q?bM9LF1IpF)-2!(zNqY)1C^RngwSQ=N95RG+(rn3~Uf%7u&Co7!*MOo^ zXvTzP063GelQ1EIkxVZANJdXpP6Ch$c5F@@^vq%l$5gKgtwZ3MBZmYcQn?951Ug8d zxnuBlY3U4%so)FrG0-Wr#-~AtyqQBoK>!`xeoPp1bx%ovO(lVH>!v1KW9qU3ViQgs zgMYlV14r9H9zZWr=-f@ht}d^?z4|aW1xNq-@l(k)DWvMGb<|MHul8w>T?ac z-G9IBcGLdh)7y8KU;g=8bB%Zp#UM4TM}J?l&Wab@G$&RhJ^uJ?X8;H9g2oOvQpa9) zeCMU6tvC|OgiP-ukN`tvZuXlJvy=*Vgg{Mmzn=P82K~*e?Fom9pJ315{GZ#?^3MeY zjwAwW{(aW{$Y2UD^Fo*R=^pp$X8x#Cx79&`Zmji zPJh$cm#KmzptW!y^JMRgXvzfd3o>}P3y2aeyl(n%y-XUKZQbIH5EBGBe(r`Dg6W5K zIWqI;-Ow+aaa4^yPB_$678UmT{*cI_19jU!!AumZ4f)z|bc`1~tllKMdVnm3^GB7* zc%;3TbYTbU_DqWw;BwtE7=I9BnY*MBjEv^Dt@=4219>qY{E|jEp4p@3-*C^fpY*&E z@liow^2->Vy%ahOBSg07`Hc@L4*qxGs1CM(*sg;Zy?2qJF`{(CRVdJQ9Xo}`7Gid+ z+R3c@&8BzI`iL&yHZ_LJ_`7HguwYpM&UP+}_v$>e5s{aAba#met$%?JS6I@2Ue1si zLdMU*&8&ZEf(||dJW*q7yj2z55`lckE1Q=OCTV3^9@&frrcfJoTj6v+X_})?I{+P< zwGeY^(*{|Jf$O`<$}cdCCDk1Tn&AZ!OaN?9^>_7w2Dt!#M!(UI#IWB~gED2$+j{x^-O%qL5&zZSLLu93n-%hH zU2~ub%GDH~aWIK+IX47I!-a!9e6L;y)Y#+e+it;Nv{NprAfy9^Y(^7YLQhgghTIJ; z*zyS>XuDI}&n$zw(5gnVS-U;fx`A+sCOr5VKS+Vz`&|U9Du10>Sfd`HLZB_c0o^q8 z8@-Ohz+AMC@F?78y7?Cta)Z^f zjN1jm{4(ewaDRr@46R9?$*0>*m)6Z|Z z;(FLcGj;bc{`%$RS6?MxT)p}F>o-@?iC`Phed36-qYyF6%K}O^_l0-uoNl0JoYVJRaE{u|0C{L4Z7zMEQmzdW8~VCUxIbvEh__w`SYdV&{R5<=k%JAH(*8yW}L+Z0q#T%|u6 z_J6QKFMmiWY_)IW9XehJa5gxqqf1)=hxprN@cE5m^TUH%EHtaxW&sEwWTfX=k3mMx z??x3;=hv_rz1Fp%s+nYF^g-Q)k@RU9o>e%uogUr8aHQ1qrLhUhLFXIRD1JD!RCZmE z{_0neZ7K*ZddjdAdKQNb|M^cmSmiR4t`SxVpnr)1UI+ZNYz4x)i6x=(z_-Cvrz5 z)PJ0L)+mFG3mm?`bfq4S5vEO4!*HN1n78hdk00!nb8>kYpy^;om5~c801lh9zfja) zzch5id}gGt13)Wg-okLfFNs#NIN{Ahj?0WbD& z&t)m(ziHv4QUvx<3nMtnh5I=*^cczpT7N(x_Z;PVhcu zM>d?dGk~!_N4YiK(_Xym`oXS0e1+7L9gYMpxO7NOtK!P1LJVmeJ7GSC;t74a>0~_Q z`R}XYa^FQU0O^rAc)Yy2G7P(n@2H^$nM3f4_M8da>!fSFrm<-!i^9kL#o;U)N`GbM z;rMm4Y;Pn@)gdH-5PAJetN(}>ty^VA&ipI`O;CoH*=n_V8Qu0C7+4iv^AxnS(?0iR z?2CZcGafWYs$!@SpABB~7+xUskBtqE7ZkVF?9PUurguQt1@~ER?mxc!26)|vKPH#| zxHK2;&2wH#t|RK*x7Y8#`H)x!)y0xgKP0ORPA2$dwY{(}a}o;@2LV~_FT6LuELPt@e+r!AJ`MdeffK6@{1a0S zNA54YFCV^o{Of|eSEZ_Cf#-ReP~qE?%p7{F_j_4xYVw;bTYIQCKyWx6+S6whIyL4^ z-{&-p$kLDSk)SLPM$5-7ktEamgKoFJ1{=51FaHbAU1_C;%k4EYU z>VQUx=zK#5eB(e~leNmrTkE9|;AKpfTo}k{fd1mC+fr9*b4f~FDx$Zf*(v93J$Ehu zn1ALQiVlrv^l?M(^JWKrc4AM^bT}GCJVv{p?6P+iU(_9MzdpLd78n}>o%Xw}SXugr&BV>F1n zjPVk7oGQ8MWWCGv{;gIoc*-dN}F%6URDFnc#j+tl__GQ=C zRI`%}>2k}aZ>bxylhdjK`b&~N=xG?(oc|7)f4+c{plKRMUU?)o!Qnk&lQY2dc35q< zJs1%UIOEY^n9U+671EYXUOZWg#w3V64OtI~rCSK4&+Zlc;l%O zfi*kUYbh#*47P3(Y3Or zc&HSJR+D_jMEg;;?$1F0&B}WCn=bPP%-ZV>NLq$ivMlsI>9r}AN*4r3p$mb9f15|Z zp)SBEs!JV=EYSy(miSjWi5TP(M$BN41FcmON^hD{DA-T?+7GN?owMi6)V454O4l+`1UE81UA-Z1uRgD? zP2NHe^+Pw#T>Uzu)ezz9d(c|Xe`XL<8lcXlt7Z242^*p#ffQ$N@uFB zVH~U4(l(7+9b_eK-&l$uqHz?AV2RW5i{!S_?ZKo_1d~|L2zbz<|L>hbscV_t;aNz! zZzeZ7uDmq)XdCCD%1s@RA}`gLYjfL2dmNTdmrGRj@H7;*EOJ|B?I|(af5St*m*?_5 z3WZJ5Yb7@WW3Cqhb5jIf+mMYmbvNTV4sAs|r)!(a+#3^vn5I#{=iSv5$X*_C4s2_n ziAIxbr?NYYnnAG6s{CMT#Ez74M8hDM@nL-gU>}I8DqYoBvy55ML-)qYJ6mKCv}tFW z|73+l37b^d9CsnaXw>x{f34y5Nvf(XqdXad&tGV%sWOL0NsNOX9`RL>H#U@B$eEWFWBAXY%=si8upX1 zoRI>farbDBWD?;(cR_T&1A9f$>UpkiOK zO@P4&Iyi&#s1b3G95(P2)=6I+6MkkPu;qlFeHw(P<$l?Y7baIuURfZeP80!gRc@1X z)7faB@Dtj1i^s=Oe|N}D1F#gpmtpS~z-L?AVK!00NYQUmT{Xy})@J9#NnFHc=d>2i zVuU>!S9pkstL7%a97!3OTT@h;`UXHY6E@am08ZBsnZQW^7Ia1>4gYbe9{2pPgS zkw(K^MrQ_efAA3{#ng{oDV7^mO@>^Uc#<%7)_nN*Wwn48(lkuHtLp_U=4m1#?>~Lf znU{c@na}+xb`BL#=f|ASp_%Rjb{q{;h;uv}Xl9#2x7*<~duE17alRTZbY3>ZaNx@* z99YMUPQW{!QhIwzIsN5h6h>~}0T#8?nuyd;D>6Q8f8qId)CAleg_Q^+ydzOT`#^dh z-+#Wke)sO`?|3epE0d=mnLa|x1uiTCo54u zh((i@^2K=duSJRp8^KmrNNqe%n@+ zDx2cy*0&#A>A;4XZ_jk4XZWyw9e!aDF590@1JBjnydrov-eK2Y z<{s-jlf}zN(tn(QVB9=AlljpIghPH%TbZ93%CJYfum2!U_G-p{)k41GD{+Xo$w_}& zq;5-S&9*EFDljWtZnuQ*{pR4#nA>Mr~c%nq@9w!VRFA~m}Ww1 ze>C2VqfjP181C(6B=IY}<^NQryQ`i{{65C~56x5#ZM46Ob(YR{Uu8u^6=EWd%5Ozc{+VO66@lW{qKO;}q`IlVs0~`Z2HZYfa z@&iqOm@XDA)wNm9aCifXMdPfIWRWIm>=Xr(qM#+pW>*rmB;`xdN7z^KJN7$sB`L`X zieO={Ih;9jF5mgiIsBDHA!iZ&Ge76+lRtgT*iCm5v73`$Pq=!>%#Zn+onM`tMPZz< zt2tKY^yF%JqF?4L6D*UGU9C@o^B1$Le`6PatmAQ*#6^x3R}1`47IG}PKM5{he+l@P z8GBW2svA>p^onGVw5FD!$z53{Z_85Blr;mk^_$-cj zn5671PSv7q)71}piM^DJ^adh~3Qn?o4qo1to12RDw-vjtZp#@j!lKC1;I3|3)+}d# z|GfHna0ZVg#FIvh>$1BYA0T9yMqKFUpM(3`s?~chs^yGFVHC+CD0i!#HCrgCubT~9 z)XN#(D~d=2%c||zvTfG%k~;g0i#*Jegy9#Z>`>4zP~(U9mv8>Tx*n=5+Xd?zwl4em ztvb&A^-G`yt<1ZO%#=eGB=CjFf%89nT71Ks;t@zS{cL73dxNp zIN>fYF4&8=m+vRr=Ao3rspq;{H8YVwD@7jM>+6bwhdJl=x+09DOzpUYJxbPAP*Js+ zS9IT!Et>gmU2S??y6mCkzN}XryKU%L8Rk){e5ZiX($rk}e(Rko3nP&V>k~15EhnFF zN@3+v$;V|1(*SKilE2LRj*-d#pd{r{1VODwcFK!mEkO{xUfZ_yOudxmcxzSNR133w;K*jR4yns>4Pm=+K*ULy*id@fjxE7qsx-205Skd| z8UvhAd5SAyl{qW8tDNqNFh)GuNNBH{e{SMJaE#QS@O1(2CIUubHk58Gl}Nly_2C%j zp-dB{oKGE&W_R^j*FUZ*HrMdOR`sT0)uQg}%?+zJebp`%US%1fh;jWQRX!1v^D1Ol zx3#)~lwlMLe~fXPa@94;V_Yzk$51$$Q;dfTz*Hed2K*ct0Sa=DIHB{{uB#Rde{Qc| zgLU$;c`~?c7RA;C-Zr^YUAbUS6T65w6h{=xaWRoO%|7%k#5krH(LVWrwy(` z%i=JieTG>uArC056sP?_#c?chemiHf#iz#4Qi_{(OdP5%F9GFD_sIi#8jl zyM%Bh%coxb+p5w5v}t+-QFEp}0KihDnI}v-3(TtyczVjZ+iJC9%iU(~1CZXYHy~?u zPmpW)7ps(V1UYnK&rTwJ_FdgJ8=@YkjFQPzKL{t0S!lj|eew3~fBO$tmsUrGiJ-(1 zZGRhdkk?+qz2j)RIoNSz$4UZY2h*_;D(lTRf|&Lf2M7ATU2lLLPbRNE2=XB zTM_|iyD|Wa@XGz&WU9epH{D||Fbo_abr!ib_Z}}r{&KiMo0~GtAUKpmlG$9QaEaL6 zAeQ^`7e$^U5eL=A%3xI}1XM1)1~p{Fl8$mgHc@L5#ysMwQ)?j)tJV8nY?hEppiDAp z)ekkvcKVS{fBBFpEi(VI2CO&BedSSo>9g(uTQa@@WK{ZXU?@;((2(1zkI*E*q# zG#=D2ky(GhMMfJu$4Mp(%2APvhq^~mg5rX9U649y&uVnbA|4Wphas^L9#ez)PSr}y z#uZWf6-4Ys+KoCphiFneI4Bx|cO*5T2gPH%4Qb}i@|4IMHIh2aN`vw0X4|p_Ywf9# z(mEO*E*w)%15Ti{D})@Ojgw>Sj;GZy+9R(+xO}IRXX)~B9_Qn5 z+ccZA|5R;5h}iF*jjg*QvGswjY18%wMT6=obmU0}xkac^gwW^^&ER3-yPB;E{QZ~$ zf7eb2VRfXZi8$klPL?m0+8MdjohNcV75P;;zctj_7k;P@GRw`ndcE~6lJP+)pw>gS zBdp1|DM86n`V89)TqVk*$lZ0kH|pjjaSzS$r(;D(iJIS?KQE^ZCjrivyW0L+_UNh= z0DrG=K{OuP1#Tn}27J(ojdiA`&Lm2Qe_I4jJwK+G6gcSO@muwhQ)aR8MF*NzlaX`nrEY}6 zF7*z54-u}lY!KL1XYdg3&XK;4YRJ)l6uG!Z;;vA(GpZJ&EDvr}tG6SVD!Z-$f0iqf ztorKIp>0}f>UI4yz1869{BZOjPz_tY@+hVuzGK(a2Q%Of_L~){e<>eRDIKSgN}C$!kz8)Th~CI>uO>V6t$_XmW~=EXxn>b-Aee_pe8wL`@O`C z^gd|SK3yCO5+03$#L!UUf4Zt29V2NuSa|g0i&L#3T;?dZuBGS#j9Rg_G6^m|ew@UY z8toNc3~6z}H^X3sNyqHeO;EbsHR7h5RxM8dyRYcLDl z7XZ~@?7_n<_l>n8(JuJ7zHV0aoGOD~I<26w@8>!7w!g9Tb|VnwPSf!lk6?CTkzzjK z@2XuB`Dw184!!B~qs*TB4RvM*0rDU%dB}w@oc9+Je@LS;e2JE3`sw^6Meyft z%J_z!f%WNU1j&wH_k%79%HYU-8eqFL+uKciSr&py97oh1BNP&?cbi-Y83Kwb_rU@F?REcg04tL8>s1DRwG2%fHv1xa2U$W4G)6$~JjvFH24+{CHP zT=?A7?IkCGzI5+?4t}~gchm1ruOI7|$FoMy);u(N@u z9Cj20uGHO{%ld}&s%Lpb_U*SAh16Kk9ncSC&> z1Djz9O?iUmTK}3SK~;JM64>R!i*05}9ptVSc0}MkL{m;sHzByMJvLI#RN;yO%2J=l>} zp?iiIbs43D?&bAN6aWcC+2djmWkil$nCf9xriO!#Ln%tW+n|;!2RB1i*&i7oA@LU_& zOcg!*SEkDf`bN*bYUDkWa4LA_89Zso#9qDo#Lhtw8KQr7#wE{+K+weaXZpYyKzvms z8XOXPY?{-47gr~L!@vIl!%eW3Wo~41baG{3Z3<;>WN%_>3Nth}ATS_rVrmLBFgZC2 zWo~3|VrmLAHJ8z%0~4200t7dI-Mrh#L+lvN8tdI;EyEAmML^9^8agxNh~!9?AMyqM zmHo$@>N`1?HDW9bSz@!huBT2_^N~edu!#PdpUdsV=kId%FkD3J;o|W^sE5q_SZ>)@ zHy76tk5hKD#L9x6+}vO2mj%lu%aerNY%dmH{q6GRXY7J?BIapa7FcnAv%)Vq7g+Lq zvH0O1?-%0zCHuB+>%Q91dQlc!#(HI>7Jc1qw^h3u*!NYt*NdD0QebteSD!r49;4oj zbHUS$UB{U^fk#=UPFe2zzHUc0)FbQeS+^UTt{vF6dSQ1pyYKexiZv~5@%g*bDxIc0 zjqE9Z{zy+#z2n3-5zozk8h#UsnB|!?57ss7>v7+=Y#6I?Kd@$CPFF$e3;cvmX8m*J zHzI{1yV1+Q#(rP3eY>d#?9m#jv5izF%QK$J*b4pR_bIt3$|5ljHqFWyL7Oejc`PKm z#(&N;kg;x;FwI!^^@>l8Ll(Xk886g!!@9X2^#W@aDR^8sAKmJIhaxghV;;wmvu!(l z)q4B`{W;^Zpp{lMp2$LpcLSsDx}hN@stwy!eYLG2>cH;%ZaX_q#E1nc&z?tHmul<3 z2*x>QRZnhfvF(bD-BkY~=Q2u#4G#4Jw+@|Uk1P<+xmEU`p-&2{s}sJjcYQq|R&nUv z3mc(jyWd``tz`y(8Ic;s7K=N)FpJre%Oti^{b{PFkUTAD)T&l!6QCBkpj6Wy$SW2{T9Aq zDo4jPvb5`2{RntFFswj+N3on(Hr3lKkC~Xi@<&I!6w(^!er7u4O)iT3xaqFr5~!64 zpH)$2b3VF)1;cbA?<}Fjg8=~%$Go&L_G*4^i5NSX*>IV8fP>m@WDiq|$C6upp6b9! zGH_CR#hOun0q8L7b!w8|g_5l-$!GG93-{316|`60n|drQ3A@C^W0H!_afe-vP7fRq zq{CW=Xk28fVp&IsL>155#c^ySXOQ8XL#|Vi@VG1$9v&2#P!0BL-FK|Hzx;6X-2{tK zWz*zzk^wS=jc<{}Hcrl32yj=PKntaD6vfkG(}mf8LV|wDI$&S_+zd6?%lYDiN;WG# zsWSDn_>@O$&&S>4us1%O!8TGTE3FzIZk-?fRw$~OLx{!4?&v-NL6~e3L}j=Ol%bL{ zRVdDoa!w(Xnhz##3fk+sNO|I_!c7-KginWv&{)UT!^5UlrRC`orh+r_MYY-2192n3 z@Yu9}4+C3v?bvsl4Sq3P0iigo>&*uFwysndNn~tU*nE3xx?TgAItk~eA$bYuQGz;U z0U3g6!U%!<>4*cQb=^=DK-O;1`6Ba}1C@Qk#3*3&@}?P7&8#<_u}!8Nk$^yn#IjSc zGQIryirICE0rE0QO1n&$Wj)YFd$q_@!^fh3BDE^r`|K`Yh}3y;UC(e{!V^g`iIgBj zKxlm(wi;=pQyTAwdUd6Zz^Vz~D@qgrXW^54uh~?0aQQQ=Nq(Qo23Aox)jug)63Pbb zJ=iWyaI}>O{r^*v$-)%r?&gOI(3?Py|v2Rmc#EV`XyNYQT%DX4q}2 z7jmUKUgIW!Ea7EP0m{Tk-L9HtrOb>?pVzg@1jtVKUsuaD?P*Dq$SKv0NSQKk~(}ghpwra+W-M1Y+A~E@l5Eot*e$m6G^w2MzT+}~+}KBwB*wEsUmie z25zyL_v6HpCYGF~UIKu1*47k}Y*wp8Tz#pUJawdFiSrmPjK5qEcgKT&_;&HG9>%^| zjzdU^^4L+LgGh*c-~Kz;n#N9DyjS&aEr1Znd8GJ68Bvy#Rai~|`e^Bm(a1%=r}hfJ z>~!(f0}bFB&jP}Y-=ro1$QI4dW&|7jFSk9z0jR?Dxp0Zv&E7>QCVmb!he2v}Jg3pT zNY~P~oA4I2K5{fZt@58ICromxs0{JL)5xL4i39|IU8CO1rPY(sU~{!qOnPB zOr5C+S|a{qINm6|JM_@e_hld=nwK8Xs6+wRX*Y)BW93PR|Bl)`i zg&x(D9F#Fl-)z(W%ZVgZu&nMTM#GKoX|nZP_qsRN`~eJq)#Ay+-gH8UwJgi00~7+R zqcs7bWsAz(0=^2Xp#{mJ_2%qmttnInj1Uu&9kiti$P@HL~R)O5OOyb7IQu2RlgEgzIm zuJNh*Mz{Q`&gj1vX`)Dt4Q78JPSF!Z{2!lpN#2++0ZNW#bMr(Jz?F28NZY2R$#>s( zJrR9%sM)6E2z1ghJZwOTa+imIOb`8>iSn}+vi3Nsx-o)BT7;~I-t7% z9qv6HU#oyuOFGxhZd!;3jxyegs@cU}%iUkYkw%3|>g zitT`WKzvegzEB7v>+6}JN*Kyrl%1+v3pO1d0>lb$2J|X zrdQ%=$*$DJothl%D)9NCu6jM;+SNS`n&__M3@(vXe(vrLy2#+(I4RD0!{2WnafU>H zGPoPujWVUeGEKP%$y(i8)09nL=clp1wD)l)h`l)WL{nEC?%i%jBmmaw_bm;p7-?hu zrQIl!48~IYPhI>U5A_I*kFeKsK?6W&!E=9;9@79wcNG-xNPpG5gZm{8*%n$YvveK> zFF%KRfhIV;%DB*akq+t_T`NVf&m1yb3rpZW~}dlw=l=P9h(gTW2l!M zEMwM2Qmt)t&A(1_9G8orS<*8pG<4%wZ+D|<5xf29%=YBcqE@!Hkx2tS&jCv1`l#Tk zdxLa7+#bpQ+}dPqrt33tM`|Gu0+K^ z27he8xoP|)f}x8&&~$j9aW*1PeP3cy_+_9kD@H2EgS9#+g^9gJMZ3EF(N|p}65MSa z21P{QZn#e0gu{b1xsCBB#@^mEe=&9C(tge}h_Y>}Nu*f_Ek)xj!VlC=8U2-vw) zwJ@hj7yAxAoW3P?3zEiMqW=ni@_tX{S54_{a8*~;V{%gLF9A>81ZfIy2V2HoI?&5-BK-Q*n{R%Y*$biRSgtAF z?rkv{d42u%^^f1baqp`Y2?&M%2IHvvW$yjIT>&Y^1J@hEB_nyp@n~Ovy}OP&KKCC^ z7?cY0q$z#m6T3UXG;$w+1o?wBkL6r0P)~4NeW6;pk@7YD&BcS|!^De7*G@+S zERd;hm8>a1iS-kmY-oC{4X2-*iCGq})kkJ@7h>j_&q(HKcwv2gU9WU5cV^x_k!(1q zv^f~I2+0q)dNs!4Otn3K=N}YX-{T*zwtmvC`x3MdioUFs&o9^2MGY8c03bBL;E}j!4CFyvq>4wQm z>1h1z?Nq^%XVQI}LmQbv0E(RbS>CsAeq>(}&jbQq(&bfN zE+l=#@Ev`|iFQt=%A84R^DrxEw{LDP{)K=41IgP2ikF}f1RMi5IXRcV5d=kl+iv8z z5qu7mLj-HUYBZJlVlU-OaX@RZBgR+8+PId~{B+NJ{E<_Y8u0 z7}%mn*5#Z!Rr04GjzkdCKl}fBclF(GMesOW#lhp%rz>F|2KK-8F8JZ@>Nbv&EVx@^ zrJ^Ty+be!q1ceNWG!5={SK$wT@2~Ivi(RlzBvF=>3M=k5_@Rgdmb_erAOH3ciihjq zXWi<)YG}PERU{K$8Jk5vcDr5GZie9RReRt?{sK~9b;hgD9_WrSZzhR|vOKs=a&tmd z2y@6`sN2V2eA2Y&yWdJ{R*Hi}EbTt`_x#iuT}CP|OZRl$wVQgZyS8e7f;Hdy9j!0p zC{1EvR}ISpipV|q%W`iOl_D0oeTco5?};MHo!x)E@MaQ8Hn7{n!(-PEQSd`GJXtRa z`ELQk5#T(Qv-%2N*d7`@Zh_VC;ew_Pb3ZVfK`{fJwJP@+(SO_v+yN z#~(j@fM=SfA}cF_Lr{-Hu+mQztwkz{+yMrM z#U-6~A3ob$8K0^#=(fT0wa8#|nupq?Q-DMbUh45F==HGI>yZ|7gl_5Q`peol24)~@ ziz&fU$r%PW5`v9?{e3-P$CoGF24`?Bk}}HAqB>JDPQH$6L1({->O4}2%UNXSpsnHp zvXfkv=dhj2B+gvYr(ntjxPu2|o(44aEu&EZwcz8)T}t?X94K^p2mU3H5H$4m8u=E- zG7YyB0|csWft~)aAIXoEb3xG5!x))}$VA~D{zi(oCyt?iAg57T#?l6PFj1!0b=5bu z?m47(hdF-k$?rJwpgAe%a;@g=WD$NI{YC25Jf!;s)s}GHwZOUVcXbQc55Wd|AeX9k zG9|JY^B|h=VF8rJ7XZXLeE~s5`4t3tiaUW2vO5-K_6A<)$|A{7a#D{jhO$La8pU5j z5TyiCFH(hnr)Y_AtN#Z$TZ zJdjWb)BFsO7Ox(`hmivvB2+RVr^q?%8$GQ1dT&Ztw_P5Yl~EEG%2S8oV!;(g())AC zl%k|~stg~lt9h|OY4b@k11Iud73$l;Nx{z2#20XX4ul0KjzhYNiO?-dZB>K9nDH#K z+Pq6yHq}&rff)#q&0F*1@T8jt*|^sALT-pMjhxvmHY6xFKM@?^W}I9CA(rRPj+j;x zOW+iLh3|>>n7`7}^4oEl8Q`P#*3u3{q9Q4{;GH)}$L{bp>3jp1hznezl8am-lkAvF zKp^yg(maz4Y4}XKd6~=LB2HW#A~e_Sks3)573B}vcSHU8h_PUPnRv=ktlW3qM&ATu zuPZQD6%a=>I{0+xMv4f2v*`{iFpv4oCIF*UJB>gs65&>$*h#6p!}RBK(zDDMefz34 zWLKF}iPnfrp0NGe?w;{l7!PHX6|Txhcav9tpz(4CFWQ><#t`fdNatNOuAjgQ zs2_Tn#VMgwE%G>tQrhe|kK1-0ku>uRaoDYN&-Ir<7vn`alh2uzPe!*oE2&hBFIsaF zF7I6Rno@kIH@b)4+5OS=ZI+ec-BS&04(2UiY~oUJu>qGE#=yzH+C&H_%2?iaheslR zjCWV6obd&&r|kWF2@>Wk6{#}Ec{qI zjSSKC${F!?dss*(X*M+PTP&Jty}AX zqtNSpQ?2!m+7VlREw$ich;$naht)8D*5kpHn-`{R2vk?N`ppthNh(oPz5!4RFmZ`z z@FEbM-BWU&qbYMnJXf>r#4N*`lePqHV4{v)ot$$uiRnvyNfu?9Jnv~aZ_Z|(Mr{C1 z7`GK@EoI`{MLU3~`j$-JAt2SGrosiBlk0aVX@JVE+8Fgny<=t3L{)&*HT5EYsFRZs zrI3t=eRn{asQSKoMM@9#V{2ketcCsiYw#XeJPjWY=J#WFR7FIAy6qbLduWbzW8W$h zsA;nrOd^g7K@!jVvzy(Vc5+AJVfBYmT~U(E305Q)$^#rGEUu7XfvtcLrJr5Gpx}~P zYJDxG=@I3hr0I&7;=Y{{26AG58kW%f#-2BV!0moU?5?ZhM%`6i#9@0~!f{!Wg;m{v zl}Af4h8(C~7SsMV6wEqAI0EmMnP9>p9_$d`KloiJ0cp}&Lg+bq)(ia+7ozl)bmwr# zutNt^eBEjkjEq&(d81i0;cBL!2yC3k<@7q2s?YWKaD8KRn9p{oer;ucSl8`AClF|? z;49vgQ#Q@vq-j_YB}Hbo+#cGsAsIMkS?IEOHfRYypP3GY>jPnfLV_KtrZFr6L0nGn zz8r~rL0ZP)`aWDC!xeQ4D%3VEi*Zk0rllvoqn!lgeCD{=^^QxHK+B({sjpp0k#d66 z-a~{3oC@3$WTqN_oJpIY9kuk_pTcZJ zDYA1IbXFcAnM|Fb1d3B*Ng+sap+QH3lenCo6+^}X2;V(p#fQ~&;xQP88TDqAxWZG) z+*iW^+OlFTu%V%1A5g8}1~g71HEYxJoT+2mcROYZZF<1jc7{q`YQ$uvU9mzqT%v5I zz?dLllY!9;BUoO4AH}lT?{!68o((lgKtVlYHnn2XPJF7quAunALt9ACcCAe+a48Xm zpi*KeccrHbkyu0uD3P!@-DwmUH|OJHd>+Jwv@nB_GiRA&Of#!8bURL4(+kP+W^B57 zpGQfAZK`Rew75L2$vxyl${+8??}Mk#N>BjWh56-nA(f1O{!CL}2yUfG8ye9(ds0nZ z8=xHcMO4~3UJp)RHW^qqYrgEV_BGf{`K6+?@Joc72+sV&QMBT6N`Vs_Zvu_BmywzC zPRMu^j3RTBl4TcFBvMTWb9iizfdpDM{ltUCQM(jdr{z)cM$gl=%_}FW=^3yo>(o`X z{$ptHD{bkE>W+a zT<64(kDD1$ayqfLXx|t-xHc+{N5|o9~ z>^oTWfy;QV+)Qq&kS$UjIDP z83oOMJzSA_nWJ?29upGvk*6Rw`(S+C69XUjZBVj)>Pg8s?5%cOq@hh5m0g;J=QORn zI15i^a~PGmO5zMPM{~{ZDILwowLQtr&B2hH?OM{(q~nxA=;}E4GU^J7<9Q!Jda)tk zi}ZoMc}0ER@0(iBRQ4>(zcT#WbmL>wt={&3+}SpF(lTF53PQ}fIc#t-&*>|=UietI zrmHoWt%Cp9?=+kzB12=IyDi?;0E3~fu=Px6fS}6hpe5|l$UhlBnZq2|Ph250X!&F| ziO}mUnzpz7LBoQ@s0H_??$Qi*Pil!OA}M_3$?coZkVI477g6ly#eQ?L1VztRJ}bC? zQ4-KlQS)C@C)V;K*VnSw=(~=eFr4dw=pg&41I>^@8bZTk$}h+w)Bdx#ONAMEFLSZt z1_&XV1_S2H%hI)ZHvdXXj&&;JWGt+vX~60*yR@I7)y>EXkveQ6$Kvq4{ZwZBzI20- zksqNXZ+IPA*UOrC=JEx8thbM>DoSF1>GISnamlK4tu_oh8T}=NB%wBCBvshotER37 zJ)G~I3Q@2nJ~jCbGi$ZqBoQ&Q8wZ&`5v}NlRd?h;#b1(~M&-T9i-&pcX8zk0_Vm4O zY3(oR`yD@i|LceMAAkDjZf{m3ifF=lC|X)pL}~5^8Dt!T#}wCY?%x;iMCnqaOq-f853q zeRc6Grd+Nv)}@6pgBe`%6iTKfx@5&6sl13O*AP3)g|!Q;a1qI*@(22r{A0T3hRbqg zDtSxkf#U99rlC+8A-XaQ;Kz9|&>yj7%`!S|0WQ@ttDQSCbBf0XM%-E641USN)Tb3%%Yg?X7F095K(eOXe;YZ+Gvk;@KH@yIMzGWw zkx%$~Tn6CD*s&{=f!|IqUcH!lohJ}n;X(rFdwh3rbjIVSo$$BEPRJcB^T?!~Y!vDD zE7=*QTq%Uy4g3N?g&35L{Ycl2)>1PM6FShPys4+8!8H!8F`tg%bM9b~ha$~Av;uLQ zg=53QFI~n!e?}KNxmuzsd9zikKY1d7Tx+|s>v7?;S*o=r(P7C_7kxPRjYXnf*n$@p z-+MgA3<`h;$R~g636O&i`ob&}=HoaXuDrS%BF2G0au>0(+stS#9#!z*IxyeT$R}wQ zN0B?xUUj+yr(x`AC~&ePdvt@c+Nh@N4w-_-V1M*Pf4T({7)(B}2Q*1OXrYUkQgpKS0V57Ufi7VnGdQRjhj_RVi+~$^@P3uU z1^`Cy3wxEI+h~n?cE6XErk*7*W0(${+5-A!njXIQE{{BSTRcBPrh4_r!5{m&QwJWl z3s}fOds-caPM+=u^_x*w*}j|M#(w2L;8M#gd)2J#W(OF%gUl_fxoX9%cM0*` zKWBzzni{#I**!KZs7ZMe089YYvt|VnSw!Bte@&|Ia0l3xGOvf!{gFBh5Nv&Ij{(Oy zf53R!cB!h^)~yi*tGWlk5sfC`=cR}u=uN=`w!IuU7PaR}t+8T&+=>I)Zx7q90fNC= zmfPbjKts;Nlm~3ax8!b9V*j_GQ2={jL#RmrTT9F{V1OQDjSrZ_Gdh(eS(s$Q_9i#) ztwW$iXu)Ew*sF<)m-fLSxgK||^`6^Le_<_J2pibYOJy--k|j5r41SsF-E4y5rg%)| zs^31}R&W?d+9*mh+rdxZ&FCo1fWKs%{YHNGYusBvS@PY+XMI%)JT~w<__y7wqWpZ& zZfMP#=HqVT<@u|(f4MlD#aJN8dYNI0F!W`Rm>Gjkw4jZB*ql7x8iD)eY=}3Sqxh8q{i9H7HL}hKvO+ zv{dW>0PlmUT(FD<>rQWA7zA|gNK!d-xO{!~<_*!U0_wM%JGwZ%I6r;<=InA7D8N`W zv?*T_{@`%#>*;#nPZ5eF9m*lkY}}x`8+97chEGA1j`(wiA-w>)Gq~T8o)&6&o<*)K zOxeoNUW5%QKcKw{j{)i-nf{o^ki%qKlw~8UTh$&fxq{|XLemeRw6P2s33t!zH9D)7GQr1NUI(r6z=q~=+-PPz%zT9ysTs(R$cGr( zX{=4U6zAOb)5};7R)u%RFV@nTREM1sU)`V5LLz1H!}4{#xEV_ZF;I=#$myn_O1=C= zRmL4WCRQxW$M&%-Ae^4GG8m#SqX%bYUj7D`dD7@6}3+W5WcU2P&sEueD8&VgX5>1D1q5~@*a$hqj7Mpd2N^m}swp(%()kfmPb6l3pX z!riLgZl%^Pt@_wQeOFkxaRAuK51s|V(6RzHl|@na6#%rYXSk<1e-HgYVph5HNujzc zfz#mtD>FC_--q%e5<8egvlP&Gcc;`$L?sDGbwA%coylX+-)VBZ`%K~4#3AFkaTgcq zR52x5!@EtMjkGA#j64~JCnB};=oRVr5X%LNOvWw?+1g3AaaAVZn869AeZWp{fVX+( z^zy~|IVm<0@)@!Ue?$#B%sRvrG0MU;Wy9>Pt8W!x!DtF(raxk(wv)}V9?O!^L;+Z` znYuCsmWkaUDfr=sSsY@VrTXM?v?a&d%MIYX(kkkzvoma-0G`BPlqnDQopFbebvOhB zY1e8$<5b+ZC#GRKk~BQF^IoVeJE*T@RW_>V>ZY_$LR&xje+Z>4w6&B9H;Q&t3yHCY zFw~Z0!T13Q+(-!stS%FB);8s1)ct65LLSeCqY%|mo;<6^sN=rqp%NIGYp$GwzDv{T zaR2aX#%=Q!ag2?s{|(gXden7M^R+ zwWEGQL0y~m6yxX!`^wP;XBcSDXZDbCxfd;u4($WEa&HAkIRg$I#43dPM&V_UZs0Wh z*&qOJ%c%m0fb^%j9q1|*hwiDmaTaENG>=!az(aYy-`7poS7rBr5Np&D{Q~D3v8em^ z5)~wPf6pp+79m8$G-Wkt$Aie@$zdY#Ntb9&<3Kg#`r!+a;8FbaNN~^GUlobSzapFk z0$O=sejpUK9)f|_u)(uL*P~0DLFA2uYuP^e;jRVxzdGfczOQV`zPqike9yRgU};7 z(Yn%U>G(yD8)BA)jCnz5-=BH<8RpFEq0dUNL-!*);~P7GhF0ovm6JocnGY|p?lIdt z-07)m-)QRD)vNMzAq`q*vLn?ZARh?5ZadpeADuu#xb4jT2~ZVb>fdF3m7_C1wU|P6 zf2K4+#V5{p(93NO$J@E@BWPxDsRas3hTXnHbXti|@bX&t4D$pd^AoU^isAloHkwLE zGmL=Bli6WJ)yc9#gXLU4cT;NtA`f2TL+Z)X!A=)f~b%VFsC-@R1S2*1OoFeKRK zYlepq4Fh=N;=>`O=j+FsduVc!@kDOZ@9RoICH^D1G<7Fv4K}OP)8x}5-?9f3{6U@rWeEITaqCc|0=PaN< z=I?TU^ZnbDZM&O*ZErr_aP=WGf0cXoICI$?EP#f0?s1WN8$!)&9o& z@rQrK>Ni-yb6ohb$TK{#+TcH_&+*9PjrZ=S_a1-0V9#YO+hRx0^E~rIp`Q%YLrOaV~UGUV; zbDn$hQ`IkiS^Ye^X%w&}50!g<7%C56+_8U7_D@);J!Rc--St&}?5n0`#%#y>d&wTu z6_eagjBl{Pb7iF19VKh-=&`AzQS6HZaSgPa%Dv1Fc$%DZPjEj9a&z(KKrTFi4_z;d z4VgdIaJ8@Mt%_q9C4NLfFgH@3R6V|++@*`$%iWI2njTM6Ut|H-#zQ|=Pd`*`Q}2Ie z-TQ2HUv>0clKEL?qpxjhPgvE#RI%R44ST%TM!$c{1LJ!h`MLX^cWAom6Wcc%6Azbw z)K8P#UU9JK&+{ARejx1Cklr2`EBnd-h!akbdu`@HI_%`W0CXbr!3RnzZr4qnSjOfl zhXo-fSSWV8hQ1Q|nINlCfSlXdd5?d^qdPB*{K#ST)@#}gTgwHHy=_(3NECal`g@aQ zd$}}6+KjD#Og&3+U=TQSeZ$J)*h%EG=-K0f2kHcZDO_Z&+!vKPrMxdFJhJUrQ>){a zJP!TQ4f7;bS5%gERSlaBTxHd^Zdzm%peYFNvpB0lFbv-pS@bWn}#AzQC+rjykgxuAB{bE445PlFveD114xjIOMKm}4hE-uus!Tq3wuQ~V*pzcqhra8lj3&5kOsZhCf_m@xIDFq}jIrA^jmk?@}ME<^xX zlsK9prchaG!7hq8$XiE;V4Z@I?+P>Ig`Bzo%FnC^pDyIVTk4nsk_pIj8q@OFYy8pK z>!SR9+cwAA{iHm$ElQX0W%VRGj2G({_Iv>2F$_w;meD?y+d8 zQ`J{AQpQi~qhNpRbVr&Vk|lWDwf1$<-B0rx3SU^cN0xPwAaUirEPp3N-8C&E$Jjk` zxRw$vsVrsJA*n!IDF=4yt36s*KUM=v4mRd!tTt|sg`q>08Ip^E&0ALveJh}r%SR!- z^~j$^4iOn9nMZ$ROXu$4NU@dd*F`EwU#8x#gi7UaWn<{n5J!j0ENRd)h}n!Z$TL%* z_PQ-}-ghIf(E|e>IQ95lwFr^PJd3?15HC_m<;vgG4t=M-3c(KXX&bn;*tNiH6Ew z{WLuooEkfY7$~4q#0b%r3^n-%2!)8IntjNDBG8%*KOkZ=?xPACCDK&#l!iMg^I(+Z zvgqV?*Q|f9u&YSNd7T;y6I7E+%GproBf%F5&D8s%M?H7M5p{u@QNoguFMnc?k#$#{ z5tl(=ISs){thl@zVvqh7$0ujOCkl}Y*+I4l_MUKaK&zs&C&w&9N>Mz}s{C}GopnkM z1w4gq*E=lDjIbC&pgKx#slq21Jo0)=p&XOwo`a@X^Ux7to+w za3eD!nu~lW0YU_Q`SHF&Q=38teK;O;@Qy%2*^rqfa#1zHONy;bZN`m4)S#C_5CwPgPy=$J$5bn_DuCIeI z&E5oasJax&Ds?jmeXLPr;SOiOfy$phcJM)YV;GT*iLW4(v^@4CHfYY!PU-88(^A#R0UBI1$GBBHHlG=Sp6&6_Lk^& zL+!a>lruHJN4Zw`M# z+mP=x=)ofc=2P8Ai?YJJS&b7rY8L`*;`-?uRr1gjV%Ua_&U<=6m665`oxu6a?c&Nb zPSdE{$t~j`@K)ntYghrA6^NC|Us!#ZHPor2&g&G6Pe{{;)^tYa~&m0C;W7N@e7UHVjzZ{s+B2;rxMrarfU5a_=H0)r&~<{d;uvz$Fbt-;T2A(99&vktv|_HOm| z#naWZf3bHzJ^S~+XDe&_u)Wk;ns$RG~)`4FCQon$AfNjic?&FrnI)oAmhJbYnaX;qLzkcQ6JLkCXO)g0sAM1 zqpNJHu56~~bAULVzCSQC_tb@USoL!OP3Kl>sxd*?sQJ?10-+ePej>?3NY#N3Ay)7D z51IveoO`leH=VrFqv9Z(_o(R!5y|Dml8CZz(?5OPN6W#{5Pcjoip4-2a2@D>Y6o=- z(yeM>o`%o1r7ewFh79?p<3Odynij;I7HE0qeJZ8g=%sRf+^<2@DhVlV2{JJqf=Tx^ zot3hV#k6X*RV}`?@jGMI}I;! zG|>q^OlL`O+n@J~^;q0l&K7RdpVWj~&i-nt0zj~vA8V}v4 zsG>jgZXDIr%96Ip>h*+q0c95|A-%jEmT)??v@h(Ahr_Ni>sbteO8;Q`4aEGNrTA`>2?@5mT1|<0kM-GkFqWSgfHEaUawMJf$2319J_2jWn1-p|>BALhrjs>N8U^C3CTnC_y;rB^sz??LLmOA>IHjB| z4^Wo_pzR=|sBCV!8@k_rpo8eOu>JPC7tf!*ezlqbgl42=i>l;ty3S+oJ= zp<7M_=9%&Ph_a}4OEnuoASxQIBmy&Fo7~CGKTlDZa9X$I7qUdl?$}<$lnM@|CQdt5 zYKc?LmWRU|>5Gc3ZL5vcnII{9*R*CMuO02|EKYJVj_q%O;5x#8$){HKN7_R4MStwf zn^x0ymxAYD4i^V67)pjavebN1qpx?S?U=qhedAMD$h&D8n0M=zbK!C<7-?{mjNvV6AU*XFd%PYY6>$kI5U?`Is`?3ZExJh5&o`U!F=io z@NKxe+$D(?1(MWg6{K-$U(o`RKTtgCj_n|$f zc3z&DXO=%lF`-e6f6UKvfA#hIG}`o6akRPm`HHHCk@->XqiQ&Mi|#CW3}kJcE2y0bszn`XpVZ3Q-D!eE%fTy4ed7g^y~Mz(Ri7}DG@SSa;X*# zRX-TnOrMR$_HZdlGAFJ2?6%2>%;MNSICPU8m?Tu@d9!W_?9HJeHRwP-PDNDYuhGW-6Mbr<)aO|V@0an~ChVEE_6WR{^cei*@Uf_~sdEy16 zNHc{I|!?ubldobk`8pk9NR%ohGRhW2 z;(ru7Esw%~`6#nuJ|DWO@8R)`4VPS`M5fNxuUJt)e2gPFCz9qlGpop3A4>_LE|y~T z9-5-uM(qKjb^yCUcrmVps+@(D^h}PadboIV}=<2EmfAwWo-@{AAeQWGTjjJdT ziPeeg7e7_e(Vspi8OE?SOS7(A5awt##xWE1!|&ex_?Mg2&AT6!ff>mdrS7KQ($wuXb%{J{Tq0_i zC)yWJ7<>>V_jLmfKlWDQL%Z84=hIALqQq8zh*UxzRXUr1hU4$*et`Gu2BN3zszS+W zJMcg11sj&tQfXzxx#&yqA0TjDHDyJj)piUHA|^6-UakUkpcsI$1FhW1u`r=Qr?-&P z9QXHH7n5B{PEyMJ+ce0p{*RE16&Pk`!(S?8QVzAoypzD|`khA-y>nVIMp%3**Ji$d zGK4y6RQEch;+!xximJsC6ZUaiDb+E0;O{S=a5*DNksLx(Z*jY*+G_?@im6z1dlgVx z5r8aV*QgNG@t5($o{~($Z%Ls%LZVwt{OU{8pEJdu(Xc+Qx&ZLw0Pv4sqlXz4Fn`5m z3IrL%2&ERAZWnbQJzUdRRjCtGK$Iqbh~m~3cZ=V%7~5v!Ts3A=BaN=cy^7{f;BwF# zEMzd`jA9woAsVyG6ccKj&`BA|0$-3-n0EofZ)*o4Dr$!|8kdZWE2rA(UIor(!3JGd zuPdFYZMTP-9%PCFHb@{1APoAjoIA%L{E*oqFE1(ZbYgrNy5@Q8H$f!#S{E~a8$+k~ zy4~4KdMv^FXnUvnT!t91z%+^O+hIGSOcG;=($^Jw(GF0|=Gt8e{*N zrus~C0W~y^(`;O1P2FBX3`<>Bv2K8M*Q$fzfw8WbP_ui&f1@Rp{cL}KTMM*~M=M5Fa~1>aNstZ(C)C7hazbnYpv#r1>s$@F^FrIEvfTUF6y4J(aU2t{L}1Ds z8PAAt!sR*UnCj_AJi{D+RTCb2=BT>?&QeS_kFADJGUSuoGh#!DU*MBz3drglG{z+e zVL@}@r7;~RdYGXwBWCB_=Iw=W7ddEL3IR zP<-7tM3e$;Z6cFp>E&6wO9gdKROJU8c?nIf z@l~MG7v;wvg2774fKQquQ}|DDHbG>P%qIwrzh0lMcvWA@g)Cr7r^&zt_p=o{R7x;j zyl;daBHk__P>#EQ!9s@)p-d!`Y=KAPg~o^~Y5Y_|X9@Ua*w)?J<_pKksRP%IkC>%> zV$=fC#m#K2w-Y$c9t6NhF72Vr6e8$6aKPq^KDB;SW2xmpWAaUThDW@ z#~40f^c1h@fgg1cIL0pi`FKvCXDkrP8I^%EL}sG1tL%J#kprM&HHgi`O@x5oljufq zZ)n-1lpgpp4}4*Dj72hA9f61j$5-{yYQIxj`gsH z0;grxqnmK7%!8ggoGA~F>c|4nDRHBdwKx*SteTjE+jHrx z&*+TxMb2D**>qcsD|bS1ibnmaN##~Sk=RM*=b{{TPvZ!MBAQ6ozUx_sca8KjTYZd5 zAH~eCGT7ZCyjBSaQ@~T9sTXH;!hYVdjXA{}sOc#QL-@Ejc9=}OFFnYZm;oSPj#^IT zymndvR6&cOq@_j`qeC!|e`h(H#4Hi^Or~;+GnM;)vF@uk786a?{w*zg@?|?00N=QyN>w8u>dHSf3_S23f)09WTYTu*Erup7AR zGS&Zorv9-;>rucQiVn5G9G%{>!W?W9}tO5*$oAMk&;+dpzfs!I*PA>4t=|y#OxH%|z2Xkqh5Go)WK- zIqi^Dp9E?rOT=aNjDDTjbOGl%Nw}ZHpO`X#Q8v5CmP?TXaOJ7H2vWZM7j_N$o}t#0 zL!ZlXG=+I>O4Cj!+oKWEZQ#xefMCQq7AIZU2;2TN)(WuxvboWpXWqLFny$X>hG-Y? zow{r{U2)jfWw8Seu6_5-hwpA~G>?E^Pp?xllpV~w>V4IZH|Nr3G-H~W{{*52Jqsy+ z%j5pIQ!xad($~iQ69maVQlfzJbh=V)tKCjLeo%KzZ3$5f&%0w2J#_8fFCxa$kE+K7 z#8Nl>=6)YyJ|@6Qf+MIpr>P?ZxOjiQbaqGT*3luoQdu5_m6j((-S zPEa4AOg590q|lR2m4*s`qBKNoVmUch!4_{=x~dq%yGDZ)4&jO6=NU9W1$Adw9*5w5 z(L@j8QauKl7>BxJkl}>I>=bDF-m}yg3AojK1LXH^(cAki?>D@r;&WWs~%z&1Q*;%M4pg0*-_>9~=;+BhQ|jB1g#3jGu(jfOR#R)X;;?%U3HRcJl>Tay$Cb{aRrt~Eb9J84qJATRN=>BZ`*t|LI?EGtIx&dgZeP4LM zMn-2DcD6{8UiHk9<}%<}5ED$(Af1=)^Pu4VmXD%pH!%dHVC+a`Q>H(qFyCxNWpTtN z$)})d&$0U|oW=$ZngZJ`1NwCb2k9Wp53TyD(RA#m^NSnlBi(HQ(dcsohh=gbEb@0c6Ti;M>*JKj6>*0MZ{B8JF=#1RVh|mk&q;M1Q4Q z+iv4Xl707AaOYuKTG$*WnY`^R7O37WRM((;w%4V`Ea2(~TB2-DNu-(=yF8drs9*6v z?uooJCE0E)8kn9gk(rSZCr+G*Wc?OIAqyh`| z@W|uE;?obG7wq#g_)xcXU+w65Ru*BL$R{K5(0_LOebsJ;;HRpc1lxGW1JR+ehDp?|p>4)t0- zqtBnjVUa6CqA*j7HbYQ1<9*!+Re;ypY8SNCz796^x3=B{O&k2Xw-w_&WLavr!aL!; zw-*abXRAzX^&gi(=WZj8L+_>Xk@ZE9he?#^Q-q&fXJtjIe-Q60SHVv#wviy)hoI`~ zU|kJ0%pdA@XvRi`go%)pDS!MM#oE3^y!lWEmEA8xgd^t0xZMPBlRRb_lyu5C4`b`} zPai+boxt)iPjmI_p|8Jv4dCtWFg6{zOqj&dEX=bUhbRQ_!i<+1mH%B}Ew~aj7wQv-q#~ z-!IFsEE8TXe)(V=QGe>BU|jp*a=s06Aj?^)kHmlpg28$Jr?j&+{WbsdC_n3dj_k|d z=KkAy+aa~)3#3Ju8$*yrXIAK+d^p1$20(OT5kv%Gf7p44)+fn|FiZ1d?m^3e

C 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 I_KouU56rL%Bme*a delta 291317 zcmV({K+?aX;1l-f6Od7VLmt4aiNy>sxFk=qtaz2!l4H@SY*DT)hy*FDNr1*hvbIwB z0{=)J_>bwHD=?&F*H)@hE?X8cnCa;`efo3{Ka;?xB)~uF=VE*Ez{5sdNU!fi>hey4UVT->a$Re48)+bdb`c5WlP@XRWAn_0~m$TT#kNn zLA{K6lhI7to`LOt#?ky~6u}!YnTD}=<8m++_j#ra^4^}~=XTpH@S`9hQ_Ar1+`G-& zJF+LQFF%l%b>CEf#q@MN;eHS#A@lOGBG*3^o6Y3o?61!Hu9~>lJ2e`e`$(> zT-U4a0S0?{1D{N&^o>{d)iOtuUyzGx;eX3Pug7$p2K8oNZBdW0F zXGtjV1slk#@iZ*-1I{z$O?RHmk2K__;NBe=e!D4%@-*4x)w<8u1u3hpXm(8j|AGVZ zjuZ-kRAM)OpngpCOkWCvxXfp1mPYEqqVI}UPu`NI$d_c*)LY@xwu2AzW+^6SaSGn# z+5<9r%4*klq;BLpIUc`1-fW7S)gg4~v=EHUv@7yWTf@Er*( zf#0=hYO9e9H5zE102`T}?QgY>GU~I~EYnnDBj9O&n3`~gEz8G)S^dn0`n{%84*k@ce=~6oU>XI1A1B!W;77qrqd3#x z#rgR;d3SYv@lOdYwfYEJ?XFmqUl(%f8&AA)tpEvD2cb_7_DVUpihUp2=H4Q& za7(bEuWLY;-lDK;I@l&K%(7SsTIo04G5TQOS{@BNd?nc9`YCb?{3MRWE>FQ#$|)@{ z=%$!1?(!yIU{nh*5k~Q;_tVm@I_E2FvJuL71g7_d?(c*3cXp0q;@0 z-hHjPY;4D;A&rHhp|Q|UQZCkA`atnGh;iT0%5qr>_IKQq`9U1%sgEQ*m^F*kB)Btw zvBKOl#M_Dut?JFDo-pn`U?=S^(+`oUgLE1#|K^zkF@l zj#PCuRqy7FIJp#{kmzaG0`v|ehaozDOb>w-rV@=Y1DOyRCl90vKIeWCg=6eKH3S3;B5Ua=v~XA_ z9J(3=m7d`J`StAm#o6rq6;$2lZ{9dn0aQIKOuyf=DWE&Gw7YMgO4kUsXVP_GM1ea6 zdN|X$e16Quz%YRIsup=d6nl|j)H zvau|db;>8n(Xt*#RvVS!F@VwF8qg|Uxd%gr9iZ681tQ#~J_>2iTDgBEWdThOw2YeL zbTjN!(Uh6x<5V|)B|1z);7}+l`dg?vKKC_N7E*TzOe_kl`feYc%$Ej(n&J;*h^1&$ zHdsyR4*{}LlrD8OKJU8k^ns^-6r`ArTcM(q9tkKES++FvBQA2jCufn?iuMPBs_k!o zEr7M*uuY$&Yx1hy$THGYA&b6gQ2%V|MZPI83aYwu$^!;}GAq$LJv+#XG)YZXY#b+H zwUB5UF?H^MXTXUzYxq*UCLnvWbX)`r_+y!kMf5?u$1xV5D%{hz5$@U#xC=i5fhgA^T$S2a-Q`yW1Dk-00~A+9aOws&CJFVed4Y>;X|%W4mQ zbY__XQ`haRVJNVX;r>mDzv8TM>U z8hWOvK1?zpR>HcG=!xV)UW%B9Gf225@DCSnCK=W{8Rqs&#krs)Qf6h++11;(rqK(&yYC4d^G~rYEYC&e*+>y1DI) z?ynq3$H1k`BvqrT?{riMe1m5#37DNNy-C0P%n;_4%twB9m}|$ zY6lwe;_xA+QqD$a8;Yj&xZwpfWi#%mer72*um=0&Mld}r%XYWPA7zP_OZkvMZs$%z zT=Wb(3BYasi2T|Vx*4X#&6qVIZJX4-e?m`xpB|K-+=SJ^TNKQSnSoXsOK4$*n{Q;q z6o4f_iopl`3LDHp2()C?H!$Rg$P$ni>bBZ4fCQ5|=opN1BtW-`*mi zR%F{l&Kq>N6#yl&03l(V*y%#0fKU&AYNT#^Y-8dW1nSo9GABR zL}qck&#otzB?2hldR>*j9q1eBiZ>^-KhD9E%i?xIu~QRKuV1eLu;bc#*zAuIC4^5K z5Tk4C88@nfe>(xl1woX_Nif_1m&z2SfsHi7_NHl#J*CZXIf+~$(#UY@9g+ey@?nWKSKThI}kNNRz-#CuxSfu6Ln zcudyKm98@-KQ_CLmi(wS2GqZQ?6Uz7xl1^QF3?dVTp}*by7`2C3-{dg~`{Hs)T}6%Zi+GgroC@`gjczpD?Je{h~R z9$r6Ub|bZ@4{s(&{zT^L!zw00f4V30e?OL|&f}n45P*md2j)Z2?+(m=R_=WzWet#Y zkDX=RVa6DD)SPTXo3B)SDN&^^P#UcI&E|0uE2tmhe9*esmsQ#A!S{}6j(}Qiv1gv! zD{S@Ld^cpjS63OZ;sVDzw<;kYUJ#iHwF3fi56qZ7y)PpD2iPMt)gsU2^+kb1YU^ff zS~>P-ko}Y7snsCRBXeheg43qzyAy4PO)xFlwZC^o(~9mDI;+e#m*Hoch?$VX^3{p@B$bcM;x1HR;!6GPvJL_vh9+TP)8v;2ollKioe{$T$ z5q;-Z;2~AUrbq~b!Qk>J+bmltTXw{C;wmzg0(U_z;$2`3U`5dn`2zon{xPTL4(u+) zxRO$pL=l6Tp1zzu-Hl&^IATFefAqhr-NmbSdGLO?h=cbRzg{r;Fwp<3cEOj+i>o-| zB3Q1lvY;o+hYR&G3-Tn$(==G_e=fo=UoV#b!Y)|HcqDjPV8wEc|Kt(FlE;hi=G(iF z-7SJ|>bCByEv;u|5hYx$jOC)Qy4|j7*F*4q)gII$D?q}qTBy}$4>ZTn(^v0GE%8+v z=aI;QE1tt7FzK0A?TdlK$)mi8nO^c~J3Y0C(jtz{&e2S67ROOsLar<-wB&79ubZ)H-=CHK>n>=!F*po$ zFmCGLo3}sdyRbqT(rjO(QO@E-pWWB?Rz;NSUsmgF)7I0Y5-5X}rMYu+-&g$;t{wDs zwGLLwgaN%b1dp4#l~N3we|ozOnjvV~5%yn=M!`%OH%X(^sPRMX={NE8J68`cS(Il^ zJ-1Rn`+mXls4Q6-cE4}y#XpvRIjJb9mgUmzw8o_TbpvsGCG*oT*1N06W{sc6svi&g zfHssuu-Jq{QAR>&E#8K&>T&f7BBW_l79u?*LYhZ$#{ zc6{mZx4gdWry03=KKj{VnyNZ)a6h*{cJY3Fp6%isk7Dj%v<+fXtFiV1qQ1H=?NtBhv z6kP<5j7MH}F34lrf75vC?7S?BlY(*YJSn{sTnaQjhQr?sm_%PH^=nyJ8u84W^|W>} zs1^E@`e6Z~;yCAFb=Z!VT0>sc7j_f6{w#))D39~PSWk-gNHJIe{NQ_tT{4%7pJr5n zV<1Ti!$g$l7Lhs=O)6;2?|-Sy&2sgCtY)HVUHMmY9v2SUe;eruVhqn1v*@BwSqEnh z97ucsCs@_7eisgPZ34EGc7p7g0gl`7&D+1pD9MW={NbzDixU18a~>|={P1?>Z+J5; zN*fXP^_F5nY5(zV5zUkjK**vrFXzYrU?}LNB3vD#f=XCXk`zanKzLS9@G2KkVPZb~ zcn+^thf!hhe={LDM-ylyNoS$cFOWy$I6EPC8KpKZnunJ_EijWOtejwNrmlU2w@c?C zX;kpsytQehk6dx25T2A4QAu;RVYio;g9P~d{wY|?Sdn289Lp$gWZfF!pXD#~YVo{J zv#4|!HB3`S7IE*M^XM!+Y?!5-glCZ`rYU*f4b8`Mf9V(*s^E&;Y^wIX@`w9+BL&R~ zxUK8uMIsk|Xpj@Shv~_jQ*@N)5e0rzCN>QLIC^!~+8|YuDid_@M&*9%=3$ZOJoNw< z4IcV#Ctv#UhnqJ)Q_^eKRlg=qBdx>$YaI8o8I*G+@~#?J8)aGZ&RsZj?IHoL>dS^w zXTh#pf6vGTl1^qQNdlKs+att-n;DvbhNRrYAW5RMd~Kl#=Lr`9YEyvoL)Y&VR^TVNxI}CUak&2+p$NN+{5(Jr zzl|+Gb?p=`y2H3Xj5^gaqMmTEkDxxoVYRA<;o-2|J}ol+z_)Ky3e9CvAbQ>!zJB-3 zPv2j^UEZ9-W>*2cc?c>=EAeuk8zPkzxr+PqU4RoH{_Z;SF-lyT{eHPpIwQQRTC{cq$4u}1I+tlkz zsrBFcVN@7Z=9(yJb|;mPQ;IW=3?-nW)6A?DbN>_L%YR#>}s<9dm14Rg_dWK`_f0;Jiwi-sd z*_9$zNk-1-6RWh;#Og?S3Eb7j`8nO)O69E)913PveX}2<#g#zeTe6%0ukD;_$w_L% z#MLn@D`X zmr%|H9^0BAF!x*?`kpXqf8F$8NL~M=;yf3M=ApRCEt|XaGj~=33aw3rvU`h*HBwRX z2zX$3XxG~FTp2UeRlh>buIRQtxv4#5%D{Vd>rHW2z>7=6KYGnf6uP-p`tsYOKr6u8 zru9~+GPAR>^?Z{U`GmsBvRg8xT$SB$h%8G^mE9hVcs(QYliL3_f1LJqlwRgtuap|O zdcCX->)>(I4JsQ2t4&3 z;;`=~pk8oG$Xea#L*P6ji63X+Jaea=Y$8*@m(wI1=~5Z#C-K=ydsO_cY<1nuE(DSVZ*H$NJE&AcgvHzvoV)PQZoy{e?JSNUDxaYq z+>&vJ{*<=%^{V;3Uf(Tb7BDg#>6Jk(sd0}ZYIKzXm;GqmS+7I6T! zaV(7Q{&>S??-#DWN)id5cR-Oxd_V}h*`Gem_DZQUZ6s~l)%LKiXZ;rrnr#c<*^$_TnUPUE|mB|Yd zkjeIyvOI1L>89xI4HlGB4x{2Ylr8H>*Cc?9?}&4%e#r9Ax3aW;=(f7-1%p#(6Y+cB zSNjb)GzkEHzEOC`1Vd&sx_g`}HW#cEGsRkkP3gB|f4TL?2{973w!PKl4P4BhoeY%t z!GT$s$(qZI0R&g%o#u3txd$yh9(?4f5n!Vm<;sKtOu?IpC>$d40j1tA5~}CGIDieS zs-^Dkz2-bTgKBI@O4>SO?n&aC`D9g++2^v}ko0%o^&=5r1w{0UP_+mhXz^mwXhnfw zJ78h6e}xq_J0o%x%gW4Nuv94cagPvHWDm-q`hZF_>i_^W+wcM-f^ zGFv}k*WUQSY(oPRq5#-!?Po~BFfNI3I zf0?C@zn9r;t|N09oU4*V;xxQ6KvL$8$;>f>J0^=_%X8f^5;jlgKN<`ab^vjXe5IzF zf3A}t_`7O!z&4~i*OfQ5og|;<>Qp4%!Zy|a+d8#AHQq_`D7Ef;c2>+mO4BLsB4rh> zb9mXPl%@OECCb(`HdlWbJvqzN7Bu^UQ??}0+-)k za$Aw=DDjMXPp5IjUY0YjZd0`&YK86>e=4QsV_aTKneA}?&GZhd59xtBY0HjO@U6a}yAzAEF=vQmAGLE~)~**+f;N#W?fZW)jv zx?Ur<-37ssIlP|TrnJ6;5I7eMP&I1CKM)Jb9a5z7!s~G4Wv;TbX-LXyMY>VFe;^nt z1yfEaWoZT}SarXxRr8l-yopU=%cF_{-jrsRjrbpipsGCONeD2Jna`0RUglRAyXuKr zori%4`q4)%hPtbE|5d_qOq|cgqD{ML?iQT{bklJPn+-Jx>?Fw7f%cPJO20 zWqx(s5-;fk0^`>8M-4tY@p?rGAX2#T>A^e2QjqNk3AN|W8@D{C5u@ved}h88Ki~dL z{iehJB(20zafF;c%%SS`2Zf&7=N`)467~Q`C`iHw{UaF1SbO|i_^_z5e}wY-0$Cw< ze2S?LYEJsGuZ>(X7n@j0{nC^#n>-2+AZ_HYuK{ z%_6)4f{PP;AoVH`eUjq?e@p%CN1DlLr`svh{c4Gm8tY^)1)!-2!W^L!`VuAc5&D@A zbY#uQoKQYGlT>rM$Yi#$d+V_^Ps5dien&lg=4ivqYiQ)cO=aTA*`TZ2t#0fT5l6F^|L8y&w0L(F%TC-N~$NY`t8{v)L4yskhjI5awWdv^>?e}73FGyJu?q=*v_ zM?U}MlJBpfK@bAQ=PNQAvWsUvgP{R;X56HR-2hFe=<`)eN%M$g+7vpW&+U^c<9RH5 z`gz2-{eTy7H!cK^skRQ`%?>nWS!={Tw6h-3r5vxTSyl{I$K3^V@Kw9L;?{ws&oURt z2|lAw7H!Y0>KkH7Myj4piOGP3r-jEvzIppoKvS?Fjnc&x;~A*82orGZ;B7a}_X#e; znE0GhcK3B3uuL*eIJvN$q=bHTy}bA<{`?21Sj|V5@zenm3m`BcZ(?c+G%ztTlk*)y ze_HL1+%}f|@2B7n7FiY0t%#z&7!L+;60g&X#Ln8iGYhnXg}O@Jt#y@DkyP$@)-zAw zSMfXUx%`%@y5qnk4kxx9Izf6Q5#f3h;m*yZj?^zF0N<^N(9jN>BCg{&~*a)bYr zF~^YmC()Z9-bVcGioIyMW~jF`p35pug&vuxLErVeUEOU)_EX&*^dM(I$}u|EqaR$* zE@OU~mfCd5Bw2o*C1so!>|7K_v!pO3k#3g%dH(XR^rhdnsN%B7?8f4Rlf_q2f7`L? zu3=5L5;B%m#-sP`(09A0o6cCX;u${7v*@?I+E+V`?ENauqk4O2SbKvHSiRpj^)S*j zLvzM3jvdBk)YGnhx%`hOsm$U+_?6AlYR+a8OjxU5so$K7ERTy6o8_r@a98gd*59z2 zecCo`>eQtjBX~id1Y&g zxwtjuDuOp}`t7#I&+x0XjPBd+maTQfv3vO5c-tG3@;J@D#0i^k^e$6wf3|rpc!Aa7 z{7MbNNnf$g9sAS2e)~)Z*PqxgPwB8a7KficWjC!2-g(+l(Aw#)4>QNu;GZUEV-+Vw z!i!+@6eWnAT4#3wyYiKUhPT0FmRP+#O;aIF1L7 z8`}CBLD-J0>n95N4F%+ge_UAK;iv|c00>ixSrujH9NEMx@@f%lM_k;@!w(iFWoe`9 zRP<%3`8tUuFI7^&g0>5t&dWF}O1sbZy$#X1x8JFVz>K`qUkKqhx4HLTLmrCKx}%-$ z)W&F6bK7$yxwONyzB{CkDoYT>}z=!!oDJnZ^e`pCzdbVqK?OLrp zPW3Py_DrQ8ml~now{SV4;;tR1erVVA79j)MlO&T-GmLHDjrd+I6Xv_{IkI#&K(+FI ztViX?j3A(Nu!Q=MYdBkP`?1-6AQ0R4kp zApA2=(x_{__XQ5E%I&7R3Ds^rwKJ4UWn8+Fg`CnJ0Nk;ykD3hUYRgU3-5ms7ENGKxQ zg#Y|Hrs;A&e^W|jXrA06n`d__u|Z^a7iPDNlT0`e%V-WdpnAgTZ<>Lu$o0nv#vG(2 zwV)DThT-LEW3)U`+6HVmHH;!lG4fs8g(SI0Mm>na7QcY9Us!e~BL8H{8g}ihp6EOPc6pqDvlE zT&hIJKTBE66FoyR3Hb*Sy)-5-6D|p`zzmt?+lgXPRxmex0C#?flS(5;JkCgiKTxl3sIE3P(Pk9oNRH02xTQhfYDWyChiL-D ze^iyb95eIGK`RHdOPxooDGx-LuRy;`x~lYXE{(i%4tj)2r^LY?i8$`C^N~2SCJC#E zs}rH2Y_7Z`#Oc_G4GSTTFXo#3Q~?tx+sT)urBi`3m(?K{NZ%h>q$c=akRgAdjyzUD za?dOpim!3Ww4hIf6Zzo!?Qe@YP`|y&f4hDIjJ?4`Gx0)RWi?bgotDvus7|s7S44lHH~x) zGF=WRUC3WeBH9`8$clh?(B3%;e^uddUTa4pA~AcZkU{{d<_kvs5g^S|$4B6~YNb^{ z5}j<~RZb&PmS~L_3b{>#fY?z?-Ya-h^y<1H1wR}*9sR`DoPuw={b3@Z-=SVJNpBQdV{bMH7+1|NopK4YD?zSK@e;@D0;ld$F4u9e`6V%T@NOq z6gS({_#ZOvFdpjd_CpBNGbu>g)Pm;VgTJJ9XJVuBZesxbsH2uRQAjzB5z!Dz!YVF` zK+UnSSs#YEi3`+{d5FQ|sF%*QyJkz5ap^m<@kQ7StbCVm(TB_FJGZaXRYK%WVyb9a zfxoC|H`tU>#SNf|i%cgEe}&a}6jH4Lq?;8r0h2Vtk>6P~q(C1}aq%?4zmnf;^3vkI zvoOwC?<_Atq% z8C|IW?e1#k_t=VB{4u_g#{MGah^~|Yi0h!rwV|hbq_dU>YHL|ZmnBC%54WuDd4Q@{ zbg5vEEI273dg^BSLv0QuyuHcMU5?NvIKt9%r?ap|Rf*qsXJwa{Tt`F#Q*j}Wg$DxU zwD2gY8D%Lympao@#7ZoFRuXQy!W7jH=i6Q{cyQZZ!Gc?WK8RP>gz!C=TYWXT{jdn{tc-Jn!Iz6I?ZjQ+)rV8>?4Y{6l(Kvx+ilK=0sMC+@i?m{rsG94nVYk4CJB+JCo+>X*}%r+m`x1 zkkThP(wTADf6bv=>jR^2=(kAoW@u+*PD>6^Qp>tnqO|bRBkM4qbEke=L9T9F!mm zQW#`ee_Reyxs&BX*$H7+_%5waNt=$Wo)$nXp`?Xt>%8xSGqi`XuC)R-M|LhMkb$7- zYjzf1fToGQ`!uR+gaXr5j0%|Xw9?U~Fb-a5T)5RaPn>WsSc{9|#G#<}EMdsdz`ubE zi;)jXiKW?GiGBb4-!EQXTwc6-`DX4)4;oj|f2DuuVD9_XLkDVYw;sE6Ex!Z4-rn_Q zpRi-n?*gb5-mec7n(^{XvCNO4^xL|7xB53*t!Abe00<<$n7zc<*Pst{sZd|9vP3&J zUQh%lM>DB^YeDgT)_ddrEy-ZT(?a))Kny=(6lze@tyKemeOFU2qZx?kcVoM0hDKd6 zf7fh;E5UaTaHW-lsxnX}BuVsaJNE2dXIu}ib>FGqEqo}rjNL`k)W1`Tg@!lXf|$X2 zA3M=fstXC~=se@wpvPyiBuFHp-9_Vluhj|9vuJZ{fTQ*}oI=Bga?3bTT=gCJ65V=i z_jh%NkQv%_=s|Ur(!qt}8u&G8{JPd!e*l>yeCxE(wfVN~I+|E;674T%yqf&W~ zq=zcFr*@?#s|nDJFU}P4HEH?9a~}0u@MJLasUMcQCGg%-hNJpAN#nDOu;w_+fU|+} zCO0!INKZ~E>6JCTXMZN5E>r`efA8#Ds^EDUU0W;E9Y5@@`|bG6BF@gK!B6+FPLgX6 zef-G2Vqbm5p0cM;L4O&j???9WD|N0(6}y*Be>NWc%W=`*5aVU(i-z&&>*sHtzgAc3 z1uvt&KL4KmP5C3sMD*(Q_iv1W&VAmqsA-1Zzeb%J-jiI=ii;jBWlkn+f5t_52kUbJ z;3}e`bHAduMl#_lB2_rEyLw(u3wrV3uLBFOE$X0Yj66++@7X4WAzF|@peMVg?t-^M z4xt6z-HEV5n%=THD{WnpmD)PZ{n!0%*Zy6>zqXTJDo_`}#@(QtqH;Tn)8Lkn`rgVY za#)zMx(%gtv2Om-BN)9ne^df3u5XdYcDLWU8%u=4*erVAX$72cI#|gC_Tu%kpMHAw zdVUrdCw;H(y3tCLp86E7e%>S4^tqmAoJd`M48hnlG5<##jD|?qgkhV1dwuy6%@F z?a6~c%c+4{`mSMRe}w)ldgrsDI+X54tW~@!pkG=EsON_U_maZTZaP!7y`LFJC?g`O zV|eA20)JJ7$kk;HA3L_pN=J+*EX364eL*e`aX~w5pM+DOxSx)KKHt z=iK}$Smw!~2PB@T^ftXEEsiW0>9*7Iy>uz*ZG>Ln@w*h=x1i_v)l!@3&NbWPWDV=~ zOyE{Y6886I=uHv6)E6>!t2v{q@eac0^O$_q^NhAYET4(eyYesWW}muy4*+C#_pW^x z8;Aw$AkXQMUA}hwitvA24pf^_BHQXQa^zIrJh8N0E zdfn*SEP_6Ie);4-@#p^mh+4<1Wo~41baG{3Z3<;>WN%_>3NkPtFd%PYY6>(pF)@?k zFGPQm+r|-n->(?INMvO>nG3E_%2l$hI7(TPBX2HMD^&$cf=k3CKmp*c=siGedG$PWfR=1~Ajpefsq29)2KDRG^LM$s`2E|Q+zuCv++KXR;OZeUf0jG) z&DF(%QJIpfCA?YSldJWG{+N?okUUAq)$V^{_RaJ8)xTjCc#lh(%Cdkru2%4moN{>O z{$lpipWn^+yE*y3ZtK3<;`_WTsF3WCMMgPi!mL+2 zG`sz_CQEG~EwN^_;^NMVib$HX|9vYCH^=r0WS6#qZ+H%ADqc z8DGrWaQ%WxDGF{LHfu6&oFxQy8|!}8wAEOz$jv7*G`Ev`F);z>ldUls0f&>vF)SgD zeZtF(mF8jBhhK6|rN}HYK0m>ysWv*u69&L!Hf;22lN2%_fA9;Lc|p03&IX8K%;v<{ z?CLmJR2I&(2S5JLKKv98FEW=F@86Sa@)da>MO3r%c&N(;{c#(oj50BPY_PASzsSO^HC%=r`=z<#0` z5a|bKpj}n{e~NU6aeo*As?pwMfm_EwT~iszkg-$Q z;C61>lN<9A0$ZLqbE&SFSk+o)KB|zn&jLXRIi#Ie|!Lo0yFIEW%H{h2A?zE&4#+R zcq!HC^Ng~@^6%Rh-@SbM;@hj2Z(c`CpM&dNbZ+Wxr|K9`WL6pj&|V#o`*(9nUamu2 zio%cY5iTXoa%)917-C3)ZVJb)hoN3w#`y-Q$%_-Hf$Et?IVTHRIOIb9B!#l}DY(mL zD8a0+e>t2e*P${Hs{3AZBAAPhmKUj@S(Xc10xz4n%o3Wjbk^#^s+NV^VB8{iwpukR z_5e_fi8BLW!!zgS&TJ`D+hSw{n$0KVGNE0jGiluP-Qjkl z0EP+o3{Hc#51XzZHwd@&Q2_xQC5a^`@%0l1f89Nl@!=As6IYV1^HR6L2;P$G?dOIr!E+NZZhOj{^hx;^v42H zo$T z3MEF$l%|OV&oG4r1S?Am8?V5f#({VEZVsxHPnCujxekKW%+8zdW_@$J8F$?$}A=OI)>qrUMbSd=GR2BUYi-%*R_2_v>Ky*uc^voEi&^Ofmo!T4w2SD(>-Y=sT zFkQcj6CTd$dX%qXdGAY=J!D9|ss|6$D#C`@xJtK$l%PK*T-6_a!wa{XW+w6_oyXdP25W0^_=sd;{uUJ&LM`>+iE|c&j)gk?t#A`9+0_LWcW0U^^TwwSY?O9PE#>BFO1J3 z2lCa5)?%#=dT(bMd?EGWmj{K1N_lP%We{!N)Ul(jmj}g_f?)}i_XNXqZhLo33g>P#Ob5qYuXQk>O{KaBq3Sok@E%D^ zd;tvvM4Qk4VGpJ;h=sU~+k2kkkiw;SH#8riiCxv2tP2+FYsdgA1C^M9_=5(VjjKsZ zfj_b=wG`gL@!Aec|FXMnf16(-=j9U9^6^U{H7?0!}X8Y|X>qg-m%0>|EHA8}CFNijXwMew!(A)$*3 z`Pbs9f>8#kC}eRAqtc)#FRW3ZCSJaJ@uxR$Up=3fNauMmyRzsPf02ZQb@`-Z?tCWX z9!vEN7G<)lK7r|Es1?R4i??CykwhHk08<0mbh;u5ndvzflq*|F?ngh@ggiYpaBu}_ zD>Bnn?Qo~2)jMMvfFM0=vAZIxX4r45Pxa~YC;(o4otQmgXm?ZczKQ4 z?4CMbF63 zuX(7#JX6I7`V-47lA6@HM~a2^Q`rt`+KO3s&QUe!)nICce?F}N#^3~pWGJz$hdE`r zX4bJAK`T63O{SIAs1geEa?@;AecfuxFPLf|&*Um(mUt9)r&Bd?&FI-w#lz@EJ;+&o z>^!B3$isdJ8*j{JmAGqtIFr{#`Ka@IDW?uOdr>Vn)3~;cx)sz2lNb`vhS?J6)!9%9 zL3!0xy>hcpe-Hs3%3o084Xx>=-e)-6DDS_U$75ZPPgG@&9U%VD4C8N_=(5aZ_!hp6 z$}toTCuN{UB<17tT{%sk3MX|pgI#1vop*%MR3<2#ZJ zsb{|Kqh^#X0`T6tdl|e+>RefORzUVg`e*kdP3dl_0N=%hd3!@bN6kQ-_ zk4Nf@Ny?J{$Hl&XkLJITn|(K(_E9*R{bO4zp8Gmt-UL1AX0v*tkb{qcv23Y(y4f2A zt^qnAfboQ}=o}?{=MwNqgcgCx#O;P|VC$ThL%YpI5ZLMCoE8}??b4enX!J_|at0^w z+U7g#f3lpfa_Xw>bgT~tAZXJXK(<|)`T-v)7>Mb8T`yGZql*Av-N#YSe8`A`q?|q@;g>TaUdq!RXmMmRqMX#K8imTD?l#^5JP&&iXX=zS*ih4+$Js*IctyP&D z_b}ZOoMAGk%UGs0nPF9__WQc(6(`4?fnZRPf6w!10$SI(0@UtUS1Ud78tPrM?6!J- zx&r3hHEyb<8>)o>Kk>xJJQJ=vthnvQ z)b|?CUw@~<{^qSJYJ-}@Slu-^x>`RdyvBF}Baw}`weUm@WYfjgsd@kj@IVcOf7aIN zm(uk2M>qJFZm6CLCuDF`w#RFQkUrSdV%?qd=2lg_RC5yd$clQuFTqpWVxvXVDffnO zF5pBH!<~!fwE?smVQlO52%>)ImJKuy>h~!)H@|B}Gtbt#sD!)^jI=i}zL~T3jQwc3 z(m9)Ia1BgEl?zZAy6Lmcfk7;ffAT%J0=IbZF6g`=ZFoV)8P{bu+Ti$(-3CfEN&#P> zpm3`{LKw|j(_q(v*oA+@{k){nWj{YMM0yig%?J?o_Gs1(IfZu>)KF+y($xR$%=6ZQ z=Ai%tzwG!D-`jL@D`fQ4P5uH1gW*??Iv$e2{oshv+}?K{1p$S&yMsIzlO8<~0UVPr zJuv}7lVLqS0j-mvJtP6Alg2%1JNwsvBi~fRhJd=8gDA{oLDQLFfaTZGRi1#F%lV^4 zcXw0wglDRD2?$4Nzew5XtCcVLqx@sK=MIqEi`S`rkWBz{ z={|k>bkF=8C4@!^{xg4<+p|xe=h0n%mPB`FKc7+cFfxCZ+vxMf**qa!M2jW7S>Th! z`b>XJqnt%~nnsI%?OFW!#cc6!7zN&=oCq!pcw@1G|H%o3S02vd7hm1P^kx=)Sv6Hx zZt#673&Oa5Gf^)+X}8<5S@qGgvf1mG+yWSdw}pQDSjK6;J zoF--?oN%5b_RCG(5BdeSQ3lIPsCljj4L)ZHN&Un}K2J%1o-$_kM-oca9_v1;%*LoN z8%T3%r+HPmok_w9S)}^Gb-dgU)heo+sEqpkZGT^FHc{2gxFoU=Y5cP8+GbldLv$1O zRW2v%bb0mt)91=3;IZ6H8Gm#2 z?DA?c-c`zfNS-CqF6y@0v@<41lE@-{xS0_(@0=3c?eYw4FJO7moH8}y_oeq+LWFTA zB}vAWak{#^-BeN8_w}9HOdkOrqFc4Jgc4Cm|A_+Db-b@P16XBgu`}G4LsYJ3EG1GV zEM8a30e-9^WwMXe0s%AlIjll(lI3Q*O!L`flkQ|p)JW#AWUNN4g@8#V0^b=9_n zrPPfYhZQ;D3AdY1^m41UwpY&e%F6Xnb!vTP2l#ilsfMa2v$;r;cmdD4YS?#8)DPvb z@1wd`A5=36BhfUAU)6(s)~=1~Jy2!tR{SQE6SZ=l3R2+0Gg7FZf1O|-HZ~cMktt1# z#{KkvcW1s}7#Kgzq&&SgK`3_-lqSqZP+xQllki(kjD0k#R=*8&@m z?}OLc{m5!25Wn)P5wJmF02a4{#uG0%$sK1UglX6*UfDOB`X`Nd$bT>dF9JP%iJwu3UoWdkqn3<0&PD#hJ}hcJ&!a>?31v{~d+=nk9AvHboUj6Wsau zQvpbl0BS&$ztVpC>vYa6OKA4GX@&Lf?+2d(OWR4y&c-Our@;>{W|q(6&W9_cDnEIG z%QS%RUSh1Y3YriWiHo^aKZ!U>T#mxkM=IvpDkTJY^l)EwkYNCLIG_r1#z>J`8&@k! zDmsA`nGz8ufjzVyJPeYYB`;W$;6fEtYwBOB6|y?SqA0TXMcphbM7%;aKnllzk#mlr zYNO3lR@t}`)& zf!qJ%lSxA+H}(C|YCoB?>jFFt$Sn3w{mvIz*s zK(Ai8y%!`aTEf$rmy4%QqRa19s^i47%yoS6^>?!j zR-2?ezL;wq@T?#S6e!O2AapJA^b{Cn+$E_oDiyJM5=ymtzmA`-)xKZqbehVz-0T6N z>rj7?NfE!=b=p731x?$`f2q3mT$^l~@sdv?1@4EsuMXcZn*lz`K--M9Bz#PrNUYUh zW(h*ZuOK>5BmKOu^%&OoQi4oySUu(Yc!P3iXvfUYpgi#D4peIN;b}m>eOP717|!x& zSbaElk#Gfsb)Nlf&LAykX+Qzj*C&=KLqC82fxweN;Q5vQ_~Uq~bI6z>5m2J*o#)!q zrPnwx0MH$UklIy^inO*d*c!zz)E1WePr8s2CZ!8s1f#*}vW21XhjOFGMWtIfD>(3; zuo={V)MxH@_wI4hG^K}xA3^XKLxFP3wW%)MszAJUs#@B$Jy4F>)2^$xWmg|%Bcy*C zRnxH)Xx6bx$VORMI~=kR@LB2}Kl$eBi>H=O1X#`y6)soH^NX*cy#Dt2<%_wgsDMLq z$3-vT;}>Hx$^$(^jNyy1js*-Atgx&2A&??a#QLTSR2$q$k$$%U8G<-M9keTl`=;EE z6!xxc6j7m3v4{obvTnOAT2>?PVMc!wUEl-v_h8iFp{g3EBZ3%!O%_gX>W~X!fEPeK zTsk8hla*=0=_rO6h(SI!!#HPuIt1_&p!0>}Y|~VzH!Bl9;6^6w1o(ofkgN^PBh)sa zE~-wMOS3%aL(s9hGhyt;^57eIHr&HU_0l}Xc8q^)%X)0u47Ev40t7#o!t;Lt5R0xd z_JdwX*De9><}3Rvj`Q;#3KeWMv|~odLF?sWLA(UYG$lhU4X0TfI4^a zH3Y#uAaUQD8hZ9|u#gPU!C< z+c4c061!JKpM7>9)YIhj*1+7Z-5Gx{{g#o0yF%OT4mk(CrP9)f~WLg{~g3h-Dhx`b~`&XIB)o!@QR+p*J;Zkg}c!ftdSuWGnLVi^(iFC@9n`s!+pnE2`Ha-DqCu zBincLRtGn`)S!RejOPZ$DL-FB-QUi*$Ve_z*lZA49Dd5IXWFV)LQ5NZIxPTGIQV^V zYE}t!>eJKBEbKdGd0{g;_8oyCkps1OpuW`9A`|o^VV*YQizdjE$lAU?|F{c#Ush&m z+jfqr&2+H4N6g_qp#zq5v&;UrgVcrq)XCn_bFa!Fbd7&mAs9sWb4(6nsn&HD!0Rig zOK$6?>>gdB&{R?oX`3NO`kyIt0Q>Aerm36q*BBZYw4Q;&hq@|_`*K`X!(@eb@<~Ri zHyCT@y63N8hl z+pY^*LZ6?Qfjs*qnlTRK0EnrZ7|>VSviGoK4YAIJwT2@@s`a7>gyda#_(X$qfLCMh zrQrb!pwF!BCg#{e#FHI05Y$y*T;FO=Osm(io;`o-d=tkF2Yg^;V$OkAnLlOXsX6L# zY!N+GQeNc2SxTY+pq8ThR?ZXFGdQ{ctK|vzpQuLpxJA}KHUqG~5w&##K7oiB&X2b% z7#^wR2knZFjR;Cr7d^#8XeX2UF06Tk%Ua5UBV_>jQiMt7HQmuHGmbE3XV{F(fd9c2 zx>0{PDUKjyvP8U1Ca1!kN{4dkJ(4vCjZ#>qIGwDsEc40Q=m*#l6F!85v?pS3mC3pE zhg&+maFR&&`UIn1aYw&G^7qO!y7wg6O(b!!m1n1VY-Rzh|Hen`xk%RadB6v7W@)wCeuWqLXhxuVZDdo(fzKJ z+nmIFy?Ne`>VD>~Ur4T_T^&a?03!%AG#*li_a;=9x!7RPGo9p zp!ii1HoB>_BxvId8?#LMI0H)ZS>4L?_E1sS=rWPfdE|xppCQW&*C7{raE~=7b09m) zya*02HFdnft|*UvpX5F4I_Dh3gP0z&c>{yud^Np;k_I<7nkhttvvc%zmed0T_oMtJ zx#{Tc5)G{G7zIo-iD?Kjko12+EtMD9!Rd<0sLOT>H5H8KTa4>=qg!LNz?(PjbTlut zs~*&OmF@1GM|jw;X?j&HA%CfXKy6nY+CbGjIuG0NEXk-!=r7}11`qK+K6V_1chx)v z{aHtN)5|n-fVOJ)c^RZH23?y|ygoP>ra83-!>&l2tQvR~G~U~N8ciShsDu}FUH0&4V7co7@g$2vo*#O^6lokdqou8w)ZpHVS2KWN%_>3YRgW0uz%{PcnZNvo%D}4RixoJ;^C0QOdC$ zdAwU&BRyb9j0RZ_NdurqxwrXalqM`n>5ut) z{rKv)?~CYD|0<0>z54MLQx7Ba*ZMK~>gLrdO)?SPtnp?^Pj2pC>5o}d@Tkc1=;rZN z{MDPQo4^)Y{U1NX?88;`hi2Dw^_JdeRhjTiznQ9+ zez$*otaqC}`g6TI>X)1VoZ)Su-#)pa-9~+x6)X`lT4ho_x_M~mpMU$lvInUWRx$J8 zZ+@d6+Ea4un=)>mLa52NWs;U@Wgh?X%lKnF%vpbGK4wq>Q^(sMaP(o{_0eV@?e;^| zm=kh!!a^i0&8$E_)$WLpv#iS8JlG!V!F{Mr!%{1C7K+t;c1x6rEYs9z={7!eS1?VQ z$}(>HzTNNm)yJDZ1t-XP!lYZMy^n^6Ci;n%%b*y^nLnF4TD?6s(fEt zj@=F?<045}F6}|oLoC*IO|;(cHthgu>MbnB@M2nI@#jOQWlZ#L){5Ro$njQ8CZ#&{ z{XRH#>Q5ba+IO6?WKw0`+PnHu8Jj1QFvNeMVIk|Fx3_Nfz)4vm{VVNm?4&GBN*_44 z6Db59dKsVgT_6NhKn`i1Z4w`gsrk1gS(Ld*Yyf}!`1<35#GEIEca+V3A{1gh^#|Iv z{V+LFo)lzp{rvSfWJSUQt#9_bX8bYSBt_ghcS&+2C*?B891(3se(`h#y``*R@xFgU zqPpL2x7yvRG$~3Zt-{*fr}6eUT4l4{+!hQ0!mGfqwWG00z|oL>n$30eNu|yKD@V1H zryZKdUb`TZuy<*+L*nbuys?psrxVUKDf$`}ZYtYK zJga=PB~mE$#ZA3_h?;HlNU^CR3m<F_gk^jAmG`@KgV5=;<`4Vcrq@H=!RL^mp@U>s&cmGXv~KydfW~@C4+hwHIIkkS!IW7ASA1oKB~KBs+WI)C*`FG*8#2) zOjz!{z0%}FxUG0WJ5^s$!OO)0{sDhZz@myOxGNc_U=dIen`luY`8gfGKC$|^-kn*U z|DUd&om>6G6)3@^P9t~c-h=+>7yxP34~u=kS0e)vmQimN26) z3Jw;Y&>IkJN=f*OZC-yQ($Sxw-f>&+M3viUI7J=kI8q%)afnS+uh&2^1Sp2Rj*sKE z0Xu2>b=ThE1(gyhk3gp?@3N95-esSTKHVZo3SlJxVCk&pD_w{RB75AYQ6ae!<<0wd zH-AKOe)qfR?SIlY1!}ivUT?ns!JM=d`lw}+yM5l=g!x|P(wcwa-M8OZ{Z&SNsb4f1 z>lQQtcDJA2EZA5|DM88Pk2m40rzz0$D+1+a*S*4HL~Yw^}8{h=&_ z)4x!ELGlh2Svr6H2LdB`WTi_EUf>$VX15}-HB>I)tZCt(GC1M&6z_o2iZfXVc!#rU z9XPGt^BM8Aw_5N5nS}60*l9|s-koad*{cw~nmUoZW}JTlq7ZJw)9;#xdTbj=&0UK7 zsX4vvZQR#a95|$k`&R!4n8SUmAQ631s>T(*sif8IFxF5-s5uoEG(^WJy@r&_GL2j^ z5Tz>1Lsuv~YaO*WkpFah!{JnB8YdS}DNvjSc>&sIa6oa|{jsn!otNH%`f)H|t=#GR z0$00^z#4z-1>{0 zJ!}+B0a4iInKRlDuLqP?ddo~T^=Gw z^Da;6^ZIg^C*vpS4-i=4%3+>yy|Zrj?x^x0SyC=QX4q}&ZWA?Kr~81^z2G|8!Zoc2Uk6DT&hHAa z;`o1Evu;SHyJsr4$HzMj5QW~Cz9^EyCHv&vcpG55!fE|}2tp_qtP-Ob4jheQe%k&F zyEW41hzs2s;fzX}%B-fszK!Z**!qn6&VybUPc^cdwmCGhwfa8S=U^F1zB}oc_c?M8 zs4S=_l;jc)~9&|pk_;u6vhi(0AAdN1% zl$S*+0!=X!j$3NccTK&C?y=0+5!>D2I8YQIg(DZ6W?iH{StAQ0SX3pmo`!$ykf9IM z$k${CiNTgSh_%xFQ;6_2NRr4@wYvHD+t|o!(m__J@VVB<(GwBX3MrTyfJ_P{O~8M+ zEKetA5p>*W>%zL0ZmsH$(38T_8B&jZ75-&jg+#8~Lzy$5E#_21d4~Ec3S8+0P%3G_ z=9tlS7+V>0L3fMbvc2zI>a0jzTQg{>;5~&mVk$-G0OaF=@m0#K6r(Dw^9l1s-R|sZ zfSXe0J7{*zx8MGr4nm%x!_J}<{C$7eHq`u5&MgXP)>er(20RKKRfG|JNq+Wy9mYK* zpe?2Amvze4+RVx;*Y&Y)`l-D^szB5W$8(oW&a2!3)JnG#vB@4-)S7*F+-}LiE9!G+ zrZ(AtAn&N{)X9KW0W(fOs|xxBAhl_)vYhxyybI9~PjV@w7fUBOJ3OHNgX@1-k7frp zLr~80BaHWNzx(>C0yeD*8UMFSsJdqh)N9M&oQoG}#_U6vhI~N5D=ed20tb?&ljnF> zet9lniP!z0ixfb%_6zUe1@p5Fjmn5xC~mDYo3BEpQ~=%R<*vJ;*)hl^KK`F+p(zqi z*&OD!IMEd*;;hLJ`Y25uB z1Xem4es_B!EMaf^shKyo(=u_KLaXc(WRFTYGy2T_=>JQIGr!AC#ME(ut<#gin` z_e#c8CG%9|B2{@EeTDBq-AD9AP0)T|<4@h3M9ZgTHR-eC!n%wAlqos^VqX4HddD z_bB07D0*MF$m?FsFR|SNRd_qD2Q+fiG>ztMm7d&lKsj||_V0fJt*{a15tTFuPHpnm zu01|pnJFrH2HXP|nw7@j-kTOE)pe{dk|ACSUty z@xtlyIv5O-*9O;hG!hxz%dy{#n)p-mTvPtlxPN6u^HU$G`&BAL`r}1vbGRiisP6rfy3x*!<~=j{Jm@q= z!@Xb-U22ven>MPkknSQ#35DD57Yu^r&PAZYsYL)G{o~VypnIw=V^0l1Jr^!rZ8nxr z{V;!(Vkoj3xRyD#s)Koj)7qo>%XYelHZ-R05wc`?Fgrp9He(AFw0AcWs^u1E^%8Z;*Kf(3I&N3V$L`E0L%see~eX#gB*qH|i*7?Mg6QtDm zs?PbCbhfySskkG^*Hl67k6Rt&lqbsqn-zbmG1HjtAxjG8&s|KJEYil$j{Rv*Oa)R+ z9*r+3TdSFTLYt*&{4MpMp4z@qLrXuwvxV{e1g{x)i+BMY{$q*ph!Jy7dZzT0F6Cz- zJ#FtN>z82do)cbL|LpvS`m|H(J7Rn1XnnZJiQCn|7^~UN4#E^WJ;M(F9}W`GTabTO z>E#E#op9?hxox(yE&}zjrX%2s`(IS#uT%O<_waJhf9F5rC=X0Muot~ko-gEz>xDbWEX@*;pLdK>o-Lxm z)s}zMIemJf4+A?i z(onfmDQ$Ktw=V(Y3GhtSbl|k{IJ~1c>#fXvzkFKx()PB#SEMTu%A!aEYR4?KTbQn_ z1fyX?SdtdpRKUpo4%}k)U?Mx)J1c`p`huSdd9jo4ZjHd4bVmcY#>fu`G{t}00j7~T z2VdAFO;}w&oTYhaeKYWt<-9e0x)_gJz1+8gF5P1W`}jHRAe$d1DFE0|3+>p&l~l94HMfR`|b0RL%zfxdoy(Jr#F&> zAc%KHD|yi61bvIPd%EP(FWo#lwa1EQ;AUPoi?&q_X@3hXH4R;TE3Q|+H_)9Ykxvk` zzQJm7y=(m}fe#Qs`#5mH;67C0=G@^-uienk3)l75v}PvjQv0J2XUu;qMty(1?zL&* zm8jvqb+T>_hWQrM#|nBc{!$)kS+Ph+wi`E@KoWD`OF7kKijjZ*VlM#tfu>$nTUBY{^L>`gxgxOi<4-k4hu zX#7sK-%|R8nXOEVuDO3uYiV@h^nA)$tfA(=Wu_l#=NEmL&Em*SFatVzfr*ZJ=!&PQ zE>2ck!4)#PJM8jTVBQxHQtf8*yNO{ozC5eF^~2g-c=@I7r+iux6RKVYGxfDyo*{8W zD_JDwhgE<0=7;F3x_^jpn5z}bBwi3PPqD!_`w4reA89goXZRb`ZtCI_lS&hGgUyj3 z^-phaUi}4s{szIq>V}swLj)5GATS_rVrmLBH#9Jl4Prt8T9Z&>6o1JQZ8K$4wn$Z+ zqEs$$7Zj1~0xMuwOFET5@UP?_(>-@!mlrvHNa;bgb}-Y^eY*Q}_k2t!VF|@Q_V4-X z=!-Xb@?kil$%mtlM@;{i*uUnhwT1qY|QH=9kil79jO7tE@Ja3=I+n<1%^ z;kI5blexKfvhM47y{H$-^?kCrt;e@unIO3woyu}j7DB?QlOqKul5u-v+Sfzff5P3k zB)p)JC|rvIC+_sml<=ID=4Uv~{@nEol4vc!zGW_o>Gvp%zIg(ds;$|WHd~gHf=MUI zUG42wf+S^O?|+ldw;K?m8t&Vf{#+EGP*pe^P?F^aNAughYrE~Ryib}I6}Y|DIy`}o zlja81=GA#yfhOy^O*VDEYT62q*fpEmeccKw2`w!a(?6LXJ>VIUG_zMgNiuuscGGvu zq+0`^H(jswLujtAtt1g1ttY#HR!;I#S`DWtOOOSaZPKWpnz*i6zl#%W# zZ7iZs0_ieEx&88f9Uqm&&eg2zq#ica^|Aqtp=LHatsKzU*k+6=;$?iyWKH|QA{f&o7R=O%7> zzZFCXN`GCXIDawH6!R+l{&Zq~Nn{8x?5oO8*7Hr%wbNK5N}_~6>%B2TnGwZUP$nfgEj1=CZ^2>beGRTLjEvD%t9tQ} zA{m4M#^m!9nZaSjB!i4JO3uRffMt<8#ggYkH)9NaaW_AVXjI;pO^Q4|uG*uAt;7jDXB^}L`sA4m zem0CvAuzXiR9)9gtp^Adr3xxwxrWjX2;8HQ0ccQ`eYRf~pl<(b;}i%c#C5VDMHb{> zT9CVqGsQS_!F83VW{>OE=PooKAQvRi*$FaayQt9C+s%55=UAl%m}eNj)T6EfYJca9 zc~{XwN}fT8cg6r`;-w=JEktvG>ZhiHD7?l@z3Je;eqCZD8s>eo27-|^hmtj?1t~u( zS)bT!4LNvv0Dx;4nh!0=vgsZ&@=R0lKu3OCCKX^-rSE@5-;?ChP%_A0C1)OY!Y=Vf zXFc(iPLTF$hL-A(bb>PHe3&409uL3G@zPdTW@f-VXCS7$NsuwGXnzB^8t-O>gN< zGOX*lEeU{AOXh#7}a4}Vt$LU=~&W!SrG1%C)Y;!!!QYKH-);mz==irj@o?$RuEQfpds>k?vI;Z2W0 z-o^!6{Y9byNXlRaW*53_eD=!caILRlttDWq<-ZJJ}CP^02G5x3r_0uxmL zlvMGAF0Pz1ERn&i54M3Ss9J7odmYCx%)T=LB$VpHi$AVsLmnQAC4U+Z<>wRaaV#<5 z`1yykSKdm2q5y%8=*O;V97*Hjnt@X+v|L8L-bVLvl-|<$B?MX@2Ub9n(A@@O$=xxd zDV(8;&#`gfSKlTeMx6|NI*-dHVbOHawDSYTH3ZH0bgP>gu3O>cIoWSLa6qgopV`*I z`Y7Yh?}Tuj2yfb@mP@ezviYYw zPglMS#FVaem)2Eu5>Q{|6fi0(bO0X*o&tPYKChK#iuu*L+rlnxM{IpXjiVVaLHk9} zfJxRqhyYAV@5R)5alK0->GO&2)tZ*CyFn|xS|;nNhjIb@3P3f>D76N1S~MwQQO}p~ zxAvQxZV4He+kbBAZuoKv8IYRfC{{2!RwQH8!1pX5{9WoA!lBy5-&uq_t*QSUgdnIr z4^{2&+rF9lcV_NJ<5rVLJA;Cig_!P?IJp{l3=MaGN;g-ioM}%Be79h6FW~=HJD?K? z5Grs&X*sEGY%Re3wJUh9^~LL`n?(uDb(SbvOwsX|zlggc`n^@i2IGt`sVAx8}0yPMGgTl(F z$98aY;M$Z(=}VM{CJ1nfvUk-t0~)WdiIlP#CM`9H1;Au)VJGAEL0-*0seppQd8DTa z!Ab>A8-INM?-utHSaT8xiKTdPu(rj4MzTf@S2+pYpAoi0JA)G*ih;)+p~QxpkItj| z!{0zTlT&SdJMuD7+ReTuREjcExTa+~ZILmlBmWaEGKlx~FjKBnnqmQ$D0so9^0;Kt zV8yV7e0IOr=9>u$PDeun0BXL?9s|t%oQPuDGJhxm!}tot%^&`yQ{BH$lIvq2c~BV3 z6iR$c+$s|U;0m|}CQMFB>0oj{k4a5Pf%Xn47vK`KTlZsI6i|WtLDy3@Fo`l(AyGcV z3?Qb7ALHaa9tA1i>YyQN;83V*HHVT|^~m&YUTa_ZGCAncB~V~Umyd^w0>T9?ef)jE zoqr`|6L+S$aPEvG+F6N}8CvO(U)yH-%yMWb-3l2sJE%0pRTLSn`)Y1K?(2_Rs96_e z>i%3nb(}rR6CouPA`i{C>2wPlLC@*epbl>9b~4YzWRXANacMsh9};S=eARm}DRVDV zW4a!?tzl|DL&%{T%gT`Il$~Gb$%Lli`+sd|r7H>3mTua;Mkex7=S#@i?vhovn1}`i zniu?JaxGxrko?)h*TU&o=@X;MO~Vs?+YThq{O$q>dRxuv04+08Ms3C)USFL3G$lJa z8ubaAarrnk+4}6RztXXS8mM zX)2w#Qvp2usiH&>#cZ=1{mSts#@cGMT5+E48 zBj9$F@k`xzkQtU(w1Vf{x0~uNsek*v>yvIi-}bOGj;EobUvw=bL4SmMK#&XwTaDdn ziOcSdVgxu0bxkx*a(mt##+RUv!EPlqt>nYs(iprZMC`ttSn z-=CgeP9zX2z^p8cSDm2;wp}~Z6UhoJGEybzBMa!}_M=aATx4T|jC%~Yjm@Y4G1?{% z?2WIh!ocHmH%HU$Zkzdm*MBlNVeoCsy~FkF)@7AZh7=;e<7dPccD5&01Xdboyk1E=xRoOHN_rHA{5GYMo>1@3mRa|o6;7dOpAjBzdYMGwsp3PJMdx!LJ=-z8sZ zzb^?34a&D?-|6U_5$1VtdUkb=b5}y0J2$dr>;Lv_!5yBV|mbpnOw}PEmAt&+tRERJdAn5>WbEx#JVOLNGNJ@ zo@q!fA%d=|M$0w7tq>?R#@5#CyKGuLY6B+Fd}upI{5VIjcvvcGqST9rpe}RZn9@_} z(ypIEofn~Z>h{!7M}LiVhR%**2KQXoWS0OJ7%z?&Djr%b|*BCIPo zST4HSyjrQ21}Xw6uc?DT7v4E{QGt{}lvRF&RoGUx^}++4c?Fr%Pf~twH-~CHi-xhn zCN_J`MkD0<-aW%9GLe~QIF`g}G92~74#Ps=l%n*o5C=d3e19#pm(3)}ZNW?+i8Da~ zG(AcKKfbkVrLcWoWQ9)muSX3c5vusJ^KYho1|sxG$zA8iZRe)NhGW1Pe22kQSVBsa$;=*$8vokz!72_m4VAJ0_8-L-JQb{N(7zv;Ub+y`$4tiSuv+Ci^DE-xv* z{)y)*>9C#O+PVL}uu5o#@`SKgD6Ma|>j8`(+}d$g&VLE;fg&Dg@xoZ*w1PYzYOffY z1!zk690a>pb4@w1KMz_q*(WPgt!^BzO`jw}9Lapbv@Myvw_XJ(H;fvrQ~=bFtr@m# ze4!DybR0*_GS5n1oqm0Ges+K*f=kfo34^=;Z8hw{J%+KijebaHaSBuuUo4Ex_!01| z-`3ezXn)!#*9al7O|u#5&n_zBs?Y0(SBM5+CTk~9CSO&yPtp z@*#3jU|xJOZmzB&0x@Nn9D>Mwk>fv|ULO4jfBp**(E16J+HxEUG&l-nZe(v_Y6_Rp zsR0v{6LTnk+iu**5q(|gE4W60P=ThG&2C{&rw2Xl;A(}v)-J2_o0X$hO;DkIQx7?)x*gA zs5jB`o3lkiSQg#X@MeimZtlu#KG4K!n`b0T z_3od4VmZ{+Rz~$X&Ei$n!w-^Bp2t-^%KrSHH-9@z$;@22fLDYt@?8v0@RF3JD7kq6 zlB~5%a=3`V2+^|J-MK#zT$U11a9p}bIU}4!3!0NsEx&BNK{7%Gr^c>?7uo?`yHHy# zqr0m9X;@doD!Prew!+9-mZV4uYs=f)$)R3|8YZSTC-3tmW8G!R}=9mB`jg~;kfnoN=T8p2fZ9* z|3$6jBrOx_U60Wbt(y_!H~Mm(!f6Q?akbvbsJmBBTd8EDR3GbHkSP~DjuC`fuXKQa z*Q-&5Da&(`qc2k>zJshO%WOpjQN~_Ym_pSMRT2I*s=F3YWLGIm-^S=wc<}-R#`k-<=?scdjbcm?URvXR zQHL?GcZv@M1e`~N<-HG4N`wU=)K^=u?>5R#g9q*9!0fW$$?B7rPp7h=ArF+xx76m`Y=uyMuo$pgrq{n{HOS3Td%tT zf!4+T03t_2hQ#_Um=UlkuCair(YO#wKc3`7l(u|a4q^Ea zNk$zCFLdch6H*FmJgv5qHriBwUsX_cb-nAOJ2~#9oGEmnQ`6a(3P|#NVqQ}zrcQ77 zUNTM!k7g@40gP13B_jA&2tSu2+6O6!oKIYkFdZkSJTNIR&I1a0pr%@5;XYiu^3W-q z2vK;aRO@wk#(`5ja!sReVNbLmC?8J*Afb?|sFVk{S+1w(XKS_JO>^CU`u}3O1_~xr zJsSi6nXX}kF^>;VuCxU+M;T8R%=n@Tl*@RTWL~*KTe<}p+oQ`@%`kTTSBNGE2T`UX ze%w~=fSLom$hHCxE-#cdy;L+qs$@atTRbh(d)FrwBR~4UD@elgF!0cW!%Bj88;qP; zAukw&h&yfzq4pSUx}~&##+aSUGr|g6K`usjYyo_zpmVw)JX;8a`gZ15B3Q7r!kS?y zV2-uX*9s<-h2vo>>jq+YBZ2xsW|&Z&q{KlE=LJcNY=+&XD4tH^oKRXg203#oBC;rt zIaLD~G>Q*gHb}IorE-QV(&HHbq*J(ni%qcztXx8WP!!^LCIBjy8e&od z3|#Y?UXGQ{bExIN#Il;rCJ5;sWjJ@L`SP!~9}ABmq1(-U$lWFQjMn5LI*C_g%q6$G)>q1-l&_YGhrNV%2$eb;Y5&|SNh1F*(_c9w7%)~n;FX7Y_rXvn8n zlVv6RyoMuss6GnLQw4vfR+7xp%NxShWG@>_qe;qtJe$4g?6 zS`ZO5v?!-d_$?&dMjj%a;3O}d_5Lsw5t9BS$^jSjWcM%Ab-=YtS4bx6fZQx#BHHC& zK+Lf9&RslzYt}eNLxigXzum@zw6!J&ny8XQL_*0^fR+}K-v=o|(FgXyhs!rFZ(e@5 zo`DVn9>81+dnWp)0QIo9@J{$KNO~4@qd@Pe#?XE_c<}5u2bC!C zo%IPo{ANBDaOQ`O227?|1XlMcIw3eZAAaL0RSB(s5)@q5&byw?MAQ1K2BTE(2zksL zn30=M-!i4nbfDk<93oUCDT}*)Xyu*fzcS&Kaf^(8z{bP0d%@Wo7Z2Kjj>+ZriVbFVv%cDzutxTUOtDlT0MLw)tO zcsH23Y}?m86y6zB<*wr2-d3|BYD;9bmi-8+23fGy6GFeiVzR^Ci5--!w_u>B7VG%| z{Pr4udwKr*qq4NtG>%O?wdef_fiUHwdnuQHPc3dwEN-V=C=D=qzYYV=W@^*U70(I{ z!2YoQ#9?*S_f7R6k_9=PC6I-mhzWKRpM?llDx_fGeFB8~4ven6A)Q?Slbbn}C z(y6BNInp#rF#4Yo@tYHi!y&>`>z|!iAJ&zp*8lm$ddSm3_0^lI|LLg>X3#bzi)}l9 z4>~ABZkF*WR-?=2VKpx9ns6q%Uv-02!yY|SX!O9LtH*;GkU;=1fSQq=I-hzra2q4x zA3JjkuxuWnw>ZFqG|vdn0(~FnP47hESFdJ6#q$5rcO~5%?6CrXY&J&y<9pZ z1=jWNS&}PJ&`clO25SdE`qlNj@2+0HfJHgaZ_kfdSoNEX6wI~KnVq#9u{@6TL(8j9 z9Li}yOIJ*G^ZN{(zvZ^kKcdTmF`V5_>AVle`)=1qs}Pgj6zegtdH}~qO-}KD(krm| z$2q-90s)U0Jon@vPm{Rj7&PH_&^Mtnd+c zs2_Bkp0Q0mpfYsof;4-cMS zaniED$^Mfq$+J0cCrN(3x9)C8cec7xQ@Q!OV%*&TKyRSOIwL0u%(HFOhZ zzeUQR0}JRm7Y6M*wMo6}d$3!y?tr97#lXvx%6%GtxK*f|u~UpdxAOhF>#Kk02o_?_ zxF8+bw6z_jF3WHknEm#(c* zSA+Jq4O#~FS%&dMOa&~d?ZLqisFbBYwljV|`2e9Pb2}(G-iW6lUvOs`U(WFix?Y;P zZgXpYZ@eMl^yI@7{a}Wkl`b(#uKUgg=Svaj)r?=&{c?mOD>-OP7G*G;fOs{F5M2in zT`Au%D9GG@J771iVOxmXY9=*95>!|qYC%#xN@SePpbXRt+Sw}jSfLCrn|GT#4MT1Z zpnTND$whb0@TxIMTW7s}M9`_XwV;qwX=WUM zUiypB@Fpy5K(*Wv-sH^1Sg;bx0(Hp_n>c1;~ zn4i0-sYZaByK{;|pR|Z~qa4h4CoC5;lq;b&9rFz4aA~K+vEC5bQBHU+gcnaJ@$d*W z6R8HoK{v!b_@03xC<&Jqz@63z7(lsy1WRLgw>q0CF~lh+%-t?9y$go**tAitzrylU z$>8%3*fsZ;Sw~L}2iOUOzHgdsMj5Ju&51KZyl;+?D>o?+lbLR!>E!jRm#<$(&v7tU z<^_#EUcEkts+Lf};+w0t(TjI)-dw)@>$Q_hPgK*KWWs$9a&Eq@DzaJe0<>p;P`&~( z6ki6P4RIn0*C3^t8Kl`nLSiIGq(ac~VH_*w<2+j#o(yeflAB#n1nw}IL^s;+JoSAC z9%L@#+Z_-LUkZF`L>&Vpu>Vu>*)a& z7SM?1dN>Qw>qa6a{^{k-+27&ce*yS&tv_XMWOHu%h}75=ZM7!(0QwOW=loZ$t9fjUK+xM&?WQIP^xe^9%W#AJ85A-R(M4tqT2d0oMX+YS7sOeG9? zxk`Te{w|Ss*W$Z&-ww?d$IH4(Rn8+b8uXWbw`=yBQT(IXA9;}9fRZrU@aT&Rx@G7~ zot3F6#40c7SMX6TyxZOen)S@R+uvui$z`&KmL*gfvsjhK3W zasN>?Vw{?(-L?Bk^bcZsYQ;l8>=vu7a5WrsG6Eg)gQjSgBj%M|PU<5q|L7v7cHow7Z@+lVQrBPqcwlFy10~*c?}7 zzsTU1WP6uH9+N)h#?}S^en5f0MJ;M;9q*hZGg>$g9>`Qa_?AeelW zmk?*L2Wyz*zTNf&0|kXOPo&ZU?2p0qe{y%73Jz6OrbT9a_(>k|K8eC74+ec|M$t{9 zUB0%tG&I$*#N>^rs-#qNF)cSfc<*Pl+K z+^+y(-rB@rCn1uVvYI(5J8=-6zvlCAkAOQHNEYz@ndrzAM90vM7#{F58xZVsf2qO! zAs{X!X|iV^Rb>cg#1dM)W32n?F1bt6G`+h9bdOi&xD*y7jw9^!j-qJp7+ILK(8e9E z&Lp}2bvVwqZmzjCp?YW!O6Q{~Pqm$nqUmQFOs1C0<@y1#?Xc~p2~fuE`OprC&iu$L%y&*s3BVW-~V)I z*Ily}?{JWYNDaSout(5Z@Rnkp01=jlyh-1M9q4Fl0E^QTRze4awOPiFf5laB90Ibn zJ{(lD4ZN39@tVp8R$?+)29{RAW_G-<)}z3J-fYKSG>1dm43tS^4he-ncjE;e_65DyDfl% ztI4C_`WV4}Q3FMF^_KHziFLWmuU%<)_B8Ckyi{%=h@j41dh1BR#|eS^HZ|eOf0grP%7Y{t_xb* zW)T>x@f4vptkc>zBf(oGh2e|DDhK7^AfKk}Rlt>(78#xJhgCOEY5z#NGy1sizTPA)UYb61epV33@D4I7P#*-*&T_cE<6j!%hJ+H z%X`4S%`gC>bpYy&rMgHyFw6eKtH4fi67Rbrw*?T+*i10Te;T$6B8Ter#K^d(|HJt= z8;gCgC#l@q}?d-Yhk0Y-K&}S?* z@d6lhV60T!K6Qk*x^&>;z6YYRUvH0_mav^bwTgh;^JLuAD#z$E0kzHpgS0za0K<4( zKM4o>zS*!(LEu#{IO&_!h|U4%f|b~dJ*45}(0y->m-UAi^#D7(MeX;h{? z6i$vfOUox53OvR{HqQf*U2y#Z*n^T^!u3&2+_&wXe@Oo+@Mk*k^>ch*%Ph!dBb{tM zA^wFQcaivig6_k3V8fZo-5kXGSH269MRGJVjBm)V2%tBccAnKW2>6h*aaJo#ztgN< z$JM#2GEeP}!+?PriC(bLjrB9aA9AmDE>$H&P;EYA3*N|!vq^|g1ERpgia#vHr-&nP zZ?W>3e~F?=RXDD-o2)?n2D@p)1(u@qI3i|4f*krI+At*LT`ZJcJE8ze?T+*s*IjT! zke+oQ)@P**Dwvz#quiu*kdkvB)uukNQe!b2C#Nn{F?L(>f-F+3tQ zJ&40;-u^??B^{4M*ygXF!9U?dNVq)U;Xx>Oc`1^pK3&qEbbd~!>+XQT1O7&&R6Wrmk{w%?)ss+L1XwGXWjXLVZ z<&uS$6Q)plD13nIu7`h)4vs2ou~P^wS$;Vo1)%nI=0tCou_OGcqtgO*1&wy8u%UO> z1m_GAaf-plywxuR7Ot_lq{2%G_svazttzN_QYS;hU3xOO0yNgzbA_Dy^e`!iHqfWc z6MC@cz%{qhY31AD3!dN!mWDY!PnhWv6XZ^_wT6H)=$lMN+h%{_Na^oVkGf5edf?;k zaNH6Fgu>Dd?Rwg>A}{D$1W1_W3~mA^3Md75xhP6iT%@@b%%@nEhaq$eBz>K^UV$LL zv=5HzWh%bS8JtNsjG&;n!Q4>;K^E?cBwVfCFdMnS`es}D!a{}07#jg0Mr?I-|E1nC zyUNjlB~~l!GaG;Nr3h7Ed;Civ3ij1*9~?Pj8O^;*&RNKSB9ADOc1K-LM~H)uq021# zy#s$+BAg9J?84$9??3X5n71~CKLnR9qri-~V5!d$_F2iu{Vk3n$rwa6-IyZm#dm*p zgxdnR7j+``@u+8D51prK)*&igaD!?ANaMc7!*Rc6jDmjkZD!DtD$c8bbj-J`Kk&R?tks$kk-Mqj?iJtU(Q-X*ihgO){W>M{B|Rr zu-s_W%5j?#HlqJKj1wK9!Wmp+;zkTd;<`2}0bX2K!dAF+GjO+JwMWyv`by4$cNK<0 zu35?m8}ENM?aVqBcfpiVR3S7$ajXk952_2z-W>B$&3if7ywm%z)Za4qU0mFsZPl=! z7o9LLn zW|EJ(Naqa$Ri~=V=M7_bF)Ltco@bfw($5;;Cij1g5_Yl%z^L)#>Xkb8))`sj1uz5}nyJEbMyYL*BPC7zGO+0SnZn>vJU!aqqh{dAO0Xo!p_{ zo`HWN)IRf$MReOGFn3xSNSAYJ>-JUFQlnm^L{gQh|#Js?A=Zk!@cn|~BFG^)cuwe9eLC=D&%RP{u z>e(E!SIIE3vNtxDg)O+PaFvf%zMy|a4YdX?OHn+t3Q{x`KOo0`>Bg3N;RR%}zc@&` zh0v@}5lgw;#`)#LxuW*C^zUN)`7b7WvI>l?hGkSM1QDIqgU|A42oJ$Jl_wo4rNQH24qWsJWq*^4XW<$>d$3CYaP|_FLj!+`g1;KMeX_|2 z`4khKGw~e<2F!Qp2gqiS#6x@7Hkkh8xf2z5f_2mx(Vv4l#toWm`ACTAZC)Fsg72umP0Y-j6dKFT=*Aa5Rl%3+lQaHYJY zOl;N~YWRMnHKRFvjzR%h-P|6OGzG_i?@ZQ=DX0 zAmfAoIs#b#ig)KOAgM8`3^2{j(!}`9->;J2Uw=Jo)A_!XV!P2}(T$g!XS4JMvwol; zCG3VOLdmc2Xd&tWwT@sNq@F)tO|0i8u(1`JPaE#Y>#(w5p5gq}Q3X>_1*KALneFdou4jNHmxf5*bEFHQwr1S=;} zj)TrQ$n$hc)6_ZgoU6e6dN~_;SDW!_oJL2homs@G4qNW4w&*Uc@^cZzG>S7D1R>3Y zP_JUn?F+C-OY){5qaEae^3wx;O4n<^V+&KjL$_)Zd{91JPlp^F%fI2;M+?Ze<&%AJV~1YDThdc zJk{x_gV72e6pon|jT$HcOCy`5!A)6Vj-t5E%CDOeeugBvn}H$2Fcn%W2veh(icNrx zD0TYlgq*6n%TKGStf6dc#5iq*&=uVO`jlpfHTda}e;t|mQe_9GvC57VvLmuu3Xxgi z0AdJaRecUMrpXf}^eA^Sly^FJf+s`ZGX`WVwUwq?Pb4eV$D-%jqLXsPhS!P@UdVDU ztq@EM;wChX9pY-H2>Djk7>76HZBWvJx(WnIi^9^F$|STb>Emb*a^Q<#xu)3HBUJ^U z=uio7e~U8;uHVk4kk1kU$mC%E&!=I3iuP5%UuvRo(t`vc8W`n1-`!JU{(5??>*-=T zVox3#yKY*$^pxi-S zCoA3lTmn4k$mftzz_iAZzpY!OPo3>v+HJAhk+N%x-3F4O?V&v9?Xj{fhE~J|@8@zt zf1N@Ed#j^1<#BxTFh&+>J@xdQr?}+}Q(n{5!1G#i^{ov#r97R@W6o#<4ayZ3mbU>k zifzAC4=-VBe$+l7&_shSO`zsWV>TlTKtr!1?Z;}hZR)Cq zlsB;kp+@=^Ve~j&py!nqK$kaXLK|CE2ebFYHUwrdZf`^iabjWiI{4xBbMnpWSBsx# z0&6wr!Rwa>DePj5s-&MOmszMS&vg z4R@wyfqIZgr>97yhS{-!6s^vi8Ows3evhRw-ymsKVcaz;*=yj=#}yuYf8wTC_hSv9 z@&-FljPOHKw6KcugOu3Qx)gnlkT&C?&Qa54iWK8*1W;!r%^mgBZ3*fhL zD6=@C$)f^!+Eqcq4iwOagCUMyRDjydX4iFanFHA1PjS%RSj*{75#G#Pvo+_oi70Q0 zPf2lE5Adob%0p^uy`XZ9f9uJW<)=4J{|v>3gUz&S|0tUJs7!++qin#v-_Dh?FxHAb zv-qUKy+2&~PRN&Sy#t>ECGEENxPyZgT*GeJmhVw3bp3U)l5juWp7KUpUUu{e-!3e3cqK`@7C=RVL>UX1{+2U^i$`JT4$z4sYwpFpPM1@xQqFVg+eg_Y^BXhb?)

xSzy?P4ChP2W!hCHwWWUW@{oH14>p+Dn4!A$%b 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�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

  • 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.871 E F0 .371 -(option has been set,)2.871 F F1(bash)2.871 E F0 .37(scans each w)2.87 F -.37(ord for the characters)-.1 F F1(*)2.87 E F0(,)A F1(?)2.87 E F0 2.87 -(,a)C(nd)-2.87 E F1([)2.87 E F0(.)A .677 -(If one of these characters appears, then the w)108 698.4 R .677 +.724(ord whose)-.1 F -.15(ex)108 640.8 S .176 +(pansion is non-null, the null ar).15 F .176(gument is remo)-.18 F -.15 +(ve)-.15 G 2.676(d. That).15 F .176(is, the w)2.676 F(ord)-.1 E/F5 10 +/Courier@0 SF -5.1672.676 F F0(becomes)2.675 E F52.675 +E F0 .175(after w)2.675 F .175(ord split-)-.1 F(ting and null ar)108 +652.8 Q(gument remo)-.18 E -.25(va)-.15 G(l.).25 E(Note that if no e)108 +669.6 Q(xpansion occurs, no splitting is performed.)-.15 E F1 -.1(Pa)87 +686.4 S(thname Expansion).1 E F0 .37(After w)108 698.4 R .37 +(ord splitting, unless the)-.1 F F12.87 E F0 .37 +(option has been set,)2.87 F F1(bash)2.87 E F0 .371(scans each w)2.871 F +.371(ord for the characters)-.1 F F1(*)2.871 E F0(,)A F1(?)2.871 E F0 +2.871(,a)C(nd)-2.871 E F1([)2.871 E F0(.)A .678 +(If one of these characters appears, then the w)108 710.4 R .677 (ord is re)-.1 F -.05(ga)-.15 G .677(rded as a).05 F F2(pattern)3.177 E -F0 3.177(,a).24 G .678(nd replaced with an alphabeti-)-3.177 F .562 -(cally sorted list of \214lenames matching the pattern \(see)108 710.4 R +F0 3.177(,a).24 G .677(nd replaced with an alphabeti-)-3.177 F .562 +(cally sorted list of \214lenames matching the pattern \(see)108 722.4 R F3 -.09(Pa)3.062 G(tter).09 E 2.812(nM)-.135 G(atching)-2.812 E F0(belo) -2.812 E 3.062(w\). If)-.25 F .561(no matching \214lenames)3.061 F .008 -(are found, and the shell option)108 722.4 R F1(nullglob)2.508 E F0 .008 -(is not enabled, the w)2.508 F .009(ord is left unchanged.)-.1 F .009 -(If the)5.009 F F1(nullglob)2.509 E F0 .009(option is)2.509 F -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(24)185.545 E 0 Cg EP +2.812 E 3.062(w\). If)-.25 F .562(no matching \214lenames)3.062 F +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(24)190.95 E 0 Cg EP %%Page: 25 25 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .443 -(set, and no matches are found, the w)108 84 R .443(ord is remo)-.1 F --.15(ve)-.15 G 2.943(d. If).15 F(the)2.942 E/F1 10/Times-Bold@0 SF -(failglob)2.942 E F0 .442(shell option is set, and no matches are)2.942 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .009 +(are found, and the shell option)108 84 R/F1 10/Times-Bold@0 SF +(nullglob)2.509 E F0 .008(is not enabled, the w)2.509 F .008 +(ord is left unchanged.)-.1 F .008(If the)5.008 F F1(nullglob)2.508 E F0 +.008(option is)2.508 F .442(set, and no matches are found, the w)108 96 +R .442(ord is remo)-.1 F -.15(ve)-.15 G 2.942(d. If).15 F(the)2.943 E F1 +(failglob)2.943 E F0 .443(shell option is set, and no matches are)2.943 F 1.38(found, an error message is printed and the command is not e)108 -96 R -.15(xe)-.15 G 3.88(cuted. If).15 F 1.38(the shell option)3.88 F F1 -(nocaseglob)3.88 E F0(is)3.88 E .104 -(enabled, the match is performed without re)108 108 R -.05(ga)-.15 G -.104(rd to the case of alphabetic characters.).05 F .103 -(When a pattern is used)5.103 F .377(for pathname e)108 120 R .377 +108 R -.15(xe)-.15 G 3.88(cuted. If).15 F 1.38(the shell option)3.88 F +F1(nocaseglob)3.88 E F0(is)3.88 E .103 +(enabled, the match is performed without re)108 120 R -.05(ga)-.15 G +.104(rd to the case of alphabetic characters.).05 F .104 +(When a pattern is used)5.104 F .378(for pathname e)108 132 R .378 (xpansion, the character)-.15 F F1 -.63(``)2.878 G -.55(.').63 G(')-.08 -E F0 .378(at the start of a name or immediately follo)5.378 F .378 -(wing a slash must be)-.25 F .579(matched e)108 132 R(xplicitly)-.15 E -3.079(,u)-.65 G .579(nless the shell option)-3.079 F F1(dotglob)3.079 E -F0 .579(is set.)3.079 F .578 -(When matching a pathname, the slash character)5.579 F 1.788(must al)108 -144 R -.1(wa)-.1 G 1.788(ys be matched e).1 F(xplicitly)-.15 E 6.788(.I) +E F0 .378(at the start of a name or immediately follo)5.378 F .377 +(wing a slash must be)-.25 F .578(matched e)108 144 R(xplicitly)-.15 E +3.078(,u)-.65 G .578(nless the shell option)-3.078 F F1(dotglob)3.079 E +F0 .579(is set.)3.079 F .579 +(When matching a pathname, the slash character)5.579 F 1.789(must al)108 +156 R -.1(wa)-.1 G 1.788(ys be matched e).1 F(xplicitly)-.15 E 6.788(.I) -.65 G 4.288(no)-6.788 G 1.788(ther cases, the)-4.288 F F1 -.63(``)4.288 G -.55(.').63 G(')-.08 E F0 1.788(character is not treated specially) -6.788 F 6.789(.S)-.65 G 1.789(ee the)-6.789 F .166(description of)108 -156 R F1(shopt)2.666 E F0(belo)2.666 E 2.666(wu)-.25 G(nder)-2.666 E/F2 -9/Times-Bold@0 SF .166(SHELL B)2.666 F(UIL)-.09 E .165(TIN COMMANDS) --.828 F F0 .165(for a description of the)2.415 F F1(nocaseglob)2.665 E -F0(,)A F1(null-)2.665 E(glob)108 168 Q F0(,)A F1(failglob)2.5 E F0 2.5 -(,a)C(nd)-2.5 E F1(dotglob)2.5 E F0(shell options.)2.5 E(The)108 184.8 Q -F2(GLOBIGNORE)2.785 E F0 .285(shell v)2.535 F .285 +6.788 F 6.788(.S)-.65 G 1.788(ee the)-6.788 F .165(description of)108 +168 R F1(shopt)2.665 E F0(belo)2.665 E 2.665(wu)-.25 G(nder)-2.665 E/F2 +9/Times-Bold@0 SF .165(SHELL B)2.665 F(UIL)-.09 E .165(TIN COMMANDS) +-.828 F F0 .166(for a description of the)2.415 F F1(nocaseglob)2.666 E +F0(,)A F1(null-)2.666 E(glob)108 180 Q F0(,)A F1(failglob)2.5 E F0 2.5 +(,a)C(nd)-2.5 E F1(dotglob)2.5 E F0(shell options.)2.5 E(The)108 196.8 Q +F2(GLOBIGNORE)2.786 E F0 .286(shell v)2.536 F .285 (ariable may be used to restrict the set of \214lenames matching a)-.25 -F/F3 10/Times-Italic@0 SF(pattern)2.786 E F0 5.286(.I).24 G(f)-5.286 E -F2(GLO-)2.786 E(BIGNORE)108 196.8 Q F0 2.316(is set, each matching \214\ -lename that also matches one of the patterns in)4.566 F F2(GLOBIGNORE) -4.816 E F0(is)4.565 E(remo)108 208.8 Q -.15(ve)-.15 G 3.914(df).15 G -1.414(rom the list of matches.)-3.914 F 1.415(If the)6.415 F F1 +F/F3 10/Times-Italic@0 SF(pattern)2.785 E F0 5.285(.I).24 G(f)-5.285 E +F2(GLO-)2.785 E(BIGNORE)108 208.8 Q F0 2.316(is set, each matching \214\ +lename that also matches one of the patterns in)4.565 F F2(GLOBIGNORE) +4.816 E F0(is)4.566 E(remo)108 220.8 Q -.15(ve)-.15 G 3.915(df).15 G +1.415(rom the list of matches.)-3.915 F 1.415(If the)6.415 F F1 (nocaseglob)3.915 E F0 1.415(option is set, the matching ag)3.915 F -1.415(ainst the patterns in)-.05 F F2(GLOBIGNORE)108 220.8 Q F0 .147 -(is performed without re)2.397 F -.05(ga)-.15 G .147(rd to case.).05 F +1.414(ainst the patterns in)-.05 F F2(GLOBIGNORE)108 232.8 Q F0 .146 +(is performed without re)2.396 F -.05(ga)-.15 G .146(rd to case.).05 F .146(The \214lenames)5.146 F F1 -.63(``)2.646 G -.55(.').63 G(')-.08 E -F0(and)5.146 E F1 -.63(``)2.646 G(..).63 E -.63('')-.55 G F0 .146 -(are al)5.776 F -.1(wa)-.1 G .146(ys ignored when).1 F F2(GLOBIGNORE)108 -232.8 Q F0 .827(is set and not null.)3.077 F(Ho)5.827 E(we)-.25 E -.15 +F0(and)5.147 E F1 -.63(``)2.647 G(..).63 E -.63('')-.55 G F0 .147 +(are al)5.777 F -.1(wa)-.1 G .147(ys ignored when).1 F F2(GLOBIGNORE)108 +244.8 Q F0 .827(is set and not null.)3.077 F(Ho)5.827 E(we)-.25 E -.15 (ve)-.25 G 1.627 -.4(r, s).15 H(etting).4 E F2(GLOBIGNORE)3.327 E F0 .827(to a non-null v)3.077 F .827(alue has the ef)-.25 F .827(fect of) --.25 F .683(enabling the)108 244.8 R F1(dotglob)3.183 E F0 .682 -(shell option, so all other \214lenames be)3.183 F .682(ginning with a) +-.25 F .682(enabling the)108 256.8 R F1(dotglob)3.182 E F0 .682 +(shell option, so all other \214lenames be)3.182 F .682(ginning with a) -.15 F F1 -.63(``)3.182 G -.55(.').63 G(')-.08 E F0 .682(will match.) -5.682 F 2.282 -.8(To g)5.682 H .682(et the old).8 F(beha)108 256.8 Q -1.184(vior of ignoring \214lenames be)-.2 F 1.184(ginning with a)-.15 F +5.682 F 2.283 -.8(To g)5.683 H .683(et the old).8 F(beha)108 268.8 Q +1.185(vior of ignoring \214lenames be)-.2 F 1.185(ginning with a)-.15 F F1 -.63(``)3.684 G -.55(.').63 G(')-.08 E F0 3.684(,m)C(ak)-3.684 E(e) --.1 E F1 -.63(``)3.684 G(.*').63 E(')-.63 E F0 1.185 -(one of the patterns in)6.185 F F2(GLOBIGNORE)3.685 E/F4 9/Times-Roman@0 -SF(.)A F0(The)108 268.8 Q F1(dotglob)3.132 E F0 .632 -(option is disabled when)3.132 F F2(GLOBIGNORE)3.132 E F0 .632 -(is unset.)2.882 F .631(The pattern matching honors the setting of)5.632 -F(the)108 280.8 Q F1(extglob)2.5 E F0(shell option.)2.5 E F1 -.1(Pa)108 -297.6 S(tter).1 E 2.5(nM)-.15 G(atching)-2.5 E F0(An)108 314.4 Q 3.138 +-.1 E F1 -.63(``)3.684 G(.*').63 E(')-.63 E F0 1.184 +(one of the patterns in)6.184 F F2(GLOBIGNORE)3.684 E/F4 9/Times-Roman@0 +SF(.)A F0(The)108 280.8 Q F1(dotglob)3.131 E F0 .631 +(option is disabled when)3.131 F F2(GLOBIGNORE)3.132 E F0 .632 +(is unset.)2.882 F .632(The pattern matching honors the setting of)5.632 +F(the)108 292.8 Q F1(extglob)2.5 E F0(shell option.)2.5 E F1 -.1(Pa)108 +309.6 S(tter).1 E 2.5(nM)-.15 G(atching)-2.5 E F0(An)108 326.4 Q 3.138 (yc)-.15 G .638(haracter that appears in a pattern, other than the spec\ ial pattern characters described belo)-3.138 F 1.938 -.65(w, m)-.25 H -(atches).65 E 3.62(itself. The)108 326.4 R 1.12 +(atches).65 E 3.62(itself. The)108 338.4 R 1.12 (NUL character may not occur in a pattern.)3.62 F 3.62(Ab)6.12 G 1.12 (ackslash escapes the follo)-3.62 F 1.12(wing character; the)-.25 F .576 -(escaping backslash is discarded when matching.)108 338.4 R .576 +(escaping backslash is discarded when matching.)108 350.4 R .576 (The special pattern characters must be quoted if the)5.576 F 3.076(ya) --.15 G(re)-3.076 E(to be matched literally)108 350.4 Q(.)-.65 E -(The special pattern characters ha)108 367.2 Q .3 -.15(ve t)-.2 H -(he follo).15 E(wing meanings:)-.25 E F1(*)144 384 Q F0 .377(Matches an) -180 384 R 2.877(ys)-.15 G .376(tring, including the null string.)-2.877 -F .376(When the)5.376 F F1(globstar)2.876 E F0 .376 -(shell option is enabled,)2.876 F(and)180 396 Q F1(*)3.275 E F0 .775 +-.15 G(re)-3.076 E(to be matched literally)108 362.4 Q(.)-.65 E +(The special pattern characters ha)108 379.2 Q .3 -.15(ve t)-.2 H +(he follo).15 E(wing meanings:)-.25 E F1(*)144 396 Q F0 .376(Matches an) +180 396 R 2.876(ys)-.15 G .376(tring, including the null string.)-2.876 +F .376(When the)5.376 F F1(globstar)2.876 E F0 .377 +(shell option is enabled,)2.876 F(and)180 408 Q F1(*)3.275 E F0 .775 (is used in a pathname e)3.275 F .775(xpansion conte)-.15 F .775(xt, tw) -.15 F 3.275(oa)-.1 G(djacent)-3.275 E F1(*)3.275 E F0 3.275(su)C .775 (sed as a single pattern)-3.275 F 1.058(will match all \214les and zero\ - or more directories and subdirectories.)180 408 R 1.058(If follo)6.058 -F 1.058(wed by a)-.25 F F1(/)3.558 E F0(,)A(tw)180 420 Q 2.5(oa)-.1 G + or more directories and subdirectories.)180 420 R 1.058(If follo)6.058 +F 1.058(wed by a)-.25 F F1(/)3.558 E F0(,)A(tw)180 432 Q 2.5(oa)-.1 G (djacent)-2.5 E F1(*)2.5 E F0 2.5(sw)C -(ill match only directories and subdirectories.)-2.5 E F1(?)144 432 Q F0 -(Matches an)180 432 Q 2.5(ys)-.15 G(ingle character)-2.5 E(.)-.55 E F1 -([...])144 444 Q F0 .578(Matches an)180 444 R 3.078(yo)-.15 G .578 -(ne of the enclosed characters.)-3.078 F 3.079(Ap)5.579 G .579 -(air of characters separated by a h)-3.079 F(yphen)-.05 E .685 -(denotes a)180 456 R F3 -.15(ra)3.185 G(ng).15 E 3.184(ee)-.1 G(xpr) +(ill match only directories and subdirectories.)-2.5 E F1(?)144 444 Q F0 +(Matches an)180 444 Q 2.5(ys)-.15 G(ingle character)-2.5 E(.)-.55 E F1 +([...])144 456 Q F0 .579(Matches an)180 456 R 3.079(yo)-.15 G .579 +(ne of the enclosed characters.)-3.079 F 3.079(Ap)5.579 G .578 +(air of characters separated by a h)-3.079 F(yphen)-.05 E .684 +(denotes a)180 468 R F3 -.15(ra)3.184 G(ng).15 E 3.184(ee)-.1 G(xpr) -3.384 E(ession)-.37 E F0 3.184(;a)C .984 -.15(ny c)-3.184 H .684 -(haracter that f).15 F .684(alls between those tw)-.1 F 3.184(oc)-.1 G -.684(haracters, inclu-)-3.184 F(si)180 468 Q -.15(ve)-.25 G 3.712(,u).15 -G 1.212(sing the current locale')-3.712 F 3.712(sc)-.55 G 1.212 -(ollating sequence and character set, is matched.)-3.712 F 1.213(If the) -6.213 F 1.124(\214rst character follo)180 480 R 1.124(wing the)-.25 F F1 -([)3.624 E F0 1.124(is a)3.624 F F1(!)3.624 E F0 1.124(or a)6.124 F F1 -(^)3.623 E F0 1.123(then an)3.623 F 3.623(yc)-.15 G 1.123 -(haracter not enclosed is matched.)-3.623 F .894 -(The sorting order of characters in range e)180 492 R .895 -(xpressions is determined by the current locale)-.15 F .376(and the v) -180 504 R .376(alues of the)-.25 F F2(LC_COLLA)2.875 E(TE)-.855 E F0(or) +(haracter that f).15 F .684(alls between those tw)-.1 F 3.185(oc)-.1 G +.685(haracters, inclu-)-3.185 F(si)180 480 Q -.15(ve)-.25 G 3.713(,u).15 +G 1.213(sing the current locale')-3.713 F 3.712(sc)-.55 G 1.212 +(ollating sequence and character set, is matched.)-3.712 F 1.212(If the) +6.212 F 1.123(\214rst character follo)180 492 R 1.123(wing the)-.25 F F1 +([)3.623 E F0 1.123(is a)3.623 F F1(!)3.623 E F0 1.124(or a)6.123 F F1 +(^)3.624 E F0 1.124(then an)3.624 F 3.624(yc)-.15 G 1.124 +(haracter not enclosed is matched.)-3.624 F .895 +(The sorting order of characters in range e)180 504 R .894 +(xpressions is determined by the current locale)-.15 F .375(and the v) +180 516 R .375(alues of the)-.25 F F2(LC_COLLA)2.875 E(TE)-.855 E F0(or) 2.625 E F2(LC_ALL)2.875 E F0 .375(shell v)2.625 F .375 -(ariables, if set.)-.25 F 1.975 -.8(To o)5.375 H .375(btain the tra-).8 -F .067(ditional interpretation of range e)180 516 R .067 -(xpressions, where)-.15 F F1([a\255d])2.567 E F0 .068(is equi)2.568 F --.25(va)-.25 G .068(lent to).25 F F1([abcd])2.568 E F0 2.568(,s)C .068 -(et v)-2.568 F(alue)-.25 E .157(of the)180 528 R F1(LC_ALL)2.657 E F0 -.157(shell v)2.657 F .157(ariable to)-.25 F F1(C)2.657 E F0 2.657(,o)C +(ariables, if set.)-.25 F 1.976 -.8(To o)5.376 H .376(btain the tra-).8 +F .068(ditional interpretation of range e)180 528 R .068 +(xpressions, where)-.15 F F1([a\255d])2.568 E F0 .067(is equi)2.567 F +-.25(va)-.25 G .067(lent to).25 F F1([abcd])2.567 E F0 2.567(,s)C .067 +(et v)-2.567 F(alue)-.25 E .156(of the)180 540 R F1(LC_ALL)2.656 E F0 +.156(shell v)2.656 F .156(ariable to)-.25 F F1(C)2.657 E F0 2.657(,o)C 2.657(re)-2.657 G .157(nable the)-2.657 F F1(globasciiranges)2.657 E F0 -.156(shell option.)2.656 F(A)5.156 E F12.656 E F0(may)2.656 E .193(\ +.157(shell option.)2.657 F(A)5.157 E F12.657 E F0(may)2.657 E .193(\ be matched by including it as the \214rst or last character in the set.) -180 540 R(A)5.193 E F1(])2.693 E F0 .194(may be matched by)2.693 F -(including it as the \214rst character in the set.)180 552 Q -.4(Wi)180 -570 S(thin).4 E F1([)3.071 E F0(and)3.071 E F1(])3.071 E F0(,)A F3 -.15 -(ch)3.071 G(ar).15 E .571(acter classes)-.15 F F0 .571 -(can be speci\214ed using the syntax)3.071 F F1([:)3.07 E F3(class)A F1 -(:])A F0 3.07(,w)C(here)-3.07 E F3(class)3.07 E F0(is one of the follo) -180 582 Q(wing classes de\214ned in the POSIX standard:)-.25 E F1 8.173 -(alnum alpha ascii blank cntrl digit graph lo)180 594 R 8.173 -(wer print punct space)-.1 F 5(upper w)180 606 R 5(ord xdigit)-.1 F F0 -4.29(Ac)180 618 S 1.789(haracter class matches an)-4.29 F 4.289(yc)-.15 -G 1.789(haracter belonging to that class.)-4.289 F(The)6.789 E F1 -.1 -(wo)4.289 G(rd).1 E F0(character)4.289 E -(class matches letters, digits, and the character _.)180 630 Q -.4(Wi) -180 648 S(thin).4 E F1([)4.536 E F0(and)4.536 E F1(])4.536 E F0 4.536 -(,a)C(n)-4.536 E F3 2.036(equivalence class)4.536 F F0 2.037 -(can be speci\214ed using the syntax)4.536 F F1([=)4.537 E F3(c)A F1(=]) -A F0 4.537(,w)C(hich)-4.537 E .125(matches all characters with the same\ - collation weight \(as de\214ned by the current locale\) as)180 660 R -(the character)180 672 Q F3(c)2.5 E F0(.)A -.4(Wi)180 690 S(thin).4 E F1 +180 552 R(A)5.193 E F1(])2.693 E F0 .193(may be matched by)2.693 F +(including it as the \214rst character in the set.)180 564 Q -.4(Wi)180 +582 S(thin).4 E F1([)3.07 E F0(and)3.07 E F1(])3.07 E F0(,)A F3 -.15(ch) +3.07 G(ar).15 E .571(acter classes)-.15 F F0 .571 +(can be speci\214ed using the syntax)3.071 F F1([:)3.071 E F3(class)A F1 +(:])A F0 3.071(,w)C(here)-3.071 E F3(class)3.071 E F0 +(is one of the follo)180 594 Q +(wing classes de\214ned in the POSIX standard:)-.25 E F1 8.173 +(alnum alpha ascii blank cntrl digit graph lo)180 606 R 8.173 +(wer print punct space)-.1 F 5(upper w)180 618 R 5(ord xdigit)-.1 F F0 +4.289(Ac)180 630 S 1.789(haracter class matches an)-4.289 F 4.289(yc) +-.15 G 1.789(haracter belonging to that class.)-4.289 F(The)6.789 E F1 +-.1(wo)4.29 G(rd).1 E F0(character)4.29 E +(class matches letters, digits, and the character _.)180 642 Q -.4(Wi) +180 660 S(thin).4 E F1([)4.537 E F0(and)4.537 E F1(])4.537 E F0 4.537 +(,a)C(n)-4.537 E F3 2.037(equivalence class)4.537 F F0 2.036 +(can be speci\214ed using the syntax)4.536 F F1([=)4.536 E F3(c)A F1(=]) +A F0 4.536(,w)C(hich)-4.536 E .125(matches all characters with the same\ + collation weight \(as de\214ned by the current locale\) as)180 672 R +(the character)180 684 Q F3(c)2.5 E F0(.)A -.4(Wi)180 702 S(thin).4 E F1 ([)2.5 E F0(and)2.5 E F1(])2.5 E F0 2.5(,t)C(he syntax)-2.5 E F1([.)2.5 E F3(symbol)A F1(.])A F0(matches the collating symbol)2.5 E F3(symbol) -2.5 E F0(.)A .704(If the)108 706.8 R F1(extglob)3.204 E F0 .705 -(shell option is enabled using the)3.204 F F1(shopt)3.205 E F0 -.2(bu) -3.205 G .705(iltin, se).2 F -.15(ve)-.25 G .705(ral e).15 F .705 -(xtended pattern matching operators)-.15 F .256(are recognized.)108 -718.8 R .256(In the follo)5.256 F .256(wing description, a)-.25 F F3 +2.5 E F0(.)A .705(If the)108 718.8 R F1(extglob)3.205 E F0 .705 +(shell option is enabled using the)3.205 F F1(shopt)3.205 E F0 -.2(bu) +3.205 G .704(iltin, se).2 F -.15(ve)-.25 G .704(ral e).15 F .704 +(xtended pattern matching operators)-.15 F .255(are recognized.)108 +730.8 R .255(In the follo)5.255 F .255(wing description, a)-.25 F F3 (pattern-list)2.755 E F0 .255 -(is a list of one or more patterns separated by a)2.755 F F1(|)2.755 E -F0(.)A(Composite patterns may be formed using one or more of the follo) -108 730.8 Q(wing sub-patterns:)-.25 E(GNU Bash 4.4)72 768 Q(2015 No) -136.385 E -.15(ve)-.15 G(mber 16).15 E(25)185.545 E 0 Cg EP +(is a list of one or more patterns separated by a)2.755 F F1(|)2.756 E +F0(.)A(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(25)190.95 E 0 Cg +EP %%Page: 26 26 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(?\()144 84 Q/F2 10/Times-Italic@0 SF(pattern-list).833 E F1(\)).833 E -F0(Matches zero or one occurrence of the gi)180 96 Q -.15(ve)-.25 G 2.5 -(np).15 G(atterns)-2.5 E F1(*\()144 108 Q F2(pattern-list).833 E F1(\)) -.833 E F0(Matches zero or more occurrences of the gi)180 120 Q -.15(ve) --.25 G 2.5(np).15 G(atterns)-2.5 E F1(+\()144 132 Q F2(pattern-list).833 -E F1(\)).833 E F0(Matches one or more occurrences of the gi)180 144 Q --.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(@\()144 156 Q F2 -(pattern-list).833 E F1(\)).833 E F0(Matches one of the gi)180 168 Q --.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(!\()144 180 Q F2 -(pattern-list).833 E F1(\)).833 E F0(Matches an)180 192 Q(ything e)-.15 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(Composite patterns may be formed using one or more of the follo)108 84 +Q(wing sub-patterns:)-.25 E/F1 10/Times-Bold@0 SF(?\()144 108 Q/F2 10 +/Times-Italic@0 SF(pattern-list).833 E F1(\)).833 E F0 +(Matches zero or one occurrence of the gi)180 120 Q -.15(ve)-.25 G 2.5 +(np).15 G(atterns)-2.5 E F1(*\()144 132 Q F2(pattern-list).833 E F1(\)) +.833 E F0(Matches zero or more occurrences of the gi)180 144 Q -.15(ve) +-.25 G 2.5(np).15 G(atterns)-2.5 E F1(+\()144 156 Q F2(pattern-list).833 +E F1(\)).833 E F0(Matches one or more occurrences of the gi)180 168 Q +-.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(@\()144 180 Q F2 +(pattern-list).833 E F1(\)).833 E F0(Matches one of the gi)180 192 Q +-.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(!\()144 204 Q F2 +(pattern-list).833 E F1(\)).833 E F0(Matches an)180 216 Q(ything e)-.15 E(xcept one of the gi)-.15 E -.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E -F1(Quote Remo)87 208.8 Q -.1(va)-.1 G(l).1 E F0 1.112 -(After the preceding e)108 220.8 R 1.112 +F1(Quote Remo)87 232.8 Q -.1(va)-.1 G(l).1 E F0 1.113 +(After the preceding e)108 244.8 R 1.113 (xpansions, all unquoted occurrences of the characters)-.15 F F1(\\) -3.613 E F0(,)A F1<08>3.613 E F0 3.613(,a)C(nd)-3.613 E F1(")4.446 E F0 -1.113(that did not result)4.446 F(from one of the abo)108 232.8 Q .3 +3.613 E F0(,)A F1<08>3.612 E F0 3.612(,a)C(nd)-3.612 E F1(")4.445 E F0 +1.112(that did not result)4.445 F(from one of the abo)108 256.8 Q .3 -.15(ve ex)-.15 H(pansions are remo).15 E -.15(ve)-.15 G(d.).15 E/F3 -10.95/Times-Bold@0 SF(REDIRECTION)72 249.6 Q F0 .545 -(Before a command is e)108 261.6 R -.15(xe)-.15 G .545 +10.95/Times-Bold@0 SF(REDIRECTION)72 273.6 Q F0 .545 +(Before a command is e)108 285.6 R -.15(xe)-.15 G .545 (cuted, its input and output may be).15 F F2 -.37(re)3.045 G(dir).37 E (ected)-.37 E F0 .545(using a special notation interpreted)3.815 F .405 -(by the shell.)108 273.6 R .405(Redirection allo)5.405 F .405(ws comman\ +(by the shell.)108 297.6 R .405(Redirection allo)5.405 F .405(ws comman\ ds' \214le handles to be duplicated, opened, closed, made to refer to) --.25 F(dif)108 285.6 Q 1.02(ferent \214les, and can change the \214les \ -the command reads from and writes to.)-.25 F 1.019 -(Redirection may also be)6.019 F .215 -(used to modify \214le handles in the current shell e)108 297.6 R -.15 +-.25 F(dif)108 309.6 Q 1.019(ferent \214les, and can change the \214les\ + the command reads from and writes to.)-.25 F 1.02 +(Redirection may also be)6.02 F .215 +(used to modify \214le handles in the current shell e)108 321.6 R -.15 (xe)-.15 G .215(cution en).15 F 2.715(vironment. The)-.4 F(follo)2.715 E -.215(wing redirection operators)-.25 F .876(may precede or appear an)108 -309.6 R .876(ywhere within a)-.15 F F2 .875(simple command)3.715 F F0 -.875(or may follo)4.145 F 3.375(wa)-.25 G F2(command)A F0 5.875(.R).77 G -.875(edirections are)-5.875 F(processed in the order the)108 321.6 Q 2.5 +.215(wing redirection operators)-.25 F .875(may precede or appear an)108 +333.6 R .875(ywhere within a)-.15 F F2 .875(simple command)3.715 F F0 +.875(or may follo)4.145 F 3.376(wa)-.25 G F2(command)A F0 5.876(.R).77 G +.876(edirections are)-5.876 F(processed in the order the)108 345.6 Q 2.5 (ya)-.15 G(ppear)-2.5 E 2.5(,f)-.4 G(rom left to right.)-2.5 E .771(Eac\ h redirection that may be preceded by a \214le descriptor number may in\ -stead be preceded by a w)108 338.4 R .772(ord of)-.1 F .293(the form {) -108 350.4 R F2(varname)A F0 2.793(}. In)B .293 +stead be preceded by a w)108 362.4 R .771(ord of)-.1 F .292(the form {) +108 374.4 R F2(varname)A F0 2.793(}. In)B .293 (this case, for each redirection operator e)2.793 F .293 -(xcept >&- and <&-, the shell will allocate)-.15 F 3.179<618c>108 362.4 -S .679(le descriptor greater than or equal to 10 and assign it to)-3.179 -F F2(varname)3.179 E F0 5.679(.I)C 3.179(f>)-5.679 G .679 -(&- or <&- is preceded by {)-3.179 F F2(var)A(-)-.2 E(name)108 374.4 Q +(xcept >&- and <&-, the shell will allocate)-.15 F 3.18<618c>108 386.4 S +.679(le descriptor greater than or equal to 10 and assign it to)-3.18 F +F2(varname)3.179 E F0 5.679(.I)C 3.179(f>)-5.679 G .679 +(&- or <&- is preceded by {)-3.179 F F2(var)A(-)-.2 E(name)108 398.4 Q F0(}, the v)A(alue of)-.25 E F2(varname)2.5 E F0 -(de\214nes the \214le descriptor to close.)2.5 E .284(In the follo)108 -391.2 R .283(wing descriptions, if the \214le descriptor number is omit\ -ted, and the \214rst character of the redirect-)-.25 F .512 -(ion operator is)108 403.2 R F1(<)3.012 E F0 3.012(,t)C .512 +(de\214nes the \214le descriptor to close.)2.5 E .283(In the follo)108 +415.2 R .284(wing descriptions, if the \214le descriptor number is omit\ +ted, and the \214rst character of the redirect-)-.25 F .513 +(ion operator is)108 427.2 R F1(<)3.012 E F0 3.012(,t)C .512 (he redirection refers to the standard input \(\214le descriptor 0\).) -3.012 F .512(If the \214rst character of the)5.512 F -(redirection operator is)108 415.2 Q F1(>)2.5 E F0 2.5(,t)C +(redirection operator is)108 439.2 Q F1(>)2.5 E F0 2.5(,t)C (he redirection refers to the standard output \(\214le descriptor 1\).) --2.5 E .825(The w)108 432 R .825(ord follo)-.1 F .824 -(wing the redirection operator in the follo)-.25 F .824 -(wing descriptions, unless otherwise noted, is sub-)-.25 F .462 -(jected to brace e)108 444 R .462(xpansion, tilde e)-.15 F .463 -(xpansion, parameter and v)-.15 F .463(ariable e)-.25 F .463 -(xpansion, command substitution, arith-)-.15 F .867(metic e)108 456 R -.867(xpansion, quote remo)-.15 F -.25(va)-.15 G .867(l, pathname e).25 F +-2.5 E .824(The w)108 456 R .824(ord follo)-.1 F .824 +(wing the redirection operator in the follo)-.25 F .825 +(wing descriptions, unless otherwise noted, is sub-)-.25 F .463 +(jected to brace e)108 468 R .463(xpansion, tilde e)-.15 F .462 +(xpansion, parameter and v)-.15 F .462(ariable e)-.25 F .462 +(xpansion, command substitution, arith-)-.15 F .866(metic e)108 480 R +.866(xpansion, quote remo)-.15 F -.25(va)-.15 G .866(l, pathname e).25 F .867(xpansion, and w)-.15 F .867(ord splitting.)-.1 F .867(If it e)5.867 -F .866(xpands to more than one)-.15 F -.1(wo)108 468 S(rd,).1 E F1(bash) +F .867(xpands to more than one)-.15 F -.1(wo)108 492 S(rd,).1 E F1(bash) 2.5 E F0(reports an error)2.5 E(.)-.55 E -(Note that the order of redirections is signi\214cant.)108 484.8 Q -.15 -(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 501.6 Q F1(>)2.5 +(Note that the order of redirections is signi\214cant.)108 508.8 Q -.15 +(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 525.6 Q F1(>)2.5 E F0(dirlist 2)2.5 E F1(>&)A F0(1)A -(directs both standard output and standard error to the \214le)108 518.4 +(directs both standard output and standard error to the \214le)108 542.4 Q F2(dirlist)2.5 E F0 2.5(,w).68 G(hile the command)-2.5 E(ls 2)144 -535.2 Q F1(>&)A F0(1)A F1(>)2.5 E F0(dirlist)2.5 E .527 -(directs only the standard output to \214le)108 552 R F2(dirlist)3.027 E +559.2 Q F1(>&)A F0(1)A F1(>)2.5 E F0(dirlist)2.5 E .527 +(directs only the standard output to \214le)108 576 R F2(dirlist)3.027 E F0 3.027(,b).68 G .527(ecause the standard error w)-3.027 F .527 (as duplicated from the standard)-.1 F -(output before the standard output w)108 564 Q(as redirected to)-.1 E F2 -(dirlist)2.5 E F0(.).68 E F1(Bash)108 580.8 Q F0 .599(handles se)3.099 F --.15(ve)-.25 G .599(ral \214lenames specially when the).15 F 3.099(ya) --.15 G .598(re used in redirections, as described in the follo)-3.099 F -(wing)-.25 E(table:)108 592.8 Q F1(/de)144 609.6 Q(v/fd/)-.15 E F2(fd)A -F0(If)180 621.6 Q F2(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E(ger)-.15 +(output before the standard output w)108 588 Q(as redirected to)-.1 E F2 +(dirlist)2.5 E F0(.).68 E F1(Bash)108 604.8 Q F0 .598(handles se)3.098 F +-.15(ve)-.25 G .598(ral \214lenames specially when the).15 F 3.099(ya) +-.15 G .599(re used in redirections, as described in the follo)-3.099 F +(wing)-.25 E(table:)108 616.8 Q F1(/de)144 633.6 Q(v/fd/)-.15 E F2(fd)A +F0(If)180 645.6 Q F2(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E(ger)-.15 E 2.5<2c8c>-.4 G(le descriptor)-2.5 E F2(fd)2.5 E F0(is duplicated.)2.5 -E F1(/de)144 633.6 Q(v/stdin)-.15 E F0(File descriptor 0 is duplicated.) -180 645.6 Q F1(/de)144 657.6 Q(v/stdout)-.15 E F0 -(File descriptor 1 is duplicated.)180 669.6 Q F1(/de)144 681.6 Q -(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180 693.6 Q F1(/de) -144 705.6 Q(v/tcp/)-.15 E F2(host)A F1(/)A F2(port)A F0(If)180 717.6 Q -F2(host)2.996 E F0 .496(is a v)2.996 F .496 -(alid hostname or Internet address, and)-.25 F F2(port)2.997 E F0 .497 -(is an inte)2.997 F .497(ger port number or ser)-.15 F(-)-.2 E -(vice name,)180 729.6 Q F1(bash)2.5 E F0 -(attempts to open the corresponding TCP sock)2.5 E(et.)-.1 E -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(26)185.545 E 0 Cg EP +E F1(/de)144 657.6 Q(v/stdin)-.15 E F0(File descriptor 0 is duplicated.) +180 669.6 Q F1(/de)144 681.6 Q(v/stdout)-.15 E F0 +(File descriptor 1 is duplicated.)180 693.6 Q F1(/de)144 705.6 Q +(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180 717.6 Q +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(26)190.95 E 0 Cg EP %%Page: 27 27 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(/de)144 84 Q(v/udp/)-.15 E/F2 10/Times-Italic@0 SF(host)A F1(/)A F2 +SF(/de)144 84 Q(v/tcp/)-.15 E/F2 10/Times-Italic@0 SF(host)A F1(/)A F2 (port)A F0(If)180 96 Q F2(host)2.997 E F0 .497(is a v)2.997 F .497 (alid hostname or Internet address, and)-.25 F F2(port)2.996 E F0 .496 (is an inte)2.996 F .496(ger port number or ser)-.15 F(-)-.2 E (vice name,)180 108 Q F1(bash)2.5 E F0 +(attempts to open the corresponding TCP sock)2.5 E(et.)-.1 E F1(/de)144 +120 Q(v/udp/)-.15 E F2(host)A F1(/)A F2(port)A F0(If)180 132 Q F2(host) +2.996 E F0 .496(is a v)2.996 F .496 +(alid hostname or Internet address, and)-.25 F F2(port)2.997 E F0 .497 +(is an inte)2.997 F .497(ger port number or ser)-.15 F(-)-.2 E +(vice name,)180 144 Q F1(bash)2.5 E F0 (attempts to open the corresponding UDP sock)2.5 E(et.)-.1 E 2.5(Af)108 -124.8 S(ailure to open or create a \214le causes the redirection to f) --2.6 E(ail.)-.1 E .946(Redirections using \214le descriptors greater th\ -an 9 should be used with care, as the)108 141.6 R 3.447(ym)-.15 G .947 -(ay con\215ict with \214le)-3.447 F -(descriptors the shell uses internally)108 153.6 Q(.)-.65 E F1(Redir)87 -170.4 Q(ecting Input)-.18 E F0 .391 +160.8 S(ailure to open or create a \214le causes the redirection to f) +-2.6 E(ail.)-.1 E .947(Redirections using \214le descriptors greater th\ +an 9 should be used with care, as the)108 177.6 R 3.446(ym)-.15 G .946 +(ay con\215ict with \214le)-3.446 F +(descriptors the shell uses internally)108 189.6 Q(.)-.65 E F1(Redir)87 +206.4 Q(ecting Input)-.18 E F0 .391 (Redirection of input causes the \214le whose name results from the e) -108 182.4 R .391(xpansion of)-.15 F F2(wor)3.231 E(d)-.37 E F0 .391 -(to be opened for read-)3.661 F(ing on \214le descriptor)108 194.4 Q F2 +108 218.4 R .391(xpansion of)-.15 F F2(wor)3.231 E(d)-.37 E F0 .391 +(to be opened for read-)3.661 F(ing on \214le descriptor)108 230.4 Q F2 (n)2.5 E F0 2.5(,o).24 G 2.5(rt)-2.5 G (he standard input \(\214le descriptor 0\) if)-2.5 E F2(n)2.86 E F0 (is not speci\214ed.)2.74 E -(The general format for redirecting input is:)108 211.2 Q([)144 228 Q F2 -(n)A F0(])A F1(<)A F2(wor)A(d)-.37 E F1(Redir)87 244.8 Q(ecting Output) --.18 E F0 .174 +(The general format for redirecting input is:)108 247.2 Q([)144 264 Q F2 +(n)A F0(])A F1(<)A F2(wor)A(d)-.37 E F1(Redir)87 280.8 Q(ecting Output) +-.18 E F0 .175 (Redirection of output causes the \214le whose name results from the e) -108 256.8 R .175(xpansion of)-.15 F F2(wor)3.015 E(d)-.37 E F0 .175 -(to be opened for writ-)3.445 F .825(ing on \214le descriptor)108 268.8 -R F2(n)3.325 E F0 3.325(,o).24 G 3.325(rt)-3.325 G .824 -(he standard output \(\214le descriptor 1\) if)-3.325 F F2(n)3.684 E F0 -.824(is not speci\214ed.)3.564 F .824(If the \214le does not)5.824 F --.15(ex)108 280.8 S(ist it is created; if it does e).15 E +108 292.8 R .174(xpansion of)-.15 F F2(wor)3.014 E(d)-.37 E F0 .174 +(to be opened for writ-)3.444 F .824(ing on \214le descriptor)108 304.8 +R F2(n)3.324 E F0 3.324(,o).24 G 3.324(rt)-3.324 G .824 +(he standard output \(\214le descriptor 1\) if)-3.324 F F2(n)3.684 E F0 +.824(is not speci\214ed.)3.564 F .825(If the \214le does not)5.825 F +-.15(ex)108 316.8 S(ist it is created; if it does e).15 E (xist it is truncated to zero size.)-.15 E -(The general format for redirecting output is:)108 297.6 Q([)144 314.4 Q -F2(n)A F0(])A F1(>)A F2(wor)A(d)-.37 E F0 .154 -(If the redirection operator is)108 331.2 R F1(>)2.654 E F0 2.654(,a)C -.154(nd the)-2.654 F F1(noclob)2.654 E(ber)-.1 E F0 .154(option to the) -2.654 F F1(set)2.655 E F0 -.2(bu)2.655 G .155 -(iltin has been enabled, the redirection).2 F .658(will f)108 343.2 R -.658(ail if the \214le whose name results from the e)-.1 F .658 -(xpansion of)-.15 F F2(wor)3.158 E(d)-.37 E F0 -.15(ex)3.158 G .657 -(ists and is a re).15 F .657(gular \214le.)-.15 F .657(If the redi-) -5.657 F .408(rection operator is)108 355.2 R F1(>|)2.909 E F0 2.909(,o)C +(The general format for redirecting output is:)108 333.6 Q([)144 350.4 Q +F2(n)A F0(])A F1(>)A F2(wor)A(d)-.37 E F0 .155 +(If the redirection operator is)108 367.2 R F1(>)2.655 E F0 2.655(,a)C +.155(nd the)-2.655 F F1(noclob)2.655 E(ber)-.1 E F0 .154(option to the) +2.654 F F1(set)2.654 E F0 -.2(bu)2.654 G .154 +(iltin has been enabled, the redirection).2 F .657(will f)108 379.2 R +.657(ail if the \214le whose name results from the e)-.1 F .658 +(xpansion of)-.15 F F2(wor)3.158 E(d)-.37 E F0 -.15(ex)3.158 G .658 +(ists and is a re).15 F .658(gular \214le.)-.15 F .658(If the redi-) +5.658 F .409(rection operator is)108 391.2 R F1(>|)2.909 E F0 2.909(,o)C 2.909(rt)-2.909 G .409(he redirection operator is)-2.909 F F1(>)2.909 E F0 .409(and the)2.909 F F1(noclob)2.909 E(ber)-.1 E F0 .409 -(option to the)2.909 F F1(set)2.909 E F0 -.2(bu)2.909 G .409 +(option to the)2.909 F F1(set)2.909 E F0 -.2(bu)2.908 G .408 (iltin command).2 F(is not enabled, the redirection is attempted e)108 -367.2 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214le named by) +403.2 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214le named by) -2.5 E F2(wor)2.5 E(d)-.37 E F0 -.15(ex)2.5 G(ists.).15 E F1 -.25(Ap)87 -384 S(pending Redir).25 E(ected Output)-.18 E F0 .642 -(Redirection of output in this f)108 396 R .642 -(ashion causes the \214le whose name results from the e)-.1 F .641 -(xpansion of)-.15 F F2(wor)3.481 E(d)-.37 E F0 .641(to be)3.911 F .473 -(opened for appending on \214le descriptor)108 408 R F2(n)2.973 E F0 +420 S(pending Redir).25 E(ected Output)-.18 E F0 .641 +(Redirection of output in this f)108 432 R .642 +(ashion causes the \214le whose name results from the e)-.1 F .642 +(xpansion of)-.15 F F2(wor)3.482 E(d)-.37 E F0 .642(to be)3.912 F .474 +(opened for appending on \214le descriptor)108 444 R F2(n)2.974 E F0 2.974(,o).24 G 2.974(rt)-2.974 G .474 -(he standard output \(\214le descriptor 1\) if)-2.974 F F2(n)3.334 E F0 -.474(is not speci\214ed.)3.214 F(If)5.474 E(the \214le does not e)108 -420 Q(xist it is created.)-.15 E -(The general format for appending output is:)108 436.8 Q([)144 453.6 Q -F2(n)A F0(])A F1(>>)A F2(wor)A(d)-.37 E F1(Redir)87 470.4 Q -(ecting Standard Output and Standard Err)-.18 E(or)-.18 E F0 .249 -(This construct allo)108 482.4 R .249(ws both the standard output \(\ +(he standard output \(\214le descriptor 1\) if)-2.974 F F2(n)3.333 E F0 +.473(is not speci\214ed.)3.213 F(If)5.473 E(the \214le does not e)108 +456 Q(xist it is created.)-.15 E +(The general format for appending output is:)108 472.8 Q([)144 489.6 Q +F2(n)A F0(])A F1(>>)A F2(wor)A(d)-.37 E F1(Redir)87 506.4 Q +(ecting Standard Output and Standard Err)-.18 E(or)-.18 E F0 .248 +(This construct allo)108 518.4 R .249(ws both the standard output \(\ \214le descriptor 1\) and the standard error output \(\214le descrip-) -.25 F(tor 2\) to be redirected to the \214le whose name is the e)108 -494.4 Q(xpansion of)-.15 E F2(wor)2.5 E(d)-.37 E F0(.).77 E -(There are tw)108 511.2 Q 2.5(of)-.1 G +530.4 Q(xpansion of)-.15 E F2(wor)2.5 E(d)-.37 E F0(.).77 E +(There are tw)108 547.2 Q 2.5(of)-.1 G (ormats for redirecting standard output and standard error:)-2.5 E F1 -(&>)144 528 Q F2(wor)A(d)-.37 E F0(and)108 540 Q F1(>&)144 552 Q F2(wor) -A(d)-.37 E F0(Of the tw)108 568.8 Q 2.5(of)-.1 G +(&>)144 564 Q F2(wor)A(d)-.37 E F0(and)108 576 Q F1(>&)144 588 Q F2(wor) +A(d)-.37 E F0(Of the tw)108 604.8 Q 2.5(of)-.1 G (orms, the \214rst is preferred.)-2.5 E(This is semantically equi)5 E --.25(va)-.25 G(lent to).25 E F1(>)144 585.6 Q F2(wor)A(d)-.37 E F0(2)2.5 -E F1(>&)A F0(1)A .114(When using the second form,)108 602.4 R F2(wor) +-.25(va)-.25 G(lent to).25 E F1(>)144 621.6 Q F2(wor)A(d)-.37 E F0(2)2.5 +E F1(>&)A F0(1)A .115(When using the second form,)108 638.4 R F2(wor) 2.614 E(d)-.37 E F0 .114(may not e)2.614 F .114(xpand to a number or) --.15 F F12.614 E F0 5.114(.I)C 2.614(fi)-5.114 G 2.615(td)-2.614 G -.115(oes, other redirection operators)-2.615 F(apply \(see)108 614.4 Q +-.15 F F12.614 E F0 5.114(.I)C 2.614(fi)-5.114 G 2.614(td)-2.614 G +.114(oes, other redirection operators)-2.614 F(apply \(see)108 650.4 Q F1(Duplicating File Descriptors)2.5 E F0(belo)2.5 E -(w\) for compatibility reasons.)-.25 E F1 -.25(Ap)87 631.2 S -(pending Standard Output and Standard Err).25 E(or)-.18 E F0 .249 -(This construct allo)108 643.2 R .249(ws both the standard output \(\ +(w\) for compatibility reasons.)-.25 E F1 -.25(Ap)87 667.2 S +(pending Standard Output and Standard Err).25 E(or)-.18 E F0 .248 +(This construct allo)108 679.2 R .249(ws both the standard output \(\ \214le descriptor 1\) and the standard error output \(\214le descrip-) -.25 F(tor 2\) to be appended to the \214le whose name is the e)108 -655.2 Q(xpansion of)-.15 E F2(wor)2.5 E(d)-.37 E F0(.).77 E -(The format for appending standard output and standard error is:)108 672 -Q F1(&>>)144 688.8 Q F2(wor)A(d)-.37 E F0(This is semantically equi)108 -705.6 Q -.25(va)-.25 G(lent to).25 E F1(>>)144 722.4 Q F2(wor)A(d)-.37 E -F0(2)2.5 E F1(>&)A F0(1)A(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15 -(ve)-.15 G(mber 16).15 E(27)185.545 E 0 Cg EP +691.2 Q(xpansion of)-.15 E F2(wor)2.5 E(d)-.37 E F0(.).77 E +(The format for appending standard output and standard error is:)108 708 +Q F1(&>>)144 724.8 Q F2(wor)A(d)-.37 E F0(GNU Bash 4.4)72 768 Q +(2016 January 25)141.79 E(27)190.95 E 0 Cg EP %%Page: 28 28 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(\(see)108 84 Q/F1 -10/Times-Bold@0 SF(Duplicating File Descriptors)2.5 E F0(belo)2.5 E -(w\).)-.25 E F1(Her)87 100.8 Q 2.5(eD)-.18 G(ocuments)-2.5 E F0 .33(Thi\ -s type of redirection instructs the shell to read input from the curren\ -t source until a line containing only)108 112.8 R/F2 10/Times-Italic@0 -SF(delimiter)108.35 124.8 Q F0 .615 -(\(with no trailing blanks\) is seen.)3.845 F .615 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(This is semantically equi)108 84 Q -.25(va)-.25 G(lent to).25 E/F1 10 +/Times-Bold@0 SF(>>)144 100.8 Q/F2 10/Times-Italic@0 SF(wor)A(d)-.37 E +F0(2)2.5 E F1(>&)A F0(1)A(\(see)108 117.6 Q F1 +(Duplicating File Descriptors)2.5 E F0(belo)2.5 E(w\).)-.25 E F1(Her)87 +134.4 Q 2.5(eD)-.18 G(ocuments)-2.5 E F0 .33(This type of redirection i\ +nstructs the shell to read input from the current source until a line c\ +ontaining only)108 146.4 R F2(delimiter)108.35 158.4 Q F0 .614 +(\(with no trailing blanks\) is seen.)3.844 F .615 (All of the lines read up to that point are then used as the stan-)5.615 -F(dard input \(or \214le descriptor)108 136.8 Q F2(n)2.5 E F0(if)2.5 E +F(dard input \(or \214le descriptor)108 170.4 Q F2(n)2.5 E F0(if)2.5 E F2(n)2.5 E F0(is speci\214ed\) for a command.)2.5 E -(The format of here-documents is:)108 153.6 Q([)144 170.4 Q F2(n)A F0(]) -A F1(<<)A F0([)A F1A F0(])A F2(wor)A(d)-.37 E(her)164 182.4 Q -(e-document)-.37 E(delimiter)144 194.4 Q F0 .301(No parameter and v)108 -211.2 R .302(ariable e)-.25 F .302 -(xpansion, command substitution, arithmetic e)-.15 F .302 -(xpansion, or pathname e)-.15 F(xpansion)-.15 E .226(is performed on)108 -223.2 R F2(wor)2.726 E(d)-.37 E F0 5.226(.I).77 G 2.726(fa)-5.226 G .526 +(The format of here-documents is:)108 187.2 Q([)144 204 Q F2(n)A F0(])A +F1(<<)A F0([)A F1A F0(])A F2(wor)A(d)-.37 E(her)164 216 Q +(e-document)-.37 E(delimiter)144 228 Q F0 .302(No parameter and v)108 +244.8 R .302(ariable e)-.25 F .302 +(xpansion, command substitution, arithmetic e)-.15 F .301 +(xpansion, or pathname e)-.15 F(xpansion)-.15 E .225(is performed on)108 +256.8 R F2(wor)2.725 E(d)-.37 E F0 5.225(.I).77 G 2.726(fa)-5.225 G .526 -.15(ny c)-2.726 H .226(haracters in).15 F F2(wor)3.066 E(d)-.37 E F0 -.226(are quoted, the)3.496 F F2(delimiter)3.076 E F0 .225 -(is the result of quote remo)3.456 F -.25(va)-.15 G 2.725(lo).25 G(n) --2.725 E F2(wor)108 235.2 Q(d)-.37 E F0 2.714(,a).77 G .214 -(nd the lines in the here-document are not e)-2.714 F 2.714(xpanded. If) --.15 F F2(wor)2.715 E(d)-.37 E F0 .215 -(is unquoted, all lines of the here-docu-)2.715 F .499 -(ment are subjected to parameter e)108 247.2 R .499 -(xpansion, command substitution, and arithmetic e)-.15 F .499 -(xpansion, the character)-.15 F(sequence)108 259.2 Q F1(\\)2.5 +.226(are quoted, the)3.496 F F2(delimiter)3.076 E F0 .226 +(is the result of quote remo)3.456 F -.25(va)-.15 G 2.726(lo).25 G(n) +-2.726 E F2(wor)108 268.8 Q(d)-.37 E F0 2.715(,a).77 G .215 +(nd the lines in the here-document are not e)-2.715 F 2.714(xpanded. If) +-.15 F F2(wor)2.714 E(d)-.37 E F0 .214 +(is unquoted, all lines of the here-docu-)2.714 F .499 +(ment are subjected to parameter e)108 280.8 R .499 +(xpansion, command substitution, and arithmetic e)-.15 F .5 +(xpansion, the character)-.15 F(sequence)108 292.8 Q F1(\\)2.5 E F0(is ignored, and)2.5 E F1(\\)2.5 E F0 (must be used to quote the characters)2.5 E F1(\\)2.5 E F0(,)A F1($)2.5 -E F0 2.5(,a)C(nd)-2.5 E F1<92>2.5 E F0(.)A .601 -(If the redirection operator is)108 276 R F1(<<\255)3.101 E F0 3.101(,t) -C .601(hen all leading tab characters are stripped from input lines and\ - the line)-3.101 F(containing)108 288 Q F2(delimiter)2.5 E F0 5(.T).73 G -(his allo)-5 E +E F0 2.5(,a)C(nd)-2.5 E F1<92>2.5 E F0(.)A .602 +(If the redirection operator is)108 309.6 R F1(<<\255)3.101 E F0 3.101 +(,t)C .601(hen all leading tab characters are stripped from input lines\ + and the line)-3.101 F(containing)108 321.6 Q F2(delimiter)2.5 E F0 5 +(.T).73 G(his allo)-5 E (ws here-documents within shell scripts to be indented in a natural f) --.25 E(ashion.)-.1 E F1(Her)87 304.8 Q 2.5(eS)-.18 G(trings)-2.5 E F0 -2.5(Av)108 316.8 S(ariant of here documents, the format is:)-2.75 E([) -144 333.6 Q F2(n)A F0(])A F1(<<<)A F2(wor)A(d)-.37 E F0(The)108 350.4 Q -F2(wor)2.894 E(d)-.37 E F0(under)2.894 E .394(goes brace e)-.18 F .393 -(xpansion, tilde e)-.15 F .393(xpansion, parameter and v)-.15 F .393 -(ariable e)-.25 F .393(xpansion, command substi-)-.15 F 2.147 -(tution, arithmetic e)108 362.4 R 2.147(xpansion, and quote remo)-.15 F +-.25 E(ashion.)-.1 E F1(Her)87 338.4 Q 2.5(eS)-.18 G(trings)-2.5 E F0 +2.5(Av)108 350.4 S(ariant of here documents, the format is:)-2.75 E([) +144 367.2 Q F2(n)A F0(])A F1(<<<)A F2(wor)A(d)-.37 E F0(The)108 384 Q F2 +(wor)2.893 E(d)-.37 E F0(under)2.893 E .393(goes brace e)-.18 F .393 +(xpansion, tilde e)-.15 F .393(xpansion, parameter and v)-.15 F .394 +(ariable e)-.25 F .394(xpansion, command substi-)-.15 F 2.148 +(tution, arithmetic e)108 396 R 2.148(xpansion, and quote remo)-.15 F -.25(va)-.15 G 4.648(l. P).25 F 2.148(athname e)-.15 F 2.148 -(xpansion and w)-.15 F 2.148(ord splitting are not per)-.1 F(-)-.2 E -2.813(formed. The)108 374.4 R .313 -(result is supplied as a single string, with a ne)2.813 F .312 +(xpansion and w)-.15 F 2.147(ord splitting are not per)-.1 F(-)-.2 E +2.812(formed. The)108 408 R .313 +(result is supplied as a single string, with a ne)2.812 F .313 (wline appended, to the command on its standard)-.25 F -(input \(or \214le descriptor)108 386.4 Q F2(n)2.5 E F0(if)2.5 E F2(n) -2.5 E F0(is speci\214ed\).)2.5 E F1(Duplicating File Descriptors)87 -403.2 Q F0(The redirection operator)108 415.2 Q([)144 432 Q F2(n)A F0(]) -A F1(<&)A F2(wor)A(d)-.37 E F0 .126 -(is used to duplicate input \214le descriptors.)108 448.8 R(If)5.127 E -F2(wor)2.967 E(d)-.37 E F0 -.15(ex)3.397 G .127 +(input \(or \214le descriptor)108 420 Q F2(n)2.5 E F0(if)2.5 E F2(n)2.5 +E F0(is speci\214ed\).)2.5 E F1(Duplicating File Descriptors)87 436.8 Q +F0(The redirection operator)108 448.8 Q([)144 465.6 Q F2(n)A F0(])A F1 +(<&)A F2(wor)A(d)-.37 E F0 .127 +(is used to duplicate input \214le descriptors.)108 482.4 R(If)5.127 E +F2(wor)2.967 E(d)-.37 E F0 -.15(ex)3.397 G .126 (pands to one or more digits, the \214le descriptor denoted).15 F(by)108 -460.8 Q F2(n)3.318 E F0 .458(is made to be a cop)3.198 F 2.958(yo)-.1 G -2.958(ft)-2.958 G .457(hat \214le descriptor)-2.958 F 5.457(.I)-.55 G -2.957(ft)-5.457 G .457(he digits in)-2.957 F F2(wor)3.297 E(d)-.37 E F0 -.457(do not specify a \214le descriptor open)3.727 F .149 -(for input, a redirection error occurs.)108 472.8 R(If)5.149 E F2(wor) -2.989 E(d)-.37 E F0 -.25(eva)3.419 G .149(luates to).25 F F12.649 E -F0 2.65<2c8c>C .15(le descriptor)-2.65 F F2(n)3.01 E F0 .15(is closed.) -2.89 F(If)5.15 E F2(n)3.01 E F0 .15(is not speci\214ed,)2.89 F -(the standard input \(\214le descriptor 0\) is used.)108 484.8 Q -(The operator)108 501.6 Q([)144 518.4 Q F2(n)A F0(])A F1(>&)A F2(wor)A -(d)-.37 E F0 .444 -(is used similarly to duplicate output \214le descriptors.)108 535.2 R -(If)5.444 E F2(n)3.304 E F0 .443 -(is not speci\214ed, the standard output \(\214le descrip-)3.183 F 1.357 -(tor 1\) is used.)108 547.2 R 1.357(If the digits in)6.357 F F2(wor) -4.197 E(d)-.37 E F0 1.358(do not specify a \214le descriptor open for o\ -utput, a redirection error)4.627 F 2.754(occurs. If)108 559.2 R F2(wor) -3.094 E(d)-.37 E F0 -.25(eva)3.524 G .254(luates to).25 F F12.754 E +494.4 Q F2(n)3.317 E F0 .457(is made to be a cop)3.197 F 2.957(yo)-.1 G +2.957(ft)-2.957 G .457(hat \214le descriptor)-2.957 F 5.457(.I)-.55 G +2.957(ft)-5.457 G .457(he digits in)-2.957 F F2(wor)3.298 E(d)-.37 E F0 +.458(do not specify a \214le descriptor open)3.728 F .15 +(for input, a redirection error occurs.)108 506.4 R(If)5.15 E F2(wor) +2.99 E(d)-.37 E F0 -.25(eva)3.42 G .15(luates to).25 F F12.65 E F0 +2.649<2c8c>C .149(le descriptor)-2.649 F F2(n)3.009 E F0 .149 +(is closed.)2.889 F(If)5.149 E F2(n)3.009 E F0 .149(is not speci\214ed,) +2.889 F(the standard input \(\214le descriptor 0\) is used.)108 518.4 Q +(The operator)108 535.2 Q([)144 552 Q F2(n)A F0(])A F1(>&)A F2(wor)A(d) +-.37 E F0 .443 +(is used similarly to duplicate output \214le descriptors.)108 568.8 R +(If)5.443 E F2(n)3.304 E F0 .444 +(is not speci\214ed, the standard output \(\214le descrip-)3.184 F 1.358 +(tor 1\) is used.)108 580.8 R 1.358(If the digits in)6.358 F F2(wor) +4.198 E(d)-.37 E F0 1.357(do not specify a \214le descriptor open for o\ +utput, a redirection error)4.628 F 2.753(occurs. If)108 592.8 R F2(wor) +3.093 E(d)-.37 E F0 -.25(eva)3.523 G .253(luates to).25 F F12.754 E F0 2.754<2c8c>C .254(le descriptor)-2.754 F F2(n)3.114 E F0 .254 (is closed.)2.994 F .254(As a special case, if)5.254 F F2(n)2.754 E F0 -.253(is omitted, and)2.754 F F2(wor)2.753 E(d)-.37 E F0(does)2.753 E -.965(not e)108 571.2 R .965(xpand to one or more digits or)-.15 F F1 -3.465 E F0 3.466(,t)C .966 +.254(is omitted, and)2.754 F F2(wor)2.754 E(d)-.37 E F0(does)2.754 E +.966(not e)108 604.8 R .966(xpand to one or more digits or)-.15 F F1 +3.466 E F0 3.466(,t)C .965 (he standard output and standard error are redirected as described) --3.466 F(pre)108 583.2 Q(viously)-.25 E(.)-.65 E F1(Mo)87 600 Q -(ving File Descriptors)-.1 E F0(The redirection operator)108 612 Q([)144 -628.8 Q F2(n)A F0(])A F1(<&)A F2(digit)A F1A F0(mo)108 645.6 Q -.15 -(ve)-.15 G 3.036(st).15 G .536(he \214le descriptor)-3.036 F F2(digit) -3.036 E F0 .536(to \214le descriptor)3.036 F F2(n)3.036 E F0 3.036(,o) -.24 G 3.036(rt)-3.036 G .535 -(he standard input \(\214le descriptor 0\) if)-3.036 F F2(n)3.035 E F0 -.535(is not speci-)3.035 F(\214ed.)108 657.6 Q F2(digit)5 E F0 +-3.466 F(pre)108 616.8 Q(viously)-.25 E(.)-.65 E F1(Mo)87 633.6 Q +(ving File Descriptors)-.1 E F0(The redirection operator)108 645.6 Q([) +144 662.4 Q F2(n)A F0(])A F1(<&)A F2(digit)A F1A F0(mo)108 679.2 Q +-.15(ve)-.15 G 3.035(st).15 G .535(he \214le descriptor)-3.035 F F2 +(digit)3.035 E F0 .535(to \214le descriptor)3.035 F F2(n)3.035 E F0 +3.035(,o).24 G 3.035(rt)-3.035 G .536 +(he standard input \(\214le descriptor 0\) if)-3.035 F F2(n)3.036 E F0 +.536(is not speci-)3.036 F(\214ed.)108 691.2 Q F2(digit)5 E F0 (is closed after being duplicated to)2.5 E F2(n)2.5 E F0(.)A(Similarly) -108 674.4 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E([)144 691.2 Q -F2(n)A F0(])A F1(>&)A F2(digit)A F1A F0(mo)108 708 Q -.15(ve)-.15 G -2.785(st).15 G .285(he \214le descriptor)-2.785 F F2(digit)2.785 E F0 -.285(to \214le descriptor)2.785 F F2(n)2.785 E F0 2.785(,o).24 G 2.785 -(rt)-2.785 G .286(he standard output \(\214le descriptor 1\) if)-2.785 F -F2(n)2.786 E F0 .286(is not speci-)2.786 F(\214ed.)108 720 Q -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(28)185.545 E 0 Cg EP +108 708 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E([)144 724.8 Q F2 +(n)A F0(])A F1(>&)A F2(digit)A F1A F0(GNU Bash 4.4)72 768 Q +(2016 January 25)141.79 E(28)190.95 E 0 Cg EP %%Page: 29 29 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(Opening File Descriptors f)87 84 Q(or Reading and Writing)-.25 E F0 -(The redirection operator)108 96 Q([)144 112.8 Q/F2 10/Times-Italic@0 SF -(n)A F0(])A F1(<>)A F2(wor)A(d)-.37 E F0 1.349 -(causes the \214le whose name is the e)108 129.6 R 1.349(xpansion of) --.15 F F2(wor)4.189 E(d)-.37 E F0 1.349 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(mo)108 84 Q -.15 +(ve)-.15 G 2.786(st).15 G .286(he \214le descriptor)-2.786 F/F1 10 +/Times-Italic@0 SF(digit)2.786 E F0 .286(to \214le descriptor)2.786 F F1 +(n)2.786 E F0 2.786(,o).24 G 2.786(rt)-2.786 G .285 +(he standard output \(\214le descriptor 1\) if)-2.786 F F1(n)2.785 E F0 +.285(is not speci-)2.785 F(\214ed.)108 96 Q/F2 10/Times-Bold@0 SF +(Opening File Descriptors f)87 112.8 Q(or Reading and Writing)-.25 E F0 +(The redirection operator)108 124.8 Q([)144 141.6 Q F1(n)A F0(])A F2(<>) +A F1(wor)A(d)-.37 E F0 1.349(causes the \214le whose name is the e)108 +158.4 R 1.349(xpansion of)-.15 F F1(wor)4.189 E(d)-.37 E F0 1.349 (to be opened for both reading and writing on \214le)4.619 F(descriptor) -108 141.6 Q F2(n)2.5 E F0 2.5(,o).24 G 2.5(ro)-2.5 G 2.5<6e8c>-2.5 G -(le descriptor 0 if)-2.5 E F2(n)2.86 E F0(is not speci\214ed.)2.74 E +108 170.4 Q F1(n)2.5 E F0 2.5(,o).24 G 2.5(ro)-2.5 G 2.5<6e8c>-2.5 G +(le descriptor 0 if)-2.5 E F1(n)2.86 E F0(is not speci\214ed.)2.74 E (If the \214le does not e)5 E(xist, it is created.)-.15 E/F3 10.95 -/Times-Bold@0 SF(ALIASES)72 158.4 Q F2(Aliases)108 170.4 Q F0(allo)3.173 -E 3.173(was)-.25 G .674(tring to be substituted for a w)-3.173 F .674 -(ord when it is used as the \214rst w)-.1 F .674 +/Times-Bold@0 SF(ALIASES)72 187.2 Q F1(Aliases)108 199.2 Q F0(allo)3.174 +E 3.174(was)-.25 G .674(tring to be substituted for a w)-3.174 F .674 +(ord when it is used as the \214rst w)-.1 F .673 (ord of a simple command.)-.1 F .394(The shell maintains a list of alia\ -ses that may be set and unset with the)108 182.4 R F1(alias)2.893 E F0 -(and)2.893 E F1(unalias)2.893 E F0 -.2(bu)2.893 G .393(iltin commands).2 -F(\(see)108 194.4 Q/F4 9/Times-Bold@0 SF 1.979(SHELL B)4.479 F(UIL)-.09 -E 1.979(TIN COMMANDS)-.828 F F0(belo)4.229 E 4.48(w\). The)-.25 F 1.98 -(\214rst w)4.48 F 1.98(ord of each simple command, if unquoted, is)-.1 F -(check)108 206.4 Q .473(ed to see if it has an alias.)-.1 F .473 -(If so, that w)5.473 F .472(ord is replaced by the te)-.1 F .472 -(xt of the alias.)-.15 F .472(The characters)5.472 F F1(/)2.972 E F0(,)A -F1($)2.972 E F0(,)A F1<92>2.972 E F0(,)A(and)108 218.4 Q F1(=)3.611 E F0 -1.111(and an)3.611 F 3.611(yo)-.15 G 3.611(ft)-3.611 G 1.111(he shell) --3.611 F F2(metac)3.612 E(har)-.15 E(acter)-.15 E(s)-.1 E F0 1.112 -(or quoting characters listed abo)3.612 F 1.412 -.15(ve m)-.15 H 1.112 -(ay not appear in an alias).15 F 3.62(name. The)108 230.4 R 1.12 -(replacement te)3.62 F 1.119(xt may contain an)-.15 F 3.619(yv)-.15 G -1.119(alid shell input, including shell metacharacters.)-3.869 F 1.119 -(The \214rst)6.119 F -.1(wo)108 242.4 S .513(rd of the replacement te).1 -F .513(xt is tested for aliases, b)-.15 F .513(ut a w)-.2 F .514 -(ord that is identical to an alias being e)-.1 F .514(xpanded is)-.15 F -.296(not e)108 254.4 R .296(xpanded a second time.)-.15 F .296 -(This means that one may alias)5.296 F F1(ls)2.796 E F0(to)2.796 E F1 -.296(ls \255F)2.796 F F0 2.796(,f)C .295(or instance, and)-2.796 F F1 -(bash)2.795 E F0 .295(does not try)2.795 F .542(to recursi)108 266.4 R --.15(ve)-.25 G .542(ly e).15 F .542(xpand the replacement te)-.15 F -3.042(xt. If)-.15 F .543(the last character of the alias v)3.042 F .543 -(alue is a)-.25 F F2(blank)3.043 E F0 3.043(,t).67 G .543(hen the ne) --3.043 F(xt)-.15 E(command w)108 278.4 Q(ord follo)-.1 E +ses that may be set and unset with the)108 211.2 R F2(alias)2.894 E F0 +(and)2.894 E F2(unalias)2.894 E F0 -.2(bu)2.894 G .394(iltin commands).2 +F(\(see)108 223.2 Q/F4 9/Times-Bold@0 SF 1.98(SHELL B)4.48 F(UIL)-.09 E +1.98(TIN COMMANDS)-.828 F F0(belo)4.23 E 4.48(w\). The)-.25 F 1.98 +(\214rst w)4.48 F 1.979(ord of each simple command, if unquoted, is)-.1 +F(check)108 235.2 Q .472(ed to see if it has an alias.)-.1 F .472 +(If so, that w)5.472 F .473(ord is replaced by the te)-.1 F .473 +(xt of the alias.)-.15 F .473(The characters)5.473 F F2(/)2.973 E F0(,)A +F2($)2.973 E F0(,)A F2<92>2.973 E F0(,)A(and)108 247.2 Q F2(=)3.612 E F0 +1.112(and an)3.612 F 3.612(yo)-.15 G 3.612(ft)-3.612 G 1.112(he shell) +-3.612 F F1(metac)3.612 E(har)-.15 E(acter)-.15 E(s)-.1 E F0 1.112 +(or quoting characters listed abo)3.612 F 1.411 -.15(ve m)-.15 H 1.111 +(ay not appear in an alias).15 F 3.619(name. The)108 259.2 R 1.119 +(replacement te)3.619 F 1.119(xt may contain an)-.15 F 3.619(yv)-.15 G +1.119(alid shell input, including shell metacharacters.)-3.869 F 1.12 +(The \214rst)6.12 F -.1(wo)108 271.2 S .514(rd of the replacement te).1 +F .514(xt is tested for aliases, b)-.15 F .514(ut a w)-.2 F .513 +(ord that is identical to an alias being e)-.1 F .513(xpanded is)-.15 F +.295(not e)108 283.2 R .295(xpanded a second time.)-.15 F .296 +(This means that one may alias)5.295 F F2(ls)2.796 E F0(to)2.796 E F2 +.296(ls \255F)2.796 F F0 2.796(,f)C .296(or instance, and)-2.796 F F2 +(bash)2.796 E F0 .296(does not try)2.796 F .543(to recursi)108 295.2 R +-.15(ve)-.25 G .543(ly e).15 F .543(xpand the replacement te)-.15 F +3.043(xt. If)-.15 F .543(the last character of the alias v)3.043 F .542 +(alue is a)-.25 F F1(blank)3.042 E F0 3.042(,t).67 G .542(hen the ne) +-3.042 F(xt)-.15 E(command w)108 307.2 Q(ord follo)-.1 E (wing the alias is also check)-.25 E(ed for alias e)-.1 E(xpansion.)-.15 -E(Aliases are created and listed with the)108 295.2 Q F1(alias)2.5 E F0 -(command, and remo)2.5 E -.15(ve)-.15 G 2.5(dw).15 G(ith the)-2.5 E F1 +E(Aliases are created and listed with the)108 324 Q F2(alias)2.5 E F0 +(command, and remo)2.5 E -.15(ve)-.15 G 2.5(dw).15 G(ith the)-2.5 E F2 (unalias)2.5 E F0(command.)2.5 E .284 -(There is no mechanism for using ar)108 312 R .284 +(There is no mechanism for using ar)108 340.8 R .284 (guments in the replacement te)-.18 F 2.784(xt. If)-.15 F(ar)2.784 E .284(guments are needed, a shell func-)-.18 F(tion should be used \(see) -108 324 Q F4(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E 1.22 -(Aliases are not e)108 340.8 R 1.22 +108 352.8 Q F4(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E 1.22 +(Aliases are not e)108 369.6 R 1.22 (xpanded when the shell is not interacti)-.15 F -.15(ve)-.25 G 3.72(,u) -.15 G 1.22(nless the)-3.72 F F1(expand_aliases)3.72 E F0 1.22 -(shell option is set)3.72 F(using)108 352.8 Q F1(shopt)2.5 E F0 -(\(see the description of)2.5 E F1(shopt)2.5 E F0(under)2.5 E F4 +.15 G 1.22(nless the)-3.72 F F2(expand_aliases)3.72 E F0 1.22 +(shell option is set)3.72 F(using)108 381.6 Q F2(shopt)2.5 E F0 +(\(see the description of)2.5 E F2(shopt)2.5 E F0(under)2.5 E F4 (SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 -E .436 +E .435 (The rules concerning the de\214nition and use of aliases are some)108 -369.6 R .435(what confusing.)-.25 F F1(Bash)5.435 E F0(al)2.935 E -.1 -(wa)-.1 G .435(ys reads at least).1 F .337 -(one complete line of input before e)108 381.6 R -.15(xe)-.15 G .338 +398.4 R .436(what confusing.)-.25 F F2(Bash)5.436 E F0(al)2.936 E -.1 +(wa)-.1 G .436(ys reads at least).1 F .338 +(one complete line of input before e)108 410.4 R -.15(xe)-.15 G .338 (cuting an).15 F 2.838(yo)-.15 G 2.838(ft)-2.838 G .338 -(he commands on that line.)-2.838 F .338(Aliases are e)5.338 F .338 -(xpanded when)-.15 F 3.404(ac)108 393.6 S .904 -(ommand is read, not when it is e)-3.404 F -.15(xe)-.15 G 3.404 +(he commands on that line.)-2.838 F .337(Aliases are e)5.337 F .337 +(xpanded when)-.15 F 3.403(ac)108 422.4 S .904 +(ommand is read, not when it is e)-3.403 F -.15(xe)-.15 G 3.404 (cuted. Therefore,).15 F .904 -(an alias de\214nition appearing on the same line as)3.404 F 1.161 -(another command does not tak)108 405.6 R 3.662(ee)-.1 G -.25(ff)-3.662 +(an alias de\214nition appearing on the same line as)3.404 F 1.162 +(another command does not tak)108 434.4 R 3.662(ee)-.1 G -.25(ff)-3.662 G 1.162(ect until the ne).25 F 1.162(xt line of input is read.)-.15 F -1.162(The commands follo)6.162 F 1.162(wing the)-.25 F .277 -(alias de\214nition on that line are not af)108 417.6 R .277 +1.161(The commands follo)6.161 F 1.161(wing the)-.25 F .277 +(alias de\214nition on that line are not af)108 446.4 R .277 (fected by the ne)-.25 F 2.777(wa)-.25 G 2.777(lias. This)-2.777 F(beha) -2.777 E .277(vior is also an issue when functions)-.2 F .698(are e)108 -429.6 R -.15(xe)-.15 G 3.198(cuted. Aliases).15 F .698(are e)3.198 F +2.777 E .277(vior is also an issue when functions)-.2 F .699(are e)108 +458.4 R -.15(xe)-.15 G 3.199(cuted. Aliases).15 F .699(are e)3.199 F .699(xpanded when a function de\214nition is read, not when the functio\ -n is e)-.15 F -.15(xe)-.15 G(cuted,).15 E .613 -(because a function de\214nition is itself a command.)108 441.6 R .612 +n is e)-.15 F -.15(xe)-.15 G(cuted,).15 E .612 +(because a function de\214nition is itself a command.)108 470.4 R .613 (As a consequence, aliases de\214ned in a function are not)5.612 F -.2 -(av)108 453.6 S .058(ailable until after that function is e)-.05 F -.15 +(av)108 482.4 S .059(ailable until after that function is e)-.05 F -.15 (xe)-.15 G 2.558(cuted. T).15 F 2.558(ob)-.8 G 2.558(es)-2.558 G .058 -(afe, al)-2.558 F -.1(wa)-.1 G .059 +(afe, al)-2.558 F -.1(wa)-.1 G .058 (ys put alias de\214nitions on a separate line, and).1 F(do not use)108 -465.6 Q F1(alias)2.5 E F0(in compound commands.)2.5 E -.15(Fo)108 482.4 +494.4 Q F2(alias)2.5 E F0(in compound commands.)2.5 E -.15(Fo)108 511.2 S 2.5(ra).15 G(lmost e)-2.5 E -.15(ve)-.25 G (ry purpose, aliases are superseded by shell functions.).15 E F3 -(FUNCTIONS)72 499.2 Q F0 3.468(As)108 511.2 S .968 -(hell function, de\214ned as described abo)-3.468 F 1.267 -.15(ve u)-.15 +(FUNCTIONS)72 528 Q F0 3.467(As)108 540 S .967 +(hell function, de\214ned as described abo)-3.467 F 1.267 -.15(ve u)-.15 H(nder).15 E F4 .967(SHELL GRAMMAR)3.467 F/F5 9/Times-Roman@0 SF(,)A F0 -.967(stores a series of commands for)3.217 F 1.001(later e)108 523.2 R --.15(xe)-.15 G 3.501(cution. When).15 F 1.002(the name of a shell funct\ -ion is used as a simple command name, the list of com-)3.501 F .316 -(mands associated with that function name is e)108 535.2 R -.15(xe)-.15 -G 2.816(cuted. Functions).15 F .316(are e)2.816 F -.15(xe)-.15 G .315 -(cuted in the conte).15 F .315(xt of the current)-.15 F .035 -(shell; no ne)108 547.2 R 2.535(wp)-.25 G .036 -(rocess is created to interpret them \(contrast this with the e)-2.535 F --.15(xe)-.15 G .036(cution of a shell script\).).15 F .036(When a)5.036 -F .64(function is e)108 559.2 R -.15(xe)-.15 G .64(cuted, the ar).15 F +.968(stores a series of commands for)3.217 F 1.002(later e)108 552 R +-.15(xe)-.15 G 3.502(cution. When).15 F 1.002(the name of a shell funct\ +ion is used as a simple command name, the list of com-)3.502 F .315 +(mands associated with that function name is e)108 564 R -.15(xe)-.15 G +2.816(cuted. Functions).15 F .316(are e)2.816 F -.15(xe)-.15 G .316 +(cuted in the conte).15 F .316(xt of the current)-.15 F .036 +(shell; no ne)108 576 R 2.536(wp)-.25 G .036 +(rocess is created to interpret them \(contrast this with the e)-2.536 F +-.15(xe)-.15 G .036(cution of a shell script\).).15 F .035(When a)5.035 +F .639(function is e)108 588 R -.15(xe)-.15 G .639(cuted, the ar).15 F .639 (guments to the function become the positional parameters during its e) --.18 F -.15(xe)-.15 G(cution.).15 E .532(The special parameter)108 571.2 -R F1(#)3.032 E F0 .532(is updated to re\215ect the change.)3.032 F .532 -(Special parameter)5.532 F F1(0)3.033 E F0 .533(is unchanged.)3.033 F -.533(The \214rst ele-)5.533 F(ment of the)108 583.2 Q F4(FUNCN)2.5 E -(AME)-.18 E F0 -.25(va)2.25 G +-.18 F -.15(xe)-.15 G(cution.).15 E .533(The special parameter)108 600 R +F2(#)3.033 E F0 .532(is updated to re\215ect the change.)3.033 F .532 +(Special parameter)5.532 F F2(0)3.032 E F0 .532(is unchanged.)3.032 F +.532(The \214rst ele-)5.532 F(ment of the)108 612 Q F4(FUNCN)2.5 E(AME) +-.18 E F0 -.25(va)2.25 G (riable is set to the name of the function while the function is e).25 E -.15(xe)-.15 G(cuting.).15 E 1.25(All other aspects of the shell e)108 -600 R -.15(xe)-.15 G 1.25(cution en).15 F 1.25 +628.8 R -.15(xe)-.15 G 1.25(cution en).15 F 1.25 (vironment are identical between a function and its caller with)-.4 F -1.214(these e)108 612 R 1.214(xceptions: the)-.15 F F4(DEB)3.714 E(UG) --.09 E F0(and)3.464 E F1(RETURN)3.715 E F0 1.215 -(traps \(see the description of the)3.715 F F1(trap)3.715 E F0 -.2(bu) -3.715 G 1.215(iltin under).2 F F4(SHELL)3.715 E -.09(BU)108 624 S(IL).09 -E .479(TIN COMMANDS)-.828 F F0(belo)2.729 E .479 +1.215(these e)108 640.8 R 1.215(xceptions: the)-.15 F F4(DEB)3.715 E(UG) +-.09 E F0(and)3.465 E F2(RETURN)3.715 E F0 1.215 +(traps \(see the description of the)3.715 F F2(trap)3.714 E F0 -.2(bu) +3.714 G 1.214(iltin under).2 F F4(SHELL)3.714 E -.09(BU)108 652.8 S(IL) +.09 E .478(TIN COMMANDS)-.828 F F0(belo)2.728 E .479 (w\) are not inherited unless the function has been gi)-.25 F -.15(ve) --.25 G 2.978(nt).15 G(he)-2.978 E F1(trace)2.978 E F0(attrib)2.978 E -.478(ute \(see)-.2 F .42(the description of the)108 636 R F4(declar)2.92 -E(e)-.162 E F0 -.2(bu)2.67 G .42(iltin belo).2 F .42(w\) or the)-.25 F -F1 .42(\255o functrace)2.92 F F0 .42 -(shell option has been enabled with the)2.92 F F1(set)2.921 E F0 -.2(bu) -108 648 S .072(iltin \(in which case all functions inherit the).2 F F1 -(DEB)2.572 E(UG)-.1 E F0(and)2.572 E F1(RETURN)2.572 E F0 .072 -(traps\), and the)2.572 F F4(ERR)2.571 E F0 .071(trap is not inher)2.321 -F(-)-.2 E(ited unless the)108 660 Q F1(\255o errtrace)2.5 E F0 -(shell option has been enabled.)2.5 E -1.11(Va)108 676.8 S .655 -(riables local to the function may be declared with the)1.11 F F1(local) -3.155 E F0 -.2(bu)3.156 G .656(iltin command.).2 F(Ordinarily)5.656 E -3.156(,v)-.65 G .656(ariables and)-3.406 F(their v)108 688.8 Q +-.25 G 2.979(nt).15 G(he)-2.979 E F2(trace)2.979 E F0(attrib)2.979 E +.479(ute \(see)-.2 F .421(the description of the)108 664.8 R F4(declar) +2.92 E(e)-.162 E F0 -.2(bu)2.67 G .42(iltin belo).2 F .42(w\) or the) +-.25 F F2 .42(\255o functrace)2.92 F F0 .42 +(shell option has been enabled with the)2.92 F F2(set)2.92 E F0 -.2(bu) +108 676.8 S .071(iltin \(in which case all functions inherit the).2 F F2 +(DEB)2.572 E(UG)-.1 E F0(and)2.572 E F2(RETURN)2.572 E F0 .072 +(traps\), and the)2.572 F F4(ERR)2.572 E F0 .072(trap is not inher)2.322 +F(-)-.2 E(ited unless the)108 688.8 Q F2(\255o errtrace)2.5 E F0 +(shell option has been enabled.)2.5 E -1.11(Va)108 705.6 S .656 +(riables local to the function may be declared with the)1.11 F F2(local) +3.155 E F0 -.2(bu)3.155 G .655(iltin command.).2 F(Ordinarily)5.655 E +3.155(,v)-.65 G .655(ariables and)-3.405 F(their v)108 717.6 Q (alues are shared between the function and its caller)-.25 E(.)-.55 E -(The)108 705.6 Q F1(FUNCNEST)3.529 E F0 -.25(va)3.529 G 1.028 -(riable, if set to a numeric v).25 F 1.028 -(alue greater than 0, de\214nes a maximum function nesting)-.25 F(le)108 -717.6 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G -(cations that e).2 E(xceed the limit cause the entire command to abort.) --.15 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16) -.15 E(29)185.545 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(29)190.95 E 0 Cg EP %%Page: 30 30 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .043(If the b)108 -84 R .043(uiltin command)-.2 F/F1 10/Times-Bold@0 SF -.18(re)2.543 G -(tur).18 E(n)-.15 E F0 .043(is e)2.543 F -.15(xe)-.15 G .043 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(The)108 84 Q/F1 10 +/Times-Bold@0 SF(FUNCNEST)3.528 E F0 -.25(va)3.528 G 1.028 +(riable, if set to a numeric v).25 F 1.028 +(alue greater than 0, de\214nes a maximum function nesting)-.25 F(le)108 +96 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G +(cations that e).2 E(xceed the limit cause the entire command to abort.) +-.15 E .044(If the b)108 112.8 R .043(uiltin command)-.2 F F1 -.18(re) +2.543 G(tur).18 E(n)-.15 E F0 .043(is e)2.543 F -.15(xe)-.15 G .043 (cuted in a function, the function completes and e).15 F -.15(xe)-.15 G -.044(cution resumes with).15 F 1.012(the ne)108 96 R 1.012 +.043(cution resumes with).15 F 1.011(the ne)108 124.8 R 1.011 (xt command after the function call.)-.15 F(An)6.011 E 3.511(yc)-.15 G -1.011(ommand associated with the)-3.511 F F1(RETURN)3.511 E F0 1.011 -(trap is e)3.511 F -.15(xe)-.15 G(cuted).15 E .213(before e)108 108 R --.15(xe)-.15 G .213(cution resumes.).15 F .213 -(When a function completes, the v)5.213 F .214 +1.011(ommand associated with the)-3.511 F F1(RETURN)3.512 E F0 1.012 +(trap is e)3.512 F -.15(xe)-.15 G(cuted).15 E .214(before e)108 136.8 R +-.15(xe)-.15 G .214(cution resumes.).15 F .213 +(When a function completes, the v)5.214 F .213 (alues of the positional parameters and the spe-)-.25 F(cial parameter) -108 120 Q F1(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E 2.5 -(yh)-.15 G(ad prior to the function')-2.5 E 2.5(se)-.55 G -.15(xe)-2.65 -G(cution.).15 E 1.359 -(Function names and de\214nitions may be listed with the)108 136.8 R F1 +108 148.8 Q F1(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E +2.5(yh)-.15 G(ad prior to the function')-2.5 E 2.5(se)-.55 G -.15(xe) +-2.65 G(cution.).15 E 1.358 +(Function names and de\214nitions may be listed with the)108 165.6 R F1 3.858 E F0 1.358(option to the)3.858 F F1(declar)3.858 E(e)-.18 E -F0(or)3.858 E F1(typeset)3.858 E F0 -.2(bu)3.858 G 1.358(iltin com-).2 F -3.39(mands. The)108 148.8 R F13.39 E F0 .89(option to)3.39 F F1 +F0(or)3.859 E F1(typeset)3.859 E F0 -.2(bu)3.859 G 1.359(iltin com-).2 F +3.39(mands. The)108 177.6 R F13.39 E F0 .89(option to)3.39 F F1 (declar)3.39 E(e)-.18 E F0(or)3.39 E F1(typeset)3.39 E F0 .89 (will list the function names only \(and optionally the source)3.39 F -.327(\214le and line number)108 160.8 R 2.827(,i)-.4 G 2.827(ft)-2.827 G -(he)-2.827 E F1(extdeb)2.827 E(ug)-.2 E F0 .326 -(shell option is enabled\).)2.827 F .326(Functions may be e)5.326 F .326 -(xported so that subshells)-.15 F 1.297(automatically ha)108 172.8 R -1.597 -.15(ve t)-.2 H 1.297(hem de\214ned with the).15 F F13.797 E -F0 1.297(option to the)3.797 F F1(export)3.798 E F0 -.2(bu)3.798 G 3.798 -(iltin. A).2 F 1.298(function de\214nition may be)3.798 F .161 -(deleted using the)108 184.8 R F12.661 E F0 .161(option to the) -2.661 F F1(unset)2.661 E F0 -.2(bu)2.661 G 2.661(iltin. Note).2 F .16 -(that shell functions and v)2.661 F .16(ariables with the same name)-.25 -F 1.325(may result in multiple identically-named entries in the en)108 -196.8 R 1.325(vironment passed to the shell')-.4 F 3.825(sc)-.55 G 3.825 -(hildren. Care)-3.825 F(should be tak)108 208.8 Q -(en in cases where this may cause a problem.)-.1 E .372 -(Functions may be recursi)108 225.6 R -.15(ve)-.25 G 5.371(.T).15 G(he) +.326(\214le and line number)108 189.6 R 2.826(,i)-.4 G 2.826(ft)-2.826 G +(he)-2.826 E F1(extdeb)2.826 E(ug)-.2 E F0 .326 +(shell option is enabled\).)2.826 F .327(Functions may be e)5.327 F .327 +(xported so that subshells)-.15 F 1.298(automatically ha)108 201.6 R +1.598 -.15(ve t)-.2 H 1.298(hem de\214ned with the).15 F F13.798 E +F0 1.298(option to the)3.798 F F1(export)3.797 E F0 -.2(bu)3.797 G 3.797 +(iltin. A).2 F 1.297(function de\214nition may be)3.797 F .16 +(deleted using the)108 213.6 R F12.66 E F0 .16(option to the)2.66 +F F1(unset)2.66 E F0 -.2(bu)2.66 G 2.661(iltin. Note).2 F .161 +(that shell functions and v)2.661 F .161(ariables with the same name) +-.25 F 1.325(may result in multiple identically-named entries in the en) +108 225.6 R 1.325(vironment passed to the shell')-.4 F 3.825(sc)-.55 G +3.825(hildren. Care)-3.825 F(should be tak)108 237.6 Q +(en in cases where this may cause a problem.)-.1 E .371 +(Functions may be recursi)108 254.4 R -.15(ve)-.25 G 5.371(.T).15 G(he) -5.371 E F1(FUNCNEST)2.871 E F0 -.25(va)2.871 G .371 (riable may be used to limit the depth of the function call).25 F 1.141 -(stack and restrict the number of function in)108 237.6 R -.2(vo)-.4 G +(stack and restrict the number of function in)108 266.4 R -.2(vo)-.4 G 3.641(cations. By).2 F(def)3.641 E 1.141 -(ault, no limit is imposed on the number of)-.1 F(recursi)108 249.6 Q .3 +(ault, no limit is imposed on the number of)-.1 F(recursi)108 278.4 Q .3 -.15(ve c)-.25 H(alls.).15 E/F2 10.95/Times-Bold@0 SF(ARITHMETIC EV)72 -266.4 Q(ALU)-1.478 E -1.04(AT)-.657 G(ION)1.04 E F0 2.298 -(The shell allo)108 278.4 R 2.297(ws arithmetic e)-.25 F 2.297 +295.2 Q(ALU)-1.478 E -1.04(AT)-.657 G(ION)1.04 E F0 2.297 +(The shell allo)108 307.2 R 2.297(ws arithmetic e)-.25 F 2.297 (xpressions to be e)-.15 F -.25(va)-.25 G 2.297 -(luated, under certain circumstances \(see the).25 F F1(let)4.797 E F0 -(and)4.797 E F1(declar)108 290.4 Q(e)-.18 E F0 -.2(bu)2.705 G .205 -(iltin commands and).2 F F1 .205(Arithmetic Expansion)2.705 F F0 2.705 -(\). Ev)B .205(aluation is done in \214x)-.25 F .206(ed-width inte)-.15 -F .206(gers with no)-.15 F .429(check for o)108 302.4 R -.15(ve)-.15 G -(r\215o).15 E 1.729 -.65(w, t)-.25 H .429(hough di).65 F .428 -(vision by 0 is trapped and \215agged as an error)-.25 F 5.428(.T)-.55 G -.428(he operators and their prece-)-5.428 F 1.919(dence, associati)108 -314.4 R(vity)-.25 E 4.419(,a)-.65 G 1.919(nd v)-4.419 F 1.919 -(alues are the same as in the C language.)-.25 F 1.92(The follo)6.92 F -1.92(wing list of operators is)-.25 F(grouped into le)108 326.4 Q -.15 +(luated, under certain circumstances \(see the).25 F F1(let)4.798 E F0 +(and)4.798 E F1(declar)108 319.2 Q(e)-.18 E F0 -.2(bu)2.706 G .206 +(iltin commands and).2 F F1 .206(Arithmetic Expansion)2.706 F F0 2.705 +(\). Ev)B .205(aluation is done in \214x)-.25 F .205(ed-width inte)-.15 +F .205(gers with no)-.15 F .428(check for o)108 331.2 R -.15(ve)-.15 G +(r\215o).15 E 1.728 -.65(w, t)-.25 H .428(hough di).65 F .428 +(vision by 0 is trapped and \215agged as an error)-.25 F 5.429(.T)-.55 G +.429(he operators and their prece-)-5.429 F 1.92(dence, associati)108 +343.2 R(vity)-.25 E 4.42(,a)-.65 G 1.92(nd v)-4.42 F 1.92 +(alues are the same as in the C language.)-.25 F 1.919(The follo)6.919 F +1.919(wing list of operators is)-.25 F(grouped into le)108 355.2 Q -.15 (ve)-.25 G(ls of equal-precedence operators.).15 E(The le)5 E -.15(ve) -.25 G(ls are listed in order of decreasing precedence.).15 E/F3 10 -/Times-Italic@0 SF(id)108 343.2 Q F1(++)A F3(id)2.5 E F1A F0 -.25 -(va)144 355.2 S(riable post-increment and post-decrement).25 E F1(++)108 -367.2 Q F3(id)A F12.5 E F3(id)A F0 -.25(va)144 379.2 S -(riable pre-increment and pre-decrement).25 E F1 2.5108 391.2 S F0 -(unary minus and plus)144 391.2 Q F1 2.5(!~)108 403.2 S F0 -(logical and bitwise ne)144 403.2 Q -.05(ga)-.15 G(tion).05 E F1(**)108 -415.2 Q F0 -.15(ex)144 415.2 S(ponentiation).15 E F1 2.5(*/%)108 427.2 S -F0(multiplication, di)144 427.2 Q(vision, remainder)-.25 E F1 2.5<2bad> -108 439.2 S F0(addition, subtraction)144 439.2 Q F1(<< >>)108 451.2 Q F0 -(left and right bitwise shifts)144 451.2 Q F1(<= >= < >)108 463.2 Q F0 -(comparison)144 475.2 Q F1(== !=)108 487.2 Q F0(equality and inequality) -144 487.2 Q F1(&)108 499.2 Q F0(bitwise AND)144 499.2 Q F1(^)108 511.2 Q -F0(bitwise e)144 511.2 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F1(|) -108 523.2 Q F0(bitwise OR)144 523.2 Q F1(&&)108 535.2 Q F0(logical AND) -144 535.2 Q F1(||)108 547.2 Q F0(logical OR)144 547.2 Q F3 -.2(ex)108 -559.2 S(pr).2 E F1(?)A F3 -.2(ex)C(pr).2 E F1(:)A F3 -.2(ex)C(pr).2 E F0 -(conditional operator)144 571.2 Q F1 2.5(=*)108 583.2 S 2.5(=/)-2.5 G -2.5(=%)-2.5 G 2.5(=+)-2.5 G 2.5<3dad>-2.5 G 2.5(=<)-2.5 G -(<= >>= &= ^= |=)-2.5 E F0(assignment)144 595.2 Q F3 -.2(ex)108 607.2 S -(pr1).2 E F1(,)2.5 E F3 -.2(ex)2.5 G(pr2).2 E F0(comma)144 619.2 Q .68 -(Shell v)108 636 R .68(ariables are allo)-.25 F .68 -(wed as operands; parameter e)-.25 F .68 +/Times-Italic@0 SF(id)108 372 Q F1(++)A F3(id)2.5 E F1A F0 -.25 +(va)144 384 S(riable post-increment and post-decrement).25 E F1(++)108 +396 Q F3(id)A F12.5 E F3(id)A F0 -.25(va)144 408 S +(riable pre-increment and pre-decrement).25 E F1 2.5108 420 S F0 +(unary minus and plus)144 420 Q F1 2.5(!~)108 432 S F0 +(logical and bitwise ne)144 432 Q -.05(ga)-.15 G(tion).05 E F1(**)108 +444 Q F0 -.15(ex)144 444 S(ponentiation).15 E F1 2.5(*/%)108 456 S F0 +(multiplication, di)144 456 Q(vision, remainder)-.25 E F1 2.5<2bad>108 +468 S F0(addition, subtraction)144 468 Q F1(<< >>)108 480 Q F0 +(left and right bitwise shifts)144 480 Q F1(<= >= < >)108 492 Q F0 +(comparison)144 504 Q F1(== !=)108 516 Q F0(equality and inequality)144 +516 Q F1(&)108 528 Q F0(bitwise AND)144 528 Q F1(^)108 540 Q F0 +(bitwise e)144 540 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F1(|)108 +552 Q F0(bitwise OR)144 552 Q F1(&&)108 564 Q F0(logical AND)144 564 Q +F1(||)108 576 Q F0(logical OR)144 576 Q F3 -.2(ex)108 588 S(pr).2 E F1 +(?)A F3 -.2(ex)C(pr).2 E F1(:)A F3 -.2(ex)C(pr).2 E F0 +(conditional operator)144 600 Q F1 2.5(=*)108 612 S 2.5(=/)-2.5 G 2.5 +(=%)-2.5 G 2.5(=+)-2.5 G 2.5<3dad>-2.5 G 2.5(=<)-2.5 G(<= >>= &= ^= |=) +-2.5 E F0(assignment)144 624 Q F3 -.2(ex)108 636 S(pr1).2 E F1(,)2.5 E +F3 -.2(ex)2.5 G(pr2).2 E F0(comma)144 648 Q .68(Shell v)108 664.8 R .68 +(ariables are allo)-.25 F .68(wed as operands; parameter e)-.25 F .68 (xpansion is performed before the e)-.15 F .68(xpression is e)-.15 F --.25(va)-.25 G(lu-).25 E 3.507(ated. W)108 648 R 1.007(ithin an e)-.4 F -1.007(xpression, shell v)-.15 F 1.007 +-.25(va)-.25 G(lu-).25 E 3.508(ated. W)108 676.8 R 1.008(ithin an e)-.4 +F 1.008(xpression, shell v)-.15 F 1.007 (ariables may also be referenced by name without using the parameter) --.25 F -.15(ex)108 660 S 1.041(pansion syntax.).15 F 3.541(As)6.041 G -1.041(hell v)-3.541 F 1.041(ariable that is null or unset e)-.25 F -.25 -(va)-.25 G 1.04(luates to 0 when referenced by name without).25 F 1.466 -(using the parameter e)108 672 R 1.466(xpansion syntax.)-.15 F 1.467 -(The v)6.466 F 1.467(alue of a v)-.25 F 1.467(ariable is e)-.25 F -.25 -(va)-.25 G 1.467(luated as an arithmetic e).25 F(xpression)-.15 E 1.39 -(when it is referenced, or when a v)108 684 R 1.389 -(ariable which has been gi)-.25 F -.15(ve)-.25 G 3.889(nt).15 G(he) --3.889 E F3(inte)3.889 E -.1(ge)-.4 G(r).1 E F0(attrib)3.889 E 1.389 -(ute using)-.2 F F1(declar)3.889 E 3.889(e-)-.18 G(i)-3.889 E F0(is) -3.889 E .332(assigned a v)108 696 R 2.832(alue. A)-.25 F .332(null v) -2.832 F .332(alue e)-.25 F -.25(va)-.25 G .332(luates to 0.).25 F 2.832 -(As)5.332 G .332(hell v)-2.832 F .332(ariable need not ha)-.25 F .632 --.15(ve i)-.2 H(ts).15 E F3(inte)2.832 E -.1(ge)-.4 G(r).1 E F0(attrib) -2.832 E .333(ute turned on)-.2 F(to be used in an e)108 708 Q -(xpression.)-.15 E 1.406 -(Constants with a leading 0 are interpreted as octal numbers.)108 724.8 -R 3.906(Al)6.406 G 1.406(eading 0x or 0X denotes he)-3.906 F(xadecimal.) --.15 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16) -.15 E(30)185.545 E 0 Cg EP +-.25 F -.15(ex)108 688.8 S 1.04(pansion syntax.).15 F 3.54(As)6.04 G +1.04(hell v)-3.54 F 1.04(ariable that is null or unset e)-.25 F -.25(va) +-.25 G 1.041(luates to 0 when referenced by name without).25 F 1.467 +(using the parameter e)108 700.8 R 1.467(xpansion syntax.)-.15 F 1.467 +(The v)6.467 F 1.467(alue of a v)-.25 F 1.467(ariable is e)-.25 F -.25 +(va)-.25 G 1.466(luated as an arithmetic e).25 F(xpression)-.15 E 1.389 +(when it is referenced, or when a v)108 712.8 R 1.389 +(ariable which has been gi)-.25 F -.15(ve)-.25 G 3.89(nt).15 G(he)-3.89 +E F3(inte)3.89 E -.1(ge)-.4 G(r).1 E F0(attrib)3.89 E 1.39(ute using)-.2 +F F1(declar)3.89 E 3.89(e-)-.18 G(i)-3.89 E F0(is)3.89 E .333 +(assigned a v)108 724.8 R 2.832(alue. A)-.25 F .332(null v)2.832 F .332 +(alue e)-.25 F -.25(va)-.25 G .332(luates to 0.).25 F 2.832(As)5.332 G +.332(hell v)-2.832 F .332(ariable need not ha)-.25 F .632 -.15(ve i)-.2 +H(ts).15 E F3(inte)2.832 E -.1(ge)-.4 G(r).1 E F0(attrib)2.832 E .332 +(ute turned on)-.2 F(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(30) +190.95 E 0 Cg EP %%Page: 31 31 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .112 -(Otherwise, numbers tak)108 84 R 2.612(et)-.1 G .112(he form [)-2.612 F -/F1 10/Times-Italic@0 SF(base#)A F0 .112(]n, where the optional)B F1 -(base)2.612 E F0 .113(is a decimal number between 2 and 64)2.612 F .534 -(representing the arithmetic base, and)108 96 R F1(n)3.034 E F0 .534 -(is a number in that base.)3.034 F(If)5.533 E F1(base#)3.033 E F0 .533 -(is omitted, then base 10 is used.)3.033 F .512(When specifying)108 108 -R F1(n)3.012 E F0 3.012(,t)C .512 -(he digits greater than 9 are represented by the lo)-3.012 F .513 -(wercase letters, the uppercase letters,)-.25 F .943 -(@, and _, in that order)108 120 R 5.943(.I)-.55 G(f)-5.943 E F1(base) -3.443 E F0 .942(is less than or equal to 36, lo)3.443 F .942 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(to be used in an e)108 84 Q(xpression.)-.15 E 1.406 +(Constants with a leading 0 are interpreted as octal numbers.)108 100.8 +R 3.906(Al)6.406 G 1.407(eading 0x or 0X denotes he)-3.906 F(xadecimal.) +-.15 E .113(Otherwise, numbers tak)108 112.8 R 2.613(et)-.1 G .113 +(he form [)-2.613 F/F1 10/Times-Italic@0 SF(base#)A F0 .112 +(]n, where the optional)B F1(base)2.612 E F0 .112 +(is a decimal number between 2 and 64)2.612 F .533 +(representing the arithmetic base, and)108 124.8 R F1(n)3.033 E F0 .533 +(is a number in that base.)3.033 F(If)5.534 E F1(base#)3.034 E F0 .534 +(is omitted, then base 10 is used.)3.034 F .513(When specifying)108 +136.8 R F1(n)3.013 E F0 3.013(,t)C .513 +(he digits greater than 9 are represented by the lo)-3.013 F .512 +(wercase letters, the uppercase letters,)-.25 F .942 +(@, and _, in that order)108 148.8 R 5.942(.I)-.55 G(f)-5.942 E F1(base) +3.442 E F0 .942(is less than or equal to 36, lo)3.442 F .943 (wercase and uppercase letters may be used)-.25 F -(interchangeably to represent numbers between 10 and 35.)108 132 Q .234 -(Operators are e)108 148.8 R -.25(va)-.25 G .234 +(interchangeably to represent numbers between 10 and 35.)108 160.8 Q +.235(Operators are e)108 177.6 R -.25(va)-.25 G .235 (luated in order of precedence.).25 F(Sub-e)5.234 E .234 -(xpressions in parentheses are e)-.15 F -.25(va)-.25 G .235 -(luated \214rst and may).25 F -.15(ove)108 160.8 S +(xpressions in parentheses are e)-.15 F -.25(va)-.25 G .234 +(luated \214rst and may).25 F -.15(ove)108 189.6 S (rride the precedence rules abo).15 E -.15(ve)-.15 G(.).15 E/F2 10.95 -/Times-Bold@0 SF(CONDITION)72 177.6 Q(AL EXPRESSIONS)-.219 E F0 .256 -(Conditional e)108 189.6 R .256(xpressions are used by the)-.15 F/F3 10 +/Times-Bold@0 SF(CONDITION)72 206.4 Q(AL EXPRESSIONS)-.219 E F0 .255 +(Conditional e)108 218.4 R .255(xpressions are used by the)-.15 F/F3 10 /Times-Bold@0 SF([[)2.755 E F0 .255(compound command and the)2.755 F F3 -(test)2.755 E F0(and)2.755 E F3([)2.755 E F0 -.2(bu)2.755 G .255 -(iltin commands to test).2 F .77(\214le attrib)108 201.6 R .77 +(test)2.755 E F0(and)2.755 E F3([)2.756 E F0 -.2(bu)2.756 G .256 +(iltin commands to test).2 F .77(\214le attrib)108 230.4 R .77 (utes and perform string and arithmetic comparisons.)-.2 F .77 -(Expressions are formed from the follo)5.77 F(wing)-.25 E 1.041 -(unary or binary primaries.)108 213.6 R 1.041(If an)6.041 F(y)-.15 E F1 -(\214le)3.541 E F0(ar)3.541 E 1.04 -(gument to one of the primaries is of the form)-.18 F F1(/de)3.54 E -(v/fd/n)-.15 E F0 3.54(,t)C 1.04(hen \214le)-3.54 F(descriptor)108 225.6 -Q F1(n)3.788 E F0 1.289(is check)3.788 F 3.789(ed. If)-.1 F(the)3.789 E -F1(\214le)3.789 E F0(ar)3.789 E 1.289 +(Expressions are formed from the follo)5.77 F(wing)-.25 E 1.04 +(unary or binary primaries.)108 242.4 R 1.04(If an)6.04 F(y)-.15 E F1 +(\214le)3.54 E F0(ar)3.54 E 1.041 +(gument to one of the primaries is of the form)-.18 F F1(/de)3.541 E +(v/fd/n)-.15 E F0 3.541(,t)C 1.041(hen \214le)-3.541 F(descriptor)108 +254.4 Q F1(n)3.789 E F0 1.289(is check)3.789 F 3.789(ed. If)-.1 F(the) +3.789 E F1(\214le)3.789 E F0(ar)3.789 E 1.289 (gument to one of the primaries is one of)-.18 F F1(/de)3.789 E(v/stdin) --.15 E F0(,)A F1(/de)3.789 E(v/stdout)-.15 E F0 3.789(,o)C(r)-3.789 E F1 -(/de)108 237.6 Q(v/stderr)-.15 E F0 2.5<2c8c>C +-.15 E F0(,)A F1(/de)3.788 E(v/stdout)-.15 E F0 3.788(,o)C(r)-3.788 E F1 +(/de)108 266.4 Q(v/stderr)-.15 E F0 2.5<2c8c>C (le descriptor 0, 1, or 2, respecti)-2.5 E -.15(ve)-.25 G(ly).15 E 2.5 -(,i)-.65 G 2.5(sc)-2.5 G(heck)-2.5 E(ed.)-.1 E .722 +(,i)-.65 G 2.5(sc)-2.5 G(heck)-2.5 E(ed.)-.1 E .721 (Unless otherwise speci\214ed, primaries that operate on \214les follo) -108 254.4 R 3.221(ws)-.25 G .721(ymbolic links and operate on the tar) --3.221 F(get)-.18 E(of the link, rather than the link itself.)108 266.4 -Q 1.095(When used with)108 284.4 R F3([[)3.595 E F0 3.595(,t)C(he)-3.595 -E F3(<)3.595 E F0(and)3.595 E F3(>)3.595 E F0 1.095(operators sort le) -3.595 F 1.095(xicographically using the current locale.)-.15 F(The)6.096 -E F3(test)3.596 E F0(com-)3.596 E(mand sorts using ASCII ordering.)108 -296.4 Q F3108 320.4 Q F1(\214le)2.5 E F0 -.35(Tr)144 320.4 S +108 283.2 R 3.221(ws)-.25 G .722(ymbolic links and operate on the tar) +-3.221 F(get)-.18 E(of the link, rather than the link itself.)108 295.2 +Q 1.096(When used with)108 313.2 R F3([[)3.596 E F0 3.596(,t)C(he)-3.596 +E F3(<)3.596 E F0(and)3.595 E F3(>)3.595 E F0 1.095(operators sort le) +3.595 F 1.095(xicographically using the current locale.)-.15 F(The)6.095 +E F3(test)3.595 E F0(com-)3.595 E(mand sorts using ASCII ordering.)108 +325.2 Q F3108 349.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 349.2 S (ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F3108 -332.4 Q F1(\214le)2.5 E F0 -.35(Tr)144 332.4 S(ue if).35 E F1(\214le)2.5 +361.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 361.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is a block special \214le.).15 E F3108 -344.4 Q F1(\214le)2.5 E F0 -.35(Tr)144 344.4 S(ue if).35 E F1(\214le)2.5 +373.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 373.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is a character special \214le.).15 E F3 -108 356.4 Q F1(\214le)2.5 E F0 -.35(Tr)144 356.4 S(ue if).35 E F1 +108 385.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 385.2 S(ue if).35 E F1 (\214le)2.5 E F0 -.15(ex)2.5 G(ists and is a directory).15 E(.)-.65 E F3 -108 368.4 Q F1(\214le)2.5 E F0 -.35(Tr)144 368.4 S(ue if).35 E F1 -(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F3108 380.4 Q F1 -(\214le)2.5 E F0 -.35(Tr)144 380.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists and is a re).15 E(gular \214le.)-.15 E F3108 392.4 -Q F1(\214le)2.5 E F0 -.35(Tr)144 392.4 S(ue if).35 E F1(\214le)2.5 E F0 --.15(ex)2.5 G(ists and is set-group-id.).15 E F3108 404.4 Q F1 -(\214le)2.5 E F0 -.35(Tr)144 404.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists and is a symbolic link.).15 E F3108 416.4 Q F1 -(\214le)2.5 E F0 -.35(Tr)144 416.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +108 397.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 397.2 S(ue if).35 E F1 +(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F3108 409.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 409.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and is a re).15 E(gular \214le.)-.15 E F3108 421.2 +Q F1(\214le)2.5 E F0 -.35(Tr)144 421.2 S(ue if).35 E F1(\214le)2.5 E F0 +-.15(ex)2.5 G(ists and is set-group-id.).15 E F3108 433.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 433.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and is a symbolic link.).15 E F3108 445.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 445.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 (ex)2.5 G(ists and its `).15 E(`stick)-.74 E(y')-.15 E 2.5('b)-.74 G -(it is set.)-2.5 E F3108 428.4 Q F1(\214le)2.5 E F0 -.35(Tr)144 -428.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a named pipe \(FIFO\).).15 E F3108 440.4 Q F1(\214le) -2.5 E F0 -.35(Tr)144 440.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 -G(ists and is readable.).15 E F3108 452.4 Q F1(\214le)2.5 E F0 --.35(Tr)144 452.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and has a size greater than zero.).15 E F3108 464.4 Q F1(fd) -2.5 E F0 -.35(Tr)144 464.4 S(ue if \214le descriptor).35 E F1(fd)4.47 E -F0(is open and refers to a terminal.)3.27 E F3108 476.4 Q F1 -(\214le)2.5 E F0 -.35(Tr)144 476.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +(it is set.)-2.5 E F3108 457.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 +457.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and is a named pipe \(FIFO\).).15 E F3108 469.2 Q F1(\214le) +2.5 E F0 -.35(Tr)144 469.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 +G(ists and is readable.).15 E F3108 481.2 Q F1(\214le)2.5 E F0 +-.35(Tr)144 481.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and has a size greater than zero.).15 E F3108 493.2 Q F1(fd) +2.5 E F0 -.35(Tr)144 493.2 S(ue if \214le descriptor).35 E F1(fd)4.47 E +F0(is open and refers to a terminal.)3.27 E F3108 505.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 505.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 (ex)2.5 G(ists and its set-user).15 E(-id bit is set.)-.2 E F3108 -488.4 Q F1(\214le)2.5 E F0 -.35(Tr)144 488.4 S(ue if).35 E F1(\214le)2.5 -E F0 -.15(ex)2.5 G(ists and is writable.).15 E F3108 500.4 Q F1 -(\214le)2.5 E F0 -.35(Tr)144 500.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +517.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 517.2 S(ue if).35 E F1(\214le)2.5 +E F0 -.15(ex)2.5 G(ists and is writable.).15 E F3108 529.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 529.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 (ex)2.5 G(ists and is e).15 E -.15(xe)-.15 G(cutable.).15 E F3108 -512.4 Q F1(\214le)2.5 E F0 -.35(Tr)144 512.4 S(ue if).35 E F1(\214le)2.5 +541.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 541.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E(fecti)-.25 -E .3 -.15(ve g)-.25 H(roup id.).15 E F3108 524.4 Q F1(\214le)2.5 E -F0 -.35(Tr)144 524.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a symbolic link.).15 E F3108 536.4 Q F1(\214le)2.5 E -F0 -.35(Tr)144 536.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G +E .3 -.15(ve g)-.25 H(roup id.).15 E F3108 553.2 Q F1(\214le)2.5 E +F0 -.35(Tr)144 553.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and is a symbolic link.).15 E F3108 565.2 Q F1(\214le)2.5 E +F0 -.35(Tr)144 565.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G (ists and has been modi\214ed since it w).15 E(as last read.)-.1 E F3 -108 548.4 Q F1(\214le)2.5 E F0 -.35(Tr)144 548.4 S(ue if).35 E F1 +108 577.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 577.2 S(ue if).35 E F1 (\214le)2.5 E F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E -(fecti)-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F3108 560.4 Q F1 -(\214le)2.5 E F0 -.35(Tr)144 560.4 S(ue if).35 E F1(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists and is a sock).15 E(et.)-.1 E F1(\214le1)108 572.4 Q F3 -(\255ef)2.5 E F1(\214le2)2.5 E F0 -.35(Tr)144 584.4 S(ue if).35 E F1 +(fecti)-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F3108 589.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 589.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and is a sock).15 E(et.)-.1 E F1(\214le1)108 601.2 Q F3 +(\255ef)2.5 E F1(\214le2)2.5 E F0 -.35(Tr)144 613.2 S(ue if).35 E F1 (\214le1)2.5 E F0(and)2.5 E F1(\214le2)2.5 E F0(refer to the same de)2.5 -E(vice and inode numbers.)-.25 E F1(\214le1)108 596.4 Q F02.5 E F3 -(nt)A F1(\214le2)2.5 E F0 -.35(Tr)144 608.4 S(ue if).35 E F1(\214le1)2.5 +E(vice and inode numbers.)-.25 E F1(\214le1)108 625.2 Q F02.5 E F3 +(nt)A F1(\214le2)2.5 E F0 -.35(Tr)144 637.2 S(ue if).35 E F1(\214le1)2.5 E F0(is ne)2.5 E(wer \(according to modi\214cation date\) than)-.25 E F1 (\214le2)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F1(\214le1)2.5 E F0 -.15(ex)2.5 G(ists and).15 E F1(\214le2)2.5 E F0(does not.)2.5 E F1 -(\214le1)108 620.4 Q F02.5 E F3(ot)A F1(\214le2)2.5 E F0 -.35(Tr)144 -632.4 S(ue if).35 E F1(\214le1)2.5 E F0(is older than)2.5 E F1(\214le2) +(\214le1)108 649.2 Q F02.5 E F3(ot)A F1(\214le2)2.5 E F0 -.35(Tr)144 +661.2 S(ue if).35 E F1(\214le1)2.5 E F0(is older than)2.5 E F1(\214le2) 2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F1(\214le2)2.5 E F0 -.15(ex)2.5 -G(ists and).15 E F1(\214le1)2.5 E F0(does not.)2.5 E F3108 644.4 Q -F1(optname)2.5 E F0 -.35(Tr)144 656.4 S .263(ue if the shell option).35 +G(ists and).15 E F1(\214le1)2.5 E F0(does not.)2.5 E F3108 673.2 Q +F1(optname)2.5 E F0 -.35(Tr)144 685.2 S .262(ue if the shell option).35 F F1(optname)2.992 E F0 .262(is enabled.)2.942 F .262 (See the list of options under the description of the)5.262 F F3 -2.762 E F0(option to the)144 668.4 Q F3(set)2.5 E F0 -.2(bu)2.5 G -(iltin belo).2 E -.65(w.)-.25 G F3108 680.4 Q F1(varname)2.5 E F0 --.35(Tr)144 692.4 S(ue if the shell v).35 E(ariable)-.25 E F1(varname) -2.79 E F0(is set \(has been assigned a v)2.68 E(alue\).)-.25 E F3 -108 704.4 Q F1(varname)2.5 E F0 -.35(Tr)144 716.4 S(ue if the shell v) -.35 E(ariable)-.25 E F1(varname)2.79 E F0 -(is set and is a name reference.)2.68 E(GNU Bash 4.4)72 768 Q(2015 No) -136.385 E -.15(ve)-.15 G(mber 16).15 E(31)185.545 E 0 Cg EP +2.763 E F0(option to the)144 697.2 Q F3(set)2.5 E F0 -.2(bu)2.5 G +(iltin belo).2 E -.65(w.)-.25 G(GNU Bash 4.4)72 768 Q(2016 January 25) +141.79 E(31)190.95 E 0 Cg EP %%Page: 32 32 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF108 84 Q/F2 10/Times-Italic@0 SF(string)2.5 E F0 -.35(Tr)144 96 -S(ue if the length of).35 E F2(string)2.5 E F0(is zero.)2.5 E F2(string) -108 108 Q F1108 120 Q F2(string)2.5 E F0 -.35(Tr)144 132 S +SF108 84 Q/F2 10/Times-Italic@0 SF(varname)2.5 E F0 -.35(Tr)144 96 +S(ue if the shell v).35 E(ariable)-.25 E F2(varname)2.79 E F0 +(is set \(has been assigned a v)2.68 E(alue\).)-.25 E F1108 108 Q +F2(varname)2.5 E F0 -.35(Tr)144 120 S(ue if the shell v).35 E(ariable) +-.25 E F2(varname)2.79 E F0(is set and is a name reference.)2.68 E F1 +108 132 Q F2(string)2.5 E F0 -.35(Tr)144 144 S +(ue if the length of).35 E F2(string)2.5 E F0(is zero.)2.5 E F2(string) +108 156 Q F1108 168 Q F2(string)2.5 E F0 -.35(Tr)144 180 S (ue if the length of).35 E F2(string)2.84 E F0(is non-zero.)2.72 E F2 -(string1)108 148.8 Q F1(==)2.5 E F2(string2)2.5 E(string1)108 160.8 Q F1 -(=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 172.8 S .861 +(string1)108 196.8 Q F1(==)2.5 E F2(string2)2.5 E(string1)108 208.8 Q F1 +(=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 220.8 S .862 (ue if the strings are equal.).35 F F1(=)5.861 E F0 .861 -(should be used with the)3.361 F F1(test)3.361 E F0 .862 -(command for POSIX conformance.)3.362 F .447(When used with the)144 -184.8 R F1([[)2.946 E F0 .446 -(command, this performs pattern matching as described abo)2.946 F .746 --.15(ve \()-.15 H F1(Compound).15 E(Commands)144 196.8 Q F0(\).)A F2 -(string1)108 213.6 Q F1(!=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 225.6 S -(ue if the strings are not equal.).35 E F2(string1)108 242.4 Q F1(<)2.5 -E F2(string2)2.5 E F0 -.35(Tr)144 254.4 S(ue if).35 E F2(string1)2.5 E +(should be used with the)3.361 F F1(test)3.361 E F0 .861 +(command for POSIX conformance.)3.361 F .446(When used with the)144 +232.8 R F1([[)2.946 E F0 .446 +(command, this performs pattern matching as described abo)2.946 F .747 +-.15(ve \()-.15 H F1(Compound).15 E(Commands)144 244.8 Q F0(\).)A F2 +(string1)108 261.6 Q F1(!=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 273.6 S +(ue if the strings are not equal.).35 E F2(string1)108 290.4 Q F1(<)2.5 +E F2(string2)2.5 E F0 -.35(Tr)144 302.4 S(ue if).35 E F2(string1)2.5 E F0(sorts before)2.5 E F2(string2)2.5 E F0(le)2.5 E(xicographically)-.15 -E(.)-.65 E F2(string1)108 271.2 Q F1(>)2.5 E F2(string2)2.5 E F0 -.35 -(Tr)144 283.2 S(ue if).35 E F2(string1)2.5 E F0(sorts after)2.5 E F2 +E(.)-.65 E F2(string1)108 319.2 Q F1(>)2.5 E F2(string2)2.5 E F0 -.35 +(Tr)144 331.2 S(ue if).35 E F2(string1)2.5 E F0(sorts after)2.5 E F2 (string2)2.5 E F0(le)2.5 E(xicographically)-.15 E(.)-.65 E F2(ar)108.33 -300 Q(g1)-.37 E F1(OP)2.5 E F2(ar)2.5 E(g2)-.37 E/F3 9/Times-Bold@0 SF -(OP)144 312 Q F0 .385(is one of)2.634 F F1(\255eq)2.885 E F0(,)A F1 +348 Q(g1)-.37 E F1(OP)2.5 E F2(ar)2.5 E(g2)-.37 E/F3 9/Times-Bold@0 SF +(OP)144 360 Q F0 .385(is one of)2.635 F F1(\255eq)2.885 E F0(,)A F1 (\255ne)2.885 E F0(,)A F1(\255lt)2.885 E F0(,)A F1(\255le)2.885 E F0(,)A F1(\255gt)2.885 E F0 2.885(,o)C(r)-2.885 E F1(\255ge)2.885 E F0 5.385 (.T)C .385(hese arithmetic binary operators return true if)-5.385 F F2 -(ar)2.885 E(g1)-.37 E F0 .845(is equal to, not equal to, less than, les\ -s than or equal to, greater than, or greater than or equal to)144 324 R -F2(ar)144 336 Q(g2)-.37 E F0 2.5(,r)C(especti)-2.5 E -.15(ve)-.25 G(ly) +(ar)2.884 E(g1)-.37 E F0 .845(is equal to, not equal to, less than, les\ +s than or equal to, greater than, or greater than or equal to)144 372 R +F2(ar)144 384 Q(g2)-.37 E F0 2.5(,r)C(especti)-2.5 E -.15(ve)-.25 G(ly) .15 E(.)-.65 E F2(Ar)6.01 E(g1)-.37 E F0(and)2.5 E F2(ar)2.83 E(g2)-.37 E F0(may be positi)2.52 E .3 -.15(ve o)-.25 H 2.5(rn).15 G -2.25 -.15 (eg a)-2.5 H(ti).15 E .3 -.15(ve i)-.25 H(nte).15 E(gers.)-.15 E/F4 -10.95/Times-Bold@0 SF(SIMPLE COMMAND EXP)72 352.8 Q(ANSION)-.81 E F0 -.613(When a simple command is e)108 364.8 R -.15(xe)-.15 G .614 -(cuted, the shell performs the follo).15 F .614(wing e)-.25 F .614 +10.95/Times-Bold@0 SF(SIMPLE COMMAND EXP)72 400.8 Q(ANSION)-.81 E F0 +.614(When a simple command is e)108 412.8 R -.15(xe)-.15 G .614 +(cuted, the shell performs the follo).15 F .613(wing e)-.25 F .613 (xpansions, assignments, and redi-)-.15 F(rections, from left to right.) -108 376.8 Q(1.)108 393.6 Q 1.849(The w)144 393.6 R 1.849 -(ords that the parser has mark)-.1 F 1.848(ed as v)-.1 F 1.848 +108 424.8 Q(1.)108 441.6 Q 1.848(The w)144 441.6 R 1.848 +(ords that the parser has mark)-.1 F 1.848(ed as v)-.1 F 1.849 (ariable assignments \(those preceding the command)-.25 F -(name\) and redirections are sa)144 405.6 Q -.15(ve)-.2 G 2.5(df).15 G -(or later processing.)-2.5 E(2.)108 422.4 Q 1.163(The w)144 422.4 R -1.163(ords that are not v)-.1 F 1.164 -(ariable assignments or redirections are e)-.25 F 3.664(xpanded. If)-.15 -F(an)3.664 E 3.664(yw)-.15 G 1.164(ords remain)-3.764 F .776(after e)144 -434.4 R .776(xpansion, the \214rst w)-.15 F .776(ord is tak)-.1 F .775 +(name\) and redirections are sa)144 453.6 Q -.15(ve)-.2 G 2.5(df).15 G +(or later processing.)-2.5 E(2.)108 470.4 Q 1.164(The w)144 470.4 R +1.164(ords that are not v)-.1 F 1.164 +(ariable assignments or redirections are e)-.25 F 3.663(xpanded. If)-.15 +F(an)3.663 E 3.663(yw)-.15 G 1.163(ords remain)-3.763 F .775(after e)144 +482.4 R .775(xpansion, the \214rst w)-.15 F .775(ord is tak)-.1 F .775 (en to be the name of the command and the remaining w)-.1 F(ords)-.1 E -(are the ar)144 446.4 Q(guments.)-.18 E(3.)108 463.2 Q -(Redirections are performed as described abo)144 463.2 Q .3 -.15(ve u) +(are the ar)144 494.4 Q(guments.)-.18 E(3.)108 511.2 Q +(Redirections are performed as described abo)144 511.2 Q .3 -.15(ve u) -.15 H(nder).15 E F3(REDIRECTION)2.5 E/F5 9/Times-Roman@0 SF(.)A F0(4.) -108 480 Q .716(The te)144 480 R .717(xt after the)-.15 F F1(=)3.217 E F0 +108 528 Q .717(The te)144 528 R .717(xt after the)-.15 F F1(=)3.217 E F0 .717(in each v)3.217 F .717(ariable assignment under)-.25 F .717 (goes tilde e)-.18 F .717(xpansion, parameter e)-.15 F(xpansion,)-.15 E -.34(command substitution, arithmetic e)144 492 R .339 +.339(command substitution, arithmetic e)144 540 R .339 (xpansion, and quote remo)-.15 F -.25(va)-.15 G 2.839(lb).25 G .339 -(efore being assigned to the v)-2.839 F(ari-)-.25 E(able.)144 504 Q .332 -(If no command name results, the v)108 520.8 R .332 +(efore being assigned to the v)-2.839 F(ari-)-.25 E(able.)144 552 Q .332 +(If no command name results, the v)108 568.8 R .332 (ariable assignments af)-.25 F .332(fect the current shell en)-.25 F -2.833(vironment. Otherwise,)-.4 F(the)2.833 E -.25(va)108 532.8 S .757 +2.832(vironment. Otherwise,)-.4 F(the)2.832 E -.25(va)108 580.8 S .757 (riables are added to the en).25 F .757(vironment of the e)-.4 F -.15 (xe)-.15 G .757(cuted command and do not af).15 F .757 -(fect the current shell en)-.25 F(vi-)-.4 E 3.176(ronment. If)108 544.8 -R(an)3.176 E 3.176(yo)-.15 G 3.176(ft)-3.176 G .677 -(he assignments attempts to assign a v)-3.176 F .677 -(alue to a readonly v)-.25 F .677(ariable, an error occurs, and)-.25 F -(the command e)108 556.8 Q(xits with a non-zero status.)-.15 E .15 -(If no command name results, redirections are performed, b)108 573.6 R -.149(ut do not af)-.2 F .149(fect the current shell en)-.25 F 2.649 -(vironment. A)-.4 F(redirection error causes the command to e)108 585.6 +(fect the current shell en)-.25 F(vi-)-.4 E 3.177(ronment. If)108 592.8 +R(an)3.177 E 3.177(yo)-.15 G 3.177(ft)-3.177 G .677 +(he assignments attempts to assign a v)-3.177 F .677 +(alue to a readonly v)-.25 F .676(ariable, an error occurs, and)-.25 F +(the command e)108 604.8 Q(xits with a non-zero status.)-.15 E .149 +(If no command name results, redirections are performed, b)108 621.6 R +.149(ut do not af)-.2 F .15(fect the current shell en)-.25 F 2.65 +(vironment. A)-.4 F(redirection error causes the command to e)108 633.6 Q(xit with a non-zero status.)-.15 E 1.064 -(If there is a command name left after e)108 602.4 R 1.064(xpansion, e) +(If there is a command name left after e)108 650.4 R 1.064(xpansion, e) -.15 F -.15(xe)-.15 G 1.064(cution proceeds as described belo).15 F -4.864 -.65(w. O)-.25 H 1.064(therwise, the).65 F .069(command e)108 -614.4 R 2.569(xits. If)-.15 F .069(one of the e)2.569 F .069 -(xpansions contained a command substitution, the e)-.15 F .068 -(xit status of the command)-.15 F .466(is the e)108 626.4 R .466 -(xit status of the last command substitution performed.)-.15 F .467 -(If there were no command substitutions, the)5.466 F(command e)108 638.4 -Q(xits with a status of zero.)-.15 E F4(COMMAND EXECUTION)72 655.2 Q F0 -.547(After a command has been split into w)108 667.2 R .546 +4.864 -.65(w. O)-.25 H 1.064(therwise, the).65 F .068(command e)108 +662.4 R 2.568(xits. If)-.15 F .069(one of the e)2.568 F .069 +(xpansions contained a command substitution, the e)-.15 F .069 +(xit status of the command)-.15 F .467(is the e)108 674.4 R .466 +(xit status of the last command substitution performed.)-.15 F .466 +(If there were no command substitutions, the)5.466 F(command e)108 686.4 +Q(xits with a status of zero.)-.15 E F4(COMMAND EXECUTION)72 703.2 Q F0 +.546(After a command has been split into w)108 715.2 R .547 (ords, if it results in a simple command and an optional list of ar)-.1 -F(gu-)-.18 E(ments, the follo)108 679.2 Q(wing actions are tak)-.25 E -(en.)-.1 E .379(If the command name contains no slashes, the shell atte\ -mpts to locate it.)108 696 R .379(If there e)5.379 F .379 -(xists a shell function by)-.15 F .246(that name, that function is in) -108 708 R -.2(vo)-.4 G -.1(ke).2 G 2.746(da).1 G 2.746(sd)-2.746 G .246 -(escribed abo)-2.746 F .546 -.15(ve i)-.15 H(n).15 E F3(FUNCTIONS)2.746 -E F5(.)A F0 .246(If the name does not match a func-)4.746 F -(tion, the shell searches for it in the list of shell b)108 720 Q 2.5 -(uiltins. If)-.2 F 2.5(am)2.5 G(atch is found, that b)-2.5 E -(uiltin is in)-.2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E(GNU Bash 4.4)72 768 -Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(32)185.545 E 0 Cg EP +F(gu-)-.18 E(ments, the follo)108 727.2 Q(wing actions are tak)-.25 E +(en.)-.1 E(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(32)190.95 E 0 +Cg EP %%Page: 33 33 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .309 -(If the name is neither a shell function nor a b)108 84 R .31 -(uiltin, and contains no slashes,)-.2 F/F1 10/Times-Bold@0 SF(bash)2.81 -E F0 .31(searches each element of)2.81 F(the)108 96 Q/F2 9/Times-Bold@0 -SF -.666(PA)3.163 G(TH)-.189 E F0 .662(for a directory containing an e) -2.913 F -.15(xe)-.15 G .662(cutable \214le by that name.).15 F F1(Bash) -5.662 E F0 .662(uses a hash table to remember)3.162 F 1.914 -(the full pathnames of e)108 108 R -.15(xe)-.15 G 1.915 -(cutable \214les \(see).15 F F1(hash)4.415 E F0(under)4.415 E F2 1.915 -(SHELL B)4.415 F(UIL)-.09 E 1.915(TIN COMMANDS)-.828 F F0(belo)4.165 E -4.415(w\). A)-.25 F(full)4.415 E .72(search of the directories in)108 -120 R F2 -.666(PA)3.22 G(TH)-.189 E F0 .719 -(is performed only if the command is not found in the hash table.)2.97 F -.719(If the)5.719 F .956(search is unsuccessful, the shell searches for\ - a de\214ned shell function named)108 132 R F1(command_not_f)3.456 E -(ound_han-)-.25 E(dle)108 144 Q F0 5.278(.I)C 2.778(ft)-5.278 G .278 -(hat function e)-2.778 F .278(xists, it is in)-.15 F -.2(vo)-.4 G -.1 -(ke).2 G 2.778(dw).1 G .277 -(ith the original command and the original command')-2.778 F 2.777(sa) --.55 G -.18(rg)-2.777 G(uments).18 E .775(as its ar)108 156 R .775 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .379(If the comma\ +nd name contains no slashes, the shell attempts to locate it.)108 84 R +.379(If there e)5.379 F .379(xists a shell function by)-.15 F .246 +(that name, that function is in)108 96 R -.2(vo)-.4 G -.1(ke).2 G 2.746 +(da).1 G 2.746(sd)-2.746 G .246(escribed abo)-2.746 F .546 -.15(ve i) +-.15 H(n).15 E/F1 9/Times-Bold@0 SF(FUNCTIONS)2.746 E/F2 9/Times-Roman@0 +SF(.)A F0 .246(If the name does not match a func-)4.746 F +(tion, the shell searches for it in the list of shell b)108 108 Q 2.5 +(uiltins. If)-.2 F 2.5(am)2.5 G(atch is found, that b)-2.5 E +(uiltin is in)-.2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E .31 +(If the name is neither a shell function nor a b)108 124.8 R .309 +(uiltin, and contains no slashes,)-.2 F/F3 10/Times-Bold@0 SF(bash)2.809 +E F0 .309(searches each element of)2.809 F(the)108 136.8 Q F1 -.666(PA) +3.162 G(TH)-.189 E F0 .662(for a directory containing an e)2.912 F -.15 +(xe)-.15 G .662(cutable \214le by that name.).15 F F3(Bash)5.662 E F0 +.663(uses a hash table to remember)3.162 F 1.915 +(the full pathnames of e)108 148.8 R -.15(xe)-.15 G 1.915 +(cutable \214les \(see).15 F F3(hash)4.415 E F0(under)4.415 E F1 1.915 +(SHELL B)4.415 F(UIL)-.09 E 1.914(TIN COMMANDS)-.828 F F0(belo)4.164 E +4.414(w\). A)-.25 F(full)4.414 E .719(search of the directories in)108 +160.8 R F1 -.666(PA)3.219 G(TH)-.189 E F0 .72 +(is performed only if the command is not found in the hash table.)2.969 +F .72(If the)5.72 F .956(search is unsuccessful, the shell searches for\ + a de\214ned shell function named)108 172.8 R F3(command_not_f)3.455 E +(ound_han-)-.25 E(dle)108 184.8 Q F0 5.277(.I)C 2.777(ft)-5.277 G .277 +(hat function e)-2.777 F .277(xists, it is in)-.15 F -.2(vo)-.4 G -.1 +(ke).2 G 2.777(dw).1 G .278 +(ith the original command and the original command')-2.777 F 2.778(sa) +-.55 G -.18(rg)-2.778 G(uments).18 E .776(as its ar)108 196.8 R .776 (guments, and the function')-.18 F 3.275(se)-.55 G .775 (xit status becomes the e)-3.425 F .775(xit status of the shell.)-.15 F -.776(If that function is not)5.776 F -(de\214ned, the shell prints an error message and returns an e)108 168 Q -(xit status of 127.)-.15 E 1.089(If the search is successful, or if the\ - command name contains one or more slashes, the shell e)108 184.8 R -.15 -(xe)-.15 G 1.089(cutes the).15 F .197(named program in a separate e)108 -196.8 R -.15(xe)-.15 G .197(cution en).15 F 2.698(vironment. Ar)-.4 F -.198(gument 0 is set to the name gi)-.18 F -.15(ve)-.25 G .198 -(n, and the remain-).15 F(ing ar)108 208.8 Q +.775(If that function is not)5.775 F +(de\214ned, the shell prints an error message and returns an e)108 208.8 +Q(xit status of 127.)-.15 E 1.089(If the search is successful, or if th\ +e command name contains one or more slashes, the shell e)108 225.6 R +-.15(xe)-.15 G 1.09(cutes the).15 F .198(named program in a separate e) +108 237.6 R -.15(xe)-.15 G .198(cution en).15 F 2.698(vironment. Ar)-.4 +F .198(gument 0 is set to the name gi)-.18 F -.15(ve)-.25 G .197 +(n, and the remain-).15 F(ing ar)108 249.6 Q (guments to the command are set to the ar)-.18 E(guments gi)-.18 E -.15 -(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.809(If this e)108 225.6 R +(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.809(If this e)108 266.4 R -.15(xe)-.15 G 1.809(cution f).15 F 1.809 (ails because the \214le is not in e)-.1 F -.15(xe)-.15 G 1.809 (cutable format, and the \214le is not a directory).15 F 4.309(,i)-.65 G -4.309(ti)-4.309 G(s)-4.309 E .677(assumed to be a)108 237.6 R/F3 10 -/Times-Italic@0 SF .678(shell script)3.177 F F0 3.178(,a\214)C .678 +4.309(ti)-4.309 G(s)-4.309 E .678(assumed to be a)108 278.4 R/F4 10 +/Times-Italic@0 SF .678(shell script)3.178 F F0 3.178(,a\214)C .678 (le containing shell commands.)-3.178 F 3.178(As)5.678 G .678 -(ubshell is spa)-3.178 F .678(wned to e)-.15 F -.15(xe)-.15 G .678 -(cute it.).15 F(This)5.678 E .33 -(subshell reinitializes itself, so that the ef)108 249.6 R .33 -(fect is as if a ne)-.25 F 2.829(ws)-.25 G .329(hell had been in)-2.829 -F -.2(vo)-.4 G -.1(ke).2 G 2.829(dt).1 G 2.829(oh)-2.829 G .329 -(andle the script, with)-2.829 F 1.219(the e)108 261.6 R 1.219 +(ubshell is spa)-3.178 F .677(wned to e)-.15 F -.15(xe)-.15 G .677 +(cute it.).15 F(This)5.677 E .329 +(subshell reinitializes itself, so that the ef)108 290.4 R .329 +(fect is as if a ne)-.25 F 2.83(ws)-.25 G .33(hell had been in)-2.83 F +-.2(vo)-.4 G -.1(ke).2 G 2.83(dt).1 G 2.83(oh)-2.83 G .33 +(andle the script, with)-2.83 F 1.219(the e)108 302.4 R 1.219 (xception that the locations of commands remembered by the parent \(see) --.15 F F1(hash)3.719 E F0(belo)3.719 E 3.719(wu)-.25 G(nder)-3.719 E F2 -(SHELL)3.719 E -.09(BU)108 273.6 S(IL).09 E(TIN COMMANDS)-.828 E/F4 9 -/Times-Roman@0 SF(\))A F0(are retained by the child.)2.25 E .348 -(If the program is a \214le be)108 290.4 R .348(ginning with)-.15 F F1 -(#!)2.848 E F0 2.848(,t)C .347(he remainder of the \214rst line speci\ -\214es an interpreter for the pro-)-2.848 F 3.178(gram. The)108 302.4 R -.678(shell e)3.178 F -.15(xe)-.15 G .678(cutes the speci\214ed interpre\ -ter on operating systems that do not handle this e).15 F -.15(xe)-.15 G -(cutable).15 E 1.193(format themselv)108 314.4 R 3.693(es. The)-.15 F -(ar)3.693 E 1.193 -(guments to the interpreter consist of a single optional ar)-.18 F 1.192 -(gument follo)-.18 F 1.192(wing the)-.25 F 1.13 -(interpreter name on the \214rst line of the program, follo)108 326.4 R -1.131(wed by the name of the program, follo)-.25 F 1.131(wed by the)-.25 -F(command ar)108 338.4 Q(guments, if an)-.18 E -.65(y.)-.15 G/F5 10.95 -/Times-Bold@0 SF(COMMAND EXECUTION ENVIR)72 355.2 Q(ONMENT)-.329 E F0 -(The shell has an)108 367.2 Q F3 -.2(ex)2.5 G(ecution en).2 E(vir)-.4 E +-.15 F F3(hash)3.719 E F0(belo)3.719 E 3.719(wu)-.25 G(nder)-3.719 E F1 +(SHELL)3.719 E -.09(BU)108 314.4 S(IL).09 E(TIN COMMANDS)-.828 E F2(\))A +F0(are retained by the child.)2.25 E .347(If the program is a \214le be) +108 331.2 R .347(ginning with)-.15 F F3(#!)2.847 E F0 2.847(,t)C .348(h\ +e remainder of the \214rst line speci\214es an interpreter for the pro-) +-2.847 F 3.178(gram. The)108 343.2 R .678(shell e)3.178 F -.15(xe)-.15 G +.678(cutes the speci\214ed interpreter on operating systems that do not\ + handle this e).15 F -.15(xe)-.15 G(cutable).15 E 1.192(format themselv) +108 355.2 R 3.692(es. The)-.15 F(ar)3.693 E 1.193 +(guments to the interpreter consist of a single optional ar)-.18 F 1.193 +(gument follo)-.18 F 1.193(wing the)-.25 F 1.131 +(interpreter name on the \214rst line of the program, follo)108 367.2 R +1.13(wed by the name of the program, follo)-.25 F 1.13(wed by the)-.25 F +(command ar)108 379.2 Q(guments, if an)-.18 E -.65(y.)-.15 G/F5 10.95 +/Times-Bold@0 SF(COMMAND EXECUTION ENVIR)72 396 Q(ONMENT)-.329 E F0 +(The shell has an)108 408 Q F4 -.2(ex)2.5 G(ecution en).2 E(vir)-.4 E (onment)-.45 E F0 2.5(,w)C(hich consists of the follo)-2.5 E(wing:)-.25 -E<83>108 384 Q 1.406(open \214les inherited by the shell at in)144 384 R --.2(vo)-.4 G 1.405 -(cation, as modi\214ed by redirections supplied to the).2 F F1(exec) -3.905 E F0 -.2(bu)144 396 S(iltin).2 E<83>108 412.8 Q(the current w)144 -412.8 Q(orking directory as set by)-.1 E F1(cd)2.5 E F0(,)A F1(pushd)2.5 -E F0 2.5(,o)C(r)-2.5 E F1(popd)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G -(nherited by the shell at in)-2.5 E -.2(vo)-.4 G(cation).2 E<83>108 -429.6 Q(the \214le creation mode mask as set by)144 429.6 Q F1(umask)2.5 +E<83>108 424.8 Q 1.405(open \214les inherited by the shell at in)144 +424.8 R -.2(vo)-.4 G 1.406 +(cation, as modi\214ed by redirections supplied to the).2 F F3(exec) +3.906 E F0 -.2(bu)144 436.8 S(iltin).2 E<83>108 453.6 Q(the current w) +144 453.6 Q(orking directory as set by)-.1 E F3(cd)2.5 E F0(,)A F3 +(pushd)2.5 E F0 2.5(,o)C(r)-2.5 E F3(popd)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 +G(nherited by the shell at in)-2.5 E -.2(vo)-.4 G(cation).2 E<83>108 +470.4 Q(the \214le creation mode mask as set by)144 470.4 Q F3(umask)2.5 E F0(or inherited from the shell')2.5 E 2.5(sp)-.55 G(arent)-2.5 E<83> -108 446.4 Q(current traps set by)144 446.4 Q F1(trap)2.5 E F0<83>108 -463.2 Q .256(shell parameters that are set by v)144 463.2 R .256 -(ariable assignment or with)-.25 F F1(set)2.756 E F0 .257 -(or inherited from the shell')2.756 F 2.757(sp)-.55 G(arent)-2.757 E -(in the en)144 475.2 Q(vironment)-.4 E<83>108 492 Q -(shell functions de\214ned during e)144 492 Q -.15(xe)-.15 G +108 487.2 Q(current traps set by)144 487.2 Q F3(trap)2.5 E F0<83>108 504 +Q .257(shell parameters that are set by v)144 504 R .256 +(ariable assignment or with)-.25 F F3(set)2.756 E F0 .256 +(or inherited from the shell')2.756 F 2.756(sp)-.55 G(arent)-2.756 E +(in the en)144 516 Q(vironment)-.4 E<83>108 532.8 Q +(shell functions de\214ned during e)144 532.8 Q -.15(xe)-.15 G (cution or inherited from the shell').15 E 2.5(sp)-.55 G -(arent in the en)-2.5 E(vironment)-.4 E<83>108 508.8 Q -(options enabled at in)144 508.8 Q -.2(vo)-.4 G(cation \(either by def) -.2 E(ault or with command-line ar)-.1 E(guments\) or by)-.18 E F1(set) -2.5 E F0<83>108 525.6 Q(options enabled by)144 525.6 Q F1(shopt)2.5 E F0 -<83>108 542.4 Q(shell aliases de\214ned with)144 542.4 Q F1(alias)2.5 E -F0<83>108 559.2 Q -.25(va)144 559.2 S +(arent in the en)-2.5 E(vironment)-.4 E<83>108 549.6 Q +(options enabled at in)144 549.6 Q -.2(vo)-.4 G(cation \(either by def) +.2 E(ault or with command-line ar)-.1 E(guments\) or by)-.18 E F3(set) +2.5 E F0<83>108 566.4 Q(options enabled by)144 566.4 Q F3(shopt)2.5 E F0 +<83>108 583.2 Q(shell aliases de\214ned with)144 583.2 Q F3(alias)2.5 E +F0<83>108 600 Q -.25(va)144 600 S (rious process IDs, including those of background jobs, the v).25 E -(alue of)-.25 E F1($$)2.5 E F0 2.5(,a)C(nd the v)-2.5 E(alue of)-.25 E -F2(PPID)2.5 E F0 .427(When a simple command other than a b)108 576 R -.426(uiltin or shell function is to be e)-.2 F -.15(xe)-.15 G .426 -(cuted, it is in).15 F -.2(vo)-.4 G -.1(ke).2 G 2.926(di).1 G 2.926(nas) --2.926 G(eparate)-2.926 E -.15(exe)108 588 S .133(cution en).15 F .133 +(alue of)-.25 E F3($$)2.5 E F0 2.5(,a)C(nd the v)-2.5 E(alue of)-.25 E +F1(PPID)2.5 E F0 .426(When a simple command other than a b)108 616.8 R +.427(uiltin or shell function is to be e)-.2 F -.15(xe)-.15 G .427 +(cuted, it is in).15 F -.2(vo)-.4 G -.1(ke).2 G 2.927(di).1 G 2.927(nas) +-2.927 G(eparate)-2.927 E -.15(exe)108 628.8 S .134(cution en).15 F .134 (vironment that consists of the follo)-.4 F 2.634(wing. Unless)-.25 F -.134(otherwise noted, the v)2.634 F .134(alues are inherited from)-.25 F -(the shell.)108 600 Q<83>108 616.8 Q 1.056(the shell')144 616.8 R 3.556 -(so)-.55 G 1.056(pen \214les, plus an)-3.556 F 3.556(ym)-.15 G 1.056 +.133(otherwise noted, the v)2.634 F .133(alues are inherited from)-.25 F +(the shell.)108 640.8 Q<83>108 657.6 Q 1.055(the shell')144 657.6 R +3.555(so)-.55 G 1.055(pen \214les, plus an)-3.555 F 3.556(ym)-.15 G +1.056 (odi\214cations and additions speci\214ed by redirections to the com-) --3.556 F(mand)144 628.8 Q<83>108 645.6 Q(the current w)144 645.6 Q -(orking directory)-.1 E<83>108 662.4 Q(the \214le creation mode mask)144 -662.4 Q<83>108 679.2 Q .856(shell v)144 679.2 R .857 -(ariables and functions mark)-.25 F .857(ed for e)-.1 F .857 -(xport, along with v)-.15 F .857(ariables e)-.25 F .857 -(xported for the command,)-.15 F(passed in the en)144 691.2 Q(vironment) --.4 E<83>108 708 Q .307(traps caught by the shell are reset to the v)144 -708 R .306(alues inherited from the shell')-.25 F 2.806(sp)-.55 G .306 -(arent, and traps ignored)-2.806 F(by the shell are ignored)144 720 Q -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(33)185.545 E 0 Cg EP +-3.556 F(mand)144 669.6 Q<83>108 686.4 Q(the current w)144 686.4 Q +(orking directory)-.1 E<83>108 703.2 Q(the \214le creation mode mask)144 +703.2 Q(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(33)190.95 E 0 Cg +EP %%Page: 34 34 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.5(Ac)108 84 S -(ommand in)-2.5 E -.2(vo)-.4 G -.1(ke).2 G 2.5(di).1 G 2.5(nt)-2.5 G -(his separate en)-2.5 E(vironment cannot af)-.4 E(fect the shell')-.25 E -2.5(se)-.55 G -.15(xe)-2.65 G(cution en).15 E(vironment.)-.4 E .577(Com\ -mand substitution, commands grouped with parentheses, and asynchronous \ -commands are in)108 100.8 R -.2(vo)-.4 G -.1(ke).2 G 3.078(di).1 G(n) --3.078 E 2.745(as)108 112.8 S .245(ubshell en)-2.745 F .245 -(vironment that is a duplicate of the shell en)-.4 F .244(vironment, e) --.4 F .244(xcept that traps caught by the shell are)-.15 F .358 -(reset to the v)108 124.8 R .358 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E<83>108 84 Q .857 +(shell v)144 84 R .857(ariables and functions mark)-.25 F .857(ed for e) +-.1 F .857(xport, along with v)-.15 F .857(ariables e)-.25 F .857 +(xported for the command,)-.15 F(passed in the en)144 96 Q(vironment)-.4 +E<83>108 112.8 Q .306(traps caught by the shell are reset to the v)144 +112.8 R .307(alues inherited from the shell')-.25 F 2.807(sp)-.55 G .307 +(arent, and traps ignored)-2.807 F(by the shell are ignored)144 124.8 Q +2.5(Ac)108 141.6 S(ommand in)-2.5 E -.2(vo)-.4 G -.1(ke).2 G 2.5(di).1 G +2.5(nt)-2.5 G(his separate en)-2.5 E(vironment cannot af)-.4 E +(fect the shell')-.25 E 2.5(se)-.55 G -.15(xe)-2.65 G(cution en).15 E +(vironment.)-.4 E .577(Command substitution, commands grouped with pare\ +ntheses, and asynchronous commands are in)108 158.4 R -.2(vo)-.4 G -.1 +(ke).2 G 3.077(di).1 G(n)-3.077 E 2.744(as)108 170.4 S .244(ubshell en) +-2.744 F .244(vironment that is a duplicate of the shell en)-.4 F .245 +(vironment, e)-.4 F .245(xcept that traps caught by the shell are)-.15 F +.359(reset to the v)108 182.4 R .358 (alues that the shell inherited from its parent at in)-.25 F -.2(vo)-.4 -G 2.858(cation. Builtin).2 F .359(commands that are in)2.859 F -.2(vo) --.4 G -.1(ke).2 G(d).1 E .857(as part of a pipeline are also e)108 136.8 -R -.15(xe)-.15 G .856(cuted in a subshell en).15 F 3.356 -(vironment. Changes)-.4 F .856(made to the subshell en)3.356 F(viron-) --.4 E(ment cannot af)108 148.8 Q(fect the shell')-.25 E 2.5(se)-.55 G --.15(xe)-2.65 G(cution en).15 E(vironment.)-.4 E 1.376(Subshells spa)108 -165.6 R 1.376(wned to e)-.15 F -.15(xe)-.15 G 1.377 +G 2.858(cation. Builtin).2 F .358(commands that are in)2.858 F -.2(vo) +-.4 G -.1(ke).2 G(d).1 E .856(as part of a pipeline are also e)108 194.4 +R -.15(xe)-.15 G .856(cuted in a subshell en).15 F 3.357 +(vironment. Changes)-.4 F .857(made to the subshell en)3.357 F(viron-) +-.4 E(ment cannot af)108 206.4 Q(fect the shell')-.25 E 2.5(se)-.55 G +-.15(xe)-2.65 G(cution en).15 E(vironment.)-.4 E 1.377(Subshells spa)108 +223.2 R 1.377(wned to e)-.15 F -.15(xe)-.15 G 1.377 (cute command substitutions inherit the v).15 F 1.377(alue of the)-.25 F -/F1 10/Times-Bold@0 SF3.877 E F0 1.377(option from the parent) -3.877 F 2.5(shell. When)108 177.6 R(not in)2.5 E/F2 10/Times-Italic@0 SF +/F1 10/Times-Bold@0 SF3.876 E F0 1.376(option from the parent) +3.876 F 2.5(shell. When)108 235.2 R(not in)2.5 E/F2 10/Times-Italic@0 SF (posix)2.5 E F0(mode,)2.5 E F1(bash)2.5 E F0(clears the)2.5 E F1 -2.5 E F0(option in such subshells.)2.5 E .405(If a command is follo)108 -194.4 R .405(wed by a)-.25 F F1(&)2.905 E F0 .404 -(and job control is not acti)2.905 F -.15(ve)-.25 G 2.904(,t).15 G .404 -(he def)-2.904 F .404(ault standard input for the command)-.1 F .197 -(is the empty \214le)108 206.4 R F2(/de)2.697 E(v/null)-.15 E F0 5.197 -(.O)C .197(therwise, the in)-5.197 F -.2(vo)-.4 G -.1(ke).2 G 2.697(dc) -.1 G .198(ommand inherits the \214le descriptors of the calling shell) --2.697 F(as modi\214ed by redirections.)108 218.4 Q/F3 10.95 -/Times-Bold@0 SF(ENVIR)72 235.2 Q(ONMENT)-.329 E F0 2.354 -(When a program is in)108 247.2 R -.2(vo)-.4 G -.1(ke).2 G 4.853(di).1 G -4.853(ti)-4.853 G 4.853(sg)-4.853 G -2.15 -.25(iv e)-4.853 H 4.853(na) -.25 G 4.853(na)-4.853 G 2.353(rray of strings called the)-4.853 F F2(en) -4.853 E(vir)-.4 E(onment)-.45 E F0 7.353(.T).68 G 2.353 -(his is a list of)-7.353 F F2(name)108 259.2 Q F0A F2(value)A F0 -(pairs, of the form)2.5 E F2(name)2.5 E F0(=)A F2(value)A F0(.).18 E -1.485(The shell pro)108 276 R 1.485(vides se)-.15 F -.15(ve)-.25 G 1.485 -(ral w).15 F 1.485(ays to manipulate the en)-.1 F 3.985(vironment. On) --.4 F(in)3.985 E -.2(vo)-.4 G 1.486(cation, the shell scans its o).2 F -(wn)-.25 E(en)108 288 Q .144(vironment and creates a parameter for each\ - name found, automatically marking it for)-.4 F F2 -.2(ex)2.643 G(port) -.2 E F0 .143(to child pro-)3.323 F 2.703(cesses. Ex)108 300 R .203 -(ecuted commands inherit the en)-.15 F 2.703(vironment. The)-.4 F F1 -(export)2.703 E F0(and)2.703 E F1(declar)2.703 E 2.703<65ad>-.18 G(x) --2.703 E F0 .203(commands allo)2.703 F 2.704(wp)-.25 G(aram-)-2.704 E -1.153(eters and functions to be added to and deleted from the en)108 312 -R 3.653(vironment. If)-.4 F 1.153(the v)3.653 F 1.153 -(alue of a parameter in the)-.25 F(en)108 324 Q .64 +2.5 E F0(option in such subshells.)2.5 E .404(If a command is follo)108 +252 R .404(wed by a)-.25 F F1(&)2.904 E F0 .405 +(and job control is not acti)2.904 F -.15(ve)-.25 G 2.905(,t).15 G .405 +(he def)-2.905 F .405(ault standard input for the command)-.1 F .198 +(is the empty \214le)108 264 R F2(/de)2.698 E(v/null)-.15 E F0 5.198(.O) +C .198(therwise, the in)-5.198 F -.2(vo)-.4 G -.1(ke).2 G 2.698(dc).1 G +.197(ommand inherits the \214le descriptors of the calling shell)-2.698 +F(as modi\214ed by redirections.)108 276 Q/F3 10.95/Times-Bold@0 SF +(ENVIR)72 292.8 Q(ONMENT)-.329 E F0 2.353(When a program is in)108 304.8 +R -.2(vo)-.4 G -.1(ke).2 G 4.853(di).1 G 4.853(ti)-4.853 G 4.853(sg) +-4.853 G -2.15 -.25(iv e)-4.853 H 4.853(na).25 G 4.853(na)-4.853 G 2.353 +(rray of strings called the)-4.853 F F2(en)4.853 E(vir)-.4 E(onment)-.45 +E F0 7.353(.T).68 G 2.354(his is a list of)-7.353 F F2(name)108 316.8 Q +F0A F2(value)A F0(pairs, of the form)2.5 E F2(name)2.5 E F0(=)A F2 +(value)A F0(.).18 E 1.486(The shell pro)108 333.6 R 1.486(vides se)-.15 +F -.15(ve)-.25 G 1.486(ral w).15 F 1.485(ays to manipulate the en)-.1 F +3.985(vironment. On)-.4 F(in)3.985 E -.2(vo)-.4 G 1.485 +(cation, the shell scans its o).2 F(wn)-.25 E(en)108 345.6 Q .144(viron\ +ment and creates a parameter for each name found, automatically marking\ + it for)-.4 F F2 -.2(ex)2.644 G(port).2 E F0 .144(to child pro-)3.324 F +2.704(cesses. Ex)108 357.6 R .203(ecuted commands inherit the en)-.15 F +2.703(vironment. The)-.4 F F1(export)2.703 E F0(and)2.703 E F1(declar) +2.703 E 2.703<65ad>-.18 G(x)-2.703 E F0 .203(commands allo)2.703 F 2.703 +(wp)-.25 G(aram-)-2.703 E 1.153 +(eters and functions to be added to and deleted from the en)108 369.6 R +3.653(vironment. If)-.4 F 1.153(the v)3.653 F 1.154 +(alue of a parameter in the)-.25 F(en)108 381.6 Q .64 (vironment is modi\214ed, the ne)-.4 F 3.14(wv)-.25 G .64 (alue becomes part of the en)-3.39 F .64(vironment, replacing the old.) --.4 F .64(The en)5.64 F(viron-)-.4 E .58(ment inherited by an)108 336 R -3.08(ye)-.15 G -.15(xe)-3.23 G .58(cuted command consists of the shell') -.15 F 3.08(si)-.55 G .58(nitial en)-3.08 F .58(vironment, whose v)-.4 F -.58(alues may be)-.25 F .3(modi\214ed in the shell, less an)108 348 R -2.8(yp)-.15 G .3(airs remo)-2.8 F -.15(ve)-.15 G 2.8(db).15 G 2.801(yt) --2.8 G(he)-2.801 E F1(unset)2.801 E F0 .301(command, plus an)2.801 F -2.801(ya)-.15 G .301(dditions via the)-2.801 F F1(export)2.801 E F0(and) -2.801 E F1(declar)108 360 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.)2.5 E -.563(The en)108 376.8 R .563(vironment for an)-.4 F(y)-.15 E F2 .563 -(simple command)3.403 F F0 .562 +-.4 F .64(The en)5.64 F(viron-)-.4 E .58(ment inherited by an)108 393.6 +R 3.08(ye)-.15 G -.15(xe)-3.23 G .58 +(cuted command consists of the shell').15 F 3.08(si)-.55 G .58 +(nitial en)-3.08 F .58(vironment, whose v)-.4 F .58(alues may be)-.25 F +.301(modi\214ed in the shell, less an)108 405.6 R 2.801(yp)-.15 G .301 +(airs remo)-2.801 F -.15(ve)-.15 G 2.801(db).15 G 2.801(yt)-2.801 G(he) +-2.801 E F1(unset)2.801 E F0 .3(command, plus an)2.8 F 2.8(ya)-.15 G .3 +(dditions via the)-2.8 F F1(export)2.8 E F0(and)2.8 E F1(declar)108 +417.6 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.)2.5 E .562(The en)108 +434.4 R .562(vironment for an)-.4 F(y)-.15 E F2 .562(simple command) +3.402 F F0 .563 (or function may be augmented temporarily by pre\214xing it with)3.833 F -.202(parameter assignments, as described abo)108 388.8 R .502 -.15(ve i) +.203(parameter assignments, as described abo)108 446.4 R .502 -.15(ve i) -.15 H(n).15 E/F4 9/Times-Bold@0 SF -.666(PA)2.702 G(RAMETERS).666 E/F5 9/Times-Roman@0 SF(.)A F0 .202(These assignment statements af)4.702 F -.203(fect only the)-.25 F(en)108 400.8 Q -(vironment seen by that command.)-.4 E .81(If the)108 417.6 R F1 +.202(fect only the)-.25 F(en)108 458.4 Q +(vironment seen by that command.)-.4 E .81(If the)108 475.2 R F1 3.31 E F0 .81(option is set \(see the)3.31 F F1(set)3.31 E F0 -.2(bu) 3.31 G .81(iltin command belo).2 F .81(w\), then)-.25 F F2(all)3.64 E F0 -.81(parameter assignments are placed in)3.82 F(the en)108 429.6 Q +.81(parameter assignments are placed in)3.82 F(the en)108 487.2 Q (vironment for a command, not just those that precede the command name.) --.4 E(When)108 446.4 Q F1(bash)3.585 E F0(in)3.585 E -.2(vo)-.4 G -.1 -(ke).2 G 3.585(sa).1 G 3.585(ne)-3.585 G 1.085(xternal command, the v) --3.735 F(ariable)-.25 E F1(_)3.585 E F0 1.086 +-.4 E(When)108 504 Q F1(bash)3.586 E F0(in)3.586 E -.2(vo)-.4 G -.1(ke) +.2 G 3.586(sa).1 G 3.586(ne)-3.586 G 1.086(xternal command, the v)-3.736 +F(ariable)-.25 E F1(_)3.586 E F0 1.085 (is set to the full \214lename of the command and)3.586 F -(passed to that command in its en)108 458.4 Q(vironment.)-.4 E F3 -(EXIT ST)72 475.2 Q -1.04(AT)-.986 G(US)1.04 E F0 .151(The e)108 487.2 R -.151(xit status of an e)-.15 F -.15(xe)-.15 G .151 -(cuted command is the v).15 F .15(alue returned by the)-.25 F F2 -(waitpid)2.65 E F0 .15(system call or equi)2.65 F -.25(va)-.25 G .15 -(lent func-).25 F 2.847(tion. Exit)108 499.2 R .347(statuses f)2.847 F -.347(all between 0 and 255, though, as e)-.1 F .347(xplained belo)-.15 F -1.647 -.65(w, t)-.25 H .347(he shell may use v).65 F .348(alues abo)-.25 -F .648 -.15(ve 1)-.15 H(25).15 E(specially)108 511.2 Q 5.507(.E)-.65 G -.507(xit statuses from shell b)-5.507 F .507 +(passed to that command in its en)108 516 Q(vironment.)-.4 E F3(EXIT ST) +72 532.8 Q -1.04(AT)-.986 G(US)1.04 E F0 .15(The e)108 544.8 R .15 +(xit status of an e)-.15 F -.15(xe)-.15 G .15(cuted command is the v).15 +F .151(alue returned by the)-.25 F F2(waitpid)2.651 E F0 .151 +(system call or equi)2.651 F -.25(va)-.25 G .151(lent func-).25 F 2.848 +(tion. Exit)108 556.8 R .348(statuses f)2.848 F .347 +(all between 0 and 255, though, as e)-.1 F .347(xplained belo)-.15 F +1.647 -.65(w, t)-.25 H .347(he shell may use v).65 F .347(alues abo)-.25 +F .647 -.15(ve 1)-.15 H(25).15 E(specially)108 568.8 Q 5.506(.E)-.65 G +.506(xit statuses from shell b)-5.506 F .507 (uiltins and compound commands are also limited to this range.)-.2 F -(Under)5.506 E(certain circumstances, the shell will use special v)108 -523.2 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -.15 -(Fo)108 540 S 3.372(rt).15 G .872(he shell')-3.372 F 3.372(sp)-.55 G -.873(urposes, a command which e)-3.372 F .873(xits with a zero e)-.15 F -.873(xit status has succeeded.)-.15 F .873(An e)5.873 F .873 -(xit status of)-.15 F .049(zero indicates success.)108 552 R 2.549(An) -5.049 G .049(on-zero e)-2.549 F .049(xit status indicates f)-.15 F 2.549 -(ailure. When)-.1 F 2.549(ac)2.549 G .048(ommand terminates on a f) --2.549 F .048(atal sig-)-.1 F(nal)108 564 Q F2(N)2.5 E F0(,)A F1(bash) +(Under)5.507 E(certain circumstances, the shell will use special v)108 +580.8 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -.15 +(Fo)108 597.6 S 3.373(rt).15 G .873(he shell')-3.373 F 3.373(sp)-.55 G +.873(urposes, a command which e)-3.373 F .873(xits with a zero e)-.15 F +.873(xit status has succeeded.)-.15 F .872(An e)5.872 F .872 +(xit status of)-.15 F .048(zero indicates success.)108 609.6 R 2.548(An) +5.048 G .049(on-zero e)-2.548 F .049(xit status indicates f)-.15 F 2.549 +(ailure. When)-.1 F 2.549(ac)2.549 G .049(ommand terminates on a f) +-2.549 F .049(atal sig-)-.1 F(nal)108 621.6 Q F2(N)2.5 E F0(,)A F1(bash) 2.5 E F0(uses the v)2.5 E(alue of 128+)-.25 E F2(N)A F0(as the e)2.5 E -(xit status.)-.15 E .404 -(If a command is not found, the child process created to e)108 580.8 R --.15(xe)-.15 G .404(cute it returns a status of 127.).15 F .405 -(If a command is)5.405 F(found b)108 592.8 Q(ut is not e)-.2 E -.15(xe) --.15 G(cutable, the return status is 126.).15 E(If a command f)108 609.6 +(xit status.)-.15 E .405 +(If a command is not found, the child process created to e)108 638.4 R +-.15(xe)-.15 G .404(cute it returns a status of 127.).15 F .404 +(If a command is)5.404 F(found b)108 650.4 Q(ut is not e)-.2 E -.15(xe) +-.15 G(cutable, the return status is 126.).15 E(If a command f)108 667.2 Q(ails because of an error during e)-.1 E (xpansion or redirection, the e)-.15 E(xit status is greater than zero.) --.15 E .081(Shell b)108 626.4 R .081 +-.15 E .08(Shell b)108 684 R .08 (uiltin commands return a status of 0 \()-.2 F F2(true)A F0 2.581(\)i)C -2.581(fs)-2.581 G .08(uccessful, and non-zero \()-2.581 F F2(false)A F0 -2.58(\)i)C 2.58(fa)-2.58 G 2.58(ne)-2.58 G .08(rror occurs while)-2.58 F -(the)108 638.4 Q 2.967(ye)-.15 G -.15(xe)-3.117 G 2.967(cute. All).15 F --.2(bu)2.967 G .467(iltins return an e).2 F .468 +2.581(fs)-2.581 G .081(uccessful, and non-zero \()-2.581 F F2(false)A F0 +2.581(\)i)C 2.581(fa)-2.581 G 2.581(ne)-2.581 G .081(rror occurs while) +-2.581 F(the)108 696 Q 2.968(ye)-.15 G -.15(xe)-3.118 G 2.968(cute. All) +.15 F -.2(bu)2.968 G .468(iltins return an e).2 F .468 (xit status of 2 to indicate incorrect usage, generally in)-.15 F -.25 -(va)-.4 G .468(lid options or).25 F(missing ar)108 650.4 Q(guments.)-.18 -E F1(Bash)108 667.2 Q F0 .202(itself returns the e)2.702 F .202 -(xit status of the last command e)-.15 F -.15(xe)-.15 G .201 -(cuted, unless a syntax error occurs, in which case).15 F(it e)108 679.2 -Q(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F1 -(exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G F3 -(SIGN)72 696 Q(ALS)-.219 E F0(When)108 708 Q F1(bash)3.182 E F0 .682 -(is interacti)3.182 F -.15(ve)-.25 G 3.182(,i).15 G 3.182(nt)-3.182 G -.682(he absence of an)-3.182 F 3.183(yt)-.15 G .683(raps, it ignores) --3.183 F F4(SIGTERM)3.183 E F0 .683(\(so that)2.933 F F1 .683(kill 0) -3.183 F F0 .683(does not kill an)3.183 F(interacti)108 720 Q .758 -.15 -(ve s)-.25 H .458(hell\), and).15 F F4(SIGINT)2.958 E F0 .458 -(is caught and handled \(so that the)2.708 F F1(wait)2.958 E F0 -.2(bu) -2.958 G .457(iltin is interruptible\).).2 F .457(In all cases,)5.457 F -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(34)185.545 E 0 Cg EP +(va)-.4 G .467(lid options or).25 F(missing ar)108 708 Q(guments.)-.18 E +F1(Bash)108 724.8 Q F0 .201(itself returns the e)2.701 F .202 +(xit status of the last command e)-.15 F -.15(xe)-.15 G .202 +(cuted, unless a syntax error occurs, in which case).15 F(GNU Bash 4.4) +72 768 Q(2016 January 25)141.79 E(34)190.95 E 0 Cg EP %%Page: 35 35 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(bash)108 84 Q F0(ignores)2.5 E/F2 9/Times-Bold@0 SF(SIGQ)2.5 E(UIT) --.09 E/F3 9/Times-Roman@0 SF(.)A F0(If job control is in ef)4.5 E(fect,) --.25 E F1(bash)2.5 E F0(ignores)2.5 E F2(SIGTTIN)2.5 E F3(,)A F2(SIGTT) -2.25 E(OU)-.162 E F3(,)A F0(and)2.25 E F2(SIGTSTP)2.5 E F3(.)A F0(Non-b) -108 100.8 Q 1.064(uiltin commands run by)-.2 F F1(bash)3.564 E F0(ha) -3.564 E 1.365 -.15(ve s)-.2 H 1.065(ignal handlers set to the v).15 F -1.065(alues inherited by the shell from its)-.25 F 3.248(parent. When) -108 112.8 R .748(job control is not in ef)3.248 F .747 -(fect, asynchronous commands ignore)-.25 F F2(SIGINT)3.247 E F0(and) -2.997 E F2(SIGQ)3.247 E(UIT)-.09 E F0 .747(in addi-)2.997 F .652 -(tion to these inherited handlers.)108 124.8 R .653 -(Commands run as a result of command substitution ignore the k)5.652 F --.15(ey)-.1 G(board-).15 E(generated job control signals)108 136.8 Q F2 -(SIGTTIN)2.5 E F3(,)A F2(SIGTT)2.25 E(OU)-.162 E F3(,)A F0(and)2.25 E F2 -(SIGTSTP)2.5 E F3(.)A F0 2.046(The shell e)108 153.6 R 2.046 -(xits by def)-.15 F 2.045(ault upon receipt of a)-.1 F F2(SIGHUP)4.545 E -F3(.)A F0 2.045(Before e)6.545 F 2.045(xiting, an interacti)-.15 F 2.345 --.15(ve s)-.25 H 2.045(hell resends the).15 F F2(SIGHUP)108 165.6 Q F0 -1.004(to all jobs, running or stopped.)3.254 F 1.004 -(Stopped jobs are sent)6.004 F F2(SIGCONT)3.505 E F0 1.005 -(to ensure that the)3.255 F 3.505(yr)-.15 G(ecei)-3.505 E 1.305 -.15 -(ve t)-.25 H(he).15 E F2(SIGHUP)108 177.6 Q F3(.)A F0 2.53 -.8(To p)5.43 -H(re).8 E -.15(ve)-.25 G .93(nt the shell from sending the signal to a \ -particular job, it should be remo).15 F -.15(ve)-.15 G 3.429(df).15 G -.929(rom the)-3.429 F 1.356(jobs table with the)108 189.6 R F1(diso) -3.856 E(wn)-.1 E F0 -.2(bu)3.856 G 1.356(iltin \(see).2 F F2 1.356 -(SHELL B)3.856 F(UIL)-.09 E 1.356(TIN COMMANDS)-.828 F F0(belo)3.607 E -1.357(w\) or mark)-.25 F 1.357(ed to not recei)-.1 F -.15(ve)-.25 G F2 -(SIGHUP)108 201.6 Q F0(using)2.25 E F1(diso)2.5 E(wn \255h)-.1 E F0(.)A -.166(If the)108 218.4 R F1(huponexit)2.666 E F0 .166 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(it e)108 84 Q +(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E/F1 10 +/Times-Bold@0 SF(exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65 +(w.)-.25 G/F2 10.95/Times-Bold@0 SF(SIGN)72 100.8 Q(ALS)-.219 E F0(When) +108 112.8 Q F1(bash)3.183 E F0 .683(is interacti)3.183 F -.15(ve)-.25 G +3.183(,i).15 G 3.183(nt)-3.183 G .683(he absence of an)-3.183 F 3.183 +(yt)-.15 G .683(raps, it ignores)-3.183 F/F3 9/Times-Bold@0 SF(SIGTERM) +3.183 E F0 .682(\(so that)2.933 F F1 .682(kill 0)3.182 F F0 .682 +(does not kill an)3.182 F(interacti)108 124.8 Q .757 -.15(ve s)-.25 H +.457(hell\), and).15 F F3(SIGINT)2.957 E F0 .458 +(is caught and handled \(so that the)2.707 F F1(wait)2.958 E F0 -.2(bu) +2.958 G .458(iltin is interruptible\).).2 F .458(In all cases,)5.458 F +F1(bash)108 136.8 Q F0(ignores)2.5 E F3(SIGQ)2.5 E(UIT)-.09 E/F4 9 +/Times-Roman@0 SF(.)A F0(If job control is in ef)4.5 E(fect,)-.25 E F1 +(bash)2.5 E F0(ignores)2.5 E F3(SIGTTIN)2.5 E F4(,)A F3(SIGTT)2.25 E(OU) +-.162 E F4(,)A F0(and)2.25 E F3(SIGTSTP)2.5 E F4(.)A F0(Non-b)108 153.6 +Q 1.065(uiltin commands run by)-.2 F F1(bash)3.565 E F0(ha)3.565 E 1.365 +-.15(ve s)-.2 H 1.065(ignal handlers set to the v).15 F 1.064 +(alues inherited by the shell from its)-.25 F 3.247(parent. When)108 +165.6 R .747(job control is not in ef)3.247 F .747 +(fect, asynchronous commands ignore)-.25 F F3(SIGINT)3.248 E F0(and) +2.998 E F3(SIGQ)3.248 E(UIT)-.09 E F0 .748(in addi-)2.998 F .653 +(tion to these inherited handlers.)108 177.6 R .653 +(Commands run as a result of command substitution ignore the k)5.653 F +-.15(ey)-.1 G(board-).15 E(generated job control signals)108 189.6 Q F3 +(SIGTTIN)2.5 E F4(,)A F3(SIGTT)2.25 E(OU)-.162 E F4(,)A F0(and)2.25 E F3 +(SIGTSTP)2.5 E F4(.)A F0 2.045(The shell e)108 206.4 R 2.045 +(xits by def)-.15 F 2.045(ault upon receipt of a)-.1 F F3(SIGHUP)4.545 E +F4(.)A F0 2.045(Before e)6.545 F 2.045(xiting, an interacti)-.15 F 2.346 +-.15(ve s)-.25 H 2.046(hell resends the).15 F F3(SIGHUP)108 218.4 Q F0 +1.005(to all jobs, running or stopped.)3.255 F 1.004 +(Stopped jobs are sent)6.005 F F3(SIGCONT)3.504 E F0 1.004 +(to ensure that the)3.254 F 3.504(yr)-.15 G(ecei)-3.504 E 1.304 -.15 +(ve t)-.25 H(he).15 E F3(SIGHUP)108 230.4 Q F4(.)A F0 2.529 -.8(To p) +5.429 H(re).8 E -.15(ve)-.25 G .93(nt the shell from sending the signal\ + to a particular job, it should be remo).15 F -.15(ve)-.15 G 3.43(df).15 +G .93(rom the)-3.43 F 1.357(jobs table with the)108 242.4 R F1(diso) +3.857 E(wn)-.1 E F0 -.2(bu)3.857 G 1.357(iltin \(see).2 F F3 1.356 +(SHELL B)3.856 F(UIL)-.09 E 1.356(TIN COMMANDS)-.828 F F0(belo)3.606 E +1.356(w\) or mark)-.25 F 1.356(ed to not recei)-.1 F -.15(ve)-.25 G F3 +(SIGHUP)108 254.4 Q F0(using)2.25 E F1(diso)2.5 E(wn \255h)-.1 E F0(.)A +.166(If the)108 271.2 R F1(huponexit)2.666 E F0 .166 (shell option has been set with)2.666 F F1(shopt)2.666 E F0(,)A F1(bash) -2.666 E F0 .166(sends a)2.666 F F2(SIGHUP)2.666 E F0 .166 +2.666 E F0 .166(sends a)2.666 F F3(SIGHUP)2.666 E F0 .166 (to all jobs when an interacti)2.416 F -.15(ve)-.25 G(login shell e)108 -230.4 Q(xits.)-.15 E(If)108 247.2 Q F1(bash)3.046 E F0 .546(is w)3.046 F +283.2 Q(xits.)-.15 E(If)108 300 Q F1(bash)3.047 E F0 .547(is w)3.047 F .546(aiting for a command to complete and recei)-.1 F -.15(ve)-.25 G 3.046(sas).15 G .546(ignal for which a trap has been set, the trap) --3.046 F .663(will not be e)108 259.2 R -.15(xe)-.15 G .663 +-3.046 F .662(will not be e)108 312 R -.15(xe)-.15 G .662 (cuted until the command completes.).15 F(When)5.663 E F1(bash)3.163 E -F0 .662(is w)3.163 F .662(aiting for an asynchronous command)-.1 F .99 -(via the)108 271.2 R F1(wait)3.49 E F0 -.2(bu)3.49 G .99(iltin, the rec\ -eption of a signal for which a trap has been set will cause the).2 F F1 +F0 .663(is w)3.163 F .663(aiting for an asynchronous command)-.1 F .99 +(via the)108 324 R F1(wait)3.49 E F0 -.2(bu)3.49 G .99(iltin, the recep\ +tion of a signal for which a trap has been set will cause the).2 F F1 (wait)3.49 E F0 -.2(bu)3.49 G .99(iltin to).2 F -(return immediately with an e)108 283.2 Q +(return immediately with an e)108 336 Q (xit status greater than 128, immediately after which the trap is e)-.15 -E -.15(xe)-.15 G(cuted.).15 E/F4 10.95/Times-Bold@0 SF(JOB CONTR)72 300 -Q(OL)-.329 E/F5 10/Times-Italic@0 SF -.25(Jo)108 312 S 4.568(bc).25 G -(ontr)-4.568 E(ol)-.45 E F0 2.068(refers to the ability to selecti)5.078 -F -.15(ve)-.25 G 2.067(ly stop \().15 F F5(suspend)A F0 4.567(\)t)C -2.067(he e)-4.567 F -.15(xe)-.15 G 2.067 -(cution of processes and continue).15 F(\()108 324 Q F5 -.37(re)C(sume) -.37 E F0 3.201(\)t)C .701(heir e)-3.201 F -.15(xe)-.15 G .702 -(cution at a later point.).15 F 3.202(Au)5.702 G .702 +E -.15(xe)-.15 G(cuted.).15 E F2(JOB CONTR)72 352.8 Q(OL)-.329 E/F5 10 +/Times-Italic@0 SF -.25(Jo)108 364.8 S 4.567(bc).25 G(ontr)-4.567 E(ol) +-.45 E F0 2.067(refers to the ability to selecti)5.077 F -.15(ve)-.25 G +2.067(ly stop \().15 F F5(suspend)A F0 4.567(\)t)C 2.068(he e)-4.567 F +-.15(xe)-.15 G 2.068(cution of processes and continue).15 F(\()108 376.8 +Q F5 -.37(re)C(sume).37 E F0 3.202(\)t)C .702(heir e)-3.202 F -.15(xe) +-.15 G .702(cution at a later point.).15 F 3.202(Au)5.702 G .702 (ser typically emplo)-3.202 F .702(ys this f)-.1 F .702 -(acility via an interacti)-.1 F 1.002 -.15(ve i)-.25 H(nterf).15 E(ace) --.1 E(supplied jointly by the operating system k)108 336 Q(ernel')-.1 E -2.5(st)-.55 G(erminal dri)-2.5 E -.15(ve)-.25 G 2.5(ra).15 G(nd)-2.5 E -F1(bash)2.5 E F0(.)A .785(The shell associates a)108 352.8 R F5(job) -5.025 E F0 .785(with each pipeline.)3.515 F .784(It k)5.785 F .784 -(eeps a table of currently e)-.1 F -.15(xe)-.15 G .784 -(cuting jobs, which may be).15 F .34(listed with the)108 364.8 R F1 -(jobs)2.84 E F0 2.84(command. When)2.84 F F1(bash)2.84 E F0 .341 -(starts a job asynchronously \(in the)2.84 F F5(bac)2.841 E(kgr)-.2 E -(ound)-.45 E F0 .341(\), it prints a line).77 F(that looks lik)108 376.8 -Q(e:)-.1 E([1] 25647)144 393.6 Q .241(indicating that this job is job n\ +(acility via an interacti)-.1 F 1.001 -.15(ve i)-.25 H(nterf).15 E(ace) +-.1 E(supplied jointly by the operating system k)108 388.8 Q(ernel')-.1 +E 2.5(st)-.55 G(erminal dri)-2.5 E -.15(ve)-.25 G 2.5(ra).15 G(nd)-2.5 E +F1(bash)2.5 E F0(.)A .784(The shell associates a)108 405.6 R F5(job) +5.024 E F0 .784(with each pipeline.)3.514 F .784(It k)5.784 F .785 +(eeps a table of currently e)-.1 F -.15(xe)-.15 G .785 +(cuting jobs, which may be).15 F .341(listed with the)108 417.6 R F1 +(jobs)2.841 E F0 2.841(command. When)2.841 F F1(bash)2.841 E F0 .341 +(starts a job asynchronously \(in the)2.841 F F5(bac)2.84 E(kgr)-.2 E +(ound)-.45 E F0 .34(\), it prints a line).77 F(that looks lik)108 429.6 +Q(e:)-.1 E([1] 25647)144 446.4 Q .241(indicating that this job is job n\ umber 1 and that the process ID of the last process in the pipeline ass\ -ociated)108 410.4 R .732(with this job is 25647.)108 422.4 R .733 +ociated)108 463.2 R .733(with this job is 25647.)108 475.2 R .732 (All of the processes in a single pipeline are members of the same job) -5.732 F(.)-.4 E F1(Bash)5.733 E F0(uses)3.233 E(the)108 434.4 Q F5(job) -4.24 E F0(abstraction as the basis for job control.)2.73 E 3.063 -.8 -(To f)108 451.2 T 1.463(acilitate the implementation of the user interf) -.7 F 1.462(ace to job control, the operating system maintains the)-.1 F -.87(notion of a)108 463.2 R F5(curr)3.37 E .87(ent terminal pr)-.37 F -.871(ocess gr)-.45 F .871(oup ID)-.45 F F0 5.871(.M)C .871 +5.733 F(.)-.4 E F1(Bash)5.732 E F0(uses)3.232 E(the)108 487.2 Q F5(job) +4.24 E F0(abstraction as the basis for job control.)2.73 E 3.062 -.8 +(To f)108 504 T 1.462(acilitate the implementation of the user interf).7 +F 1.463(ace to job control, the operating system maintains the)-.1 F +.871(notion of a)108 516 R F5(curr)3.371 E .871(ent terminal pr)-.37 F +.871(ocess gr)-.45 F .871(oup ID)-.45 F F0 5.871(.M)C .87 (embers of this process group \(processes whose process)-5.871 F .023 (group ID is equal to the current terminal process group ID\) recei)108 -475.2 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023 -(board-generated signals such as).15 F F2(SIG-)2.522 E(INT)108 487.2 Q -F3(.)A F0 1.346(These processes are said to be in the)5.846 F F5(for) -3.847 E -.4(eg)-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F5(Bac)6.927 E -(kgr)-.2 E(ound)-.45 E F0 1.347(processes are those whose process)4.617 -F .146(group ID dif)108 499.2 R .146(fers from the terminal')-.25 F .146 -(s; such processes are immune to k)-.55 F -.15(ey)-.1 G .145 -(board-generated signals.).15 F .145(Only fore-)5.145 F .16 -(ground processes are allo)108 511.2 R .16(wed to read from or)-.25 F -2.66(,i)-.4 G 2.66(ft)-2.66 G .16(he user so speci\214es with)-2.66 F/F6 -10/Courier@0 SF .16(stty tostop)2.66 F F0 2.66(,w)C .16(rite to the ter) --2.66 F(-)-.2 E 3.052(minal. Background)108 523.2 R .551 -(processes which attempt to read from \(write to when)3.052 F F6 .551 -(stty tostop)3.051 F F0 .551(is in ef)3.051 F .551(fect\) the)-.25 F -.717(terminal are sent a)108 535.2 R F2 .717(SIGTTIN \(SIGTT)3.217 F -(OU\))-.162 E F0 .718(signal by the k)2.967 F(ernel')-.1 E 3.218(st)-.55 -G .718(erminal dri)-3.218 F -.15(ve)-.25 G 1.518 -.4(r, w).15 H .718 -(hich, unless caught, sus-).4 F(pends the process.)108 547.2 Q 1.088 -(If the operating system on which)108 564 R F1(bash)3.588 E F0 1.088 -(is running supports job control,)3.588 F F1(bash)3.587 E F0 1.087 -(contains f)3.587 F 1.087(acilities to use it.)-.1 F -.8(Ty)108 576 S -.301(ping the).8 F F5(suspend)3.141 E F0 .301(character \(typically) -3.571 F F1(^Z)2.801 E F0 2.801(,C)C .301 +528 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023 +(board-generated signals such as).15 F F3(SIG-)2.523 E(INT)108 540 Q F4 +(.)A F0 1.347(These processes are said to be in the)5.847 F F5(for)3.846 +E -.4(eg)-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F5(Bac)6.926 E(kgr)-.2 +E(ound)-.45 E F0 1.346(processes are those whose process)4.616 F .145 +(group ID dif)108 552 R .145(fers from the terminal')-.25 F .146 +(s; such processes are immune to k)-.55 F -.15(ey)-.1 G .146 +(board-generated signals.).15 F .146(Only fore-)5.146 F .16 +(ground processes are allo)108 564 R .16(wed to read from or)-.25 F 2.66 +(,i)-.4 G 2.66(ft)-2.66 G .16(he user so speci\214es with)-2.66 F/F6 10 +/Courier@0 SF .16(stty tostop)2.66 F F0 2.66(,w)C .16(rite to the ter) +-2.66 F(-)-.2 E 3.051(minal. Background)108 576 R .551 +(processes which attempt to read from \(write to when)3.051 F F6 .551 +(stty tostop)3.051 F F0 .552(is in ef)3.052 F .552(fect\) the)-.25 F +.718(terminal are sent a)108 588 R F3 .718(SIGTTIN \(SIGTT)3.218 F(OU\)) +-.162 E F0 .718(signal by the k)2.968 F(ernel')-.1 E 3.217(st)-.55 G +.717(erminal dri)-3.217 F -.15(ve)-.25 G 1.517 -.4(r, w).15 H .717 +(hich, unless caught, sus-).4 F(pends the process.)108 600 Q 1.087 +(If the operating system on which)108 616.8 R F1(bash)3.587 E F0 1.088 +(is running supports job control,)3.588 F F1(bash)3.588 E F0 1.088 +(contains f)3.588 F 1.088(acilities to use it.)-.1 F -.8(Ty)108 628.8 S +.302(ping the).8 F F5(suspend)3.142 E F0 .302(character \(typically) +3.572 F F1(^Z)2.801 E F0 2.801(,C)C .301 (ontrol-Z\) while a process is running causes that process to be)-2.801 -F 2.143(stopped and returns control to)108 588 R F1(bash)4.642 E F0 +F 2.142(stopped and returns control to)108 640.8 R F1(bash)4.642 E F0 7.142(.T)C 2.142(yping the)-7.942 F F5 2.142(delayed suspend)4.992 F F0 -2.142(character \(typically)5.412 F F1(^Y)4.642 E F0 4.642(,C)C -(ontrol-Y\))-4.642 E .021(causes the process to be stopped when it atte\ -mpts to read input from the terminal, and control to be returned)108 600 -R(to)108 612 Q F1(bash)3.392 E F0 5.892(.T)C .892 +2.143(character \(typically)5.413 F F1(^Y)4.643 E F0 4.643(,C)C +(ontrol-Y\))-4.643 E .021(causes the process to be stopped when it atte\ +mpts to read input from the terminal, and control to be returned)108 +652.8 R(to)108 664.8 Q F1(bash)3.392 E F0 5.892(.T)C .892 (he user may then manipulate the state of this job, using the)-5.892 F -F1(bg)3.392 E F0 .892(command to continue it in the)3.392 F .894 -(background, the)108 624 R F1(fg)3.394 E F0 .895 -(command to continue it in the fore)3.394 F .895(ground, or the)-.15 F -F1(kill)3.395 E F0 .895(command to kill it.)3.395 F(A)5.895 E F1(^Z) -3.395 E F0(tak)3.395 E(es)-.1 E(ef)108 636 Q .949(fect immediately)-.25 -F 3.449(,a)-.65 G .948(nd has the additional side ef)-3.449 F .948 +F1(bg)3.392 E F0 .892(command to continue it in the)3.392 F .895 +(background, the)108 676.8 R F1(fg)3.395 E F0 .895 +(command to continue it in the fore)3.395 F .895(ground, or the)-.15 F +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 688.8 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 648 Q .777(There are a number of w)108 664.8 R .777 +108 700.8 Q .777(There are a number of w)108 717.6 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 676.8 -Q F5(jobspec)A F0 3.458(\). Job)B(number)3.458 E F5(n)3.818 E F0 .957 +(%)3.277 E F0 .777(introduces a job speci\214cation)3.277 F(\()108 729.6 +Q F5(jobspec)A F0 3.457(\). Job)B(number)3.457 E F5(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 us\ -ed to start it, or using a substring that appears in its command line.) -108 688.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 700.8 Q F1(ce)3.464 E F0(job)3.464 -E 5.964(.I)-.4 G 3.463(fap)-5.964 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.463(,o)C 3.463(nt)-3.463 G .963(he other)-3.463 F .086 -(hand, refers to an)108 712.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 724.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 -F5(curr)2.518 E .018(ent job)-.37 F F0 2.518(,w).23 G .018(hich is) --2.518 F(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16) -.15 E(35)185.545 E 0 Cg EP +(job may also be referred to using a pre\214x of the)-2.5 F +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(35)190.95 E 0 Cg EP %%Page: 36 36 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .494 -(the last job stopped while it w)108 84 R .495(as in the fore)-.1 F .495 -(ground or started in the background.)-.15 F(The)5.495 E/F1 10 -/Times-Italic@0 SF(pr)4.245 E -.15(ev)-.37 G .495(ious job).15 F F0 .495 -(may be)3.225 F .788(referenced using)108 96 R/F2 10/Times-Bold@0 SF -<25ad>3.288 E F0 5.788(.I)C 3.288(ft)-5.788 G .787 -(here is only a single job,)-3.288 F F2(%+)3.287 E F0(and)3.287 E F2 -<25ad>3.287 E F0 .787(can both be used to refer to that job)3.287 F -5.787(.I)-.4 G(n)-5.787 E .256 -(output pertaining to jobs \(e.g., the output of the)108 108 R F2(jobs) -2.756 E F0 .256(command\), the current job is al)2.756 F -.1(wa)-.1 G -.257(ys \215agged with a).1 F F2(+)2.757 E F0(,)A .411(and the pre)108 -120 R .411(vious job with a)-.25 F F22.911 E F0 5.411(.A)C .411 -(single % \(with no accompan)-2.5 F .41 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .59(name used to \ +start it, or using a substring that appears in its command line.)108 84 +R -.15(Fo)5.59 G 3.09(re).15 G(xample,)-3.24 E/F1 10/Times-Bold@0 SF +(%ce)3.09 E F0 .59(refers to a)3.09 F(stopped)108 96 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 108 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 120 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 10/Times-Italic@0 SF(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 132 +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 144 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 156 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 168 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 132 Q(.)-.4 E .443 -(Simply naming a job can be used to bring it into the fore)108 148.8 R -(ground:)-.15 E F2(%1)2.944 E F0 .444(is a synon)2.944 F .444(ym for) --.15 F F2 -.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 -160.8 R 3.973(ground. Similarly)-.15 F(,)-.65 E F2 -.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 172.8 Q -.25(va)-.25 G(lent to).25 E F2 -.63(``)2.5 G(bg %1') -.63 E(')-.63 E F0(.)A .13(The shell learns immediately whene)108 189.6 R --.15(ve)-.25 G 2.63(raj).15 G .13(ob changes state.)-2.63 F(Normally) -5.131 E(,)-.65 E F2(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 201.6 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 F22.657 E F0 .157 -(option to)2.657 F(the)108 213.6 Q F2(set)2.647 E F0 -.2(bu)2.647 G .147 -(iltin command is enabled,).2 F F2(bash)2.647 E F0 .148 -(reports such changes immediately)2.648 F 5.148(.A)-.65 G .448 -.15 -(ny t)-5.148 H .148(rap on).15 F/F3 9/Times-Bold@0 SF(SIGCHLD)2.648 E F0 -.148(is e)2.398 F -.15(xe)-.15 G(-).15 E(cuted for each child that e)108 -225.6 Q(xits.)-.15 E .033(If an attempt to e)108 242.4 R(xit)-.15 E F2 -(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 F2(checkjobs)2.532 E F0 .032 -(shell option has been enabled)2.532 F 2.019(using the)108 254.4 R F2 -(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 F2(checkjobs)4.52 E F0 2.02 -(option is)4.52 F .459(enabled, lists the jobs and their statuses.)108 -266.4 R(The)5.459 E F2(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 278.4 R .604 +(rent job)108 180 Q(.)-.4 E .444 +(Simply naming a job can be used to bring it into the fore)108 196.8 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 +208.8 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 220.8 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 237.6 +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 249.6 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 261.6 Q F1(set)2.648 E F0 -.2(bu)2.648 G .148 +(iltin command is enabled,).2 F F1(bash)2.648 E F0 .148 +(reports such changes immediately)2.648 F 5.147(.A)-.65 G .447 -.15 +(ny t)-5.147 H .147(rap on).15 F/F3 9/Times-Bold@0 SF(SIGCHLD)2.647 E F0 +.147(is e)2.397 F -.15(xe)-.15 G(-).15 E(cuted for each child that e)108 +273.6 Q(xits.)-.15 E .032(If an attempt to e)108 290.4 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 302.4 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 +314.4 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 326.4 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 290.4 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E/F4 -10.95/Times-Bold@0 SF(PR)72 307.2 Q(OMPTING)-.329 E F0 .645(When e)108 -319.2 R -.15(xe)-.15 G .645(cuting interacti).15 F -.15(ve)-.25 G(ly).15 -E(,)-.65 E F2(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 .314 -(and the secondary prompt)108 331.2 R F3(PS2)2.814 E F0 .315 -(when it needs more input to complete a command.)2.564 F F2(Bash)5.315 E -F0(displays)2.815 E F2(PS0)2.815 E F0(after)2.815 E .05 -(it reads a command b)108 343.2 R .05(ut before e)-.2 F -.15(xe)-.15 G -.05(cuting it.).15 F F2(Bash)5.049 E F0(allo)2.549 E .049 +(and an)108 338.4 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E/F4 +10.95/Times-Bold@0 SF(PR)72 355.2 Q(OMPTING)-.329 E F0 .644(When e)108 +367.2 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 .315 +(and the secondary prompt)108 379.2 R F3(PS2)2.815 E F0 .315 +(when it needs more input to complete a command.)2.565 F F1(Bash)5.314 E +F0(displays)2.814 E F1(PS0)2.814 E F0(after)2.814 E .049 +(it reads a command b)108 391.2 R .049(ut before e)-.2 F -.15(xe)-.15 G +.049(cuting it.).15 F F1(Bash)5.049 E F0(allo)2.549 E .05 (ws these prompt strings to be customized by inserting)-.25 F 2.5(an)108 -355.2 S(umber of backslash-escaped special characters that are decoded \ -as follo)-2.5 E(ws:)-.25 E F2(\\a)144 367.2 Q F0 -(an ASCII bell character \(07\))180 367.2 Q F2(\\d)144 379.2 Q F0 -(the date in "W)180 379.2 Q(eekday Month Date" format \(e.g., "T)-.8 E -(ue May 26"\))-.45 E F2(\\D{)144 391.2 Q F1(format)A F2(})A F0(the)180 -403.2 Q F1(format)3.926 E F0 1.426(is passed to)3.926 F F1(strftime) -3.926 E F0 1.427 +403.2 S(umber of backslash-escaped special characters that are decoded \ +as follo)-2.5 E(ws:)-.25 E F1(\\a)144 415.2 Q F0 +(an ASCII bell character \(07\))180 415.2 Q F1(\\d)144 427.2 Q F0 +(the date in "W)180 427.2 Q(eekday Month Date" format \(e.g., "T)-.8 E +(ue May 26"\))-.45 E F1(\\D{)144 439.2 Q F2(format)A F1(})A F0(the)180 +451.2 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 -415.2 Q F1(format)2.5 E F0 +463.2 Q F2(format)2.5 E F0 (results in a locale-speci\214c time representation.)2.5 E -(The braces are required)5 E F2(\\e)144 427.2 Q F0 -(an ASCII escape character \(033\))180 427.2 Q F2(\\h)144 439.2 Q F0 -(the hostname up to the \214rst `.)180 439.2 Q(')-.7 E F2(\\H)144 451.2 -Q F0(the hostname)180 451.2 Q F2(\\j)144 463.2 Q F0 -(the number of jobs currently managed by the shell)180 463.2 Q F2(\\l) -144 475.2 Q F0(the basename of the shell')180 475.2 Q 2.5(st)-.55 G -(erminal de)-2.5 E(vice name)-.25 E F2(\\n)144 487.2 Q F0(ne)180 487.2 Q -(wline)-.25 E F2(\\r)144 499.2 Q F0(carriage return)180 499.2 Q F2(\\s) -144 511.2 Q F0(the name of the shell, the basename of)180 511.2 Q F2($0) -2.5 E F0(\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E F2 -(\\t)144 523.2 Q F0(the current time in 24-hour HH:MM:SS format)180 -523.2 Q F2(\\T)144 535.2 Q F0 -(the current time in 12-hour HH:MM:SS format)180 535.2 Q F2(\\@)144 -547.2 Q F0(the current time in 12-hour am/pm format)180 547.2 Q F2(\\A) -144 559.2 Q F0(the current time in 24-hour HH:MM format)180 559.2 Q F2 -(\\u)144 571.2 Q F0(the username of the current user)180 571.2 Q F2(\\v) -144 583.2 Q F0(the v)180 583.2 Q(ersion of)-.15 E F2(bash)2.5 E F0 -(\(e.g., 2.00\))2.5 E F2(\\V)144 595.2 Q F0(the release of)180 595.2 Q -F2(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 F2(\\w)144 607.2 Q F0 .116 -(the current w)180 607.2 R .116(orking directory)-.1 F 2.616(,w)-.65 G -(ith)-2.616 E F3($HOME)2.616 E F0(abbre)2.366 E .115 -(viated with a tilde \(uses the v)-.25 F .115(alue of the)-.25 F F3(PR) -180 619.2 Q(OMPT_DIR)-.27 E(TRIM)-.36 E F0 -.25(va)2.25 G(riable\)).25 E -F2(\\W)144 631.2 Q F0(the basename of the current w)180 631.2 Q +(The braces are required)5 E F1(\\e)144 475.2 Q F0 +(an ASCII escape character \(033\))180 475.2 Q F1(\\h)144 487.2 Q F0 +(the hostname up to the \214rst `.)180 487.2 Q(')-.7 E F1(\\H)144 499.2 +Q F0(the hostname)180 499.2 Q F1(\\j)144 511.2 Q F0 +(the number of jobs currently managed by the shell)180 511.2 Q F1(\\l) +144 523.2 Q F0(the basename of the shell')180 523.2 Q 2.5(st)-.55 G +(erminal de)-2.5 E(vice name)-.25 E F1(\\n)144 535.2 Q F0(ne)180 535.2 Q +(wline)-.25 E F1(\\r)144 547.2 Q F0(carriage return)180 547.2 Q F1(\\s) +144 559.2 Q F0(the name of the shell, the basename of)180 559.2 Q F1($0) +2.5 E F0(\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E F1 +(\\t)144 571.2 Q F0(the current time in 24-hour HH:MM:SS format)180 +571.2 Q F1(\\T)144 583.2 Q F0 +(the current time in 12-hour HH:MM:SS format)180 583.2 Q F1(\\@)144 +595.2 Q F0(the current time in 12-hour am/pm format)180 595.2 Q F1(\\A) +144 607.2 Q F0(the current time in 24-hour HH:MM format)180 607.2 Q F1 +(\\u)144 619.2 Q F0(the username of the current user)180 619.2 Q F1(\\v) +144 631.2 Q F0(the v)180 631.2 Q(ersion of)-.15 E F1(bash)2.5 E F0 +(\(e.g., 2.00\))2.5 E F1(\\V)144 643.2 Q F0(the release of)180 643.2 Q +F1(bash)2.5 E F0 2.5(,v)C(ersion + patch le)-2.65 E -.15(ve)-.25 G 2.5 +(l\().15 G(e.g., 2.00.0\))-2.5 E F1(\\w)144 655.2 Q F0 .115 +(the current w)180 655.2 R .115(orking directory)-.1 F 2.615(,w)-.65 G +(ith)-2.615 E F3($HOME)2.615 E F0(abbre)2.365 E .116 +(viated with a tilde \(uses the v)-.25 F .116(alue of the)-.25 F F3(PR) +180 667.2 Q(OMPT_DIR)-.27 E(TRIM)-.36 E F0 -.25(va)2.25 G(riable\)).25 E +F1(\\W)144 679.2 Q F0(the basename of the current w)180 679.2 Q (orking directory)-.1 E 2.5(,w)-.65 G(ith)-2.5 E F3($HOME)2.5 E F0 -(abbre)2.25 E(viated with a tilde)-.25 E F2(\\!)144 643.2 Q F0 -(the history number of this command)180 643.2 Q F2(\\#)144 655.2 Q F0 -(the command number of this command)180 655.2 Q F2(\\$)144 667.2 Q F0 -(if the ef)180 667.2 Q(fecti)-.25 E .3 -.15(ve U)-.25 H(ID is 0, a).15 E -F2(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F2($)2.5 E(\\)144 679.2 Q F1 -(nnn)A F0(the character corresponding to the octal number)180 679.2 Q F1 -(nnn)2.5 E F2(\\\\)144 691.2 Q F0 2.5(ab)180 691.2 S(ackslash)-2.5 E F2 -(\\[)144 703.2 Q F0(be)180 703.2 Q 1.257(gin a sequence of non-printing\ - characters, which could be used to embed a terminal)-.15 F -(control sequence into the prompt)180 715.2 Q(GNU Bash 4.4)72 768 Q -(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(36)185.545 E 0 Cg EP +(abbre)2.25 E(viated with a tilde)-.25 E F1(\\!)144 691.2 Q F0 +(the history number of this command)180 691.2 Q F1(\\#)144 703.2 Q F0 +(the command number of this command)180 703.2 Q F1(\\$)144 715.2 Q F0 +(if the ef)180 715.2 Q(fecti)-.25 E .3 -.15(ve U)-.25 H(ID is 0, a).15 E +F1(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F1($)2.5 E F0(GNU Bash 4.4)72 +768 Q(2016 January 25)141.79 E(36)190.95 E 0 Cg EP %%Page: 37 37 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(\\])144 84 Q F0(end a sequence of non-printing characters)180 84 Q -.12(The command number and the history number are usually dif)108 100.8 -R .119(ferent: the history number of a command is its)-.25 F 1.585(posi\ -tion in the history list, which may include commands restored from the \ -history \214le \(see)108 112.8 R/F2 9/Times-Bold@0 SF(HIST)4.085 E(OR) --.162 E(Y)-.315 E F0(belo)108 124.8 Q .541(w\), while the command numbe\ -r 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 -136.8 R .546(After the string is decoded, it is e)5.546 F .546 +SF(\\)144 84 Q/F2 10/Times-Italic@0 SF(nnn)A F0 +(the character corresponding to the octal number)180 84 Q F2(nnn)2.5 E +F1(\\\\)144 96 Q F0 2.5(ab)180 96 S(ackslash)-2.5 E F1(\\[)144 108 Q F0 +(be)180 108 Q 1.257(gin a sequence of non-printing characters, which co\ +uld be used to embed a terminal)-.15 F(control sequence into the prompt) +180 120 Q F1(\\])144 132 Q F0(end a sequence of non-printing characters) +180 132 Q .119 +(The command number and the history number are usually dif)108 148.8 R +.12(ferent: the history number of a command is its)-.25 F 1.585(positio\ +n in the history list, which may include commands restored from the his\ +tory \214le \(see)108 160.8 R/F3 9/Times-Bold@0 SF(HIST)4.084 E(OR)-.162 +E(Y)-.315 E F0(belo)108 172.8 Q .541(w\), while the command number is t\ +he position in the sequence of commands e)-.25 F -.15(xe)-.15 G .541 +(cuted during the cur).15 F(-)-.2 E .546(rent shell session.)108 184.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 148.8 R .352(xpansion, and quote remo)-.15 F +.351(tion, arithmetic e)108 196.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 160.8 Q F1(shopt)2.5 E F0(command under)2.5 E -F2(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).) --.25 E/F3 10.95/Times-Bold@0 SF(READLINE)72 177.6 Q F0 .15 +(pr)2.852 E(omptv)-.18 E(ars)-.1 E F0 .352(shell option \(see the)2.852 +F(description of the)108 208.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 225.6 Q F0 .151 (This is the library that handles reading input when using an interacti) -108 189.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 1.209(is gi)108 201.6 R --.15(ve)-.25 G 3.709(na).15 G 3.709(ts)-3.709 G 1.209(hell in)-3.709 F --.2(vo)-.4 G 3.709(cation. Line).2 F 1.208 -(editing is also used when using the)3.709 F F13.708 E F0 1.208 -(option to the)3.708 F F1 -.18(re)3.708 G(ad).18 E F0 -.2(bu)3.708 G -3.708(iltin. By).2 F(def)108 213.6 Q .851 +108 237.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 1.208(is gi)108 249.6 R -.15 +(ve)-.25 G 3.708(na).15 G 3.708(ts)-3.708 G 1.208(hell in)-3.708 F -.2 +(vo)-.4 G 3.708(cation. Line).2 F 1.208 +(editing is also used when using the)3.708 F F13.709 E F0 1.209 +(option to the)3.709 F F1 -.18(re)3.709 G(ad).18 E F0 -.2(bu)3.709 G +3.709(iltin. By).2 F(def)108 261.6 Q .851 (ault, the line editing commands are similar to those of Emacs.)-.1 F -3.351(Av)5.851 G .851(i-style line editing interf)-3.351 F .852 -(ace is also)-.1 F -.2(av)108 225.6 S 3.35(ailable. Line)-.05 F .85 +3.351(Av)5.851 G .851(i-style line editing interf)-3.351 F .851 +(ace is also)-.1 F -.2(av)108 273.6 S 3.35(ailable. Line)-.05 F .85 (editing can be enabled at an)3.35 F 3.35(yt)-.15 G .85(ime using the) -3.35 F F1 .85(\255o emacs)3.35 F F0(or)3.35 E F1 .85(\255o vi)3.35 F F0 .85(options to the)3.35 F F1(set)3.35 E F0 -.2(bu)3.35 G(iltin).2 E -(\(see)108 237.6 Q F2 .762(SHELL B)3.262 F(UIL)-.09 E .762(TIN COMMANDS) --.828 F F0(belo)3.012 E 3.262(w\). T)-.25 F 3.263(ot)-.8 G .763(urn of) +(\(see)108 285.6 Q F3 .763(SHELL B)3.263 F(UIL)-.09 E .763(TIN COMMANDS) +-.828 F F0(belo)3.013 E 3.263(w\). T)-.25 F 3.263(ot)-.8 G .763(urn of) -3.263 F 3.263(fl)-.25 G .763 -(ine editing after the shell is running, use the)-3.263 F F1(+o)3.263 E -(emacs)108 249.6 Q F0(or)2.5 E F1(+o vi)2.5 E F0(options to the)2.5 E F1 -(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(Readline Notation)87 266.4 Q +(ine editing after the shell is running, use the)-3.263 F F1(+o)3.262 E +(emacs)108 297.6 Q F0(or)2.5 E F1(+o vi)2.5 E F0(options to the)2.5 E F1 +(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(Readline Notation)87 314.4 Q F0 .463(In this section, the Emacs-style notation is used to denote k) -108 278.4 R -.15(ey)-.1 G(strok).15 E 2.963(es. Control)-.1 F -.1(ke) -2.963 G .463(ys are denoted by C\255)-.05 F/F4 10/Times-Italic@0 SF -.1 -(ke)C(y)-.2 E F0(,)A 1.152(e.g., C\255n means Control\255N.)108 290.4 R -(Similarly)6.152 E(,)-.65 E F4(meta)4.032 E F0 -.1(ke)3.913 G 1.153 -(ys are denoted by M\255)-.05 F F4 -.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 302.4 S .831(yboards without a)-.05 F F4(meta)3.711 E F0 -.1(ke) -3.591 G 2.131 -.65(y, M)-.05 H.65 E F4(x)A F0 .831(means ESC)3.331 F -F4(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 F4(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 314.4 R F4 .599 -(meta pr)3.099 F(e\214x)-.37 E F0 5.599(.T)C .599 -(he combination M\255C\255)-5.599 F F4(x)A F0 .599 -(means ESC\255Control\255)3.099 F F4(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 326.4 Q .3 -.15(ey w)-.1 H(hile pressing the).15 E F4 -(x)3.27 E F0 -.1(ke)3.03 G -.65(y.)-.05 G(\)).65 E .62 -(Readline commands may be gi)108 343.2 R -.15(ve)-.25 G 3.119(nn).15 G -(umeric)-3.119 E F4(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 -355.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 +108 326.4 R -.15(ey)-.1 G(strok).15 E 2.963(es. Control)-.1 F -.1(ke) +2.963 G .463(ys are denoted by C\255)-.05 F F2 -.1(ke)C(y)-.2 E F0(,)A +1.153(e.g., C\255n means Control\255N.)108 338.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 350.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 362.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 374.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 .619(Readline commands may be gi)108 391.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.62 E(ho) +108 403.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 367.2 R 1.018 +(ument to a command that).18 F 1.018(acts in the forw)108 415.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 379.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 427.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 396 R F4 +-.25 E -.65(w.)-.25 G .812(When a command is described as)108 444 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 F4 -(yank-)-3.312 E(ing)108 408 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 F4 +(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 456 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 420 R .567(ed all at once.)-.1 F .567 +-.15 F .567(which can be yank)108 468 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 432 Q F1(Readline Initialization)87 448.8 Q F0 .091(Readline is cus\ -tomized by putting commands in an initialization \214le \(the)108 460.8 -R F4(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 472.8 R .196(en from the v) --.1 F .196(alue of the)-.25 F F2(INPUTRC)2.696 E F0 -.25(va)2.446 G +108 480 Q F1(Readline Initialization)87 496.8 Q F0 .091(Readline is cus\ +tomized by putting commands in an initialization \214le \(the)108 508.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 520.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 F4(~/.inputr)2.696 -E(c)-.37 E F0 5.196(.W).31 G .197(hen a)-5.196 F 1.034(program which us\ +(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 .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 484.8 R 1.334 -.15(ey b)-.1 H 1.034(indings and).15 F -.25 -(va)108 496.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 508.8 R .737(Lines be)5.737 F .737 +nd the k)108 532.8 R 1.335 -.15(ey b)-.1 H 1.035(indings and).15 F -.25 +(va)108 544.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 556.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 520.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 568.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 537.6 R .986(ault k)-.1 F --.15(ey)-.1 G .987(-bindings may be changed with an).15 F F4(inputr) +(ariable settings.)-.25 E .987(The def)108 585.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 549.6 Q -(wn commands and bindings.)-.25 E -.15(Fo)108 566.4 S 2.5(re).15 G -(xample, placing)-2.65 E(M\255Control\255u: uni)144 583.2 Q -.15(ve)-.25 -G(rsal\255ar).15 E(gument)-.18 E(or)108 595.2 Q(C\255Meta\255u: uni)144 -607.2 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 619.2 -Q F4(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 F4 -(univer)2.5 E(sal\255ar)-.1 E(gument)-.37 E F0(.).68 E 1.261(The follo) -108 636 R 1.261(wing symbolic character names are recognized:)-.25 F F4 --.4(RU)3.761 G(BOUT).4 E F0(,)1.27 E F4(DEL)3.761 E F0(,).53 E F4(ESC) -3.761 E F0(,).72 E F4(LFD)3.761 E F0(,).28 E F4(NEWLINE)3.76 E F0(,).73 -E F4(RET)3.76 E F0(,)1.27 E F4(RETURN)108 648 Q F0(,)1.1 E F4(SPC)2.5 E -F0(,).72 E F4(SP)2.5 E -.3(AC)-.9 G(E).3 E F0 2.5(,a).73 G(nd)-2.5 E F4 +(programs that use this library may)3.487 F(add their o)108 597.6 Q +(wn commands and bindings.)-.25 E -.15(Fo)108 614.4 S 2.5(re).15 G +(xample, placing)-2.65 E(M\255Control\255u: uni)144 631.2 Q -.15(ve)-.25 +G(rsal\255ar).15 E(gument)-.18 E(or)108 643.2 Q(C\255Meta\255u: uni)144 +655.2 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 667.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 1.26(The follo) +108 684 R 1.261(wing symbolic character names are recognized:)-.25 F F2 +-.4(RU)3.761 G(BOUT).4 E F0(,)1.27 E F2(DEL)3.761 E F0(,).53 E F2(ESC) +3.761 E F0(,).72 E F2(LFD)3.761 E F0(,).28 E F2(NEWLINE)3.761 E F0(,).73 +E F2(RET)3.761 E F0(,)1.27 E F2(RETURN)108 696 Q F0(,)1.1 E F2(SPC)2.5 E +F0(,).72 E F2(SP)2.5 E -.3(AC)-.9 G(E).3 E F0 2.5(,a).73 G(nd)-2.5 E F2 -.5(TA)2.5 G(B).5 E F0(.).27 E .209 -(In addition to command names, readline allo)108 664.8 R .209(ws k)-.25 +(In addition to command names, readline allo)108 712.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 (ound to a string that is inserted when the k)-2.709 F .509 -.15(ey i) --.1 H(s).15 E(pressed \(a)108 676.8 Q F4(macr)2.5 E(o)-.45 E F0(\).)A F1 -(Readline K)87 693.6 Q(ey Bindings)-.25 E F0 .366 -(The syntax for controlling k)108 705.6 R .666 -.15(ey b)-.1 H .366 -(indings in the).15 F F4(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 .263(command or the te)108 717.6 R .264(xt of a macro and a k) --.15 F .564 -.15(ey s)-.1 H .264(equence to which it should be bound.) -.15 F .264(The name may be speci-)5.264 F .853(\214ed in one of tw)108 -729.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 F4(Meta\255)3.353 E F0(or) -3.353 E F4(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(GNU Bash 4.4)72 768 Q(2015 No) -136.385 E -.15(ve)-.15 G(mber 16).15 E(37)185.545 E 0 Cg EP +-.1 H(s).15 E(pressed \(a)108 724.8 Q F2(macr)2.5 E(o)-.45 E F0(\).)A +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(37)190.95 E 0 Cg EP %%Page: 38 38 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(sequence.)108 84 Q -.16(When using the form)108 100.8 R/F1 10/Times-Bold@0 SF -.1(ke)2.66 G -(yname).1 E F0(:)A/F2 10/Times-Italic@0 SF(function\255name).833 E F0 -(or)2.66 E F2(macr)2.66 E(o)-.45 E F0(,)A F2 -.1(ke)2.66 G(yname)-.2 E -F0 .161(is the name of a k)2.84 F .461 -.15(ey s)-.1 H .161 -(pelled out in Eng-).15 F 2.5(lish. F)108 112.8 R(or e)-.15 E(xample:) --.15 E(Control-u: uni)144 136.8 Q -.15(ve)-.25 G(rsal\255ar).15 E -(gument)-.18 E(Meta-Rubout: backw)144 148.8 Q(ard-kill-w)-.1 E(ord)-.1 E -(Control-o: "> output")144 160.8 Q .699(In the abo)108 177.6 R .998 -.15 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(Readline K)87 84 Q(ey Bindings)-.25 E F0 .366 +(The syntax for controlling k)108 96 R .666 -.15(ey b)-.1 H .366 +(indings in the).15 F/F2 10/Times-Italic@0 SF(inputr)2.876 E(c)-.37 E F0 +.366(\214le is simple.)3.176 F .366 +(All that is required is the name of the)5.366 F .264(command or the te) +108 108 R .264(xt of a macro and a k)-.15 F .564 -.15(ey s)-.1 H .264 +(equence to which it should be bound.).15 F .263(The name may be speci-) +5.264 F .853(\214ed in one of tw)108 120 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 F2(Meta\255)3.353 E F0(or)3.353 E F2(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 132 Q .161(When using the form)108 148.8 R F1 +-.1(ke)2.661 G(yname).1 E F0(:)A F2(function\255name).833 E F0(or)2.661 +E F2(macr)2.661 E(o)-.45 E F0(,)A F2 -.1(ke)2.661 G(yname)-.2 E F0 .16 +(is the name of a k)2.84 F .46 -.15(ey s)-.1 H .16(pelled out in Eng-) +.15 F 2.5(lish. F)108 160.8 R(or e)-.15 E(xample:)-.15 E(Control-u: uni) +144 184.8 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E +(Meta-Rubout: backw)144 196.8 Q(ard-kill-w)-.1 E(ord)-.1 E +(Control-o: "> output")144 208.8 Q .698(In the abo)108 225.6 R .998 -.15 (ve ex)-.15 H(ample,).15 E F2(C\255u)3.038 E F0 .698 (is bound to the function)3.448 F F1(uni)3.198 E -.1(ve)-.1 G (rsal\255ar).1 E(gument)-.1 E F0(,)A F2(M\255DEL)3.878 E F0 .698 -(is bound to the func-)3.728 F(tion)108 189.6 Q F1 -(backward\255kill\255w)2.758 E(ord)-.1 E F0 2.758(,a)C(nd)-2.758 E F2 -(C\255o)2.598 E F0 .258(is bound to run the macro e)2.938 F .259 +(is bound to the func-)3.728 F(tion)108 237.6 Q F1 +(backward\255kill\255w)2.759 E(ord)-.1 E F0 2.759(,a)C(nd)-2.759 E F2 +(C\255o)2.599 E F0 .258(is bound to run the macro e)2.939 F .258 (xpressed on the right hand side \(that is, to)-.15 F(insert the te)108 -201.6 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 218.4 R F1("k)2.556 -E(eyseq")-.1 E F0(:)A F2(function\255name).833 E F0(or)2.556 E F2(macr) -2.556 E(o)-.45 E F0(,)A F1 -.1(ke)2.556 G(yseq).1 E F0(dif)2.555 E .055 -(fers from)-.25 F F1 -.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 -(denoting an entire k)108 230.4 R 1.584 -.15(ey s)-.1 H 1.284(equence m\ +249.6 Q(xt)-.15 E/F3 10/Courier@0 SF 6(>o)2.5 G(utput)-6 E F0 +(into the line\).)2.5 E .055(In the second form,)108 266.4 R F1("k)2.555 +E(eyseq")-.1 E F0(:)A F2(function\255name).833 E F0(or)2.555 E F2(macr) +2.555 E(o)-.45 E F0(,)A F1 -.1(ke)2.555 G(yseq).1 E F0(dif)2.556 E .056 +(fers from)-.25 F F1 -.1(ke)2.556 G(yname).1 E F0(abo)2.556 E .356 -.15 +(ve i)-.15 H 2.556(nt).15 G .056(hat strings)-2.556 F 1.284 +(denoting an entire k)108 278.4 R 1.584 -.15(ey s)-.1 H 1.284(equence m\ ay be speci\214ed by placing the sequence within double quotes.).15 F -(Some)6.284 E .386(GNU Emacs style k)108 242.4 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 -(are not recognized.)108 254.4 Q("\\C\255u": uni)144 278.4 Q -.15(ve) +(Some)6.284 E .385(GNU Emacs style k)108 290.4 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 302.4 Q("\\C\255u": uni)144 326.4 Q -.15(ve) -.25 G(rsal\255ar).15 E(gument)-.18 E -("\\C\255x\\C\255r": re\255read\255init\255\214le)144 290.4 Q -("\\e[11~": "Function K)144 302.4 Q .3 -.15(ey 1)-.25 H(").15 E .314 -(In this e)108 319.2 R(xample,)-.15 E F2(C\255u)2.654 E F0 .314(is ag) -3.064 F .315(ain bound to the function)-.05 F F1(uni)2.815 E -.1(ve)-.1 +("\\C\255x\\C\255r": re\255read\255init\255\214le)144 338.4 Q +("\\e[11~": "Function K)144 350.4 Q .3 -.15(ey 1)-.25 H(").15 E .315 +(In this e)108 367.2 R(xample,)-.15 E F2(C\255u)2.655 E F0 .315(is ag) +3.065 F .315(ain bound to the function)-.05 F F1(uni)2.815 E -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0(.)A F2 .315(C\255x C\255r)5.155 F F0 -.315(is bound to the func-)3.545 F(tion)108 331.2 Q F1 -.18(re)2.5 G +.314(is bound to the func-)3.544 F(tion)108 379.2 Q F1 -.18(re)2.5 G .18 E(ead\255init\255\214le)-.18 E F0 2.5(,a)C(nd)-2.5 E F2 (ESC [ 1 1 ~)3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F3 (Function Key 1)2.5 E F0(.)A -(The full set of GNU Emacs style escape sequences is)108 348 Q F1 -<5c43ad>144 360 Q F0(control pre\214x)180 360 Q F1<5c4dad>144 372 Q F0 -(meta pre\214x)180 372 Q F1(\\e)144 384 Q F0(an escape character)180 384 -Q F1(\\\\)144 396 Q F0(backslash)180 396 Q F1(\\")144 408 Q F0 -(literal ")180 408 Q F1<5c08>144 420 Q F0(literal \010)180 420 Q(In add\ +(The full set of GNU Emacs style escape sequences is)108 396 Q F1 +<5c43ad>144 408 Q F0(control pre\214x)180 408 Q F1<5c4dad>144 420 Q F0 +(meta pre\214x)180 420 Q F1(\\e)144 432 Q F0(an escape character)180 432 +Q F1(\\\\)144 444 Q F0(backslash)180 444 Q F1(\\")144 456 Q F0 +(literal ")180 456 Q F1<5c08>144 468 Q F0(literal \010)180 468 Q(In add\ ition to the GNU Emacs style escape sequences, a second set of backslas\ -h escapes is a)108 436.8 Q -.25(va)-.2 G(ilable:).25 E F1(\\a)144 448.8 -Q F0(alert \(bell\))180 448.8 Q F1(\\b)144 460.8 Q F0(backspace)180 -460.8 Q F1(\\d)144 472.8 Q F0(delete)180 472.8 Q F1(\\f)144 484.8 Q F0 -(form feed)180 484.8 Q F1(\\n)144 496.8 Q F0(ne)180 496.8 Q(wline)-.25 E -F1(\\r)144 508.8 Q F0(carriage return)180 508.8 Q F1(\\t)144 520.8 Q F0 -(horizontal tab)180 520.8 Q F1(\\v)144 532.8 Q F0 -.15(ve)180 532.8 S -(rtical tab).15 E F1(\\)144 544.8 Q F2(nnn)A F0 -(the eight-bit character whose v)180 544.8 Q(alue is the octal v)-.25 E +h escapes is a)108 484.8 Q -.25(va)-.2 G(ilable:).25 E F1(\\a)144 496.8 +Q F0(alert \(bell\))180 496.8 Q F1(\\b)144 508.8 Q F0(backspace)180 +508.8 Q F1(\\d)144 520.8 Q F0(delete)180 520.8 Q F1(\\f)144 532.8 Q F0 +(form feed)180 532.8 Q F1(\\n)144 544.8 Q F0(ne)180 544.8 Q(wline)-.25 E +F1(\\r)144 556.8 Q F0(carriage return)180 556.8 Q F1(\\t)144 568.8 Q F0 +(horizontal tab)180 568.8 Q F1(\\v)144 580.8 Q F0 -.15(ve)180 580.8 S +(rtical tab).15 E F1(\\)144 592.8 Q F2(nnn)A F0 +(the eight-bit character whose v)180 592.8 Q(alue is the octal v)-.25 E (alue)-.25 E F2(nnn)2.5 E F0(\(one to three digits\))2.5 E F1(\\x)144 -556.8 Q F2(HH)A F0(the eight-bit character whose v)180 556.8 Q +604.8 Q F2(HH)A F0(the eight-bit character whose v)180 604.8 Q (alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0 -(\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E 1.142 -(When entering the te)108 573.6 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 585.6 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 -597.6 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G +(\(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 621.6 R 1.141(xt of a macro, single or double\ + quotes must be used to indicate a macro de\214nition.)-.15 F .09 +(Unquoted te)108 633.6 R .09(xt is assumed to be a function name.)-.15 F +.089(In the macro body)5.089 F 2.589(,t)-.65 G .089 +(he backslash escapes described abo)-2.589 F -.15(ve)-.15 G(are e)108 +645.6 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G (ther character in the macro te)-2.5 E(xt, including " and \010.)-.15 E -F1(Bash)108 614.4 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 F1(bind)2.929 E F0 -.2(bu)2.929 G .429(iltin command.).2 F .045 -(The editing mode may be switched during interacti)108 626.4 R .345 -.15 -(ve u)-.25 H .046(se by using the).15 F F12.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 638.4 Q/F4 9/Times-Bold@0 SF(SHELL B)2.5 E +F1(Bash)108 662.4 Q F0(allo)2.929 E .429(ws the current readline k)-.25 +F .729 -.15(ey b)-.1 H .429 +(indings to be displayed or modi\214ed with the).15 F F1(bind)2.93 E F0 +-.2(bu)2.93 G .43(iltin command.).2 F .046 +(The editing mode may be switched during interacti)108 674.4 R .346 -.15 +(ve u)-.25 H .046(se by using the).15 F F12.545 E F0 .045 +(option to the)2.545 F F1(set)2.545 E F0 -.2(bu)2.545 G .045 +(iltin command).2 F(\(see)108 686.4 Q/F4 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 655.2 Q(ariables)-.92 E F0 .044(Readline has v)108 667.2 +(Readline V)87 703.2 Q(ariables)-.92 E F0 .043(Readline has v)108 715.2 R .043(ariables that can be used to further customize its beha)-.25 F (vior)-.2 E 5.043(.A)-.55 G -.25(va)-2.5 G .043 -(riable may be set in the).25 F F2(inpu-)2.553 E(tr)108 679.2 Q(c)-.37 E -F0(\214le with a statement of the form)2.81 E F1(set)144 696 Q F2 -(variable\255name value)2.5 E F0 .79(Except where noted, readline v)108 -712.8 R .79(ariables can tak)-.25 F 3.29(et)-.1 G .79(he v)-3.29 F -(alues)-.25 E F1(On)3.29 E F0(or)3.29 E F1(Off)3.29 E F0 .79 -(\(without re)3.29 F -.05(ga)-.15 G .79(rd to case\).).05 F(Unrecog-) -5.79 E 2.393(nized v)108 724.8 R 2.393(ariable names are ignored.)-.25 F -2.393(When a v)7.393 F 2.393(ariable v)-.25 F 2.392 -(alue is read, empty or null v)-.25 F 2.392(alues, "on" \(case-)-.25 F -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(38)185.545 E 0 Cg EP +(riable may be set in the).25 F F2(inpu-)2.554 E(tr)108 727.2 Q(c)-.37 E +F0(\214le with a statement of the form)2.81 E(GNU Bash 4.4)72 768 Q +(2016 January 25)141.79 E(38)190.95 E 0 Cg EP %%Page: 39 39 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(insensiti)108 84 Q --.15(ve)-.25 G .635(\), and "1" are equi).15 F -.25(va)-.25 G .636 -(lent to).25 F/F1 10/Times-Bold@0 SF(On)3.136 E F0 5.636(.A)C .636 -(ll other v)-5.636 F .636(alues are equi)-.25 F -.25(va)-.25 G .636 -(lent to).25 F F1(Off)3.136 E F0 5.636(.T)C .636(he v)-5.636 F .636 -(ariables and their)-.25 F(def)108 96 Q(ault v)-.1 E(alues are:)-.25 E -F1(bell\255style \(audible\))108 112.8 Q F0 .011 -(Controls what happens when readline w)144 124.8 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 136.8 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 148.8 Q 2.5(sb)-.55 G(ell.) --2.5 E F1(bind\255tty\255special\255chars \(On\))108 160.8 Q F0 .056 -(If set to)144 172.8 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 184.8 Q -.15 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(set)144 84 Q/F2 10/Times-Italic@0 SF(variable\255name value)2.5 E F0 +.79(Except where noted, readline v)108 100.8 R .79(ariables can tak)-.25 +F 3.29(et)-.1 G .79(he v)-3.29 F(alues)-.25 E F1(On)3.29 E F0(or)3.29 E +F1(Off)3.29 E F0 .79(\(without re)3.29 F -.05(ga)-.15 G .79 +(rd to case\).).05 F(Unrecog-)5.79 E .448(nized v)108 112.8 R .448 +(ariable names are ignored.)-.25 F .448(When a v)5.448 F .448(ariable v) +-.25 F .448(alue is read, empty or null v)-.25 F .449 +(alues, "on" \(case-insensi-)-.25 F(ti)108 124.8 Q -.15(ve)-.25 G .468 +(\), and "1" are equi).15 F -.25(va)-.25 G .468(lent to).25 F F1(On) +2.968 E F0 5.468(.A)C .468(ll other v)-5.468 F .468(alues are equi)-.25 +F -.25(va)-.25 G .468(lent to).25 F F1(Off)2.968 E F0 5.468(.T)C .467 +(he v)-5.468 F .467(ariables and their def)-.25 F(ault)-.1 E -.25(va)108 +136.8 S(lues are:).25 E F1(bell\255style \(audible\))108 153.6 Q F0 .01 +(Controls what happens when readline w)144 165.6 R .011 +(ants to ring the terminal bell.)-.1 F .011(If set to)5.011 F F1(none) +2.511 E F0 2.511(,r)C .011(eadline ne)-2.511 F -.15(ve)-.25 G(r).15 E +.94(rings the bell.)144 177.6 R .94(If set to)5.94 F F1(visible)3.44 E +F0 3.44(,r)C .94(eadline uses a visible bell if one is a)-3.44 F -.25 +(va)-.2 G 3.44(ilable. If).25 F .94(set to)3.44 F F1(audible)3.44 E F0 +(,)A(readline attempts to ring the terminal')144 189.6 Q 2.5(sb)-.55 G +(ell.)-2.5 E F1(bind\255tty\255special\255chars \(On\))108 201.6 Q F0 +.055(If set to)144 213.6 R F1(On)2.555 E F0 2.555(,r)C .056(eadline att\ +empts to bind the control characters treated specially by the k)-2.555 F +(ernel')-.1 E 2.556(st)-.55 G(ermi-)-2.556 E(nal dri)144 225.6 Q -.15 (ve)-.25 G 2.5(rt).15 G 2.5(ot)-2.5 G(heir readline equi)-2.5 E -.25(va) --.25 G(lents.).25 E F1(color)108 196.8 Q(ed\255completion\255pr)-.18 E -(e\214x \(Off\))-.18 E F0 .515(If set to)144 208.8 R F1(On)3.015 E F0 +-.25 G(lents.).25 E F1(color)108 237.6 Q(ed\255completion\255pr)-.18 E +(e\214x \(Off\))-.18 E F0 .515(If set to)144 249.6 R F1(On)3.015 E F0 3.015(,w)C .515(hen listing completions, readline displays the common p\ -re\214x of the set of possible)-3.015 F 2.936(completions using a dif) -144 220.8 R 2.936(ferent color)-.25 F 7.936(.T)-.55 G 2.936 -(he color de\214nitions are tak)-7.936 F 2.935(en from the v)-.1 F 2.935 -(alue of the)-.25 F F1(LS_COLORS)144 232.8 Q F0(en)2.5 E(vironment v)-.4 -E(ariable.)-.25 E F1(color)108 244.8 Q(ed\255stats \(Off\))-.18 E F0 -1.579(If set to)144 256.8 R F1(On)4.079 E F0 4.079(,r)C 1.579 -(eadline displays possible completions using dif)-4.079 F 1.58 -(ferent colors to indicate their \214le)-.25 F 2.5(type. The)144 268.8 R +re\214x of the set of possible)-3.015 F 2.935(completions using a dif) +144 261.6 R 2.935(ferent color)-.25 F 7.936(.T)-.55 G 2.936 +(he color de\214nitions are tak)-7.936 F 2.936(en from the v)-.1 F 2.936 +(alue of the)-.25 F F1(LS_COLORS)144 273.6 Q F0(en)2.5 E(vironment v)-.4 +E(ariable.)-.25 E F1(color)108 285.6 Q(ed\255stats \(Off\))-.18 E F0 +1.58(If set to)144 297.6 R F1(On)4.08 E F0 4.08(,r)C 1.579 +(eadline displays possible completions using dif)-4.08 F 1.579 +(ferent colors to indicate their \214le)-.25 F 2.5(type. The)144 309.6 R (color de\214nitions are tak)2.5 E(en from the v)-.1 E(alue of the)-.25 E F1(LS_COLORS)2.5 E F0(en)2.5 E(vironment v)-.4 E(ariable.)-.25 E F1 -(comment\255begin \(`)108 280.8 Q(`#')-.63 E('\))-.63 E F0 .885 -(The string that is inserted when the readline)144 292.8 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 304.8 Q F1 +(comment\255begin \(`)108 321.6 Q(`#')-.63 E('\))-.63 E F0 .884 +(The string that is inserted when the readline)144 333.6 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 345.6 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 316.8 Q -(e\255case \(Off\))-.18 E F0(If set to)144 328.8 Q F1(On)2.5 E F0 2.5 +(in vi command mode.)2.5 E F1(completion\255ignor)108 357.6 Q +(e\255case \(Off\))-.18 E F0(If set to)144 369.6 Q F1(On)2.5 E F0 2.5 (,r)C(eadline performs \214lename matching and completion in a case\255\ insensiti)-2.5 E .3 -.15(ve f)-.25 H(ashion.).05 E F1(completion\255pr) -108 340.8 Q(e\214x\255display\255length \(0\))-.18 E F0 .829(The length\ +108 381.6 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 352.8 R 1.275(without modi\214cation.)144 364.8 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 376.8 S(lue are replaced with a\ + that is displayed)144 393.6 R 1.274(without modi\214cation.)144 405.6 R +1.274(When set to a v)6.274 F 1.274 +(alue greater than zero, common pre\214x)-.25 F 1.275 +(es longer than this)-.15 F -.25(va)144 417.6 S(lue are replaced with a\ n ellipsis when displaying possible completions.).25 E F1 -(completion\255query\255items \(100\))108 388.8 Q F0 .529 -(This determines when the user is queried about vie)144 400.8 R .53 -(wing the number of possible completions gen-)-.25 F .561(erated by the) -144 412.8 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 -424.8 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 436.8 S .237 +(completion\255query\255items \(100\))108 429.6 Q F0 .53 +(This determines when the user is queried about vie)144 441.6 R .529 +(wing the number of possible completions gen-)-.25 F .56(erated by the) +144 453.6 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 465.6 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 477.6 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 448.8 Q F1(con)108 -460.8 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)144 472.8 -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 +.237(re simply listed)-2.737 F(on the terminal.)144 489.6 Q F1(con)108 +501.6 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .613(If set to)144 513.6 +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 (stripping the eighth bit and pre\214xing an escape character \(in ef) -144 484.8 R .541(fect, using escape as the)-.25 F/F2 10/Times-Italic@0 -SF .541(meta pr)3.041 F(e-)-.37 E<8c78>144 496.8 Q F0(\).)A F1 -(disable\255completion \(Off\))108 508.8 Q F0 .038(If set to)144 520.8 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 +144 525.6 R .541(fect, using escape as the)-.25 F F2 .542(meta pr)3.042 +F(e-)-.37 E<8c78>144 537.6 Q F0(\).)A F1(disable\255completion \(Off\)) +108 549.6 Q F0 .038(If set to)144 561.6 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 532.8 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 544.8 Q F0 .142 -(Controls whether readline be)144 556.8 R .141(gins with a set of k)-.15 -F .441 -.15(ey b)-.1 H .141(indings similar to).15 F F2(Emacs)2.641 E F0 -(or)2.641 E F2(vi)2.641 E F0(.)A F1(editing\255mode)5.141 E F0 -(can be set to either)144 568.8 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E -F0(.)A F1(echo\255contr)108 580.8 Q(ol\255characters \(On\))-.18 E F0 -1.21(When set to)144 592.8 R F1(On)3.71 E F0 3.71(,o)C 3.71(no)-3.71 G -1.211(perating systems that indicate the)-3.71 F 3.711(ys)-.15 G 1.211 -(upport it, readline echoes a character)-3.711 F -(corresponding to a signal generated from the k)144 604.8 Q -.15(ey)-.1 -G(board.).15 E F1(enable\255brack)108 616.8 Q(eted\255paste \(Off\))-.1 -E F0 1.222(When set to)144 628.8 R F1(On)3.721 E F0 3.721(,r)C 1.221 +144 573.6 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 585.6 Q F0 .141 +(Controls whether readline be)144 597.6 R .141(gins with a set of k)-.15 +F .441 -.15(ey b)-.1 H .141(indings similar to).15 F F2(Emacs)2.642 E F0 +(or)2.642 E F2(vi)2.642 E F0(.)A F1(editing\255mode)5.142 E F0 +(can be set to either)144 609.6 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E +F0(.)A F1(echo\255contr)108 621.6 Q(ol\255characters \(On\))-.18 E F0 +1.211(When set to)144 633.6 R F1(On)3.711 E F0 3.711(,o)C 3.711(no) +-3.711 G 1.211(perating systems that indicate the)-3.711 F 3.711(ys)-.15 +G 1.21(upport it, readline echoes a character)-3.711 F +(corresponding to a signal generated from the k)144 645.6 Q -.15(ey)-.1 +G(board.).15 E F1(enable\255brack)108 657.6 Q(eted\255paste \(Off\))-.1 +E F0 1.221(When set to)144 669.6 R F1(On)3.721 E F0 3.721(,r)C 1.221 (eadline will con\214gure the terminal in a w)-3.721 F 1.221 (ay that will enable it to insert each)-.1 F .353 -(paste into the editing b)144 640.8 R(uf)-.2 E .353(fer as a single str\ -ing of characters, instead of treating each character as if)-.25 F .544 -(it had been read from the k)144 652.8 R -.15(ey)-.1 G 3.043 -(board. This).15 F .543(can pre)3.043 F -.15(ve)-.25 G .543 +(paste into the editing b)144 681.6 R(uf)-.2 E .353(fer as a single str\ +ing of characters, instead of treating each character as if)-.25 F .543 +(it had been read from the k)144 693.6 R -.15(ey)-.1 G 3.043 +(board. This).15 F .543(can pre)3.043 F -.15(ve)-.25 G .544 (nt pasted characters from being interpreted as).15 F(editing commands.) -144 664.8 Q F1(enable\255k)108 676.8 Q(eypad \(Off\))-.1 E F0 .892 -(When set to)144 688.8 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 .893(Some sys-)5.893 F -(tems need this to enable the arro)144 700.8 Q 2.5(wk)-.25 G -.15(ey) --2.6 G(s.).15 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G -(mber 16).15 E(39)185.545 E 0 Cg EP +144 705.6 Q(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(39)190.95 E 0 +Cg EP %%Page: 40 40 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(enable\255meta\255k)108 84 Q(ey \(On\))-.1 E F0 .64(When set to)144 -96 R F1(On)3.14 E F0 3.14(,r)C .64(eadline will try to enable an)-3.14 F -3.14(ym)-.15 G .64(eta modi\214er k)-3.14 F .94 -.15(ey t)-.1 H .64 -(he terminal claims to support).15 F(when it is called.)144 108 Q +SF(enable\255k)108 84 Q(eypad \(Off\))-.1 E F0 .893(When set to)144 96 R +F1(On)3.393 E F0 3.393(,r)C .893 +(eadline will try to enable the application k)-3.393 F -.15(ey)-.1 G +.893(pad when it is called.).15 F .892(Some sys-)5.893 F +(tems need this to enable the arro)144 108 Q 2.5(wk)-.25 G -.15(ey)-2.6 +G(s.).15 E F1(enable\255meta\255k)108 120 Q(ey \(On\))-.1 E F0 .64 +(When set to)144 132 R F1(On)3.14 E F0 3.14(,r)C .64 +(eadline will try to enable an)-3.14 F 3.14(ym)-.15 G .64 +(eta modi\214er k)-3.14 F .94 -.15(ey t)-.1 H .64 +(he terminal claims to support).15 F(when it is called.)144 144 Q (On man)5 E 2.5(yt)-.15 G(erminals, the meta k)-2.5 E .3 -.15(ey i)-.1 H 2.5(su).15 G(sed to send eight-bit characters.)-2.5 E F1 -(expand\255tilde \(Off\))108 120 Q F0(If set to)144 132 Q F1(On)2.5 E F0 +(expand\255tilde \(Off\))108 156 Q F0(If set to)144 168 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 144 Q(eser)-.18 E -.1 -(ve)-.1 G(\255point \(Off\)).1 E F0 1.338(If set to)144 156 R F1(On) -3.838 E F0 3.838(,t)C 1.338(he history code attempts to place point at \ -the same location on each history line)-3.838 F(retrie)144 168 Q -.15 +-.15 E(ord completion.)-.1 E F1(history\255pr)108 180 Q(eser)-.18 E -.1 +(ve)-.1 G(\255point \(Off\)).1 E F0 1.339(If set to)144 192 R F1(On) +3.839 E F0 3.839(,t)C 1.338(he history code attempts to place point at \ +the same location on each history line)-3.839 F(retrie)144 204 Q -.15 (ve)-.25 G 2.5(dw).15 G(ith)-2.5 E F1(pr)2.5 E -.15(ev)-.18 G (ious-history).15 E F0(or)2.5 E F1(next-history)2.5 E F0(.)A F1 -(history\255size \(unset\))108 180 Q F0 .949 -(Set the maximum number of history entries sa)144 192 R -.15(ve)-.2 G -3.448(di).15 G 3.448(nt)-3.448 G .948(he history list.)-3.448 F .948 -(If set to zero, an)5.948 F 3.448(ye)-.15 G(xisting)-3.598 E .482 -(history entries are deleted and no ne)144 204 R 2.982(we)-.25 G .483 -(ntries are sa)-2.982 F -.15(ve)-.2 G 2.983(d. If).15 F .483(set to a v) -2.983 F .483(alue less than zero, the num-)-.25 F -(ber of history entries is not limited.)144 216 Q(By def)5 E +(history\255size \(unset\))108 216 Q F0 .948 +(Set the maximum number of history entries sa)144 228 R -.15(ve)-.2 G +3.448(di).15 G 3.448(nt)-3.448 G .948(he history list.)-3.448 F .949 +(If set to zero, an)5.948 F 3.449(ye)-.15 G(xisting)-3.599 E .483 +(history entries are deleted and no ne)144 240 R 2.983(we)-.25 G .483 +(ntries are sa)-2.983 F -.15(ve)-.2 G 2.983(d. If).15 F .482(set to a v) +2.983 F .482(alue less than zero, the num-)-.25 F +(ber of history entries is not limited.)144 252 Q(By def)5 E (ault, the number of history entries is not limited.)-.1 E F1 -(horizontal\255scr)108 228 Q(oll\255mode \(Off\))-.18 E F0 .449 -(When set to)144 240 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 +(horizontal\255scr)108 264 Q(oll\255mode \(Off\))-.18 E F0 .448 +(When set to)144 276 R F1(On)2.948 E F0 2.948(,m)C(ak)-2.948 E .448 +(es readline use a single line for display)-.1 F 2.948(,s)-.65 G .449 (crolling the input horizontally on a)-2.948 F 1.194(single screen line\ when it becomes longer than the screen width rather than wrapping to a\ - ne)144 252 R(w)-.25 E(line.)144 264 Q F1(input\255meta \(Off\))108 276 -Q F0 .228(If set to)144 288 R F1(On)2.728 E F0 2.728(,r)C .227(eadline \ + ne)144 288 R(w)-.25 E(line.)144 300 Q F1(input\255meta \(Off\))108 312 +Q F0 .227(If set to)144 324 R F1(On)2.727 E F0 2.727(,r)C .228(eadline \ will enable eight-bit input \(that is, it will not strip the high bit f\ -rom the char)-2.728 F(-)-.2 E .956(acters it reads\), re)144 300 R -.05 +rom the char)-2.727 F(-)-.2 E .957(acters it reads\), re)144 336 R -.05 (ga)-.15 G .956(rdless of what the terminal claims it can support.).05 F -.957(The name)5.956 F F1(meta\255\215ag)3.457 E F0 .957(is a)3.457 F -(synon)144 312 Q(ym for this v)-.15 E(ariable.)-.25 E F1(isear)108 324 Q +.956(The name)5.956 F F1(meta\255\215ag)3.456 E F0 .956(is a)3.456 F +(synon)144 348 Q(ym for this v)-.15 E(ariable.)-.25 E F1(isear)108 360 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 336 R -.15(xe)-.15 G(cut-).15 E .934 -(ing the character as a command.)144 348 R .935(If this v)5.935 F .935 -(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.435(nav).15 G .935 -(alue, the characters)-3.685 F/F2 10/Times-Italic@0 SF(ESC)3.435 E F0 -(and)144 360 Q F2(C\255J)2.5 E F0(will terminate an incremental search.) -2.5 E F1 -.1(ke)108 372 S(ymap \(emacs\)).1 E F0 2.021 -(Set the current readline k)144 384 R -.15(ey)-.1 G 4.521(map. The).15 F +thout subsequently e)144 372 R -.15(xe)-.15 G(cut-).15 E .935 +(ing the character as a command.)144 384 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 +(and)144 396 Q F2(C\255J)2.5 E F0(will terminate an incremental search.) +2.5 E F1 -.1(ke)108 408 S(ymap \(emacs\)).1 E F0 2.02 +(Set the current readline k)144 420 R -.15(ey)-.1 G 4.521(map. The).15 F 2.021(set of v)4.521 F 2.021(alid k)-.25 F -.15(ey)-.1 G 2.021 -(map names is).15 F F2 2.02(emacs, emacs\255standar)4.52 F(d,)-.37 E -.068(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 396 R F0 2.568 +(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 432 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.569 E F0(;)A F2(emacs)2.569 E F0 1.544(is equi)144 408 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 +2.568 E F0(;)A F2(emacs)2.568 E F0 1.543(is equi)144 444 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 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.043 E F0(also)4.043 E(af)144 420 Q(fects the def)-.25 +(editing\255mode)4.044 E F0(also)4.044 E(af)144 456 Q(fects the def)-.25 E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1 -(emacs\255mode\255string \(@\))108 432 Q F0 .051(This string is display\ +(emacs\255mode\255string \(@\))108 468 Q F0 .051(This string is display\ ed immediately before the last line of the primary prompt when emacs ed\ -iting)144 444 R .293(mode is acti)144 456 R -.15(ve)-.25 G 5.293(.T).15 -G .293(he v)-5.293 F .293(alue is e)-.25 F .293(xpanded lik)-.15 F 2.793 +iting)144 480 R .292(mode is acti)144 492 R -.15(ve)-.25 G 5.292(.T).15 +G .292(he v)-5.292 F .293(alue is e)-.25 F .293(xpanded lik)-.15 F 2.793 (eak)-.1 G .593 -.15(ey b)-2.893 H .293 -(inding, so the standard set of meta- and control).15 F(pre\214x)144 468 -Q .601(es and backslash escape sequences is a)-.15 F -.25(va)-.2 G 3.101 -(ilable. Use).25 F .601(the \\1 and \\2 escapes to be)3.101 F .602 +(inding, so the standard set of meta- and control).15 F(pre\214x)144 504 +Q .602(es and backslash escape sequences is a)-.15 F -.25(va)-.2 G 3.101 +(ilable. Use).25 F .601(the \\1 and \\2 escapes to be)3.101 F .601 (gin and end)-.15 F .019(sequences of non-printing characters, which ca\ -n be used to embed a terminal control sequence into)144 480 R -(the mode string.)144 492 Q F1 -.1(ke)108 504 S(yseq\255timeout \(500\)) -.1 E F0 .367(Speci\214es the duration)144 516 R F2 -.37(re)2.867 G +n be used to embed a terminal control sequence into)144 516 R +(the mode string.)144 528 Q F1 -.1(ke)108 540 S(yseq\255timeout \(500\)) +.1 E F0 .368(Speci\214es the duration)144 552 R F2 -.37(re)2.867 G (adline).37 E F0 .367(will w)2.867 F .367 -(ait for a character when reading an ambiguous k)-.1 F .668 -.15(ey s) --.1 H(equence).15 E 1.356(\(one that can form a complete k)144 528 R +(ait for a character when reading an ambiguous k)-.1 F .667 -.15(ey s) +-.1 H(equence).15 E 1.356(\(one that can form a complete k)144 564 R 1.656 -.15(ey s)-.1 H 1.356(equence using the input read so f).15 F(ar) --.1 E 3.856(,o)-.4 G 3.856(rc)-3.856 G 1.355(an tak)-3.856 F 3.855(ea) --.1 G(dditional)-3.855 E .32(input to complete a longer k)144 540 R .62 +-.1 E 3.856(,o)-.4 G 3.856(rc)-3.856 G 1.356(an tak)-3.856 F 3.856(ea) +-.1 G(dditional)-3.856 E .32(input to complete a longer k)144 576 R .62 -.15(ey s)-.1 H 2.82(equence\). If).15 F .32(no input is recei)2.82 F -.15(ve)-.25 G 2.82(dw).15 G .32(ithin the timeout,)-2.82 F F2 -.37(re) -2.82 G(adline).37 E F0(will)2.82 E .907(use the shorter b)144 552 R .907 +2.82 G(adline).37 E F0(will)2.82 E .906(use the shorter b)144 588 R .907 (ut complete k)-.2 F 1.207 -.15(ey s)-.1 H 3.407(equence. The).15 F -.25 -(va)3.407 G .907(lue is speci\214ed in milliseconds, so a v).25 F .906 -(alue of)-.25 F .05(1000 means that)144 564 R F2 -.37(re)2.55 G(adline) +(va)3.407 G .907(lue is speci\214ed in milliseconds, so a v).25 F .907 +(alue of)-.25 F .05(1000 means that)144 600 R F2 -.37(re)2.55 G(adline) .37 E F0 .05(will w)2.55 F .05(ait one second for additional input.)-.1 F .05(If this v)5.05 F .05(ariable is set to a v)-.25 F(alue)-.25 E .051 -(less than or equal to zero, or to a non-numeric v)144 576 R(alue,)-.25 +(less than or equal to zero, or to a non-numeric v)144 612 R(alue,)-.25 E F2 -.37(re)2.551 G(adline).37 E F0 .051(will w)2.551 F .051 -(ait until another k)-.1 F .351 -.15(ey i)-.1 H 2.551(sp).15 G(ressed) --2.551 E(to decide which k)144 588 Q .3 -.15(ey s)-.1 H -(equence to complete.).15 E F1(mark\255dir)108 600 Q(ectories \(On\)) --.18 E F0(If set to)144 612 Q F1(On)2.5 E F0 2.5(,c)C +(ait until another k)-.1 F .352 -.15(ey i)-.1 H 2.552(sp).15 G(ressed) +-2.552 E(to decide which k)144 624 Q .3 -.15(ey s)-.1 H +(equence to complete.).15 E F1(mark\255dir)108 636 Q(ectories \(On\)) +-.18 E F0(If set to)144 648 Q F1(On)2.5 E F0 2.5(,c)C (ompleted directory names ha)-2.5 E .3 -.15(ve a s)-.2 H(lash appended.) -.15 E F1(mark\255modi\214ed\255lines \(Off\))108 624 Q F0(If set to)144 -636 Q F1(On)2.5 E F0 2.5(,h)C(istory lines that ha)-2.5 E .3 -.15(ve b) +.15 E F1(mark\255modi\214ed\255lines \(Off\))108 660 Q F0(If set to)144 +672 Q F1(On)2.5 E F0 2.5(,h)C(istory lines that ha)-2.5 E .3 -.15(ve b) -.2 H(een modi\214ed are displayed with a preceding asterisk \().15 E F1 -(*)A F0(\).)A F1(mark\255symlink)108 648 Q(ed\255dir)-.1 E -(ectories \(Off\))-.18 E F0 .175(If set to)144 660 R F1(On)2.675 E F0 +(*)A F0(\).)A F1(mark\255symlink)108 684 Q(ed\255dir)-.1 E +(ectories \(Off\))-.18 E F0 .175(If set to)144 696 R F1(On)2.675 E F0 2.675(,c)C .175 (ompleted names which are symbolic links to directories ha)-2.675 F .475 --.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 672 -Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A F1 -(match\255hidden\255\214les \(On\))108 684 Q F0 .193(This v)144 696 R -.193(ariable, when set to)-.25 F F1(On)2.693 E F0 2.693(,c)C .192 -(auses readline to match \214les whose names be)-2.693 F .192 -(gin with a `.)-.15 F 2.692('\()-.7 G(hidden)-2.692 E .456 -(\214les\) when performing \214lename completion.)144 708 R .456 -(If set to)5.456 F F1(Off)2.956 E F0 2.956(,t)C .456(he leading `.) --2.956 F 2.956('m)-.7 G .457(ust be supplied by the)-2.956 F -(user in the \214lename to be completed.)144 720 Q(GNU Bash 4.4)72 768 Q -(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(40)185.545 E 0 Cg EP +-.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 708 +Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(40)190.95 E 0 Cg EP %%Page: 41 41 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(menu\255complete\255display\255pr)108 84 Q(e\214x \(Off\))-.18 E F0 -1.586(If set to)144 96 R F1(On)4.086 E F0 4.086(,m)C 1.585(enu completi\ -on displays the common pre\214x of the list of possible completions) --4.086 F(\(which may be empty\) before c)144 108 Q -(ycling through the list.)-.15 E F1(output\255meta \(Off\))108 120 Q F0 -.506(If set to)144 132 R F1(On)3.006 E F0 3.006(,r)C .507(eadline will \ +SF(match\255hidden\255\214les \(On\))108 84 Q F0 .192(This v)144 96 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 .457 +(\214les\) when performing \214lename completion.)144 108 R .456 +(If set to)5.456 F F1(Off)2.956 E F0 2.956(,t)C .456(he leading `.) +-2.956 F 2.956('m)-.7 G .456(ust be supplied by the)-2.956 F +(user in the \214lename to be completed.)144 120 Q F1 +(menu\255complete\255display\255pr)108 132 Q(e\214x \(Off\))-.18 E F0 +1.585(If set to)144 144 R F1(On)4.085 E F0 4.085(,m)C 1.585(enu complet\ +ion displays the common pre\214x of the list of possible completions) +-4.085 F(\(which may be empty\) before c)144 156 Q +(ycling through the list.)-.15 E F1(output\255meta \(Off\))108 168 Q F0 +.507(If set to)144 180 R F1(On)3.007 E F0 3.007(,r)C .507(eadline will \ display characters with the eighth bit set directly rather than as a me\ -ta-)-3.006 F(pre\214x)144 144 Q(ed escape sequence.)-.15 E F1 -(page\255completions \(On\))108 156 Q F0 .809(If set to)144 168 R F1(On) +ta-)-3.007 F(pre\214x)144 192 Q(ed escape sequence.)-.15 E F1 +(page\255completions \(On\))108 204 Q F0 .808(If set to)144 216 R F1(On) 3.308 E F0 3.308(,r)C .808(eadline uses an internal)-3.308 F/F2 10 /Times-Italic@0 SF(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 180 Q F1 -(print\255completions\255horizontally \(Off\))108 192 Q F0 1.318 -(If set to)144 204 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 -F(order)144 216 Q 2.5(,r)-.4 G(ather than do)-2.5 E(wn the screen.)-.25 -E F1 -2.29 -.18(re v)108 228 T(ert\255all\255at\255newline \(Off\)).08 E -F0 .699(If set to)144 240 R F1(On)3.199 E F0 3.199(,r)C .699 +(tions at a time.)144 228 Q F1 +(print\255completions\255horizontally \(Off\))108 240 Q F0 1.319 +(If set to)144 252 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 264 Q 2.5(,r)-.4 G(ather than do)-2.5 E(wn the screen.)-.25 +E F1 -2.29 -.18(re v)108 276 T(ert\255all\255at\255newline \(Off\)).08 E +F0 .698(If set to)144 288 R F1(On)3.198 E F0 3.198(,r)C .699 (eadline will undo all changes to history lines before returning when) --3.199 F F1(accept\255line)3.198 E F0(is)3.198 E -.15(exe)144 252 S +-3.198 F F1(accept\255line)3.199 E F0(is)3.199 E -.15(exe)144 300 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 264 S(adline) -.18 E F0(.)A F1(sho)108 276 Q(w\255all\255if\255ambiguous \(Off\))-.1 E -F0 .304(This alters the def)144 288 R .304(ault beha)-.1 F .304 +(vidual undo lists across calls to)-.25 F F1 -.18(re)144 312 S(adline) +.18 E F0(.)A F1(sho)108 324 Q(w\255all\255if\255ambiguous \(Off\))-.1 E +F0 .303(This alters the def)144 336 R .303(ault beha)-.1 F .304 (vior of the completion functions.)-.2 F .304(If set to)5.304 F F1(On) -2.804 E F0 2.803(,w)C .303(ords which ha)-2.903 F .603 -.15(ve m)-.2 H +2.804 E F0 2.804(,w)C .304(ords which ha)-2.904 F .604 -.15(ve m)-.2 H (ore).15 E 1.264(than one possible completion cause the matches to be l\ -isted immediately instead of ringing the)144 300 R(bell.)144 312 Q F1 -(sho)108 324 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.346 -(This alters the def)144 336 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 348 Q(w\255all\255if\255ambiguous)-.1 E F0 6.69(.I)C -4.19(fs)-6.69 G 1.691(et to)-4.19 F F1(On)4.191 E F0 4.191(,w)C 1.691 +isted immediately instead of ringing the)144 348 R(bell.)144 360 Q F1 +(sho)108 372 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.345 +(This alters the def)144 384 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 396 Q(w\255all\255if\255ambiguous)-.1 E F0 6.691(.I)C +4.191(fs)-6.691 G 1.691(et to)-4.191 F F1(On)4.191 E F0 4.191(,w)C 1.691 (ords which ha)-4.291 F 1.991 -.15(ve m)-.2 H 1.691 -(ore than one possible completion).15 F 1.04(without an)144 360 R 3.54 +(ore than one possible completion).15 F 1.039(without an)144 408 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 372 Q F1 -(sho)108 384 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.018 -(If set to)144 396 R F1(On)3.518 E F0 3.518(,a)C 1.018 -(dd a character to the be)-3.518 F 1.018 +(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 420 Q F1 +(sho)108 432 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.019 +(If set to)144 444 R F1(On)3.519 E F0 3.519(,a)C 1.018 +(dd a character to the be)-3.519 F 1.018 (ginning of the prompt indicating the editing mode: emacs)-.15 F -(\(@\), vi command \(:\) or vi insertion \(+\).)144 408 Q F1 -(skip\255completed\255text \(Off\))108 420 Q F0 .095(If set to)144 432 R -F1(On)2.595 E F0 2.595(,t)C .095(his alters the def)-2.595 F .095 -(ault completion beha)-.1 F .094 -(vior when inserting a single match into the line.)-.2 F(It')144 444 Q -2.545(so)-.55 G .045(nly acti)-2.545 F .345 -.15(ve w)-.25 H .046 -(hen performing completion in the middle of a w).15 F 2.546(ord. If)-.1 -F .046(enabled, readline does not)2.546 F 1.394(insert characters from \ -the completion that match characters after point in the w)144 456 R -1.394(ord being com-)-.1 F(pleted, so portions of the w)144 468 Q +(\(@\), vi command \(:\) or vi insertion \(+\).)144 456 Q F1 +(skip\255completed\255text \(Off\))108 468 Q F0 .094(If set to)144 480 R +F1(On)2.594 E F0 2.594(,t)C .095(his alters the def)-2.594 F .095 +(ault completion beha)-.1 F .095 +(vior when inserting a single match into the line.)-.2 F(It')144 492 Q +2.546(so)-.55 G .046(nly acti)-2.546 F .346 -.15(ve w)-.25 H .046 +(hen performing completion in the middle of a w).15 F 2.545(ord. If)-.1 +F .045(enabled, readline does not)2.545 F 1.394(insert characters from \ +the completion that match characters after point in the w)144 504 R +1.395(ord being com-)-.1 F(pleted, so portions of the w)144 516 Q (ord follo)-.1 E(wing the cursor are not duplicated.)-.25 E F1 -(vi\255cmd\255mode\255string \(\(cmd\)\))108 480 Q F0 1.198(This string\ +(vi\255cmd\255mode\255string \(\(cmd\)\))108 528 Q F0 1.198(This string\ is displayed immediately before the last line of the primary prompt wh\ -en vi editing)144 492 R .522(mode is acti)144 504 R .822 -.15(ve a)-.25 +en vi editing)144 540 R .521(mode is acti)144 552 R .821 -.15(ve a)-.25 H .522(nd in command mode.).15 F .522(The v)5.522 F .522(alue is e)-.25 -F .522(xpanded lik)-.15 F 3.022(eak)-.1 G .821 -.15(ey b)-3.122 H .521 -(inding, so the standard).15 F .869(set of meta- and control pre\214x) -144 516 R .869(es and backslash escape sequences is a)-.15 F -.25(va)-.2 -G 3.37(ilable. Use).25 F .87(the \\1 and \\2)3.37 F .387(escapes to be) -144 528 R .386(gin and end sequences of non-printing characters, which \ +F .522(xpanded lik)-.15 F 3.022(eak)-.1 G .822 -.15(ey b)-3.122 H .522 +(inding, so the standard).15 F .87(set of meta- and control pre\214x)144 +564 R .869(es and backslash escape sequences is a)-.15 F -.25(va)-.2 G +3.369(ilable. Use).25 F .869(the \\1 and \\2)3.369 F .386(escapes to be) +144 576 R .386(gin and end sequences of non-printing characters, which \ can be used to embed a ter)-.15 F(-)-.2 E -(minal control sequence into the mode string.)144 540 Q F1 -(vi\255ins\255mode\255string \(\(ins\)\))108 552 Q F0 1.198(This string\ +(minal control sequence into the mode string.)144 588 Q F1 +(vi\255ins\255mode\255string \(\(ins\)\))108 600 Q F0 1.198(This string\ is displayed immediately before the last line of the primary prompt wh\ -en vi editing)144 564 R .783(mode is acti)144 576 R 1.083 -.15(ve a)-.25 +en vi editing)144 612 R .782(mode is acti)144 624 R 1.083 -.15(ve a)-.25 H .783(nd in insertion mode.).15 F .783(The v)5.783 F .783(alue is e) -.25 F .783(xpanded lik)-.15 F 3.283(eak)-.1 G 1.083 -.15(ey b)-3.383 H -.783(inding, so the standard).15 F .869 -(set of meta- and control pre\214x)144 588 R .869 -(es and backslash escape sequences is a)-.15 F -.25(va)-.2 G 3.37 -(ilable. Use).25 F .87(the \\1 and \\2)3.37 F .387(escapes to be)144 600 -R .386(gin and end sequences of non-printing characters, which can be u\ -sed to embed a ter)-.15 F(-)-.2 E -(minal control sequence into the mode string.)144 612 Q F1 -(visible\255stats \(Off\))108 624 Q F0 .846(If set to)144 636 R F1(On) +.783(inding, so the standard).15 F .87 +(set of meta- and control pre\214x)144 636 R .869 +(es and backslash escape sequences is a)-.15 F -.25(va)-.2 G 3.369 +(ilable. Use).25 F .869(the \\1 and \\2)3.369 F .386(escapes to be)144 +648 R .386(gin and end sequences of non-printing characters, which can \ +be used to embed a ter)-.15 F(-)-.2 E +(minal control sequence into the mode string.)144 660 Q F1 +(visible\255stats \(Off\))108 672 Q F0 .847(If set to)144 684 R F1(On) 3.346 E F0 3.346(,ac)C .846(haracter denoting a \214le')-3.346 F 3.346 (st)-.55 G .846(ype as reported by)-3.346 F F2(stat)3.346 E F0 .846 (\(2\) is appended to the \214lename)B -(when listing possible completions.)144 648 Q F1 -(Readline Conditional Constructs)87 664.8 Q F0 .05 -(Readline implements a f)108 676.8 R .05(acility similar in spirit to t\ -he conditional compilation features of the C preprocessor)-.1 F .096 -(which allo)108 688.8 R .096(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 -(There are four parser)5.096 F(directi)108 700.8 Q -.15(ve)-.25 G 2.5 -(su).15 G(sed.)-2.5 E F1($if)108 717.6 Q F0(The)144 717.6 Q F1($if)2.963 -E F0 .463(construct allo)2.963 F .462(ws bindings to be made based on t\ -he editing mode, the terminal being used,)-.25 F .477 -(or the application using readline.)144 729.6 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(GNU Bash 4.4)72 768 -Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(41)185.545 E 0 Cg EP +(when listing possible completions.)144 696 Q(GNU Bash 4.4)72 768 Q +(2016 January 25)141.79 E(41)190.95 E 0 Cg EP %%Page: 42 42 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(are required to isolate it.)144 84 Q/F1 10/Times-Bold@0 SF(mode)144 -100.8 Q F0(The)180 100.8 Q F1(mode=)3.712 E F0 1.212(form of the)3.712 F -F1($if)3.711 E F0(directi)3.711 E 1.511 -.15(ve i)-.25 H 3.711(su).15 G -1.211(sed to test whether readline is in emacs or vi)-3.711 F 3.065 -(mode. This)180 112.8 R .565(may be used in conjunction with the)3.065 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(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 the \ +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 .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)144 136.8 Q F1($if)2.962 E +F0 .462(construct allo)2.962 F .463(ws bindings to be made based on the\ + editing mode, the 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)180 +177.6 Q 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 F1 .565(set k)3.065 F(eymap)-.1 E F0 .565(command, for instance, to) -3.065 F .735(set bindings in the)180 124.8 R/F2 10/Times-Italic@0 SF +3.065 F .735(set bindings in the)180 201.6 R/F2 10/Times-Italic@0 SF (emacs\255standar)3.235 E(d)-.37 E F0(and)3.235 E F2(emacs\255ctlx)3.235 E F0 -.1(ke)3.235 G .735(ymaps only if readline is starting)-.05 F -(out in emacs mode.)180 136.8 Q F1(term)144 153.6 Q F0(The)180 153.6 Q -F1(term=)3.196 E F0 .696 -(form may be used to include terminal-speci\214c k)3.196 F .996 -.15 -(ey b)-.1 H .697(indings, perhaps to bind).15 F .654(the k)180 165.6 R +(out in emacs mode.)180 213.6 Q F1(term)144 230.4 Q F0(The)180 230.4 Q +F1(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 177.6 Q F1(=)3.231 -E F0 .731(is tested ag)3.231 F .732(ainst both the 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 both the full name of the ter\ minal and the portion of the terminal)-.05 F(name before the \214rst)180 -189.6 Q F12.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0 +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 -2.5(,f).77 G(or instance.)-2.5 E F1(application)144 206.4 Q F0(The)180 -218.4 Q F1(application)3.003 E F0 .503 +2.5(,f).77 G(or instance.)-2.5 E F1(application)144 283.2 Q F0(The)180 +295.2 Q F1(application)3.003 E F0 .503 (construct is used to include application-speci\214c settings.)3.003 F .503(Each program)5.503 F .114(using the readline library sets the)180 -230.4 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 242.4 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 254.4 R -.15(Fo)5.396 G 2.896(ri).15 G .396 +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 .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 266.4 -Q(vious w)-.25 E(ord in)-.1 E F1(bash)2.5 E F0(:)A F1($if)180 290.4 Q F0 -(Bash)2.5 E 2.5(#Q)180 302.4 S(uote the current or pre)-2.5 E(vious w) --.25 E(ord)-.1 E("\\C\255xq": "\\eb\\"\\ef\\"")180 314.4 Q F1($endif)180 -326.4 Q($endif)108 343.2 Q F0(This command, as seen in the pre)144 343.2 -Q(vious e)-.25 E(xample, terminates an)-.15 E F1($if)2.5 E F0(command.) -2.5 E F1($else)108 360 Q F0(Commands in this branch of the)144 360 Q F1 -($if)2.5 E F0(directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E -.15(xe)-.15 -G(cuted if the test f).15 E(ails.)-.1 E F1($include)108 376.8 Q F0 .357 -(This directi)144 388.8 R .657 -.15(ve t)-.25 H(ak).15 E .357 -(es a single \214lename as an ar)-.1 F .356 +(ey s)-.1 H .396(equence that quotes the).15 F(current or pre)180 343.2 +Q(vious w)-.25 E(ord in)-.1 E F1(bash)2.5 E F0(:)A 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)108 420 Q F0(This command, as seen in the pre)144 420 Q +(vious e)-.25 E(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)144 436.8 Q +F1($if)2.5 E F0(directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E -.15(xe) +-.15 G(cuted if the test f).15 E(ails.)-.1 E F1($include)108 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 400.8 R(or e)-.15 E(xample, the follo)-.15 E(wing directi)-.25 E .3 +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 424.8 Q F2(/etc/inputr)5.833 E(c)-.37 E F1(Sear)87 441.6 Q -(ching)-.18 E F0 .834(Readline pro)108 453.6 R .834 +($include)144 501.6 Q F2(/etc/inputr)5.833 E(c)-.37 E F1(Sear)87 518.4 Q +(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 465.6 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 482.4 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 -(search string is typed, readline displays the ne)108 494.4 R .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 -(incremental search requires only as man)108 506.4 R 3.042(yc)-.15 G +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 -(acters present in the v)108 518.4 R .224(alue of the)-.25 F F1(isear) +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 530.4 R .66(ariable has not been assigned a v)-.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 542.4 R .096(Control-G will abort an incremen\ -tal search and restore the original line.)5.096 F .097 -(When the search is)5.097 F(terminated, the history entry containing th\ -e search string becomes the current line.)108 554.4 Q 2.939 -.8(To \214) -108 571.2 T 1.339(nd other matching entries in the history list, type C\ -ontrol-S or Control-R as appropriate.).8 F 1.338(This will)6.338 F .674 -(search backw)108 583.2 R .674(ard or forw)-.1 F .674 -(ard in the history for the ne)-.1 F .675 -(xt entry matching the search string typed so f)-.15 F(ar)-.1 E 5.675 -(.A)-.55 G -.15(ny)-5.675 G .175(other k)108 595.2 R .475 -.15(ey s)-.1 -H .174 +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.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 607.2 R F2(ne)3.04 E(wline)-.15 E F0 .541 -(will terminate the search and accept the line, thereby e)3.04 F -.15 -(xe)-.15 G .541(cuting the command from the).15 F(history list.)108 -619.2 Q .653(Readline remembers the last incremental search string.)108 -636 R .653(If tw)5.653 F 3.153(oC)-.1 G .653 -(ontrol-Rs are typed without an)-3.153 F 3.152(yi)-.15 G(nterv)-3.152 E -(en-)-.15 E(ing characters de\214ning a ne)108 648 Q 2.5(ws)-.25 G +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 .567(Non-incremental searches read the entire search string befo\ -re starting to search for matching history lines.)108 664.8 R(The searc\ -h string may be typed by the user or be part of the contents of the cur\ -rent line.)108 676.8 Q F1(Readline Command Names)87 693.6 Q F0 1.392 -(The follo)108 705.6 R 1.391 -(wing is a list of the names of the commands and the def)-.25 F 1.391 -(ault k)-.1 F 1.691 -.15(ey s)-.1 H 1.391(equences to which the).15 F -3.891(ya)-.15 G(re)-3.891 E 2.621(bound. Command)108 717.6 R .121 -(names without an accompan)2.621 F .121(ying k)-.15 F .421 -.15(ey s)-.1 -H .122(equence are unbound by def).15 F 2.622(ault. In)-.1 F .122 -(the follo)2.622 F(wing)-.25 E(descriptions,)108 729.6 Q F2(point)3.411 -E F0 .911(refers to the current cursor position, and)3.411 F F2(mark) -3.411 E F0 .91(refers to a cursor position sa)3.411 F -.15(ve)-.2 G 3.41 -(db).15 G 3.41(yt)-3.41 G(he)-3.41 E(GNU Bash 4.4)72 768 Q(2015 No) -136.385 E -.15(ve)-.15 G(mber 16).15 E(42)185.545 E 0 Cg EP +-2.5 E(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(42)190.95 E 0 Cg +EP %%Page: 43 43 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(set\255mark)108 84 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 10 -/Times-Italic@0 SF -.37(re)2.5 G(gion)-.03 E F0(.)A F1(Commands f)87 -100.8 Q(or Mo)-.25 E(ving)-.1 E(beginning\255of\255line \(C\255a\))108 -112.8 Q F0(Mo)144 124.8 Q .3 -.15(ve t)-.15 H 2.5(ot).15 G -(he start of the current line.)-2.5 E F1(end\255of\255line \(C\255e\)) -108 136.8 Q F0(Mo)144 148.8 Q .3 -.15(ve t)-.15 H 2.5(ot).15 G -(he end of the line.)-2.5 E F1 -.25(fo)108 160.8 S -(rward\255char \(C\255f\)).25 E F0(Mo)144 172.8 Q .3 -.15(ve f)-.15 H -(orw).15 E(ard a character)-.1 E(.)-.55 E F1 -(backward\255char \(C\255b\))108 184.8 Q F0(Mo)144 196.8 Q .3 -.15(ve b) --.15 H(ack a character).15 E(.)-.55 E F1 -.25(fo)108 208.8 S(rward\255w) -.25 E(ord \(M\255f\))-.1 E F0(Mo)144 220.8 Q .822 -.15(ve f)-.15 H(orw) -.15 E .522(ard to the end of the ne)-.1 F .523(xt w)-.15 F 3.023(ord. W) --.1 F .523(ords are composed of alphanumeric characters \(let-)-.8 F -(ters and digits\).)144 232.8 Q F1(backward\255w)108 244.8 Q -(ord \(M\255b\))-.1 E F0(Mo)144 256.8 Q 1.71 -.15(ve b)-.15 H 1.41 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .567(Non-incremen\ +tal searches read the entire search string before starting to search fo\ +r matching history lines.)108 84 R(The search string may be typed by th\ +e user or be part of the contents of the current line.)108 96 Q/F1 10 +/Times-Bold@0 SF(Readline Command Names)87 112.8 Q 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.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 +E(beginning\255of\255line \(C\255a\))108 189.6 Q F0(Mo)144 201.6 Q .3 +-.15(ve t)-.15 H 2.5(ot).15 G(he start of the current line.)-2.5 E F1 +(end\255of\255line \(C\255e\))108 213.6 Q F0(Mo)144 225.6 Q .3 -.15 +(ve t)-.15 H 2.5(ot).15 G(he end of the line.)-2.5 E F1 -.25(fo)108 +237.6 S(rward\255char \(C\255f\)).25 E F0(Mo)144 249.6 Q .3 -.15(ve f) +-.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 .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 (ord. W)-.1 F 1.41(ords are composed of alphanumeric)-.8 F -(characters \(letters and digits\).)144 268.8 Q F1(shell\255f)108 280.8 -Q(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 292.8 Q .784 -.15(ve f)-.15 H +(characters \(letters and digits\).)144 345.6 Q F1(shell\255f)108 357.6 +Q(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 369.6 Q .784 -.15(ve f)-.15 H (orw).15 E .484(ard to the end of the ne)-.1 F .484(xt w)-.15 F 2.984 (ord. W)-.1 F .484(ords are delimited by non-quoted shell metacharac-) --.8 F(ters.)144 304.8 Q F1(shell\255backward\255w)108 316.8 Q(ord)-.1 E -F0(Mo)144 328.8 Q .909 -.15(ve b)-.15 H .609 +-.8 F(ters.)144 381.6 Q F1(shell\255backward\255w)108 393.6 Q(ord)-.1 E +F0(Mo)144 405.6 Q .908 -.15(ve b)-.15 H .609 (ack to the start of the current or pre).15 F .609(vious w)-.25 F 3.109 -(ord. W)-.1 F .608(ords are delimited by non-quoted shell)-.8 F -(metacharacters.)144 340.8 Q F1(clear\255scr)108 352.8 Q(een \(C\255l\)) --.18 E F0 .993(Clear the screen lea)144 364.8 R .993 +(ord. W)-.1 F .609(ords are delimited by non-quoted shell)-.8 F +(metacharacters.)144 417.6 Q F1(clear\255scr)108 429.6 Q(een \(C\255l\)) +-.18 E F0 .993(Clear the screen lea)144 441.6 R .993 (ving the current line at the top of the screen.)-.2 F -.4(Wi)5.993 G .993(th an ar).4 F .993(gument, refresh the)-.18 F -(current line without clearing the screen.)144 376.8 Q F1 -.18(re)108 -388.8 S(draw\255curr).18 E(ent\255line)-.18 E F0 -(Refresh the current line.)144 400.8 Q F1(Commands f)87 417.6 Q +(current line without clearing the screen.)144 453.6 Q F1 -.18(re)108 +465.6 S(draw\255curr).18 E(ent\255line)-.18 E F0 +(Refresh the current line.)144 477.6 Q F1(Commands f)87 494.4 Q (or Manipulating the History)-.25 E(accept\255line \(Newline, Retur)108 -429.6 Q(n\))-.15 E F0 .159(Accept the line re)144 441.6 R -.05(ga)-.15 G -.159(rdless of where the cursor is.).05 F .158 -(If this line is non-empty)5.158 F 2.658(,a)-.65 G .158 -(dd it to the history list)-2.658 F .699(according to the state of the) -144 453.6 R/F3 9/Times-Bold@0 SF(HISTCONTR)3.199 E(OL)-.27 E F0 -.25(va) +506.4 Q(n\))-.15 E F0 .158(Accept the line re)144 518.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 530.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 -(restore the history line to its original state.)144 465.6 Q F1(pr)108 -477.6 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0 -(Fetch the pre)144 489.6 Q(vious command from the history list, mo)-.25 -E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 501.6 -Q F0(Fetch the ne)144 513.6 Q(xt command from the history list, mo)-.15 +(restore the history line to its original state.)144 542.4 Q F1(pr)108 +554.4 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0 +(Fetch the pre)144 566.4 Q(vious command from the history list, mo)-.25 +E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 578.4 +Q F0(Fetch the ne)144 590.4 Q(xt command from the history list, mo)-.15 E(ving forw)-.15 E(ard in the list.)-.1 E F1 -(beginning\255of\255history \(M\255<\))108 525.6 Q F0(Mo)144 537.6 Q .3 +(beginning\255of\255history \(M\255<\))108 602.4 Q F0(Mo)144 614.4 Q .3 -.15(ve t)-.15 H 2.5(ot).15 G(he \214rst line in the history)-2.5 E(.) --.65 E F1(end\255of\255history \(M\255>\))108 549.6 Q F0(Mo)144 561.6 Q +-.65 E F1(end\255of\255history \(M\255>\))108 626.4 Q F0(Mo)144 638.4 Q .3 -.15(ve t)-.15 H 2.5(ot).15 G(he end of the input history)-2.5 E 2.5 (,i)-.65 G(.e., the line currently being entered.)-2.5 E F1 -2.29 -.18 -(re v)108 573.6 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 -1.471(Search backw)144 585.6 R 1.471 -(ard starting at the current line and mo)-.1 F 1.47 +(re v)108 650.4 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 +1.47(Search backw)144 662.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 597.6 Q F1 -.25(fo)108 609.6 S -(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.131 -(Search forw)144 621.6 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) --.25 F(.)-.65 E(This is an incremental search.)144 633.6 Q F1 -(non\255incr)108 645.6 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) -144 657.6 R .164(ard through the history starting at the current line u\ -sing a non-incremental search for)-.1 F 2.5(as)144 669.6 S -(tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 681.6 Q -(emental\255f)-.18 E(orward\255sear)-.25 E(ch\255history \(M\255n\))-.18 -E F0 1.353(Search forw)144 693.6 R 1.354(ard through the history using \ -a non-incremental search for a string supplied by the)-.1 F(user)144 -705.6 Q(.)-.55 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G -(mber 16).15 E(43)185.545 E 0 Cg EP +(This is an incremental search.)144 674.4 Q F1 -.25(fo)108 686.4 S +(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.132 +(Search forw)144 698.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 710.4 Q(GNU Bash 4.4) +72 768 Q(2016 January 25)141.79 E(43)190.95 E 0 Cg EP %%Page: 44 44 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(history\255sear)108 84 Q(ch\255f)-.18 E(orward)-.25 E F0 .249 -(Search forw)144 96 R .249(ard through the history for the string of ch\ -aracters 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 t\ -he history for the string of characters between the start of the curren\ -t)-.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 +SF(non\255incr)108 84 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H +(rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .164(Search backw) +144 96 R .164(ard through the history starting at the current line usin\ +g a non-incremental search for)-.1 F 2.5(as)144 108 S +(tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 120 Q +(emental\255f)-.18 E(orward\255sear)-.25 E(ch\255history \(M\255n\))-.18 +E F0 1.354(Search forw)144 132 R 1.354(ard through the history using a \ +non-incremental search for a string supplied by the)-.1 F(user)144 144 Q +(.)-.55 E F1(history\255sear)108 156 Q(ch\255f)-.18 E(orward)-.25 E F0 +.248(Search forw)144 168 R .249(ard through the history for the string \ +of characters between the start of the current line)-.1 F +(and the point.)144 180 Q(This is a non-incremental search.)5 E F1 +(history\255sear)108 192 Q(ch\255backward)-.18 E F0 .951(Search backw) +144 204 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 216 Q +(This is a non-incremental search.)5 E F1(yank\255nth\255ar)108 228 Q +2.5(g\()-.1 G<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 240 +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 252 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 264 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 -(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 .203(th a numeric ar).4 -F .203(gument, beha)-.18 F .504 -.15(ve ex)-.2 H .204(actly lik).15 F(e) --.1 E F1(yank\255nth\255ar)2.704 E(g)-.1 E F0 5.204(.S)C(uccessi)-5.204 -E .504 -.15(ve c)-.25 H .204(alls to).15 F F1(yank\255last\255ar)2.704 E -(g)-.1 E F0(mo)144 264 Q .807 -.15(ve b)-.15 H .507 +(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 276 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 288 Q +(xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 300 Q +2.5(g\()-.1 G -1.667(M\255. ,)-2.5 F -1.667(M\255_ \))2.5 F F0 1.307 +(Insert the last ar)144 312 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 324 S .204(th a numeric ar).4 +F .204(gument, beha)-.18 F .504 -.15(ve ex)-.2 H .204(actly lik).15 F(e) +-.1 E F1(yank\255nth\255ar)2.704 E(g)-.1 E F0 5.203(.S)C(uccessi)-5.203 +E .503 -.15(ve c)-.25 H .203(alls to).15 F F1(yank\255last\255ar)2.703 E +(g)-.1 E F0(mo)144 336 Q .806 -.15(ve b)-.15 H .507 (ack through the history list, inserting the last w).15 F .507 (ord \(or the w)-.1 F .507(ord speci\214ed by the ar)-.1 F(gument)-.18 E -1.396(to the \214rst call\) of each line in turn.)144 276 R(An)6.396 E -3.896(yn)-.15 G 1.396(umeric ar)-3.896 F 1.397 -(gument supplied to these successi)-.18 F 1.697 -.15(ve c)-.25 H(alls) -.15 E .492(determines the direction to mo)144 288 R .792 -.15(ve t)-.15 -H .492(hrough the history).15 F 5.491(.A)-.65 G(ne)-2.5 E -.05(ga)-.15 G -(ti).05 E .791 -.15(ve a)-.25 H -.18(rg).15 G .491 +1.397(to the \214rst call\) of each line in turn.)144 348 R(An)6.396 E +3.896(yn)-.15 G 1.396(umeric ar)-3.896 F 1.396 +(gument supplied to these successi)-.18 F 1.696 -.15(ve c)-.25 H(alls) +.15 E .491(determines the direction to mo)144 360 R .791 -.15(ve t)-.15 +H .491(hrough the history).15 F 5.492(.A)-.65 G(ne)-2.5 E -.05(ga)-.15 G +(ti).05 E .792 -.15(ve a)-.25 H -.18(rg).15 G .492 (ument switches the direction).18 F .494 -(through the history \(back or forw)144 300 R 2.994(ard\). The)-.1 F +(through the history \(back or forw)144 372 R 2.994(ard\). The)-.1 F .494(history e)2.994 F .494(xpansion f)-.15 F .494 (acilities are used to e)-.1 F .494(xtract the last)-.15 F -.1(wo)144 -312 S(rd, as if the "!$" history e).1 E(xpansion had been speci\214ed.) --.15 E F1(shell\255expand\255line \(M\255C\255e\))108 324 Q F0 .623 -(Expand the line as the shell does.)144 336 R .622 -(This performs alias and history e)5.622 F .622 -(xpansion as well as all of the)-.15 F(shell w)144 348 Q(ord e)-.1 E 2.5 +384 S(rd, as if the "!$" history e).1 E(xpansion had been speci\214ed.) +-.15 E F1(shell\255expand\255line \(M\255C\255e\))108 396 Q F0 .622 +(Expand the line as the shell does.)144 408 R .622 +(This performs alias and history e)5.622 F .623 +(xpansion as well as all of the)-.15 F(shell w)144 420 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 360 Q F0 .938 -(Perform history e)144 372 R .939(xpansion on the current line.)-.15 F +(history\255expand\255line \(M\255^\))108 432 Q F0 .939 +(Perform history e)144 444 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 384 Q(xpansion.)-.15 E F1(magic\255space) -108 396 Q F0 1.627(Perform history e)144 408 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 -(belo)144 420 Q 2.5(wf)-.25 G(or a description of history e)-2.5 E -(xpansion.)-.15 E F1(alias\255expand\255line)108 432 Q F0 .394 -(Perform alias e)144 444 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 456 Q F1 -(history\255and\255alias\255expand\255line)108 468 Q F0 -(Perform history and alias e)144 480 Q(xpansion on the current line.) --.15 E F1(insert\255last\255ar)108 492 Q(gument \(M\255.)-.1 E 2.5(,M) -.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 504 S(ynon)-2.5 E(ym for) +(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 456 Q(xpansion.)-.15 E F1(magic\255space) +108 468 Q F0 1.626(Perform history e)144 480 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 492 Q 2.5(wf)-.25 G(or a description of history e)-2.5 E +(xpansion.)-.15 E F1(alias\255expand\255line)108 504 Q F0 .395 +(Perform alias e)144 516 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 528 Q F1 +(history\255and\255alias\255expand\255line)108 540 Q F0 +(Perform history and alias e)144 552 Q(xpansion on the current line.) +-.15 E F1(insert\255last\255ar)108 564 Q(gument \(M\255.)-.1 E 2.5(,M) +.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 576 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 516 Q F0 .948 -(Accept the current line for e)144 528 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 -(history for editing.)144 540 Q(An)5 E 2.5(ya)-.15 G -.18(rg)-2.5 G +(operate\255and\255get\255next \(C\255o\))108 588 Q F0 .947 +(Accept the current line for e)144 600 R -.15(xe)-.15 G .948 +(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 612 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 552 Q F0(In)144 -564 Q -.2(vo)-.4 G 1.226 -.1(ke a).2 H 3.526(ne).1 G 1.026 +(edit\255and\255execute\255command \(C\255xC\255e\))108 624 Q F0(In)144 +636 Q -.2(vo)-.4 G 1.226 -.1(ke a).2 H 3.526(ne).1 G 1.026 (ditor on the current command line, and e)-3.526 F -.15(xe)-.15 G 1.026 (cute the result as shell commands.).15 F F1(Bash)6.026 E F0 -(attempts to in)144 576 Q -.2(vo)-.4 G -.1(ke).2 G F3($VISU)2.6 E(AL) +(attempts to in)144 648 Q -.2(vo)-.4 G -.1(ke).2 G F3($VISU)2.6 E(AL) -.54 E/F4 9/Times-Roman@0 SF(,)A F3($EDIT)2.25 E(OR)-.162 E F4(,)A F0 (and)2.25 E 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 592.8 Q(or Changing T) --.25 E(ext)-.92 E F2(end\255of\255\214le)108 604.8 Q F1 -(\(usually C\255d\))2.5 E F0 .799 -(The character indicating end-of-\214le as set, for e)144 616.8 R .799 -(xample, by)-.15 F/F5 10/Courier@0 SF(stty)3.299 E F0 5.799(.I)C 3.298 -(ft)-5.799 G .798(his character is read when)-3.298 F .592 -(there are no characters on the line, and point is at the be)144 628.8 R -.593(ginning of the line, Readline interprets it)-.15 F -(as the end of input and returns)144 640.8 Q F3(EOF)2.5 E F4(.)A F1 -(delete\255char \(C\255d\))108 652.8 Q F0 .442 -(Delete the character at point.)144 664.8 R .442 -(If this function is bound to the same character as the tty)5.442 F F1 -(EOF)2.941 E F0(char)2.941 E(-)-.2 E(acter)144 676.8 Q 2.5(,a)-.4 G(s) --2.5 E F1(C\255d)2.5 E F0(commonly is, see abo)2.5 E .3 -.15(ve f)-.15 H -(or the ef).15 E(fects.)-.25 E F1(backward\255delete\255char \(Rubout\)) -108 688.8 Q F0 .552(Delete the character behind the cursor)144 700.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 712.8 Q -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(44)185.545 E 0 Cg EP +-2.5 G(hat order)-2.5 E(.)-.55 E F1(Commands f)87 664.8 Q(or Changing T) +-.25 E(ext)-.92 E F2(end\255of\255\214le)108 676.8 Q F1 +(\(usually C\255d\))2.5 E F0 .798 +(The character indicating end-of-\214le as set, for e)144 688.8 R .799 +(xample, by)-.15 F/F5 10/Courier@0 SF(stty)3.299 E F0 5.799(.I)C 3.299 +(ft)-5.799 G .799(his character is read when)-3.299 F .592 +(there are no characters on the line, and point is at the be)144 700.8 R +.592(ginning of the line, Readline interprets it)-.15 F +(as the end of input and returns)144 712.8 Q F3(EOF)2.5 E F4(.)A F0 +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(44)190.95 E 0 Cg EP %%Page: 45 45 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF -.25(fo)108 84 S(rward\255backward\255delete\255char).25 E F0 .474 -(Delete the character under the cursor)144 96 R 2.974(,u)-.4 G .474 -(nless the cursor is at the end of the line, in which case the)-2.974 F -(character behind the cursor is deleted.)144 108 Q F1 -(quoted\255insert \(C\255q, C\255v\))108 120 Q F0 .778(Add the ne)144 -132 R .779(xt character typed to the line v)-.15 F 3.279(erbatim. This) +SF(delete\255char \(C\255d\))108 84 Q F0 .441 +(Delete the character at point.)144 96 R .442 +(If this function is bound to the same character as the tty)5.441 F F1 +(EOF)2.942 E F0(char)2.942 E(-)-.2 E(acter)144 108 Q 2.5(,a)-.4 G(s)-2.5 +E F1(C\255d)2.5 E F0(commonly is, see abo)2.5 E .3 -.15(ve f)-.15 H +(or the ef).15 E(fects.)-.25 E F1(backward\255delete\255char \(Rubout\)) +108 120 Q F0 .553(Delete the character behind the cursor)144 132 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 .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 144 Q F1 -.25 +(fo)108 156 S(rward\255backward\255delete\255char).25 E F0 .473 +(Delete the character under the cursor)144 168 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 180 Q F1 +(quoted\255insert \(C\255q, C\255v\))108 192 Q F0 .779(Add the ne)144 +204 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 144 S(ample.).15 E F1(tab\255insert \(C\255v T) -108 156 Q(AB\))-.9 E F0(Insert a tab character)144 168 Q(.)-.55 E F1 -(self\255insert \(a, b, A, 1, !, ...\))108 180 Q F0 -(Insert the character typed.)144 192 Q F1(transpose\255chars \(C\255t\)) -108 204 Q F0 .322(Drag the character before point forw)144 216 R .321 +(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 216 S(ample.).15 E F1(tab\255insert \(C\255v T) +108 228 Q(AB\))-.9 E F0(Insert a tab character)144 240 Q(.)-.55 E F1 +(self\255insert \(a, b, A, 1, !, ...\))108 252 Q F0 +(Insert the character typed.)144 264 Q F1(transpose\255chars \(C\255t\)) +108 276 Q F0 .321(Drag the character before point forw)144 288 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 228 -R 3.683(oc)-.1 G 1.183(haracters before point.)-3.683 F(Ne)6.183 E -.05 -(ga)-.15 G(ti).05 E -.15(ve)-.25 G(ar)144 240 Q(guments ha)-.18 E .3 +(If point is at the end of the line, then this transposes the tw)144 300 +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 312 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 252 Q(ords \(M\255t\))-.1 E F0 .024(Drag the w)144 -264 R .024(ord before point past the w)-.1 F .023(ord after point, mo) --.1 F .023(ving point o)-.15 F -.15(ve)-.15 G 2.523(rt).15 G .023(hat w) --2.523 F .023(ord as well.)-.1 F .023(If point)5.023 F -(is at the end of the line, this transposes the last tw)144 276 Q 2.5 -(ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 288 Q -(ord \(M\255u\))-.1 E F0 1.698(Uppercase the current \(or follo)144 300 +(transpose\255w)108 324 Q(ords \(M\255t\))-.1 E F0 .023(Drag the w)144 +336 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 348 Q 2.5 +(ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 360 Q +(ord \(M\255u\))-.1 E F0 1.699(Uppercase the current \(or follo)144 372 R 1.698(wing\) w)-.25 F 4.198(ord. W)-.1 F 1.698(ith a ne)-.4 F -.05(ga) --.15 G(ti).05 E 1.999 -.15(ve a)-.25 H -.18(rg).15 G 1.699 -(ument, uppercase the pre).18 F(vious)-.25 E -.1(wo)144 312 S(rd, b).1 E -(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 324 Q -(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 336 Q 1.648 -(wercase the current \(or follo)-.25 F 1.648(wing\) w)-.25 F 4.148 -(ord. W)-.1 F 1.647(ith a ne)-.4 F -.05(ga)-.15 G(ti).05 E 1.947 -.15 -(ve a)-.25 H -.18(rg).15 G 1.647(ument, lo).18 F 1.647(wercase the pre) --.25 F(vious)-.25 E -.1(wo)144 348 S(rd, b).1 E(ut do not mo)-.2 E .3 --.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 360 Q -(ord \(M\255c\))-.1 E F0 1.974(Capitalize the current \(or follo)144 372 +-.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 384 S(rd, b).1 E +(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 396 Q +(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 408 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 420 S(rd, b).1 E(ut do not mo)-.2 E .3 +-.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 432 Q +(ord \(M\255c\))-.1 E F0 1.975(Capitalize the current \(or follo)144 444 R 1.974(wing\) w)-.25 F 4.474(ord. W)-.1 F 1.974(ith a ne)-.4 F -.05(ga) --.15 G(ti).05 E 2.274 -.15(ve a)-.25 H -.18(rg).15 G 1.975 -(ument, capitalize the pre).18 F(vious)-.25 E -.1(wo)144 384 S(rd, b).1 -E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 396 -S(rwrite\255mode).1 E F0 -.8(To)144 408 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 420 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 432 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 -444 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 456 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 468 Q(By def)5 E -(ault, this command is unbound.)-.1 E F1(Killing and Y)87 484.8 Q -(anking)-.85 E(kill\255line \(C\255k\))108 496.8 Q F0(Kill the te)144 -508.8 Q(xt from point to the end of the line.)-.15 E F1 -(backward\255kill\255line \(C\255x Rubout\))108 520.8 Q F0(Kill backw) -144 532.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1 -(unix\255line\255discard \(C\255u\))108 544.8 Q F0(Kill backw)144 556.8 +-.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 456 S(rd, b).1 +E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 468 +S(rwrite\255mode).1 E F0 -.8(To)144 480 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 492 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 504 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 516 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 528 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 540 Q +(By def)5 E(ault, this command is unbound.)-.1 E F1(Killing and Y)87 +556.8 Q(anking)-.85 E(kill\255line \(C\255k\))108 568.8 Q F0 +(Kill the te)144 580.8 Q(xt from point to the end of the line.)-.15 E F1 +(backward\255kill\255line \(C\255x Rubout\))108 592.8 Q F0(Kill backw) +144 604.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1 +(unix\255line\255discard \(C\255u\))108 616.8 Q F0(Kill backw)144 628.8 Q(ard from point to the be)-.1 E(ginning of the line.)-.15 E (The killed te)5 E(xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt) --2.5 G(he kill-ring.)-2.5 E F1(kill\255whole\255line)108 568.8 Q F0 +-2.5 G(he kill-ring.)-2.5 E F1(kill\255whole\255line)108 640.8 Q F0 (Kill all characters on the current line, no matter where point is.)144 -580.8 Q F1(kill\255w)108 592.8 Q(ord \(M\255d\))-.1 E F0 .728 -(Kill from point to the end of the current w)144 604.8 R .729 -(ord, or if between w)-.1 F .729(ords, to the end of the ne)-.1 F .729 -(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 616.8 S +652.8 Q F1(kill\255w)108 664.8 Q(ord \(M\255d\))-.1 E F0 .729 +(Kill from point to the end of the current w)144 676.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 688.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 628.8 Q -(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 640.8 Q(ord behind point.) +(rward\255w).25 E(ord)-.1 E F0(.)A F1(backward\255kill\255w)108 700.8 Q +(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 712.8 Q(ord behind point.) -.1 E -.8(Wo)5 G(rd boundaries are the same as those used by).8 E F1 -(backward\255w)2.5 E(ord)-.1 E F0(.)A F1(shell\255kill\255w)108 652.8 Q -(ord)-.1 E F0 .729(Kill from point to the end of the current w)144 664.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 676.8 S -(rd boundaries are the same as those used by).8 E F1(shell\255f)2.5 E -(orward\255w)-.25 E(ord)-.1 E F0(.)A F1(shell\255backward\255kill\255w) -108 688.8 Q(ord)-.1 E F0 3.025(Kill the w)144 700.8 R 3.025 -(ord behind point.)-.1 F -.8(Wo)8.025 G 3.025 -(rd boundaries are the same as those used by).8 F F1(shell\255back-) -5.525 E(ward\255w)144 712.8 Q(ord)-.1 E F0(.)A(GNU Bash 4.4)72 768 Q -(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(45)185.545 E 0 Cg EP +(backward\255w)2.5 E(ord)-.1 E F0(.)A(GNU Bash 4.4)72 768 Q +(2016 January 25)141.79 E(45)190.95 E 0 Cg EP %%Page: 46 46 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(unix\255w)108 84 Q(ord\255rubout \(C\255w\))-.1 E F0 .365(Kill the w) -144 96 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 108 Q F1(unix\255\214lename\255rubout)108 120 Q -F0 .166(Kill the w)144 132 R .166 +SF(shell\255kill\255w)108 84 Q(ord)-.1 E F0 .728 +(Kill from point to the end of the current w)144 96 R .729 +(ord, or if between w)-.1 F .729(ords, to the end of the ne)-.1 F .729 +(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 108 S +(rd boundaries are the same as those used by).8 E F1(shell\255f)2.5 E +(orward\255w)-.25 E(ord)-.1 E F0(.)A F1(shell\255backward\255kill\255w) +108 120 Q(ord)-.1 E F0 3.025(Kill the w)144 132 R 3.025 +(ord behind point.)-.1 F -.8(Wo)8.025 G 3.025 +(rd boundaries are the same as those used by).8 F F1(shell\255back-) +5.525 E(ward\255w)144 144 Q(ord)-.1 E F0(.)A F1(unix\255w)108 156 Q +(ord\255rubout \(C\255w\))-.1 E F0 .364(Kill the w)144 168 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 +180 Q F1(unix\255\214lename\255rubout)108 192 Q F0 .167(Kill the w)144 +204 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 144 Q +-.1 F .166(ord boundaries.)-.1 F(The)5.166 E(killed te)144 216 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 156 Q F0 -(Delete all spaces and tabs around point.)144 168 Q F1(kill\255r)108 180 -Q(egion)-.18 E F0(Kill the te)144 192 Q(xt in the current re)-.15 E -(gion.)-.15 E F1(copy\255r)108 204 Q(egion\255as\255kill)-.18 E F0(Cop) -144 216 Q 2.5(yt)-.1 G(he te)-2.5 E(xt in the re)-.15 E +-2.5 E F1(delete\255horizontal\255space \(M\255\\\))108 228 Q F0 +(Delete all spaces and tabs around point.)144 240 Q F1(kill\255r)108 252 +Q(egion)-.18 E F0(Kill the te)144 264 Q(xt in the current re)-.15 E +(gion.)-.15 E F1(copy\255r)108 276 Q(egion\255as\255kill)-.18 E F0(Cop) +144 288 Q 2.5(yt)-.1 G(he te)-2.5 E(xt in the re)-.15 E (gion to the kill b)-.15 E(uf)-.2 E(fer)-.25 E(.)-.55 E F1 -(copy\255backward\255w)108 228 Q(ord)-.1 E F0(Cop)144 240 Q 4.801(yt)-.1 -G 2.301(he w)-4.801 F 2.301(ord before point to the kill b)-.1 F(uf)-.2 -E(fer)-.25 E 7.301(.T)-.55 G 2.301(he w)-7.301 F 2.3 -(ord boundaries are the same as)-.1 F F1(back-)4.8 E(ward\255w)144 252 Q -(ord)-.1 E F0(.)A F1(copy\255f)108 264 Q(orward\255w)-.25 E(ord)-.1 E F0 -(Cop)144 276 Q 4.507(yt)-.1 G 2.007(he w)-4.507 F 2.007(ord follo)-.1 F -2.007(wing point to the kill b)-.25 F(uf)-.2 E(fer)-.25 E 7.008(.T)-.55 -G 2.008(he w)-7.008 F 2.008(ord boundaries are the same as)-.1 F F1 -.25 -(fo)4.508 G -.37(r-).25 G(ward\255w)144 288 Q(ord)-.1 E F0(.)A F1 -(yank \(C\255y\))108 300 Q F0 -1(Ya)144 312 S +(copy\255backward\255w)108 300 Q(ord)-.1 E F0(Cop)144 312 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.301 +(ord boundaries are the same as)-.1 F F1(back-)4.801 E(ward\255w)144 324 +Q(ord)-.1 E F0(.)A F1(copy\255f)108 336 Q(orward\255w)-.25 E(ord)-.1 E +F0(Cop)144 348 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 360 Q(ord)-.1 E F0(.)A F1 +(yank \(C\255y\))108 372 Q F0 -1(Ya)144 384 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 324 Q F0 -(Rotate the kill ring, and yank the ne)144 336 Q 2.5(wt)-.25 G 2.5 +E F1(yank\255pop \(M\255y\))108 396 Q F0 +(Rotate the kill ring, and yank the ne)144 408 Q 2.5(wt)-.25 G 2.5 (op. Only)-2.5 F -.1(wo)2.5 G(rks follo).1 E(wing)-.25 E F1(yank)2.5 E -F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 352.8 Q -(guments)-.1 E(digit\255ar)108 364.8 Q +F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 424.8 Q +(guments)-.1 E(digit\255ar)108 436.8 Q (gument \(M\2550, M\2551, ..., M\255\255\))-.1 E F0 .367 -(Add this digit to the ar)144 376.8 R .367 +(Add this digit to the ar)144 448.8 R .367 (gument already accumulating, or start a ne)-.18 F 2.867(wa)-.25 G -.18 -(rg)-2.867 G 2.867(ument. M\255\255).18 F .366(starts a ne)2.867 F -.05 -(ga)-.15 G(-).05 E(ti)144 388.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G -(ument.).18 E F1(uni)108 400.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 -E F0 .778(This is another w)144 412.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 +(rg)-2.867 G 2.867(ument. M\255\255).18 F .367(starts a ne)2.867 F -.05 +(ga)-.15 G(-).05 E(ti)144 460.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G +(ument.).18 E F1(uni)108 472.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 +E F0 .779(This is another w)144 484.8 R .779(ay to specify an ar)-.1 F +3.279(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 -424.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144 -436.8 Q 1.17(wed by digits, e)-.25 F -.15(xe)-.15 G(cuting).15 E F1(uni) +496.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144 +508.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 448.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 520.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 1.23 -(neither a digit nor minus sign, the ar)144 460.8 R 1.23 +(neither a digit nor minus sign, the ar)144 532.8 R 1.23 (gument count for the ne)-.18 F 1.23(xt command is multiplied by four) --.15 F(.)-.55 E .823(The ar)144 472.8 R .823 +-.15 F(.)-.55 E .822(The ar)144 544.8 R .822 (gument count is initially one, so e)-.18 F -.15(xe)-.15 G .823 -(cuting this function the \214rst time mak).15 F .822(es the ar)-.1 F -(gument)-.18 E(count four)144 484.8 Q 2.5(,as)-.4 G(econd time mak)-2.5 +(cuting this function the \214rst time mak).15 F .823(es the ar)-.1 F +(gument)-.18 E(count four)144 556.8 Q 2.5(,as)-.4 G(econd time mak)-2.5 E(es the ar)-.1 E(gument count sixteen, and so on.)-.18 E F1(Completing) -87 501.6 Q(complete \(T)108 513.6 Q(AB\))-.9 E F0 1.137 -(Attempt to perform completion on the te)144 525.6 R 1.137 +87 573.6 Q(complete \(T)108 585.6 Q(AB\))-.9 E F0 1.137 +(Attempt to perform completion on the te)144 597.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 537.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 549.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 609.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 621.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 561.6 Q F1 -(possible\255completions \(M\255?\))108 573.6 Q F0 -(List the possible completions of the te)144 585.6 Q(xt before point.) --.15 E F1(insert\255completions \(M\255*\))108 597.6 Q F0 .783 -(Insert all completions of the te)144 609.6 R .783 +(duces a match, \214lename completion is attempted.)144 633.6 Q F1 +(possible\255completions \(M\255?\))108 645.6 Q F0 +(List the possible completions of the te)144 657.6 Q(xt before point.) +-.15 E F1(insert\255completions \(M\255*\))108 669.6 Q F0 .783 +(Insert all completions of the te)144 681.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 -621.6 Q F0(.)A F1(menu\255complete)108 633.6 Q F0 .928(Similar to)144 -645.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 +693.6 Q F0(.)A F1(menu\255complete)108 705.6 Q F0 .929(Similar to)144 +717.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 657.6 R 1.194(Repeated e)6.194 F -.15 -(xe)-.15 G 1.194(cution of).15 F F1(menu\255complete)3.694 E F0 1.193 -(steps through the list of possible)3.694 F .828 -(completions, inserting each match in turn.)144 669.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 681.6 R F1(bell\255style)3.227 E F0 -3.227(\)a)C .727(nd the original te)-3.227 F .727(xt is restored.)-.15 F -.727(An ar)5.727 F .727(gument of)-.18 F/F2 10/Times-Italic@0 SF(n)3.227 -E F0(mo)3.227 E -.15(ve)-.15 G(s).15 E F2(n)3.227 E F0 1.73 -(positions forw)144 693.6 R 1.73(ard in the list of matches; a ne)-.1 F --.05(ga)-.15 G(ti).05 E 2.03 -.15(ve a)-.25 H -.18(rg).15 G 1.73 -(ument may be used to mo).18 F 2.03 -.15(ve b)-.15 H(ackw).15 E(ard)-.1 -E(through the list.)144 705.6 Q(This command is intended to be bound to) -5 E F1 -.9(TA)2.5 G(B).9 E F0 2.5(,b)C(ut is unbound by def)-2.7 E -(ault.)-.1 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G -(mber 16).15 E(46)185.545 E 0 Cg EP +1.193(possible completions.)144 729.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(GNU Bash 4.4)72 768 Q +(2016 January 25)141.79 E(46)190.95 E 0 Cg EP %%Page: 47 47 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(menu\255complete\255backward)108 84 Q F0 .82(Identical to)144 96 R F1 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .829 +(completions, inserting each match in turn.)144 84 R .828 +(At the end of the list of completions, the bell is rung)5.828 F .727 +(\(subject to the setting of)144 96 R/F1 10/Times-Bold@0 SF +(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.228 E F0 1.73(positions forw)144 108 R 1.73 +(ard in the list of matches; a ne)-.1 F -.05(ga)-.15 G(ti).05 E 2.03 +-.15(ve a)-.25 H -.18(rg).15 G 1.73(ument may be used to mo).18 F 2.03 +-.15(ve b)-.15 H(ackw).15 E(ard)-.1 E(through the list.)144 120 Q +(This command is intended to be bound to)5 E F1 -.9(TA)2.5 G(B).9 E F0 +2.5(,b)C(ut is unbound by def)-2.7 E(ault.)-.1 E F1 +(menu\255complete\255backward)108 132 Q F0 .82(Identical to)144 144 R F1 (menu\255complete)3.32 E F0 3.32(,b)C .82(ut mo)-3.52 F -.15(ve)-.15 G 3.32(sb).15 G(ackw)-3.32 E .82 (ard through the list of possible completions, as if)-.1 F F1 -(menu\255complete)144 108 Q F0(had been gi)2.5 E -.15(ve)-.25 G 2.5(nan) +(menu\255complete)144 156 Q F0(had been gi)2.5 E -.15(ve)-.25 G 2.5(nan) .15 G -2.25 -.15(eg a)-2.5 H(ti).15 E .3 -.15(ve a)-.25 H -.18(rg).15 G 2.5(ument. This).18 F(command is unbound by def)2.5 E(ault.)-.1 E F1 -(delete\255char\255or\255list)108 120 Q F0 .234 -(Deletes the character under the cursor if not at the be)144 132 R .234 -(ginning or end of the line \(lik)-.15 F(e)-.1 E F1(delete\255char)2.735 -E F0(\).)A .425(If at the end of the line, beha)144 144 R -.15(ve)-.2 G +(delete\255char\255or\255list)108 168 Q F0 .234 +(Deletes the character under the cursor if not at the be)144 180 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 192 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 -156 Q(ault.)-.1 E F1(complete\255\214lename \(M\255/\))108 168 Q F0 -(Attempt \214lename completion on the te)144 180 Q(xt before point.)-.15 -E F1(possible\255\214lename\255completions \(C\255x /\))108 192 Q F0 -(List the possible completions of the te)144 204 Q -(xt before point, treating it as a \214lename.)-.15 E F1 -(complete\255user)108 216 Q(name \(M\255~\))-.15 E F0 -(Attempt completion on the te)144 228 Q -(xt before point, treating it as a username.)-.15 E F1(possible\255user) -108 240 Q(name\255completions \(C\255x ~\))-.15 E F0 +204 Q(ault.)-.1 E F1(complete\255\214lename \(M\255/\))108 216 Q F0 +(Attempt \214lename completion on the te)144 228 Q(xt before point.)-.15 +E F1(possible\255\214lename\255completions \(C\255x /\))108 240 Q F0 (List the possible completions of the te)144 252 Q -(xt before point, treating it as a username.)-.15 E F1(complete\255v)108 -264 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 276 Q -(xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E F1 -(possible\255v)108 288 Q(ariable\255completions \(C\255x $\))-.1 E F0 +(xt before point, treating it as a \214lename.)-.15 E F1 +(complete\255user)108 264 Q(name \(M\255~\))-.15 E F0 +(Attempt completion on the te)144 276 Q +(xt before point, treating it as a username.)-.15 E F1(possible\255user) +108 288 Q(name\255completions \(C\255x ~\))-.15 E F0 (List the possible completions of the te)144 300 Q +(xt before point, treating it as a username.)-.15 E F1(complete\255v)108 +312 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 324 Q (xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E F1 -(complete\255hostname \(M\255@\))108 312 Q F0 -(Attempt completion on the te)144 324 Q -(xt before point, treating it as a hostname.)-.15 E F1 -(possible\255hostname\255completions \(C\255x @\))108 336 Q F0 +(possible\255v)108 336 Q(ariable\255completions \(C\255x $\))-.1 E F0 (List the possible completions of the te)144 348 Q +(xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E F1 +(complete\255hostname \(M\255@\))108 360 Q F0 +(Attempt completion on the te)144 372 Q (xt before point, treating it as a hostname.)-.15 E F1 -(complete\255command \(M\255!\))108 360 Q F0 .58 -(Attempt completion on the te)144 372 R .581 -(xt before point, treating it as a command name.)-.15 F .581 -(Command comple-)5.581 F .715(tion attempts to match the te)144 384 R +(possible\255hostname\255completions \(C\255x @\))108 384 Q F0 +(List the possible completions of the te)144 396 Q +(xt before point, treating it as a hostname.)-.15 E F1 +(complete\255command \(M\255!\))108 408 Q F0 .581 +(Attempt completion on the te)144 420 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 432 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 396 Q -.15(xe)-.15 G +(\214nally e)144 444 Q -.15(xe)-.15 G (cutable \214lenames, in that order).15 E(.)-.55 E F1 -(possible\255command\255completions \(C\255x !\))108 408 Q F0 -(List the possible completions of the te)144 420 Q +(possible\255command\255completions \(C\255x !\))108 456 Q F0 +(List the possible completions of the te)144 468 Q (xt before point, treating it as a command name.)-.15 E F1 -(dynamic\255complete\255history \(M\255T)108 432 Q(AB\))-.9 E F0 .424 -(Attempt completion on the te)144 444 R .425 -(xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .425 +(dynamic\255complete\255history \(M\255T)108 480 Q(AB\))-.9 E F0 .425 +(Attempt completion on the te)144 492 R .425 +(xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .424 (ainst lines from the history list)-.05 F -(for possible completion matches.)144 456 Q F1(dab)108 468 Q(br)-.1 E --.15(ev)-.18 G(\255expand).15 E F0 .611 -(Attempt menu completion on the te)144 480 R .611 -(xt before point, comparing the te)-.15 F .61(xt ag)-.15 F .61 +(for possible completion matches.)144 504 Q F1(dab)108 516 Q(br)-.1 E +-.15(ev)-.18 G(\255expand).15 E F0 .61 +(Attempt menu completion on the te)144 528 R .611 +(xt before point, comparing the te)-.15 F .611(xt ag)-.15 F .611 (ainst lines from the his-)-.05 F -(tory list for possible completion matches.)144 492 Q F1 -(complete\255into\255braces \(M\255{\))108 504 Q F0 .4(Perform \214lena\ +(tory list for possible completion matches.)144 540 Q F1 +(complete\255into\255braces \(M\255{\))108 552 Q F0 .4(Perform \214lena\ me completion and insert the list of possible completions enclosed with\ -in braces so)144 516 R(the list is a)144 528 Q -.25(va)-.2 G +in braces so)144 564 R(the list is a)144 576 Q -.25(va)-.2 G (ilable to the shell \(see).25 E F1(Brace Expansion)2.5 E F0(abo)2.5 E --.15(ve)-.15 G(\).).15 E F1 -.25(Ke)87 544.8 S(yboard Macr).25 E(os)-.18 -E(start\255kbd\255macr)108 556.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) -.833 E F0(Be)144 568.8 Q(gin sa)-.15 E +-.15(ve)-.15 G(\).).15 E F1 -.25(Ke)87 592.8 S(yboard Macr).25 E(os)-.18 +E(start\255kbd\255macr)108 604.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) +.833 E F0(Be)144 616.8 Q(gin sa)-.15 E (ving the characters typed into the current k)-.2 E -.15(ey)-.1 G -(board macro.).15 E F1(end\255kbd\255macr)108 580.8 Q 2.5(o\()-.18 G -(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 592.8 Q +(board macro.).15 E F1(end\255kbd\255macr)108 628.8 Q 2.5(o\()-.18 G +(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 640.8 Q (ving the characters typed into the current k)-.2 E -.15(ey)-.1 G (board macro and store the de\214nition.).15 E F1 -(call\255last\255kbd\255macr)108 604.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5 -E F0(Re-e)144 616.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 628.8 Q -.15(ey)-.1 G(board.).15 E F1 -(print\255last\255kbd\255macr)108 640.8 Q 2.5(o\()-.18 G(\))-2.5 E F0 -(Print the last k)144 652.8 Q -.15(ey)-.1 G -(board macro de\214ned in a format suitable for the).15 E/F2 10 -/Times-Italic@0 SF(inputr)2.5 E(c)-.37 E F0(\214le.)2.5 E F1 -(Miscellaneous)87 669.6 Q -.18(re)108 681.6 S.18 E -(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.776 -(Read in the contents of the)144 693.6 R F2(inputr)4.276 E(c)-.37 E F0 -1.777(\214le, and incorporate an)4.276 F 4.277(yb)-.15 G 1.777 -(indings or v)-4.277 F 1.777(ariable assignments)-.25 F(found there.)144 -705.6 Q(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16) -.15 E(47)185.545 E 0 Cg EP +(call\255last\255kbd\255macr)108 652.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5 +E F0(Re-e)144 664.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 676.8 Q -.15(ey)-.1 G(board.).15 +E F1(print\255last\255kbd\255macr)108 688.8 Q 2.5(o\()-.18 G(\))-2.5 E +F0(Print the last k)144 700.8 Q -.15(ey)-.1 G +(board macro de\214ned in a format suitable for the).15 E F2(inputr)2.5 +E(c)-.37 E F0(\214le.)2.5 E(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 +E(47)190.95 E 0 Cg EP %%Page: 48 48 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(abort \(C\255g\))108 84 Q F0 3.249 -(Abort the current editing command and ring the terminal')144 96 R 5.748 -(sb)-.55 G 3.248(ell \(subject to the setting of)-5.748 F F1 -(bell\255style)144 108 Q F0(\).)A F1(do\255upper)108 120 Q(case\255v) --.18 E(ersion \(M\255a, M\255b, M\255)-.1 E/F2 10/Times-Italic@0 SF(x)A -F1 2.5(,.)C(..\))-2.5 E F0 1.755(If the meta\214ed character)144 132 R -F2(x)4.255 E F0 1.755(is lo)4.255 F 1.756 +SF(Miscellaneous)87 84 Q -.18(re)108 96 S.18 E +(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.777 +(Read in the contents of the)144 108 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 120 Q F1(abort \(C\255g\))108 132 Q F0 3.248 +(Abort the current editing command and ring the terminal')144 144 R +5.749(sb)-.55 G 3.249(ell \(subject to the setting of)-5.749 F F1 +(bell\255style)144 156 Q F0(\).)A F1(do\255upper)108 168 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 180 R F2(x)4.256 E F0 1.755 +(is lo)4.256 F 1.755 (wercase, run the command that is bound to the corresponding)-.25 F -(uppercase character)144 144 Q(.)-.55 E F1(pr)108 156 Q -(e\214x\255meta \(ESC\))-.18 E F0(Metafy the ne)144 168 Q +(uppercase character)144 192 Q(.)-.55 E F1(pr)108 204 Q +(e\214x\255meta \(ESC\))-.18 E F0(Metafy the ne)144 216 Q (xt character typed.)-.15 E/F3 9/Times-Bold@0 SF(ESC)5 E F1(f)2.25 E F0 (is equi)2.5 E -.25(va)-.25 G(lent to).25 E F1(Meta\255f)2.5 E F0(.)A F1 -(undo \(C\255_, C\255x C\255u\))108 180 Q F0 -(Incremental undo, separately remembered for each line.)144 192 Q F1 --2.29 -.18(re v)108 204 T(ert\255line \(M\255r\)).08 E F0 1.095 -(Undo all changes made to this line.)144 216 R 1.095(This is lik)6.095 F +(undo \(C\255_, C\255x C\255u\))108 228 Q F0 +(Incremental undo, separately remembered for each line.)144 240 Q F1 +-2.29 -.18(re v)108 252 T(ert\255line \(M\255r\)).08 E F0 1.095 +(Undo all changes made to this line.)144 264 R 1.095(This is lik)6.095 F 3.595(ee)-.1 G -.15(xe)-3.745 G 1.095(cuting the).15 F F1(undo)3.595 E F0 1.095(command enough times to)3.595 F -(return the line to its initial state.)144 228 Q F1 -(tilde\255expand \(M\255&\))108 240 Q F0(Perform tilde e)144 252 Q +(return the line to its initial state.)144 276 Q F1 +(tilde\255expand \(M\255&\))108 288 Q F0(Perform tilde e)144 300 Q (xpansion on the current w)-.15 E(ord.)-.1 E F1 -(set\255mark \(C\255@, M\255\))108 264 Q F0 -(Set the mark to the point.)144 276 Q(If a numeric ar)5 E +(set\255mark \(C\255@, M\255\))108 312 Q F0 +(Set the mark to the point.)144 324 Q(If a numeric ar)5 E (gument is supplied, the mark is set to that position.)-.18 E F1 -(exchange\255point\255and\255mark \(C\255x C\255x\))108 288 Q F0(Sw)144 -300 Q .282(ap the point with the mark.)-.1 F .283 +(exchange\255point\255and\255mark \(C\255x C\255x\))108 336 Q F0(Sw)144 +348 Q .283(ap the point with the mark.)-.1 F .283 (The current cursor position is set to the sa)5.283 F -.15(ve)-.2 G -2.783(dp).15 G .283(osition, and the old)-2.783 F(cursor position is sa) -144 312 Q -.15(ve)-.2 G 2.5(da).15 G 2.5(st)-2.5 G(he mark.)-2.5 E F1 -(character\255sear)108 324 Q(ch \(C\255]\))-.18 E F0 3.036(Ac)144 336 S -.536(haracter is read and point is mo)-3.036 F -.15(ve)-.15 G 3.035(dt) +2.782(dp).15 G .282(osition, and the old)-2.782 F(cursor position is sa) +144 360 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 372 Q(ch \(C\255]\))-.18 E F0 3.035(Ac)144 384 S +.535(haracter is read and point is mo)-3.035 F -.15(ve)-.15 G 3.035(dt) .15 G 3.035(ot)-3.035 G .535(he ne)-3.035 F .535 -(xt occurrence of that character)-.15 F 5.535(.A)-.55 G(ne)-2.5 E -.05 -(ga)-.15 G(ti).05 E .835 -.15(ve c)-.25 H(ount).15 E(searches for pre) -144 348 Q(vious occurrences.)-.25 E F1(character\255sear)108 360 Q -(ch\255backward \(M\255C\255]\))-.18 E F0 3.543(Ac)144 372 S 1.043 -(haracter is read and point is mo)-3.543 F -.15(ve)-.15 G 3.544(dt).15 G +(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) +144 396 Q(vious occurrences.)-.25 E F1(character\255sear)108 408 Q +(ch\255backward \(M\255C\255]\))-.18 E F0 3.544(Ac)144 420 S 1.044 +(haracter is read and point is mo)-3.544 F -.15(ve)-.15 G 3.544(dt).15 G 3.544(ot)-3.544 G 1.044(he pre)-3.544 F 1.044 -(vious occurrence of that character)-.25 F 6.044(.A)-.55 G(ne)-2.5 E +(vious occurrence of that character)-.25 F 6.043(.A)-.55 G(ne)-2.5 E -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G -(count searches for subsequent occurrences.)144 384 Q F1 -(skip\255csi\255sequence)108 396 Q F0 1.827 -(Read enough characters to consume a multi-k)144 408 R 2.126 -.15(ey s) --.1 H 1.826(equence such as those de\214ned for k).15 F -.15(ey)-.1 G -4.326(sl).15 G(ik)-4.326 E(e)-.1 E .79(Home and End.)144 420 R .791 -(Such sequences be)5.79 F .791 +(count searches for subsequent occurrences.)144 432 Q F1 +(skip\255csi\255sequence)108 444 Q F0 1.826 +(Read enough characters to consume a multi-k)144 456 R 2.126 -.15(ey s) +-.1 H 1.827(equence such as those de\214ned for k).15 F -.15(ey)-.1 G +4.327(sl).15 G(ik)-4.327 E(e)-.1 E .791(Home and End.)144 468 R .791 +(Such sequences be)5.791 F .791 (gin with a Control Sequence Indicator \(CSI\), usually ESC\255[.)-.15 F -.332(If this sequence is bound to "\\[", k)144 432 R -.15(ey)-.1 G 2.831 -(sp).15 G .331(roducing such sequences will ha)-2.831 F .631 -.15(ve n) --.2 H 2.831(oe).15 G -.25(ff)-2.831 G .331(ect unless e).25 F(xplic-) +.331(If this sequence is bound to "\\[", k)144 480 R -.15(ey)-.1 G 2.831 +(sp).15 G .331(roducing such sequences will ha)-2.831 F .632 -.15(ve n) +-.2 H 2.832(oe).15 G -.25(ff)-2.832 G .332(ect unless e).25 F(xplic-) -.15 E .026(itly bound to a readline command, instead of inserting stra\ -y characters into the editing b)144 444 R(uf)-.2 E(fer)-.25 E 5.026(.T) --.55 G(his)-5.026 E(is unbound by def)144 456 Q(ault, b)-.1 E +y characters into the editing b)144 492 R(uf)-.2 E(fer)-.25 E 5.026(.T) +-.55 G(his)-5.026 E(is unbound by def)144 504 Q(ault, b)-.1 E (ut usually bound to ESC\255[.)-.2 E F1(insert\255comment \(M\255#\))108 -468 Q F0 -.4(Wi)144 480 S .481(thout a numeric ar).4 F .481 -(gument, the v)-.18 F .481(alue of the readline)-.25 F F1 -(comment\255begin)2.981 E F0 -.25(va)2.981 G .48 -(riable is inserted at the).25 F(be)144 492 Q .244 -(ginning of the current line.)-.15 F .245(If a numeric ar)5.244 F .245 -(gument is supplied, this command acts as a toggle: if)-.18 F .322 -(the characters at the be)144 504 R .321 +516 Q F0 -.4(Wi)144 528 S .48(thout a numeric ar).4 F .48(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 540 Q .245 +(ginning of the current line.)-.15 F .245(If a numeric ar)5.245 F .244 +(gument is supplied, this command acts as a toggle: if)-.18 F .321 +(the characters at the be)144 552 R .321 (ginning of the line do not match the v)-.15 F .321(alue of)-.25 F F1 -(comment\255begin)2.821 E F0 2.821(,t)C .321(he v)-2.821 F .321(alue is) --.25 F .831(inserted, otherwise the characters in)144 516 R F1 -(comment\255begin)3.331 E F0 .832(are deleted from the be)3.331 F .832 -(ginning of the line.)-.15 F 1.469 -(In either case, the line is accepted as if a ne)144 528 R 1.468 -(wline had been typed.)-.25 F 1.468(The def)6.468 F 1.468(ault v)-.1 F -1.468(alue of)-.25 F F1(com-)3.968 E(ment\255begin)144 540 Q F0 .839 -(causes this command to mak)3.339 F 3.339(et)-.1 G .839 -(he current line a shell comment.)-3.339 F .84(If a numeric ar)5.84 F -(gu-)-.18 E(ment causes the comment character to be remo)144 552 Q -.15 +(comment\255begin)2.821 E F0 2.822(,t)C .322(he v)-2.822 F .322(alue is) +-.25 F .832(inserted, otherwise the characters in)144 564 R F1 +(comment\255begin)3.332 E F0 .831(are deleted from the be)3.332 F .831 +(ginning of the line.)-.15 F 1.468 +(In either case, the line is accepted as if a ne)144 576 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 588 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 +(gu-)-.18 E(ment causes the comment character to be remo)144 600 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 564 Q -(ord \(M\255g\))-.1 E F0 .792(The w)144 576 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 588 +(cuted by the shell.).15 E F1(glob\255complete\255w)108 612 Q +(ord \(M\255g\))-.1 E F0 .791(The w)144 624 R .791 +(ord before point is treated as a pattern for pathname e)-.1 F .792 +(xpansion, with an asterisk implicitly)-.15 F 2.5(appended. This)144 636 R(pattern is used to generate a list of matching \214lenames for possib\ -le completions.)2.5 E F1(glob\255expand\255w)108 600 Q(ord \(C\255x *\)) --.1 E F0 .175(The w)144 612 R .176 +le completions.)2.5 E F1(glob\255expand\255w)108 648 Q(ord \(C\255x *\)) +-.1 E F0 .176(The w)144 660 R .176 (ord before point is treated as a pattern for pathname e)-.1 F .176 (xpansion, and the list of matching \214le-)-.15 F .516 -(names is inserted, replacing the w)144 624 R 3.016(ord. If)-.1 F 3.016 +(names is inserted, replacing the w)144 672 R 3.016(ord. If)-.1 F 3.016 (an)3.016 G .516(umeric ar)-3.016 F .516 (gument is supplied, an asterisk is appended)-.18 F(before pathname e) -144 636 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\)) -108 648 Q F0 .923(The list of e)144 660 R .923(xpansions that w)-.15 F +144 684 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\)) +108 696 Q F0 .923(The list of e)144 708 R .923(xpansions that w)-.15 F .923(ould ha)-.1 F 1.223 -.15(ve b)-.2 H .923(een generated by).15 F F1 (glob\255expand\255w)3.423 E(ord)-.1 E F0 .923(is displayed, and)3.423 F -.872(the line is redra)144 672 R 3.372(wn. If)-.15 F 3.372(an)3.372 G +.872(the line is redra)144 720 R 3.372(wn. If)-.15 F 3.372(an)3.372 G .872(umeric ar)-3.372 F .872 -(gument is supplied, an asterisk is appended before pathname)-.18 F -.15 -(ex)144 684 S(pansion.).15 E F1(dump\255functions)108 696 Q F0 .626 -(Print all of the functions and their k)144 708 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 720 Q -(ay that it can be made part of an)-.1 E F2(inputr)2.5 E(c)-.37 E F0 -(\214le.)2.5 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G -(mber 16).15 E(48)185.545 E 0 Cg EP +(gument is supplied, an asterisk is appended before pathname)-.18 F +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(48)190.95 E 0 Cg EP %%Page: 49 49 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(dump\255v)108 84 Q(ariables)-.1 E F0 1.8 -(Print all of the settable readline v)144 96 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 108 R .304 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.15(ex)144 84 S +(pansion.).15 E/F1 10/Times-Bold@0 SF(dump\255functions)108 96 Q F0 .627 +(Print all of the functions and their k)144 108 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 +(ment is supplied, the output is formatted in such a w)144 120 Q +(ay that it can be made part of an)-.1 E/F2 10/Times-Italic@0 SF(inputr) +2.5 E(c)-.37 E F0(\214le.)2.5 E F1(dump\255v)108 132 Q(ariables)-.1 E F0 +1.799(Print all of the settable readline v)144 144 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 156 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 10/Times-Italic@0 SF(inputr) -144 120 Q(c)-.37 E F0(\214le.)2.5 E F1(dump\255macr)108 132 Q(os)-.18 E -F0 .593(Print all of the readline k)144 144 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 156 Q +(ay that it can be made part of an)-.1 F F2(inputr)144 168 Q(c)-.37 E F0 +(\214le.)2.5 E F1(dump\255macr)108 180 Q(os)-.18 E F0 .592 +(Print all of the readline k)144 192 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 204 Q .528(gument is supplied, the output is formatted in such a w)-.18 F .528 -(ay that it can be made part of an)-.1 F F2(inputr)3.028 E(c)-.37 E F0 -(\214le.)144 168 Q F1(display\255shell\255v)108 180 Q -(ersion \(C\255x C\255v\))-.1 E F0(Display v)144 192 Q +(ay that it can be made part of an)-.1 F F2(inputr)3.027 E(c)-.37 E F0 +(\214le.)144 216 Q F1(display\255shell\255v)108 228 Q +(ersion \(C\255x C\255v\))-.1 E F0(Display v)144 240 Q (ersion information about the current instance of)-.15 E F1(bash)2.5 E -F0(.)A F1(Pr)87 208.8 Q(ogrammable Completion)-.18 E F0 .147(When w)108 -220.8 R .147(ord completion is attempted for an ar)-.1 F .147 +F0(.)A F1(Pr)87 256.8 Q(ogrammable Completion)-.18 E F0 .146(When w)108 +268.8 R .147(ord completion is attempted for an ar)-.1 F .147 (gument to a command for which a completion speci\214cation \(a)-.18 F -F2(compspec)108 232.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) +F2(compspec)108 280.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) 3.829 G 1.329(iltin \(see).2 F/F3 9/Times-Bold@0 SF 1.329(SHELL B)3.829 -F(UIL)-.09 E 1.329(TIN COMMANDS)-.828 F F0(belo)3.579 E 1.329(w\), the) --.25 F(programmable completion f)108 244.8 Q(acilities are in)-.1 E -.2 -(vo)-.4 G -.1(ke).2 G(d.).1 E .498 -(First, the command name is identi\214ed.)108 261.6 R .498 -(If the command w)5.498 F .497 -(ord is the empty string \(completion attempted at)-.1 F .233(the be)108 -273.6 R .233(ginning of an empty line\), an)-.15 F 2.733(yc)-.15 G .233 +F(UIL)-.09 E 1.329(TIN COMMANDS)-.828 F F0(belo)3.579 E 1.328(w\), the) +-.25 F(programmable completion f)108 292.8 Q(acilities are in)-.1 E -.2 +(vo)-.4 G -.1(ke).2 G(d.).1 E .497 +(First, the command name is identi\214ed.)108 309.6 R .497 +(If the command w)5.497 F .498 +(ord is the empty string \(completion attempted at)-.1 F .234(the be)108 +321.6 R .233(ginning of an empty line\), an)-.15 F 2.733(yc)-.15 G .233 (ompspec de\214ned with the)-2.733 F F12.733 E F0 .233(option to) -2.733 F F1(complete)2.733 E F0 .233(is used.)2.733 F .234(If a comp-) -5.234 F .481(spec has been de\214ned for that command, the compspec is \ -used to generate the list of possible completions)108 285.6 R .822 -(for the w)108 297.6 R 3.322(ord. If)-.1 F .822(the command w)3.322 F -.823(ord is a full pathname, a compspec for the full pathname is search\ -ed for)-.1 F 2.867(\214rst. If)108 309.6 R .366(no compspec is found fo\ +2.733 F F1(complete)2.733 E F0 .233(is used.)2.733 F .233(If a comp-) +5.233 F .481(spec has been de\214ned for that command, the compspec is \ +used to generate the list of possible completions)108 333.6 R .823 +(for the w)108 345.6 R 3.323(ord. If)-.1 F .823(the command w)3.323 F +.822(ord is a full pathname, a compspec for the full pathname is search\ +ed for)-.1 F 2.866(\214rst. If)108 357.6 R .367(no compspec is found fo\ r the full pathname, an attempt is made to \214nd a compspec for the po\ -rtion)2.867 F(follo)108 321.6 Q .298(wing the \214nal slash.)-.25 F .298 -(If those searches do not result in a compspec, an)5.298 F 2.799(yc)-.15 -G .299(ompspec de\214ned with the)-2.799 F F12.799 E F0(option to) -108 333.6 Q F1(complete)2.5 E F0(is used as the def)2.5 E(ault.)-.1 E +rtion)2.866 F(follo)108 369.6 Q .299(wing the \214nal slash.)-.25 F .298 +(If those searches do not result in a compspec, an)5.299 F 2.798(yc)-.15 +G .298(ompspec de\214ned with the)-2.798 F F12.798 E F0(option to) +108 381.6 Q F1(complete)2.5 E F0(is used as the def)2.5 E(ault.)-.1 E .817(Once a compspec has been found, it is used to generate the list of\ - matching w)108 350.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 362.4 Q(ault)-.1 E F1(bash) + matching w)108 398.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 410.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 379.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 391.2 R .596 -(When the)5.596 F F13.096 E F0(or)3.095 E F13.095 E F0 .595 +E F1(Completing)2.5 E F0(is performed.)2.5 E .464 +(First, the actions speci\214ed by the compspec are used.)108 427.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 439.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 -(shell v)108 403.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0 -(is used to \214lter the matches.)2.25 E(An)108 420 Q 4.084(yc)-.15 G +(shell v)108 451.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0 +(is used to \214lter the matches.)2.25 E(An)108 468 Q 4.084(yc)-.15 G 1.584(ompletions speci\214ed by a pathname e)-4.084 F 1.584 (xpansion pattern to the)-.15 F F14.084 E F0 1.584 -(option are generated ne)4.084 F 4.084(xt. The)-.15 F -.1(wo)108 432 S -.555(rds generated by the pattern need not match the w).1 F .554 -(ord being completed.)-.1 F(The)5.554 E F3(GLOBIGNORE)3.054 E F0 .554 -(shell v)2.804 F(ari-)-.25 E -(able is not used to \214lter the matches, b)108 444 Q(ut the)-.2 E F3 -(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 460.8 Q -.32(xt, the string speci\214ed as the ar)-.15 F .32(gument to the)-.18 F -F12.82 E F0 .321(option is considered.)2.821 F .321 -(The string is \214rst split using the)5.321 F .413(characters in the) -108 472.8 R F3(IFS)2.913 E F0 .412(special v)2.663 F .412 +(option are generated ne)4.084 F 4.084(xt. The)-.15 F -.1(wo)108 480 S +.554(rds generated by the pattern need not match the w).1 F .555 +(ord being completed.)-.1 F(The)5.555 E F3(GLOBIGNORE)3.055 E F0 .555 +(shell v)2.805 F(ari-)-.25 E +(able is not used to \214lter the matches, b)108 492 Q(ut the)-.2 E F3 +(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 508.8 Q +.321(xt, the string speci\214ed as the ar)-.15 F .321(gument to the)-.18 +F F12.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 +520.8 R F3(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 484.8 R .091(xpansion, tilde e)-.15 F .092 -(xpansion, parameter and v)-.15 F .092(ariable e)-.25 F .092 -(xpansion, command substitution, and arith-)-.15 F 1.397(metic e)108 -496.8 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H +.413(Each w)5.412 F .413(ord is then e)-.1 F(xpanded)-.15 E .092 +(using brace e)108 532.8 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 +544.8 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H (nder).15 E F3(EXP)3.896 E(ANSION)-.666 E/F4 9/Times-Roman@0 SF(.)A F0 1.396(The results are split using the rules described)5.896 F(abo)108 -508.8 Q .509 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)2.709 G .209 -(rd Splitting).75 F F0 5.209(.T)C .209(he results of the e)-5.209 F .209 -(xpansion are pre\214x-matched ag)-.15 F .21(ainst the w)-.05 F .21 -(ord being com-)-.1 F(pleted, and the matching w)108 520.8 Q -(ords become the possible completions.)-.1 E 1.238 -(After these matches ha)108 537.6 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 F13.737 E -F0(and)3.737 E F13.737 E F0 3.375(options is in)108 549.6 R -.2 +556.8 Q .51 -.15(ve u)-.15 H(nder).15 E F1 -.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 568.8 Q +(ords become the possible completions.)-.1 E 1.237 +(After these matches ha)108 585.6 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 F13.738 E +F0(and)3.738 E F13.738 E F0 3.376(options is in)108 597.6 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 F3(COMP_LINE)5.876 E F4(,)A F3(COMP_POINT)5.626 E F4(,)A F3 -(COMP_KEY)108 561.6 Q F4(,)A F0(and)2.408 E F3(COMP_TYPE)2.658 E F0 -.25 -(va)2.408 G .157(riables are assigned v).25 F .157 -(alues as described abo)-.25 F .457 -.15(ve u)-.15 H(nder).15 E F1 .157 -(Shell V)2.657 F(ariables)-.92 E F0 5.157(.I)C(f)-5.157 E 3.485(as)108 -573.6 S .986(hell function is being in)-3.485 F -.2(vo)-.4 G -.1(ke).2 G +(d, the).1 F F3(COMP_LINE)5.875 E F4(,)A F3(COMP_POINT)5.625 E F4(,)A F3 +(COMP_KEY)108 609.6 Q F4(,)A F0(and)2.407 E F3(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 F1 .158 +(Shell V)2.658 F(ariables)-.92 E F0 5.158(.I)C(f)-5.158 E 3.486(as)108 +621.6 S .986(hell function is being in)-3.486 F -.2(vo)-.4 G -.1(ke).2 G .986(d, the).1 F F3(COMP_W)3.486 E(ORDS)-.09 E F0(and)3.236 E F3 (COMP_CW)3.486 E(ORD)-.09 E F0 -.25(va)3.236 G .986 -(riables are also set.).25 F(When)5.986 E .347 -(the function or command is in)108 585.6 R -.2(vo)-.4 G -.1(ke).2 G .347 -(d, the \214rst ar).1 F .346(gument \()-.18 F F1($1)A F0 2.846(\)i)C -2.846(st)-2.846 G .346(he name of the command whose ar)-2.846 F(guments) --.18 E .263(are being completed, the second ar)108 597.6 R .263 -(gument \()-.18 F F1($2)A F0 2.763(\)i)C 2.763(st)-2.763 G .264(he w) --2.763 F .264(ord being completed, and the third ar)-.1 F .264 -(gument \()-.18 F F1($3)A F0 2.764(\)i)C(s)-2.764 E .629(the w)108 609.6 -R .629(ord preceding the w)-.1 F .629 -(ord being completed on the current command line.)-.1 F .628 -(No \214ltering of the generated)5.629 F .714(completions ag)108 621.6 R -.714(ainst the w)-.05 F .714(ord being completed is performed; the func\ +(riables are also set.).25 F(When)5.985 E .346 +(the function or command is in)108 633.6 R -.2(vo)-.4 G -.1(ke).2 G .346 +(d, the \214rst ar).1 F .346(gument \()-.18 F F1($1)A F0 2.847(\)i)C +2.847(st)-2.847 G .347(he name of the command whose ar)-2.847 F(guments) +-.18 E .264(are being completed, the second ar)108 645.6 R .264 +(gument \()-.18 F F1($2)A F0 2.764(\)i)C 2.764(st)-2.764 G .264(he w) +-2.764 F .263(ord being completed, and the third ar)-.1 F .263 +(gument \()-.18 F F1($3)A F0 2.763(\)i)C(s)-2.763 E .628(the w)108 657.6 +R .628(ord preceding the w)-.1 F .629 +(ord being completed on the current command line.)-.1 F .629 +(No \214ltering of the generated)5.629 F .715(completions ag)108 669.6 R +.715(ainst the w)-.05 F .714(ord being completed is performed; the func\ tion or command has complete free-)-.1 F(dom in generating the matches.) -108 633.6 Q(An)108 650.4 Q 2.938(yf)-.15 G .437 -(unction speci\214ed with)-2.938 F F12.937 E F0 .437(is in)2.937 F +108 681.6 Q(An)108 698.4 Q 2.937(yf)-.15 G .437 +(unction speci\214ed with)-2.937 F F12.937 E F0 .437(is in)2.937 F -.2(vo)-.4 G -.1(ke).2 G 2.937<648c>.1 G 2.937(rst. The)-2.937 F .437 (function may use an)2.937 F 2.937(yo)-.15 G 2.937(ft)-2.937 G .437 -(he shell f)-2.937 F .437(acilities, including)-.1 F(the)108 662.4 Q F1 -(compgen)2.956 E F0 -.2(bu)2.956 G .456(iltin described belo).2 F 1.756 --.65(w, t)-.25 H 2.956(og).65 G .456(enerate the matches.)-2.956 F .457 +(he shell f)-2.937 F .438(acilities, including)-.1 F(the)108 710.4 Q F1 +(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 F3(COMPREPL)108 -674.4 Q(Y)-.828 E F0(array v)2.25 E(ariable, one per array element.)-.25 -E(Ne)108 691.2 Q .081(xt, an)-.15 F 2.581(yc)-.15 G .081 -(ommand speci\214ed with the)-2.581 F F12.581 E F0 .081 -(option is in)2.581 F -.2(vo)-.4 G -.1(ke).2 G 2.581(di).1 G 2.58(na) --2.581 G 2.58(ne)-2.58 G -.4(nv)-2.58 G .08(ironment equi).4 F -.25(va) --.25 G .08(lent to command sub-).25 F 2.858(stitution. It)108 703.2 R -.359(should print a list of completions, one per line, to the standard \ -output.)2.858 F .359(Backslash may be used)5.359 F(to escape a ne)108 -715.2 Q(wline, if necessary)-.25 E(.)-.65 E(GNU Bash 4.4)72 768 Q -(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(49)185.545 E 0 Cg EP +722.4 Q(Y)-.828 E F0(array v)2.25 E(ariable, one per array element.)-.25 +E(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(49)190.95 E 0 Cg EP %%Page: 50 50 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .377 -(After all of the possible completions are generated, an)108 84 R 2.877 -<798c>-.15 G .377(lter speci\214ed with the)-2.877 F/F1 10/Times-Bold@0 -SF2.876 E F0 .376(option is applied to the)2.876 F 3.181 -(list. The)108 96 R .681(\214lter is a pattern as used for pathname e) -3.181 F .681(xpansion; a)-.15 F F1(&)3.181 E F0 .682 -(in the pattern is replaced with the te)3.182 F .682(xt of)-.15 F .523 -(the w)108 108 R .523(ord being completed.)-.1 F 3.023(Al)5.523 G -(iteral)-3.023 E F1(&)3.023 E F0 .522 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(Ne)108 84 Q .08 +(xt, an)-.15 F 2.58(yc)-.15 G .08(ommand speci\214ed with the)-2.58 F/F1 +10/Times-Bold@0 SF2.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 96 R .359(should pr\ +int a list of completions, one per line, to the standard output.)2.859 F +.358(Backslash may be used)5.359 F(to escape a ne)108 108 Q +(wline, if necessary)-.25 E(.)-.65 E .376 +(After all of the possible completions are generated, an)108 124.8 R +2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F12.877 +E F0 .377(option is applied to the)2.877 F 3.182(list. The)108 136.8 R +.682(\214lter is a pattern as used for pathname e)3.182 F .681 +(xpansion; a)-.15 F F1(&)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 148.8 R .522(ord being completed.)-.1 F 3.022(Al)5.522 G +(iteral)-3.022 E F1(&)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 120 R -(An)5.849 E 3.349(yc)-.15 G .849 -(ompletion that matches the pattern will be remo)-3.349 F -.15(ve)-.15 G -3.35(df).15 G .85(rom the list.)-3.35 F 3.35(Al)5.85 G(eading)-3.35 E F1 -(!)3.35 E F0(ne)108 132 Q -.05(ga)-.15 G .764 +-.15 G 3.023(db).15 G(efore)-3.023 E .85(attempting a match.)108 160.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 F1(!)3.349 E F0(ne)108 172.8 Q -.05(ga)-.15 G .764 (tes the pattern; in this case an).05 F 3.264(yc)-.15 G .764 (ompletion not matching the pattern will be remo)-3.264 F -.15(ve)-.15 G -3.264(d. If).15 F(the)3.264 E F1(nocase-)3.264 E(match)108 144 Q F0 +3.264(d. If).15 F(the)3.265 E F1(nocase-)3.265 E(match)108 184.8 Q F0 (shell option is enabled, the match is performed without re)2.5 E -.05 (ga)-.15 G(rd to the case of alphabetic characters.).05 E(Finally)108 -160.8 Q 3.086(,a)-.65 G .886 -.15(ny p)-3.086 H .586(re\214x and suf).15 +201.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 F13.087 E F0(and)3.087 E F13.087 E F0 .587(options are added to each member of the com-) 3.087 F(pletion list, and the result is returned to the readline comple\ -tion code as the list of possible completions.)108 172.8 Q .247 -(If the pre)108 189.6 R .247(viously-applied actions do not generate an) +tion code as the list of possible completions.)108 213.6 Q .246 +(If the pre)108 230.4 R .247(viously-applied actions do not generate an) -.25 F 2.747(ym)-.15 G .247(atches, and the)-2.747 F F1 .247(\255o dir) -2.747 F(names)-.15 E F0 .247(option w)2.747 F .246(as supplied to)-.1 F -F1(complete)108 201.6 Q F0(when the compspec w)2.5 E -(as de\214ned, directory name completion is attempted.)-.1 E .461 -(If the)108 218.4 R F1 .462(\255o plusdirs)2.961 F F0 .462(option w) +2.747 F(names)-.15 E F0 .247(option w)2.747 F .247(as supplied to)-.1 F +F1(complete)108 242.4 Q F0(when the compspec w)2.5 E +(as de\214ned, directory name completion is attempted.)-.1 E .462 +(If the)108 259.2 R F1 .462(\255o plusdirs)2.962 F F0 .462(option w) 2.962 F .462(as supplied to)-.1 F F1(complete)2.962 E F0 .462 (when the compspec w)2.962 F .462(as de\214ned, directory name com-)-.1 -F(pletion is attempted and an)108 230.4 Q 2.5(ym)-.15 G -(atches are added to the results of the other actions.)-2.5 E .56 -(By def)108 247.2 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 259.2 R .631(The def)5.631 F(ault)-.1 -E F1(bash)3.131 E F0 .631 -(completions are not attempted, and the readline def)3.131 F .632 -(ault of \214le-)-.1 F .559(name completion is disabled.)108 271.2 R -.559(If the)5.559 F F1 .559(\255o bashdefault)3.059 F F0 .559(option w) -3.059 F .559(as supplied to)-.1 F F1(complete)3.058 E F0 .558 -(when the compspec)3.058 F -.1(wa)108 283.2 S 3.171(sd).1 G .671 -(e\214ned, the)-3.171 F F1(bash)3.171 E F0(def)3.171 E .671 +F(pletion is attempted and an)108 271.2 Q 2.5(ym)-.15 G +(atches are added to the results of the other actions.)-2.5 E .559 +(By def)108 288 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 300 R .632(The def)5.632 F(ault)-.1 E +F1(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 312 R .558 +(If the)5.558 F F1 .559(\255o bashdefault)3.059 F F0 .559(option w)3.059 +F .559(as supplied to)-.1 F F1(complete)3.059 E F0 .559 +(when the compspec)3.059 F -.1(wa)108 324 S 3.172(sd).1 G .672 +(e\214ned, the)-3.172 F F1(bash)3.172 E F0(def)3.172 E .671 (ault completions are attempted if the compspec generates no matches.) --.1 F .672(If the)5.672 F F13.172 E(default)108 295.2 Q F0 1.207 -(option w)3.707 F 1.207(as supplied to)-.1 F F1(complete)3.707 E F0 +-.1 F .671(If the)5.671 F F13.171 E(default)108 336 Q F0 1.207 +(option w)3.706 F 1.207(as supplied to)-.1 F F1(complete)3.707 E F0 1.207(when the compspec w)3.707 F 1.207(as de\214ned, readline')-.1 F -3.707(sd)-.55 G(ef)-3.707 E 1.206(ault completion)-.1 F -(will be performed if the compspec \(and, if attempted, the def)108 -307.2 Q(ault)-.1 E F1(bash)2.5 E F0(completions\) generate no matches.) -2.5 E .245(When a compspec indicates that directory name completion is \ -desired, the programmable completion func-)108 324 R .633(tions force r\ -eadline to append a slash to completed names which are symbolic links t\ -o directories, subject)108 336 R 2.761(to the v)108 348 R 2.761 -(alue of the)-.25 F F1(mark\255dir)5.261 E(ectories)-.18 E F0 2.761 -(readline v)5.261 F 2.761(ariable, re)-.25 F -.05(ga)-.15 G 2.762 -(rdless of the setting of the).05 F F1(mark-sym-)5.262 E(link)108 360 Q -(ed\255dir)-.1 E(ectories)-.18 E F0(readline v)2.5 E(ariable.)-.25 E -.191(There is some support for dynamically modifying completions.)108 -376.8 R .19(This is most useful when used in combina-)5.191 F 1.33 -(tion with a def)108 388.8 R 1.33(ault completion speci\214ed with)-.1 F +3.707(sd)-.55 G(ef)-3.707 E 1.207(ault completion)-.1 F +(will be performed if the compspec \(and, if attempted, the def)108 348 +Q(ault)-.1 E F1(bash)2.5 E F0(completions\) generate no matches.)2.5 E +.245(When a compspec indicates that directory name completion is desire\ +d, the programmable completion func-)108 364.8 R .632(tions force readl\ +ine to append a slash to completed names which are symbolic links to di\ +rectories, subject)108 376.8 R 2.762(to the v)108 388.8 R 2.762 +(alue of the)-.25 F F1(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 F1(mark-sym-)5.261 E(link)108 400.8 +Q(ed\255dir)-.1 E(ectories)-.18 E F0(readline v)2.5 E(ariable.)-.25 E +.19(There is some support for dynamically modifying completions.)108 +417.6 R .191(This is most useful when used in combina-)5.191 F 1.33 +(tion with a def)108 429.6 R 1.33(ault completion speci\214ed with)-.1 F F1 1.33(complete -D)3.83 F F0 6.33(.I)C(t')-6.33 E 3.83(sp)-.55 G 1.33 (ossible for shell functions e)-3.83 F -.15(xe)-.15 G 1.33(cuted as).15 F .93(completion handlers to indicate that completion should be retried\ - by returning an e)108 400.8 R .93(xit status of 124.)-.15 F .93(If a) + by returning an e)108 441.6 R .93(xit status of 124.)-.15 F .93(If a) 5.93 F .1(shell function returns 124, and changes the compspec associat\ -ed with the command on which completion is)108 412.8 R .666 -(being attempted \(supplied as the \214rst ar)108 424.8 R .665 -(gument when the function is e)-.18 F -.15(xe)-.15 G .665 -(cuted\), programmable completion).15 F .083(restarts from the be)108 -436.8 R .084(ginning, with an attempt to \214nd a ne)-.15 F 2.584(wc) --.25 G .084(ompspec for that command.)-2.584 F .084(This allo)5.084 F -.084(ws a set of)-.25 F(completions to be b)108 448.8 Q(uilt dynamicall\ +ed with the command on which completion is)108 453.6 R .665 +(being attempted \(supplied as the \214rst ar)108 465.6 R .666 +(gument when the function is e)-.18 F -.15(xe)-.15 G .666 +(cuted\), programmable completion).15 F .084(restarts from the be)108 +477.6 R .084(ginning, with an attempt to \214nd a ne)-.15 F 2.584(wc) +-.25 G .084(ompspec for that command.)-2.584 F .083(This allo)5.083 F +.083(ws a set of)-.25 F(completions to be b)108 489.6 Q(uilt dynamicall\ y as completion is attempted, rather than being loaded all at once.)-.2 -E -.15(Fo)108 465.6 S 2.637(ri).15 G .137 -(nstance, assuming that there is a library of compspecs, each k)-2.637 F +E -.15(Fo)108 506.4 S 2.636(ri).15 G .137 +(nstance, assuming that there is a library of compspecs, each k)-2.636 F .137(ept in a \214le corresponding to the name of)-.1 F -(the command, the follo)108 477.6 Q(wing def)-.25 E +(the command, the follo)108 518.4 Q(wing def)-.25 E (ault completion function w)-.1 E(ould load completions dynamically:)-.1 -E/F2 10/Courier@0 SF(_completion_loader\(\))108 494.4 Q({)108 506.4 Q 6 -(.")144 518.4 S +E/F2 10/Courier@0 SF(_completion_loader\(\))108 535.2 Q({)108 547.2 Q 6 +(.")144 559.2 S (/etc/bash_completion.d/$1.sh" >/dev/null 2>&1 && return 124)-6 E(})108 -530.4 Q(complete -D -F _completion_loader -o bashdefault -o default)108 -542.4 Q/F3 10.95/Times-Bold@0 SF(HIST)72 571.2 Q(OR)-.197 E(Y)-.383 E F0 -.371(When the)108 583.2 R F1 .371(\255o history)2.871 F F0 .371 -(option to the)2.871 F F1(set)2.872 E F0 -.2(bu)2.872 G .372 -(iltin is enabled, the shell pro).2 F .372(vides access to the)-.15 F/F4 -10/Times-Italic@0 SF .372(command history)2.872 F F0(,)A .305 -(the list of commands pre)108 595.2 R .305(viously typed.)-.25 F .305 -(The v)5.305 F .304(alue of the)-.25 F/F5 9/Times-Bold@0 SF(HISTSIZE) -2.804 E F0 -.25(va)2.554 G .304(riable is used as the number of com-).25 -F .429(mands to sa)108 607.2 R .729 -.15(ve i)-.2 H 2.929(nah).15 G .429 -(istory list.)-2.929 F .429(The te)5.429 F .429(xt of the last)-.15 F F5 -(HISTSIZE)2.93 E F0 .43(commands \(def)2.68 F .43(ault 500\) is sa)-.1 F --.15(ve)-.2 G 2.93(d. The).15 F(shell)2.93 E .287 +571.2 Q(complete -D -F _completion_loader -o bashdefault -o default)108 +583.2 Q/F3 10.95/Times-Bold@0 SF(HIST)72 612 Q(OR)-.197 E(Y)-.383 E F0 +.372(When the)108 624 R F1 .372(\255o history)2.872 F F0 .372 +(option to the)2.872 F F1(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/F4 +10/Times-Italic@0 SF .371(command history)2.871 F F0(,)A .304 +(the list of commands pre)108 636 R .304(viously typed.)-.25 F .304 +(The v)5.304 F .304(alue of the)-.25 F/F5 9/Times-Bold@0 SF(HISTSIZE) +2.804 E F0 -.25(va)2.554 G .305(riable is used as the number of com-).25 +F .43(mands to sa)108 648 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 F5 +(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 .287 (stores each command in the history list prior to parameter and v)108 -619.2 R .287(ariable e)-.25 F .287(xpansion \(see)-.15 F F5(EXP)2.787 E -(ANSION)-.666 E F0(abo)2.537 E -.15(ve)-.15 G(\)).15 E -.2(bu)108 631.2 -S 4.065(ta).2 G 1.565(fter history e)-4.065 F 1.565 +660 R .287(ariable e)-.25 F .287(xpansion \(see)-.15 F F5(EXP)2.787 E +(ANSION)-.666 E F0(abo)2.537 E -.15(ve)-.15 G(\)).15 E -.2(bu)108 672 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 F5(HISTIGNORE)4.065 E F0 -(and)3.816 E F5(HISTCONTR)108 643.2 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.) -A F0 .082 +(and)3.815 E F5(HISTCONTR)108 684 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.)A +F0 .082 (On startup, the history is initialized from the \214le named by the v) -108 660 R(ariable)-.25 E F5(HISTFILE)2.582 E F0(\(def)2.332 E(ault)-.1 E -F4(~/.bash_history)2.582 E F0(\).)A .315(The \214le named by the v)108 -672 R .315(alue of)-.25 F F5(HISTFILE)2.815 E F0 .315 +108 700.8 R(ariable)-.25 E F5(HISTFILE)2.583 E F0(\(def)2.333 E(ault)-.1 +E F4(~/.bash_history)2.583 E F0(\).)A .315(The \214le named by the v)108 +712.8 R .315(alue of)-.25 F F5(HISTFILE)2.815 E F0 .315 (is truncated, if necessary)2.565 F 2.815(,t)-.65 G 2.815(oc)-2.815 G -.315(ontain no more than the number of)-2.815 F .659 -(lines speci\214ed by the v)108 684 R .659(alue of)-.25 F F5 +.315(ontain no more than the number of)-2.815 F .658 +(lines speci\214ed by the v)108 724.8 R .658(alue of)-.25 F F5 (HISTFILESIZE)3.158 E F6(.)A F0(If)5.158 E F1(HISTFILESIZE)3.158 E F0 -.658(is unset, or set to null, a non-numeric)3.158 F -.25(va)108 696 S -.142(lue, or a numeric v).25 F .142 -(alue less than zero, the history \214le is not truncated.)-.25 F .142 -(When the history \214le is read, lines)5.142 F(be)108 708 Q 1.605 -(ginning with the history comment character follo)-.15 F 1.604 -(wed immediately by a digit are interpreted as time-)-.25 F .098 -(stamps for the preceding history line.)108 720 R .098 -(These timestamps are optionally displayed depending on the v)5.098 F -.098(alue of)-.25 F(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 -G(mber 16).15 E(50)185.545 E 0 Cg EP +.659(is unset, or set to null, a non-numeric)3.158 F(GNU Bash 4.4)72 768 +Q(2016 January 25)141.79 E(50)190.95 E 0 Cg EP %%Page: 51 51 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(the)108 84 Q/F1 9 -/Times-Bold@0 SF(HISTTIMEFORMA)3.559 E(T)-.855 E F0 -.25(va)3.309 G -3.559(riable. When).25 F 3.559(as)3.559 G 1.059 -(hell with history enabled e)-3.559 F 1.059(xits, the last)-.15 F F1 -($HISTSIZE)3.559 E F0 1.058(lines are)3.309 F .158 -(copied from the history list to)108 96 R F1($HISTFILE)2.658 E/F2 9 -/Times-Roman@0 SF(.)A F0 .158(If the)4.658 F/F3 10/Times-Bold@0 SF -(histappend)2.658 E F0 .159 -(shell option is enabled \(see the description of)2.659 F F3(shopt)108 -108 Q F0(under)2.582 E F1 .082(SHELL B)2.582 F(UIL)-.09 E .082 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.25(va)108 84 S +.142(lue, or a numeric v).25 F .142 +(alue less than zero, the history \214le is not truncated.)-.25 F .142 +(When the history \214le is read, lines)5.142 F(be)108 96 Q 1.604 +(ginning with the history comment character follo)-.15 F 1.604 +(wed immediately by a digit are interpreted as time-)-.25 F .098 +(stamps for the preceding history line.)108 108 R .098 +(These timestamps are optionally displayed depending on the v)5.098 F +.098(alue of)-.25 F(the)108 120 Q/F1 9/Times-Bold@0 SF(HISTTIMEFORMA) +3.558 E(T)-.855 E F0 -.25(va)3.309 G 3.559(riable. When).25 F 3.559(as) +3.559 G 1.059(hell with history enabled e)-3.559 F 1.059(xits, the last) +-.15 F F1($HISTSIZE)3.559 E F0 1.059(lines are)3.309 F .159 +(copied from the history list to)108 132 R F1($HISTFILE)2.659 E/F2 9 +/Times-Roman@0 SF(.)A F0 .159(If the)4.659 F/F3 10/Times-Bold@0 SF +(histappend)2.658 E F0 .158 +(shell option is enabled \(see the description of)2.658 F F3(shopt)108 +144 Q F0(under)2.581 E F1 .081(SHELL B)2.581 F(UIL)-.09 E .081 (TIN COMMANDS)-.828 F F0(belo)2.332 E .082 (w\), the lines are appended to the history \214le, otherwise the)-.25 F -.196(history \214le is o)108 120 R -.15(ve)-.15 G 2.696(rwritten. If).15 -F F1(HISTFILE)2.696 E F0 .197(is unset, or if the history \214le is unw\ -ritable, the history is not sa)2.446 F -.15(ve)-.2 G(d.).15 E .584 -(If the)108 132 R F1(HISTTIMEFORMA)3.084 E(T)-.855 E F0 -.25(va)2.834 G +.197(history \214le is o)108 156 R -.15(ve)-.15 G 2.697(rwritten. If).15 +F F1(HISTFILE)2.697 E F0 .196(is unset, or if the history \214le is unw\ +ritable, the history is not sa)2.447 F -.15(ve)-.2 G(d.).15 E .583 +(If the)108 168 R F1(HISTTIMEFORMA)3.083 E(T)-.855 E F0 -.25(va)2.834 G .584(riable is set, time stamps are written to the history \214le, mark) -.25 F .583(ed with the his-)-.1 F 1.147(tory comment character)108 144 R -3.647(,s)-.4 G 3.647(ot)-3.647 G(he)-3.647 E 3.647(ym)-.15 G 1.147 -(ay be preserv)-3.647 F 1.147(ed across shell sessions.)-.15 F 1.148 -(This uses the history comment)6.148 F 1.377 -(character to distinguish timestamps from other history lines.)108 156 R -1.377(After sa)6.377 F 1.377(ving the history)-.2 F 3.876(,t)-.65 G -1.376(he history \214le is)-3.876 F .756 -(truncated to contain no more than)108 168 R F1(HISTFILESIZE)3.257 E F0 +.25 F .584(ed with the his-)-.1 F 1.148(tory comment character)108 180 R +3.648(,s)-.4 G 3.648(ot)-3.648 G(he)-3.648 E 3.648(ym)-.15 G 1.147 +(ay be preserv)-3.648 F 1.147(ed across shell sessions.)-.15 F 1.147 +(This uses the history comment)6.147 F 1.376 +(character to distinguish timestamps from other history lines.)108 192 R +1.377(After sa)6.377 F 1.377(ving the history)-.2 F 3.877(,t)-.65 G +1.377(he history \214le is)-3.877 F .757 +(truncated to contain no more than)108 204 R F1(HISTFILESIZE)3.257 E F0 3.257(lines. If)3.007 F F1(HISTFILESIZE)3.257 E F0 .757 -(is unset, or set to null, a non-)3.007 F(numeric v)108 180 Q +(is unset, or set to null, a non-)3.007 F(numeric v)108 216 Q (alue, or a numeric v)-.25 E -(alue less than zero, the history \214le is not truncated.)-.25 E .299 -(The b)108 196.8 R .299(uiltin command)-.2 F F3(fc)2.799 E F0(\(see) -2.799 E F1 .299(SHELL B)2.799 F(UIL)-.09 E .299(TIN COMMANDS)-.828 F F0 -(belo)2.549 E .298(w\) may be used to list or edit and re-e)-.25 F -.15 -(xe)-.15 G(-).15 E .471(cute a portion of the history list.)108 208.8 R -(The)5.471 E F3(history)2.971 E F0 -.2(bu)2.971 G .472 -(iltin may be used to display or modify the history list and).2 F .002 -(manipulate the history \214le.)108 220.8 R .001 -(When using command-line editing, search commands are a)5.002 F -.25(va) --.2 G .001(ilable in each edit-).25 F(ing mode that pro)108 232.8 Q -(vide access to the history list.)-.15 E 1.485(The shell allo)108 249.6 -R 1.485(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486 +(alue less than zero, the history \214le is not truncated.)-.25 E .298 +(The b)108 232.8 R .298(uiltin command)-.2 F F3(fc)2.798 E F0(\(see) +2.798 E F1 .298(SHELL B)2.798 F(UIL)-.09 E .298(TIN COMMANDS)-.828 F F0 +(belo)2.549 E .299(w\) may be used to list or edit and re-e)-.25 F -.15 +(xe)-.15 G(-).15 E .472(cute a portion of the history list.)108 244.8 R +(The)5.472 E F3(history)2.972 E F0 -.2(bu)2.972 G .471 +(iltin may be used to display or modify the history list and).2 F .001 +(manipulate the history \214le.)108 256.8 R .001 +(When using command-line editing, search commands are a)5.001 F -.25(va) +-.2 G .002(ilable in each edit-).25 F(ing mode that pro)108 268.8 Q +(vide access to the history list.)-.15 E 1.486(The shell allo)108 285.6 +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 261.6 Q F0 -.25(va)2.708 G -.458(riables may be set to cause the shell to sa).25 F .757 -.15(ve o) --.2 H .457(nly a subset of the commands entered.).15 F(The)5.457 E F3 -(cmdhist)108 273.6 Q F0 .75 +-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 297.6 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 F3 +(cmdhist)108 309.6 Q F0 .75 (shell option, if enabled, causes the shell to attempt to sa)3.25 F 1.05 -.15(ve e)-.2 H .75(ach line of a multi-line command in).15 F 1.077 -(the same history entry)108 285.6 R 3.577(,a)-.65 G 1.077 +(the same history entry)108 321.6 R 3.577(,a)-.65 G 1.077 (dding semicolons where necessary to preserv)-3.577 F 3.577(es)-.15 G -1.077(yntactic correctness.)-3.577 F(The)6.077 E F3(lithist)3.576 E F0 -.373(shell option causes the shell to sa)108 297.6 R .674 -.15(ve t)-.2 -H .374(he command with embedded ne).15 F .374 -(wlines instead of semicolons.)-.25 F .374(See the)5.374 F .319 -(description of the)108 309.6 R F3(shopt)2.819 E F0 -.2(bu)2.819 G .318 +1.077(yntactic correctness.)-3.577 F(The)6.077 E F3(lithist)3.577 E F0 +.374(shell option causes the shell to sa)108 333.6 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 345.6 R F3(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 -321.6 Q/F4 10.95/Times-Bold@0 SF(HIST)72 338.4 Q(OR)-.197 E 2.738(YE) --.383 G(XP)-2.738 E(ANSION)-.81 E F0 .61(The shell supports a history e) -108 350.4 R .611(xpansion feature that is similar to the history e)-.15 -F .611(xpansion in)-.15 F F3(csh.)3.111 E F0 .611(This section)5.611 F -.871(describes what syntax features are a)108 362.4 R -.25(va)-.2 G -3.371(ilable. This).25 F .871(feature is enabled by def)3.371 F .87 -(ault for interacti)-.1 F 1.17 -.15(ve s)-.25 H .87(hells, and).15 F -2.013(can be disabled using the)108 374.4 R F3(+H)4.514 E F0 2.014 +357.6 Q/F4 10.95/Times-Bold@0 SF(HIST)72 374.4 Q(OR)-.197 E 2.738(YE) +-.383 G(XP)-2.738 E(ANSION)-.81 E F0 .611 +(The shell supports a history e)108 386.4 R .611 +(xpansion feature that is similar to the history e)-.15 F .61 +(xpansion in)-.15 F F3(csh.)3.11 E F0 .61(This section)5.61 F .87 +(describes what syntax features are a)108 398.4 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 410.4 R F3(+H)4.514 E F0 2.014 (option to the)4.514 F F3(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 -(TIN COMMANDS)-.828 F F0(belo)108 386.4 Q 2.5(w\). Non-interacti)-.25 F +(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 422.4 Q 2.5(w\). Non-interacti)-.25 F .3 -.15(ve s)-.25 H(hells do not perform history e).15 E -(xpansion by def)-.15 E(ault.)-.1 E 1.306(History e)108 403.2 R 1.306 +(xpansion by def)-.15 E(ault.)-.1 E 1.305(History e)108 439.2 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 415.2 R .209(guments to a pre)-.18 F .21 + input stream, making it easy to repeat)-.1 F .21 +(commands, insert the ar)108 451.2 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 427.2 Q(.)-.65 E 1.164(History e)108 -444 R 1.163(xpansion is performed immediately after a complete line is \ -read, before the shell breaks it into)-.15 F -.1(wo)108 456 S 3.2 +F(vious)-.25 E(commands quickly)108 463.2 Q(.)-.65 E 1.163(History e)108 +480 R 1.163(xpansion is performed immediately after a complete line is \ +read, before the shell breaks it into)-.15 F -.1(wo)108 492 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 468 R 1.868(second is to select porti\ -ons 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 480 R/F5 10 -/Times-Italic@0 SF -.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 F5(wor) -3.163 E(ds)-.37 E F0 5.663(.V)C(arious)-6.773 E F5(modi\214er)108 492 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 504 R -.15(ve) --.25 G(ral).15 E F5(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 516 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 528 Q F3 -(!)3.51 E F0 .177(by def)3.51 F 2.677(ault. Only)-.1 F .177 -(backslash \()2.677 F F3(\\).833 E F0 2.678(\)a).833 G .178 -(nd single quotes can quote the history e)-2.678 F .178 -(xpansion character)-.15 F 2.678(,b)-.4 G .178(ut the his-)-2.878 F .67 -(tory e)108 540 R .67(xpansion character is also treated as quoted if i\ +3.2 F 4.367(substitution. The)108 504 R 1.868(second is to select porti\ +ons 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 516 R/F5 10 +/Times-Italic@0 SF -.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 F5(wor) +3.162 E(ds)-.37 E F0 5.662(.V)C(arious)-6.772 E F5(modi\214er)108 528 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 540 R -.15(ve) +-.25 G(ral).15 E F5(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 552 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 564 Q F3 +(!)3.511 E F0 .178(by def)3.511 F 2.678(ault. Only)-.1 F .178 +(backslash \()2.678 F F3(\\).833 E F0 2.678(\)a).833 G .178 +(nd single quotes can quote the history e)-2.678 F .177 +(xpansion character)-.15 F 2.677(,b)-.4 G .177(ut the his-)-2.877 F .67 +(tory e)108 576 R .67(xpansion character is also treated as quoted if i\ t immediately precedes the closing double quote in a)-.15 F -(double-quoted string.)108 552 Q(Se)108 568.8 Q -.15(ve)-.25 G .03 +(double-quoted string.)108 588 Q(Se)108 604.8 Q -.15(ve)-.25 G .03 (ral characters inhibit history e).15 F .03 (xpansion if found immediately follo)-.15 F .03(wing the history e)-.25 -F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 580.8 T -3.163(ni).25 G 3.163(fi)-3.163 G 3.162(ti)-3.163 G 3.162(su)-3.162 G +F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 616.8 T +3.162(ni).25 G 3.162(fi)-3.162 G 3.162(ti)-3.162 G 3.162(su)-3.162 G .662(nquoted: space, tab, ne)-3.162 F .662(wline, carriage return, and) -.25 F F3(=)3.162 E F0 5.662(.I)C 3.162(ft)-5.662 G(he)-3.162 E F3 -(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F3(\()3.162 E -F0(will also inhibit e)108 592.8 Q(xpansion.)-.15 E(Se)108 609.6 Q -.15 -(ve)-.25 G .109(ral shell options settable with the).15 F F3(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.143(If the)108 621.6 R F3 +(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F3(\()3.163 E +F0(will also inhibit e)108 628.8 Q(xpansion.)-.15 E(Se)108 645.6 Q -.15 +(ve)-.25 G .11(ral shell options settable with the).15 F F3(shopt)2.61 E +F0 -.2(bu)2.61 G .109(iltin may be used to tailor the beha).2 F .109 +(vior of history e)-.2 F(xpansion.)-.15 E 1.142(If the)108 657.6 R F3 (histv)3.643 E(erify)-.1 E F0 1.143 (shell option is enabled \(see the description of the)3.643 F F3(shopt) 3.643 E F0 -.2(bu)3.643 G 1.143(iltin belo).2 F 1.143(w\), and)-.25 F F3 --.18(re)3.643 G(adline).18 E F0(is)3.642 E .461(being used, history sub\ -stitutions are not immediately passed to the shell parser)108 633.6 R -5.461(.I)-.55 G .461(nstead, the e)-5.461 F .461(xpanded line)-.15 F -1.516(is reloaded into the)108 645.6 R F3 -.18(re)4.016 G(adline).18 E -F0 1.516(editing b)4.016 F(uf)-.2 E 1.516 -(fer for further modi\214cation.)-.25 F(If)6.516 E F3 -.18(re)4.015 G -(adline).18 E F0 1.515(is being used, and the)4.015 F F3(histr)108 657.6 -Q(eedit)-.18 E F0 1.202(shell option is enabled, a f)3.702 F 1.202 +-.18(re)3.643 G(adline).18 E F0(is)3.643 E .461(being used, history sub\ +stitutions are not immediately passed to the shell parser)108 669.6 R +5.46(.I)-.55 G .46(nstead, the e)-5.46 F .46(xpanded line)-.15 F 1.515 +(is reloaded into the)108 681.6 R F3 -.18(re)4.015 G(adline).18 E F0 +1.515(editing b)4.015 F(uf)-.2 E 1.516(fer for further modi\214cation.) +-.25 F(If)6.516 E F3 -.18(re)4.016 G(adline).18 E F0 1.516 +(is being used, and the)4.016 F F3(histr)108 693.6 Q(eedit)-.18 E F0 +1.202(shell option is enabled, a f)3.702 F 1.202 (ailed history substitution will be reloaded into the)-.1 F F3 -.18(re) -3.702 G(adline).18 E F0(editing)3.702 E -.2(bu)108 669.6 S -.25(ff).2 G -1.161(er for correction.).25 F(The)6.161 E F33.661 E F0 1.161 -(option to the)3.661 F F3(history)3.661 E F0 -.2(bu)3.661 G 1.16 -(iltin command may be used to see what a history).2 F -.15(ex)108 681.6 -S .055(pansion will do before using it.).15 F(The)5.055 E F32.555 -E F0 .055(option to the)2.555 F F3(history)2.556 E F0 -.2(bu)2.556 G -.056(iltin may be used to add commands to the).2 F -(end of the history list without actually e)108 693.6 Q -.15(xe)-.15 G +3.702 G(adline).18 E F0(editing)3.702 E -.2(bu)108 705.6 S -.25(ff).2 G +1.16(er for correction.).25 F(The)6.16 E F33.66 E F0 1.16 +(option to the)3.66 F F3(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 717.6 +S .056(pansion will do before using it.).15 F(The)5.056 E F32.556 +E F0 .056(option to the)2.556 F F3(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 729.6 Q -.15(xe)-.15 G (cuting them, so that the).15 E 2.5(ya)-.15 G(re a)-2.5 E -.25(va)-.2 G -(ilable for subsequent recall.).25 E 2.2(The shell allo)108 710.4 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 -722.4 R F3(histchars)3.646 E F0(abo)3.646 E 1.446 -.15(ve u)-.15 H(nder) -.15 E F3 1.146(Shell V)3.646 F(ariables)-.92 E F0 3.646(\). The)B 1.147 -(shell uses the history comment character to)3.646 F(GNU Bash 4.4)72 768 -Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(51)185.545 E 0 Cg EP +(ilable for subsequent recall.).25 E(GNU Bash 4.4)72 768 Q +(2016 January 25)141.79 E(51)190.95 E 0 Cg EP %%Page: 52 52 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(mark history timestamps when writing the history \214le.)108 84 Q/F1 10 -/Times-Bold@0 SF(Ev)87 100.8 Q(ent Designators)-.1 E F0 .205(An e)108 -112.8 R -.15(ve)-.25 G .204(nt designator is a reference to a command l\ -ine entry in the history list.).15 F .204(Unless the reference is abso-) -5.204 F(lute, e)108 124.8 Q -.15(ve)-.25 G(nts are relati).15 E .3 -.15 -(ve t)-.25 H 2.5(ot).15 G(he current position in the history list.)-2.5 -E F1(!)108 141.6 Q F0 1.607(Start a history substitution, e)144 141.6 R -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 153.6 Q F1(extglob)2.5 E F0 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.2 +(The shell allo)108 84 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.147(description of)108 96 R/F1 10 +/Times-Bold@0 SF(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 108 Q F1 +(Ev)87 124.8 Q(ent Designators)-.1 E F0 .204(An e)108 136.8 R -.15(ve) +-.25 G .204(nt designator is a reference to a command line entry in the\ + history list.).15 F .205(Unless the reference is abso-)5.204 F(lute, e) +108 148.8 Q -.15(ve)-.25 G(nts are relati).15 E .3 -.15(ve t)-.25 H 2.5 +(ot).15 G(he current position in the history list.)-2.5 E F1(!)108 165.6 +Q F0 1.608(Start a history substitution, e)144 165.6 R 1.608 +(xcept when follo)-.15 F 1.607(wed by a)-.25 F F1(blank)4.107 E F0 4.107 +(,n)C -.25(ew)-4.107 G 1.607(line, carriage return, = or \().25 F +(\(when the)144 177.6 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 165.6 Q/F2 10/Times-Italic@0 SF(n)A F0 -(Refer to command line)144 165.6 Q F2(n)2.5 E F0(.).24 E F1<21ad>108 -177.6 Q F2(n)A F0(Refer to the current command minus)144 177.6 Q F2(n) -2.5 E F0(.).24 E F1(!!)108 189.6 Q F0(Refer to the pre)144 189.6 Q +(iltin\).).2 E F1(!)108 189.6 Q/F2 10/Times-Italic@0 SF(n)A F0 +(Refer to command line)144 189.6 Q F2(n)2.5 E F0(.).24 E F1<21ad>108 +201.6 Q F2(n)A F0(Refer to the current command minus)144 201.6 Q F2(n) +2.5 E F0(.).24 E F1(!!)108 213.6 Q F0(Refer to the pre)144 213.6 Q (vious command.)-.25 E(This is a synon)5 E(ym for `!\2551'.)-.15 E F1(!) -108 201.6 Q F2(string)A F0 .865(Refer to the most recent command preced\ -ing the current position in the history list starting with)144 201.6 R -F2(string)144 213.6 Q F0(.).22 E F1(!?)108 225.6 Q F2(string)A F1([?])A +108 225.6 Q F2(string)A F0 .865(Refer to the most recent command preced\ +ing the current position in the history list starting with)144 225.6 R +F2(string)144 237.6 Q F0(.).22 E F1(!?)108 249.6 Q F2(string)A F1([?])A F0 1.503(Refer to the most recent command preceding the current positio\ -n in the history list containing)144 237.6 R F2(string)144 249.6 Q F0 5 +n in the history list containing)144 261.6 R F2(string)144 273.6 Q F0 5 (.T).22 G(he trailing)-5 E F1(?)2.5 E F0(may be omitted if)2.5 E F2 (string)2.84 E F0(is follo)2.72 E(wed immediately by a ne)-.25 E(wline.) --.25 E/F3 12/Times-Bold@0 SF(^)108 266.6 Q F2(string1)-5 I F3(^)5 I F2 -(string2)-5 I F3(^)5 I F0 .784(Quick substitution.)144 273.6 R .784 -(Repeat the pre)5.784 F .784(vious command, replacing)-.25 F F2(string1) -3.624 E F0(with)3.283 E F2(string2)3.283 E F0 5.783(.E).02 G(qui)-5.783 -E -.25(va)-.25 G .783(lent to).25 F -.74(``)144 285.6 S(!!:s/).74 E F2 +-.25 E/F3 12/Times-Bold@0 SF(^)108 290.6 Q F2(string1)-5 I F3(^)5 I F2 +(string2)-5 I F3(^)5 I F0 .783(Quick substitution.)144 297.6 R .783 +(Repeat the pre)5.783 F .784(vious command, replacing)-.25 F F2(string1) +3.624 E F0(with)3.284 E F2(string2)3.284 E F0 5.784(.E).02 G(qui)-5.784 +E -.25(va)-.25 G .784(lent to).25 F -.74(``)144 309.6 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 297.6 Q F0 -(The entire command line typed so f)144 297.6 Q(ar)-.1 E(.)-.55 E F1 --.75(Wo)87 314.4 S(rd Designators).75 E F0 -.8(Wo)108 326.4 S 1.313 +(Modi\214ers)2.5 E F0(belo)2.5 E(w\).)-.25 E F1(!#)108 321.6 Q F0 +(The entire command line typed so f)144 321.6 Q(ar)-.1 E(.)-.55 E F1 +-.75(Wo)87 338.4 S(rd Designators).75 E F0 -.8(Wo)108 350.4 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 338.4 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 362.4 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 350.4 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 362.4 Q -F1 2.5(0\()108 379.2 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 391.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 374.4 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 386.4 Q +F1 2.5(0\()108 403.2 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 415.2 Q 2.5(ord. F)-.1 F(or the shell, this is the command w)-.15 E(ord.)-.1 E -F2(n)108.36 403.2 Q F0(The)144 403.2 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E -F1(^)108 415.2 Q F0(The \214rst ar)144 415.2 Q 2.5(gument. That)-.18 F -(is, w)2.5 E(ord 1.)-.1 E F1($)108 427.2 Q F0 .064(The last w)144 427.2 -R 2.564(ord. This)-.1 F .064(is usually the last ar)2.564 F .064 +F2(n)108.36 427.2 Q F0(The)144 427.2 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E +F1(^)108 439.2 Q F0(The \214rst ar)144 439.2 Q 2.5(gument. That)-.18 F +(is, w)2.5 E(ord 1.)-.1 E F1($)108 451.2 Q F0 .063(The last w)144 451.2 +R 2.563(ord. This)-.1 F .063(is usually the last ar)2.563 F .064 (gument, b)-.18 F .064(ut will e)-.2 F .064(xpand to the zeroth w)-.15 F -.063(ord if there is only)-.1 F(one w)144 439.2 Q(ord in the line.)-.1 E -F1(%)108 451.2 Q F0(The w)144 451.2 Q(ord matched by the most recent `?) --.1 E F2(string)A F0(?' search.)A F2(x)108.77 463.2 Q F1A F2(y)A F0 -2.5(Ar)144 463.2 S(ange of w)-2.5 E(ords; `\255)-.1 E F2(y)A F0 2.5('a)C -(bbre)-2.5 E(viates `0\255)-.25 E F2(y)A F0('.)A F1(*)108 475.2 Q F0 -.315(All of the w)144 475.2 R .315(ords b)-.1 F .315(ut the zeroth.)-.2 +.064(ord if there is only)-.1 F(one w)144 463.2 Q(ord in the line.)-.1 E +F1(%)108 475.2 Q F0(The w)144 475.2 Q(ord matched by the most recent `?) +-.1 E F2(string)A F0(?' search.)A F2(x)108.77 487.2 Q F1A F2(y)A F0 +2.5(Ar)144 487.2 S(ange of w)-2.5 E(ords; `\255)-.1 E F2(y)A F0 2.5('a)C +(bbre)-2.5 E(viates `0\255)-.25 E F2(y)A F0('.)A F1(*)108 499.2 Q F0 +.316(All of the w)144 499.2 R .316(ords b)-.1 F .316(ut the zeroth.)-.2 F .315(This is a synon)5.315 F .315(ym for `)-.15 F F2(1\255$)A F0 2.815 -('. It)B .315(is not an error to use)2.815 F F1(*)2.816 E F0 .316 -(if there is)2.816 F(just one w)144 487.2 Q(ord in the e)-.1 E -.15(ve) +('. 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 511.2 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 -499.2 Q F0(Abbre)144 499.2 Q(viates)-.25 E F2(x\255$)2.5 E F0(.)A F1 -<78ad>108 511.2 Q F0(Abbre)144 511.2 Q(viates)-.25 E F2(x\255$)2.5 E F0 +523.2 Q F0(Abbre)144 523.2 Q(viates)-.25 E F2(x\255$)2.5 E F0(.)A F1 +<78ad>108 535.2 Q F0(Abbre)144 535.2 Q(viates)-.25 E F2(x\255$)2.5 E F0 (lik)2.5 E(e)-.1 E F1(x*)2.5 E F0 2.5(,b)C(ut omits the last w)-2.7 E -(ord.)-.1 E(If a w)108 528 Q(ord designator is supplied without an e)-.1 +(ord.)-.1 E(If a w)108 552 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 544.8 Q F0 .184(After the optional w)108 556.8 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 568.8 Q F1(h)108 -585.6 Q F0(Remo)144 585.6 Q .3 -.15(ve a t)-.15 H +(Modi\214ers)87 568.8 Q F0 .183(After the optional w)108 580.8 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 592.8 Q F1(h)108 +609.6 Q F0(Remo)144 609.6 Q .3 -.15(ve a t)-.15 H (railing \214lename component, lea).15 E(ving only the head.)-.2 E F1(t) -108 597.6 Q F0(Remo)144 597.6 Q .3 -.15(ve a)-.15 H +108 621.6 Q F0(Remo)144 621.6 Q .3 -.15(ve a)-.15 H (ll leading \214lename components, lea).15 E(ving the tail.)-.2 E F1(r) -108 609.6 Q F0(Remo)144 609.6 Q .3 -.15(ve a t)-.15 H(railing suf).15 E +108 633.6 Q F0(Remo)144 633.6 Q .3 -.15(ve a t)-.15 H(railing suf).15 E (\214x of the form)-.25 E F2(.xxx)2.5 E F0 2.5(,l)C(ea)-2.5 E -(ving the basename.)-.2 E F1(e)108 621.6 Q F0(Remo)144 621.6 Q .3 -.15 +(ving the basename.)-.2 E F1(e)108 645.6 Q F0(Remo)144 645.6 Q .3 -.15 (ve a)-.15 H(ll b).15 E(ut the trailing suf)-.2 E(\214x.)-.25 E F1(p)108 -633.6 Q F0(Print the ne)144 633.6 Q 2.5(wc)-.25 G(ommand b)-2.5 E -(ut do not e)-.2 E -.15(xe)-.15 G(cute it.).15 E F1(q)108 645.6 Q F0 -(Quote the substituted w)144 645.6 Q -(ords, escaping further substitutions.)-.1 E F1(x)108 657.6 Q F0 -(Quote the substituted w)144 657.6 Q(ords as with)-.1 E F1(q)2.5 E F0 +657.6 Q F0(Print the ne)144 657.6 Q 2.5(wc)-.25 G(ommand b)-2.5 E +(ut do not e)-.2 E -.15(xe)-.15 G(cute it.).15 E F1(q)108 669.6 Q F0 +(Quote the substituted w)144 669.6 Q +(ords, escaping further substitutions.)-.1 E F1(x)108 681.6 Q F0 +(Quote the substituted w)144 681.6 Q(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 669.6 Q F2(old)A F1(/)A F2(ne)A(w)-.15 E -F1(/)A F0(Substitute)144 681.6 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) +2.5 E(wlines.)-.25 E F1(s/)108 693.6 Q F2(old)A F1(/)A F2(ne)A(w)-.15 E +F1(/)A F0(Substitute)144 705.6 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(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 .617(of /.)144 693.6 R .617 +.221(elimiter can be used in place)-2.721 F .616(of /.)144 717.6 R .617 (The \214nal delimiter is optional if it is the last character of the e) -5.617 F -.15(ve)-.25 G .617(nt line.).15 F .616(The delimiter may)5.616 -F .666(be quoted in)144 705.6 R F2(old)3.396 E F0(and)3.936 E F2(ne) +5.616 F -.15(ve)-.25 G .617(nt line.).15 F .617(The delimiter may)5.617 +F .666(be quoted in)144 729.6 R F2(old)3.396 E F0(and)3.936 E F2(ne) 3.526 E(w)-.15 E F0 .666(with a single backslash.)3.476 F .666 (If & appears in)5.666 F F2(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 F2(old)3.166 E -F0 5.666(.A).77 G .275(single backslash will quote the &.)144 717.6 R -(If)5.275 E F2(old)3.004 E F0 .274(is null, it is set to the last)3.544 -F F2(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 729.6 Q F2(string) -2.84 E F0(in a)2.72 E F1(!?)2.5 E F2(string)A F1([?])A F0(search.)5 E -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(52)185.545 E 0 Cg EP +F0 5.666(.A).77 G(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(52) +190.95 E 0 Cg EP %%Page: 53 53 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(&)108 84 Q F0(Repeat the pre)144 84 Q(vious substitution.)-.25 E F1 -(g)108 96 Q F0 .397(Cause changes to be applied o)144 96 R -.15(ve)-.15 -G 2.897(rt).15 G .398(he entire e)-2.897 F -.15(ve)-.25 G .398(nt line.) -.15 F .398(This is used in conjunction with `)5.398 F F1(:s)A F0 2.898 -('\()C(e.g.,)-2.898 E(`)144 108 Q F1(:gs/)A/F2 10/Times-Italic@0 SF(old) -A F1(/)A F2(ne)A(w)-.15 E F1(/)A F0 1.219('\) or `)B F1(:&)A F0 3.719 -('. If)B 1.219(used with `)3.719 F F1(: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 -120 R -.15(ve)-.25 G .09(nt line.).15 F(An)5.09 E F1(a)2.59 E F0 .09 -(may be used as a synon)2.59 F .09(ym for)-.15 F F1(g)144 132 Q F0(.)A -F1(G)108 144 Q F0(Apply the follo)144 144 Q(wing `)-.25 E F1(s)A F0 2.5 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .274 +(single backslash will quote the &.)144 84 R(If)5.274 E/F1 10 +/Times-Italic@0 SF(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 +(ous history substitutions took place, the last)144 96 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 108 Q F0(Repeat the pre)144 108 Q +(vious substitution.)-.25 E F2(g)108 120 Q F0 .398 +(Cause changes to be applied o)144 120 R -.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 132 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 +(delimiter is optional if it is the last character of the e)144 144 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 156 Q F0(.)A +F2(G)108 168 Q F0(Apply the follo)144 168 Q(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 160.8 Q(UIL)-.11 E -(TIN COMMANDS)-1.007 E F0 .063(Unless otherwise noted, each b)108 172.8 +(nt line.).15 E/F3 10.95/Times-Bold@0 SF(SHELL B)72 184.8 Q(UIL)-.11 E +(TIN COMMANDS)-1.007 E F0 .062(Unless otherwise noted, each b)108 196.8 R .062(uiltin command documented in this section as accepting options p\ -receded by)-.2 F F1108 184.8 Q F0(accepts)2.533 E F12.533 E F0 -.034(to signify the end of the options.)2.533 F(The)5.034 E F1(:)2.534 E -F0(,)A F1(true)2.534 E F0(,)A F1(false)2.534 E F0 2.534(,a)C(nd)-2.534 E -F1(test)2.534 E F0 -.2(bu)2.534 G .034(iltins do not accept options and) -.2 F 1.549(do not treat)108 196.8 R F14.049 E F0(specially)4.049 E -6.549(.T)-.65 G(he)-6.549 E F1(exit)4.049 E F0(,)A F1(logout)4.049 E F0 -(,)A F1 -.18(re)4.049 G(tur).18 E(n)-.15 E F0(,)A F1(br)4.049 E(eak)-.18 -E F0(,)A F1(continue)4.049 E F0(,)A F1(let)4.049 E F0 4.049(,a)C(nd) --4.049 E F1(shift)4.048 E F0 -.2(bu)4.048 G 1.548(iltins accept and).2 F -.26(process ar)108 208.8 R .26(guments be)-.18 F .26(ginning with)-.15 F -F12.76 E F0 .261(without requiring)2.76 F F12.761 E F0 5.261 -(.O)C .261(ther b)-5.261 F .261(uiltins that accept ar)-.2 F .261 -(guments b)-.18 F .261(ut are not)-.2 F 1.154 -(speci\214ed as accepting options interpret ar)108 220.8 R 1.154 -(guments be)-.18 F 1.154(ginning with)-.15 F F13.654 E F0 1.154 -(as in)3.654 F -.25(va)-.4 G 1.154(lid options and require).25 F F1 -3.654 E F0(to)3.654 E(pre)108 232.8 Q -.15(ve)-.25 G -(nt this interpretation.).15 E F1(:)108 250.8 Q F0([)2.5 E F2(ar)A -(guments)-.37 E F0(])A .451(No ef)144 262.8 R .451 +receded by)-.2 F F2108 208.8 Q F0(accepts)2.534 E F22.534 E F0 +.034(to signify the end of the options.)2.534 F(The)5.034 E F2(:)2.534 E +F0(,)A F2(true)2.534 E F0(,)A F2(false)2.534 E F0 2.534(,a)C(nd)-2.534 E +F2(test)2.534 E F0 -.2(bu)2.534 G .033(iltins do not accept options and) +.2 F 1.548(do not treat)108 220.8 R F24.048 E F0(specially)4.048 E +6.549(.T)-.65 G(he)-6.549 E F2(exit)4.049 E F0(,)A F2(logout)4.049 E F0 +(,)A F2 -.18(re)4.049 G(tur).18 E(n)-.15 E F0(,)A F2(br)4.049 E(eak)-.18 +E F0(,)A F2(continue)4.049 E F0(,)A F2(let)4.049 E F0 4.049(,a)C(nd) +-4.049 E F2(shift)4.049 E F0 -.2(bu)4.049 G 1.549(iltins accept and).2 F +.261(process ar)108 232.8 R .261(guments be)-.18 F .261(ginning with) +-.15 F F22.761 E F0 .261(without requiring)2.761 F F22.761 E +F0 5.261(.O)C .261(ther b)-5.261 F .26(uiltins that accept ar)-.2 F .26 +(guments b)-.18 F .26(ut are not)-.2 F 1.154 +(speci\214ed as accepting options interpret ar)108 244.8 R 1.154 +(guments be)-.18 F 1.154(ginning with)-.15 F F23.654 E F0 1.154 +(as in)3.654 F -.25(va)-.4 G 1.154(lid options and require).25 F F2 +3.654 E F0(to)3.654 E(pre)108 256.8 Q -.15(ve)-.25 G +(nt this interpretation.).15 E F2(:)108 274.8 Q F0([)2.5 E F1(ar)A +(guments)-.37 E F0(])A .452(No ef)144 286.8 R .452 (fect; the command does nothing be)-.25 F .452(yond e)-.15 F(xpanding) --.15 E F2(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. The)144 274.8 R -(return status is zero.)2.5 E F1(.)110.5 291.6 Q F2(\214lename)6.666 E -F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A F1(sour)108 303.6 Q(ce)-.18 E -F2(\214lename)2.5 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A 1.02 -(Read and e)144 315.6 R -.15(xe)-.15 G 1.02(cute commands from).15 F F2 +-.15 E F1(ar)3.282 E(guments)-.37 E F0 .451(and performing an)3.221 F +2.951(ys)-.15 G(peci\214ed)-2.951 E 2.5(redirections. The)144 298.8 R +(return status is zero.)2.5 E F2(.)110.5 315.6 Q F1(\214lename)6.666 E +F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A F2(sour)108 327.6 Q(ce)-.18 E +F1(\214lename)2.5 E F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A 1.02 +(Read and e)144 339.6 R -.15(xe)-.15 G 1.02(cute commands from).15 F F1 (\214lename)5.43 E F0 1.02(in the current shell en)3.7 F 1.02 (vironment and return the e)-.4 F(xit)-.15 E 1.458 -(status of the last command e)144 327.6 R -.15(xe)-.15 G 1.458 -(cuted from).15 F F2(\214lename)3.958 E F0 6.458(.I).18 G(f)-6.458 E F2 +(status of the last command e)144 351.6 R -.15(xe)-.15 G 1.458 +(cuted from).15 F F1(\214lename)3.958 E F0 6.458(.I).18 G(f)-6.458 E F1 (\214lename)5.868 E F0 1.458(does not contain a slash, \214le-)4.138 F -.608(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 F2 +.608(names in)144 363.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 F1(bash)3.332 E F0 .832 -(is not in)3.332 F F2 .832(posix mode)3.332 F F0 3.332(,t)C .833 -(he current directory is searched if no)-3.332 F .982 -(\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 F1(sour)3.481 E(cepath)-.18 -E F0 .981(option to the)3.481 F F1(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 -(y)-.15 E F2(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 F2 -(\214lename)144 387.6 Q F0 1.697(is e)4.197 F -.15(xe)-.15 G 4.197 +-5.608 F F4 -.666(PA)3.108 G(TH)-.189 E F0 .833(need not be e)144 375.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 387.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 .982(f, the)-.25 F F4 -.666(PA)144 +399.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 411.6 Q F0 1.697(is e)4.196 F -.15(xe)-.15 G 4.197 (cuted. Otherwise).15 F 1.697(the positional parameters are unchanged.) -4.197 F 1.697(If the)6.697 F F14.197 E F0 1.696(option is)4.197 F -(enabled,)144 399.6 Q F1(sour)3.617 E(ce)-.18 E F0 1.117(inherits an) -3.617 F 3.617(yt)-.15 G 1.117(rap on)-3.617 F F1(DEB)3.617 E(UG)-.1 E F0 +4.197 F 1.697(If the)6.697 F F24.197 E F0 1.697(option is)4.197 F +(enabled,)144 423.6 Q F2(sour)3.618 E(ce)-.18 E F0 1.118(inherits an) +3.618 F 3.618(yt)-.15 G 1.118(rap on)-3.618 F F2(DEB)3.618 E(UG)-.1 E F0 3.618(;i)C 3.618(fi)-3.618 G 3.618(ti)-3.618 G 3.618(sn)-3.618 G 1.118 -(ot, an)-3.618 F(y)-.15 E F1(DEB)3.618 E(UG)-.1 E F0 1.118 -(trap string is sa)3.618 F -.15(ve)-.2 G 3.618(da).15 G(nd)-3.618 E .36 -(restored around the call to)144 411.6 R F1(sour)2.86 E(ce)-.18 E F0 -2.86(,a)C(nd)-2.86 E F1(sour)2.86 E(ce)-.18 E F0 .36(unsets the)2.86 F -F1(DEB)2.86 E(UG)-.1 E F0 .36(trap while it e)2.86 F -.15(xe)-.15 G 2.86 -(cutes. If).15 F F12.86 E F0(is)2.86 E 1.435 -(not set, and the sourced \214le changes the)144 423.6 R F1(DEB)3.935 E +(ot, an)-3.618 F(y)-.15 E F2(DEB)3.617 E(UG)-.1 E F0 1.117 +(trap string is sa)3.617 F -.15(ve)-.2 G 3.617(da).15 G(nd)-3.617 E .36 +(restored around the call to)144 435.6 R F2(sour)2.86 E(ce)-.18 E F0 +2.86(,a)C(nd)-2.86 E F2(sour)2.86 E(ce)-.18 E F0 .36(unsets the)2.86 F +F2(DEB)2.86 E(UG)-.1 E F0 .36(trap while it e)2.86 F -.15(xe)-.15 G 2.86 +(cutes. If).15 F F22.86 E F0(is)2.86 E 1.435 +(not set, and the sourced \214le changes the)144 447.6 R F2(DEB)3.935 E (UG)-.1 E F0 1.435(trap, the ne)3.935 F 3.935(wv)-.25 G 1.435 -(alue is retained when)-4.185 F F1(sour)3.935 E(ce)-.18 E F0 3.763 -(completes. The)144 435.6 R 1.262 -(return status is the status of the last command e)3.763 F 1.262 -(xited within the script \(0 if no)-.15 F(commands are e)144 447.6 Q --.15(xe)-.15 G(cuted\), and f).15 E(alse if)-.1 E F2(\214lename)4.41 E -F0(is not found or cannot be read.)2.68 E F1(alias)108 464.4 Q F0([)2.5 -E F1A F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C -(..])-2.5 E F1(Alias)144 476.4 Q F0 2.724(with no ar)5.224 F 2.724 -(guments or with the)-.18 F F15.224 E F0 2.724 -(option prints the list of aliases in the form)5.224 F F1(alias)5.225 E -F2(name)144 488.4 Q F0(=)A F2(value)A F0 .58(on standard output.)3.08 F +(alue is retained when)-4.185 F F2(sour)3.935 E(ce)-.18 E F0 3.762 +(completes. The)144 459.6 R 1.262 +(return status is the status of the last command e)3.762 F 1.263 +(xited within the script \(0 if no)-.15 F(commands are e)144 471.6 Q +-.15(xe)-.15 G(cuted\), and f).15 E(alse if)-.1 E F1(\214lename)4.41 E +F0(is not found or cannot be read.)2.68 E F2(alias)108 488.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 500.4 Q F0 2.725(with no ar)5.225 F 2.724 +(guments or with the)-.18 F F25.224 E F0 2.724 +(option prints the list of aliases in the form)5.224 F F2(alias)5.224 E +F1(name)144 512.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 F2(name) -3.08 E F0(whose)144 500.4 Q F2(value)2.508 E F0 .009(is gi)2.508 F -.15 -(ve)-.25 G 2.509(n. A).15 F .009(trailing space in)2.509 F F2(value) +(guments are supplied, an alias is de\214ned for each)-.18 F F1(name) +3.08 E F0(whose)144 524.4 Q F1(value)2.509 E F0 .009(is gi)2.509 F -.15 +(ve)-.25 G 2.509(n. A).15 F .009(trailing space in)2.509 F F1(value) 2.509 E F0 .009(causes the ne)2.509 F .009(xt w)-.15 F .009 -(ord to be check)-.1 F .009(ed for alias substi-)-.1 F .579 -(tution when the alias is e)144 512.4 R 3.079(xpanded. F)-.15 F .579 -(or each)-.15 F F2(name)3.079 E F0 .579(in the ar)3.079 F .579 -(gument list for which no)-.18 F F2(value)3.079 E F0 .578(is sup-)3.078 -F 1.313(plied, the name and v)144 524.4 R 1.314 -(alue of the alias is printed.)-.25 F F1(Alias)6.314 E F0 1.314 -(returns true unless a)3.814 F F2(name)3.814 E F0 1.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 536.4 Q F1(bg)108 553.2 Q F0([) -2.5 E F2(jobspec)A F0(...])2.5 E .745(Resume each suspended job)144 -565.2 R F2(jobspec)3.245 E F0 .745 -(in the background, as if it had been started with)3.245 F F1(&)3.244 E -F0 5.744(.I)C(f)-5.744 E F2(job-)4.984 E(spec)144 577.2 Q F0 .671 -(is not present, the shell')3.481 F 3.171(sn)-.55 G .672(otion of the) --3.171 F F2(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F1 -(bg)5.672 E F2(jobspec)4.912 E F0 .672(returns 0 unless run)3.482 F .419 -(when job control is disabled or)144 589.2 R 2.919(,w)-.4 G .419 -(hen run with job control enabled, an)-2.919 F 2.918(ys)-.15 G -(peci\214ed)-2.918 E F2(jobspec)2.918 E F0 -.1(wa)2.918 G 2.918(sn).1 G -(ot)-2.918 E(found or w)144 601.2 Q(as started without job control.)-.1 -E F1(bind)108 618 Q F0([)2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0 -2.5(][)C F1(\255lpsvPSVX)-2.5 E F0(])A F1(bind)108 630 Q F0([)2.5 E F1 -A F2 -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F1-2.5 E F2 -(function)2.5 E F0 2.5(][)C F1-2.5 E F2(function)2.5 E F0 2.5(][)C -F1-2.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(])A F1(bind)108 642 Q F0([) -2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0(])A F12.5 E F2 -(\214lename)2.5 E F1(bind)108 654 Q F0([)2.5 E F1A F2 -.1(ke)2.5 G -(ymap)-.2 E F0(])A F12.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2 -(shell\255command)A F1(bind)108 666 Q F0([)2.5 E F1A F2 -.1(ke)2.5 -G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2 -(function\255name)A F1(bind)108 678 Q F0([)2.5 E F1A F2 -.1(ke)2.5 -G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2 -.37(re)C -(adline\255command).37 E F0 .238(Display current)144 690 R F1 -.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 F1 -.18(re)2.739 G(adline).18 E F0 .239(function or) -2.739 F .476(macro, or set a)144 702 R F1 -.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 F2 -(.inputr)144 714 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 726 R(if supplied, ha)2.5 E -.3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E(GNU Bash 4.4)72 -768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(53)185.545 E 0 Cg -EP +(ord to be check)-.1 F .008(ed for alias substi-)-.1 F .579 +(tution when the alias is e)144 536.4 R 3.079(xpanded. F)-.15 F .579 +(or each)-.15 F F1(name)3.079 E F0 .579(in the ar)3.079 F .579 +(gument list for which no)-.18 F F1(value)3.079 E F0 .579(is sup-)3.079 +F 1.314(plied, the name and v)144 548.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 +(which no alias has been de\214ned.)144 560.4 Q F2(bg)108 577.2 Q F0([) +2.5 E F1(jobspec)A F0(...])2.5 E .744(Resume each suspended job)144 +589.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 601.2 Q F0 .672 +(is not present, the shell')3.482 F 3.172(sn)-.55 G .672(otion of the) +-3.172 F F1(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F2 +(bg)5.671 E F1(jobspec)4.911 E F0 .671(returns 0 unless run)3.481 F .418 +(when job control is disabled or)144 613.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 625.2 Q(as started without job control.)-.1 +E F2(bind)108 642 Q F0([)2.5 E F2A F1 -.1(ke)2.5 G(ymap)-.2 E F0 +2.5(][)C F2(\255lpsvPSVX)-2.5 E F0(])A F2(bind)108 654 Q F0([)2.5 E F2 +A F1 -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F2-2.5 E F1 +(function)2.5 E F0 2.5(][)C F2-2.5 E F1(function)2.5 E F0 2.5(][)C +F2-2.5 E F1 -.1(ke)2.5 G(yseq)-.2 E F0(])A F2(bind)108 666 Q F0([) +2.5 E F2A F1 -.1(ke)2.5 G(ymap)-.2 E F0(])A F22.5 E F1 +(\214lename)2.5 E F2(bind)108 678 Q F0([)2.5 E F2A F1 -.1(ke)2.5 G +(ymap)-.2 E F0(])A F22.5 E F1 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F1 +(shell\255command)A F2(bind)108 690 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 702 Q F0([)2.5 E F2A F1 -.1(ke)2.5 +G(ymap)-.2 E F0(])A F1 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F1 -.37(re)C +(adline\255command).37 E F0 .239(Display current)144 714 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 726 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 +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(53)190.95 E 0 Cg EP %%Page: 54 54 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF144 84 Q/F2 10/Times-Italic@0 SF -.1(ke)2.5 G(ymap)-.2 E F0(Use) -180 96 Q F2 -.1(ke)5.159 G(ymap)-.2 E F0 2.659(as the k)5.349 F -.15(ey) --.1 G 2.658(map to be af).15 F 2.658(fected by the subsequent bindings.) --.25 F(Acceptable)7.658 E F2 -.1(ke)180 108 S(ymap)-.2 E F0 3.192 -(names are)5.882 F F2 3.192(emacs, emacs\255standar)5.692 F 3.193 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 +/Times-Italic@0 SF(.inputr)144 84 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 +(re\255read\255init\255\214le'. Options,)144 96 R(if supplied, ha)2.5 E +.3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E/F2 10 +/Times-Bold@0 SF144 108 Q F1 -.1(ke)2.5 G(ymap)-.2 E F0(Use)180 +120 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 132 S(ymap)-.2 E F0 3.193(names are) +5.883 F F1 3.193(emacs, emacs\255standar)5.693 F 3.192 (d, emacs\255meta, emacs\255ctlx, vi, vi\255mo)-.37 F(ve)-.1 E(,)-.1 E -(vi\255command)180 120 Q F0 4.114(,a)C(nd)-4.114 E F2(vi\255insert)4.114 -E F0(.).68 E F2(vi)6.614 E F0 1.613(is equi)4.114 F -.25(va)-.25 G 1.613 -(lent to).25 F F2(vi\255command)4.113 E F0(\()4.113 E F2(vi\255mo)A(ve) --.1 E F0 1.613(is also a syn-)4.113 F(on)180 132 Q(ym\);)-.15 E F2 -(emacs)2.5 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F2 -(emacs\255standar)2.5 E(d)-.37 E F0(.)A F1144 144 Q F0 -(List the names of all)180 144 Q F1 -.18(re)2.5 G(adline).18 E F0 -(functions.)2.5 E F1144 156 Q F0(Display)180 156 Q F1 -.18(re)2.5 +(vi\255command)180 144 Q F0 4.113(,a)C(nd)-4.113 E F1(vi\255insert)4.113 +E F0(.).68 E F1(vi)6.613 E F0 1.613(is equi)4.113 F -.25(va)-.25 G 1.613 +(lent to).25 F F1(vi\255command)4.113 E F0(\()4.113 E F1(vi\255mo)A(ve) +-.1 E F0 1.614(is also a syn-)4.114 F(on)180 156 Q(ym\);)-.15 E F1 +(emacs)2.5 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F1 +(emacs\255standar)2.5 E(d)-.37 E F0(.)A F2144 168 Q F0 +(List the names of all)180 168 Q F2 -.18(re)2.5 G(adline).18 E F0 +(functions.)2.5 E F2144 180 Q F0(Display)180 180 Q F2 -.18(re)2.5 G(adline).18 E F0(function names and bindings in such a w)2.5 E -(ay that the)-.1 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 168 Q -F0(List current)180 168 Q F1 -.18(re)2.5 G(adline).18 E F0 -(function names and bindings.)2.5 E F1144 180 Q F0(Display)180 180 -Q F1 -.18(re)3.655 G(adline).18 E F0 -.1(ke)3.655 G 3.655(ys)-.05 G +(ay that the)-.1 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F2144 192 Q +F0(List current)180 192 Q F2 -.18(re)2.5 G(adline).18 E F0 +(function names and bindings.)2.5 E F2144 204 Q F0(Display)180 204 +Q F2 -.18(re)3.655 G(adline).18 E F0 -.1(ke)3.655 G 3.655(ys)-.05 G 1.155(equences bound to macros and the strings the)-3.655 F 3.655(yo) --.15 G 1.155(utput in such a)-3.655 F -.1(wa)180 192 S 2.5(yt).1 G -(hat the)-2.5 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 204 Q F0 -(Display)180 204 Q F1 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5(ys) +-.15 G 1.155(utput in such a)-3.655 F -.1(wa)180 216 S 2.5(yt).1 G +(hat the)-2.5 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F2144 228 Q F0 +(Display)180 228 Q F2 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5(ys) -.05 G(equences bound to macros and the strings the)-2.5 E 2.5(yo)-.15 G -(utput.)-2.5 E F1144 216 Q F0(Display)180 216 Q F1 -.18(re)2.5 G +(utput.)-2.5 E F2144 240 Q F0(Display)180 240 Q F2 -.18(re)2.5 G (adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E (alues in such a w)-.25 E(ay that the)-.1 E 2.5(yc)-.15 G -(an be re-read.)-2.5 E F1144 228 Q F0(List current)180 228 Q F1 +(an be re-read.)-2.5 E F2144 252 Q F0(List current)180 252 Q F2 -.18(re)2.5 G(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E -(alues.)-.25 E F1144 240 Q F2(\214lename)2.5 E F0(Read k)180 252 Q -.3 -.15(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A F1 -144 264 Q F2(function)2.5 E F0(Query about which k)180 276 Q -.15 +(alues.)-.25 E F2144 264 Q F1(\214lename)2.5 E F0(Read k)180 276 Q +.3 -.15(ey b)-.1 H(indings from).15 E F1(\214lename)2.5 E F0(.)A F2 +144 288 Q F1(function)2.5 E F0(Query about which k)180 300 Q -.15 (ey)-.1 G 2.5(si).15 G -1.9 -.4(nv o)-2.5 H .2 -.1(ke t).4 H(he named).1 -E F2(function)2.5 E F0(.)A F1144 288 Q F2(function)2.5 E F0 -(Unbind all k)180 300 Q -.15(ey)-.1 G 2.5(sb).15 G(ound to the named) --2.5 E F2(function)2.5 E F0(.)A F1144 312 Q F2 -.1(ke)2.5 G(yseq) --.2 E F0(Remo)180 324 Q .3 -.15(ve a)-.15 H .3 -.15(ny c).15 H -(urrent binding for).15 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(.)A F1144 -336 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2(shell\255command)A F0(Cause) -180 348 Q F2(shell\255command)4.325 E F0 1.825(to be e)4.325 F -.15(xe) --.15 G 1.825(cuted whene).15 F -.15(ve)-.25 G(r).15 E F2 -.1(ke)4.325 G -(yseq)-.2 E F0 1.825(is entered.)4.325 F(When)6.825 E F2(shell\255com-) -4.325 E(mand)180 360 Q F0 1.764(is e)4.264 F -.15(xe)-.15 G 1.765 +E F1(function)2.5 E F0(.)A F2144 312 Q F1(function)2.5 E F0 +(Unbind all k)180 324 Q -.15(ey)-.1 G 2.5(sb).15 G(ound to the named) +-2.5 E F1(function)2.5 E F0(.)A F2144 336 Q F1 -.1(ke)2.5 G(yseq) +-.2 E F0(Remo)180 348 Q .3 -.15(ve a)-.15 H .3 -.15(ny c).15 H +(urrent binding for).15 E F1 -.1(ke)2.5 G(yseq)-.2 E F0(.)A F2144 +360 Q F1 -.1(ke)2.5 G(yseq)-.2 E F2(:)A F1(shell\255command)A F0(Cause) +180 372 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 384 Q F0 1.765(is e)4.265 F -.15(xe)-.15 G 1.765 (cuted, the shell sets the).15 F/F3 9/Times-Bold@0 SF(READLINE_LINE) -4.265 E F0 -.25(va)4.015 G 1.765(riable to the contents of the).25 F F1 --.18(re)180 372 S(adline).18 E F0 1.353(line b)3.853 F(uf)-.2 E 1.353 +4.265 E F0 -.25(va)4.015 G 1.765(riable to the contents of the).25 F F2 +-.18(re)180 396 S(adline).18 E F0 1.353(line b)3.852 F(uf)-.2 E 1.353 (fer and the)-.25 F F3(READLINE_POINT)3.853 E F0 -.25(va)3.603 G 1.353 -(riable to the current location of the).25 F 2.011(insertion point.)180 -384 R 2.011(If the e)7.011 F -.15(xe)-.15 G 2.011 +(riable to the current location of the).25 F 2.012(insertion point.)180 +408 R 2.011(If the e)7.012 F -.15(xe)-.15 G 2.011 (cuted command changes the v).15 F 2.011(alue of)-.25 F F3 -(READLINE_LINE)4.512 E F0(or)4.262 E F3(READLINE_POINT)180 396 Q/F4 9 +(READLINE_LINE)4.511 E F0(or)4.261 E F3(READLINE_POINT)180 420 Q/F4 9 /Times-Roman@0 SF(,)A F0(those ne)2.25 E 2.5(wv)-.25 G -(alues will be re\215ected in the editing state.)-2.75 E F1144 408 -Q F0 .83(List all k)180 408 R 1.13 -.15(ey s)-.1 H .829 +(alues will be re\215ected in the editing state.)-2.75 E F2144 432 +Q F0 .829(List all k)180 432 R 1.129 -.15(ey s)-.1 H .829 (equences bound to shell commands and the associated commands in a for) -.15 F(-)-.2 E(mat that can be reused as input.)180 420 Q(The return v) -144 436.8 Q(alue is 0 unless an unrecognized option is gi)-.25 E -.15 +.15 F(-)-.2 E(mat that can be reused as input.)180 444 Q(The return v) +144 460.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 F1(br)108 453.6 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .054 -(Exit from within a)144 465.6 R F1 -.25(fo)2.554 G(r).25 E F0(,)A F1 -(while)2.554 E F0(,)A F1(until)2.555 E F0 2.555(,o)C(r)-2.555 E F1 -(select)2.555 E F0 2.555(loop. If)2.555 F F2(n)2.555 E F0 .055 -(is speci\214ed, break)2.555 F F2(n)2.555 E F0(le)2.555 E -.15(ve)-.25 G -(ls.).15 E F2(n)5.415 E F0 .055(must be)2.795 F/F5 10/Symbol SF2.555 -E F0(1.)2.555 E(If)144 477.6 Q F2(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 -489.6 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F1 -.2 -(bu)108 506.4 S(iltin).2 E F2(shell\255b)2.5 E(uiltin)-.2 E F0([)2.5 E -F2(ar)A(guments)-.37 E F0(])A(Ex)144 518.4 Q .792 -(ecute the speci\214ed shell b)-.15 F .792(uiltin, passing it)-.2 F F2 +E F2(br)108 477.6 Q(eak)-.18 E F0([)2.5 E F1(n)A F0(])A .055 +(Exit from within a)144 489.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.414 E F0 .054(must be)2.794 F/F5 10/Symbol SF2.554 +E F0(1.)2.554 E(If)144 501.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 +513.6 Q F1(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F2 -.2 +(bu)108 530.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 542.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 -530.4 R .615(uiltin, retaining the functionality of)-.2 F .57(the b)144 -542.4 R .57(uiltin within the function.)-.2 F(The)5.57 E F1(cd)3.07 E F0 +554.4 R .616(uiltin, retaining the functionality of)-.2 F .57(the b)144 +566.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 554.4 Q(alse if)-.1 -E F2(shell\255b)2.84 E(uiltin)-.2 E F0(is not a shell b)2.74 E -(uiltin command.)-.2 E F1(caller)108 571.2 Q F0([)2.5 E F2 -.2(ex)C(pr) -.2 E F0(])A .254(Returns the conte)144 583.2 R .254(xt of an)-.15 F +5.57(.T)-.65 G .57(he return status)-5.57 F(is f)144 578.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 595.2 Q F0([)2.5 E F1 -.2(ex)C(pr) +.2 E F0(])A .253(Returns the conte)144 607.2 R .254(xt of an)-.15 F 2.754(ya)-.15 G(cti)-2.754 E .554 -.15(ve s)-.25 H .254 (ubroutine call \(a shell function or a script e).15 F -.15(xe)-.15 G -.254(cuted with the).15 F F1(.)2.753 E F0(or)2.753 E F1(sour)144 595.2 Q -(ce)-.18 E F0 -.2(bu)2.824 G 2.824(iltins\). W).2 F(ithout)-.4 E F2 -.2 -(ex)2.824 G(pr).2 E F0(,)A F1(caller)2.824 E F0 .324 +.254(cuted with the).15 F F2(.)2.754 E F0(or)2.754 E F2(sour)144 619.2 Q +(ce)-.18 E F0 -.2(bu)2.825 G 2.825(iltins\). W).2 F(ithout)-.4 E F1 -.2 +(ex)2.825 G(pr).2 E F0(,)A F2(caller)2.825 E F0 .324 (displays the line number and source \214lename of the current)2.824 F -.254(subroutine call.)144 607.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 F2 -.2(ex)2.753 G(pr).2 E F0(,)A F1(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 631.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 619.2 R -.15(xe)-.15 G 1.328(cution call stack.).15 F .001 -(This e)144 631.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 643.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 F2 -.2(ex)3.02 G(pr).2 E F0 .52 -(does not corre-)3.02 F(spond to a v)144 655.2 Q -(alid position in the call stack.)-.25 E F1(cd)108 672 Q F0([)2.5 E F1 -A F0(|[)A F1A F0([)2.5 E F1A F0(]] [\255@]] [)A F2 -(dir)A F0(])A .322(Change the current directory to)144 684 R F2(dir) -2.822 E F0 5.322(.i)C(f)-5.322 E F2(dir)2.822 E F0 .321 -(is not supplied, the v)2.822 F .321(alue of the)-.25 F F3(HOME)2.821 E -F0 .321(shell v)2.571 F .321(ariable is)-.25 F 1.035(the def)144 696 R -3.535(ault. An)-.1 F 3.535(ya)-.15 G 1.035(dditional ar)-3.535 F 1.035 -(guments follo)-.18 F(wing)-.25 E F2(dir)3.535 E F0 1.035(are ignored.) -3.535 F 1.036(The v)6.035 F(ariable)-.25 E F3(CDP)3.536 E -.855(AT)-.666 -G(H).855 E F0(de\214nes)3.286 E .85 -(the search path for the directory containing)144 708 R F2(dir)3.35 E F0 -3.35(:e).73 G .849(ach directory name in)-3.35 F F3(CDP)3.349 E -.855 -(AT)-.666 G(H).855 E F0 .849(is searched for)3.099 F F2(dir)144 720 Q F0 -5.664(.A)C(lternati)-5.664 E .964 -.15(ve d)-.25 H .665 -(irectory names in).15 F F3(CDP)3.165 E -.855(AT)-.666 G(H).855 E F0 -.665(are separated by a colon \(:\).)2.915 F 3.165(An)5.665 G .665 -(ull directory name)-3.165 F(GNU Bash 4.4)72 768 Q(2015 No)136.385 E --.15(ve)-.15 G(mber 16).15 E(54)185.545 E 0 Cg EP +ent e)144 643.2 R -.15(xe)-.15 G 1.327(cution call stack.).15 F(This e) +144 655.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 667.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 679.2 Q +(alid position in the call stack.)-.25 E F2(cd)108 696 Q F0([)2.5 E F2 +A F0(|[)A F2A F0([)2.5 E F2A F0(]] [\255@]] [)A F1 +(dir)A F0(])A .321(Change the current directory to)144 708 R F1(dir) +2.821 E F0 5.321(.i)C(f)-5.321 E F1(dir)2.821 E F0 .322 +(is not supplied, the v)2.821 F .322(alue of the)-.25 F F3(HOME)2.822 E +F0 .322(shell v)2.572 F .322(ariable is)-.25 F 1.036(the def)144 720 R +3.536(ault. An)-.1 F 3.536(ya)-.15 G 1.035(dditional ar)-3.536 F 1.035 +(guments follo)-.18 F(wing)-.25 E F1(dir)3.535 E F0 1.035(are ignored.) +3.535 F 1.035(The v)6.035 F(ariable)-.25 E F3(CDP)3.535 E -.855(AT)-.666 +G(H).855 E F0(de\214nes)3.285 E(GNU Bash 4.4)72 768 Q(2016 January 25) +141.79 E(54)190.95 E 0 Cg EP %%Page: 55 55 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(in)144 84 Q/F1 9 -/Times-Bold@0 SF(CDP)4.163 E -.855(AT)-.666 G(H).855 E F0 1.663 -(is the same as the current directory)3.913 F 4.162(,i)-.65 G 1.662 -(.e., `)-4.162 F(`)-.74 E/F2 10/Times-Bold@0 SF(.)A F0 -.74('')C 6.662 -(.I).74 G(f)-6.662 E/F3 10/Times-Italic@0 SF(dir)4.512 E F0(be)4.892 E -1.662(gins with a slash \(/\), then)-.15 F F1(CDP)144 96 Q -.855(AT) --.666 G(H).855 E F0 .19(is not used.)2.44 F(The)5.191 E F22.691 E -F0 .191(option causes)2.691 F F2(cd)2.691 E F0 .191(to use the ph)2.691 -F .191(ysical directory structure by resolving)-.05 F 1.12 -(symbolic links while tra)144 108 R -.15(ve)-.2 G(rsing).15 E F3(dir) -3.62 E F0 1.12(and before processing instances of)3.62 F F3(..)3.62 E F0 -(in)3.62 E F3(dir)3.62 E F0 1.12(\(see also the)3.62 F F23.62 E F0 -.395(option to the)144 120 R F2(set)2.895 E F0 -.2(bu)2.895 G .395 -(iltin command\); the).2 F F22.895 E F0 .395 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .849 +(the search path for the directory containing)144 84 R/F1 10 +/Times-Italic@0 SF(dir)3.349 E F0 3.35(:e).73 G .85 +(ach directory name in)-3.35 F/F2 9/Times-Bold@0 SF(CDP)3.35 E -.855(AT) +-.666 G(H).855 E F0 .85(is searched for)3.1 F F1(dir)144 96 Q F0 5.665 +(.A)C(lternati)-5.665 E .965 -.15(ve d)-.25 H .665(irectory names in).15 +F F2(CDP)3.165 E -.855(AT)-.666 G(H).855 E F0 .665 +(are separated by a colon \(:\).)2.915 F 3.165(An)5.665 G .664 +(ull directory name)-3.165 F(in)144 108 Q F2(CDP)4.162 E -.855(AT)-.666 +G(H).855 E F0 1.662(is the same as the current directory)3.912 F 4.162 +(,i)-.65 G 1.662(.e., `)-4.162 F(`)-.74 E/F3 10/Times-Bold@0 SF(.)A F0 +-.74('')C 6.662(.I).74 G(f)-6.662 E F1(dir)4.513 E F0(be)4.893 E 1.663 +(gins with a slash \(/\), then)-.15 F F2(CDP)144 120 Q -.855(AT)-.666 G +(H).855 E F0 .191(is not used.)2.441 F(The)5.191 E F32.691 E F0 +.191(option causes)2.691 F F3(cd)2.691 E F0 .191(to use the ph)2.691 F +.19(ysical directory structure by resolving)-.05 F 1.12 +(symbolic links while tra)144 132 R -.15(ve)-.2 G(rsing).15 E F1(dir) +3.62 E F0 1.12(and before processing instances of)3.62 F F1(..)3.62 E F0 +(in)3.62 E F1(dir)3.62 E F0 1.12(\(see also the)3.62 F F33.62 E F0 +.395(option to the)144 144 R F3(set)2.895 E F0 -.2(bu)2.895 G .395 +(iltin command\); the).2 F F32.895 E F0 .395 (option forces symbolic links to be follo)2.895 F .395(wed by resolv-) --.25 F .444(ing the link after processing instances of)144 132 R F3(..) -2.943 E F0(in)2.943 E F3(dir)2.943 E F0 5.443(.I)C(f)-5.443 E F3(..) -2.943 E F0 .443(appears in)2.943 F F3(dir)2.943 E F0 2.943(,i)C 2.943 -(ti)-2.943 G 2.943(sp)-2.943 G .443(rocessed by remo)-2.943 F(ving)-.15 -E .744(the immediately pre)144 144 R .744(vious pathname component from) --.25 F F3(dir)3.244 E F0 3.244(,b)C .744(ack to a slash or the be)-3.244 -F .744(ginning of)-.15 F F3(dir)3.244 E F0(.)A 1.466(If the)144 156 R F2 -3.966 E F0 1.466(option is supplied with)3.966 F F23.965 E -F0 3.965(,a)C 1.465(nd the current w)-3.965 F 1.465 -(orking directory cannot be successfully)-.1 F .467 -(determined after a successful directory change,)144 168 R F2(cd)2.968 E -F0 .468(will return an unsuccessful status.)2.968 F .468(On systems) -5.468 F .337(that support it, the)144 180 R F22.837 E F0 .336 -(option presents the e)2.836 F .336(xtended attrib)-.15 F .336 +-.25 F .443(ing the link after processing instances of)144 156 R F1(..) +2.943 E F0(in)2.943 E F1(dir)2.943 E F0 5.443(.I)C(f)-5.443 E F1(..) +2.943 E F0 .443(appears in)2.943 F F1(dir)2.943 E F0 2.943(,i)C 2.943 +(ti)-2.943 G 2.944(sp)-2.943 G .444(rocessed by remo)-2.944 F(ving)-.15 +E .744(the immediately pre)144 168 R .744(vious pathname component from) +-.25 F F1(dir)3.244 E F0 3.244(,b)C .744(ack to a slash or the be)-3.244 +F .744(ginning of)-.15 F F1(dir)3.244 E F0(.)A 1.465(If the)144 180 R F3 +3.965 E F0 1.465(option is supplied with)3.965 F F33.965 E +F0 3.965(,a)C 1.465(nd the current w)-3.965 F 1.466 +(orking directory cannot be successfully)-.1 F .468 +(determined after a successful directory change,)144 192 R F3(cd)2.968 E +F0 .468(will return an unsuccessful status.)2.968 F .467(On systems) +5.467 F .336(that support it, the)144 204 R F32.836 E F0 .336 +(option presents the e)2.836 F .336(xtended attrib)-.15 F .337 (utes associated with a \214le as a directory)-.2 F(.)-.65 E .71(An ar) -144 192 R .71(gument of)-.18 F F23.21 E F0 .71(is con)3.21 F -.15 -(ve)-.4 G .71(rted to).15 F F1($OLDPWD)3.21 E F0 .71 +144 216 R .71(gument of)-.18 F F33.21 E F0 .71(is con)3.21 F -.15 +(ve)-.4 G .71(rted to).15 F F2($OLDPWD)3.21 E F0 .71 (before the directory change is attempted.)2.96 F .71(If a non-)5.71 F -.107(empty directory name from)144 204 R F1(CDP)2.607 E -.855(AT)-.666 G -(H).855 E F0 .107(is used, or if)2.357 F F22.607 E F0 .106 -(is the \214rst ar)2.607 F .106(gument, and the directory change)-.18 F -.038(is successful, the absolute pathname of the ne)144 216 R 2.538(ww) +.106(empty directory name from)144 228 R F2(CDP)2.606 E -.855(AT)-.666 G +(H).855 E F0 .107(is used, or if)2.356 F F32.607 E F0 .107 +(is the \214rst ar)2.607 F .107(gument, and the directory change)-.18 F +.038(is successful, the absolute pathname of the ne)144 240 R 2.538(ww) -.25 G .038(orking directory is written to the standard output.)-2.638 F -(The return v)144 228 Q(alue is true if the directory w)-.25 E -(as successfully changed; f)-.1 E(alse otherwise.)-.1 E F2(command)108 -244.8 Q F0([)2.5 E F2(\255pVv)A F0(])A F3(command)2.5 E F0([)2.5 E F3 -(ar)A(g)-.37 E F0(...])2.5 E(Run)144 256.8 Q F3(command)2.765 E F0(with) -3.335 E F3(ar)2.895 E(gs)-.37 E F0 .065 -(suppressing the normal shell function lookup.)2.835 F .064(Only b)5.064 -F .064(uiltin commands or)-.2 F .501(commands found in the)144 268.8 R -F1 -.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 F23.002 E F0 .502(option is gi) -3.002 F -.15(ve)-.25 G .502(n, the search for).15 F F3(command)3.202 E -F0(is)3.772 E .4(performed using a def)144 280.8 R .4(ault v)-.1 F .4 -(alue for)-.25 F F1 -.666(PA)2.9 G(TH)-.189 E F0 .399 +(The return v)144 252 Q(alue is true if the directory w)-.25 E +(as successfully changed; f)-.1 E(alse otherwise.)-.1 E F3(command)108 +268.8 Q F0([)2.5 E F3(\255pVv)A F0(])A F1(command)2.5 E F0([)2.5 E F1 +(ar)A(g)-.37 E F0(...])2.5 E(Run)144 280.8 Q F1(command)2.764 E F0(with) +3.334 E F1(ar)2.894 E(gs)-.37 E F0 .065 +(suppressing the normal shell function lookup.)2.834 F .065(Only b)5.065 +F .065(uiltin commands or)-.2 F .502(commands found in the)144 292.8 R +F2 -.666(PA)3.002 G(TH)-.189 E F0 .502(are e)2.752 F -.15(xe)-.15 G +3.002(cuted. If).15 F(the)3.002 E F33.002 E F0 .502(option is gi) +3.002 F -.15(ve)-.25 G .501(n, the search for).15 F F1(command)3.201 E +F0(is)3.771 E .399(performed using a def)144 304.8 R .399(ault v)-.1 F +.399(alue for)-.25 F F2 -.666(PA)2.899 G(TH)-.189 E F0 .4 (that is guaranteed to \214nd all of the standard utilities.)2.649 F(If) -5.399 E .174(either the)144 292.8 R F22.674 E F0(or)2.674 E F2 -2.674 E F0 .175(option is supplied, a description of)2.674 F F3 -(command)2.875 E F0 .175(is printed.)3.445 F(The)5.175 E F22.675 E -F0 .175(option causes)2.675 F 3.318(as)144 304.8 S .818(ingle w)-3.318 F -.817(ord indicating the command or \214lename used to in)-.1 F -.2(vo) --.4 G -.1(ke).2 G F3(command)3.617 E F0 .817(to be displayed; the)4.087 -F F2144 316.8 Q F0 .249(option produces a more v)2.749 F .249 -(erbose description.)-.15 F .249(If the)5.249 F F22.749 E F0(or) -2.749 E F22.75 E F0 .25(option is supplied, the e)2.75 F .25 -(xit status)-.15 F 1.005(is 0 if)144 328.8 R F3(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 F3 -(command)144.2 340.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 F2(command)4.099 E F0 -.2(bu)144 352.8 S -(iltin is the e).2 E(xit status of)-.15 E F3(command)2.5 E F0(.).77 E F2 -(compgen)108 369.6 Q F0([)2.5 E F3(option)A F0 2.5(][)C F3(wor)-2.5 E(d) --.37 E F0(])A .013(Generate possible completion matches for)144 381.6 R -F3(wor)2.513 E(d)-.37 E F0 .013(according to the)2.513 F F3(option)2.513 -E F0 .013(s, which may be an)B 2.512(yo)-.15 G(ption)-2.512 E .981 -(accepted by the)144 393.6 R F2(complete)3.481 E F0 -.2(bu)3.481 G .981 -(iltin with the e).2 F .981(xception of)-.15 F F23.481 E F0(and) -3.481 E F23.481 E F0 3.481(,a)C .982(nd write the matches to the) --3.481 F .131(standard output.)144 405.6 R .131(When using the)5.131 F -F22.631 E F0(or)2.631 E F22.631 E F0 .131(options, the v) -2.631 F .13(arious shell v)-.25 F .13(ariables set by the program-)-.25 -F(mable completion f)144 417.6 Q(acilities, while a)-.1 E -.25(va)-.2 G +5.4 E .175(either the)144 316.8 R F32.675 E F0(or)2.675 E F3 +2.675 E F0 .175(option is supplied, a description of)2.675 F F1(command) +2.875 E F0 .174(is printed.)3.445 F(The)5.174 E F32.674 E F0 .174 +(option causes)2.674 F 3.317(as)144 328.8 S .817(ingle w)-3.317 F .817 +(ord indicating the command or \214lename used to in)-.1 F -.2(vo)-.4 G +-.1(ke).2 G F1(command)3.618 E F0 .818(to be displayed; the)4.088 F F3 +144 340.8 Q F0 .25(option produces a more v)2.75 F .25 +(erbose description.)-.15 F .249(If the)5.25 F F32.749 E F0(or) +2.749 E F32.749 E F0 .249(option is supplied, the e)2.749 F .249 +(xit status)-.15 F 1.004(is 0 if)144 352.8 R F1(command)3.704 E F0 -.1 +(wa)4.274 G 3.504(sf).1 G 1.005(ound, and 1 if not.)-3.504 F 1.005 +(If neither option is supplied and an error occurred or)6.005 F F1 +(command)144.2 364.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 F3(command)4.098 E F0 -.2(bu)144 376.8 S +(iltin is the e).2 E(xit status of)-.15 E F1(command)2.5 E F0(.).77 E F3 +(compgen)108 393.6 Q F0([)2.5 E F1(option)A F0 2.5(][)C F1(wor)-2.5 E(d) +-.37 E F0(])A .012(Generate possible completion matches for)144 405.6 R +F1(wor)2.513 E(d)-.37 E F0 .013(according to the)2.513 F F1(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 417.6 R F3(complete)3.482 E F0 -.2(bu)3.481 G .981 +(iltin with the e).2 F .981(xception of)-.15 F F33.481 E F0(and) +3.481 E F33.481 E F0 3.481(,a)C .981(nd write the matches to the) +-3.481 F .13(standard output.)144 429.6 R .13(When using the)5.13 F F3 +2.63 E F0(or)2.63 E F32.631 E F0 .131(options, the v)2.631 F +.131(arious shell v)-.25 F .131(ariables set by the program-)-.25 F +(mable completion f)144 441.6 Q(acilities, while a)-.1 E -.25(va)-.2 G (ilable, will not ha).25 E .3 -.15(ve u)-.2 H(seful v).15 E(alues.)-.25 -E .352(The matches will be generated in the same w)144 441.6 R .352 +E .352(The matches will be generated in the same w)144 465.6 R .352 (ay as if the programmable completion code had gen-)-.1 F .02(erated th\ em directly from a completion speci\214cation with the same \215ags.)144 -453.6 R(If)5.02 E F3(wor)2.52 E(d)-.37 E F0 .02(is speci\214ed, only) -2.52 F(those completions matching)144 465.6 Q F3(wor)2.5 E(d)-.37 E F0 -(will be displayed.)2.5 E(The return v)144 489.6 Q +477.6 R(If)5.02 E F1(wor)2.52 E(d)-.37 E F0 .02(is speci\214ed, only) +2.52 F(those completions matching)144 489.6 Q F1(wor)2.5 E(d)-.37 E F0 +(will be displayed.)2.5 E(The return v)144 513.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 F2 -(complete)108 506.4 Q F0([)3.728 E F2(\255abcdefgjksuv)A F0 3.728(][)C -F2-3.728 E F3(comp-option)3.728 E F0 3.728(][)C F2(\255DE)-3.728 E -F0 3.728(][)C F2-3.728 E F3(action)3.728 E F0 3.728(][)C F2 --3.728 E F3(globpat)3.728 E F0 3.729(][)C F2-3.729 E F3(wor)3.729 -E(dlist)-.37 E F0 3.729(][)C F2-3.729 E F3(func-)3.729 E(tion)108 -518.4 Q F0 2.5(][)C F2-2.5 E F3(command)2.5 E F0(])A([)144 530.4 Q -F2A F3(\214lterpat)2.5 E F0 2.5(][)C F2-2.5 E F3(pr)2.5 E -(e\214x)-.37 E F0 2.5(][)C F2-2.5 E F3(suf)2.5 E<8c78>-.18 E F0(]) -A F3(name)2.5 E F0([)2.5 E F3(name ...)A F0(])A F2(complete \255pr)108 -542.4 Q F0([)2.5 E F2(\255DE)A F0 2.5(][)C F3(name)-2.5 E F0(...])2.5 E -.634(Specify ho)144 554.4 R 3.134(wa)-.25 G -.18(rg)-3.134 G .634 -(uments to each).18 F F3(name)3.134 E F0 .634(should be completed.)3.134 -F .633(If the)5.634 F F23.133 E F0 .633 -(option is supplied, or if no)3.133 F .139(options are supplied, e)144 -566.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 578.4 R(The)5.31 E F22.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 F3 -(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 -F3(name)2.81 E F0(s)A 1.346 -(are supplied, all completion speci\214cations.)144 590.4 R(The)6.347 E -F23.847 E F0 1.347(option indicates that the remaining options) -3.847 F .5(and actions should apply to the `)144 602.4 R(`def)-.74 E +(lid option is supplied, or no matches were generated.).25 E F3 +(complete)108 530.4 Q F0([)3.729 E F3(\255abcdefgjksuv)A F0 3.729(][)C +F3-3.729 E F1(comp-option)3.729 E F0 3.729(][)C F3(\255DE)-3.729 E +F0 3.728(][)C F3-3.728 E F1(action)3.728 E F0 3.728(][)C F3 +-3.728 E F1(globpat)3.728 E F0 3.728(][)C F3-3.728 E F1(wor)3.728 +E(dlist)-.37 E F0 3.728(][)C F3-3.728 E F1(func-)3.728 E(tion)108 +542.4 Q F0 2.5(][)C F3-2.5 E F1(command)2.5 E F0(])A([)144 554.4 Q +F3A F1(\214lterpat)2.5 E F0 2.5(][)C F3-2.5 E F1(pr)2.5 E +(e\214x)-.37 E F0 2.5(][)C F3-2.5 E F1(suf)2.5 E<8c78>-.18 E F0(]) +A F1(name)2.5 E F0([)2.5 E F1(name ...)A F0(])A F3(complete \255pr)108 +566.4 Q F0([)2.5 E F3(\255DE)A F0 2.5(][)C F1(name)-2.5 E F0(...])2.5 E +.633(Specify ho)144 578.4 R 3.133(wa)-.25 G -.18(rg)-3.133 G .633 +(uments to each).18 F F1(name)3.133 E F0 .633(should be completed.)3.133 +F .634(If the)5.634 F F33.134 E F0 .634 +(option is supplied, or if no)3.134 F .14(options are supplied, e)144 +590.4 R .139(xisting completion speci\214cations are printed in a w)-.15 +F .139(ay that allo)-.1 F .139(ws them to be)-.25 F .31 +(reused as input.)144 602.4 R(The)5.31 E F32.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 F1(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 F1(name)2.81 E F0(s)A 1.347 +(are supplied, all completion speci\214cations.)144 614.4 R(The)6.347 E +F33.847 E F0 1.346(option indicates that the remaining options) +3.847 F .5(and actions should apply to the `)144 626.4 R(`def)-.74 E (ault')-.1 E 3('c)-.74 G .5 (ommand completion; that is, completion attempted on)-3 F 3.455(ac)144 -614.4 S .955(ommand for which no completion has pre)-3.455 F .955 -(viously been de\214ned.)-.25 F(The)5.955 E F23.455 E F0 .955 -(option indicates that)3.455 F .065 -(the remaining options and actions should apply to `)144 626.4 R -(`empty')-.74 E 2.564('c)-.74 G .064 -(ommand completion; that is, comple-)-2.564 F -(tion attempted on a blank line.)144 638.4 Q 1.437 +638.4 S .955(ommand for which no completion has pre)-3.455 F .955 +(viously been de\214ned.)-.25 F(The)5.955 E F33.455 E F0 .955 +(option indicates that)3.455 F .064 +(the remaining options and actions should apply to `)144 650.4 R +(`empty')-.74 E 2.565('c)-.74 G .065 +(ommand completion; that is, comple-)-2.565 F +(tion attempted on a blank line.)144 662.4 Q 1.438 (The process of applying these completion speci\214cations when w)144 -662.4 R 1.438(ord completion is attempted is)-.1 F(described abo)144 -674.4 Q .3 -.15(ve u)-.15 H(nder).15 E F2(Pr)2.5 E -(ogrammable Completion)-.18 E F0(.)A .556 -(Other options, if speci\214ed, ha)144 698.4 R .856 -.15(ve t)-.2 H .555 +686.4 R 1.437(ord completion is attempted is)-.1 F(described abo)144 +698.4 Q .3 -.15(ve u)-.15 H(nder).15 E F3(Pr)2.5 E +(ogrammable Completion)-.18 E F0(.)A .555 +(Other options, if speci\214ed, ha)144 722.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 F23.055 E F0(,)A F23.055 E F0 3.055 -(,a)C(nd)-3.055 E F23.055 E F0 .722(options \(and, if necessary) -144 710.4 R 3.222(,t)-.65 G(he)-3.222 E F23.222 E F0(and)3.222 E -F23.222 E F0 .723 -(options\) should be quoted to protect them from e)3.222 F(xpan-)-.15 E -(sion before the)144 722.4 Q F2(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(GNU Bash 4.4)72 768 Q -(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(55)185.545 E 0 Cg EP +(guments to the)-.18 F F33.056 E F0(,)A F33.056 E F0 3.056 +(,a)C(nd)-3.056 E F33.056 E F0(GNU Bash 4.4)72 768 Q +(2016 January 25)141.79 E(55)190.95 E 0 Cg EP %%Page: 56 56 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF144 84 Q/F2 10/Times-Italic@0 SF(comp-option)2.5 E F0(The)184 96 -Q F2(comp-option)2.791 E F0 .291(controls se)2.791 F -.15(ve)-.25 G .291 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .723 +(options \(and, if necessary)144 84 R 3.223(,t)-.65 G(he)-3.223 E/F1 10 +/Times-Bold@0 SF3.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 96 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 108 Q/F2 10 +/Times-Italic@0 SF(comp-option)2.5 E F0(The)184 120 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 108 Q F2(comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 -120 Q F0 .281(Perform the rest of the def)224 132 R(ault)-.1 E F1(bash) +184 132 Q F2(comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 +144 Q F0 .281(Perform the rest of the def)224 156 R(ault)-.1 E F1(bash) 2.781 E F0 .281(completions if the compspec generates no)2.781 F -(matches.)224 144 Q F1(default)184 156 Q F0 2.876(Use readline')224 156 -R 5.376(sd)-.55 G(ef)-5.376 E 2.875 +(matches.)224 168 Q F1(default)184 180 Q F0 2.875(Use readline')224 180 +R 5.375(sd)-.55 G(ef)-5.375 E 2.876 (ault \214lename completion if the compspec generates no)-.1 F(matches.) -224 168 Q F1(dir)184 180 Q(names)-.15 E F0(Perform directory name compl\ -etion if the compspec generates no matches.)224 192 Q F1(\214lenames)184 -204 Q F0 -.7(Te)224 216 S .137(ll readline that the compspec generates \ -\214lenames, so it can perform an).7 F 2.637<798c>-.15 G(le-)-2.637 E -.134(name\255speci\214c processing \(lik)224 228 R 2.634(ea)-.1 G .134 +224 192 Q F1(dir)184 204 Q(names)-.15 E F0(Perform directory name compl\ +etion if the compspec generates no matches.)224 216 Q F1(\214lenames)184 +228 Q F0 -.7(Te)224 240 S .137(ll readline that the compspec generates \ +\214lenames, so it can perform an).7 F 2.636<798c>-.15 G(le-)-2.636 E +.134(name\255speci\214c processing \(lik)224 252 R 2.634(ea)-.1 G .134 (dding a slash to directory names, quoting spe-)-2.634 F .45 -(cial characters, or suppressing trailing spaces\).)224 240 R .45 -(Intended to be used with shell)5.45 F(functions.)224 252 Q F1(noquote) -184 264 Q F0 -.7(Te)224 264 S .814 +(cial characters, or suppressing trailing spaces\).)224 264 R .45 +(Intended to be used with shell)5.45 F(functions.)224 276 Q F1(noquote) +184 288 Q F0 -.7(Te)224 288 S .814 (ll readline not to quote the completed w).7 F .814(ords if the)-.1 F -3.314(ya)-.15 G .814(re \214lenames \(quoting)-3.314 F -(\214lenames is the def)224 276 Q(ault\).)-.1 E F1(nosort)184 288 Q F0 --.7(Te)224 288 S(ll readline not to sort the list of possible completio\ -ns alphabetically).7 E(.)-.65 E F1(nospace)184 300 Q F0 -.7(Te)224 300 S +3.314(ya)-.15 G .815(re \214lenames \(quoting)-3.314 F +(\214lenames is the def)224 300 Q(ault\).)-.1 E F1(nosort)184 312 Q F0 +-.7(Te)224 312 S(ll readline not to sort the list of possible completio\ +ns alphabetically).7 E(.)-.65 E F1(nospace)184 324 Q F0 -.7(Te)224 324 S .22(ll readline not to append a space \(the def).7 F .22(ault\) to w)-.1 -F .22(ords completed at the end)-.1 F(of the line.)224 312 Q F1 -(plusdirs)184 324 Q F0 1.985(After an)224 324 R 4.485(ym)-.15 G 1.985 +F .22(ords completed at the end)-.1 F(of the line.)224 336 Q F1 +(plusdirs)184 348 Q F0 1.985(After an)224 348 R 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 336 R 3.084(ym)-.15 G .584 -(atches are added to the results of the other)-3.084 F(actions.)224 348 -Q F1144 360 Q F2(action)2.5 E F0(The)184 372 Q F2(action)2.5 E F0 +.584(completion is attempted and an)224 360 R 3.084(ym)-.15 G .584 +(atches are added to the results of the other)-3.084 F(actions.)224 372 +Q F1144 384 Q F2(action)2.5 E F0(The)184 396 Q F2(action)2.5 E F0 (may be one of the follo)2.5 E (wing to generate a list of possible completions:)-.25 E F1(alias)184 -384 Q F0(Alias names.)224 384 Q(May also be speci\214ed as)5 E F1 -2.5 E F0(.)A F1(arrayv)184 396 Q(ar)-.1 E F0(Array v)224 408 Q -(ariable names.)-.25 E F1(binding)184 420 Q(Readline)224 420 Q F0 -.1 -(ke)2.5 G 2.5(yb)-.05 G(inding names.)-2.5 E F1 -.2(bu)184 432 S(iltin) -.2 E F0(Names of shell b)224 432 Q(uiltin commands.)-.2 E -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(command)184 444 -Q F0(Command names.)224 456 Q(May also be speci\214ed as)5 E F12.5 -E F0(.)A F1(dir)184 468 Q(ectory)-.18 E F0(Directory names.)224 480 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(disabled)184 492 -Q F0(Names of disabled shell b)224 504 Q(uiltins.)-.2 E F1(enabled)184 -516 Q F0(Names of enabled shell b)224 516 Q(uiltins.)-.2 E F1(export)184 -528 Q F0(Names of e)224 528 Q(xported shell v)-.15 E 2.5(ariables. May) +408 Q F0(Alias names.)224 408 Q(May also be speci\214ed as)5 E F1 +2.5 E F0(.)A F1(arrayv)184 420 Q(ar)-.1 E F0(Array v)224 432 Q +(ariable names.)-.25 E F1(binding)184 444 Q(Readline)224 444 Q F0 -.1 +(ke)2.5 G 2.5(yb)-.05 G(inding names.)-2.5 E F1 -.2(bu)184 456 S(iltin) +.2 E F0(Names of shell b)224 456 Q(uiltin commands.)-.2 E +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(command)184 468 +Q F0(Command names.)224 480 Q(May also be speci\214ed as)5 E F12.5 +E F0(.)A F1(dir)184 492 Q(ectory)-.18 E F0(Directory names.)224 504 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(disabled)184 516 +Q F0(Names of disabled shell b)224 528 Q(uiltins.)-.2 E F1(enabled)184 +540 Q F0(Names of enabled shell b)224 540 Q(uiltins.)-.2 E F1(export)184 +552 Q F0(Names of e)224 552 Q(xported shell v)-.15 E 2.5(ariables. May) -.25 F(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1(\214le)184 -540 Q F0(File names.)224 540 Q(May also be speci\214ed as)5 E F1 -2.5 E F0(.)A F1(function)184 552 Q F0(Names of shell functions.)224 564 -Q F1(gr)184 576 Q(oup)-.18 E F0(Group names.)224 576 Q +564 Q F0(File names.)224 564 Q(May also be speci\214ed as)5 E F1 +2.5 E F0(.)A F1(function)184 576 Q F0(Names of shell functions.)224 588 +Q F1(gr)184 600 Q(oup)-.18 E F0(Group names.)224 600 Q (May also be speci\214ed as)5 E F12.5 E F0(.)A F1(helptopic)184 -588 Q F0(Help topics as accepted by the)224 600 Q F1(help)2.5 E F0 -.2 -(bu)2.5 G(iltin.).2 E F1(hostname)184 612 Q F0(Hostnames, as tak)224 624 +612 Q F0(Help topics as accepted by the)224 624 Q F1(help)2.5 E F0 -.2 +(bu)2.5 G(iltin.).2 E F1(hostname)184 636 Q F0(Hostnames, as tak)224 648 Q(en from the \214le speci\214ed by the)-.1 E/F3 9/Times-Bold@0 SF -(HOSTFILE)2.5 E F0(shell v)2.25 E(ariable.)-.25 E F1(job)184 636 Q F0 -(Job names, if job control is acti)224 636 Q -.15(ve)-.25 G 5(.M).15 G -(ay also be speci\214ed as)-5 E F12.5 E F0(.)A F1 -.1(ke)184 648 S -(yw).1 E(ord)-.1 E F0(Shell reserv)224 660 Q(ed w)-.15 E 2.5(ords. May) +(HOSTFILE)2.5 E F0(shell v)2.25 E(ariable.)-.25 E F1(job)184 660 Q F0 +(Job names, if job control is acti)224 660 Q -.15(ve)-.25 G 5(.M).15 G +(ay also be speci\214ed as)-5 E F12.5 E F0(.)A F1 -.1(ke)184 672 S +(yw).1 E(ord)-.1 E F0(Shell reserv)224 684 Q(ed w)-.15 E 2.5(ords. May) -.1 F(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1(running)184 -672 Q F0(Names of running jobs, if job control is acti)224 672 Q -.15 -(ve)-.25 G(.).15 E F1(ser)184 684 Q(vice)-.1 E F0(Service names.)224 684 -Q(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(setopt)184 696 -Q F0 -1.11(Va)224 696 S(lid ar)1.11 E(guments for the)-.18 E F12.5 -E F0(option to the)2.5 E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1 -(shopt)184 708 Q F0(Shell option names as accepted by the)224 708 Q F1 -(shopt)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E(GNU Bash 4.4)72 768 Q(2015 No) -136.385 E -.15(ve)-.15 G(mber 16).15 E(56)185.545 E 0 Cg EP +696 Q F0(Names of running jobs, if job control is acti)224 696 Q -.15 +(ve)-.25 G(.).15 E F1(ser)184 708 Q(vice)-.1 E F0(Service names.)224 708 +Q(May also be speci\214ed as)5 E F12.5 E F0(.)A(GNU Bash 4.4)72 +768 Q(2016 January 25)141.79 E(56)190.95 E 0 Cg EP %%Page: 57 57 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(signal)184 84 Q F0(Signal names.)224 84 Q F1(stopped)184 96 Q F0 -(Names of stopped jobs, if job control is acti)224 96 Q -.15(ve)-.25 G -(.).15 E F1(user)184 108 Q F0(User names.)224 108 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 120 S -(riable).1 E F0(Names of all shell v)224 120 Q 2.5(ariables. May)-.25 F -(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 132 Q/F2 -10/Times-Italic@0 SF(command)2.5 E(command)184 144 Q F0 1.056(is e)3.556 -F -.15(xe)-.15 G 1.056(cuted in a subshell en).15 F 1.056 +SF(setopt)184 84 Q F0 -1.11(Va)224 84 S(lid ar)1.11 E(guments for the) +-.18 E F12.5 E F0(option to the)2.5 E F1(set)2.5 E F0 -.2(bu)2.5 G +(iltin.).2 E F1(shopt)184 96 Q F0(Shell option names as accepted by the) +224 96 Q F1(shopt)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(signal)184 108 Q +F0(Signal names.)224 108 Q F1(stopped)184 120 Q F0 +(Names of stopped jobs, if job control is acti)224 120 Q -.15(ve)-.25 G +(.).15 E F1(user)184 132 Q F0(User names.)224 132 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 144 S +(riable).1 E F0(Names of all shell v)224 144 Q 2.5(ariables. May)-.25 F +(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 156 Q/F2 +10/Times-Italic@0 SF(command)2.5 E(command)184 168 Q F0 1.055(is e)3.555 +F -.15(xe)-.15 G 1.055(cuted in a subshell en).15 F 1.056 (vironment, and its output is used as the possible)-.4 F(completions.) -184 156 Q F1144 168 Q F2(function)2.5 E F0 .113 -(The shell function)184 180 R F2(function)2.614 E F0 .114(is e)2.614 F +184 180 Q F1144 192 Q F2(function)2.5 E F0 .114 +(The shell function)184 204 R F2(function)2.614 E F0 .114(is e)2.614 F -.15(xe)-.15 G .114(cuted in the current shell en).15 F 2.614 -(vironment. When)-.4 F .114(the func-)2.614 F .817(tion is e)184 192 R --.15(xe)-.15 G .817(cuted, the \214rst ar).15 F .817(gument \()-.18 F F1 -($1)A F0 3.316(\)i)C 3.316(st)-3.316 G .816 +(vironment. When)-.4 F .113(the func-)2.613 F .816(tion is e)184 216 R +-.15(xe)-.15 G .816(cuted, the \214rst ar).15 F .816(gument \()-.18 F F1 +($1)A F0 3.316(\)i)C 3.316(st)-3.316 G .817 (he name of the command whose ar)-3.316 F(guments)-.18 E 1.407 -(are being completed, the second ar)184 204 R 1.407(gument \()-.18 F F1 +(are being completed, the second ar)184 228 R 1.407(gument \()-.18 F F1 ($2)A F0 3.907(\)i)C 3.907(st)-3.907 G 1.407(he w)-3.907 F 1.407 -(ord being completed, and the)-.1 F .104(third ar)184 216 R .104 -(gument \()-.18 F F1($3)A F0 2.604(\)i)C 2.604(st)-2.604 G .104(he w) --2.604 F .104(ord preceding the w)-.1 F .103 -(ord being completed on the current com-)-.1 F .101(mand line.)184 228 R -.101(When it \214nishes, the possible completions are retrie)5.101 F --.15(ve)-.25 G 2.602(df).15 G .102(rom the v)-2.602 F .102(alue of the) --.25 F/F3 9/Times-Bold@0 SF(COMPREPL)184 240 Q(Y)-.828 E F0(array v)2.25 -E(ariable.)-.25 E F1144 252 Q F2(globpat)2.5 E F0 1.008 -(The pathname e)184 264 R 1.008(xpansion pattern)-.15 F F2(globpat)3.507 -E F0 1.007(is e)3.507 F 1.007(xpanded to generate the possible comple-) --.15 F(tions.)184 276 Q F1144 288 Q F2(pr)2.5 E(e\214x)-.37 E(pr) -184 300 Q(e\214x)-.37 E F0 .534(is added at the be)3.034 F .534 +(ord being completed, and the)-.1 F .103(third ar)184 240 R .103 +(gument \()-.18 F F1($3)A F0 2.603(\)i)C 2.603(st)-2.603 G .103(he w) +-2.603 F .104(ord preceding the w)-.1 F .104 +(ord being completed on the current com-)-.1 F .102(mand line.)184 252 R +.102(When it \214nishes, the possible completions are retrie)5.102 F +-.15(ve)-.25 G 2.601(df).15 G .101(rom the v)-2.601 F .101(alue of the) +-.25 F/F3 9/Times-Bold@0 SF(COMPREPL)184 264 Q(Y)-.828 E F0(array v)2.25 +E(ariable.)-.25 E F1144 276 Q F2(globpat)2.5 E F0 1.007 +(The pathname e)184 288 R 1.007(xpansion pattern)-.15 F F2(globpat)3.507 +E F0 1.007(is e)3.507 F 1.008(xpanded to generate the possible comple-) +-.15 F(tions.)184 300 Q F1144 312 Q F2(pr)2.5 E(e\214x)-.37 E(pr) +184 324 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 312 Q F1144 324 Q F2(suf)2.5 E -<8c78>-.18 E(suf)184 324 Q<8c78>-.18 E F0 +-.15(ve)-.2 G(been applied.)184 336 Q F1144 348 Q F2(suf)2.5 E +<8c78>-.18 E(suf)184 348 Q<8c78>-.18 E F0 (is appended to each possible completion after all other options ha)2.5 -E .3 -.15(ve b)-.2 H(een applied.).15 E F1144 336 Q F2(wor)2.5 E -(dlist)-.37 E F0(The)184 348 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 360 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 372 Q(ord being completed.)-.1 E -F1144 384 Q F2(\214lterpat)2.5 E(\214lterpat)184 396 Q F0 .456 -(is a pattern as used for pathname e)2.956 F 2.956(xpansion. It)-.15 F -.455(is applied to the list of possible)2.956 F 1.596 -(completions generated by the preceding options and ar)184 408 R 1.596 -(guments, and each completion)-.18 F(matching)184 420 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 -(tes the pattern;).05 F(in this case, an)184 432 Q 2.5(yc)-.15 G +E .3 -.15(ve b)-.2 H(een applied.).15 E F1144 360 Q F2(wor)2.5 E +(dlist)-.37 E F0(The)184 372 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 384 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 396 Q(ord being completed.)-.1 E +F1144 408 Q F2(\214lterpat)2.5 E(\214lterpat)184 420 Q F0 .455 +(is a pattern as used for pathname e)2.955 F 2.956(xpansion. It)-.15 F +.456(is applied to the list of possible)2.956 F 1.596 +(completions generated by the preceding options and ar)184 432 R 1.596 +(guments, and each completion)-.18 F(matching)184 444 Q F2(\214lterpat) +3.204 E F0 .704(is remo)3.204 F -.15(ve)-.15 G 3.204(df).15 G .704 +(rom the list.)-3.204 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0 +(in)3.204 E 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 456 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 .466(The return v)144 448.8 R .466 +-.15(ve)-.15 G(d.).15 E .467(The return v)144 472.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.967 E F0 -(or)2.967 E F12.967 E F0 .467(is sup-)2.967 F 1.362 -(plied without a)144 460.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 472.8 Q F0 +(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 484.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 496.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 489.6 Q F0([)2.5 E F1A F2(option)2.5 E F0 2.5(][)C +F1(compopt)108 513.6 Q F0([)2.5 E F1A F2(option)2.5 E F0 2.5(][)C F1(\255DE)-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 501.6 R +(name)-2.5 E F0(])A .447(Modify completion options for each)144 525.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(cuting).15 E .726 -(completion if no)144 513.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 525.6 Q F2(name) -3.223 E F0 .723(or the current completion.)3.223 F .724(The possible v) +.447(s, or for the currently-e)B -.15(xe)-.15 G(cuting).15 E .725 +(completion if no)144 537.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 +(n, display the completion options for).15 F(each)144 549.6 Q F2(name) +3.224 E F0 .724(or the current completion.)3.224 F .724(The possible v) 5.724 F .724(alues of)-.25 F F2(option)3.224 E F0 .724(are those v)3.224 -F .724(alid for the)-.25 F F1(com-)3.224 E(plete)144 537.6 Q F0 -.2(bu) -2.798 G .298(iltin described abo).2 F -.15(ve)-.15 G 5.297(.T).15 G(he) +F .723(alid for the)-.25 F F1(com-)3.223 E(plete)144 561.6 Q F0 -.2(bu) +2.797 G .297(iltin described abo).2 F -.15(ve)-.15 G 5.297(.T).15 G(he) -5.297 E F12.797 E F0 .297 (option indicates that the remaining options should apply to)2.797 F -1.227(the `)144 549.6 R(`def)-.74 E(ault')-.1 E 3.727('c)-.74 G 1.228(o\ +1.228(the `)144 573.6 R(`def)-.74 E(ault')-.1 E 3.728('c)-.74 G 1.228(o\ mmand completion; that is, completion attempted on a command for which \ -no)-3.727 F 2.178(completion has pre)144 561.6 R 2.178 -(viously been de\214ned.)-.25 F(The)7.178 E F14.678 E F0 2.177 -(option indicates that the remaining options)4.677 F(should apply to `) -144 573.6 Q(`empty')-.74 E 2.5('c)-.74 G +no)-3.728 F 2.177(completion has pre)144 585.6 R 2.177 +(viously been de\214ned.)-.25 F(The)7.177 E F14.677 E F0 2.178 +(option indicates that the remaining options)4.678 F(should apply to `) +144 597.6 Q(`empty')-.74 E 2.5('c)-.74 G (ommand completion; that is, completion attempted on a blank line.)-2.5 -E 1.387(The return v)144 597.6 R 1.387(alue is true unless an in)-.25 F --.25(va)-.4 G 1.388 +E 1.388(The return v)144 621.6 R 1.388(alue is true unless an in)-.25 F +-.25(va)-.4 G 1.387 (lid option is supplied, an attempt is made to modify the).25 F -(options for a)144 609.6 Q F2(name)2.5 E F0 +(options for a)144 633.6 Q F2(name)2.5 E F0 (for which no completion speci\214cation e)2.5 E -(xists, or an output error occurs.)-.15 E F1(continue)108 626.4 Q F0([) -2.5 E F2(n)A F0(])A 1.754(Resume the ne)144 638.4 R 1.754 +(xists, or an output error occurs.)-.15 E F1(continue)108 650.4 Q F0([) +2.5 E F2(n)A F0(])A 1.753(Resume the ne)144 662.4 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 650.4 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 674.4 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/F4 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 -(loops, the last enclosing loop \(the `)144 662.4 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 674.4 Q F1(declar)108 691.2 -Q(e)-.18 E F0([)2.5 E F1(\255aAfFgilnrtux)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 703.2 Q F0([)2.5 E F1(\255aAfFgilnrtux)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 715.2 R 1.264(ariables and/or gi)-.25 F -1.564 -.15(ve t)-.25 H 1.264(hem attrib).15 F 3.765(utes. If)-.2 F(no) -3.765 E F2(name)3.765 E F0 3.765(sa)C 1.265(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 727.2 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(GNU Bash 4.4)72 768 Q(2015 No) -136.385 E -.15(ve)-.15 G(mber 16).15 E(57)185.545 E 0 Cg EP +(is greater than the number of enclosing)3.949 F .513 +(loops, the last enclosing loop \(the `)144 686.4 R(`top-le)-.74 E -.15 +(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 698.4 Q(GNU Bash 4.4)72 768 +Q(2016 January 25)141.79 E(57)190.95 E 0 Cg EP %%Page: 58 58 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(with)144 84 Q/F1 -10/Times-Italic@0 SF(name)2.774 E F0(ar)2.774 E .274 -(guments, additional options, other than)-.18 F/F2 10/Times-Bold@0 SF -2.775 E F0(and)2.775 E F22.775 E F0 2.775(,a)C .275 -(re ignored.)-2.775 F(When)5.275 E F22.775 E F0 .275(is supplied) -2.775 F(without)144 96 Q F1(name)4.814 E F0(ar)4.814 E 2.314 -(guments, it will display the attrib)-.18 F 2.314(utes and v)-.2 F 2.313 -(alues of all v)-.25 F 2.313(ariables ha)-.25 F 2.313(ving the)-.2 F -(attrib)144 108 Q 1.181(utes speci\214ed by the additional options.)-.2 -F 1.182(If no other options are supplied with)6.181 F F23.682 E F0 -(,)A F2(declar)3.682 E(e)-.18 E F0 .62(will display the attrib)144 120 R +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(declar)108 84 Q(e)-.18 E F0([)2.5 E F1(\255aAfFgilnrtux)A F0 2.5(][)C +F1-2.5 E F0 2.5(][)C/F2 10/Times-Italic@0 SF(name)-2.5 E F0([=)A +F2(value)A F0 2.5(].)C(..])-2.5 E F1(typeset)108 96 Q F0([)2.5 E F1 +(\255aAfFgilnrtux)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.265(Declare v)144 108 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 120 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 132 Q F2(name)2.775 E F0 +(ar)2.775 E .275(guments, additional options, other than)-.18 F F1 +2.775 E F0(and)2.775 E F12.775 E F0 2.775(,a)C .274(re ignored.) +-2.775 F(When)5.274 E F12.774 E F0 .274(is supplied)2.774 F +(without)144 144 Q F2(name)4.813 E F0(ar)4.813 E 2.313 +(guments, it will display the attrib)-.18 F 2.314(utes and v)-.2 F 2.314 +(alues of all v)-.25 F 2.314(ariables ha)-.25 F 2.314(ving the)-.2 F +(attrib)144 156 Q 1.182(utes speci\214ed by the additional options.)-.2 +F 1.181(If no other options are supplied with)6.182 F F13.681 E F0 +(,)A F1(declar)3.681 E(e)-.18 E F0 .62(will display the attrib)144 168 R .62(utes and v)-.2 F .62(alues of all shell v)-.25 F 3.12(ariables. The) --.25 F F23.12 E F0 .62(option will restrict the display)3.12 F -1.29(to shell functions.)144 132 R(The)6.29 E F23.79 E F0 1.291(o\ -ption inhibits the display of function de\214nitions; only the function) -3.791 F .948(name and attrib)144 144 R .948(utes are printed.)-.2 F .948 -(If the)5.948 F F2(extdeb)3.448 E(ug)-.2 E F0 .948 -(shell option is enabled using)3.448 F F2(shopt)3.448 E F0 3.448(,t)C +-.25 F F13.12 E F0 .62(option will restrict the display)3.12 F +1.291(to shell functions.)144 180 R(The)6.291 E F13.791 E F0 1.291 +(option inhibits the display of function de\214nitions; only the functi\ +on)3.791 F .948(name and attrib)144 192 R .948(utes are printed.)-.2 F +.948(If the)5.948 F F1(extdeb)3.448 E(ug)-.2 E F0 .948 +(shell option is enabled using)3.448 F F1(shopt)3.448 E F0 3.448(,t)C .948(he source)-3.448 F 1.69(\214le name and line number where each)144 -156 R F1(name)4.19 E F0 1.69(is de\214ned are displayed as well.)4.19 F -(The)6.69 E F24.19 E F0(option)4.19 E(implies)144 168 Q F2 -3.892 E F0 6.392(.T)C(he)-6.392 E F23.892 E F0 1.391 -(option forces v)3.892 F 1.391 +204 R F2(name)4.19 E F0 1.69(is de\214ned are displayed as well.)4.19 F +(The)6.69 E F14.19 E F0(option)4.19 E(implies)144 216 Q F1 +3.891 E F0 6.391(.T)C(he)-6.391 E F13.891 E F0 1.391 +(option forces v)3.891 F 1.391 (ariables to be created or modi\214ed at the global scope, e)-.25 F -.15 -(ve)-.25 G(n).15 E(when)144 180 Q F2(declar)4.382 E(e)-.18 E F0 1.882 -(is e)4.382 F -.15(xe)-.15 G 1.882(cuted in a shell function.).15 F -1.883(It is ignored in all other cases.)6.882 F 1.883(The follo)6.883 F -(wing)-.25 E .794(options can be used to restrict output to v)144 192 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 204 Q(utes:)-.2 E F2 -144 216 Q F0(Each)180 216 Q F1(name)2.5 E F0(is an inde)2.5 E -.15 -(xe)-.15 G 2.5(da).15 G(rray v)-2.5 E(ariable \(see)-.25 E F2(Arrays)2.5 -E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F2144 228 Q F0(Each)180 -228 Q F1(name)2.5 E F0(is an associati)2.5 E .3 -.15(ve a)-.25 H(rray v) -.15 E(ariable \(see)-.25 E F2(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G -(\).).15 E F2144 240 Q F0(Use function names only)180 240 Q(.)-.65 -E F2144 252 Q F0 .557(The v)180 252 R .558 +(ve)-.25 G(n).15 E(when)144 228 Q F1(declar)4.383 E(e)-.18 E F0 1.883 +(is e)4.383 F -.15(xe)-.15 G 1.883(cuted in a shell function.).15 F +1.882(It is ignored in all other cases.)6.883 F 1.882(The follo)6.882 F +(wing)-.25 E .793(options can be used to restrict output to v)144 240 R +.794(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 252 Q(utes:)-.2 E F1 +144 264 Q F0(Each)180 264 Q F2(name)2.5 E F0(is an inde)2.5 E -.15 +(xe)-.15 G 2.5(da).15 G(rray v)-2.5 E(ariable \(see)-.25 E F1(Arrays)2.5 +E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F1144 276 Q F0(Each)180 +276 Q F2(name)2.5 E F0(is an associati)2.5 E .3 -.15(ve a)-.25 H(rray v) +.15 E(ariable \(see)-.25 E F1(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G +(\).).15 E F1144 288 Q F0(Use function names only)180 288 Q(.)-.65 +E F1144 300 Q F0 .558(The v)180 300 R .558 (ariable is treated as an inte)-.25 F .558(ger; arithmetic e)-.15 F -.25 -(va)-.25 G .558(luation \(see).25 F/F3 9/Times-Bold@0 SF .558 -(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)180 264 Q F0(abo)2.25 +(va)-.25 G .558(luation \(see).25 F/F3 9/Times-Bold@0 SF .557 +(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)180 312 Q F0(abo)2.25 E -.15(ve)-.15 G 2.5(\)i).15 G 2.5(sp)-2.5 G(erformed when the v)-2.5 E -(ariable is assigned a v)-.25 E(alue.)-.25 E F2144 276 Q F0 .91 -(When the v)180 276 R .909(ariable is assigned a v)-.25 F .909 +(ariable is assigned a v)-.25 E(alue.)-.25 E F1144 324 Q F0 .909 +(When the v)180 324 R .909(ariable is assigned a v)-.25 F .909 (alue, all upper)-.25 F .909(-case characters are con)-.2 F -.15(ve)-.4 -G .909(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 288 R -(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F2144 300 Q -F0(Gi)180 300 Q 1.619 -.15(ve e)-.25 H(ach).15 E F1(name)3.819 E F0(the) -3.819 E F1(namer)3.819 E(ef)-.37 E F0(attrib)3.819 E 1.319 +G .91(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 336 R(upper) +2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 348 Q F0(Gi) +180 348 Q 1.62 -.15(ve e)-.25 H(ach).15 E F2(name)3.82 E F0(the)3.82 E +F2(namer)3.819 E(ef)-.37 E F0(attrib)3.819 E 1.319 (ute, making it a name reference to another v)-.2 F(ariable.)-.25 E -1.519(That other v)180 312 R 1.519(ariable is de\214ned by the v)-.25 F -1.518(alue of)-.25 F F1(name)4.018 E F0 6.518(.A)C 1.518 -(ll references, assignments, and)-6.518 F(attrib)180 324 Q .27 -(ute modi\214cations to)-.2 F F1(name)2.77 E F0 2.77(,e)C .27 -(xcept for changing the)-2.92 F F22.77 E F0(attrib)2.77 E .27 -(ute itself, are performed)-.2 F .895(on the v)180 336 R .895 -(ariable referenced by)-.25 F F1(name)3.395 E F0 1.995 -.55('s v)D 3.395 -(alue. The).3 F .894(nameref attrib)3.395 F .894 -(ute cannot be applied to)-.2 F(array v)180 348 Q(ariables.)-.25 E F2 -144 360 Q F0(Mak)180 360 Q(e)-.1 E F1(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 -(alues by subsequent)-.25 F(assignment statements or unset.)180 372 Q F2 -144 384 Q F0(Gi)180 384 Q .73 -.15(ve e)-.25 H(ach).15 E F1(name) -2.93 E F0(the)2.929 E F1(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 F2(DEB)2.929 E(UG) --.1 E F0(and)2.929 E F2(RETURN)2.929 E F0(traps from the calling shell.) -180 396 Q(The trace attrib)5 E(ute has no special meaning for v)-.2 E -(ariables.)-.25 E F2144 408 Q F0 .909(When the v)180 408 R .909 +1.518(That other v)180 360 R 1.518(ariable is de\214ned by the v)-.25 F +1.519(alue of)-.25 F F2(name)4.019 E F0 6.519(.A)C 1.519 +(ll references, assignments, and)-6.519 F(attrib)180 372 Q .27 +(ute modi\214cations to)-.2 F F2(name)2.77 E F0 2.77(,e)C .27 +(xcept for changing the)-2.92 F F12.77 E F0(attrib)2.77 E .27 +(ute itself, are performed)-.2 F .894(on the v)180 384 R .894 +(ariable referenced by)-.25 F F2(name)3.394 E F0 1.995 -.55('s v)D 3.395 +(alue. The).3 F .895(nameref attrib)3.395 F .895 +(ute cannot be applied to)-.2 F(array v)180 396 Q(ariables.)-.25 E F1 +144 408 Q F0(Mak)180 408 Q(e)-.1 E F2(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 420 Q F1 +144 432 Q F0(Gi)180 432 Q .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.93 E F1(RETURN)2.93 E F0(traps from the calling shell.) +180 444 Q(The trace attrib)5 E(ute has no special meaning for v)-.2 E +(ariables.)-.25 E F1144 456 Q F0 .91(When the v)180 456 R .909 (ariable is assigned a v)-.25 F .909(alue, all lo)-.25 F(wer)-.25 E .909 -(-case characters are con)-.2 F -.15(ve)-.4 G .91(rted to upper).15 F(-) --.2 E 2.5(case. The)180 420 R(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E -(ute is disabled.)-.2 E F2144 432 Q F0(Mark)180 432 Q F1(name)2.5 +(-case characters are con)-.2 F -.15(ve)-.4 G .909(rted to upper).15 F +(-)-.2 E 2.5(case. The)180 468 R(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E +(ute is disabled.)-.2 E F1144 480 Q F0(Mark)180 480 Q F2(name)2.5 E F0 2.5(sf)C(or e)-2.5 E(xport to subsequent commands via the en)-.15 E -(vironment.)-.4 E .121(Using `+' instead of `\255' turns of)144 448.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 F2(+a)2.62 E F0 .12(may not be used)2.62 F -.644(to destro)144 460.8 R 3.144(ya)-.1 G 3.144(na)-3.144 G .644(rray v) --3.144 F .644(ariable and)-.25 F F2(+r)3.145 E F0 .645(will not remo) -3.145 F .945 -.15(ve t)-.15 H .645(he readonly attrib).15 F 3.145 -(ute. When)-.2 F .645(used in a func-)3.145 F(tion,)144 472.8 Q F2 -(declar)2.835 E(e)-.18 E F0(and)2.835 E F2(typeset)2.835 E F0(mak)2.835 -E 2.835(ee)-.1 G(ach)-2.835 E F1(name)2.835 E F0 .335 -(local, as with the)2.835 F F2(local)2.835 E F0 .335 -(command, unless the)2.835 F F22.835 E F0(option)2.835 E 1.282 -(is supplied.)144 484.8 R 1.282(If a v)6.282 F 1.283 -(ariable name is follo)-.25 F 1.283(wed by =)-.25 F F1(value)A F0 3.783 -(,t)C 1.283(he v)-3.783 F 1.283(alue of the v)-.25 F 1.283 -(ariable is set to)-.25 F F1(value)3.783 E F0(.)A .927(When using)144 -496.8 R F23.427 E F0(or)3.427 E F23.427 E F0 .926 -(and the compound assignment syntax to create array v)3.427 F .926 -(ariables, additional)-.25 F(attrib)144 508.8 Q .592(utes do not tak)-.2 +(vironment.)-.4 E .12(Using `+' instead of `\255' turns of)144 496.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 +.645(to destro)144 508.8 R 3.145(ya)-.1 G 3.145(na)-3.145 G .645(rray v) +-3.145 F .645(ariable and)-.25 F F1(+r)3.145 E F0 .645(will not remo) +3.145 F .945 -.15(ve t)-.15 H .645(he readonly attrib).15 F 3.144 +(ute. When)-.2 F .644(used in a func-)3.144 F(tion,)144 520.8 Q F1 +(declar)2.835 E(e)-.18 E F0(and)2.835 E F1(typeset)2.835 E F0(mak)2.835 +E 2.835(ee)-.1 G(ach)-2.835 E F2(name)2.835 E F0 .335 +(local, as with the)2.835 F F1(local)2.835 E F0 .335 +(command, unless the)2.835 F F12.835 E F0(option)2.835 E 1.283 +(is supplied.)144 532.8 R 1.283(If a v)6.283 F 1.283 +(ariable name is follo)-.25 F 1.283(wed by =)-.25 F F2(value)A F0 3.783 +(,t)C 1.283(he v)-3.783 F 1.283(alue of the v)-.25 F 1.282 +(ariable is set to)-.25 F F2(value)3.782 E F0(.)A .926(When using)144 +544.8 R F13.426 E F0(or)3.426 E F13.426 E F0 .927 +(and the compound assignment syntax to create array v)3.426 F .927 +(ariables, additional)-.25 F(attrib)144 556.8 Q .592(utes do not tak)-.2 F 3.092(ee)-.1 G -.25(ff)-3.092 G .592 (ect until subsequent assignments.).25 F .592(The return v)5.592 F .592 (alue is 0 unless an in)-.25 F -.25(va)-.4 G(lid).25 E .429 (option is encountered, an attempt is made to de\214ne a function using) -144 520.8 R/F4 10/Courier@0 SF .428(\255f foo=bar)2.929 F F0 2.928(,a)C -2.928(na)-2.928 G .428(ttempt is)-2.928 F .062(made to assign a v)144 -532.8 R .062(alue to a readonly v)-.25 F .063 -(ariable, an attempt is made to assign a v)-.25 F .063 +144 568.8 R/F4 10/Courier@0 SF .429(\255f foo=bar)2.929 F F0 2.929(,a)C +2.929(na)-2.929 G .429(ttempt is)-2.929 F .063(made to assign a v)144 +580.8 R .063(alue to a readonly v)-.25 F .062 +(ariable, an attempt is made to assign a v)-.25 F .062 (alue to an array v)-.25 F(ari-)-.25 E .102 -(able without using the compound assignment syntax \(see)144 544.8 R F2 +(able without using the compound assignment syntax \(see)144 592.8 R F1 (Arrays)2.602 E F0(abo)2.602 E -.15(ve)-.15 G .102(\), one of the).15 F -F1(names)2.602 E F0 .101(is not a)2.602 F -.25(va)144 556.8 S .171 +F2(names)2.602 E F0 .102(is not a)2.602 F -.25(va)144 604.8 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 -(ariable, an)-.25 F .96(attempt is made to turn of)144 568.8 R 3.46(fa) +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 616.8 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 580.8 Q -(xistent function with)-.15 E F22.5 E F0(.)A F2 -(dirs [\255clpv] [+)108 597.6 Q F1(n)A F2 2.5(][)C-2.5 E F1(n)A F2 -(])A F0 -.4(Wi)144 609.6 S .328 +(ariable, or an attempt is made to display a)-.25 F(non-e)144 628.8 Q +(xistent function with)-.15 E F12.5 E F0(.)A F1 +(dirs [\255clpv] [+)108 645.6 Q F2(n)A F1 2.5(][)C-2.5 E F2(n)A F1 +(])A F0 -.4(Wi)144 657.6 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 -(single line with directory names separated by spaces.)144 621.6 R 1.238 -(Directories are added to the list with the)6.238 F F2(pushd)144 633.6 Q -F0 2.003(command; the)4.503 F F2(popd)4.503 E F0 2.003(command remo) +.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 669.6 R 1.238 +(Directories are added to the list with the)6.238 F F1(pushd)144 681.6 Q +F0 2.003(command; the)4.504 F F1(popd)4.503 E F0 2.003(command remo) 4.503 F -.15(ve)-.15 G 4.503(se).15 G 2.003(ntries from the list.)-4.503 -F 2.003(The current directory is)7.003 F(al)144 645.6 Q -.1(wa)-.1 G -(ys the \214rst directory in the stack.).1 E F2144 657.6 Q F0 -(Clears the directory stack by deleting all of the entries.)180 657.6 Q -F2144 669.6 Q F0 .882 -(Produces a listing using full pathnames; the def)180 669.6 R .881 +F 2.003(The current directory is)7.003 F(al)144 693.6 Q -.1(wa)-.1 G +(ys the \214rst directory in the stack.).1 E F1144 705.6 Q F0 +(Clears the directory stack by deleting all of the entries.)180 705.6 Q +F1144 717.6 Q F0 .881 +(Produces a listing using full pathnames; the def)180 717.6 R .882 (ault listing format uses a tilde to denote)-.1 F(the home directory)180 -681.6 Q(.)-.65 E F2144 693.6 Q F0 -(Print the directory stack with one entry per line.)180 693.6 Q F2 -144 705.6 Q F0 .272(Print the directory stack with one entry per line, \ -pre\214xing each entry with its inde)180 705.6 R 2.773(xi)-.15 G 2.773 -(nt)-2.773 G(he)-2.773 E(stack.)180 717.6 Q(GNU Bash 4.4)72 768 Q -(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(58)185.545 E 0 Cg EP +729.6 Q(.)-.65 E(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(58) +190.95 E 0 Cg EP %%Page: 59 59 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(+)144 84 Q/F2 10/Times-Italic@0 SF(n)A F0 1.565(Displays the)180 84 R -F2(n)4.065 E F0 1.565(th entry counting from the left of the list sho)B -1.564(wn by)-.25 F F1(dirs)4.064 E F0 1.564(when in)4.064 F -.2(vo)-.4 G --.1(ke).2 G(d).1 E(without options, starting with zero.)180 96 Q F1 -144 108 Q F2(n)A F0 1.194(Displays the)180 108 R F2(n)3.694 E F0 1.194 +SF144 84 Q F0(Print the directory stack with one entry per line.) +180 84 Q F1144 96 Q F0 .273(Print the directory stack with one en\ +try per line, pre\214xing each entry with its inde)180 96 R 2.772(xi) +-.15 G 2.772(nt)-2.772 G(he)-2.772 E(stack.)180 108 Q F1(+)144 120 Q/F2 +10/Times-Italic@0 SF(n)A F0 1.564(Displays the)180 120 R 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(without options, starting with zero.)180 132 Q F1144 144 Q F2(n)A +F0 1.194(Displays the)180 144 R F2(n)3.694 E F0 1.194 (th entry counting from the right of the list sho)B 1.194(wn by)-.25 F F1(dirs)3.694 E F0 1.194(when in)3.694 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E -(without options, starting with zero.)180 120 Q .258(The return v)144 -136.8 R .258(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258 +(without options, starting with zero.)180 156 Q .257(The return v)144 +172.8 R .258(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258 (lid option is supplied or).25 F F2(n)2.758 E F0(inde)2.758 E -.15(xe) -.15 G 2.758(sb).15 G -.15(ey)-2.758 G .258(ond the end of the direc-) -.15 F(tory stack.)144 148.8 Q F1(diso)108 165.6 Q(wn)-.1 E F0([)2.5 E F1 +.15 F(tory stack.)144 184.8 Q F1(diso)108 201.6 Q(wn)-.1 E F0([)2.5 E F1 (\255ar)A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(jobspec)-2.5 E F0 -(... |)2.5 E F2(pid)2.5 E F0(... ])2.5 E -.4(Wi)144 177.6 S .121 +(... |)2.5 E F2(pid)2.5 E F0(... ])2.5 E -.4(Wi)144 213.6 S .122 (thout options, remo).4 F .422 -.15(ve e)-.15 H(ach).15 E F2(jobspec) 4.362 E F0 .122(from the table of acti)2.932 F .422 -.15(ve j)-.25 H -2.622(obs. If).15 F F2(jobspec)4.362 E F0 .122(is not present, and)2.932 -F .096(neither the)144 189.6 R F12.596 E F0 .096(nor the)2.596 F +2.622(obs. If).15 F F2(jobspec)4.362 E F0 .121(is not present, and)2.932 +F .096(neither the)144 225.6 R F12.596 E F0 .096(nor the)2.596 F F12.596 E F0 .096(option is supplied, the)2.596 F F2(curr)2.596 E .096(ent job)-.37 F F0 .096(is used.)2.596 F .096(If the)5.096 F F1 2.596 E F0 .096(option is gi)2.596 F -.15(ve)-.25 G .096(n, each) -.15 F F2(jobspec)145.74 201.6 Q F0 .585(is not remo)3.395 F -.15(ve)-.15 -G 3.085(df).15 G .585(rom the table, b)-3.085 F .585(ut is mark)-.2 F -.585(ed so that)-.1 F/F3 9/Times-Bold@0 SF(SIGHUP)3.085 E F0 .586 -(is not sent to the job if the)2.835 F .962(shell recei)144 213.6 R -.15 +.15 F F2(jobspec)145.74 237.6 Q F0 .586(is not remo)3.396 F -.15(ve)-.15 +G 3.086(df).15 G .585(rom the table, b)-3.086 F .585(ut is mark)-.2 F +.585(ed so that)-.1 F/F3 9/Times-Bold@0 SF(SIGHUP)3.085 E F0 .585 +(is not sent to the job if the)2.835 F .962(shell recei)144 249.6 R -.15 (ve)-.25 G 3.462(sa).15 G F3(SIGHUP)A/F4 9/Times-Roman@0 SF(.)A F0 .962 (If no)5.462 F F2(jobspec)5.202 E F0 .962(is supplied, the)3.772 F F1 3.462 E F0 .962(option means to remo)3.462 F 1.262 -.15(ve o)-.15 -H 3.462(rm).15 G .962(ark all)-3.462 F 1.358(jobs; the)144 225.6 R F1 -3.858 E F0 1.358(option without a)3.858 F F2(jobspec)5.598 E F0 -(ar)4.169 E 1.359(gument restricts operation to running jobs.)-.18 F -1.359(The return)6.359 F -.25(va)144 237.6 S(lue is 0 unless a).25 E F2 +H 3.462(rm).15 G .962(ark all)-3.462 F 1.359(jobs; the)144 261.6 R F1 +3.859 E F0 1.359(option without a)3.859 F F2(jobspec)5.599 E F0 +(ar)4.169 E 1.358(gument restricts operation to running jobs.)-.18 F +1.358(The return)6.358 F -.25(va)144 273.6 S(lue is 0 unless a).25 E F2 (jobspec)4.24 E F0(does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E -F1(echo)108 254.4 Q F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g) --.37 E F0(...])2.5 E .425(Output the)144 266.4 R F2(ar)2.925 E(g)-.37 E +F1(echo)108 290.4 Q F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g) +-.37 E F0(...])2.5 E .424(Output the)144 302.4 R F2(ar)2.924 E(g)-.37 E F0 .424(s, separated by spaces, follo)B .424(wed by a ne)-.25 F 2.924 -(wline. The)-.25 F .424(return status is 0 unless a write)2.924 F .307 -(error occurs.)144 278.4 R(If)5.307 E F12.807 E F0 .307 -(is speci\214ed, the trailing ne)2.807 F .308(wline is suppressed.)-.25 -F .308(If the)5.308 F F12.808 E F0 .308(option is gi)2.808 F -.15 -(ve)-.25 G .308(n, inter).15 F(-)-.2 E 1.349(pretation of the follo)144 -290.4 R 1.348(wing backslash-escaped characters is enabled.)-.25 F(The) -6.348 E F13.848 E F0 1.348(option disables the)3.848 F 1.054 -(interpretation of these escape characters, e)144 302.4 R -.15(ve)-.25 G -3.555(no).15 G 3.555(ns)-3.555 G 1.055(ystems where the)-3.555 F 3.555 -(ya)-.15 G 1.055(re interpreted by def)-3.555 F(ault.)-.1 E(The)144 -314.4 Q F1(xpg_echo)3.459 E F0 .959 -(shell option may be used to dynamically determine whether or not)3.459 -F F1(echo)3.458 E F0 -.15(ex)3.458 G(pands).15 E .715 -(these escape characters by def)144 326.4 R(ault.)-.1 E F1(echo)5.715 E -F0 .716(does not interpret)3.215 F F13.216 E F0 .716 -(to mean the end of options.)3.216 F F1(echo)5.716 E F0 -(interprets the follo)144 338.4 Q(wing escape sequences:)-.25 E F1(\\a) -144 350.4 Q F0(alert \(bell\))180 350.4 Q F1(\\b)144 362.4 Q F0 -(backspace)180 362.4 Q F1(\\c)144 374.4 Q F0(suppress further output)180 -374.4 Q F1(\\e)144 386.4 Q(\\E)144 398.4 Q F0(an escape character)180 -398.4 Q F1(\\f)144 410.4 Q F0(form feed)180 410.4 Q F1(\\n)144 422.4 Q -F0(ne)180 422.4 Q 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 434.4 Q F0 -(carriage return)180 434.4 Q F1(\\t)144 446.4 Q F0(horizontal tab)180 -446.4 Q F1(\\v)144 458.4 Q F0 -.15(ve)180 458.4 S(rtical tab).15 E F1 -(\\\\)144 470.4 Q F0(backslash)180 470.4 Q F1(\\0)144 482.4 Q F2(nnn)A -F0(the eight-bit character whose v)180 482.4 Q(alue is the octal v)-.25 +(wline. The)-.25 F .424(return status is 0 unless a write)2.924 F .308 +(error occurs.)144 314.4 R(If)5.308 E F12.808 E F0 .308 +(is speci\214ed, the trailing ne)2.808 F .308(wline is suppressed.)-.25 +F .307(If the)5.308 F F12.807 E F0 .307(option is gi)2.807 F -.15 +(ve)-.25 G .307(n, inter).15 F(-)-.2 E 1.348(pretation of the follo)144 +326.4 R 1.348(wing backslash-escaped characters is enabled.)-.25 F(The) +6.348 E F13.849 E F0 1.349(option disables the)3.849 F 1.055 +(interpretation of these escape characters, e)144 338.4 R -.15(ve)-.25 G +3.555(no).15 G 3.555(ns)-3.555 G 1.055(ystems where the)-3.555 F 3.554 +(ya)-.15 G 1.054(re interpreted by def)-3.554 F(ault.)-.1 E(The)144 +350.4 Q F1(xpg_echo)3.458 E F0 .959 +(shell option may be used to dynamically determine whether or not)3.458 +F F1(echo)3.459 E F0 -.15(ex)3.459 G(pands).15 E .716 +(these escape characters by def)144 362.4 R(ault.)-.1 E F1(echo)5.716 E +F0 .716(does not interpret)3.216 F F13.216 E F0 .715 +(to mean the end of options.)3.216 F F1(echo)5.715 E F0 +(interprets the follo)144 374.4 Q(wing escape sequences:)-.25 E F1(\\a) +144 386.4 Q F0(alert \(bell\))180 386.4 Q F1(\\b)144 398.4 Q F0 +(backspace)180 398.4 Q F1(\\c)144 410.4 Q F0(suppress further output)180 +410.4 Q F1(\\e)144 422.4 Q(\\E)144 434.4 Q F0(an escape character)180 +434.4 Q F1(\\f)144 446.4 Q F0(form feed)180 446.4 Q F1(\\n)144 458.4 Q +F0(ne)180 458.4 Q 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 470.4 Q F0 +(carriage return)180 470.4 Q F1(\\t)144 482.4 Q F0(horizontal tab)180 +482.4 Q F1(\\v)144 494.4 Q F0 -.15(ve)180 494.4 S(rtical tab).15 E F1 +(\\\\)144 506.4 Q F0(backslash)180 506.4 Q F1(\\0)144 518.4 Q F2(nnn)A +F0(the eight-bit character whose v)180 518.4 Q(alue is the octal v)-.25 E(alue)-.25 E F2(nnn)2.5 E F0(\(zero to three octal digits\))2.5 E F1 -(\\x)144 494.4 Q F2(HH)A F0(the eight-bit character whose v)180 494.4 Q +(\\x)144 530.4 Q F2(HH)A F0(the eight-bit character whose v)180 530.4 Q (alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0 (\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E F1 -(\\u)144 506.4 Q F2(HHHH)A F0 1.507 -(the Unicode \(ISO/IEC 10646\) character whose v)180 518.4 R 1.506 -(alue is the he)-.25 F 1.506(xadecimal v)-.15 F(alue)-.25 E F2(HHHH) -4.006 E F0(\(one to four he)180 530.4 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 -(\\U)144 542.4 Q F2(HHHHHHHH)A F0 .547 -(the Unicode \(ISO/IEC 10646\) character whose v)180 554.4 R .547 -(alue is the he)-.25 F .548(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) -3.048 E(HHH)180 566.4 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G -(igits\))-2.5 E F1(enable)108 583.2 Q F0([)2.5 E F1A F0 2.5(][)C +(\\u)144 542.4 Q F2(HHHH)A F0 1.506 +(the Unicode \(ISO/IEC 10646\) character whose v)180 554.4 R 1.507 +(alue is the he)-.25 F 1.507(xadecimal v)-.15 F(alue)-.25 E F2(HHHH) +4.007 E F0(\(one to four he)180 566.4 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 +(\\U)144 578.4 Q F2(HHHHHHHH)A F0 .548 +(the Unicode \(ISO/IEC 10646\) character whose v)180 590.4 R .547 +(alue is the he)-.25 F .547(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) +3.047 E(HHH)180 602.4 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G +(igits\))-2.5 E F1(enable)108 619.2 Q F0([)2.5 E F1A F0 2.5(][)C F1(\255dnps)-2.5 E F0 2.5(][)C F1-2.5 E F2(\214lename)2.5 E F0 2.5 -(][)C F2(name)-2.5 E F0(...])2.5 E .278(Enable and disable b)144 595.2 R +(][)C F2(name)-2.5 E F0(...])2.5 E .277(Enable and disable b)144 631.2 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 607.2 R .834(uiltin to be e)-.2 F -.15 +(uiltin allo)-.2 F .278(ws a disk command which has)-.25 F .834 +(the same name as a shell b)144 643.2 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 619.2 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 631.2 R F2(names)4.082 E F0 1.582(are enabled.) +(ve)-.25 G 3.333(nt).15 G(hough)-3.333 E .989 +(the shell normally searches for b)144 655.2 R .989 +(uiltins before disk commands.)-.2 F(If)5.989 E F13.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 667.2 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 -.666(PA)4.082 -G(TH)-.189 E F0 .081(instead of the shell b)144 643.2 R .081(uiltin v) --.2 F .081(ersion, run)-.15 F/F5 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 655.2 S 1.524 -(iltin command).2 F F2(name)4.384 E F0 1.524(from shared object)4.204 F +F1(test)4.082 E F0 1.582(binary found via the)4.082 F F3 -.666(PA)4.081 +G(TH)-.189 E F0 .08(instead of the shell b)144 679.2 R .08(uiltin v)-.2 +F .08(ersion, run)-.15 F/F5 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 691.2 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 667.2 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 679.2 R F1 -2.898 E F0 .399(option is supplied, a list of shell b)2.899 F .399 +(ystems that support dynamic loading.)-4.024 F(The)144 703.2 Q F1 +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 715.2 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 -691.2 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, the list printed includes all b)144 703.2 R 1.916 -(uiltins, with an indication of whether or not each is)-.2 F 2.879 -(enabled. If)144 715.2 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 727.2 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(GNU Bash 4.4)72 -768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(59)185.545 E 0 Cg -EP +F .398(guments, the)-.18 F .098(list consists of all enabled shell b)144 +727.2 R 2.598(uiltins. If)-.2 F F12.598 E F0 .098 +(is supplied, only disabled b)2.598 F .099(uiltins are printed.)-.2 F +(If)5.099 E F12.599 E F0(GNU Bash 4.4)72 768 Q(2016 January 25) +141.79 E(59)190.95 E 0 Cg EP %%Page: 60 60 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(object.)144 84 Q -/F1 10/Times-Bold@0 SF -2.3 -.15(ev a)108 100.8 T(l).15 E F0([)2.5 E/F2 -10/Times-Italic@0 SF(ar)A(g)-.37 E F0(...])2.5 E(The)144 112.8 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 124.8 R -.15(xe)-.15 G +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.917 +(is supplied, the list printed includes all b)144 84 R 1.916 +(uiltins, with an indication of whether or not each is)-.2 F 2.878 +(enabled. If)144 96 R/F1 10/Times-Bold@0 SF2.878 E F0 .379 +(is supplied, the output is restricted to the POSIX)2.878 F/F2 10 +/Times-Italic@0 SF(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 108 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 120 Q F1 -2.3 -.15(ev a)108 +136.8 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(The)144 148.8 +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 160.8 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 136.8 Q +-2.995 F F2(ar)2.995 E(gs)-.37 E F0(,).27 E(or only null ar)144 172.8 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 153.6 Q F0([)2.5 E F1(\255cl)A F0 2.5(][)C F1-2.5 E F2 +(exec)108 189.6 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 165.6 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 177.6 R .176 +-.37 E F0(]])A(If)144 201.6 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 213.6 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 189.6 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 201.6 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 225.6 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 237.6 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 213.6 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 249.6 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 225.6 Q .876 -.15(ve s)-.25 H .576(hell e).15 F -.576(xits, unless the)-.15 F F1(execfail)3.076 E F0 .577 -(shell option is enabled.)3.077 F .577(In that case, it returns f)5.577 -F(ail-)-.1 E 2.505(ure. An)144 237.6 R(interacti)2.505 E .305 -.15(ve s) +.15 F(non-interacti)144 261.6 Q .877 -.15(ve s)-.25 H .577(hell e).15 F +.577(xits, unless the)-.15 F F1(execfail)3.077 E F0 .577 +(shell option is enabled.)3.077 F .576(In that case, it returns f)5.577 +F(ail-)-.1 E 2.505(ure. An)144 273.6 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 249.6 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 285.6 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 261.6 Q 2.5(,t)-.4 G -(he return status is 1.)-2.5 E F1(exit)108 278.4 Q F0([)2.5 E F2(n)A F0 -(])A .096(Cause the shell to e)144 278.4 R .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) --.15 F -.15(exe)144 290.4 S 2.5(cuted. A).15 F(trap on)2.5 E/F3 9 +(If there is a redirection)5.536 F(error)144 297.6 Q 2.5(,t)-.4 G +(he return status is 1.)-2.5 E F1(exit)108 314.4 Q F0([)2.5 E F2(n)A F0 +(])A .095(Cause the shell to e)144 314.4 R .095(xit with a status of) +-.15 F F2(n)2.595 E F0 5.095(.I)C(f)-5.095 E F2(n)2.955 E F0 .096 +(is omitted, the e)2.835 F .096(xit status is that of the last command) +-.15 F -.15(exe)144 326.4 S 2.5(cuted. A).15 F(trap on)2.5 E/F3 9 /Times-Bold@0 SF(EXIT)2.5 E F0(is e)2.25 E -.15(xe)-.15 G -(cuted before the shell terminates.).15 E F1(export)108 307.2 Q F0([)2.5 +(cuted before the shell terminates.).15 E F1(export)108 343.2 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 319.2 Q F0 .256(The supplied)144 331.2 R +F0(]] ...)A F1(export \255p)108 355.2 Q F0 .257(The supplied)144 367.2 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 343.2 R(the)2.627 E F1 -2.627 E F0 .127(option is gi)2.627 F -.15(ve)-.25 G .127(n, the) +(xe)-.15 G(cuted).15 E 2.626(commands. If)144 379.2 R(the)2.626 E F1 +2.626 E F0 .127(option is gi)2.627 F -.15(ve)-.25 G .127(n, the) .15 F F2(names)2.987 E F0 .127(refer to functions.)2.897 F .127(If no) -5.127 F F2(names)2.987 E F0 .127(are gi)2.897 F -.15(ve)-.25 G .126 -(n, or if the).15 F F1144 355.2 Q F0 .048 -(option is supplied, a list of names of all e)2.547 F .048(xported v) --.15 F .048(ariables is printed.)-.25 F(The)5.048 E F12.548 E F0 -.048(option causes the)2.548 F -.15(ex)144 367.2 S 1.447 +5.127 F F2(names)2.987 E F0 .127(are gi)2.897 F -.15(ve)-.25 G .127 +(n, or if the).15 F F1144 391.2 Q F0 .048 +(option is supplied, a list of names of all e)2.548 F .048(xported v) +-.15 F .048(ariables is printed.)-.25 F(The)5.048 E F12.547 E F0 +.047(option causes the)2.547 F -.15(ex)144 403.2 S 1.446 (port property to be remo).15 F -.15(ve)-.15 G 3.947(df).15 G 1.447 (rom each)-3.947 F F2(name)3.947 E F0 6.447(.I)C 3.947(fav)-6.447 G 1.447(ariable name is follo)-4.197 F 1.447(wed by =)-.25 F F2(wor)A(d) --.37 E F0 3.946(,t)C(he)-3.946 E -.25(va)144 379.2 S .741(lue of the v) -.25 F .741(ariable is set to)-.25 F F2(wor)3.241 E(d)-.37 E F0(.)A F1 -(export)5.741 E F0 .742(returns an e)3.242 F .742 -(xit status of 0 unless an in)-.15 F -.25(va)-.4 G .742(lid option is) -.25 F .032(encountered, one of the)144 391.2 R F2(names)2.532 E F0 .032 -(is not a v)2.532 F .032(alid shell v)-.25 F .032(ariable name, or)-.25 -F F12.531 E F0 .031(is supplied with a)2.531 F F2(name)2.891 E F0 -(that)2.711 E(is not a function.)144 403.2 Q F1(fc)108 420 Q F0([)2.5 E +-.37 E F0 3.947(,t)C(he)-3.947 E -.25(va)144 415.2 S .742(lue of the v) +.25 F .742(ariable is set to)-.25 F F2(wor)3.242 E(d)-.37 E F0(.)A F1 +(export)5.742 E F0 .742(returns an e)3.242 F .741 +(xit status of 0 unless an in)-.15 F -.25(va)-.4 G .741(lid option is) +.25 F .031(encountered, one of the)144 427.2 R F2(names)2.531 E F0 .031 +(is not a v)2.531 F .032(alid shell v)-.25 F .032(ariable name, or)-.25 +F F12.532 E F0 .032(is supplied with a)2.532 F F2(name)2.892 E F0 +(that)2.712 E(is not a function.)144 439.2 Q F1(fc)108 456 Q F0([)2.5 E F1A F2(ename)2.5 E F0 2.5(][)C F1(\255lnr)-2.5 E F0 2.5(][)C F2 <8c72>-2.5 E(st)-.1 E F0 2.5(][)C F2(last)-2.5 E F0(])A F1(fc \255s)108 -432 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 .431 -(The \214rst form selects a range of commands from)144 444 R F2<8c72> -4.842 E(st)-.1 E F0(to)3.612 E F2(last)3.022 E F0 .432 -(from the history list and displays or)3.612 F .142(edits and re-e)144 -456 R -.15(xe)-.15 G .142(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs) +468 Q F0([)2.5 E F2(pat)A F0(=)A F2 -.37(re)C(p).37 E F0 2.5(][)C F2 +(cmd)-2.5 E F0(])A .432 +(The \214rst form selects a range of commands from)144 480 R F2<8c72> +4.842 E(st)-.1 E F0(to)3.612 E F2(last)3.022 E F0 .431 +(from the history list and displays or)3.612 F .141(edits and re-e)144 +492 R -.15(xe)-.15 G .141(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs) .45 G(t).1 E F0(and)3.321 E F2(last)2.731 E F0 .141 (may be speci\214ed as a string \(to locate the last command)3.321 F(be) -144 468 Q .31(ginning with that string\) or as a number \(an inde)-.15 F -2.811(xi)-.15 G .311(nto the history list, where a ne)-2.811 F -.05(ga) --.15 G(ti).05 E .611 -.15(ve n)-.25 H(umber).15 E .315(is used as an of) -144 480 R .315(fset from the current command number\).)-.25 F(If)5.315 E -F2(last)2.904 E F0 .314(is not speci\214ed it is set to the cur)3.494 F -(-)-.2 E .948(rent command for listing \(so that)144 492 R/F4 10 +144 504 Q .311(ginning with that string\) or as a number \(an inde)-.15 +F 2.811(xi)-.15 G .31(nto the history list, where a ne)-2.811 F -.05(ga) +-.15 G(ti).05 E .61 -.15(ve n)-.25 H(umber).15 E .314(is used as an of) +144 516 R .314(fset from the current command number\).)-.25 F(If)5.314 E +F2(last)2.905 E F0 .315(is not speci\214ed it is set to the cur)3.495 F +(-)-.2 E .949(rent command for listing \(so that)144 528 R/F4 10 /Courier@0 SF .948(fc \255l \25510)3.448 F F0 .948 -(prints the last 10 commands\) and to)3.448 F F2<8c72>5.359 E(st)-.1 E -F0(other)4.129 E(-)-.2 E 2.5(wise. If)144 504 R F2<8c72>4.41 E(st)-.1 E +(prints the last 10 commands\) and to)3.448 F F2<8c72>5.358 E(st)-.1 E +F0(other)4.128 E(-)-.2 E 2.5(wise. If)144 540 R F2<8c72>4.41 E(st)-.1 E F0(is not speci\214ed it is set to the pre)3.18 E -(vious command for editing and \25516 for listing.)-.25 E(The)144 528 Q +(vious command for editing and \25516 for listing.)-.25 E(The)144 564 Q F12.522 E F0 .022 (option suppresses the command numbers when listing.)2.522 F(The)5.022 E 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 540 R .438(If the)5.438 +(rses the order of).15 F .438(the commands.)144 576 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 552 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(do) +.334(the editor gi)144 588 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 -(n,).15 E .63(the v)144 564 R .63(alue of the)-.25 F F3(FCEDIT)3.13 E F0 --.25(va)2.88 G .631(riable is used, and the v).25 F .631(alue of)-.25 F -F3(EDIT)3.131 E(OR)-.162 E F0(if)2.881 E F3(FCEDIT)3.131 E F0 .631 -(is not set.)2.881 F .631(If nei-)5.631 F .951(ther v)144 576 R .951 -(ariable is set,)-.25 F F2(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 588 S(cuted.).15 E .788(In the second form,)144 612 R F2 +(If)5.335 E F2(ename)3.025 E F0 .335(is not gi)3.015 F -.15(ve)-.25 G +(n,).15 E .631(the v)144 600 R .631(alue of the)-.25 F F3(FCEDIT)3.131 E +F0 -.25(va)2.881 G .631(riable is used, and the v).25 F .631(alue of) +-.25 F F3(EDIT)3.131 E(OR)-.162 E F0(if)2.881 E F3(FCEDIT)3.13 E F0 .63 +(is not set.)2.88 F .63(If nei-)5.63 F .95(ther v)144 612 R .95 +(ariable is set,)-.25 F F2(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 624 S(cuted.).15 E .789(In the second form,)144 648 R F2 (command)3.288 E F0 .788(is re-e)3.288 F -.15(xe)-.15 G .788 (cuted after each instance of).15 F F2(pat)3.288 E F0 .788 -(is replaced by)3.288 F F2 -.37(re)3.289 G(p).37 E F0(.)A F2(Com-)5.789 -E(mand)144 624 Q F0 .347(is intepreted the same as)2.847 F F2<8c72>2.847 +(is replaced by)3.288 F F2 -.37(re)3.288 G(p).37 E F0(.)A F2(Com-)5.788 +E(mand)144 660 Q F0 .346(is intepreted the same as)2.846 F F2<8c72>2.847 E(st)-.1 E F0(abo)2.847 E -.15(ve)-.15 G 5.347(.A).15 G .347 -(useful alias to use with this is)-2.5 F F4 .346(r='fc \255s')2.847 F F0 -2.846(,s)C 2.846(ot)-2.846 G(hat)-2.846 E(typing)144 636 Q F4 7.165(rc) -3.665 G(c)-7.165 E F0 1.165(runs the last command be)3.665 F 1.166 -(ginning with)-.15 F F4(cc)3.666 E F0 1.166(and typing)3.666 F F4(r) -3.666 E F0(re-e)3.666 E -.15(xe)-.15 G 1.166(cutes the last com-).15 F -(mand.)144 648 Q .142(If the \214rst form is used, the return v)144 672 +(useful alias to use with this is)-2.5 F F4 .347(r='fc \255s')2.847 F F0 +2.847(,s)C 2.847(ot)-2.847 G(hat)-2.847 E(typing)144 672 Q F4 7.166(rc) +3.666 G(c)-7.166 E F0 1.166(runs the last command be)3.666 F 1.166 +(ginning with)-.15 F F4(cc)3.666 E F0 1.165(and typing)3.666 F F4(r) +3.665 E F0(re-e)3.665 E -.15(xe)-.15 G 1.165(cutes the last com-).15 F +(mand.)144 684 Q .142(If the \214rst form is used, the return v)144 708 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 .454(specify history lines out of range.)144 684 R +E F2(last)2.732 E F0 .455(specify history lines out of range.)144 720 R .454(If the)5.454 F F12.954 E F0 .454 -(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 696 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 -.787(If the)5.787 F 1.135 -(second form is used, the return status is that of the command re-e)144 -708 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 720 Q -(alid history line, in which case)-.25 E F1(fc)2.5 E F0(returns f)2.5 E -(ailure.)-.1 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G -(mber 16).15 E(60)185.545 E 0 Cg EP +(option is supplied, the return v)2.954 F .454(alue is the v)-.25 F .454 +(alue of the)-.25 F(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(60) +190.95 E 0 Cg EP %%Page: 61 61 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(fg)108 84 Q F0([)2.5 E/F2 10/Times-Italic@0 SF(jobspec)A F0(])A -(Resume)144 96 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.413(is not present, the)4.223 F(shell')144 108 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 120 Q .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 132 Q F0(does not specify a v)2.81 E(alid job or)-.25 -E F2(jobspec)4.24 E F0(speci\214es a job that w)2.81 E -(as started without job control.)-.1 E F1(getopts)108 148.8 Q F2 -(optstring name)2.5 E F0([)2.5 E F2(ar)A(gs)-.37 E F0(])A F1(getopts)144 -160.8 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 172.8 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 184.8 Q .578 -(gument, which should be separated from it by white space.)-.18 F .579 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .787 +(last command e)144 84 R -.15(xe)-.15 G .787(cuted or f).15 F .788 +(ailure if an error occurs with the temporary \214le of commands.)-.1 F +.788(If the)5.788 F 1.136 +(second form is used, the return status is that of the command re-e)144 +96 R -.15(xe)-.15 G 1.135(cuted, unless).15 F/F1 10/Times-Italic@0 SF +(cmd)3.835 E F0 1.135(does not)4.405 F(specify a v)144 108 Q +(alid history line, in which case)-.25 E/F2 10/Times-Bold@0 SF(fc)2.5 E +F0(returns f)2.5 E(ailure.)-.1 E F2(fg)108 124.8 Q F0([)2.5 E F1 +(jobspec)A F0(])A(Resume)144 136.8 Q F1(jobspec)5.653 E F0 1.413 +(in the fore)4.223 F 1.413(ground, and mak)-.15 F 3.913(ei)-.1 G 3.913 +(tt)-3.913 G 1.413(he current job)-3.913 F 6.413(.I)-.4 G(f)-6.413 E F1 +(jobspec)5.653 E F0 1.414(is not present, the)4.223 F(shell')144 148.8 Q +3.117(sn)-.55 G .617(otion of the)-3.117 F F1(curr)3.117 E .617(ent job) +-.37 F F0 .617(is used.)3.117 F .617(The return v)5.617 F .616 +(alue is that of the command placed into the)-.25 F(fore)144 160.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 +(hen run with job control enabled, if)-2.862 F F1(jobspec)145.74 172.8 Q +F0(does not specify a v)2.81 E(alid job or)-.25 E F1(jobspec)4.24 E F0 +(speci\214es a job that w)2.81 E(as started without job control.)-.1 E +F2(getopts)108 189.6 Q F1(optstring name)2.5 E F0([)2.5 E F1(ar)A(gs) +-.37 E F0(])A F2(getopts)144 201.6 Q F0 .793 +(is used by shell procedures to parse positional parameters.)3.294 F F1 +(optstring)6.023 E F0 .793(contains the option)3.513 F .149 +(characters to be recognized; if a character is follo)144 213.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 225.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 196.8 R 1.665 -(Each time it is in)6.665 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F1(getopts) -4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .796 -(option in the shell v)144 208.8 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 220.8 Q .085 +(acters may not be used as option characters.)144 237.6 R 1.665 +(Each time it is in)6.665 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F2(getopts) +4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .797 +(option in the shell v)144 249.6 R(ariable)-.25 E F1(name)3.297 E F0 +3.297(,i).18 G(nitializing)-3.297 E F1(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 261.6 Q .085 (gument to be processed into the v)-.18 F(ariable)-.25 E/F3 9 /Times-Bold@0 SF(OPTIND)2.585 E/F4 9/Times-Roman@0 SF(.)A F3(OPTIND) -4.585 E F0 .085(is initialized to 1 each time the shell)2.335 F .845 -(or a shell script is in)144 232.8 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 F1 -(getopts)3.346 E F0 .846(places that ar)3.346 F(gument)-.18 E .804 -(into the v)144 244.8 R(ariable)-.25 E F3(OPT)3.304 E(ARG)-.81 E F4(.)A -F0 .803(The shell does not reset)5.304 F F3(OPTIND)3.303 E F0 .803 -(automatically; it must be manually)3.053 F .293 -(reset between multiple calls to)144 256.8 R F1(getopts)2.793 E F0 .293 +4.585 E F0 .085(is initialized to 1 each time the shell)2.335 F .846 +(or a shell script is in)144 273.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 F2 +(getopts)3.345 E F0 .845(places that ar)3.345 F(gument)-.18 E .803 +(into the v)144 285.6 R(ariable)-.25 E F3(OPT)3.303 E(ARG)-.81 E F4(.)A +F0 .803(The shell does not reset)5.303 F F3(OPTIND)3.303 E F0 .804 +(automatically; it must be manually)3.054 F .294 +(reset between multiple calls to)144 297.6 R F2(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 268.8 -Q 2.044(When the end of options is encountered,)144 292.8 R F1(getopts) -4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.043 -(alue greater than zero.)-.25 F F3(OPTIND)144 304.8 Q F0 +2.793(ws)-.25 G .293(et of parameters)-2.793 F(is to be used.)144 309.6 +Q 2.043(When the end of options is encountered,)144 333.6 R F2(getopts) +4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.044 +(alue greater than zero.)-.25 F F3(OPTIND)144 345.6 Q F0 (is set to the inde)2.25 E 2.5(xo)-.15 G 2.5(ft)-2.5 G -(he \214rst non-option ar)-2.5 E(gument, and)-.18 E F2(name)2.5 E F0 -(is set to ?.)2.5 E F1(getopts)144 328.8 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 F1(getopts)144 -340.8 Q F0(parses those instead.)2.5 E F1(getopts)144 364.8 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.07 -(reporting is used.)144 376.8 R 1.071 -(In normal operation, diagnostic messages are printed when in)6.07 F --.25(va)-.4 G 1.071(lid options or).25 F .394(missing option ar)144 -388.8 R .394(guments are encountered.)-.18 F .394(If the v)5.394 F -(ariable)-.25 E F3(OPTERR)2.894 E F0 .394 -(is set to 0, no error messages)2.644 F(will be displayed, e)144 400.8 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 424.8 R --.25(va)-.4 G .666(lid option is seen,).25 F F1(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 -436.8 R F3(OPT)2.9 E(ARG)-.81 E F4(.)A F0(If)4.899 E F1(getopts)2.899 E -F0 .399(is silent, the option character found is placed in)2.899 F F3 -(OPT)2.899 E(ARG)-.81 E F0 .399(and no)2.649 F -(diagnostic message is printed.)144 448.8 Q 1.241(If a required ar)144 -472.8 R 1.241(gument is not found, and)-.18 F F1(getopts)3.741 E F0 -1.241(is not silent, a question mark \()3.741 F F1(?).833 E F0 3.742 -(\)i).833 G 3.742(sp)-3.742 G 1.242(laced in)-3.742 F F2(name)144 484.8 -Q F0(,).18 E F3(OPT)2.735 E(ARG)-.81 E F0 .234 -(is unset, and a diagnostic message is printed.)2.485 F(If)5.234 E F1 -(getopts)2.734 E F0 .234(is silent, then a colon \()2.734 F F1(:).833 E -F0(\)).833 E(is placed in)144 496.8 Q F2(name)2.86 E F0(and)2.68 E F3 -(OPT)2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F1 -(getopts)144 520.8 Q F0 .902 +(he \214rst non-option ar)-2.5 E(gument, and)-.18 E F1(name)2.5 E F0 +(is set to ?.)2.5 E F2(getopts)144 369.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 F1(ar)4.892 E(gs)-.37 E F0(,).27 E F2(getopts)144 +381.6 Q F0(parses those instead.)2.5 E F2(getopts)144 405.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 F1(optstring)3.895 E F0 1.166 +(is a colon,)3.886 F F1(silent)4.006 E F0(error)4.346 E 1.071 +(reporting is used.)144 417.6 R 1.071 +(In normal operation, diagnostic messages are printed when in)6.071 F +-.25(va)-.4 G 1.07(lid options or).25 F .393(missing option ar)144 429.6 +R .393(guments are encountered.)-.18 F .394(If the v)5.394 F(ariable) +-.25 E F3(OPTERR)2.894 E F0 .394(is set to 0, no error messages)2.644 F +(will be displayed, e)144 441.6 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft) +-2.5 G(he \214rst character of)-2.5 E F1(optstring)2.73 E F0 +(is not a colon.)2.72 E .667(If an in)144 465.6 R -.25(va)-.4 G .667 +(lid option is seen,).25 F F2(getopts)3.167 E F0 .667(places ? into) +3.167 F F1(name)3.527 E F0 .666 +(and, if not silent, prints an error message)3.347 F .399(and unsets)144 +477.6 R F3(OPT)2.899 E(ARG)-.81 E F4(.)A F0(If)4.899 E F2(getopts)2.899 +E F0 .399(is silent, the option character found is placed in)2.899 F F3 +(OPT)2.899 E(ARG)-.81 E F0 .4(and no)2.65 F +(diagnostic message is printed.)144 489.6 Q 1.242(If a required ar)144 +513.6 R 1.242(gument is not found, and)-.18 F F2(getopts)3.741 E F0 +1.241(is not silent, a question mark \()3.741 F F2(?).833 E F0 3.741 +(\)i).833 G 3.741(sp)-3.741 G 1.241(laced in)-3.741 F F1(name)144 525.6 +Q F0(,).18 E F3(OPT)2.734 E(ARG)-.81 E F0 .234 +(is unset, and a diagnostic message is printed.)2.484 F(If)5.234 E F2 +(getopts)2.734 E F0 .235(is silent, then a colon \()2.734 F F2(:).833 E +F0(\)).833 E(is placed in)144 537.6 Q F1(name)2.86 E F0(and)2.68 E F3 +(OPT)2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F2 +(getopts)144 561.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 -(options is encountered or an error occurs.)144 532.8 Q F1(hash)108 -549.6 Q F0([)2.5 E F1(\255lr)A F0 2.5(][)C F1-2.5 E F2(\214lename) -2.5 E F0 2.5(][)C F1(\255dt)-2.5 E F0 2.5(][)C F2(name)-2.5 E F0(])A -.858(Each time)144 561.6 R F1(hash)3.358 E F0 .858(is in)3.358 F -.2(vo) --.4 G -.1(ke).2 G .858(d, the full pathname of the command).1 F F2(name) +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 573.6 Q F2(hash)108 +590.4 Q F0([)2.5 E F2(\255lr)A F0 2.5(][)C F2-2.5 E F1(\214lename) +2.5 E F0 2.5(][)C F2(\255dt)-2.5 E F0 2.5(][)C F1(name)-2.5 E F0(])A +.858(Each time)144 602.4 R F2(hash)3.358 E F0 .858(is in)3.358 F -.2(vo) +-.4 G -.1(ke).2 G .858(d, the full pathname of the command).1 F F1(name) 3.718 E F0 .858(is determined by searching)3.538 F .956 -(the directories in)144 573.6 R F1($P)3.456 E -.95(AT)-.74 G(H).95 E F0 +(the directories in)144 614.4 R F2($P)3.456 E -.95(AT)-.74 G(H).95 E F0 .956(and remembered.)3.456 F(An)5.956 E 3.456(yp)-.15 G(re)-3.456 E .956 -(viously-remembered pathname is discarded.)-.25 F .243(If the)144 585.6 -R F12.743 E F0 .243 -(option is supplied, no path search is performed, and)2.743 F F2 -(\214lename)4.653 E F0 .242(is used as the full \214lename)2.923 F 1.711 -(of the command.)144 597.6 R(The)6.711 E F14.211 E F0 1.711 -(option causes the shell to for)4.211 F 1.712 -(get all remembered locations.)-.18 F(The)6.712 E F14.212 E F0 -.833(option causes the shell to for)144 609.6 R .833 -(get the remembered location of each)-.18 F F2(name)3.333 E F0 5.833(.I) -C 3.333(ft)-5.833 G(he)-3.333 E F13.333 E F0 .833(option is sup-) -3.333 F .703(plied, the full pathname to which each)144 621.6 R F2(name) -3.204 E F0 .704(corresponds is printed.)3.204 F .704(If multiple)5.704 F -F2(name)3.204 E F0(ar)3.204 E(guments)-.18 E .795(are supplied with)144 -633.6 R F13.295 E F0 3.295(,t)C(he)-3.295 E F2(name)3.295 E F0 -.795(is printed before the hashed full pathname.)3.295 F(The)5.795 E F1 +(viously-remembered pathname is discarded.)-.25 F .242(If the)144 626.4 +R F22.742 E F0 .243 +(option is supplied, no path search is performed, and)2.742 F F1 +(\214lename)4.653 E F0 .243(is used as the full \214lename)2.923 F 1.712 +(of the command.)144 638.4 R(The)6.712 E F24.212 E F0 1.711 +(option causes the shell to for)4.212 F 1.711 +(get all remembered locations.)-.18 F(The)6.711 E F24.211 E F0 +.833(option causes the shell to for)144 650.4 R .833 +(get the remembered location of each)-.18 F F1(name)3.333 E F0 5.833(.I) +C 3.333(ft)-5.833 G(he)-3.333 E F23.333 E F0 .833(option is sup-) +3.333 F .704(plied, the full pathname to which each)144 662.4 R F1(name) +3.204 E F0 .703(corresponds is printed.)3.204 F .703(If multiple)5.703 F +F1(name)3.203 E F0(ar)3.203 E(guments)-.18 E .795(are supplied with)144 +674.4 R F23.295 E F0 3.295(,t)C(he)-3.295 E F1(name)3.295 E F0 +.795(is printed before the hashed full pathname.)3.295 F(The)5.795 E F2 3.295 E F0 .795(option causes)3.295 F .934 (output to be displayed in a format that may be reused as input.)144 -645.6 R .934(If no ar)5.934 F .935(guments are gi)-.18 F -.15(ve)-.25 G -.935(n, or if).15 F(only)144 657.6 Q F12.822 E F0 .322 -(is supplied, information about remembered commands is printed.)2.822 F -.321(The return status is true)5.321 F(unless a)144 669.6 Q F2(name)2.86 +686.4 R .934(If no ar)5.934 F .934(guments are gi)-.18 F -.15(ve)-.25 G +.934(n, or if).15 F(only)144 698.4 Q F22.821 E F0 .321 +(is supplied, information about remembered commands is printed.)2.821 F +.322(The return status is true)5.322 F(unless a)144 710.4 Q F1(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 686.4 Q F0([)2.5 E F1(\255dms)A F0 2.5(][)C F2 -(pattern)-2.5 E F0(])A .866(Display helpful information about b)144 -698.4 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 -710.4 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 722.4 Q -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(61)185.545 E 0 Cg EP +.25 E(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(61)190.95 E 0 Cg EP %%Page: 62 62 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF144 84 Q F0(Display a short description of each)180 84 Q/F2 10 -/Times-Italic@0 SF(pattern)2.5 E F1144 96 Q F0 -(Display the description of each)180 96 Q F2(pattern)2.5 E F0 -(in a manpage-lik)2.5 E 2.5(ef)-.1 G(ormat)-2.5 E F1144 108 Q F0 -(Display only a short usage synopsis for each)180 108 Q F2(pattern)2.5 E -F0(The return status is 0 unless no command matches)144 124.8 Q F2 -(pattern)2.5 E F0(.).24 E F1(history [)108 141.6 Q F2(n)A F1(])A -(history \255c)108 153.6 Q(history \255d)108 165.6 Q F2(of)2.5 E(fset) --.18 E F1(history \255anrw)108 177.6 Q F0([)2.5 E F2(\214lename)A F0(])A -F1(history \255p)108 189.6 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5 -(g.)-.37 G(..)-2.5 E F0(])A F1(history \255s)108 201.6 Q F2(ar)2.5 E(g) +SF(help)108 84 Q F0([)2.5 E F1(\255dms)A F0 2.5(][)C/F2 10 +/Times-Italic@0 SF(pattern)-2.5 E F0(])A .867 +(Display helpful information about b)144 96 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 108 R F2(pattern)2.806 E F0 2.807 +(;o).24 G .307(therwise help for all the b)-2.807 F .307 +(uiltins and shell control struc-)-.2 F(tures is printed.)144 120 Q F1 +144 132 Q F0(Display a short description of each)180 132 Q F2 +(pattern)2.5 E F1144 144 Q F0(Display the description of each)180 +144 Q F2(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G(ormat)-2.5 +E F1144 156 Q F0(Display only a short usage synopsis for each)180 +156 Q F2(pattern)2.5 E F0 +(The return status is 0 unless no command matches)144 172.8 Q F2 +(pattern)2.5 E F0(.).24 E F1(history [)108 189.6 Q F2(n)A F1(])A +(history \255c)108 201.6 Q(history \255d)108 213.6 Q F2(of)2.5 E(fset) +-.18 E F1(history \255anrw)108 225.6 Q F0([)2.5 E F2(\214lename)A F0(])A +F1(history \255p)108 237.6 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5 +(g.)-.37 G(..)-2.5 E F0(])A F1(history \255s)108 249.6 Q F2(ar)2.5 E(g) -.37 E F0([)2.5 E F2(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144 -213.6 S .752 +261.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.252 E F0(ha)3.252 E -.15(ve)-.2 -G .381(been modi\214ed.)144 225.6 R .38(An ar)5.38 F .38(gument of)-.18 -F F2(n)3.24 E F0 .38(lists only the last)3.12 F F2(n)3.24 E F0 2.88 +.752(Lines listed with a)5.752 F F1(*)3.251 E F0(ha)3.251 E -.15(ve)-.2 +G .38(been modi\214ed.)144 273.6 R .38(An ar)5.38 F .38(gument of)-.18 F +F2(n)3.24 E F0 .38(lists only the last)3.12 F F2(n)3.24 E F0 2.88 (lines. If)3.12 F .38(the shell v)2.88 F(ariable)-.25 E/F3 9 -/Times-Bold@0 SF(HISTTIMEFOR-)2.88 E(MA)144 237.6 Q(T)-.855 E F0 .264 -(is set and not null, it is used as a format string for)2.514 F F2 -(strftime)2.765 E F0 .265(\(3\) to display the time stamp asso-)B 1.02 -(ciated with each displayed history entry)144 249.6 R 6.019(.N)-.65 G +/Times-Bold@0 SF(HISTTIMEFOR-)2.881 E(MA)144 285.6 Q(T)-.855 E F0 .265 +(is set and not null, it is used as a format string for)2.515 F F2 +(strftime)2.764 E F0 .264(\(3\) to display the time stamp asso-)B 1.019 +(ciated with each displayed history entry)144 297.6 R 6.019(.N)-.65 G 3.519(oi)-6.019 G(nterv)-3.519 E 1.019 (ening blank is printed between the formatted)-.15 F .176 -(time stamp and the history line.)144 261.6 R(If)5.176 E F2(\214lename) +(time stamp and the history line.)144 309.6 R(If)5.176 E F2(\214lename) 2.676 E F0 .176 (is supplied, it is used as the name of the history \214le; if)2.676 F -(not, the v)144 273.6 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.) +(not, the v)144 321.6 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.) 2.25 E(Options, if supplied, ha)5 E .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 285.6 Q F0 -(Clear the history list by deleting all the entries.)180 285.6 Q F1 -144 297.6 Q F2(of)2.5 E(fset)-.18 E F0 -(Delete the history entry at position)180 309.6 Q F2(of)2.5 E(fset)-.18 -E F0(.)A F1144 321.6 Q F0 .565(Append the `)180 321.6 R(`ne)-.74 E -(w')-.25 E 3.065('h)-.74 G .564(istory lines to the history \214le.) --3.065 F .564(These are history lines entered since)5.564 F(the be)180 -333.6 Q(ginning of the current)-.15 E F1(bash)2.5 E F0(session, b)2.5 E -(ut not already appended to the history \214le.)-.2 E F1144 345.6 +(wing meanings:)-.25 E F1144 333.6 Q F0 +(Clear the history list by deleting all the entries.)180 333.6 Q F1 +144 345.6 Q F2(of)2.5 E(fset)-.18 E F0 +(Delete the history entry at position)180 357.6 Q F2(of)2.5 E(fset)-.18 +E F0(.)A F1144 369.6 Q F0 .564(Append the `)180 369.6 R(`ne)-.74 E +(w')-.25 E 3.064('h)-.74 G .564(istory lines to the history \214le.) +-3.064 F .565(These are history lines entered since)5.564 F(the be)180 +381.6 Q(ginning of the current)-.15 E F1(bash)2.5 E F0(session, b)2.5 E +(ut not already appended to the history \214le.)-.2 E F1144 393.6 Q F0 .854(Read the history lines not already read from the history \214\ -le into the current history list.)180 345.6 R .773 -(These are lines appended to the history \214le since the be)180 357.6 R -.772(ginning of the current)-.15 F F1(bash)3.272 E F0(ses-)3.272 E -(sion.)180 369.6 Q F1144 381.6 Q F0(Read the contents of the hist\ -ory \214le and append them to the current history list.)180 381.6 Q F1 -144 393.6 Q F0 -(Write the current history list to the history \214le, o)180 393.6 Q +le into the current history list.)180 393.6 R .772 +(These are lines appended to the history \214le since the be)180 405.6 R +.773(ginning of the current)-.15 F F1(bash)3.273 E F0(ses-)3.273 E +(sion.)180 417.6 Q F1144 429.6 Q F0(Read the contents of the hist\ +ory \214le and append them to the current history list.)180 429.6 Q F1 +144 441.6 Q F0 +(Write the current history list to the history \214le, o)180 441.6 Q -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G -(ontents.)-2.5 E F1144 405.6 Q F0 .625 -(Perform history substitution on the follo)180 405.6 R(wing)-.25 E F2 -(ar)3.125 E(gs)-.37 E F0 .626(and display the result on the standard) -3.125 F 2.975(output. Does)180 417.6 R .475 +(ontents.)-2.5 E F1144 453.6 Q F0 .626 +(Perform history substitution on the follo)180 453.6 R(wing)-.25 E F2 +(ar)3.125 E(gs)-.37 E F0 .625(and display the result on the standard) +3.125 F 2.975(output. Does)180 465.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 429.6 Q(xpansion.)-.15 E F1144 441.6 Q F0 -.362(Store the)180 441.6 R F2(ar)3.192 E(gs)-.37 E F0 .363 -(in the history list as a single entry)3.132 F 5.363(.T)-.65 G .363 -(he last command in the history list is)-5.363 F(remo)180 453.6 Q -.15 +(normal history e)180 477.6 Q(xpansion.)-.15 E F1144 489.6 Q F0 +.363(Store the)180 489.6 R 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 +(he last command in the history list is)-5.363 F(remo)180 501.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 .146(If the)144 470.4 R F3(HISTTIMEFORMA)2.645 E(T) +(are added.)2.77 E .145(If the)144 518.4 R F3(HISTTIMEFORMA)2.645 E(T) -.855 E F0 -.25(va)2.395 G .145 (riable is set, the time stamp information associated with each history) -.25 F .668(entry is written to the history \214le, mark)144 482.4 R .669 -(ed with the history comment character)-.1 F 5.669(.W)-.55 G .669 -(hen the history)-5.669 F .956(\214le is read, lines be)144 494.4 R .956 -(ginning with the history comment character follo)-.15 F .955 -(wed immediately by a digit)-.25 F 1.795 -(are interpreted as timestamps for the follo)144 506.4 R 1.795 +.25 F .669(entry is written to the history \214le, mark)144 530.4 R .669 +(ed with the history comment character)-.1 F 5.668(.W)-.55 G .668 +(hen the history)-5.668 F .955(\214le is read, lines be)144 542.4 R .956 +(ginning with the history comment character follo)-.15 F .956 +(wed immediately by a digit)-.25 F 1.796 +(are interpreted as timestamps for the follo)144 554.4 R 1.795 (wing history entry)-.25 F 6.795(.T)-.65 G 1.795(he return v)-6.795 F -1.796(alue is 0 unless an)-.25 F(in)144 518.4 Q -.25(va)-.4 G .768(lid \ +1.795(alue is 0 unless an)-.25 F(in)144 566.4 Q -.25(va)-.4 G .768(lid \ option is encountered, an error occurs while reading or writing the his\ -tory \214le, an in).25 F -.25(va)-.4 G(lid).25 E F2(of)144 530.4 Q(fset) --.18 E F0 1.031(is supplied as an ar)3.531 F 1.031(gument to)-.18 F F1 +tory \214le, an in).25 F -.25(va)-.4 G(lid).25 E F2(of)144 578.4 Q(fset) +-.18 E F0 1.032(is supplied as an ar)3.532 F 1.031(gument to)-.18 F F1 3.531 E F0 3.531(,o)C 3.531(rt)-3.531 G 1.031(he history e)-3.531 -F 1.031(xpansion supplied as an ar)-.15 F 1.032(gument to)-.18 F F1 -3.532 E F0 -.1(fa)144 542.4 S(ils.).1 E F1(jobs)108 559.2 Q F0([) +F 1.031(xpansion supplied as an ar)-.15 F 1.031(gument to)-.18 F F1 +3.531 E F0 -.1(fa)144 590.4 S(ils.).1 E F1(jobs)108 607.2 Q F0([) 2.5 E F1(\255lnprs)A F0 2.5(][)C F2(jobspec)A F0(... ])2.5 E F1 -(jobs \255x)108 571.2 Q F2(command)2.5 E F0([)2.5 E F2(ar)2.5 E(gs)-.37 -E F0(... ])2.5 E(The \214rst form lists the acti)144 583.2 Q .3 -.15 +(jobs \255x)108 619.2 Q F2(command)2.5 E F0([)2.5 E F2(ar)2.5 E(gs)-.37 +E F0(... ])2.5 E(The \214rst form lists the acti)144 631.2 Q .3 -.15 (ve j)-.25 H 2.5(obs. The).15 F(options ha)2.5 E .3 -.15(ve t)-.2 H -(he follo).15 E(wing meanings:)-.25 E F1144 595.2 Q F0 -(List process IDs in addition to the normal information.)180 595.2 Q F1 -144 607.2 Q F0 .194(Display information only about jobs that ha) -180 607.2 R .494 -.15(ve c)-.2 H .193(hanged status since the user w).15 -F .193(as last noti-)-.1 F(\214ed of their status.)180 619.2 Q F1 -144 631.2 Q F0(List only the process ID of the job')180 631.2 Q 2.5(sp) --.55 G(rocess group leader)-2.5 E(.)-.55 E F1144 643.2 Q F0 -(Display only running jobs.)180 643.2 Q F1144 655.2 Q F0 -(Display only stopped jobs.)180 655.2 Q(If)144 672 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 684 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 700.8 R F1 -2.895 E F0 .394(option is supplied,)2.894 F F1(jobs)2.894 E F0 -.394(replaces an)2.894 F(y)-.15 E F2(jobspec)4.634 E F0 .394(found in) -3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 E F0 .394 -(with the corre-)3.164 F(sponding process group ID, and e)144 712.8 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 -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(62)185.545 E 0 Cg EP +(he follo).15 E(wing meanings:)-.25 E F1144 643.2 Q F0 +(List process IDs in addition to the normal information.)180 643.2 Q F1 +144 655.2 Q F0 .193(Display information only about jobs that ha) +180 655.2 R .494 -.15(ve c)-.2 H .194(hanged status since the user w).15 +F .194(as last noti-)-.1 F(\214ed of their status.)180 667.2 Q F1 +144 679.2 Q F0(List only the process ID of the job')180 679.2 Q 2.5(sp) +-.55 G(rocess group leader)-2.5 E(.)-.55 E F1144 691.2 Q F0 +(Display only running jobs.)180 691.2 Q F1144 703.2 Q F0 +(Display only stopped jobs.)180 703.2 Q(If)144 720 Q F2(jobspec)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(GNU Bash 4.4)72 768 Q +(2016 January 25)141.79 E(62)190.95 E 0 Cg EP %%Page: 63 63 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(kill)108 84 Q F0([)2.5 E F1A/F2 10/Times-Italic@0 SF(sigspec) -2.5 E F0(|)2.5 E F12.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 96 Q F0(|)A F1A F0([)2.5 E F2 -(sigspec)A F0(|)2.5 E F2 -.2(ex)2.5 G(it_status).2 E F0(])A .119 -(Send the signal named by)144 108 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 120 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 132 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) +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(an in)144 84 Q +-.25(va)-.4 G(lid option is encountered or an in).25 E -.25(va)-.4 G +(lid).25 E/F1 10/Times-Italic@0 SF(jobspec)4.24 E F0(is supplied.)2.81 E +.394(If the)144 100.8 R/F2 10/Times-Bold@0 SF2.894 E F0 .394 +(option is supplied,)2.894 F F2(jobs)2.894 E F0 .394(replaces an)2.894 F +(y)-.15 E F1(jobspec)4.634 E F0 .394(found in)3.204 F F1(command)3.094 E +F0(or)3.664 E F1(ar)3.224 E(gs)-.37 E F0 .395(with the corre-)3.164 F +(sponding process group ID, and e)144 112.8 Q -.15(xe)-.15 G(cutes).15 E +F1(command)2.7 E F0(passing it)3.27 E F1(ar)2.5 E(gs)-.37 E F0 2.5(,r) +.27 G(eturning its e)-2.5 E(xit status.)-.15 E F2(kill)108 129.6 Q F0([) +2.5 E F2A F1(sigspec)2.5 E F0(|)2.5 E F22.5 E F1(signum)2.5 +E F0(|)2.5 E F22.5 E F1(sigspec)A F0 2.5(][)C F1(pid)-2.5 E F0(|)2.5 +E F1(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F2(kill \255l)108 141.6 Q F0(|) +A F2A F0([)2.5 E F1(sigspec)A F0(|)2.5 E F1 -.2(ex)2.5 G +(it_status).2 E F0(])A .12(Send the signal named by)144 153.6 R F1 +(sigspec)2.96 E F0(or)2.93 E F1(signum)2.96 E F0 .119 +(to the processes named by)2.939 F F1(pid)3.869 E F0(or)3.389 E F1 +(jobspec)2.619 E F0(.).31 E F1(sigspec)5.459 E F0(is)2.929 E .318 +(either a case-insensiti)144 165.6 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 177.6 Q F1(signum)4.189 E F0 +1.349(is a signal number)4.169 F 6.349(.I)-.55 G(f)-6.349 E F1(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 144 Q .523(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 156 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 168 Q .378(gument to)-.18 F F1 -2.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 .962(nated by a signal.)144 180 R -(The)5.962 E F13.462 E F0 .962(option is equi)3.462 F -.25(va)-.25 -G .962(lent to).25 F F13.462 E F0(.)A F1(kill)5.962 E F0 .962 +1.348(is assumed.)3.599 F(An)6.348 E(ar)144 189.6 Q .522(gument of)-.18 +F F23.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 F23.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 201.6 +R .28(guments are listed, and the return status is 0.)-.18 F(The)5.28 E +F1 -.2(ex)2.78 G(it_status).2 E F0(ar)144 213.6 Q .377(gument to)-.18 F +F22.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 .963(nated by a signal.)144 225.6 +R(The)5.962 E F23.462 E F0 .962(option is equi)3.462 F -.25(va) +-.25 G .962(lent to).25 F F23.462 E F0(.)A F2(kill)5.962 E F0 .962 (returns true if at least one signal w)3.462 F(as)-.1 E -(successfully sent, or f)144 192 Q(alse if an error occurs or an in)-.1 -E -.25(va)-.4 G(lid option is encountered.).25 E F1(let)108 208.8 Q F2 -(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Each)144 -220.8 Q F2(ar)3.027 E(g)-.37 E F0 .197(is an arithmetic e)2.917 F .197 -(xpression to be e)-.15 F -.25(va)-.25 G .196(luated \(see).25 F F3 .196 -(ARITHMETIC EV)2.696 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(abo) -2.446 E -.15(ve)-.15 G 2.696(\). If).15 F(the last)144 232.8 Q F2(ar) -2.83 E(g)-.37 E F0 -.25(eva)2.72 G(luates to 0,).25 E F1(let)2.5 E F0 -(returns 1; 0 is returned otherwise.)2.5 E F1(local)108 249.6 Q F0([)2.5 -E F2(option)A F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C -(.. | \255 ])-2.5 E -.15(Fo)144 261.6 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 273.6 Q 3.153(yo) --.15 G 3.153(ft)-3.153 G .653(he options accepted by)-3.153 F F1(declar) -3.153 E(e)-.18 E F0 5.652(.W)C(hen)-5.652 E F1(local)3.152 E F0 .652 +(successfully sent, or f)144 237.6 Q(alse if an error occurs or an in) +-.1 E -.25(va)-.4 G(lid option is encountered.).25 E F2(let)108 254.4 Q +F1(ar)2.5 E(g)-.37 E F0([)2.5 E F1(ar)A(g)-.37 E F0(...])2.5 E(Each)144 +266.4 Q F1(ar)3.026 E(g)-.37 E F0 .196(is an arithmetic e)2.916 F .197 +(xpression to be e)-.15 F -.25(va)-.25 G .197(luated \(see).25 F F3 .197 +(ARITHMETIC EV)2.697 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(abo) +2.447 E -.15(ve)-.15 G 2.697(\). If).15 F(the last)144 278.4 Q F1(ar) +2.83 E(g)-.37 E F0 -.25(eva)2.72 G(luates to 0,).25 E F2(let)2.5 E F0 +(returns 1; 0 is returned otherwise.)2.5 E F2(local)108 295.2 Q F0([)2.5 +E F1(option)A F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 2.5(].)C +(.. | \255 ])-2.5 E -.15(Fo)144 307.2 S 2.56(re).15 G .06(ach ar)-2.56 F +.06(gument, a local v)-.18 F .06(ariable named)-.25 F F1(name)2.92 E F0 +.06(is created, and assigned)2.74 F F1(value)2.56 E F0 5.06(.T).18 G(he) +-5.06 E F1(option)2.56 E F0 .06(can be)2.56 F(an)144 319.2 Q 3.152(yo) +-.15 G 3.152(ft)-3.152 G .652(he options accepted by)-3.152 F F2(declar) +3.152 E(e)-.18 E F0 5.652(.W)C(hen)-5.652 E F2(local)3.152 E F0 .653 (is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144 -285.6 Q F2(name)3.281 E F0 .421(to ha)3.101 F .721 -.15(ve a v)-.2 H +331.2 Q F1(name)3.282 E F0 .422(to ha)3.102 F .722 -.15(ve a v)-.2 H .422(isible scope restricted to that function and its children.).15 F -(If)5.422 E F2(name)2.922 E F0 .422(is \255, the set)2.922 F 1.461 -(of shell options is made local to the function in which)144 297.6 R F1 -(local)3.961 E F0 1.461(is in)3.961 F -.2(vo)-.4 G -.1(ke).2 G 1.461 -(d: shell options changed).1 F 1.562(using the)144 309.6 R F1(set)4.062 -E F0 -.2(bu)4.062 G 1.563 -(iltin inside the function are restored to their original v).2 F 1.563 -(alues when the function)-.25 F 3.744(returns. W)144 321.6 R 1.244 -(ith no operands,)-.4 F F1(local)3.744 E F0 1.244 -(writes a list of local v)3.744 F 1.243 -(ariables to the standard output.)-.25 F 1.243(It is an)6.243 F .42 -(error to use)144 333.6 R F1(local)2.92 E F0 .42 +(If)5.421 E F1(name)2.921 E F0 .421(is \255, the set)2.921 F 1.461 +(of shell options is made local to the function in which)144 343.2 R F2 +(local)3.961 E F0 1.462(is in)3.961 F -.2(vo)-.4 G -.1(ke).2 G 1.462 +(d: shell options changed).1 F 1.563(using the)144 355.2 R F2(set)4.063 +E F0 -.2(bu)4.063 G 1.563 +(iltin inside the function are restored to their original v).2 F 1.562 +(alues when the function)-.25 F 3.743(returns. W)144 367.2 R 1.243 +(ith no operands,)-.4 F F2(local)3.743 E F0 1.243 +(writes a list of local v)3.743 F 1.244 +(ariables to the standard output.)-.25 F 1.244(It is an)6.244 F .42 +(error to use)144 379.2 R F2(local)2.92 E F0 .42 (when not within a function.)2.92 F .42(The return status is 0 unless) -5.42 F F1(local)2.92 E F0 .42(is used outside a)2.92 F(function, an in) -144 345.6 Q -.25(va)-.4 G(lid).25 E F2(name)2.86 E F0(is supplied, or) -2.68 E F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F1(logout) -108 362.4 Q F0(Exit a login shell.)144 362.4 Q F1(map\214le)108 379.2 Q -F0([)2.5 E F1A F2(delim)2.5 E F0 2.5(][)C F1-2.5 E F2(count) -2.5 E F0 2.5(][)C F1-2.5 E F2(origin)2.5 E F0 2.5(][)C F1 --2.5 E F2(count)2.5 E F0 2.5(][)C F1-2.5 E F0 2.5(][)C F1 --2.5 E F2(fd)2.5 E F0 2.5(][)C F1-2.5 E F2(callbac)2.5 E(k)-.2 E -F0 2.5(][)C F1-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E -(ay)-.15 E F0(])A F1 -.18(re)108 391.2 S(adarray).18 E F0([)2.5 E F1 -A F2(delim)2.5 E F0 2.5(][)C F1-2.5 E F2(count)2.5 E F0 2.5 -(][)C F1-2.5 E F2(origin)2.5 E F0 2.5(][)C F1-2.5 E F2 -(count)2.5 E F0 2.5(][)C F1-2.5 E F0 2.5(][)C F1-2.5 E F2 -(fd)2.5 E F0 2.5(][)C F1-2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][) -C F1-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E(ay)-.15 E F0 -(])A .351(Read lines from the standard input into the inde)144 403.2 R --.15(xe)-.15 G 2.851(da).15 G .351(rray v)-2.851 F(ariable)-.25 E F2 -(arr)2.85 E(ay)-.15 E F0 2.85(,o).32 G 2.85(rf)-2.85 G .35 -(rom \214le descriptor)-2.85 F F2(fd)2.85 E F0 1.248(if the)144 415.2 R -F13.748 E F0 1.248(option is supplied.)3.748 F 1.249(The v)6.249 F -(ariable)-.25 E F3(MAPFILE)3.749 E F0 1.249(is the def)3.499 F(ault)-.1 -E F2(arr)3.749 E(ay)-.15 E F0 6.249(.O)C 1.249(ptions, if supplied,) --6.249 F(ha)144 427.2 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 439.2 Q F0(The \214rst character of) -180 439.2 Q F2(delim)2.5 E F0 +5.42 F F2(local)2.92 E F0 .42(is used outside a)2.92 F(function, an in) +144 391.2 Q -.25(va)-.4 G(lid).25 E F1(name)2.86 E F0(is supplied, or) +2.68 E F1(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F2(logout) +108 408 Q F0(Exit a login shell.)144 408 Q F2(map\214le)108 424.8 Q F0 +([)2.5 E F2A F1(delim)2.5 E F0 2.5(][)C F2-2.5 E F1(count) +2.5 E F0 2.5(][)C F2-2.5 E F1(origin)2.5 E F0 2.5(][)C F2 +-2.5 E F1(count)2.5 E F0 2.5(][)C F2-2.5 E F0 2.5(][)C F2 +-2.5 E F1(fd)2.5 E F0 2.5(][)C F2-2.5 E F1(callbac)2.5 E(k)-.2 E +F0 2.5(][)C F2-2.5 E F1(quantum)2.5 E F0 2.5(][)C F1(arr)-2.5 E +(ay)-.15 E F0(])A F2 -.18(re)108 436.8 S(adarray).18 E F0([)2.5 E F2 +A F1(delim)2.5 E F0 2.5(][)C F2-2.5 E F1(count)2.5 E F0 2.5 +(][)C F2-2.5 E F1(origin)2.5 E F0 2.5(][)C F2-2.5 E F1 +(count)2.5 E F0 2.5(][)C F2-2.5 E F0 2.5(][)C F2-2.5 E F1 +(fd)2.5 E F0 2.5(][)C F2-2.5 E F1(callbac)2.5 E(k)-.2 E F0 2.5(][) +C F2-2.5 E F1(quantum)2.5 E F0 2.5(][)C F1(arr)-2.5 E(ay)-.15 E F0 +(])A .35(Read lines from the standard input into the inde)144 448.8 R +-.15(xe)-.15 G 2.851(da).15 G .351(rray v)-2.851 F(ariable)-.25 E F1 +(arr)2.851 E(ay)-.15 E F0 2.851(,o).32 G 2.851(rf)-2.851 G .351 +(rom \214le descriptor)-2.851 F F1(fd)2.851 E F0 1.249(if the)144 460.8 +R F23.749 E F0 1.249(option is supplied.)3.749 F 1.249(The v)6.249 +F(ariable)-.25 E F3(MAPFILE)3.749 E F0 1.249(is the def)3.499 F(ault)-.1 +E F1(arr)3.748 E(ay)-.15 E F0 6.248(.O)C 1.248(ptions, if supplied,) +-6.248 F(ha)144 472.8 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F2144 484.8 Q F0(The \214rst character of) +180 484.8 Q F1(delim)2.5 E F0 (is used to terminate each input line, rather than ne)2.5 E(wline.)-.25 -E F1144 451.2 Q F0(Cop)180 451.2 Q 2.5(ya)-.1 G 2.5(tm)-2.5 G(ost) --2.5 E F2(count)2.7 E F0 2.5(lines. If)3.18 F F2(count)2.5 E F0 -(is 0, all lines are copied.)2.5 E F1144 463.2 Q F0(Be)180 463.2 Q -(gin assigning to)-.15 E F2(arr)2.83 E(ay)-.15 E F0(at inde)2.82 E(x) --.15 E F2(origin)2.5 E F0 5(.T).24 G(he def)-5 E(ault inde)-.1 E 2.5(xi) --.15 G 2.5(s0)-2.5 G(.)-2.5 E F1144 475.2 Q F0 -(Discard the \214rst)180 475.2 Q F2(count)2.5 E F0(lines read.)2.5 E F1 -144 487.2 Q F0(Remo)180 487.2 Q .3 -.15(ve a t)-.15 H(railing).15 -E F2(delim)2.5 E F0(\(def)2.5 E(ault ne)-.1 E -(wline\) from each line read.)-.25 E F1144 499.2 Q F0 -(Read lines from \214le descriptor)180 499.2 Q F2(fd)2.5 E F0 -(instead of the standard input.)2.5 E F1144 511.2 Q F0(Ev)180 -511.2 Q(aluate)-.25 E F2(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F2 -(quantum)2.5 E F0(lines are read.)2.5 E(The)5 E F12.5 E F0 -(option speci\214es)2.5 E F2(quantum)2.5 E F0(.).32 E F1144 523.2 -Q F0(Specify the number of lines read between each call to)180 523.2 Q -F2(callbac)2.5 E(k)-.2 E F0(.).67 E(If)144 540 Q F12.968 E F0 .467 -(is speci\214ed without)2.967 F F12.967 E F0 2.967(,t)C .467 -(he def)-2.967 F .467(ault quantum is 5000.)-.1 F(When)5.467 E F2 +E F2144 496.8 Q F0(Cop)180 496.8 Q 2.5(ya)-.1 G 2.5(tm)-2.5 G(ost) +-2.5 E F1(count)2.7 E F0 2.5(lines. If)3.18 F F1(count)2.5 E F0 +(is 0, all lines are copied.)2.5 E F2144 508.8 Q F0(Be)180 508.8 Q +(gin assigning to)-.15 E F1(arr)2.83 E(ay)-.15 E F0(at inde)2.82 E(x) +-.15 E F1(origin)2.5 E F0 5(.T).24 G(he def)-5 E(ault inde)-.1 E 2.5(xi) +-.15 G 2.5(s0)-2.5 G(.)-2.5 E F2144 520.8 Q F0 +(Discard the \214rst)180 520.8 Q F1(count)2.5 E F0(lines read.)2.5 E F2 +144 532.8 Q F0(Remo)180 532.8 Q .3 -.15(ve a t)-.15 H(railing).15 +E F1(delim)2.5 E F0(\(def)2.5 E(ault ne)-.1 E +(wline\) from each line read.)-.25 E F2144 544.8 Q F0 +(Read lines from \214le descriptor)180 544.8 Q F1(fd)2.5 E F0 +(instead of the standard input.)2.5 E F2144 556.8 Q F0(Ev)180 +556.8 Q(aluate)-.25 E F1(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F1 +(quantum)2.5 E F0(lines are read.)2.5 E(The)5 E F22.5 E F0 +(option speci\214es)2.5 E F1(quantum)2.5 E F0(.).32 E F2144 568.8 +Q F0(Specify the number of lines read between each call to)180 568.8 Q +F1(callbac)2.5 E(k)-.2 E F0(.).67 E(If)144 585.6 Q F22.967 E F0 +.467(is speci\214ed without)2.967 F F22.967 E F0 2.967(,t)C .467 +(he def)-2.967 F .467(ault quantum is 5000.)-.1 F(When)5.467 E F1 (callbac)2.967 E(k)-.2 E F0 .467(is e)2.967 F -.25(va)-.25 G .467 -(luated, it is sup-).25 F .261(plied the inde)144 552 R 2.761(xo)-.15 G -2.761(ft)-2.761 G .261(he ne)-2.761 F .262(xt array element to be assig\ -ned and the line to be assigned to that element)-.15 F .275 -(as additional ar)144 564 R(guments.)-.18 E F2(callbac)5.275 E(k)-.2 E -F0 .275(is e)2.775 F -.25(va)-.25 G .274 -(luated after the line is read b).25 F .274 -(ut before the array element is)-.2 F(assigned.)144 576 Q -(If not supplied with an e)144 592.8 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 609.6 Q F0 1.905 -(returns successfully unless an in)4.405 F -.25(va)-.4 G 1.905 -(lid option or option ar).25 F 1.906(gument is supplied,)-.18 F F2(arr) -4.406 E(ay)-.15 E F0(is)4.406 E(in)144 621.6 Q -.25(va)-.4 G -(lid or unassignable, or if).25 E F2(arr)2.5 E(ay)-.15 E F0 +(luated, it is sup-).25 F .262(plied the inde)144 597.6 R 2.762(xo)-.15 +G 2.762(ft)-2.762 G .262(he ne)-2.762 F .261(xt array element to be ass\ +igned and the line to be assigned to that element)-.15 F .274 +(as additional ar)144 609.6 R(guments.)-.18 E F1(callbac)5.274 E(k)-.2 E +F0 .274(is e)2.774 F -.25(va)-.25 G .274 +(luated after the line is read b).25 F .275 +(ut before the array element is)-.2 F(assigned.)144 621.6 Q +(If not supplied with an e)144 638.4 Q(xplicit origin,)-.15 E F2 +(map\214le)2.5 E F0(will clear)2.5 E F1(arr)2.5 E(ay)-.15 E F0 +(before assigning to it.)2.5 E F2(map\214le)144 655.2 Q F0 1.906 +(returns successfully unless an in)4.406 F -.25(va)-.4 G 1.905 +(lid option or option ar).25 F 1.905(gument is supplied,)-.18 F F1(arr) +4.405 E(ay)-.15 E F0(is)4.405 E(in)144 667.2 Q -.25(va)-.4 G +(lid or unassignable, or if).25 E F1(arr)2.5 E(ay)-.15 E F0 (is not an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 G(rray)-2.5 E(.)-.65 E -F1(popd)108 638.4 Q F0<5bad>2.5 E F1(n)A F0 2.5(][)C(+)-2.5 E F2(n)A F0 -2.5(][)C-2.5 E F2(n)A F0(])A(Remo)144 650.4 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 +F2(popd)108 684 Q F0<5bad>2.5 E F2(n)A F0 2.5(][)C(+)-2.5 E F1(n)A F0 +2.5(][)C-2.5 E F1(n)A F0(])A(Remo)144 696 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 -.299(he top directory from the)-2.799 F 1.478(stack, and performs a)144 -662.4 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 674.4 Q F1144 686.4 Q F0 .551 -(Suppresses the normal change of directory when remo)180 686.4 R .551 -(ving directories from the stack, so)-.15 F -(that only the stack is manipulated.)180 698.4 Q F1(+)144 710.4 Q F2(n)A -F0(Remo)180 710.4 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F2(n)2.64 E -F0 .14(th entry counting from the left of the list sho)B .14(wn by)-.25 -F F1(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero.)-2.64 F -.15(Fo)180 -722.4 S 2.5(re).15 G(xample:)-2.65 E/F4 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 F4(popd +1)2.5 E F0(the second.)2.5 E(GNU Bash 4.4)72 768 Q -(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(63)185.545 E 0 Cg EP +.3(he top directory from the)-2.799 F 1.479(stack, and performs a)144 +708 R F2(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 +F(wing)-.25 E(meanings:)144 720 Q(GNU Bash 4.4)72 768 Q(2016 January 25) +141.79 E(63)190.95 E 0 Cg EP %%Page: 64 64 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF144 84 Q/F2 10/Times-Italic@0 SF(n)A F0(Remo)180 84 Q -.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 96 R(or e)-.15 E(xample:)-.15 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 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 -112.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 124.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 136.8 Q -(ails.)-.1 E F1(printf)108 153.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 1.436 -(Write the formatted)144 165.6 R F2(ar)3.936 E(guments)-.37 E F0 1.437 -(to the standard output under the control of the)3.936 F F2(format)3.937 -E F0 6.437(.T)C(he)-6.437 E F13.937 E F0 .126 -(option causes the output to be assigned to the v)144 177.6 R(ariable) +SF144 84 Q F0 .551 +(Suppresses the normal change of directory when remo)180 84 R .551 +(ving directories from the stack, so)-.15 F +(that only the stack is manipulated.)180 96 Q F1(+)144 108 Q/F2 10 +/Times-Italic@0 SF(n)A F0(Remo)180 108 Q -.15(ve)-.15 G 2.64(st).15 G +(he)-2.64 E F2(n)2.64 E F0 .14 +(th entry counting from the left of the list sho)B .14(wn by)-.25 F F1 +(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero.)-2.64 F -.15(Fo)180 120 +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 132 Q F2(n)A F0(Remo)180 +132 Q -.15(ve)-.15 G 3.759(st).15 G(he)-3.759 E F2(n)3.759 E F0 1.259 +(th entry counting from the right of the list sho)B 1.26(wn by)-.25 F F1 +(dirs)3.76 E F0 3.76(,s)C 1.26(tarting with)-3.76 F 2.5(zero. F)180 144 +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 160.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 172.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 +(tory stack entry is speci\214ed, or the directory change f)144 184.8 Q +(ails.)-.1 E F1(printf)108 201.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 1.437 +(Write the formatted)144 213.6 R F2(ar)3.937 E(guments)-.37 E F0 1.437 +(to the standard output under the control of the)3.937 F F2(format)3.936 +E F0 6.436(.T)C(he)-6.436 E F13.936 E F0 .126 +(option causes the output to be assigned to the v)144 225.6 R(ariable) -.25 E F2(var)2.626 E F0 .126(rather than being printed to the standard) -2.626 F(output.)144 189.6 Q(The)144 213.6 Q F2(format)3.017 E F0 .517(i\ +2.626 F(output.)144 237.6 Q(The)144 261.6 Q F2(format)3.018 E F0 .517(i\ s a character string which contains three types of objects: plain chara\ -cters, which are)3.017 F .704(simply copied to standard output, charact\ -er escape sequences, which are con)144 225.6 R -.15(ve)-.4 G .703 +cters, which are)3.018 F .704(simply copied to standard output, charact\ +er escape sequences, which are con)144 273.6 R -.15(ve)-.4 G .704 (rted and copied to).15 F .036(the standard output, and format speci\ -\214cations, each of which causes printing of the ne)144 237.6 R .037 -(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 249.6 Q(gument)-.37 E F0 -5.532(.I)C 3.032(na)-5.532 G .532(ddition to the standard)-3.032 F F2 -(printf)3.032 E F0 .532(\(1\) format speci\214cations,)B F1(printf)3.031 -E F0 .531(interprets the follo)3.031 F(w-)-.25 E(ing e)144 261.6 Q -(xtensions:)-.15 E F1(%b)144 273.6 Q F0(causes)180 273.6 Q F1(printf) -2.595 E F0 .096(to e)2.595 F .096 +\214cations, each of which causes printing of the ne)144 285.6 R .036 +(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 297.6 Q(gument)-.37 E F0 +5.531(.I)C 3.031(na)-5.531 G .531(ddition to the standard)-3.031 F F2 +(printf)3.032 E F0 .532(\(1\) format speci\214cations,)B F1(printf)3.032 +E F0 .532(interprets the follo)3.032 F(w-)-.25 E(ing e)144 309.6 Q +(xtensions:)-.15 E F1(%b)144 321.6 Q F0(causes)180 321.6 Q F1(printf) +2.596 E F0 .096(to e)2.596 F .096 (xpand backslash escape sequences in the corresponding)-.15 F F2(ar) -2.596 E(gument)-.37 E F0 .096(in the)2.596 F(same w)180 285.6 Q(ay as) --.1 E F1(echo \255e)2.5 E F0(.)A F1(%q)144 297.6 Q F0(causes)180 297.6 Q +2.596 E(gument)-.37 E F0 .095(in the)2.595 F(same w)180 333.6 Q(ay as) +-.1 E F1(echo \255e)2.5 E F0(.)A F1(%q)144 345.6 Q F0(causes)180 345.6 Q F1(printf)2.51 E F0 .01(to output the corresponding)2.51 F F2(ar)2.51 E (gument)-.37 E F0 .01(in a format that can be reused as shell)2.51 F -(input.)180 309.6 Q F1(%\()144 321.6 Q F2(datefmt)A F1(\)T)A F0(causes) -180 333.6 Q F1(printf)4.403 E F0 1.904 -(to output the date-time string resulting from using)4.403 F F2(datefmt) -4.404 E F0 1.904(as a format)4.404 F .381(string for)180 345.6 R F2 +(input.)180 357.6 Q F1(%\()144 369.6 Q F2(datefmt)A F1(\)T)A F0(causes) +180 381.6 Q F1(printf)4.404 E F0 1.904 +(to output the date-time string resulting from using)4.404 F F2(datefmt) +4.404 E F0 1.903(as a format)4.404 F .38(string for)180 393.6 R F2 (strftime)2.881 E F0 2.881(\(3\). The)B(corresponding)2.881 E F2(ar) 2.881 E(gument)-.37 E F0 .381(is an inte)2.881 F .381 -(ger representing the number)-.15 F .457(of seconds since the epoch.)180 -357.6 R -1 -.8(Tw o)5.458 H .458(special ar)3.758 F .458(gument v)-.18 F -.458(alues may be used: -1 represents the)-.25 F .848 -(current time, and -2 represents the time the shell w)180 369.6 R .847 -(as in)-.1 F -.2(vo)-.4 G -.1(ke).2 G 3.347(d. If).1 F .847(no ar)3.347 -F .847(gument is speci-)-.18 F .354(\214ed, con)180 381.6 R -.15(ve)-.4 -G .354(rsion beha).15 F -.15(ve)-.2 G 2.854(sa).15 G 2.854(si)-2.854 G -2.854(f-)-2.854 G 2.854(1h)-2.854 G .354(ad been gi)-2.854 F -.15(ve) --.25 G 2.854(n. This).15 F .355(is an e)2.854 F .355 -(xception to the usual)-.15 F F1(printf)2.855 E F0(beha)180 393.6 Q -(vior)-.2 E(.)-.55 E(Ar)144 410.4 Q .464(guments to non-string format s\ -peci\214ers are treated as C constants, e)-.18 F .463 -(xcept that a leading plus or)-.15 F 1.258(minus sign is allo)144 422.4 +(ger representing the number)-.15 F .458(of seconds since the epoch.)180 +405.6 R -1 -.8(Tw o)5.458 H .458(special ar)3.758 F .458(gument v)-.18 F +.458(alues may be used: -1 represents the)-.25 F .847 +(current time, and -2 represents the time the shell w)180 417.6 R .847 +(as in)-.1 F -.2(vo)-.4 G -.1(ke).2 G 3.348(d. If).1 F .848(no ar)3.348 +F .848(gument is speci-)-.18 F .355(\214ed, con)180 429.6 R -.15(ve)-.4 +G .355(rsion beha).15 F -.15(ve)-.2 G 2.855(sa).15 G 2.855(si)-2.855 G +2.855(f-)-2.855 G 2.855(1h)-2.855 G .354(ad been gi)-2.855 F -.15(ve) +-.25 G 2.854(n. This).15 F .354(is an e)2.854 F .354 +(xception to the usual)-.15 F F1(printf)2.854 E F0(beha)180 441.6 Q +(vior)-.2 E(.)-.55 E(Ar)144 458.4 Q .463(guments to non-string format s\ +peci\214ers are treated as C constants, e)-.18 F .464 +(xcept that a leading plus or)-.15 F 1.259(minus sign is allo)144 470.4 R 1.259 (wed, and if the leading character is a single or double quote, the v) --.25 F 1.259(alue is the)-.25 F(ASCII v)144 434.4 Q(alue of the follo) --.25 E(wing character)-.25 E(.)-.55 E(The)144 451.2 Q F2(format)3.424 E -F0 .923(is reused as necessary to consume all of the)3.424 F F2(ar)3.423 +-.25 F 1.258(alue is the)-.25 F(ASCII v)144 482.4 Q(alue of the follo) +-.25 E(wing character)-.25 E(.)-.55 E(The)144 499.2 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(guments)-.37 E F0 5.923(.I)C 3.423(ft)-5.923 G(he)-3.423 E F2(format) -3.423 E F0 .923(requires more)3.423 F F2(ar)144 463.2 Q(guments)-.37 E -F0 .033(than are supplied, the e)2.533 F .033 +3.423 E F0 .924(requires more)3.424 F F2(ar)144 511.2 Q(guments)-.37 E +F0 .033(than are supplied, the e)2.534 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 .034(alue or null string,) --.25 F(as appropriate, had been supplied.)144 475.2 Q(The return v)5 E +.15 G 2.533(faz)-2.533 G .033(ero v)-2.533 F .033(alue or null string,) +-.25 F(as appropriate, had been supplied.)144 523.2 Q(The return v)5 E (alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E F1(pushd) -108 492 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 504 Q F0([)2.5 E F1A F0 2.5 -(][)C F2(dir)-2.5 E F0(])A .64(Adds a directory to the top of the direc\ -tory stack, or rotates the stack, making the ne)144 516 R 3.139(wt)-.25 -G .639(op of the)-3.139 F .416(stack the current w)144 528 R .416 +108 540 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 552 Q F0([)2.5 E F1A F0 2.5 +(][)C F2(dir)-2.5 E F0(])A .639(Adds a directory to the top of the dire\ +ctory stack, or rotates the stack, making the ne)144 564 R 3.14(wt)-.25 +G .64(op of the)-3.14 F .417(stack the current w)144 576 R .416 (orking directory)-.1 F 5.416(.W)-.65 G .416(ith no ar)-5.816 F (guments,)-.18 E F1(pushd)2.916 E F0 -.15(ex)2.916 G .416 -(changes the top tw).15 F 2.917(od)-.1 G(irectories)-2.917 E 1.625 -(and returns 0, unless the directory stack is empty)144 540 R 6.625(.A) +(changes the top tw).15 F 2.916(od)-.1 G(irectories)-2.916 E 1.625 +(and returns 0, unless the directory stack is empty)144 588 R 6.625(.A) -.65 G -.18(rg)-6.625 G 1.625(uments, if supplied, ha).18 F 1.925 -.15 -(ve t)-.2 H 1.625(he follo).15 F(wing)-.25 E(meanings:)144 552 Q F1 -144 564 Q F0 1.811(Suppresses the normal change of directory when\ - rotating or adding directories to the)180 564 R -(stack, so that only the stack is manipulated.)180 576 Q F1(+)144 588 Q -F2(n)A F0 1.268(Rotates the stack so that the)180 588 R F2(n)3.768 E F0 -1.267(th directory \(counting from the left of the list sho)B 1.267 -(wn by)-.25 F F1(dirs)180 600 Q F0 2.5(,s)C -(tarting with zero\) is at the top.)-2.5 E F1144 612 Q F2(n)A F0 .92 -(Rotates the stack so that the)180 612 R F2(n)3.42 E F0 .92 +(ve t)-.2 H 1.625(he follo).15 F(wing)-.25 E(meanings:)144 600 Q F1 +144 612 Q F0 1.811(Suppresses the normal change of directory when\ + rotating or adding directories to the)180 612 R +(stack, so that only the stack is manipulated.)180 624 Q F1(+)144 636 Q +F2(n)A F0 1.267(Rotates the stack so that the)180 636 R F2(n)3.767 E F0 +1.268(th directory \(counting from the left of the list sho)B 1.268 +(wn by)-.25 F F1(dirs)180 648 Q F0 2.5(,s)C +(tarting with zero\) is at the top.)-2.5 E F1144 660 Q F2(n)A F0 .92 +(Rotates the stack so that the)180 660 R F2(n)3.42 E F0 .92 (th directory \(counting from the right of the list sho)B .92(wn by)-.25 -F F1(dirs)180 624 Q F0 2.5(,s)C(tarting with zero\) is at the top.)-2.5 -E F2(dir)144.35 636 Q F0(Adds)180 636 Q F2(dir)3.138 E F0 .288 -(to the directory stack at the top, making it the ne)3.518 F 2.787(wc) --.25 G .287(urrent w)-2.787 F .287(orking directory as)-.1 F -(if it had been supplied as the ar)180 648 Q(gument to the)-.18 E F1(cd) -2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .488(If the)144 664.8 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 676.8 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 688.8 R 3.346(,an)-.65 G(on-e)-3.346 E .847(xistent\ - directory stack element is speci\214ed, or the directory change to the) --.15 F(speci\214ed ne)144 700.8 Q 2.5(wc)-.25 G(urrent directory f)-2.5 -E(ails.)-.1 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G -(mber 16).15 E(64)185.545 E 0 Cg EP +F F1(dirs)180 672 Q F0 2.5(,s)C(tarting with zero\) is at the top.)-2.5 +E F2(dir)144.35 684 Q F0(Adds)180 684 Q F2(dir)3.137 E F0 .287 +(to the directory stack at the top, making it the ne)3.517 F 2.788(wc) +-.25 G .288(urrent w)-2.788 F .288(orking directory as)-.1 F +(if it had been supplied as the ar)180 696 Q(gument to the)-.18 E F1(cd) +2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .489(If the)144 712.8 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 724.8 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 +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(64)190.95 E 0 Cg EP %%Page: 65 65 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(pwd)108 84 Q F0([)2.5 E F1(\255LP)A F0(])A .845 -(Print the absolute pathname of the current w)144 96 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 -108 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 120 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\ - reading the name of the current directory or an in)144 132 R -.25(va) --.4 G(lid).25 E(option is supplied.)144 144 Q F1 -.18(re)108 160.8 S(ad) -.18 E F0([)3.817 E F1(\255ers)A F0 3.817(][)C F1-3.817 E/F2 10 -/Times-Italic@0 SF(aname)3.817 E F0 3.817(][)C F1-3.817 E F2 -(delim)3.817 E F0 3.817(][)C F1-3.817 E F2(te)3.817 E(xt)-.2 E F0 -3.817(][)C F1-3.817 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816 -(][)C F1-3.816 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1 --3.816 E F2(pr)3.816 E(ompt)-.45 E F0 3.816(][)C F1-3.816 E -F2(timeout)3.816 E F0 3.816(][)C F1-3.816 E F2(fd)3.816 E F0(])A -([)108 172.8 Q F2(name)A F0(...])2.5 E .516(One line is read from the s\ -tandard input, or from the \214le descriptor)144 184.8 R F2(fd)3.016 E -F0 .516(supplied as an ar)3.016 F .517(gument to)-.18 F(the)144 196.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 208.8 R -.15(ve)-.15 G 2.92(rw) +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .847 +(stack is empty)144 84 R 3.347(,an)-.65 G(on-e)-3.347 E .847(xistent di\ +rectory stack element is speci\214ed, or the directory change to the) +-.15 F(speci\214ed ne)144 96 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E +(ails.)-.1 E/F1 10/Times-Bold@0 SF(pwd)108 112.8 Q F0([)2.5 E F1(\255LP) +A F0(])A .844(Print the absolute pathname of the current w)144 124.8 R +.845(orking directory)-.1 F 5.845(.T)-.65 G .845 +(he pathname printed contains no)-5.845 F .182(symbolic links if the)144 +136.8 R F12.681 E F0 .181(option is supplied or the)2.681 F F1 +.181(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1 +(set)2.681 E F0 -.2(bu)2.681 G .181(iltin command is).2 F 3.263 +(enabled. If)144 148.8 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 160.8 R -.25(va) +-.4 G(lid).25 E(option is supplied.)144 172.8 Q F1 -.18(re)108 189.6 S +(ad).18 E F0([)3.816 E F1(\255ers)A F0 3.816(][)C F1-3.816 E/F2 10 +/Times-Italic@0 SF(aname)3.816 E F0 3.816(][)C F1-3.816 E F2 +(delim)3.816 E F0 3.816(][)C F1-3.816 E F2(te)3.816 E(xt)-.2 E F0 +3.816(][)C F1-3.816 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.817 +(][)C F1-3.817 E F2(nc)3.817 E(har)-.15 E(s)-.1 E F0 3.817(][)C F1 +-3.817 E F2(pr)3.817 E(ompt)-.45 E F0 3.817(][)C F1-3.817 E +F2(timeout)3.817 E F0 3.817(][)C F1-3.817 E F2(fd)3.817 E F0(])A +([)108 201.6 Q F2(name)A F0(...])2.5 E .516(One line is read from the s\ +tandard input, or from the \214le descriptor)144 213.6 R F2(fd)3.016 E +F0 .516(supplied as an ar)3.016 F .516(gument to)-.18 F(the)144 225.6 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(and so on, with lefto)144 237.6 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 .541(are fe)144 220.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 232.8 S 3.357(lues. The).25 F -.857(characters in)3.357 F/F3 9/Times-Bold@0 SF(IFS)3.357 E F0 .857 +.18 G 2.92(ft)-5.42 G(here)-2.92 E .54(are fe)144 249.6 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 261.6 S 3.357(lues. The).25 F .857 +(characters in)3.357 F/F3 9/Times-Bold@0 SF(IFS)3.357 E F0 .857 (are used to split the line into w)3.107 F .857 -(ords using the same rules the shell)-.1 F .754(uses for e)144 244.8 R +(ords using the same rules the shell)-.1 F .753(uses for e)144 273.6 R .753(xpansion \(described abo)-.15 F 1.053 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)3.253 G .753(rd Splitting).75 F F0 3.253(\). The)B .753 -(backslash character \()3.253 F F1(\\)A F0 3.253(\)m)C .753(ay be)-3.253 -F .075(used to remo)144 256.8 R .375 -.15(ve a)-.15 H .375 -.15(ny s).15 -H .075(pecial meaning for the ne).15 F .076 -(xt character read and for line continuation.)-.15 F(Options,)5.076 E -(if supplied, ha)144 268.8 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 280.8 Q F2(aname)2.5 E F0 1.05(The w) -180 292.8 R 1.049 +(backslash character \()3.253 F F1(\\)A F0 3.253(\)m)C .754(ay be)-3.253 +F .076(used to remo)144 285.6 R .376 -.15(ve a)-.15 H .376 -.15(ny s).15 +H .075(pecial meaning for the ne).15 F .075 +(xt character read and for line continuation.)-.15 F(Options,)5.075 E +(if supplied, ha)144 297.6 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 309.6 Q F2(aname)2.5 E F0 1.049 +(The w)180 321.6 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 304.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 316.8 Q F2(delim)2.5 E -F0(The \214rst character of)180 328.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 333.6 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 -.25 +(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F2(name)2.5 E F0(ar)2.5 +E(guments are ignored.)-.18 E F1144 345.6 Q F2(delim)2.5 E F0 +(The \214rst character of)180 357.6 Q F2(delim)2.5 E F0 (is used to terminate the input line, rather than ne)2.5 E(wline.)-.25 E -F1144 340.8 Q F0 .372 -(If the standard input is coming from a terminal,)180 340.8 R F1 -.18 -(re)2.873 G(adline).18 E F0(\(see)2.873 E F3(READLINE)2.873 E F0(abo) -2.623 E -.15(ve)-.15 G 2.873(\)i).15 G 2.873(su)-2.873 G(sed)-2.873 E -.218(to obtain the line.)180 352.8 R .218 +F1144 369.6 Q F0 .373 +(If the standard input is coming from a terminal,)180 369.6 R F1 -.18 +(re)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 +.218(to obtain the line.)180 381.6 R .218 (Readline uses the current \(or def)5.218 F .218 (ault, if line editing w)-.1 F .218(as not pre)-.1 F(viously)-.25 E -(acti)180 364.8 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings.)-2.5 E -F1144 376.8 Q F2(te)2.5 E(xt)-.2 E F0(If)180 376.8 Q F1 -.18(re) -2.715 G(adline).18 E F0 .216(is being used to read the line,)2.715 F F2 +(acti)180 393.6 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings.)-2.5 E +F1144 405.6 Q F2(te)2.5 E(xt)-.2 E F0(If)180 405.6 Q 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 .216(fer before edit-)-.25 F(ing be)180 388.8 Q(gins.)-.15 E F1 -144 400.8 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 412.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, b)180 424.8 Q +E .215(fer before edit-)-.25 F(ing be)180 417.6 Q(gins.)-.15 E F1 +144 429.6 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 441.6 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)-.1 F(input, b)180 453.6 Q (ut honors a delimiter if fe)-.2 E(wer than)-.25 E F2(nc)2.5 E(har)-.15 E(s)-.1 E F0(characters are read before the delimiter)2.5 E(.)-.55 E F1 -144 436.8 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 448.8 S -(ad).18 E F0 1.269(returns after reading e)3.769 F(xactly)-.15 E F2(nc) +144 465.6 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 477.6 S +(ad).18 E F0 1.269(returns after reading e)3.77 F(xactly)-.15 E F2(nc) 3.769 E(har)-.15 E(s)-.1 E F0 1.269(characters rather than w)3.769 F -1.27(aiting for a complete)-.1 F .275 -(line of input, unless EOF is encountered or)180 460.8 R F1 -.18(re) -2.775 G(ad).18 E F0 .274(times out.)2.774 F .274 -(Delimiter characters encoun-)5.274 F 1.002 -(tered in the input are not treated specially and do not cause)180 472.8 -R F1 -.18(re)3.503 G(ad).18 E F0 1.003(to return until)3.503 F F2(nc) -3.503 E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 484.8 R .608 -(The result is not split on the characters in)5.609 F F1(IFS)3.108 E F0 -3.108(;t)C .608(he intent is that the)-3.108 F -.25(va)180 496.8 S .669 +1.269(aiting for a complete)-.1 F .274 +(line of input, unless EOF is encountered or)180 489.6 R F1 -.18(re) +2.775 G(ad).18 E F0 .275(times out.)2.775 F .275 +(Delimiter characters encoun-)5.275 F 1.003 +(tered in the input are not treated specially and do not cause)180 501.6 +R F1 -.18(re)3.502 G(ad).18 E F0 1.002(to return until)3.502 F F2(nc) +3.502 E(har)-.15 E(s)-.1 E F0 .608(characters are read.)180 513.6 R .608 +(The result is not split on the characters in)5.608 F F1(IFS)3.108 E F0 +3.108(;t)C .609(he intent is that the)-3.108 F -.25(va)180 525.6 S .67 (riable is assigned e).25 F .669 -(xactly the characters read \(with the e)-.15 F .67 -(xception of backslash; see the)-.15 F F1180 508.8 Q F0 -(option belo)2.5 E(w\).)-.25 E F1144 520.8 Q F2(pr)2.5 E(ompt)-.45 -E F0(Display)180 532.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) --3.661 F 1.161(wline, before attempting to read)-.25 F(an)180 544.8 Q +(xactly the characters read \(with the e)-.15 F .669 +(xception of backslash; see the)-.15 F F1180 537.6 Q F0 +(option belo)2.5 E(w\).)-.25 E F1144 549.6 Q F2(pr)2.5 E(ompt)-.45 +E F0(Display)180 561.6 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 573.6 Q 2.5(yi)-.15 G 2.5(nput. The)-2.5 F (prompt is displayed only if input is coming from a terminal.)2.5 E F1 -144 556.8 Q F0 .543(Backslash does not act as an escape character) -180 556.8 R 5.543(.T)-.55 G .544 -(he backslash is considered to be part of)-5.543 F(the line.)180 568.8 Q +144 585.6 Q F0 .544(Backslash does not act as an escape character) +180 585.6 R 5.543(.T)-.55 G .543 +(he backslash is considered to be part of)-5.543 F(the line.)180 597.6 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 -580.8 Q F0(Silent mode.)180 580.8 Q +609.6 Q F0(Silent mode.)180 609.6 Q (If input is coming from a terminal, characters are not echoed.)5 E F1 -144 592.8 Q F2(timeout)2.5 E F0(Cause)180 604.8 Q F1 -.18(re)2.929 -G(ad).18 E F0 .428(to time out and return f)2.929 F .428 -(ailure if a complete line of input \(or a speci\214ed num-)-.1 F .56 -(ber of characters\) is not read within)180 616.8 R F2(timeout)3.061 E -F0(seconds.)3.061 E F2(timeout)5.561 E F0 .561(may be a decimal number) -3.061 F(with a fractional portion follo)180 628.8 Q +144 621.6 Q F2(timeout)2.5 E F0(Cause)180 633.6 Q F1 -.18(re)2.928 +G(ad).18 E F0 .428(to time out and return f)2.928 F .428 +(ailure if a complete line of input \(or a speci\214ed num-)-.1 F .561 +(ber of characters\) is not read within)180 645.6 R F2(timeout)3.061 E +F0(seconds.)3.061 E F2(timeout)5.561 E F0 .56(may be a decimal number) +3.061 F(with a fractional portion follo)180 657.6 Q (wing the decimal point.)-.25 E(This option is only ef)5 E(fecti)-.25 E .3 -.15(ve i)-.25 H(f).15 E F1 -.18(re)2.5 G(ad).18 E F0 .506(is readin\ g input from a terminal, pipe, or other special \214le; it has no ef)180 -640.8 R .506(fect when reading)-.25 F .59(from re)180 652.8 R .59 -(gular \214les.)-.15 F(If)5.59 E F1 -.18(re)3.09 G(ad).18 E F0 .589 -(times out,)3.09 F F1 -.18(re)3.089 G(ad).18 E F0(sa)3.089 E -.15(ve)-.2 -G 3.089(sa).15 G .889 -.15(ny p)-3.089 H .589 -(artial input read into the speci\214ed).15 F -.25(va)180 664.8 S +669.6 R .505(fect when reading)-.25 F .589(from re)180 681.6 R .589 +(gular \214les.)-.15 F(If)5.589 E F1 -.18(re)3.089 G(ad).18 E F0 .589 +(times out,)3.089 F F1 -.18(re)3.089 G(ad).18 E F0(sa)3.089 E -.15(ve) +-.2 G 3.089(sa).15 G .889 -.15(ny p)-3.089 H .59 +(artial input read into the speci\214ed).15 F -.25(va)180 693.6 S (riable).25 E F2(name)2.77 E F0 5.27(.I)C(f)-5.27 E F2(timeout)2.77 E F0 .27(is 0,)2.77 F F1 -.18(re)2.77 G(ad).18 E F0 .27(returns immediately) 2.77 F 2.77(,w)-.65 G .27(ithout trying to read an)-2.77 F 2.77(yd)-.15 -G(ata.)-2.77 E 1.12(The e)180 676.8 R 1.12 +G(ata.)-2.77 E 1.12(The e)180 705.6 R 1.12 (xit status is 0 if input is a)-.15 F -.25(va)-.2 G 1.12 (ilable on the speci\214ed \214le descriptor).25 F 3.62(,n)-.4 G 1.12 -(on-zero other)-3.62 F(-)-.2 E 2.5(wise. The)180 688.8 R -.15(ex)2.5 G +(on-zero other)-3.62 F(-)-.2 E 2.5(wise. The)180 717.6 R -.15(ex)2.5 G (it status is greater than 128 if the timeout is e).15 E(xceeded.)-.15 E -F1144 700.8 Q F2(fd)2.5 E F0(Read input from \214le descriptor)180 -700.8 Q F2(fd)2.5 E F0(.)A .476(If no)144 717.6 R F2(names)3.336 E F0 -.476(are supplied, the line read is assigned to the v)3.246 F(ariable) --.25 E F3(REPL)2.977 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A F0 .477 -(The e)4.977 F .477(xit status is zero,)-.15 F .773 -(unless end-of-\214le is encountered,)144 729.6 R F1 -.18(re)3.273 G(ad) -.18 E F0 .772 -(times out \(in which case the status is greater than 128\), a)3.273 F -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(65)185.545 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(65)190.95 E 0 Cg EP %%Page: 66 66 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.25(va)144 84 S -2.004(riable assignment error \(such as assigning to a readonly v).25 F -2.005(ariable\) occurs, or an in)-.25 F -.25(va)-.4 G 2.005(lid \214le) -.25 F(descriptor is supplied as the ar)144 96 Q(gument to)-.18 E/F1 10 -/Times-Bold@0 SF2.5 E F0(.)A F1 -.18(re)108 112.8 S(adonly).18 E -F0([)2.5 E F1(\255aAf)A F0 2.5(][)C F1-2.5 E F0 2.5(][)C/F2 10 -/Times-Italic@0 SF(name)-2.5 E F0([=)A F2(wor)A(d)-.37 E F0 2.5(].)C -(..])-2.5 E .77(The gi)144 124.8 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 136.8 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 148.8 Q 3.334(ed. The) +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF144 84 Q/F2 10/Times-Italic@0 SF(fd)2.5 E F0 +(Read input from \214le descriptor)180 84 Q F2(fd)2.5 E F0(.)A .477 +(If no)144 100.8 R F2(names)3.337 E F0 .477 +(are supplied, the line read is assigned to the v)3.247 F(ariable)-.25 E +/F3 9/Times-Bold@0 SF(REPL)2.976 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A +F0 .476(The e)4.976 F .476(xit status is zero,)-.15 F .772 +(unless end-of-\214le is encountered,)144 112.8 R F1 -.18(re)3.272 G(ad) +.18 E F0 .773 +(times out \(in which case the status is greater than 128\), a)3.272 F +-.25(va)144 124.8 S 2.004 +(riable assignment error \(such as assigning to a readonly v).25 F 2.004 +(ariable\) occurs, or an in)-.25 F -.25(va)-.4 G 2.004(lid \214le).25 F +(descriptor is supplied as the ar)144 136.8 Q(gument to)-.18 E F1 +2.5 E F0(.)A F1 -.18(re)108 153.6 S(adonly).18 E F0([)2.5 E F1(\255aAf)A +F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(wor)A +(d)-.37 E F0 2.5(].)C(..])-2.5 E .77(The gi)144 165.6 R -.15(ve)-.25 G +(n).15 E F2(names)3.27 E F0 .77(are mark)3.27 F .77(ed readonly; the v) +-.1 F .77(alues of these)-.25 F F2(names)3.63 E F0 .77 +(may not be changed by subse-)3.54 F 1.097(quent assignment.)144 177.6 R +1.097(If the)6.097 F F13.597 E F0 1.097 +(option is supplied, the functions corresponding to the)3.597 F F2 +(names)3.596 E F0 1.096(are so)3.596 F(mark)144 189.6 Q 3.334(ed. The) -.1 F F13.334 E F0 .834(option restricts the v)3.334 F .834 (ariables to inde)-.25 F -.15(xe)-.15 G 3.334(da).15 G .834(rrays; the) -3.334 F F13.334 E F0 .834(option restricts the v)3.334 F(ari-) --.25 E .776(ables to associati)144 160.8 R 1.076 -.15(ve a)-.25 H 3.276 -(rrays. If).15 F .777(both options are supplied,)3.276 F F13.277 E -F0(tak)3.277 E .777(es precedence.)-.1 F .777(If no)5.777 F F2(name) -3.637 E F0(ar)3.457 E(gu-)-.18 E .522(ments are gi)144 172.8 R -.15(ve) +-.25 E .777(ables to associati)144 201.6 R 1.077 -.15(ve a)-.25 H 3.277 +(rrays. If).15 F .777(both options are supplied,)3.277 F F13.277 E +F0(tak)3.277 E .776(es precedence.)-.1 F .776(If no)5.776 F F2(name) +3.636 E F0(ar)3.456 E(gu-)-.18 E .521(ments are gi)144 213.6 R -.15(ve) -.25 G .521(n, or if the).15 F F13.021 E F0 .521 (option is supplied, a list of all readonly names is printed.)3.021 F -.521(The other)5.521 F .295(options may be used to restrict the output \ -to a subset of the set of readonly names.)144 184.8 R(The)5.296 E F1 -2.796 E F0(option)2.796 E .786 +.522(The other)5.521 F .295(options may be used to restrict the output \ +to a subset of the set of readonly names.)144 225.6 R(The)5.295 E F1 +2.795 E F0(option)2.795 E .786 (causes output to be displayed in a format that may be reused as input.) -144 196.8 R .786(If a v)5.786 F .785(ariable name is fol-)-.25 F(lo)144 -208.8 Q .717(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v) +144 237.6 R .786(If a v)5.786 F .786(ariable name is fol-)-.25 F(lo)144 +249.6 Q .718(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v) -3.218 F .718(alue of the v)-.25 F .718(ariable is set to)-.25 F F2(wor) 3.218 E(d)-.37 E F0 5.718(.T)C .718(he return status is 0 unless an in) -5.718 F -.25(va)-.4 G(lid).25 E .26(option is encountered, one of the) -144 220.8 R F2(names)3.12 E F0 .26(is not a v)3.03 F .26(alid shell v) +144 261.6 R F2(names)3.12 E F0 .26(is not a v)3.03 F .26(alid shell v) -.25 F .26(ariable name, or)-.25 F F12.76 E F0 .26 -(is supplied with a)2.76 F F2(name)144.36 232.8 Q F0 -(that is not a function.)2.68 E F1 -.18(re)108 249.6 S(tur).18 E(n)-.15 -E F0([)2.5 E F2(n)A F0(])A .02(Causes a function to stop e)144 261.6 R --.15(xe)-.15 G .02(cuting and return the v).15 F .021 -(alue speci\214ed by)-.25 F F2(n)2.881 E F0 .021(to its caller)2.761 F -5.021(.I)-.55 G(f)-5.021 E F2(n)2.881 E F0 .021(is omitted,)2.761 F .597 -(the return status is that of the last command e)144 273.6 R -.15(xe) --.15 G .596(cuted in the function body).15 F 5.596(.I)-.65 G(f)-5.596 E -F1 -.18(re)3.096 G(tur).18 E(n)-.15 E F0 .596(is e)3.096 F -.15(xe)-.15 -G(cuted).15 E 1.238(by a trap handler)144 285.6 R 3.738(,t)-.4 G 1.238 +(is supplied with a)2.76 F F2(name)144.36 273.6 Q F0 +(that is not a function.)2.68 E F1 -.18(re)108 290.4 S(tur).18 E(n)-.15 +E F0([)2.5 E F2(n)A F0(])A .021(Causes a function to stop e)144 302.4 R +-.15(xe)-.15 G .021(cuting and return the v).15 F .021 +(alue speci\214ed by)-.25 F F2(n)2.88 E F0 .02(to its caller)2.76 F 5.02 +(.I)-.55 G(f)-5.02 E F2(n)2.88 E F0 .02(is omitted,)2.76 F .596 +(the return status is that of the last command e)144 314.4 R -.15(xe) +-.15 G .597(cuted in the function body).15 F 5.597(.I)-.65 G(f)-5.597 E +F1 -.18(re)3.097 G(tur).18 E(n)-.15 E F0 .597(is e)3.097 F -.15(xe)-.15 +G(cuted).15 E 1.239(by a trap handler)144 326.4 R 3.738(,t)-.4 G 1.238 (he last command used to determine the status is the last command e) --3.738 F -.15(xe)-.15 G(cuted).15 E 1.067(before the trap handler)144 -297.6 R 6.067(.i)-.55 G(f)-6.067 E F1 -.18(re)3.567 G(tur).18 E(n)-.15 E +-3.738 F -.15(xe)-.15 G(cuted).15 E 1.066(before the trap handler)144 +338.4 R 6.067(.i)-.55 G(f)-6.067 E F1 -.18(re)3.567 G(tur).18 E(n)-.15 E F0 1.067(is e)3.567 F -.15(xe)-.15 G 1.067(cuted during a).15 F F1(DEB) -3.567 E(UG)-.1 E F0 1.067(trap, the last command used to)3.567 F .389 -(determine the status is the last command e)144 309.6 R -.15(xe)-.15 G -.389(cuted by the trap handler before).15 F F1 -.18(re)2.89 G(tur).18 E -(n)-.15 E F0 -.1(wa)2.89 G 2.89(si).1 G -1.9 -.4(nv o)-2.89 H -.1(ke).4 -G(d.).1 E(If)144 321.6 Q F1 -.18(re)2.584 G(tur).18 E(n)-.15 E F0 .084 -(is used outside a function, b)2.584 F .084(ut during e)-.2 F -.15(xe) --.15 G .084(cution of a script by the).15 F F1(.)2.584 E F0(\()5.084 E -F1(sour)A(ce)-.18 E F0 2.583(\)c)C .083(ommand, it)-2.583 F .588 -(causes the shell to stop e)144 333.6 R -.15(xe)-.15 G .588 -(cuting that script and return either).15 F F2(n)3.448 E F0 .589 -(or the e)3.329 F .589(xit status of the last com-)-.15 F .326(mand e) -144 345.6 R -.15(xe)-.15 G .326(cuted within the script as the e).15 F -.326(xit status of the script.)-.15 F(If)5.326 E F2(n)2.826 E F0 .325 -(is supplied, the return v)2.826 F .325(alue is)-.25 F .444 -(its least signi\214cant 8 bits.)144 357.6 R .444 -(The return status is non-zero if)5.444 F F1 -.18(re)2.945 G(tur).18 E -(n)-.15 E F0 .445(is supplied a non-numeric ar)2.945 F(gu-)-.18 E .381 -(ment, or is used outside a function and not during e)144 369.6 R -.15 +3.567 E(UG)-.1 E F0 1.067(trap, the last command used to)3.567 F .39 +(determine the status is the last command e)144 350.4 R -.15(xe)-.15 G +.389(cuted by the trap handler before).15 F F1 -.18(re)2.889 G(tur).18 E +(n)-.15 E F0 -.1(wa)2.889 G 2.889(si).1 G -1.9 -.4(nv o)-2.889 H -.1(ke) +.4 G(d.).1 E(If)144 362.4 Q F1 -.18(re)2.583 G(tur).18 E(n)-.15 E F0 +.084(is used outside a function, b)2.583 F .084(ut during e)-.2 F -.15 +(xe)-.15 G .084(cution of a script by the).15 F F1(.)2.584 E F0(\()5.084 +E F1(sour)A(ce)-.18 E F0 2.584(\)c)C .084(ommand, it)-2.584 F .589 +(causes the shell to stop e)144 374.4 R -.15(xe)-.15 G .589 +(cuting that script and return either).15 F F2(n)3.448 E F0 .588 +(or the e)3.328 F .588(xit status of the last com-)-.15 F .325(mand e) +144 386.4 R -.15(xe)-.15 G .325(cuted within the script as the e).15 F +.326(xit status of the script.)-.15 F(If)5.326 E F2(n)2.826 E F0 .326 +(is supplied, the return v)2.826 F .326(alue is)-.25 F .445 +(its least signi\214cant 8 bits.)144 398.4 R .444 +(The return status is non-zero if)5.445 F F1 -.18(re)2.944 G(tur).18 E +(n)-.15 E F0 .444(is supplied a non-numeric ar)2.944 F(gu-)-.18 E .381 +(ment, or is used outside a function and not during e)144 410.4 R -.15 (xe)-.15 G .381(cution of a script by).15 F F1(.)2.881 E F0(or)3.714 E -F1(sour)2.881 E(ce)-.18 E F0 5.38(.A)C .68 -.15(ny c)-5.38 H(om-).15 E -.749(mand associated with the)144 381.6 R F1(RETURN)3.249 E F0 .749 +F1(sour)2.881 E(ce)-.18 E F0 5.381(.A)C .681 -.15(ny c)-5.381 H(om-).15 +E .75(mand associated with the)144 422.4 R F1(RETURN)3.249 E F0 .749 (trap is e)3.249 F -.15(xe)-.15 G .749(cuted before e).15 F -.15(xe)-.15 -G .75(cution resumes after the function).15 F(or script.)144 393.6 Q F1 -(set)108 410.4 Q F0([)2.5 E F1(\255\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C +G .749(cution resumes after the function).15 F(or script.)144 434.4 Q F1 +(set)108 451.2 Q F0([)2.5 E F1(\255\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1-2.5 E F2(option\255name)2.5 E F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E -F0(...])2.5 E F1(set)108 422.4 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0 +F0(...])2.5 E F1(set)108 463.2 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1(+o)-2.5 E F2(option\255name)2.5 E F0 2.5(][)C F2(ar)-2.5 E -(g)-.37 E F0(...])2.5 E -.4(Wi)144 434.4 S .836 +(g)-.37 E F0(...])2.5 E -.4(Wi)144 475.2 S .835 (thout options, the name and v).4 F .835(alue of each shell v)-.25 F -.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 446.4 -R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .784 -(riables cannot be).25 F 2.912(reset. In)144 458.4 R F2(posix)2.912 E F0 +.836(ariable are displayed in a format that can be)-.25 F .784 +(reused as input for setting or resetting the currently-set v)144 487.2 +R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .783 +(riables cannot be).25 F 2.911(reset. In)144 499.2 R F2(posix)2.911 E F0 .412(mode, only shell v)2.912 F .412(ariables are listed.)-.25 F .412 -(The output is sorted according to the current)5.412 F 3.53 -(locale. When)144 470.4 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 -1.624(after option processing are treated as v)144 482.4 R 1.623 +(The output is sorted according to the current)5.412 F 3.531 +(locale. When)144 511.2 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 1.623 +(after option processing are treated as v)144 523.2 R 1.624 (alues for the positional parameters and are assigned, in)-.25 F(order) -144 494.4 Q 2.5(,t)-.4 G(o)-2.5 E F1($1)2.5 E F0(,)A F1($2)2.5 E F0(,)A +144 535.2 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 506.4 Q -F0 1.377(Each v)184 506.4 R 1.377 +-.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 547.2 Q +F0 1.378(Each v)184 547.2 R 1.377 (ariable or function that is created or modi\214ed is gi)-.25 F -.15(ve) --.25 G 3.877(nt).15 G 1.377(he e)-3.877 F 1.378(xport attrib)-.15 F -1.378(ute and)-.2 F(mark)184 518.4 Q(ed for e)-.1 E(xport to the en)-.15 -E(vironment of subsequent commands.)-.4 E F1144 530.4 Q F0 .132 -(Report the status of terminated background jobs immediately)184 530.4 R -2.632(,r)-.65 G .131(ather than before the ne)-2.632 F(xt)-.15 E -(primary prompt.)184 542.4 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o) --.25 H(nly when job control is enabled.).15 E F1144 554.4 Q F0 -.087(Exit immediately if a)184 554.4 R F2(pipeline)2.587 E F0 .087 -(\(which may consist of a single)2.587 F F2 .088(simple command)2.588 F -F0 .088(\), a)B F2(list)2.588 E F0 2.588(,o)C(r)-2.588 E(a)184 566.4 Q -F2 1.521(compound command)4.021 F F0(\(see)4.021 E/F3 9/Times-Bold@0 SF -1.521(SHELL GRAMMAR)4.021 F F0(abo)3.771 E -.15(ve)-.15 G 1.521(\), e) -.15 F 1.521(xits with a non-zero status.)-.15 F .079 -(The shell does not e)184 578.4 R .079(xit if the command that f)-.15 F -.08(ails is part of the command list immediately)-.1 F(follo)184 590.4 Q -1.655(wing a)-.25 F F1(while)4.155 E F0(or)4.155 E F1(until)4.155 E F0 --.1(ke)4.155 G(yw)-.05 E 1.655(ord, part of the test follo)-.1 F 1.654 -(wing the)-.25 F F1(if)4.154 E F0(or)4.154 E F1(elif)4.154 E F0(reserv) -4.154 E(ed)-.15 E -.1(wo)184 602.4 S .581(rds, part of an).1 F 3.081(yc) --.15 G .581(ommand e)-3.081 F -.15(xe)-.15 G .581(cuted in a).15 F F1 -(&&)3.081 E F0(or)3.081 E F1(||)3.081 E F0 .582(list e)3.082 F .582 -(xcept the command follo)-.15 F(wing)-.25 E .918(the \214nal)184 614.4 R -F1(&&)3.418 E F0(or)3.418 E F1(||)3.418 E F0 3.418(,a)C 1.218 -.15(ny c) --3.418 H .918(ommand in a pipeline b).15 F .917 -(ut the last, or if the command')-.2 F 3.417(sr)-.55 G(eturn)-3.417 E --.25(va)184 626.4 S .66(lue is being in).25 F -.15(ve)-.4 G .66 -(rted with).15 F F1(!)3.16 E F0 5.661(.I)C 3.161(fac)-5.661 G .661 -(ompound command other than a subshell returns a)-3.161 F 1.113 -(non-zero status because a command f)184 638.4 R 1.112(ailed while)-.1 F -F13.612 E F0 -.1(wa)3.612 G 3.612(sb).1 G 1.112 -(eing ignored, the shell does)-3.612 F .177(not e)184 650.4 R 2.677 -(xit. A)-.15 F .177(trap on)2.677 F F1(ERR)2.677 E F0 2.677(,i)C 2.678 -(fs)-2.677 G .178(et, is e)-2.678 F -.15(xe)-.15 G .178 -(cuted before the shell e).15 F 2.678(xits. This)-.15 F .178 -(option applies to)2.678 F .618(the shell en)184 662.4 R .617 +-.25 G 3.877(nt).15 G 1.377(he e)-3.877 F 1.377(xport attrib)-.15 F +1.377(ute and)-.2 F(mark)184 559.2 Q(ed for e)-.1 E(xport to the en)-.15 +E(vironment of subsequent commands.)-.4 E F1144 571.2 Q F0 .131 +(Report the status of terminated background jobs immediately)184 571.2 R +2.632(,r)-.65 G .132(ather than before the ne)-2.632 F(xt)-.15 E +(primary prompt.)184 583.2 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o) +-.25 H(nly when job control is enabled.).15 E F1144 595.2 Q F0 +.088(Exit immediately if a)184 595.2 R F2(pipeline)2.588 E F0 .087 +(\(which may consist of a single)2.588 F F2 .087(simple command)2.587 F +F0 .087(\), a)B F2(list)2.587 E F0 2.587(,o)C(r)-2.587 E(a)184 607.2 Q +F2 1.52(compound command)4.02 F F0(\(see)4.021 E F3 1.521(SHELL GRAMMAR) +4.021 F F0(abo)3.771 E -.15(ve)-.15 G 1.521(\), e).15 F 1.521 +(xits with a non-zero status.)-.15 F .08(The shell does not e)184 619.2 +R .079(xit if the command that f)-.15 F .079 +(ails is part of the command list immediately)-.1 F(follo)184 631.2 Q +1.654(wing a)-.25 F F1(while)4.154 E F0(or)4.154 E F1(until)4.154 E F0 +-.1(ke)4.154 G(yw)-.05 E 1.655(ord, part of the test follo)-.1 F 1.655 +(wing the)-.25 F F1(if)4.155 E F0(or)4.155 E F1(elif)4.155 E F0(reserv) +4.155 E(ed)-.15 E -.1(wo)184 643.2 S .582(rds, part of an).1 F 3.082(yc) +-.15 G .582(ommand e)-3.082 F -.15(xe)-.15 G .581(cuted in a).15 F F1 +(&&)3.081 E F0(or)3.081 E F1(||)3.081 E F0 .581(list e)3.081 F .581 +(xcept the command follo)-.15 F(wing)-.25 E .917(the \214nal)184 655.2 R +F1(&&)3.417 E F0(or)3.417 E F1(||)3.417 E F0 3.417(,a)C 1.217 -.15(ny c) +-3.417 H .918(ommand in a pipeline b).15 F .918 +(ut the last, or if the command')-.2 F 3.418(sr)-.55 G(eturn)-3.418 E +-.25(va)184 667.2 S .661(lue is being in).25 F -.15(ve)-.4 G .661 +(rted with).15 F F1(!)3.161 E F0 5.661(.I)C 3.161(fac)-5.661 G .66 +(ompound command other than a subshell returns a)-3.161 F 1.112 +(non-zero status because a command f)184 679.2 R 1.112(ailed while)-.1 F +F13.612 E F0 -.1(wa)3.612 G 3.612(sb).1 G 1.113 +(eing ignored, the shell does)-3.612 F .178(not e)184 691.2 R 2.678 +(xit. A)-.15 F .178(trap on)2.678 F F1(ERR)2.678 E F0 2.678(,i)C 2.678 +(fs)-2.678 G .178(et, is e)-2.678 F -.15(xe)-.15 G .178 +(cuted before the shell e).15 F 2.677(xits. This)-.15 F .177 +(option applies to)2.677 F .617(the shell en)184 703.2 R .617 (vironment and each subshell en)-.4 F .617(vironment separately \(see) --.4 F F3 .617(COMMAND EXE-)3.117 F .642(CUTION ENVIR)184 674.4 R(ONMENT) +-.4 F F3 .618(COMMAND EXE-)3.118 F .643(CUTION ENVIR)184 715.2 R(ONMENT) -.27 E F0(abo)2.893 E -.15(ve)-.15 G .643 (\), and may cause subshells to e).15 F .643(xit before e)-.15 F -.15 -(xe)-.15 G .643(cuting all).15 F(the commands in the subshell.)184 686.4 -Q 2.042(If a compound command or shell function e)184 704.4 R -.15(xe) --.15 G 2.042(cutes in a conte).15 F 2.042(xt where)-.15 F F14.542 -E F0 2.042(is being)4.542 F 1.435(ignored, none of the commands e)184 -716.4 R -.15(xe)-.15 G 1.436 -(cuted within the compound command or function).15 F .194 -(body will be af)184 728.4 R .194(fected by the)-.25 F F12.694 E -F0 .193(setting, e)2.693 F -.15(ve)-.25 G 2.693(ni).15 G(f)-2.693 E F1 -2.693 E F0 .193(is set and a command returns a f)2.693 F(ailure) --.1 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 -E(66)185.545 E 0 Cg EP +(xe)-.15 G .642(cuting all).15 F(the commands in the subshell.)184 727.2 +Q(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(66)190.95 E 0 Cg EP %%Page: 67 67 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 3.39(status. If) -184 84 R 3.39(ac)3.39 G .89(ompound command or shell function sets)-3.39 -F/F1 10/Times-Bold@0 SF3.39 E F0 .89(while e)3.39 F -.15(xe)-.15 G -.89(cuting in a conte).15 F(xt)-.15 E(where)184 96 Q F13.154 E F0 -.654(is ignored, that setting will not ha)3.154 F .953 -.15(ve a)-.2 H -.953 -.15(ny e).15 H -.25(ff).15 G .653(ect until the compound command) -.25 F(or the command containing the function call completes.)184 108 Q -F1144 120 Q F0(Disable pathname e)184 120 Q(xpansion.)-.15 E F1 -144 132 Q F0 2.238(Remember the location of commands as the)184 -132 R 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 -144 Q(ault.)-.1 E F1144 156 Q F0 .514(All ar)184 156 R .514 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.042 +(If a compound command or shell function e)184 84 R -.15(xe)-.15 G 2.042 +(cutes in a conte).15 F 2.042(xt where)-.15 F/F1 10/Times-Bold@0 SF +4.542 E F0 2.043(is being)4.543 F 1.436 +(ignored, none of the commands e)184 96 R -.15(xe)-.15 G 1.435 +(cuted within the compound command or function).15 F .193 +(body will be af)184 108 R .193(fected by the)-.25 F F12.693 E F0 +.193(setting, e)2.693 F -.15(ve)-.25 G 2.693(ni).15 G(f)-2.693 E F1 +2.693 E F0 .194(is set and a command returns a f)2.693 F(ailure) +-.1 E 3.39(status. If)184 120 R 3.39(ac)3.39 G .89 +(ompound command or shell function sets)-3.39 F F13.39 E F0 .89 +(while e)3.39 F -.15(xe)-.15 G .89(cuting in a conte).15 F(xt)-.15 E +(where)184 132 Q F13.153 E F0 .653 +(is ignored, that setting will not ha)3.153 F .954 -.15(ve a)-.2 H .954 +-.15(ny e).15 H -.25(ff).15 G .654(ect until the compound command).25 F +(or the command containing the function call completes.)184 144 Q F1 +144 156 Q F0(Disable pathname e)184 156 Q(xpansion.)-.15 E F1 +144 168 Q F0 2.239(Remember the location of commands as the)184 +168 R 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 +180 Q(ault.)-.1 E F1144 192 Q F0 .513(All ar)184 192 R .514 (guments in the form of assignment statements are placed in the en)-.18 -F .513(vironment for a)-.4 F -(command, not just those that precede the command name.)184 168 Q F1 -144 180 Q F0 .148(Monitor mode.)184 180 R .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 .651 -(on systems that support it \(see)184 192 R/F2 9/Times-Bold@0 SF .651 +F .514(vironment for a)-.4 F +(command, not just those that precede the command name.)184 204 Q F1 +144 216 Q F0 .149(Monitor mode.)184 216 R .149 +(Job control is enabled.)5.149 F .148(This option is on by def)5.149 F +.148(ault for interacti)-.1 F .448 -.15(ve s)-.25 H(hells).15 E .65 +(on systems that support it \(see)184 228 R/F2 9/Times-Bold@0 SF .651 (JOB CONTR)3.151 F(OL)-.27 E F0(abo)2.901 E -.15(ve)-.15 G 3.151 -(\). All).15 F .65(processes run in a separate)3.151 F .678 -(process group.)184 204 R .679(When a background job completes, the she\ -ll prints a line containing its)5.678 F -.15(ex)184 216 S(it status.).15 -E F1144 228 Q F0 .653(Read commands b)184 228 R .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 -240 Q(This is ignored by interacti)5 E .3 -.15(ve s)-.25 H(hells.).15 E -F1144 252 Q/F3 10/Times-Italic@0 SF(option\255name)2.5 E F0(The) -184 264 Q F3(option\255name)2.5 E F0(can be one of the follo)2.5 E -(wing:)-.25 E F1(allexport)184 276 Q F0(Same as)224 288 Q F12.5 E -F0(.)A F1(braceexpand)184 300 Q F0(Same as)224 312 Q F12.5 E F0(.) -A F1(emacs)184 324 Q F0 .089 -(Use an emacs-style command line editing interf)224 324 R 2.589 +(\). All).15 F .651(processes run in a separate)3.151 F .679 +(process group.)184 240 R .678(When a background job completes, the she\ +ll prints a line containing its)5.679 F -.15(ex)184 252 S(it status.).15 +E F1144 264 Q F0 .652(Read commands b)184 264 R .652(ut do not e) +-.2 F -.15(xe)-.15 G .652(cute them.).15 F .653 +(This may be used to check a shell script for)5.652 F(syntax errors.)184 +276 Q(This is ignored by interacti)5 E .3 -.15(ve s)-.25 H(hells.).15 E +F1144 288 Q/F3 10/Times-Italic@0 SF(option\255name)2.5 E F0(The) +184 300 Q F3(option\255name)2.5 E F0(can be one of the follo)2.5 E +(wing:)-.25 E F1(allexport)184 312 Q F0(Same as)224 324 Q F12.5 E +F0(.)A F1(braceexpand)184 336 Q F0(Same as)224 348 Q F12.5 E F0(.) +A F1(emacs)184 360 Q F0 .089 +(Use an emacs-style command line editing interf)224 360 R 2.589 (ace. This)-.1 F .089(is enabled by def)2.589 F(ault)-.1 E .95 -(when the shell is interacti)224 336 R -.15(ve)-.25 G 3.45(,u).15 G .95 +(when the shell is interacti)224 372 R -.15(ve)-.25 G 3.45(,u).15 G .95 (nless the shell is started with the)-3.45 F F1(\255\255noediting)3.45 E -F0 2.5(option. This)224 348 R(also af)2.5 E(fects the editing interf) +F0 2.5(option. This)224 384 R(also af)2.5 E(fects the editing interf) -.25 E(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1(err) -184 360 Q(exit)-.18 E F0(Same as)224 360 Q F12.5 E F0(.)A F1 -(errtrace)184 372 Q F0(Same as)224 372 Q F12.5 E F0(.)A F1 -(functrace)184 384 Q F0(Same as)224 396 Q F12.5 E F0(.)A F1 -(hashall)184 408 Q F0(Same as)224 408 Q F12.5 E F0(.)A F1 -(histexpand)184 420 Q F0(Same as)224 432 Q F12.5 E F0(.)A F1 -(history)184 444 Q F0 .586(Enable command history)224 444 R 3.087(,a) +184 396 Q(exit)-.18 E F0(Same as)224 396 Q F12.5 E F0(.)A F1 +(errtrace)184 408 Q F0(Same as)224 408 Q F12.5 E F0(.)A F1 +(functrace)184 420 Q F0(Same as)224 432 Q F12.5 E F0(.)A F1 +(hashall)184 444 Q F0(Same as)224 444 Q F12.5 E F0(.)A F1 +(histexpand)184 456 Q F0(Same as)224 468 Q F12.5 E F0(.)A F1 +(history)184 480 Q F0 .587(Enable command history)224 480 R 3.087(,a) -.65 G 3.087(sd)-3.087 G .587(escribed abo)-3.087 F .887 -.15(ve u)-.15 H(nder).15 E F2(HIST)3.087 E(OR)-.162 E(Y)-.315 E/F4 9/Times-Roman@0 SF -(.)A F0 .587(This option is)5.087 F(on by def)224 456 Q +(.)A F0 .587(This option is)5.087 F(on by def)224 492 Q (ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184 -468 Q(eeof)-.18 E F0 1.657(The ef)224 480 R 1.657 +504 Q(eeof)-.18 E F0 1.656(The ef)224 516 R 1.656 (fect is as if the shell command)-.25 F/F5 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 -492 Q F1(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G(\).) -.15 E F1 -.1(ke)184 504 S(yw).1 E(ord)-.1 E F0(Same as)224 516 Q F1 -2.5 E F0(.)A F1(monitor)184 528 Q F0(Same as)224 528 Q F12.5 -E F0(.)A F1(noclob)184 540 Q(ber)-.1 E F0(Same as)224 552 Q F12.5 -E F0(.)A F1(noexec)184 564 Q F0(Same as)224 564 Q F12.5 E F0(.)A -F1(noglob)184 576 Q F0(Same as)224 576 Q F12.5 E F0(.)A F1(nolog) -184 588 Q F0(Currently ignored.)224 588 Q F1(notify)184 600 Q F0 -(Same as)224 600 Q F12.5 E F0(.)A F1(nounset)184 612 Q F0(Same as) -224 612 Q F12.5 E F0(.)A F1(onecmd)184 624 Q F0(Same as)224 624 Q -F12.5 E F0(.)A F1(ph)184 636 Q(ysical)-.15 E F0(Same as)224 636 Q -F12.5 E F0(.)A F1(pipefail)184 648 Q F0 1.029 -(If set, the return v)224 648 R 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 660 -R 1.136 +4.157 E F0 1.657(had been e)4.157 F -.15(xe)-.15 G(cuted).15 E(\(see)224 +528 Q F1(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G(\).) +.15 E F1 -.1(ke)184 540 S(yw).1 E(ord)-.1 E F0(Same as)224 552 Q F1 +2.5 E F0(.)A F1(monitor)184 564 Q F0(Same as)224 564 Q F12.5 +E F0(.)A F1(noclob)184 576 Q(ber)-.1 E F0(Same as)224 588 Q F12.5 +E F0(.)A F1(noexec)184 600 Q F0(Same as)224 600 Q F12.5 E F0(.)A +F1(noglob)184 612 Q F0(Same as)224 612 Q F12.5 E F0(.)A F1(nolog) +184 624 Q F0(Currently ignored.)224 624 Q F1(notify)184 636 Q F0 +(Same as)224 636 Q F12.5 E F0(.)A F1(nounset)184 648 Q F0(Same as) +224 648 Q F12.5 E F0(.)A F1(onecmd)184 660 Q F0(Same as)224 660 Q +F12.5 E F0(.)A F1(ph)184 672 Q(ysical)-.15 E F0(Same as)224 672 Q +F12.5 E F0(.)A F1(pipefail)184 684 Q F0 1.03(If set, the return v) +224 684 R 1.029(alue of a pipeline is the v)-.25 F 1.029 +(alue of the last \(rightmost\) com-)-.25 F 1.136(mand to e)224 696 R +1.136 (xit with a non-zero status, or zero if all commands in the pipeline) --.15 F -.15(ex)224 672 S(it successfully).15 E 5(.T)-.65 G -(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 684 Q F0 -2.09(Change the beha)224 684 R 2.091(vior of)-.2 F F1(bash)4.591 E F0 -2.091(where the def)4.591 F 2.091(ault operation dif)-.1 F 2.091 -(fers from the)-.25 F 1.212(POSIX standard to match the standard \()224 -696 R F3 1.212(posix mode)B F0 3.712(\). See)B F2 1.212(SEE ALSO)3.712 F -F0(belo)3.462 E(w)-.25 E 2.306 -(for a reference to a document that details ho)224 708 R 4.807(wp)-.25 G -2.307(osix mode af)-4.807 F 2.307(fects bash')-.25 F(s)-.55 E(beha)224 -720 Q(vior)-.2 E(.)-.55 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15 -(ve)-.15 G(mber 16).15 E(67)185.545 E 0 Cg EP +-.15 F -.15(ex)224 708 S(it successfully).15 E 5(.T)-.65 G +(his option is disabled by def)-5 E(ault.)-.1 E(GNU Bash 4.4)72 768 Q +(2016 January 25)141.79 E(67)190.95 E 0 Cg EP %%Page: 68 68 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(pri)184 84 Q(vileged)-.1 E F0(Same as)224 96 Q F12.5 E F0(.)A -F1 -.1(ve)184 108 S(rbose).1 E F0(Same as)224 108 Q F12.5 E F0(.)A -F1(vi)184 120 Q F0 1.466(Use a vi-style command line editing interf)224 -120 R 3.965(ace. This)-.1 F 1.465(also af)3.965 F 1.465 -(fects the editing)-.25 F(interf)224 132 Q(ace used for)-.1 E F1 -.18 -(re)2.5 G(ad \255e).18 E F0(.)A F1(xtrace)184 144 Q F0(Same as)224 144 Q -F12.5 E F0(.)A(If)184 162 Q F13.052 E F0 .552 -(is supplied with no)3.052 F/F2 10/Times-Italic@0 SF(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 -174 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 186 Q F1 -144 198 Q F0 -.45(Tu)184 198 S 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.072(\214les are not pro-)3.322 F 1.501 -(cessed, shell functions are not inherited from the en)184 210 R 1.5 -(vironment, and the)-.4 F F3(SHELLOPTS)4 E/F4 9/Times-Roman@0 SF(,)A F3 --.27(BA)184 222 S(SHOPTS).27 E F4(,)A F3(CDP)2.774 E -.855(AT)-.666 G(H) -.855 E F4(,)A F0(and)2.774 E F3(GLOBIGNORE)3.024 E F0 -.25(va)2.774 G -.524(riables, if the).25 F 3.025(ya)-.15 G .525(ppear in the en)-3.025 F -(vironment,)-.4 E .38(are ignored.)184 234 R .38 -(If the shell is started with the ef)5.38 F(fecti)-.25 E .679 -.15(ve u) --.25 H .379(ser \(group\) id not equal to the real).15 F .461 -(user \(group\) id, and the)184 246 R F12.961 E F0 .461 -(option is not supplied, these actions are tak)2.961 F .462 -(en and the ef)-.1 F(fec-)-.25 E(ti)184 258 Q .695 -.15(ve u)-.25 H .395 +SF(posix)184 84 Q F0 2.091(Change the beha)224 84 R 2.091(vior of)-.2 F +F1(bash)4.591 E F0 2.091(where the def)4.591 F 2.091(ault operation dif) +-.1 F 2.091(fers from the)-.25 F 1.212 +(POSIX standard to match the standard \()224 96 R/F2 10/Times-Italic@0 +SF 1.212(posix mode)B F0 3.712(\). See)B/F3 9/Times-Bold@0 SF 1.212 +(SEE ALSO)3.712 F F0(belo)3.463 E(w)-.25 E 2.307 +(for a reference to a document that details ho)224 108 R 4.806(wp)-.25 G +2.306(osix mode af)-4.806 F 2.306(fects bash')-.25 F(s)-.55 E(beha)224 +120 Q(vior)-.2 E(.)-.55 E F1(pri)184 132 Q(vileged)-.1 E F0(Same as)224 +144 Q F12.5 E F0(.)A F1 -.1(ve)184 156 S(rbose).1 E F0(Same as)224 +156 Q F12.5 E F0(.)A F1(vi)184 168 Q F0 1.465 +(Use a vi-style command line editing interf)224 168 R 3.966(ace. This) +-.1 F 1.466(also af)3.966 F 1.466(fects the editing)-.25 F(interf)224 +180 Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1 +(xtrace)184 192 Q F0(Same as)224 192 Q F12.5 E F0(.)A(If)184 210 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 +222 Q F0 1.071(is supplied with no)3.571 F F2(option\255name)3.571 E F0 +3.571(,as)C 1.071(eries of)-3.571 F F1(set)3.572 E F0 1.072 +(commands to recreate the current)3.572 F +(option settings is displayed on the standard output.)184 234 Q F1 +144 246 Q F0 -.45(Tu)184 246 S 1.072(rn on).45 F F2(privile)4.822 E -.1 +(ge)-.4 G(d).1 E F0 3.572(mode. In)4.342 F 1.072(this mode, the)3.572 F +F3($ENV)3.572 E F0(and)3.322 E F3($B)3.572 E(ASH_ENV)-.27 E F0 1.071 +(\214les are not pro-)3.322 F 1.5 +(cessed, shell functions are not inherited from the en)184 258 R 1.501 +(vironment, and the)-.4 F F3(SHELLOPTS)4.001 E/F4 9/Times-Roman@0 SF(,)A +F3 -.27(BA)184 270 S(SHOPTS).27 E F4(,)A F3(CDP)2.775 E -.855(AT)-.666 G +(H).855 E F4(,)A F0(and)2.775 E F3(GLOBIGNORE)3.025 E F0 -.25(va)2.775 G +.524(riables, if the).25 F 3.024(ya)-.15 G .524(ppear in the en)-3.024 F +(vironment,)-.4 E .379(are ignored.)184 282 R .379 +(If the shell is started with the ef)5.379 F(fecti)-.25 E .679 -.15 +(ve u)-.25 H .38(ser \(group\) id not equal to the real).15 F .462 +(user \(group\) id, and the)184 294 R F12.961 E F0 .461 +(option is not supplied, these actions are tak)2.961 F .461 +(en and the ef)-.1 F(fec-)-.25 E(ti)184 306 Q .694 -.15(ve u)-.25 H .394 (ser id is set to the real user id.).15 F .395(If the)5.395 F F1 -2.895 E F0 .394(option is supplied at startup, the ef)2.895 F(fecti)-.25 -E -.15(ve)-.25 G .386(user id is not reset.)184 270 R -.45(Tu)5.386 G -.386(rning this option of).45 F 2.886(fc)-.25 G .387(auses the ef)-2.886 -F(fecti)-.25 E .687 -.15(ve u)-.25 H .387(ser and group ids to be).15 F -(set to the real user and group ids.)184 282 Q F1144 294 Q F0 -(Exit after reading and e)184 294 Q -.15(xe)-.15 G(cuting one command.) -.15 E F1144 306 Q F0 -.35(Tr)184 306 S .044(eat unset v).35 F .044 +2.895 E F0 .395(option is supplied at startup, the ef)2.895 F(fecti)-.25 +E -.15(ve)-.25 G .387(user id is not reset.)184 318 R -.45(Tu)5.387 G +.387(rning this option of).45 F 2.886(fc)-.25 G .386(auses the ef)-2.886 +F(fecti)-.25 E .686 -.15(ve u)-.25 H .386(ser and group ids to be).15 F +(set to the real user and group ids.)184 330 Q F1144 342 Q F0 +(Exit after reading and e)184 342 Q -.15(xe)-.15 G(cuting one command.) +.15 E F1144 354 Q F0 -.35(Tr)184 354 S .043(eat unset v).35 F .044 (ariables and parameters other than the special parameters "@" and "*" \ -as an)-.25 F .182(error when performing parameter e)184 318 R 2.682 -(xpansion. If)-.15 F -.15(ex)2.682 G .183 +as an)-.25 F .183(error when performing parameter e)184 366 R 2.683 +(xpansion. If)-.15 F -.15(ex)2.683 G .182 (pansion is attempted on an unset v).15 F(ari-)-.25 E .746 -(able or parameter)184 330 R 3.246(,t)-.4 G .746 +(able or parameter)184 378 R 3.246(,t)-.4 G .746 (he shell prints an error message, and, if not interacti)-3.246 F -.15 (ve)-.25 G 3.246(,e).15 G .746(xits with a)-3.396 F(non-zero status.)184 -342 Q F1144 354 Q F0(Print shell input lines as the)184 354 Q 2.5 -(ya)-.15 G(re read.)-2.5 E F1144 366 Q F0 .315(After e)184 366 R +390 Q F1144 402 Q F0(Print shell input lines as the)184 402 Q 2.5 +(ya)-.15 G(re read.)-2.5 E F1144 414 Q F0 .315(After e)184 414 R .315(xpanding each)-.15 F F2 .315(simple command)2.815 F F0(,)A F1 -.25 (fo)2.815 G(r).25 E F0(command,)2.815 E F1(case)2.815 E F0(command,) -2.815 E F1(select)2.815 E F0(command,)2.815 E 1.236(or arithmetic)184 -378 R F1 -.25(fo)3.736 G(r).25 E F0 1.236(command, display the e)3.736 F +2.815 E F1(select)2.815 E F0(command,)2.815 E 1.235(or arithmetic)184 +426 R F1 -.25(fo)3.736 G(r).25 E F0 1.236(command, display the e)3.736 F 1.236(xpanded v)-.15 F 1.236(alue of)-.25 F F3(PS4)3.736 E F4(,)A F0 -(follo)3.486 E 1.236(wed by the com-)-.25 F(mand and its e)184 390 Q +(follo)3.486 E 1.236(wed by the com-)-.25 F(mand and its e)184 438 Q (xpanded ar)-.15 E(guments or associated w)-.18 E(ord list.)-.1 E F1 -144 402 Q F0 2.578(The shell performs brace e)184 402 R 2.578 +144 450 Q F0 2.579(The shell performs brace e)184 450 R 2.578 (xpansion \(see)-.15 F F1 2.578(Brace Expansion)5.078 F F0(abo)5.078 E --.15(ve)-.15 G 5.079(\). This).15 F 2.579(is on by)5.079 F(def)184 414 Q -(ault.)-.1 E F1144 426 Q F0 .214(If set,)184 426 R F1(bash)2.714 E -F0 .214(does not o)2.714 F -.15(ve)-.15 G .214(rwrite an e).15 F .214 +-.15(ve)-.15 G 5.078(\). This).15 F 2.578(is on by)5.078 F(def)184 462 Q +(ault.)-.1 E F1144 474 Q F0 .213(If set,)184 474 R F1(bash)2.713 E +F0 .213(does not o)2.713 F -.15(ve)-.15 G .214(rwrite an e).15 F .214 (xisting \214le with the)-.15 F F1(>)2.714 E F0(,)A F1(>&)2.714 E F0 -2.713(,a)C(nd)-2.713 E F1(<>)2.713 E F0 .213(redirection opera-)2.713 F -3.053(tors. This)184 438 R .553(may be o)3.053 F -.15(ve)-.15 G .553 +2.714(,a)C(nd)-2.714 E F1(<>)2.714 E F0 .214(redirection opera-)2.714 F +3.054(tors. This)184 486 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 450 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 -144 462 Q F0 .104(If set, an)184 462 R 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 474 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 486 Q F1 -144 498 Q F0(Enable)184 498 Q 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 510 Q -.15 -(ve)-.25 G(.).15 E F1144 522 Q F0 .959 -(If set, the shell does not resolv)184 522 R 3.459(es)-.15 G .959 -(ymbolic links when e)-3.459 F -.15(xe)-.15 G .96 -(cuting commands such as).15 F F1(cd)3.46 E F0 2.822 -(that change the current w)184 534 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.821 -(ysical directory structure)-.05 F 2.685(instead. By)184 546 R(def)2.685 +.15 F(tor)184 498 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 +144 510 Q F0 .103(If set, an)184 510 R 2.603(yt)-.15 G .103 +(rap on)-2.603 F F1(ERR)2.603 E F0 .104 +(is inherited by shell functions, command substitutions, and com-)2.603 +F .839(mands e)184 522 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 534 Q F1 +144 546 Q F0(Enable)184 546 Q F1(!)3.031 E F0 .531 +(style history substitution.)5.531 F .531(This option is on by def)5.531 +F .532(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 558 Q -.15 +(ve)-.25 G(.).15 E F1144 570 Q F0 .96 +(If set, the shell does not resolv)184 570 R 3.459(es)-.15 G .959 +(ymbolic links when e)-3.459 F -.15(xe)-.15 G .959 +(cuting commands such as).15 F F1(cd)3.459 E F0 2.821 +(that change the current w)184 582 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 594 R(def)2.686 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 558 Q(.)-.65 E F1144 -570 Q F0 .89(If set, an)184 570 R 3.39(yt)-.15 G .89(raps on)-3.39 F F1 +(mands which change the current directory)184 606 Q(.)-.65 E F1144 +618 Q F0 .89(If set, an)184 618 R 3.39(yt)-.15 G .89(raps on)-3.39 F F1 (DEB)3.39 E(UG)-.1 E F0(and)3.39 E F1(RETURN)3.39 E F0 .89 (are inherited by shell functions, command)3.39 F 1.932 -(substitutions, and commands e)184 582 R -.15(xe)-.15 G 1.932 +(substitutions, and commands e)184 630 R -.15(xe)-.15 G 1.932 (cuted in a subshell en).15 F 4.432(vironment. The)-.4 F F1(DEB)4.432 E -(UG)-.1 E F0(and)4.432 E F1(RETURN)184 594 Q F0 -(traps are normally not inherited in such cases.)2.5 E F1144 606 Q -F0 .401(If no ar)184 606 R .401(guments follo)-.18 F 2.901(wt)-.25 G -.401(his option, then the positional parameters are unset.)-2.901 F -(Otherwise,)5.4 E(the positional parameters are set to the)184 618 Q F2 -(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5(ni).15 G 2.5(fs)-2.5 G +(UG)-.1 E F0(and)4.432 E F1(RETURN)184 642 Q F0 +(traps are normally not inherited in such cases.)2.5 E F1144 654 Q +F0 .4(If no ar)184 654 R .401(guments follo)-.18 F 2.901(wt)-.25 G .401 +(his option, then the positional parameters are unset.)-2.901 F +(Otherwise,)5.401 E(the positional parameters are set to the)184 666 Q +F2(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5(ni).15 G 2.5(fs)-2.5 G (ome of them be)-2.5 E(gin with a)-.15 E F12.5 E F0(.)A F1144 -630 Q F0 1.944(Signal the end of options, cause all remaining)184 630 R -F2(ar)4.444 E(g)-.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 642 R -F13.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 654 Q .425(The options are of)144 -670.8 R 2.925(fb)-.25 G 2.925(yd)-2.925 G(ef)-2.925 E .425 +678 Q F0 1.945(Signal the end of options, cause all remaining)184 678 R +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 690 R +F13.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 +(parameters remain unchanged.)184 702 Q .425(The options are of)144 +718.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 .178 -(to be turned of)144 682.8 R 2.678(f. The)-.25 F .178 +(Using + rather than \255 causes these options)5.425 F .177 +(to be turned of)144 730.8 R 2.677(f. The)-.25 F .178 (options can also be speci\214ed as ar)2.678 F .178(guments to an in) --.18 F -.2(vo)-.4 G .177(cation of the shell.).2 F(The)5.177 E .066 -(current set of options may be found in)144 694.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 .067(lid option).25 F -(is encountered.)144 706.8 Q(GNU Bash 4.4)72 768 Q(2015 No)136.385 E --.15(ve)-.15 G(mber 16).15 E(68)185.545 E 0 Cg EP +-.18 F -.2(vo)-.4 G .178(cation of the shell.).2 F(The)5.178 E +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(68)190.95 E 0 Cg EP %%Page: 69 69 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(shift)108 84 Q F0([)2.5 E/F2 10/Times-Italic@0 SF(n)A F0(])A .429 -(The positional parameters from)144 96 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 108 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 120 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 .143(positional parameters are not changed.)144 132 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 144 Q F1(shopt)108 160.8 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 172.8 S .64(ggle the v).8 F .639 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .066 +(current set of options may be found in)144 84 R/F1 10/Times-Bold@0 SF +<24ad>2.566 E F0 5.066(.T)C .066(he return status is al)-5.066 F -.1(wa) +-.1 G .066(ys true unless an in).1 F -.25(va)-.4 G .066(lid option).25 F +(is encountered.)144 96 Q F1(shift)108 112.8 Q F0([)2.5 E/F2 10 +/Times-Italic@0 SF(n)A F0(])A .428(The positional parameters from)144 +124.8 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 136.8 Q F1($#)2.583 E F0(do)2.583 E .083(wn to)-.25 F F1($#) +2.583 E F0A F2(n)A F0 .083(+1 are unset.)B F2(n)5.443 E F0 .083 +(must be a non-ne)2.823 F -.05(ga)-.15 G(ti).05 E .382 -.15(ve n)-.25 H +.082(umber less than or equal to).15 F F1($#)2.582 E F0 5.082(.I)C(f) +-5.082 E F2(n)2.942 E F0 .06(is 0, no parameters are changed.)144 148.8 +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 160.8 R .144 +(The return status is greater than zero if)5.144 F F2(n)3.003 E F0 .143 +(is greater than)2.883 F F1($#)2.643 E F0 +(or less than zero; otherwise 0.)144 172.8 Q F1(shopt)108 189.6 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 201.6 S .639(ggle the v).8 F .639 (alues of settings controlling optional shell beha)-.25 F(vior)-.2 E -5.639(.T)-.55 G .639(he settings can be either those)-5.639 F .374 -(listed belo)144 184.8 R 1.674 -.65(w, o)-.25 H 1.174 -.4(r, i).65 H -2.874(ft).4 G(he)-2.874 E F12.874 E F0 .375 +5.639(.T)-.55 G .64(he settings can be either those)-5.639 F .375 +(listed belo)144 213.6 R 1.675 -.65(w, o)-.25 H 1.175 -.4(r, i).65 H +2.875(ft).4 G(he)-2.875 E F12.875 E F0 .375 (option is used, those a)2.875 F -.25(va)-.2 G .375(ilable with the).25 -F F12.875 E F0 .375(option to the)2.875 F F1(set)2.875 E F0 -.2 -(bu)2.875 G .375(iltin com-).2 F 3.326(mand. W)144 196.8 R .826 -(ith no options, or with the)-.4 F F13.326 E F0 .825 -(option, a list of all settable options is displayed, with an)3.326 F -.945(indication of whether or not each is set.)144 208.8 R(The)5.945 E +F F12.875 E F0 .374(option to the)2.875 F F1(set)2.874 E F0 -.2 +(bu)2.874 G .374(iltin com-).2 F 3.325(mand. W)144 225.6 R .825 +(ith no options, or with the)-.4 F F13.325 E F0 .826 +(option, a list of all settable options is displayed, with an)3.325 F +.945(indication of whether or not each is set.)144 237.6 R(The)5.945 E F13.445 E F0 .945(option causes output to be displayed in a form) -3.445 F(that may be reused as input.)144 220.8 Q(Other options ha)5 E .3 --.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 232.8 Q -F0(Enable \(set\) each)180 232.8 Q F2(optname)2.5 E F0(.)A F1144 -244.8 Q F0(Disable \(unset\) each)180 244.8 Q F2(optname)2.5 E F0(.)A F1 -144 256.8 Q F0 .003(Suppresses normal output \(quiet mode\); the \ -return status indicates whether the)180 256.8 R F2(optname)2.503 E F0 -(is)2.503 E .255(set or unset.)180 268.8 R .255(If multiple)5.255 F F2 -(optname)2.755 E F0(ar)2.755 E .256(guments are gi)-.18 F -.15(ve)-.25 G -2.756(nw).15 G(ith)-2.756 E F12.756 E F0 2.756(,t)C .256 -(he return status is zero if)-2.756 F(all)180 280.8 Q F2(optnames)2.5 E -F0(are enabled; non-zero otherwise.)2.5 E F1144 292.8 Q F0 -(Restricts the v)180 292.8 Q(alues of)-.25 E F2(optname)2.5 E F0 +3.445 F(that may be reused as input.)144 249.6 Q(Other options ha)5 E .3 +-.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 261.6 Q +F0(Enable \(set\) each)180 261.6 Q F2(optname)2.5 E F0(.)A F1144 +273.6 Q F0(Disable \(unset\) each)180 273.6 Q F2(optname)2.5 E F0(.)A F1 +144 285.6 Q F0 .003(Suppresses normal output \(quiet mode\); the \ +return status indicates whether the)180 285.6 R F2(optname)2.504 E F0 +(is)2.504 E .256(set or unset.)180 297.6 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 F12.756 E F0 2.755(,t)C .255 +(he return status is zero if)-2.755 F(all)180 309.6 Q F2(optnames)2.5 E +F0(are enabled; non-zero otherwise.)2.5 E F1144 321.6 Q F0 +(Restricts the v)180 321.6 Q(alues of)-.25 E F2(optname)2.5 E F0 (to be those de\214ned for the)2.5 E F12.5 E F0(option to the)2.5 -E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .625(If either)144 309.6 R F1 -3.125 E F0(or)3.124 E F13.124 E F0 .624(is used with no) +E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .624(If either)144 338.4 R F1 +3.124 E F0(or)3.124 E F13.124 E F0 .624(is used with no) 3.124 F F2(optname)3.124 E F0(ar)3.124 E(guments,)-.18 E F1(shopt)3.124 -E F0(sho)3.124 E .624(ws only those options which are)-.25 F 2.233 -(set or unset, respecti)144 321.6 R -.15(ve)-.25 G(ly).15 E 7.234(.U) +E F0(sho)3.124 E .624(ws only those options which are)-.25 F 2.234 +(set or unset, respecti)144 350.4 R -.15(ve)-.25 G(ly).15 E 7.234(.U) -.65 G 2.234(nless otherwise noted, the)-7.234 F F1(shopt)4.734 E F0 -2.234(options are disabled \(unset\) by)4.734 F(def)144 333.6 Q(ault.) +2.234(options are disabled \(unset\) by)4.734 F(def)144 362.4 Q(ault.) -.1 E 1.544(The return status when listing options is zero if all)144 -350.4 R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.) -4.044 F .696 +379.2 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 362.4 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696 -(alid shell)-.25 F(option.)144 374.4 Q(The list of)144 391.2 Q F1(shopt) -2.5 E F0(options is:)2.5 E F1(autocd)144 409.2 Q F0 .2 -(If set, a command name that is the name of a directory is e)184 409.2 R --.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E -(ment to the)184 421.2 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F +144 391.2 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .695 +(alid shell)-.25 F(option.)144 403.2 Q(The list of)144 420 Q F1(shopt) +2.5 E F0(options is:)2.5 E F1(autocd)144 438 Q F0 .199 +(If set, a command name that is the name of a directory is e)184 438 R +-.15(xe)-.15 G .2(cuted as if it were the ar).15 F(gu-)-.18 E +(ment to the)184 450 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F (option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E -F1(cdable_v)144 433.2 Q(ars)-.1 E F0 .155(If set, an ar)184 445.2 R .155 -(gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156 +F1(cdable_v)144 462 Q(ars)-.1 E F0 .156(If set, an ar)184 474 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 457.2 Q(ariable whose v)-.25 E -(alue is the directory to change to.)-.25 E F1(cdspell)144 469.2 Q F0 +(name of a v)184 486 Q(ariable whose v)-.25 E +(alue is the directory to change to.)-.25 E F1(cdspell)144 498 Q F0 1.055 (If set, minor errors in the spelling of a directory component in a)184 -469.2 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 -(corrected. The)184 481.2 R 1.487(errors check)3.987 F 1.487 -(ed for are transposed characters, a missing character)-.1 F 3.988(,a) --.4 G(nd)-3.988 E .77(one character too man)184 493.2 R 4.57 -.65(y. I) +498 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.988 +(corrected. The)184 510 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 .77(one character too man)184 522 R 4.57 -.65(y. I) -.15 H 3.27(fac).65 G .77 (orrection is found, the corrected \214lename is printed, and)-3.27 F -(the command proceeds.)184 505.2 Q -(This option is only used by interacti)5 E .3 -.15(ve s)-.25 H(hells.) -.15 E F1(checkhash)144 517.2 Q F0 .736(If set,)184 529.2 R F1(bash)3.236 -E F0 .736(checks that a command found in the hash table e)3.236 F .737 -(xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184 -541.2 Q(If a hashed command no longer e)5 E -(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 553.2 -Q F0 .449(If set,)184 565.2 R F1(bash)2.949 E F0 .449 -(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 577.2 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 2.203 -(attempted without an interv)184 589.2 R 2.203(ening command \(see)-.15 -F/F3 9/Times-Bold@0 SF 2.203(JOB CONTR)4.703 F(OL)-.27 E F0(abo)4.453 E --.15(ve)-.15 G 4.703(\). The).15 F(shell)4.703 E(al)184 601.2 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(checkwinsize)144 613.2 Q F0 .796(If set,)184 -625.2 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 637.2 S(lues of).25 E F3(LINES)2.5 -E F0(and)2.25 E F3(COLUMNS)2.5 E/F4 9/Times-Roman@0 SF(.)A F1(cmdhist) -144 649.2 Q F0 1.202(If set,)184 649.2 R F1(bash)3.702 E F0 1.202 +(the command proceeds.)184 534 Q(This option is only used by interacti)5 +E .3 -.15(ve s)-.25 H(hells.).15 E F1(checkhash)144 546 Q F0 .737 +(If set,)184 558 R F1(bash)3.237 E F0 .736 +(checks that a command found in the hash table e)3.237 F .736 +(xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184 570 +Q(If a hashed command no longer e)5 E +(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 582 Q +F0 .448(If set,)184 594 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 606 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 2.203 +(attempted without an interv)184 618 R 2.203(ening command \(see)-.15 F +/F3 9/Times-Bold@0 SF 2.203(JOB CONTR)4.703 F(OL)-.27 E F0(abo)4.453 E +-.15(ve)-.15 G 4.703(\). The).15 F(shell)4.704 E(al)184 630 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(checkwinsize)144 642 Q F0 .797(If set,)184 +654 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 666 S(lues of).25 E F3(LINES)2.5 E +F0(and)2.25 E F3(COLUMNS)2.5 E/F4 9/Times-Roman@0 SF(.)A F1(cmdhist)144 +678 Q F0 1.202(If set,)184 678 R 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 -661.2 Q 5(.T)-.65 G(his allo)-5 E -(ws easy re-editing of multi-line commands.)-.25 E F1(compat31)144 673.2 -Q F0 .419(If set,)184 685.2 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)-.15 F(guments)-.18 E .462(to the) -184 697.2 R F1([[)2.962 E F0 .462(conditional command')2.962 F(s)-.55 E -F1(=~)2.962 E F0 .462 -(operator and locale-speci\214c string comparison when)2.962 F .71 -(using the)184 709.2 R F1([[)3.21 E F0 .71(conditional command')3.21 F -(s)-.55 E F1(<)3.21 E F0(and)3.21 E F1(>)3.21 E F0 3.21(operators. Bash) -3.21 F -.15(ve)3.21 G .71(rsions prior to bash-4.1).15 F .821 -(use ASCII collation and)184 721.2 R F2(str)3.321 E(cmp)-.37 E F0 .821 -(\(3\); bash-4.1 and later use the current locale').19 F 3.32(sc)-.55 G -(ollation)-3.32 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G -(mber 16).15 E(69)185.545 E 0 Cg EP +690 Q 5(.T)-.65 G(his allo)-5 E +(ws easy re-editing of multi-line commands.)-.25 E F1(compat31)144 702 Q +F0 .42(If set,)184 714 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 .461(to the)184 726 R F1([[)2.961 E F0 .462 +(conditional command')2.962 F(s)-.55 E F1(=~)2.962 E F0 .462 +(operator and locale-speci\214c string comparison when)2.962 F +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(69)190.95 E 0 Cg EP %%Page: 70 70 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(sequence and)184 -84 Q/F1 10/Times-Italic@0 SF(str)2.5 E(coll)-.37 E F0(\(3\).).51 E/F2 10 -/Times-Bold@0 SF(compat32)144 96 Q F0 1.409(If set,)184 108 R F2(bash) -3.909 E F0 1.409(changes its beha)3.909 F 1.409(vior to that of v)-.2 F -1.41(ersion 3.2 with respect to locale-speci\214c)-.15 F .423 -(string comparison when using the)184 120 R F2([[)2.922 E F0 .422 -(conditional command')2.922 F(s)-.55 E F2(<)2.922 E F0(and)2.922 E F2(>) -2.922 E F0 .422(operators \(see pre-)2.922 F .48 -(vious item\) and the ef)184 132 R .481 -(fect of interrupting a command list.)-.25 F .481(Bash v)5.481 F .481 -(ersions 3.2 and earlier)-.15 F(continue with the ne)184 144 Q +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .71(using the)184 +84 R/F1 10/Times-Bold@0 SF([[)3.21 E F0 .71(conditional command')3.21 F +(s)-.55 E F1(<)3.21 E F0(and)3.21 E F1(>)3.21 E F0 3.21(operators. Bash) +3.21 F -.15(ve)3.21 G .71(rsions prior to bash-4.1).15 F .82 +(use ASCII collation and)184 96 R/F2 10/Times-Italic@0 SF(str)3.321 E +(cmp)-.37 E F0 .821(\(3\); bash-4.1 and later use the current locale') +.19 F 3.321(sc)-.55 G(ollation)-3.321 E(sequence and)184 108 Q F2(str) +2.5 E(coll)-.37 E F0(\(3\).).51 E F1(compat32)144 120 Q F0 1.41(If set,) +184 132 R F1(bash)3.91 E F0 1.41(changes its beha)3.91 F 1.409 +(vior to that of v)-.2 F 1.409 +(ersion 3.2 with respect to locale-speci\214c)-.15 F .422 +(string comparison when using the)184 144 R F1([[)2.922 E F0 .422 +(conditional command')2.922 F(s)-.55 E F1(<)2.922 E F0(and)2.922 E F1(>) +2.923 E F0 .423(operators \(see pre-)2.923 F .481 +(vious item\) and the ef)184 156 R .481 +(fect of interrupting a command list.)-.25 F .48(Bash v)5.481 F .48 +(ersions 3.2 and earlier)-.15 F(continue with the ne)184 168 Q (xt command in the list after one terminates due to an interrupt.)-.15 E -F2(compat40)144 156 Q F0 1.41(If set,)184 168 R F2(bash)3.91 E F0 1.41 -(changes its beha)3.91 F 1.409(vior to that of v)-.2 F 1.409 -(ersion 4.0 with respect to locale-speci\214c)-.15 F 2.007 -(string comparison when using the)184 180 R F2([[)4.507 E F0 2.008 -(conditional command')4.507 F(s)-.55 E F2(<)4.508 E F0(and)4.508 E F2(>) -4.508 E F0 2.008(operators \(see)4.508 F .77(description of)184 192 R F2 -(compat31)3.27 E F0 3.269(\)a)C .769(nd the ef)-3.269 F .769 -(fect of interrupting a command list.)-.25 F .769(Bash v)5.769 F -(ersions)-.15 E .086 -(4.0 and later interrupt the list as if the shell recei)184 204 R -.15 -(ve)-.25 G 2.587(dt).15 G .087(he interrupt; pre)-2.587 F .087(vious v) --.25 F .087(ersions con-)-.15 F(tinue with the ne)184 216 Q -(xt command in the list.)-.15 E F2(compat41)144 228 Q F0 1.484(If set,) -184 240 R F2(bash)3.984 E F0 3.984(,w)C 1.484(hen in)-3.984 F F1(posix) -3.984 E F0 1.483 -(mode, treats a single quote in a double-quoted parameter)3.984 F -.15 -(ex)184 252 S .958(pansion as a special character).15 F 5.958(.T)-.55 G -.959(he single quotes must match \(an e)-5.958 F -.15(ve)-.25 G 3.459 -(nn).15 G .959(umber\) and)-3.459 F .59 -(the characters between the single quotes are considered quoted.)184 264 -R .59(This is the beha)5.59 F .59(vior of)-.2 F .589 -(posix mode through v)184 276 R .589(ersion 4.1.)-.15 F .589(The def) -5.589 F .589(ault bash beha)-.1 F .589(vior remains as in pre)-.2 F .59 -(vious v)-.25 F(er)-.15 E(-)-.2 E(sions.)184 288 Q F2(compat42)144 300 Q -F0 1.797(If set,)184 312 R F2(bash)4.297 E F0 1.796 +F1(compat40)144 180 Q F0 1.409(If set,)184 192 R F1(bash)3.909 E F0 +1.409(changes its beha)3.909 F 1.409(vior to that of v)-.2 F 1.41 +(ersion 4.0 with respect to locale-speci\214c)-.15 F 2.008 +(string comparison when using the)184 204 R F1([[)4.508 E F0 2.007 +(conditional command')4.508 F(s)-.55 E F1(<)4.507 E F0(and)4.507 E F1(>) +4.507 E F0 2.007(operators \(see)4.507 F .769(description of)184 216 R +F1(compat31)3.269 E F0 3.269(\)a)C .769(nd the ef)-3.269 F .769 +(fect of interrupting a command list.)-.25 F .77(Bash v)5.77 F(ersions) +-.15 E .087(4.0 and later interrupt the list as if the shell recei)184 +228 R -.15(ve)-.25 G 2.586(dt).15 G .086(he interrupt; pre)-2.586 F .086 +(vious v)-.25 F .086(ersions con-)-.15 F(tinue with the ne)184 240 Q +(xt command in the list.)-.15 E F1(compat41)144 252 Q F0 1.483(If set,) +184 264 R F1(bash)3.983 E F0 3.983(,w)C 1.483(hen in)-3.983 F F2(posix) +3.983 E F0 1.484 +(mode, treats a single quote in a double-quoted parameter)3.983 F -.15 +(ex)184 276 S .959(pansion as a special character).15 F 5.959(.T)-.55 G +.958(he single quotes must match \(an e)-5.959 F -.15(ve)-.25 G 3.458 +(nn).15 G .958(umber\) and)-3.458 F .59 +(the characters between the single quotes are considered quoted.)184 288 +R .59(This is the beha)5.59 F .59(vior of)-.2 F .59 +(posix mode through v)184 300 R .589(ersion 4.1.)-.15 F .589(The def) +5.589 F .589(ault bash beha)-.1 F .589(vior remains as in pre)-.2 F .589 +(vious v)-.25 F(er)-.15 E(-)-.2 E(sions.)184 312 Q F1(compat42)144 324 Q +F0 1.796(If set,)184 336 R F1(bash)4.296 E F0 1.796 (does not process the replacement string in the pattern substitution w) -4.296 F(ord)-.1 E -.15(ex)184 324 S(pansion using quote remo).15 E -.25 -(va)-.15 G(l.).25 E F2(compat43)144 336 Q F0 .14(If set,)184 348 R F2 -(bash)2.64 E F0 .14(does not print a w)2.64 F .141 -(arning message if an attempt is made to use a quoted com-)-.1 F .913 -(pound array assignment as an ar)184 360 R .913(gument to)-.18 F F2 -(declar)3.412 E(e)-.18 E F0 3.412(,m)C(ak)-3.412 E .912(es w)-.1 F .912 -(ord e)-.1 F .912(xpansion errors non-)-.15 F -.1(fa)184 372 S .352 +4.296 F(ord)-.1 E -.15(ex)184 348 S(pansion using quote remo).15 E -.25 +(va)-.15 G(l.).25 E F1(compat43)144 360 Q F0 .141(If set,)184 372 R F1 +(bash)2.641 E F0 .141(does not print a w)2.641 F .14 +(arning message if an attempt is made to use a quoted com-)-.1 F .912 +(pound array assignment as an ar)184 384 R .912(gument to)-.18 F F1 +(declar)3.413 E(e)-.18 E F0 3.413(,m)C(ak)-3.413 E .913(es w)-.1 F .913 +(ord e)-.1 F .913(xpansion errors non-)-.15 F -.1(fa)184 396 S .353 (tal errors that cause the current command to f).1 F .353(ail \(the def) --.1 F .353(ault beha)-.1 F .353(vior is to mak)-.2 F 2.853(et)-.1 G(hem) --2.853 E -.1(fa)184 384 S 1.058(tal errors that cause the shell to e).1 -F 1.057(xit\), and does not reset the loop state when a shell)-.15 F -.374(function is e)184 396 R -.15(xe)-.15 G .374(cuted \(this allo).15 F -(ws)-.25 E F2(br)2.874 E(eak)-.18 E F0(or)2.875 E F2(continue)2.875 E F0 -.375(in a shell function to af)2.875 F .375(fect loops in)-.25 F -(the caller')184 408 Q 2.5(sc)-.55 G(onte)-2.5 E(xt\).)-.15 E F2 -(complete_fullquote)144 420 Q F0 .654(If set,)184 432 R F2(bash)3.153 E +-.1 F .352(ault beha)-.1 F .352(vior is to mak)-.2 F 2.852(et)-.1 G(hem) +-2.852 E -.1(fa)184 408 S 1.057(tal errors that cause the shell to e).1 +F 1.058(xit\), and does not reset the loop state when a shell)-.15 F +.375(function is e)184 420 R -.15(xe)-.15 G .375(cuted \(this allo).15 F +(ws)-.25 E F1(br)2.875 E(eak)-.18 E F0(or)2.875 E F1(continue)2.875 E F0 +.374(in a shell function to af)2.875 F .374(fect loops in)-.25 F +(the caller')184 432 Q 2.5(sc)-.55 G(onte)-2.5 E(xt\).)-.15 E F1 +(complete_fullquote)144 444 Q F0 .653(If set,)184 456 R F1(bash)3.153 E F0 .653(quotes all shell metacharacters in \214lenames and directory na\ -mes when per)3.153 F(-)-.2 E 1.524(forming completion.)184 444 R 1.524 -(If not set,)6.524 F F2(bash)4.024 E F0(remo)4.024 E -.15(ve)-.15 G +mes when per)3.153 F(-)-.2 E 1.525(forming completion.)184 468 R 1.524 +(If not set,)6.525 F F1(bash)4.024 E F0(remo)4.024 E -.15(ve)-.15 G 4.024(sm).15 G 1.524(etacharacters such as the dollar sign)-4.024 F 2.667(from the set of characters that will be quoted in completed \214l\ -enames when these)184 456 R .028(metacharacters appear in shell v)184 -468 R .028(ariable references in w)-.25 F .029(ords to be completed.)-.1 -F .029(This means)5.029 F 1.073(that dollar signs in v)184 480 R 1.073 +enames when these)184 480 R .029(metacharacters appear in shell v)184 +492 R .028(ariable references in w)-.25 F .028(ords to be completed.)-.1 +F .028(This means)5.028 F 1.072(that dollar signs in v)184 504 R 1.073 (ariable names that e)-.25 F 1.073 (xpand to directories will not be quoted; ho)-.15 F(w-)-.25 E -2.15 -.25 -(ev e)184 492 T 1.922 -.4(r, a).25 H 1.422 -.15(ny d).4 H 1.123 +(ev e)184 516 T 1.923 -.4(r, a).25 H 1.423 -.15(ny d).4 H 1.123 (ollar signs appearing in \214lenames will not be quoted, either).15 F -6.123(.T)-.55 G 1.123(his is acti)-6.123 F -.15(ve)-.25 G .59 +6.123(.T)-.55 G 1.122(his is acti)-6.123 F -.15(ve)-.25 G .59 (only when bash is using backslashes to quote completed \214lenames.)184 -504 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 516 Q +528 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 540 Q (ault, which is the def)-.1 E(ault bash beha)-.1 E(vior in v)-.2 E -(ersions through 4.2.)-.15 E F2(dir)144 528 Q(expand)-.18 E F0 .486 -(If set,)184 540 R F2(bash)2.986 E F0 .486 +(ersions through 4.2.)-.15 E F1(dir)144 552 Q(expand)-.18 E F0 .487 +(If set,)184 564 R F1(bash)2.987 E F0 .486 (replaces directory names with the results of w)2.986 F .486(ord e)-.1 F -.487(xpansion when perform-)-.15 F .18(ing \214lename completion.)184 -552 R .179(This changes the contents of the readline editing b)5.18 F -(uf)-.2 E(fer)-.25 E 5.179(.I)-.55 G 2.679(fn)-5.179 G(ot)-2.679 E(set,) -184 564 Q F2(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G -(hat the user typed.)-2.5 E F2(dirspell)144 576 Q F0 .858(If set,)184 -576 R F2(bash)3.358 E F0 .858 -(attempts spelling correction on directory names during w)3.358 F .859 +.486(xpansion when perform-)-.15 F .179(ing \214lename completion.)184 +576 R .179(This changes the contents of the readline editing b)5.179 F +(uf)-.2 E(fer)-.25 E 5.18(.I)-.55 G 2.68(fn)-5.18 G(ot)-2.68 E(set,)184 +588 Q F1(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G +(hat the user typed.)-2.5 E F1(dirspell)144 600 Q F0 .859(If set,)184 +600 R F1(bash)3.359 E F0 .858 +(attempts spelling correction on directory names during w)3.359 F .858 (ord completion if)-.1 F -(the directory name initially supplied does not e)184 588 Q(xist.)-.15 E -F2(dotglob)144 600 Q F0(If set,)184 600 Q F2(bash)2.5 E F0 +(the directory name initially supplied does not e)184 612 Q(xist.)-.15 E +F1(dotglob)144 624 Q F0(If set,)184 624 Q F1(bash)2.5 E F0 (includes \214lenames be)2.5 E(ginning with a `.)-.15 E 2.5('i)-.7 G 2.5 -(nt)-2.5 G(he results of pathname e)-2.5 E(xpansion.)-.15 E F2(execfail) -144 612 Q F0 1.387(If set, a non-interacti)184 612 R 1.687 -.15(ve s) +(nt)-2.5 G(he results of pathname e)-2.5 E(xpansion.)-.15 E F1(execfail) +144 636 Q F0 1.386(If set, a non-interacti)184 636 R 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 624 Q -(gument to the)-.18 E F2(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E +(xe)-.15 G 1.387(cute the \214le speci\214ed as an).15 F(ar)184 648 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 F2(exec)2.5 E F0 -.1(fa)2.5 G(ils.).1 E F2(expand_aliases)144 636 Q F0 -.716(If set, aliases are e)184 648 R .717(xpanded as described abo)-.15 +E F1(exec)2.5 E F0 -.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 660 Q F0 +.717(If set, aliases are e)184 672 R .717(xpanded as described abo)-.15 F 1.017 -.15(ve u)-.15 H(nder).15 E/F3 9/Times-Bold@0 SF(ALIASES)3.217 E -/F4 9/Times-Roman@0 SF(.)A F0 .717(This option is enabled)5.217 F -(by def)184 660 Q(ault for interacti)-.1 E .3 -.15(ve s)-.25 H(hells.) -.15 E F2(extdeb)144 672 Q(ug)-.2 E F0(If set, beha)184 684 Q -(vior intended for use by deb)-.2 E(uggers is enabled:)-.2 E F2(1.)184 -696 Q F0(The)220 696 Q F24.251 E F0 1.751(option to the)4.251 F F2 -(declar)4.251 E(e)-.18 E F0 -.2(bu)4.251 G 1.751 -(iltin displays the source \214le name and line).2 F -(number corresponding to each function name supplied as an ar)220 708 Q -(gument.)-.18 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G -(mber 16).15 E(70)185.545 E 0 Cg EP +/F4 9/Times-Roman@0 SF(.)A F0 .716(This option is enabled)5.217 F +(by def)184 684 Q(ault for interacti)-.1 E .3 -.15(ve s)-.25 H(hells.) +.15 E F1(extdeb)144 696 Q(ug)-.2 E F0(If set, beha)184 708 Q +(vior intended for use by deb)-.2 E(uggers is enabled:)-.2 E +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(70)190.95 E 0 Cg EP %%Page: 71 71 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(2.)184 84 Q F0 1.667(If the command run by the)220 84 R 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 96 Q --.15(xe)-.15 G(cuted.).15 E F1(3.)184 108 Q F0 .841 -(If the command run by the)220 108 R F1(DEB)3.341 E(UG)-.1 E F0 .841 -(trap returns a v)3.341 F .84(alue of 2, and the shell is)-.25 F -.15 -(exe)220 120 S .488 +SF(1.)184 84 Q F0(The)220 84 Q 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 96 Q +(gument.)-.18 E F1(2.)184 108 Q F0 1.667(If the command run by the)220 +108 R 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 120 +Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 132 Q F0 .84 +(If the command run by the)220 132 R 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 144 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 132 Q(ce)-.18 E F0 -.2(bu)2.5 G +(sour)220 156 Q(ce)-.18 E F0 -.2(bu)2.5 G (iltins\), the shell simulates a call to).2 E F1 -.18(re)2.5 G(tur).18 E -(n)-.15 E F0(.)A F1(4.)184 144 Q/F2 9/Times-Bold@0 SF -.27(BA)220 144 S -(SH_ARGC).27 E F0(and)3.154 E F2 -.27(BA)3.404 G(SH_ARGV).27 E F0 .904 -(are updated as described in their descriptions)3.154 F(abo)220 156 Q --.15(ve)-.15 G(.).15 E F1(5.)184 168 Q F0 1.637(Function tracing is ena\ -bled: command substitution, shell functions, and sub-)220 168 R -(shells in)220 180 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1 +(n)-.15 E F0(.)A F1(4.)184 168 Q/F2 9/Times-Bold@0 SF -.27(BA)220 168 S +(SH_ARGC).27 E F0(and)3.153 E F2 -.27(BA)3.403 G(SH_ARGV).27 E F0 .904 +(are updated as described in their descriptions)3.154 F(abo)220 180 Q +-.15(ve)-.15 G(.).15 E F1(5.)184 192 Q F0 1.637(Function tracing is ena\ +bled: command substitution, shell functions, and sub-)220 192 R +(shells in)220 204 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1 (\()2.5 E/F3 10/Times-Italic@0 SF(command)2.5 E F1(\))2.5 E F0 (inherit the)2.5 E F1(DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1(RETURN)2.5 E F0 -(traps.)2.5 E F1(6.)184 192 Q F0 1.082(Error tracing is enabled: comman\ -d substitution, shell functions, and subshells)220 192 R(in)220 204 Q +(traps.)2.5 E F1(6.)184 216 Q F0 1.082(Error tracing is enabled: comman\ +d substitution, shell functions, and subshells)220 216 R(in)220 228 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F3(command) 2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5 E F0(trap.)2.5 E F1 -(extglob)144 216 Q F0 .4(If set, the e)184 216 R .4 +(extglob)144 240 Q F0 .4(If set, the e)184 240 R .4 (xtended pattern matching features described abo)-.15 F .7 -.15(ve u) --.15 H(nder).15 E F1 -.1(Pa)2.9 G .4(thname Expan-).1 F(sion)184 228 Q -F0(are enabled.)2.5 E F1(extquote)144 240 Q F0 2.473(If set,)184 252 R +-.15 H(nder).15 E F1 -.1(Pa)2.9 G .4(thname Expan-).1 F(sion)184 252 Q +F0(are enabled.)2.5 E F1(extquote)144 264 Q F0 2.473(If set,)184 276 R F1($)4.973 E F0<08>A F3(string)A F0 4.973<0861>C(nd)-4.973 E F1($)4.973 E F0(")A F3(string)A F0 4.973("q)C 2.473(uoting is performed within) -4.973 F F1(${)4.973 E F3(par)A(ameter)-.15 E F1(})A F0 -.15(ex)4.973 G -(pansions).15 E(enclosed in double quotes.)184 264 Q -(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 276 Q F0 -1.424(If set, patterns which f)184 276 R 1.425 -(ail to match \214lenames during pathname e)-.1 F 1.425 -(xpansion result in an)-.15 F -.15(ex)184 288 S(pansion error).15 E(.) --.55 E F1 -.25(fo)144 300 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 -.937(If set, the suf)184 312 R<8c78>-.25 E .936(es speci\214ed by the) +(pansions).15 E(enclosed in double quotes.)184 288 Q +(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 300 Q F0 +1.425(If set, patterns which f)184 300 R 1.425 +(ail to match \214lenames during pathname e)-.1 F 1.424 +(xpansion result in an)-.15 F -.15(ex)184 312 S(pansion error).15 E(.) +-.55 E F1 -.25(fo)144 324 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 +.936(If set, the suf)184 336 R<8c78>-.25 E .936(es speci\214ed by the) -.15 F F2(FIGNORE)3.436 E F0 .936(shell v)3.186 F .936(ariable cause w) --.25 F .936(ords to be ignored)-.1 F .32(when performing w)184 324 R .32 +-.25 F .937(ords to be ignored)-.1 F .32(when performing w)184 348 R .32 (ord completion e)-.1 F -.15(ve)-.25 G 2.82(ni).15 G 2.82(ft)-2.82 G .32 -(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 2.948 -(pletions. See)184 336 R F2 .448(SHELL V)2.948 F(ARIABLES)-1.215 E F0 -(abo)2.698 E .748 -.15(ve f)-.15 H .448(or a description of).15 F F2 -(FIGNORE)2.947 E/F4 9/Times-Roman@0 SF(.)A F0 .447(This option is)4.947 -F(enabled by def)184 348 Q(ault.)-.1 E F1(globasciiranges)144 360 Q F0 -2.518(If set, range e)184 372 R 2.519 -(xpressions used in pattern matching brack)-.15 F 2.519(et e)-.1 F 2.519 -(xpressions \(see)-.15 F F2 -.09(Pa)5.019 G(tter).09 E(n)-.135 E -(Matching)184 384 Q F0(abo)2.965 E -.15(ve)-.15 G 3.215(\)b).15 G(eha) --3.215 E 1.015 -.15(ve a)-.2 H 3.214(si).15 G 3.214(fi)-3.214 G 3.214 +(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 2.947 +(pletions. See)184 360 R F2 .447(SHELL V)2.947 F(ARIABLES)-1.215 E F0 +(abo)2.697 E .747 -.15(ve f)-.15 H .448(or a description of).15 F F2 +(FIGNORE)2.948 E/F4 9/Times-Roman@0 SF(.)A F0 .448(This option is)4.948 +F(enabled by def)184 372 Q(ault.)-.1 E F1(globasciiranges)144 384 Q F0 +2.519(If set, range e)184 396 R 2.519 +(xpressions used in pattern matching brack)-.15 F 2.518(et e)-.1 F 2.518 +(xpressions \(see)-.15 F F2 -.09(Pa)5.018 G(tter).09 E(n)-.135 E +(Matching)184 408 Q F0(abo)2.964 E -.15(ve)-.15 G 3.214(\)b).15 G(eha) +-3.214 E 1.014 -.15(ve a)-.2 H 3.214(si).15 G 3.214(fi)-3.214 G 3.214 (nt)-3.214 G .714(he traditional C locale when performing comparisons.) --3.214 F 1.02(That is, the current locale')184 396 R 3.52(sc)-.55 G 1.02 +-3.214 F 1.02(That is, the current locale')184 420 R 3.52(sc)-.55 G 1.02 (ollating sequence is not tak)-3.52 F 1.02(en into account, so)-.1 F F1 -(b)3.52 E F0 1.02(will not)3.52 F .957(collate between)184 408 R F1(A) -3.457 E F0(and)3.457 E F1(B)3.457 E F0 3.457(,a)C .957(nd upper)-3.457 F -.957(-case and lo)-.2 F(wer)-.25 E .956 -(-case ASCII characters will collate)-.2 F(together)184 420 Q(.)-.55 E -F1(globstar)144 432 Q F0 .518(If set, the pattern)184 432 R F1(**)3.018 -E F0 .519(used in a pathname e)3.019 F .519(xpansion conte)-.15 F .519 -(xt will match all \214les and zero)-.15 F .432 -(or more directories and subdirectories.)184 444 R .431 -(If the pattern is follo)5.432 F .431(wed by a)-.25 F F1(/)2.931 E F0 -2.931(,o)C .431(nly directories)-2.931 F(and subdirectories match.)184 -456 Q F1(gnu_errfmt)144 468 Q F0(If set, shell error messages are writt\ -en in the standard GNU error message format.)184 480 Q F1(histappend)144 -492 Q F0 .676 +(b)3.52 E F0 1.02(will not)3.52 F .956(collate between)184 432 R F1(A) +3.456 E F0(and)3.456 E F1(B)3.456 E F0 3.457(,a)C .957(nd upper)-3.457 F +.957(-case and lo)-.2 F(wer)-.25 E .957 +(-case ASCII characters will collate)-.2 F(together)184 444 Q(.)-.55 E +F1(globstar)144 456 Q F0 .519(If set, the pattern)184 456 R F1(**)3.019 +E F0 .519(used in a pathname e)3.019 F .519(xpansion conte)-.15 F .518 +(xt will match all \214les and zero)-.15 F .431 +(or more directories and subdirectories.)184 468 R .431 +(If the pattern is follo)5.431 F .432(wed by a)-.25 F F1(/)2.932 E F0 +2.932(,o)C .432(nly directories)-2.932 F(and subdirectories match.)184 +480 Q F1(gnu_errfmt)144 492 Q F0(If set, shell error messages are writt\ +en in the standard GNU error message format.)184 504 Q F1(histappend)144 +516 Q F0 .676 (If set, the history list is appended to the \214le named by the v)184 -504 R .676(alue of the)-.25 F F2(HISTFILE)3.177 E F0 -.25(va)2.927 G -(ri-).25 E(able when the shell e)184 516 Q(xits, rather than o)-.15 E --.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 528 Q(eedit)-.18 -E F0 .576(If set, and)184 540 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 552 Q F1(histv)144 564 Q(erify)-.1 E F0 .402 -(If set, and)184 576 R F1 -.18(re)2.903 G(adline).18 E F0 .403 +528 R .676(alue of the)-.25 F F2(HISTFILE)3.176 E F0 -.25(va)2.926 G +(ri-).25 E(able when the shell e)184 540 Q(xits, rather than o)-.15 E +-.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 552 Q(eedit)-.18 +E F0 .575(If set, and)184 564 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 576 Q F1(histv)144 588 Q(erify)-.1 E F0 .403 +(If set, and)184 600 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 588 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 600 S -.25(ff).2 G(er).25 E +2.903 F .661(passed to the shell parser)184 612 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 624 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 612 Q F0 1.181(If set, and)184 624 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 -636 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(READLINE)3.88 E F0(abo)184 648 Q -.15(ve)-.15 G 2.5(\). This).15 F -(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 660 Q F0(If set,) -184 672 Q F1(bash)2.5 E F0(will send)2.5 E F2(SIGHUP)2.5 E F0 +(hostcomplete)144 636 Q F0 1.182(If set, and)184 648 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 +660 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(READLINE)3.881 E F0(abo)184 672 Q -.15(ve)-.15 G 2.5(\). This).15 F +(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 684 Q F0(If set,) +184 696 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(ogin shell e) -.15 E(xits.)-.15 E F1(inherit_err)144 684 Q(exit)-.18 E F0 .219 -(If set, command substitution inherits the v)184 696 R .219(alue of the) --.25 F F1(err)2.719 E(exit)-.18 E F0 .22(option, instead of unsetting) -2.719 F(it in the subshell en)184 708 Q 2.5(vironment. This)-.4 F -(option is enabled when)2.5 E F3(posix mode)2.5 E F0(is enabled.)2.5 E -(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E -(71)185.545 E 0 Cg EP +.15 E(xits.)-.15 E(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(71) +190.95 E 0 Cg EP %%Page: 72 72 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(interacti)144 84 Q -.1(ve)-.1 G(_comments).1 E F0 .33(If set, allo) -184 96 R 2.83(waw)-.25 G .33(ord be)-2.93 F .33(ginning with)-.15 F F1 -(#)2.83 E F0 .33(to cause that w)2.83 F .33 +SF(inherit_err)144 84 Q(exit)-.18 E F0 .22 +(If set, command substitution inherits the v)184 96 R .219(alue of the) +-.25 F F1(err)2.719 E(exit)-.18 E F0 .219(option, instead of unsetting) +2.719 F(it in the subshell en)184 108 Q 2.5(vironment. This)-.4 F +(option is enabled when)2.5 E/F2 10/Times-Italic@0 SF(posix mode)2.5 E +F0(is enabled.)2.5 E F1(interacti)144 120 Q -.1(ve)-.1 G(_comments).1 E +F0 .33(If set, allo)184 132 R 2.83(waw)-.25 G .33(ord be)-2.93 F .33 +(ginning with)-.15 F F1(#)2.83 E F0 .33(to cause that w)2.83 F .33 (ord and all remaining characters on)-.1 F .967 -(that line to be ignored in an interacti)184 108 R 1.267 -.15(ve s)-.25 -H .967(hell \(see).15 F/F2 9/Times-Bold@0 SF(COMMENTS)3.467 E F0(abo) -3.217 E -.15(ve)-.15 G 3.467(\). This).15 F .968(option is)3.468 F -(enabled by def)184 120 Q(ault.)-.1 E F1(lastpipe)144 132 Q F0 .066 -(If set, and job control is not acti)184 132 R -.15(ve)-.25 G 2.566(,t) +(that line to be ignored in an interacti)184 144 R 1.267 -.15(ve s)-.25 +H .967(hell \(see).15 F/F3 9/Times-Bold@0 SF(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 156 Q(ault.)-.1 E F1(lastpipe)144 168 Q F0 .066 +(If set, and job control is not acti)184 168 R -.15(ve)-.25 G 2.566(,t) .15 G .066(he shell runs the last command of a pipeline not e)-2.566 F -.15(xe)-.15 G(-).15 E(cuted in the background in the current shell en) -184 144 Q(vironment.)-.4 E F1(lithist)144 156 Q F0 .654(If set, and the) -184 156 R F1(cmdhist)3.154 E F0 .654 +184 180 Q(vironment.)-.4 E F1(lithist)144 192 Q F0 .655(If set, and the) +184 192 R 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 -(with embedded ne)184 168 Q +3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F +(with embedded ne)184 204 Q (wlines rather than using semicolon separators where possible.)-.25 E F1 -(login_shell)144 180 Q F0 .486 +(login_shell)144 216 Q F0 .486 (The shell sets this option if it is started as a login shell \(see)184 -192 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 204 S(lue may not be changed.).25 -E F1(mailwar)144 216 Q(n)-.15 E F0 .814(If set, and a \214le that)184 -228 R F1(bash)3.314 E F0 .815 -(is checking for mail has been accessed since the last time it)3.314 F --.1(wa)184 240 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 252 Q F0 .325(If set, and)184 264 R F1 -.18 -(re)2.825 G(adline).18 E F0 .325(is being used,)2.825 F F1(bash)2.824 E -F0 .324(will not attempt to search the)2.824 F F2 -.666(PA)2.824 G(TH) --.189 E F0 .324(for possible)2.574 F -(completions when completion is attempted on an empty line.)184 276 Q F1 -(nocaseglob)144 288 Q F0 .436(If set,)184 300 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 312 S +228 R F3(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 240 S(lue may not be changed.).25 +E F1(mailwar)144 252 Q(n)-.15 E F0 .815(If set, and a \214le that)184 +264 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 276 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E +(`The mail in)-.74 E F2(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 288 +Q F0 .324(If set, and)184 300 R F1 -.18(re)2.824 G(adline).18 E F0 .324 +(is being used,)2.824 F F1(bash)2.824 E F0 .324 +(will not attempt to search the)2.824 F F3 -.666(PA)2.825 G(TH)-.189 E +F0 .325(for possible)2.575 F +(completions when completion is attempted on an empty line.)184 312 Q F1 +(nocaseglob)144 324 Q F0 .437(If set,)184 336 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 348 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 324 Q F0 1.194(If set,)184 -336 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 -F .551(while e)184 348 R -.15(xe)-.15 G(cuting).15 E F1(case)3.051 E F0 +-.15(ve)-.15 G(\).).15 E F1(nocasematch)144 360 Q F0 1.193(If set,)184 +372 R F1(bash)3.693 E F0 1.194(matches patterns in a case\255insensiti) +3.693 F 1.494 -.15(ve f)-.25 H 1.194(ashion when performing matching).05 +F .551(while e)184 384 R -.15(xe)-.15 G(cuting).15 E F1(case)3.051 E F0 (or)3.051 E F1([[)3.051 E F0 .551 (conditional commands, when performing pattern substitution)3.051 F -.1 -(wo)184 360 S .623(rd e).1 F .623(xpansions, or when \214ltering possib\ -le completions as part of programmable com-)-.15 F(pletion.)184 372 Q F1 -(nullglob)144 384 Q F0 .854(If set,)184 396 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 408 S +(wo)184 396 S .622(rd e).1 F .623(xpansions, or when \214ltering possib\ +le completions as part of programmable com-)-.15 F(pletion.)184 408 Q F1 +(nullglob)144 420 Q F0 .855(If set,)184 432 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 444 S (pand to a null string, rather than themselv).15 E(es.)-.15 E F1(pr)144 -420 Q(ogcomp)-.18 E F0 .677(If set, the programmable completion f)184 -432 R .677(acilities \(see)-.1 F F1(Pr)3.176 E .676 -(ogrammable Completion)-.18 F F0(abo)3.176 E -.15(ve)-.15 G(\)).15 E -(are enabled.)184 444 Q(This option is enabled by def)5 E(ault.)-.1 E F1 -(pr)144 456 Q(omptv)-.18 E(ars)-.1 E F0 1.447 -(If set, prompt strings under)184 468 R 1.448(go parameter e)-.18 F -1.448(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 480 -S .171(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 492 Q(ault.)-.1 E F1 -.18(re)144 504 +456 Q(ogcomp)-.18 E F0 .676(If set, the programmable completion f)184 +468 R .677(acilities \(see)-.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 480 Q(This option is enabled by def)5 E(ault.)-.1 E F1 +(pr)144 492 Q(omptv)-.18 E(ars)-.1 E F0 1.448 +(If set, prompt strings under)184 504 R 1.448(go parameter e)-.18 F +1.447(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 516 +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 F3(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 528 Q(ault.)-.1 E F1 -.18(re)144 540 S(stricted_shell).18 E F0 1.069 (The shell sets this option if it is started in restricted mode \(see) -184 516 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 528 Q 2.86 +184 552 R F3 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 564 Q 2.86 (w\). The)-.25 F -.25(va)2.86 G .36(lue may not be changed.).25 F .36 (This is not reset when the startup \214les are e)5.36 F -.15(xe)-.15 G -(-).15 E(cuted, allo)184 540 Q(wing the startup \214les to disco)-.25 E +(-).15 E(cuted, allo)184 576 Q(wing the startup \214les to disco)-.25 E -.15(ve)-.15 G 2.5(rw).15 G(hether or not a shell is restricted.)-2.5 E -F1(shift_v)144 552 Q(erbose)-.1 E F0 .501(If set, the)184 564 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 -(xceeds the number)-.15 F(of positional parameters.)184 576 Q F1(sour) -144 588 Q(cepath)-.18 E F0 .771(If set, the)184 600 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 612 Q 2.5(gument. This)-.18 F(option is enabled by def)2.5 E(ault.) --.1 E F1(xpg_echo)144 624 Q F0(If set, the)184 636 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 652.8 Q F0([)2.5 E F1A F0(])A 1.001 -(Suspend the e)144 664.8 R -.15(xe)-.15 G 1.001 -(cution of this shell until it recei).15 F -.15(ve)-.25 G 3.501(sa).15 G -F2(SIGCONT)A F0 3.502(signal. A)3.252 F 1.002(login shell cannot be) -3.502 F .023(suspended; the)144 676.8 R F12.523 E F0 .023 -(option can be used to o)2.523 F -.15(ve)-.15 G .022 -(rride this and force the suspension.).15 F .022(The return status is) -5.022 F 2.5(0u)144 688.8 S(nless the shell is a login shell and)-2.5 E +F1(shift_v)144 588 Q(erbose)-.1 E F0 .502(If set, the)184 600 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 612 Q F1(sour) +144 624 Q(cepath)-.18 E F0 .77(If set, the)184 636 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 F3 -.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 648 Q 2.5(gument. This)-.18 F +(option is enabled by def)2.5 E(ault.)-.1 E F1(xpg_echo)144 660 Q F0 +(If set, the)184 672 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 688.8 Q F0([)2.5 E F1A F0(])A 1.002(Suspend the e)144 700.8 R +-.15(xe)-.15 G 1.002(cution of this shell until it recei).15 F -.15(ve) +-.25 G 3.501(sa).15 G F3(SIGCONT)A F0 3.501(signal. A)3.251 F 1.001 +(login shell cannot be)3.501 F .022(suspended; the)144 712.8 R F1 +2.522 E F0 .022(option can be used to o)2.522 F -.15(ve)-.15 G .022 +(rride this and force the suspension.).15 F .023(The return status is) +5.023 F 2.5(0u)144 724.8 S(nless the shell is a login shell and)-2.5 E F12.5 E F0(is not supplied, or if job control is not enabled.)2.5 -E F1(test)108 705.6 Q F3 -.2(ex)2.5 G(pr).2 E F1([)108 717.6 Q F3 -.2 -(ex)2.5 G(pr).2 E F1(])2.5 E F0 .877 -(Return a status of 0 \(true\) or 1 \(f)144 717.6 R .878 -(alse\) depending on the e)-.1 F -.25(va)-.25 G .878 -(luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 729.6 -S(pr).2 E F0 5.53(.E).73 G .53 -(ach operator and operand must be a separate ar)-5.53 F 3.03 -(gument. Expressions)-.18 F .53(are composed of the)3.03 F(GNU Bash 4.4) -72 768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(72)185.545 E 0 -Cg EP +E(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(72)190.95 E 0 Cg EP %%Page: 73 73 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 3.079 -(primaries described abo)144 84 R 3.379 -.15(ve u)-.15 H(nder).15 E/F1 9 -/Times-Bold@0 SF(CONDITION)5.579 E 3.079(AL EXPRESSIONS)-.18 F/F2 9 -/Times-Roman@0 SF(.)A/F3 10/Times-Bold@0 SF(test)7.579 E F0 3.08 -(does not accept an)5.58 F(y)-.15 E -(options, nor does it accept and ignore an ar)144 96 Q(gument of)-.18 E -F32.5 E F0(as signifying the end of options.)2.5 E .786 -(Expressions may be combined using the follo)144 114 R .785 -(wing operators, listed in decreasing order of prece-)-.25 F 3.411 -(dence. The)144 126 R -.25(eva)3.411 G .911 -(luation depends on the number of ar).25 F .912(guments; see belo)-.18 F -4.712 -.65(w. O)-.25 H .912(perator precedence is).65 F -(used when there are \214v)144 138 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G(ore ar) --2.5 E(guments.)-.18 E F3(!)144 150 Q/F4 10/Times-Italic@0 SF -.2(ex)2.5 -G(pr).2 E F0 -.35(Tr)180 150 S(ue if).35 E F4 -.2(ex)2.5 G(pr).2 E F0 -(is f)3.23 E(alse.)-.1 E F3(\()144 162 Q F4 -.2(ex)2.5 G(pr).2 E F3(\)) -2.5 E F0 .26(Returns the v)180 162 R .26(alue of)-.25 F F4 -.2(ex)2.76 G -(pr).2 E F0 5.26(.T)C .26(his may be used to o)-5.26 F -.15(ve)-.15 G -.26(rride the normal precedence of opera-).15 F(tors.)180 174 Q F4 -.2 -(ex)144 186 S(pr1).2 E F02.5 E F3(a)A F4 -.2(ex)2.5 G(pr2).2 E F0 --.35(Tr)180 198 S(ue if both).35 E F4 -.2(ex)2.5 G(pr1).2 E F0(and)2.5 E -F4 -.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F4 -.2(ex)144 210 S(pr1).2 -E F02.5 E F3(o)A F4 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 222 S -(ue if either).35 E F4 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F4 -.2(ex)2.5 G -(pr2).2 E F0(is true.)2.52 E F3(test)144 238.8 Q F0(and)2.5 E F3([)2.5 E +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(test)108 84 Q/F2 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([)108 +96 Q F2 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .878 +(Return a status of 0 \(true\) or 1 \(f)144 96 R .877 +(alse\) depending on the e)-.1 F -.25(va)-.25 G .877 +(luation of the conditional e).25 F(xpression)-.15 E F2 -.2(ex)144 108 S +(pr).2 E F0 5.53(.E).73 G .53 +(ach operator and operand must be a separate ar)-5.53 F 3.03 +(gument. Expressions)-.18 F .53(are composed of the)3.03 F 3.08 +(primaries described abo)144 120 R 3.38 -.15(ve u)-.15 H(nder).15 E/F3 9 +/Times-Bold@0 SF(CONDITION)5.58 E 3.079(AL EXPRESSIONS)-.18 F/F4 9 +/Times-Roman@0 SF(.)A F1(test)7.579 E F0 3.079(does not accept an)5.579 +F(y)-.15 E(options, nor does it accept and ignore an ar)144 132 Q +(gument of)-.18 E F12.5 E F0(as signifying the end of options.)2.5 +E .785(Expressions may be combined using the follo)144 150 R .786 +(wing operators, listed in decreasing order of prece-)-.25 F 3.412 +(dence. The)144 162 R -.25(eva)3.412 G .912 +(luation depends on the number of ar).25 F .911(guments; see belo)-.18 F +4.711 -.65(w. O)-.25 H .911(perator precedence is).65 F +(used when there are \214v)144 174 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G(ore ar) +-2.5 E(guments.)-.18 E F1(!)144 186 Q F2 -.2(ex)2.5 G(pr).2 E F0 -.35 +(Tr)180 186 S(ue if).35 E F2 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 E(alse.) +-.1 E F1(\()144 198 Q F2 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 .26 +(Returns the v)180 198 R .26(alue of)-.25 F F2 -.2(ex)2.76 G(pr).2 E F0 +5.26(.T)C .26(his may be used to o)-5.26 F -.15(ve)-.15 G .26 +(rride the normal precedence of opera-).15 F(tors.)180 210 Q F2 -.2(ex) +144 222 S(pr1).2 E F02.5 E F1(a)A F2 -.2(ex)2.5 G(pr2).2 E F0 -.35 +(Tr)180 234 S(ue if both).35 E F2 -.2(ex)2.5 G(pr1).2 E F0(and)2.5 E F2 +-.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F2 -.2(ex)144 246 S(pr1).2 E +F02.5 E F1(o)A F2 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 258 S +(ue if either).35 E F2 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F2 -.2(ex)2.5 G +(pr2).2 E F0(is true.)2.52 E F1(test)144 274.8 Q F0(and)2.5 E F1([)2.5 E F0 -.25(eva)2.5 G(luate conditional e).25 E (xpressions using a set of rules based on the number of ar)-.15 E -(guments.)-.18 E 2.5(0a)144 256.8 S -.18(rg)-2.5 G(uments).18 E(The e) -180 268.8 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 280.8 S -.18 -(rg)-2.5 G(ument).18 E(The e)180 292.8 Q +(guments.)-.18 E 2.5(0a)144 292.8 S -.18(rg)-2.5 G(uments).18 E(The e) +180 304.8 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 316.8 S -.18 +(rg)-2.5 G(ument).18 E(The e)180 328.8 Q (xpression is true if and only if the ar)-.15 E(gument is not null.)-.18 -E 2.5(2a)144 304.8 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) -180 316.8 R .37(gument is)-.18 F F3(!)2.87 E F0 2.87(,t)C .37(he e)-2.87 +E 2.5(2a)144 340.8 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) +180 352.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 .38(If the \214rst ar)180 328.8 R .38 -(gument is one of the unary conditional operators listed abo)-.18 F .679 --.15(ve u)-.15 H(nder).15 E F1(CONDI-)2.879 E(TION)180 340.8 Q .552 -(AL EXPRESSIONS)-.18 F F2(,)A F0 .552(the e)2.802 F .552 +(gument is null.)-.18 F .379(If the \214rst ar)180 364.8 R .38 +(gument is one of the unary conditional operators listed abo)-.18 F .68 +-.15(ve u)-.15 H(nder).15 E F3(CONDI-)2.88 E(TION)180 376.8 Q .553 +(AL EXPRESSIONS)-.18 F F4(,)A F0 .552(the e)2.802 F .552 (xpression is true if the unary test is true.)-.15 F .552 -(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 352.8 Q +(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 388.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 364.8 S -.18(rg)-2.5 G -(uments).18 E .236(The follo)180 376.8 R .236 +(xpression is f)-.15 E(alse.)-.1 E 2.5(3a)144 400.8 S -.18(rg)-2.5 G +(uments).18 E .236(The follo)180 412.8 R .236 (wing conditions are applied in the order listed.)-.25 F .236 (If the second ar)5.236 F .236(gument is one of)-.18 F .855 -(the binary conditional operators listed abo)180 388.8 R 1.155 -.15 -(ve u)-.15 H(nder).15 E F1(CONDITION)3.355 E .855(AL EXPRESSIONS)-.18 F -F2(,)A F0(the)3.105 E .579(result of the e)180 400.8 R .578(xpression i\ +(the binary conditional operators listed abo)180 424.8 R 1.155 -.15 +(ve u)-.15 H(nder).15 E F3(CONDITION)3.355 E .855(AL EXPRESSIONS)-.18 F +F4(,)A F0(the)3.104 E .578(result of the e)180 436.8 R .578(xpression i\ s the result of the binary test using the \214rst and third ar)-.15 F -(guments)-.18 E 1.332(as operands.)180 412.8 R(The)6.332 E F33.832 -E F0(and)3.832 E F33.832 E F0 1.333 +(guments)-.18 E 1.333(as operands.)180 448.8 R(The)6.333 E F13.833 +E F0(and)3.833 E F13.832 E F0 1.332 (operators are considered binary operators when there are)3.832 F .558 -(three ar)180 424.8 R 3.058(guments. If)-.18 F .558(the \214rst ar)3.058 -F .558(gument is)-.18 F F3(!)3.058 E F0 3.058(,t)C .558(he v)-3.058 F +(three ar)180 460.8 R 3.058(guments. If)-.18 F .558(the \214rst ar)3.058 +F .558(gument is)-.18 F F1(!)3.058 E F0 3.058(,t)C .558(he v)-3.058 F .558(alue is the ne)-.25 F -.05(ga)-.15 G .558(tion of the tw).05 F -(o-ar)-.1 E(gument)-.18 E .52(test using the second and third ar)180 -436.8 R 3.021(guments. If)-.18 F .521(the \214rst ar)3.021 F .521 -(gument is e)-.18 F(xactly)-.15 E F3(\()3.021 E F0 .521(and the third) -3.021 F(ar)180 448.8 Q .485(gument is e)-.18 F(xactly)-.15 E F3(\))2.985 -E F0 2.985(,t)C .485(he result is the one-ar)-2.985 F .485 +(o-ar)-.1 E(gument)-.18 E .521(test using the second and third ar)180 +472.8 R 3.021(guments. If)-.18 F .521(the \214rst ar)3.021 F .52 +(gument is e)-.18 F(xactly)-.15 E F1(\()3.02 E F0 .52(and the third)3.02 +F(ar)180 484.8 Q .485(gument is e)-.18 F(xactly)-.15 E F1(\))2.985 E F0 +2.985(,t)C .485(he result is the one-ar)-2.985 F .485 (gument test of the second ar)-.18 F 2.985(gument. Other)-.18 F(-)-.2 E -(wise, the e)180 460.8 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 -472.8 S -.18(rg)-2.5 G(uments).18 E .384(If the \214rst ar)180 484.8 R -.384(gument is)-.18 F F3(!)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 496.8 R 4.147(guments. Otherwise,)-.18 F -1.647(the e)4.147 F 1.647(xpression is parsed and e)-.15 F -.25(va)-.25 +(wise, the e)180 496.8 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 +508.8 S -.18(rg)-2.5 G(uments).18 E .385(If the \214rst ar)180 520.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 532.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 -508.8 Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 520.8 S 2.5(rm)-2.5 G(ore ar) --2.5 E(guments)-.18 E 1.635(The e)180 532.8 R 1.635 +544.8 Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 556.8 S 2.5(rm)-2.5 G(ore ar) +-2.5 E(guments)-.18 E 1.635(The e)180 568.8 R 1.635 (xpression is parsed and e)-.15 F -.25(va)-.25 G 1.635 (luated according to precedence using the rules listed).25 F(abo)180 -544.8 Q -.15(ve)-.15 G(.).15 E(When used with)144 562.8 Q F3(test)2.5 E -F0(or)2.5 E F3([)2.5 E F0 2.5(,t)C(he)-2.5 E F3(<)2.5 E F0(and)2.5 E F3 +580.8 Q -.15(ve)-.15 G(.).15 E(When used with)144 598.8 Q F1(test)2.5 E +F0(or)2.5 E F1([)2.5 E F0 2.5(,t)C(he)-2.5 E F1(<)2.5 E F0(and)2.5 E F1 (>)2.5 E F0(operators sort le)2.5 E -(xicographically using ASCII ordering.)-.15 E F3(times)108 579.6 Q F0 +(xicographically using ASCII ordering.)-.15 E F1(times)108 615.6 Q F0 1.229(Print the accumulated user and system times for the shell and for\ - processes run from the shell.)144 579.6 R(The return status is 0.)144 -591.6 Q F3(trap)108 608.4 Q F0([)2.5 E F3(\255lp)A F0 2.5(][)C([)-2.5 E -F4(ar)A(g)-.37 E F0(])A F4(sigspec)2.5 E F0(...])2.5 E .702(The command) -144 620.4 R F4(ar)3.532 E(g)-.37 E F0 .702(is to be read and e)3.422 F + processes run from the shell.)144 615.6 R(The return status is 0.)144 +627.6 Q F1(trap)108 644.4 Q F0([)2.5 E F1(\255lp)A F0 2.5(][)C([)-2.5 E +F2(ar)A(g)-.37 E F0(])A F2(sigspec)2.5 E F0(...])2.5 E .703(The command) +144 656.4 R F2(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.203(ss).15 G(ignal\(s\))-3.203 E F4(sigspec)3.203 E F0 5.703(.I).31 G -(f)-5.703 E F4(ar)3.533 E(g)-.37 E F0(is)3.423 E .609 -(absent \(and there is a single)144 632.4 R F4(sigspec)3.108 E F0 3.108 -(\)o)C(r)-3.108 E F33.108 E F0 3.108(,e)C .608 +3.202(ss).15 G(ignal\(s\))-3.202 E F2(sigspec)3.202 E F0 5.702(.I).31 G +(f)-5.702 E F2(ar)3.532 E(g)-.37 E F0(is)3.422 E .608 +(absent \(and there is a single)144 668.4 R F2(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 644.4 R .658(alue it had upon entrance to the shell\).) --.25 F(If)5.658 E F4(ar)3.488 E(g)-.37 E F0 .659 -(is the null string the signal speci\214ed by each)3.378 F F4(sigspec) -144.34 656.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 F4(ar)3.41 E(g)-.37 E F0 .58 -(is not present and)3.3 F F33.08 E F0(has)3.08 E 1.214 -(been supplied, then the trap commands associated with each)144 668.4 R -F4(sigspec)4.054 E F0 1.215(are displayed.)4.024 F 1.215(If no ar)6.215 -F(gu-)-.18 E .86(ments are supplied or if only)144 680.4 R F33.36 -E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F3(trap)3.36 E F0 .86 -(prints the list of commands associated with each)3.36 F 2.83 -(signal. The)144 692.4 R F32.83 E F0 .33(option causes the shell \ -to print a list of signal names and their corresponding num-)2.83 F -4.311(bers. Each)144 704.4 R F4(sigspec)4.651 E F0 1.811 -(is either a signal name de\214ned in <)4.621 F F4(signal.h)A F0 1.81 -(>, or a signal number)B 6.81(.S)-.55 G(ignal)-6.81 E -(names are case insensiti)144 716.4 Q .3 -.15(ve a)-.25 H(nd the).15 E -F1(SIG)2.5 E F0(pre\214x is optional.)2.25 E(GNU Bash 4.4)72 768 Q -(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(73)185.545 E 0 Cg EP +.659(\(the v)144 680.4 R .659(alue it had upon entrance to the shell\).) +-.25 F(If)5.658 E F2(ar)3.488 E(g)-.37 E F0 .658 +(is the null string the signal speci\214ed by each)3.378 F F2(sigspec) +144.34 692.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 F2(ar)3.411 E(g)-.37 E +F0 .581(is not present and)3.301 F F13.081 E F0(has)3.081 E 1.215 +(been supplied, then the trap commands associated with each)144 704.4 R +F2(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 716.4 R F13.36 +E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F1(trap)3.36 E F0 .86 +(prints the list of commands associated with each)3.36 F 4.327 +(signal. The)144 728.4 R F14.327 E F0 1.826(option causes the she\ +ll to print a list of signal names and their corresponding)4.327 F +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(73)190.95 E 0 Cg EP %%Page: 74 74 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.648(If a)144 84 -R/F1 10/Times-Italic@0 SF(sigspec)4.488 E F0(is)4.458 E/F2 9 -/Times-Bold@0 SF(EXIT)4.148 E F0 1.648(\(0\) the command)3.898 F F1(ar) -4.479 E(g)-.37 E F0 1.649(is e)4.369 F -.15(xe)-.15 G 1.649(cuted on e) -.15 F 1.649(xit from the shell.)-.15 F 1.649(If a)6.649 F F1(sigspec) -4.489 E F0(is)4.459 E F2(DEB)144 96 Q(UG)-.09 E/F3 9/Times-Roman@0 SF(,) -A F0 1.168(the command)3.418 F F1(ar)3.998 E(g)-.37 E F0 1.168(is e) -3.888 F -.15(xe)-.15 G 1.167(cuted before e).15 F -.15(ve)-.25 G(ry).15 -E F1 1.167(simple command)3.667 F F0(,)A F1(for)3.667 E F0(command,) -3.667 E F1(case)3.667 E F0(com-)3.667 E(mand,)144 108 Q F1(select)2.646 -E F0 .146(command, e)2.646 F -.15(ve)-.25 G .146(ry arithmetic).15 F F1 -(for)2.646 E F0 .147(command, and before the \214rst command e)2.646 F --.15(xe)-.15 G .147(cutes in a).15 F .146(shell function \(see)144 120 R -F2 .146(SHELL GRAMMAR)2.646 F F0(abo)2.396 E -.15(ve)-.15 G 2.646 -(\). Refer).15 F .146(to the description of the)2.646 F/F4 10 -/Times-Bold@0 SF(extdeb)2.645 E(ug)-.2 E F0 .145(option to)2.645 F(the) -144 132 Q F4(shopt)3.2 E F0 -.2(bu)3.2 G .7(iltin for details of its ef) -.2 F .7(fect on the)-.25 F F4(DEB)3.2 E(UG)-.1 E F0 3.2(trap. If)3.2 F -(a)3.2 E F1(sigspec)3.54 E F0(is)3.51 E F2(RETURN)3.2 E F3(,)A F0 .701 -(the com-)2.951 F(mand)144 144 Q F1(ar)3.474 E(g)-.37 E F0 .644(is e) -3.364 F -.15(xe)-.15 G .643 -(cuted each time a shell function or a script e).15 F -.15(xe)-.15 G -.643(cuted with the).15 F F4(.)3.143 E F0(or)3.143 E F4(sour)3.143 E(ce) --.18 E F0 -.2(bu)3.143 G(iltins).2 E(\214nishes e)144 156 Q -.15(xe)-.15 -G(cuting.).15 E .96(If a)144 174 R F1(sigspec)3.8 E F0(is)3.77 E F2(ERR) -3.46 E F3(,)A F0 .96(the command)3.21 F F1(ar)3.791 E(g)-.37 E F0 .961 -(is e)3.681 F -.15(xe)-.15 G .961(cuted whene).15 F -.15(ve)-.25 G 3.461 -(rap).15 G .961(ipeline \(which may consist of a)-3.461 F .185(single s\ -imple command\), a list, or a compound command returns a non\255zero e) -144 186 R .184(xit status, subject to)-.15 F .451(the follo)144 198 R -.451(wing conditions.)-.25 F(The)5.451 E F2(ERR)2.951 E F0 .451 -(trap is not e)2.701 F -.15(xe)-.15 G .451(cuted if the f).15 F .452 -(ailed command is part of the com-)-.1 F .388 -(mand list immediately follo)144 210 R .388(wing a)-.25 F F4(while)2.888 -E F0(or)2.888 E F4(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388 -(ord, part of the test in an)-.1 F F1(if)2.897 E F0 .387 -(statement, part)4.847 F .777(of a command e)144 222 R -.15(xe)-.15 G +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 3.125 +(numbers. Each)144 84 R/F1 10/Times-Italic@0 SF(sigspec)3.465 E F0 .625 +(is either a signal name de\214ned in <)3.435 F F1(signal.h)A F0 .626 +(>, or a signal number)B 5.626(.S)-.55 G(ignal)-5.626 E +(names are case insensiti)144 96 Q .3 -.15(ve a)-.25 H(nd the).15 E/F2 9 +/Times-Bold@0 SF(SIG)2.5 E F0(pre\214x is optional.)2.25 E 1.649(If a) +144 114 R F1(sigspec)4.489 E F0(is)4.459 E F2(EXIT)4.149 E F0 1.649 +(\(0\) the command)3.899 F F1(ar)4.479 E(g)-.37 E F0 1.649(is e)4.369 F +-.15(xe)-.15 G 1.649(cuted on e).15 F 1.648(xit from the shell.)-.15 F +1.648(If a)6.648 F F1(sigspec)4.488 E F0(is)4.458 E F2(DEB)144 126 Q(UG) +-.09 E/F3 9/Times-Roman@0 SF(,)A F0 1.167(the command)3.417 F F1(ar) +3.997 E(g)-.37 E F0 1.167(is e)3.887 F -.15(xe)-.15 G 1.167 +(cuted before e).15 F -.15(ve)-.25 G(ry).15 E F1 1.168(simple command) +3.667 F F0(,)A F1(for)3.668 E F0(command,)3.668 E F1(case)3.668 E F0 +(com-)3.668 E(mand,)144 138 Q F1(select)2.647 E F0 .147(command, e)2.647 +F -.15(ve)-.25 G .147(ry arithmetic).15 F F1(for)2.647 E F0 .146 +(command, and before the \214rst command e)2.647 F -.15(xe)-.15 G .146 +(cutes in a).15 F .145(shell function \(see)144 150 R F2 .145 +(SHELL GRAMMAR)2.645 F F0(abo)2.395 E -.15(ve)-.15 G 2.646(\). Refer).15 +F .146(to the description of the)2.646 F/F4 10/Times-Bold@0 SF(extdeb) +2.646 E(ug)-.2 E F0 .146(option to)2.646 F(the)144 162 Q F4(shopt)3.201 +E F0 -.2(bu)3.201 G .7(iltin for details of its ef).2 F .7(fect on the) +-.25 F F4(DEB)3.2 E(UG)-.1 E F0 3.2(trap. If)3.2 F(a)3.2 E F1(sigspec) +3.54 E F0(is)3.51 E F2(RETURN)3.2 E F3(,)A F0 .7(the com-)2.95 F(mand) +144 174 Q F1(ar)3.473 E(g)-.37 E F0 .643(is e)3.363 F -.15(xe)-.15 G +.643(cuted each time a shell function or a script e).15 F -.15(xe)-.15 G +.644(cuted with the).15 F F4(.)3.144 E F0(or)3.144 E F4(sour)3.144 E(ce) +-.18 E F0 -.2(bu)3.144 G(iltins).2 E(\214nishes e)144 186 Q -.15(xe)-.15 +G(cuting.).15 E .961(If a)144 204 R F1(sigspec)3.801 E F0(is)3.771 E F2 +(ERR)3.461 E F3(,)A F0 .961(the command)3.211 F F1(ar)3.791 E(g)-.37 E +F0 .961(is e)3.681 F -.15(xe)-.15 G .961(cuted whene).15 F -.15(ve)-.25 +G 3.461(ra).15 G .96(pipeline \(which may consist of a)-.001 F .185(sin\ +gle simple command\), a list, or a compound command returns a non\255ze\ +ro e)144 216 R .185(xit status, subject to)-.15 F .452(the follo)144 228 +R .452(wing conditions.)-.25 F(The)5.452 E F2(ERR)2.952 E F0 .451 +(trap is not e)2.701 F -.15(xe)-.15 G .451(cuted if the f).15 F .451 +(ailed command is part of the com-)-.1 F .387 +(mand list immediately follo)144 240 R .387(wing a)-.25 F F4(while)2.887 +E F0(or)2.887 E F4(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388 +(ord, part of the test in an)-.1 F F1(if)2.898 E F0 .388 +(statement, part)4.848 F .778(of a command e)144 252 R -.15(xe)-.15 G .778(cuted in a).15 F F4(&&)3.278 E F0(or)3.278 E F4(||)3.278 E F0 .778 (list e)3.278 F .778(xcept the command follo)-.15 F .778 -(wing the \214nal)-.25 F F4(&&)3.278 E F0(or)3.278 E F4(||)3.278 E F0 -3.278(,a)C -.15(ny)-3.278 G 1.28(command in a pipeline b)144 234 R 1.28 +(wing the \214nal)-.25 F F4(&&)3.278 E F0(or)3.278 E F4(||)3.277 E F0 +3.277(,a)C -.15(ny)-3.277 G 1.28(command in a pipeline b)144 264 R 1.28 (ut the last, or if the command')-.2 F 3.78(sr)-.55 G 1.28(eturn v)-3.78 F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F F4(!) -3.78 E F0(.)A(These are the same conditions obe)144 246 Q(yed by the) +3.78 E F0(.)A(These are the same conditions obe)144 276 Q(yed by the) -.15 E F4(err)2.5 E(exit)-.18 E F0(\()2.5 E F4A F0 2.5(\)o)C (ption.)-2.5 E 1.095 (Signals ignored upon entry to the shell cannot be trapped or reset.)144 -264 R -.35(Tr)6.095 G 1.095(apped signals that are not).35 F .662 -(being ignored are reset to their original v)144 276 R .662 -(alues in a subshell or subshell en)-.25 F .661(vironment when one is) --.4 F 2.5(created. The)144 288 R(return status is f)2.5 E(alse if an)-.1 +294 R -.35(Tr)6.095 G 1.095(apped signals that are not).35 F .662 +(being ignored are reset to their original v)144 306 R .662 +(alues in a subshell or subshell en)-.25 F .662(vironment when one is) +-.4 F 2.5(created. The)144 318 R(return status is f)2.5 E(alse if an)-.1 E(y)-.15 E F1(sigspec)2.84 E F0(is in)2.81 E -.25(va)-.4 G (lid; otherwise).25 E F4(trap)2.5 E F0(returns true.)2.5 E F4(type)108 -304.8 Q F0([)2.5 E F4(\255aftpP)A F0(])A F1(name)2.5 E F0([)2.5 E F1 -(name)A F0(...])2.5 E -.4(Wi)144 316.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 -F4144 328.8 Q F0 .843(option is used,)3.343 F F4(type)3.343 E F0 +334.8 Q F0([)2.5 E F4(\255aftpP)A F0(])A F1(name)2.5 E F0([)2.5 E F1 +(name)A F0(...])2.5 E -.4(Wi)144 346.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 +F4144 358.8 Q F0 .842(option is used,)3.342 F F4(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 340.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 -(found, then nothing is printed, and an e)144 352.8 R .118 -(xit status of f)-.15 F .118(alse is returned.)-.1 F .118(If the)5.118 F -F42.618 E F0 .118(option is used,)2.618 F F4(type)2.618 E F0 .855 -(either returns the name of the disk \214le that w)144 364.8 R .855 +(,).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 370.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 382.8 R .118 +(xit status of f)-.15 F .118(alse is returned.)-.1 F .119(If the)5.119 F +F42.619 E F0 .119(option is used,)2.619 F F4(type)2.619 E F0 .855 +(either returns the name of the disk \214le that w)144 394.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 376.8 R/F5 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 -F43.14 E F0 .64(option forces a)3.14 F F2 -.666(PA)3.14 G(TH)-.189 -E F0 .112(search for each)144 388.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 F5 .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 F42.613 E -F0(and)144 400.8 Q F43.231 E F0 .731(print the hashed v)3.231 F -.73(alue, which is not necessarily the \214le that appears \214rst in) --.25 F F2 -.666(PA)3.23 G(TH)-.189 E F3(.)A F0 .73(If the)5.23 F F4 -144 412.8 Q F0 1.748(option is used,)4.248 F F4(type)4.248 E F0 -1.748(prints all of the places that contain an e)4.248 F -.15(xe)-.15 G -1.748(cutable named).15 F F1(name)4.249 E F0 6.749(.T).18 G(his)-6.749 E -.744(includes aliases and functions, if and only if the)144 424.8 R F4 -3.244 E F0 .744(option is not also used.)3.244 F .743 +.855(were speci\214ed as a com-)3.535 F .64(mand name, or nothing if)144 +406.8 R/F5 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 F4 +3.141 E F0 .641(option forces a)3.141 F F2 -.666(PA)3.141 G(TH) +-.189 E F0 .113(search for each)144 418.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 F5 .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 F4 +2.612 E F0(and)144 430.8 Q F43.23 E F0 .73(print the hashed v)3.23 +F .731 +(alue, which is not necessarily the \214le that appears \214rst in)-.25 +F F2 -.666(PA)3.231 G(TH)-.189 E F3(.)A F0 .731(If the)5.231 F F4 +144 442.8 Q F0 1.749(option is used,)4.249 F F4(type)4.248 E F0 1.748 +(prints all of the places that contain an e)4.248 F -.15(xe)-.15 G 1.748 +(cutable named).15 F F1(name)4.248 E F0 6.748(.T).18 G(his)-6.748 E .744 +(includes aliases and functions, if and only if the)144 454.8 R F4 +3.244 E F0 .744(option is not also used.)3.244 F .744 (The table of hashed)5.744 F 1.223(commands is not consulted when using) -144 436.8 R F43.723 E F0 6.223(.T)C(he)-6.223 E F43.723 E F0 -1.223(option suppresses shell function lookup, as)3.723 F .326(with the) -144 448.8 R F4(command)2.826 E F0 -.2(bu)2.826 G(iltin.).2 E F4(type) -5.326 E F0 .326(returns true if all of the ar)2.826 F .325 -(guments are found, f)-.18 F .325(alse if an)-.1 F 2.825(ya)-.15 G .325 -(re not)-2.825 F(found.)144 460.8 Q F4(ulimit)108 477.6 Q F0([)2.5 E F4 +144 466.8 R F43.723 E F0 6.223(.T)C(he)-6.223 E F43.723 E F0 +1.223(option suppresses shell function lookup, as)3.723 F .325(with the) +144 478.8 R F4(command)2.825 E F0 -.2(bu)2.825 G(iltin.).2 E F4(type) +5.325 E F0 .325(returns true if all of the ar)2.825 F .326 +(guments are found, f)-.18 F .326(alse if an)-.1 F 2.826(ya)-.15 G .326 +(re not)-2.826 F(found.)144 490.8 Q F4(ulimit)108 507.6 Q F0([)2.5 E F4 (\255HSabcde\214klmnpqrstuvxPT)A F0([)2.5 E F1(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 +519.6 Q .244(vides control o)-.15 F -.15(ve)-.15 G 2.744(rt).15 G .244 +(he resources a)-2.744 F -.25(va)-.2 G .244 (ilable to the shell and to processes started by it, on systems).25 F -.944(that allo)144 501.6 R 3.444(ws)-.25 G .944(uch control.)-3.444 F -(The)5.944 E F43.444 E F0(and)3.444 E F43.444 E F0 .943 +.943(that allo)144 531.6 R 3.443(ws)-.25 G .943(uch control.)-3.443 F +(The)5.943 E F43.443 E F0(and)3.443 E F43.444 E F0 .944 (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.708(nr).15 G 2.708(esource. A)-2.708 F .208 +144 543.6 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208 (hard limit cannot be increased by a non-root user once it is set; a so\ -ft limit may)2.708 F .426(be increased up to the v)144 525.6 R .426 -(alue of the hard limit.)-.25 F .425(If neither)5.426 F F42.925 E -F0(nor)2.925 E F42.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 +ft limit may)2.709 F .425(be increased up to the v)144 555.6 R .425 +(alue of the hard limit.)-.25 F .426(If neither)5.425 F F42.926 E +F0(nor)2.926 E F42.926 E F0 .426 +(is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144 +567.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 -.742(of the special v)144 549.6 R(alues)-.25 E F4(hard)3.242 E F0(,)A F4 +.741(of the special v)144 579.6 R(alues)-.25 E F4(hard)3.241 E F0(,)A F4 (soft)3.241 E F0 3.241(,o)C(r)-3.241 E F4(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 +(soft limit, and no limit, respecti)144 591.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 .499(resource is printed, unless the)144 573.6 R F42.999 E F0 -.499(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .498 +F .498(resource is printed, unless the)144 603.6 R F42.999 E F0 +.499(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .499 (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 +(limit name and unit are printed before the v)144 615.6 Q 2.5 (alue. Other)-.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F4 -144 597.6 Q F0(All current limits are reported)180 597.6 Q F4 -144 609.6 Q F0(The maximum sock)180 609.6 Q(et b)-.1 E(uf)-.2 E -(fer size)-.25 E F4144 621.6 Q F0 -(The maximum size of core \214les created)180 621.6 Q F4144 633.6 -Q F0(The maximum size of a process')180 633.6 Q 2.5(sd)-.55 G(ata se) --2.5 E(gment)-.15 E F4144 645.6 Q F0 -(The maximum scheduling priority \("nice"\))180 645.6 Q F4144 -657.6 Q F0 +144 627.6 Q F0(All current limits are reported)180 627.6 Q F4 +144 639.6 Q F0(The maximum sock)180 639.6 Q(et b)-.1 E(uf)-.2 E +(fer size)-.25 E F4144 651.6 Q F0 +(The maximum size of core \214les created)180 651.6 Q F4144 663.6 +Q F0(The maximum size of a process')180 663.6 Q 2.5(sd)-.55 G(ata se) +-2.5 E(gment)-.15 E F4144 675.6 Q F0 +(The maximum scheduling priority \("nice"\))180 675.6 Q F4144 +687.6 Q F0 (The maximum size of \214les written by the shell and its children)180 -657.6 Q F4144 669.6 Q F0(The maximum number of pending signals)180 -669.6 Q F4144 681.6 Q F0 -(The maximum number of kqueues that may be allocated)180 681.6 Q F4 -144 693.6 Q F0(The maximum size that may be lock)180 693.6 Q -(ed into memory)-.1 E F4144 705.6 Q F0 -(The maximum resident set size \(man)180 705.6 Q 2.5(ys)-.15 G -(ystems do not honor this limit\))-2.5 E F4144 717.6 Q F0 .791(Th\ -e maximum number of open \214le descriptors \(most systems do not allo) -180 717.6 R 3.291(wt)-.25 G .791(his v)-3.291 F .791(alue to)-.25 F -(be set\))180 729.6 Q(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve) --.15 G(mber 16).15 E(74)185.545 E 0 Cg EP +687.6 Q F4144 699.6 Q F0(The maximum number of pending signals)180 +699.6 Q F4144 711.6 Q F0 +(The maximum number of kqueues that may be allocated)180 711.6 Q +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(74)190.95 E 0 Cg EP %%Page: 75 75 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF144 84 Q F0 -(The pipe size in 512-byte blocks \(this may not be set\))180 84 Q F1 -144 96 Q F0(The maximum number of bytes in POSIX message queues) -180 96 Q F1144 108 Q F0(The maximum real-time scheduling priority) -180 108 Q F1144 120 Q F0(The maximum stack size)180 120 Q F1 -144 132 Q F0(The maximum amount of cpu time in seconds)180 132 Q F1 -144 144 Q F0(The maximum number of processes a)180 144 Q -.25(va) --.2 G(ilable to a single user).25 E F1144 156 Q F0 .47 -(The maximum amount of virtual memory a)180 156 R -.25(va)-.2 G .47 -(ilable to the shell and, on some systems, to).25 F(its children)180 168 -Q F1144 180 Q F0(The maximum number of \214le locks)180 180 Q F1 -144 192 Q F0(The maximum number of pseudoterminals)180 192 Q F1 -144 204 Q F0(The maximum number of threads)180 204 Q(If)144 220.8 +SF144 84 Q F0(The maximum size that may be lock)180 84 Q +(ed into memory)-.1 E F1144 96 Q F0 +(The maximum resident set size \(man)180 96 Q 2.5(ys)-.15 G +(ystems do not honor this limit\))-2.5 E F1144 108 Q F0 .791(The \ +maximum number of open \214le descriptors \(most systems do not allo)180 +108 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F(be set\))180 +120 Q F1144 132 Q F0 +(The pipe size in 512-byte blocks \(this may not be set\))180 132 Q F1 +144 144 Q F0(The maximum number of bytes in POSIX message queues) +180 144 Q F1144 156 Q F0 +(The maximum real-time scheduling priority)180 156 Q F1144 168 Q +F0(The maximum stack size)180 168 Q F1144 180 Q F0 +(The maximum amount of cpu time in seconds)180 180 Q F1144 192 Q +F0(The maximum number of processes a)180 192 Q -.25(va)-.2 G +(ilable to a single user).25 E F1144 204 Q F0 .47 +(The maximum amount of virtual memory a)180 204 R -.25(va)-.2 G .47 +(ilable to the shell and, on some systems, to).25 F(its children)180 216 +Q F1144 228 Q F0(The maximum number of \214le locks)180 228 Q F1 +144 240 Q F0(The maximum number of pseudoterminals)180 240 Q F1 +144 252 Q F0(The maximum number of threads)180 252 Q(If)144 268.8 Q/F2 10/Times-Italic@0 SF(limit)3.058 E F0 .468(is gi)3.648 F -.15(ve) -.25 G .468(n, and the).15 F F12.968 E F0 .468 (option is not used,)2.968 F F2(limit)2.968 E F0 .468(is the ne)2.968 F 2.968(wv)-.25 G .468(alue of the speci\214ed resource.)-3.218 F(If)5.468 -E .045(no option is gi)144 232.8 R -.15(ve)-.25 G .045(n, then).15 F F1 -2.545 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045 -(lues are in 1024-byte increments, e)1.11 F .044(xcept for)-.15 F F1 -2.544 E F0 2.544(,w)C .044(hich is)-2.544 F 1.588(in seconds;)144 -244.8 R F14.088 E F0 4.089(,w)C 1.589 +E .044(no option is gi)144 280.8 R -.15(ve)-.25 G .044(n, then).15 F F1 +2.544 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045 +(lues are in 1024-byte increments, e)1.11 F .045(xcept for)-.15 F F1 +2.545 E F0 2.545(,w)C .045(hich is)-2.545 F 1.589(in seconds;)144 +292.8 R F14.089 E F0 4.089(,w)C 1.589 (hich is in units of 512-byte blocks;)-4.089 F F14.089 E F0(,)A F1 4.089 E F0(,)A F14.089 E F0(,)A F14.089 E F0(,)A F1 -4.089 E F0 4.089(,a)C(nd)-4.089 E F14.089 E F0 4.089(,w)C -1.589(hich are)-4.089 F 1.439(unscaled v)144 256.8 R 1.439 +4.089 E F0 4.089(,a)C(nd)-4.089 E F14.089 E F0 4.088(,w)C +1.588(hich are)-4.088 F 1.438(unscaled v)144 304.8 R 1.438 (alues; and, when in Posix mode,)-.25 F F13.939 E F0(and)3.939 E -F13.939 E F0 3.939(,w)C 1.438(hich are in 512-byte increments.) --3.939 F(The)6.438 E .404(return status is 0 unless an in)144 268.8 R +F13.939 E F0 3.939(,w)C 1.439(hich are in 512-byte increments.) +-3.939 F(The)6.439 E .404(return status is 0 unless an in)144 316.8 R -.25(va)-.4 G .404(lid option or ar).25 F .404 (gument is supplied, or an error occurs while setting)-.18 F 2.5(an)144 -280.8 S .5 -.25(ew l)-2.5 H(imit.).25 E F1(umask)108 297.6 Q F0([)2.5 E +328.8 S .5 -.25(ew l)-2.5 H(imit.).25 E F1(umask)108 345.6 Q F0([)2.5 E F1A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(mode)-2.5 E F0(])A -.2(The user \214le-creation mask is set to)144 309.6 R F2(mode)2.7 E F0 +.2(The user \214le-creation mask is set to)144 357.6 R F2(mode)2.7 E F0 5.2(.I).18 G(f)-5.2 E F2(mode)3.08 E F0(be)2.88 E .2 (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 321.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 -333.6 Q F2(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382 +pted by)144 369.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 +381.6 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 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 345.6 R .547 +(printed in symbolic form; the def)144 393.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 357.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 369.6 Q +(mode)144.38 405.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 417.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 386.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 -(...])2.5 E(Remo)144 398.4 Q 1.955 -.15(ve e)-.15 H(ach).15 E F2(name) +(unalias)108 434.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 +(...])2.5 E(Remo)144 446.4 Q 1.955 -.15(ve e)-.15 H(ach).15 E F2(name) 4.155 E F0 1.655(from the list of de\214ned aliases.)4.155 F(If)6.655 E F14.155 E F0 1.655(is supplied, all alias de\214nitions are)4.155 -F(remo)144 410.4 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E +F(remo)144 458.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 427.2 Q F0<5bad>2.5 E F1 +(is not a de\214ned alias.)2.68 E F1(unset)108 475.2 Q F0<5bad>2.5 E F1 (fv)A F0 2.5(][)C-2.5 E F1(n)A F0 2.5(][)C F2(name)-2.5 E F0(...]) -2.5 E -.15(Fo)144 439.2 S 3.828(re).15 G(ach)-3.828 E F2(name)3.828 E F0 -3.828(,r).18 G(emo)-3.828 E 1.628 -.15(ve t)-.15 H 1.328 +2.5 E -.15(Fo)144 487.2 S 3.827(re).15 G(ach)-3.827 E F2(name)3.827 E F0 +3.827(,r).18 G(emo)-3.827 E 1.627 -.15(ve t)-.15 H 1.327 (he corresponding v).15 F 1.327(ariable or function.)-.25 F 1.327 -(If the)6.327 F F13.827 E F0 1.327(option is gi)3.827 F -.15(ve) --.25 G 1.327(n, each).15 F F2(name)144.36 451.2 Q F0 1.55 -(refers to a shell v)4.23 F 1.551(ariable, and that v)-.25 F 1.551 -(ariable is remo)-.25 F -.15(ve)-.15 G 4.051(d. Read-only).15 F -.25(va) -4.051 G 1.551(riables may not be).25 F 4.642(unset. If)144 463.2 R F1 -4.642 E F0 2.142(is speci\214ed, each)4.642 F F2(name)5.001 E F0 +(If the)6.327 F F13.828 E F0 1.328(option is gi)3.828 F -.15(ve) +-.25 G 1.328(n, each).15 F F2(name)144.36 499.2 Q F0 1.551 +(refers to a shell v)4.231 F 1.551(ariable, and that v)-.25 F 1.551 +(ariable is remo)-.25 F -.15(ve)-.15 G 4.05(d. Read-only).15 F -.25(va) +4.05 G 1.55(riables may not be).25 F 4.641(unset. If)144 511.2 R F1 +4.641 E F0 2.141(is speci\214ed, each)4.641 F F2(name)5.001 E F0 2.141(refers to a shell function, and the function de\214nition is)4.821 -F(remo)144 475.2 Q -.15(ve)-.15 G 2.537(d. If).15 F(the)2.537 E F1 +F(remo)144 523.2 Q -.15(ve)-.15 G 2.538(d. If).15 F(the)2.537 E F1 2.537 E F0 .037(option is supplied, and)2.537 F F2(name)2.537 E F0 .037 (is a v)2.537 F .037(ariable with the)-.25 F F2(namer)2.537 E(ef)-.37 E -F0(attrib)2.537 E(ute,)-.2 E F2(name)2.537 E F0(will)2.538 E .492 -(be unset rather than the v)144 487.2 R .492(ariable it references.)-.25 +F0(attrib)2.537 E(ute,)-.2 E F2(name)2.537 E F0(will)2.537 E .492 +(be unset rather than the v)144 535.2 R .492(ariable it references.)-.25 F F15.492 E F0 .492(has no ef)2.992 F .492(fect if the)-.25 F F1 -2.992 E F0 .492(option is supplied.)2.992 F .492(If no)5.492 F .22 -(options are supplied, each)144 499.2 R F2(name)2.72 E F0 .22 -(refers to a v)2.72 F .221(ariable; if there is no v)-.25 F .221 -(ariable by that name, an)-.25 F 2.721(yf)-.15 G(unc-)-2.721 E 1.189 -(tion with that name is unset.)144 511.2 R 1.189(Each unset v)6.189 F -1.189(ariable or function is remo)-.25 F -.15(ve)-.15 G 3.688(df).15 G -1.188(rom the en)-3.688 F(vironment)-.4 E 3.205 -(passed to subsequent commands.)144 523.2 R 3.206(If an)8.206 F 5.706 +2.992 E F0 .492(option is supplied.)2.992 F .493(If no)5.493 F +.221(options are supplied, each)144 547.2 R F2(name)2.721 E F0 .221 +(refers to a v)2.721 F .22(ariable; if there is no v)-.25 F .22 +(ariable by that name, an)-.25 F 2.72(yf)-.15 G(unc-)-2.72 E 1.188 +(tion with that name is unset.)144 559.2 R 1.189(Each unset v)6.189 F +1.189(ariable or function is remo)-.25 F -.15(ve)-.15 G 3.689(df).15 G +1.189(rom the en)-3.689 F(vironment)-.4 E 3.206 +(passed to subsequent commands.)144 571.2 R 3.206(If an)8.206 F 5.706 (yo)-.15 G(f)-5.706 E/F3 9/Times-Bold@0 SF(COMP_W)5.706 E(ORDBREAKS)-.09 -E/F4 9/Times-Roman@0 SF(,)A F3(RANDOM)5.456 E F4(,)A F3(SECONDS)5.456 E -F4(,)A F3(LINENO)144 535.2 Q F4(,)A F3(HISTCMD)4.348 E F4(,)A F3(FUNCN) -4.348 E(AME)-.18 E F4(,)A F3(GR)4.348 E(OUPS)-.27 E F4(,)A F0(or)4.348 E +E/F4 9/Times-Roman@0 SF(,)A F3(RANDOM)5.455 E F4(,)A F3(SECONDS)5.455 E +F4(,)A F3(LINENO)144 583.2 Q F4(,)A F3(HISTCMD)4.347 E F4(,)A F3(FUNCN) +4.347 E(AME)-.18 E F4(,)A F3(GR)4.347 E(OUPS)-.27 E F4(,)A F0(or)4.348 E F3(DIRST)4.598 E -.495(AC)-.81 G(K).495 E F0 2.098(are unset, the)4.348 -F 4.597(yl)-.15 G 2.097(ose their special)-4.597 F(properties, e)144 -547.2 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he)-2.5 E 2.5(ya)-.15 +F 4.598(yl)-.15 G 2.098(ose their special)-4.598 F(properties, e)144 +595.2 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he)-2.5 E 2.5(ya)-.15 G(re subsequently reset.)-2.5 E(The e)5 E(xit status is true unless a) --.15 E F2(name)2.86 E F0(is readonly)2.68 E(.)-.65 E F1(wait)108 564 Q +-.15 E F2(name)2.86 E F0(is readonly)2.68 E(.)-.65 E F1(wait)108 612 Q F0([)2.5 E F1A F0 2.5(][)C F2 2.5(n.)-2.5 G(..)-2.5 E F0(])A -.8 -(Wa)144 576 S .026(it for each speci\214ed child process and return its\ - termination status.).8 F(Each)5.027 E F2(n)2.887 E F0 .027 -(may be a process ID)2.767 F .256 -(or a job speci\214cation; if a job spec is gi)144 588 R -.15(ve)-.25 G +(Wa)144 624 S .027(it for each speci\214ed child process and return its\ + termination status.).8 F(Each)5.026 E F2(n)2.886 E F0 .026 +(may be a process ID)2.766 F .256 +(or a job speci\214cation; if a job spec is gi)144 636 R -.15(ve)-.25 G .256(n, all processes in that job').15 F 2.756(sp)-.55 G .256 (ipeline are w)-2.756 F .256(aited for)-.1 F 5.256(.I)-.55 G(f)-5.256 E -F2(n)3.116 E F0 .317(is not gi)144 600 R -.15(ve)-.25 G .317 +F2(n)3.116 E F0 .318(is not gi)144 648 R -.15(ve)-.25 G .318 (n, all currently acti).15 F .618 -.15(ve c)-.25 H .318 (hild processes are w).15 F .318(aited for)-.1 F 2.818(,a)-.4 G .318 -(nd the return status is zero.)-2.818 F .318(If the)5.318 F F1144 -612 Q F0 .362(option is supplied,)2.862 F F1(wait)2.862 E F0 -.1(wa) -2.862 G .362(its for an).1 F 2.862(yj)-.15 G .362 -(ob to terminate and returns its e)-2.862 F .361(xit status.)-.15 F(If) -5.361 E F2(n)3.221 E F0(speci\214es)3.101 E 2.595(an)144 624 S(on-e) --2.595 E .095(xistent process or job, the return status is 127.)-.15 F -.096(Otherwise, the return status is the e)5.095 F .096(xit status)-.15 -F(of the last process or job w)144 636 Q(aited for)-.1 E(.)-.55 E/F5 -10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 652.8 Q F0(If)108 664.8 Q 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 676.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 688.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<83>108 705.6 Q -(changing directories with)144 705.6 Q F1(cd)2.5 E F0(GNU Bash 4.4)72 -768 Q(2015 No)136.385 E -.15(ve)-.15 G(mber 16).15 E(75)185.545 E 0 Cg -EP +(nd the return status is zero.)-2.818 F .317(If the)5.317 F F1144 +660 Q F0 .361(option is supplied,)2.861 F F1(wait)2.861 E F0 -.1(wa) +2.861 G .361(its for an).1 F 2.862(yj)-.15 G .362 +(ob to terminate and returns its e)-2.862 F .362(xit status.)-.15 F(If) +5.362 E F2(n)3.222 E F0(speci\214es)3.102 E 2.596(an)144 672 S(on-e) +-2.596 E .096(xistent process or job, the return status is 127.)-.15 F +.095(Otherwise, the return status is the e)5.095 F .095(xit status)-.15 +F(of the last process or job w)144 684 Q(aited for)-.1 E(.)-.55 E/F5 +10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 700.8 Q F0(If)108 712.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 724.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 +(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(75)190.95 E 0 Cg EP %%Page: 76 76 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E<83>108 84 Q -(setting or unsetting the v)144 84 Q(alues of)-.25 E/F1 9/Times-Bold@0 -SF(SHELL)2.5 E/F2 9/Times-Roman@0 SF(,)A F1 -.666(PA)2.25 G(TH)-.189 E -F2(,)A F1(ENV)2.25 E F2(,)A F0(or)2.25 E F1 -.27(BA)2.5 G(SH_ENV).27 E -F0<83>108 100.8 Q(specifying command names containing)144 100.8 Q/F3 10 -/Times-Bold@0 SF(/)2.5 E F0<83>108 117.6 Q -(specifying a \214lename containing a)144 117.6 Q F3(/)2.5 E F0 -(as an ar)2.5 E(gument to the)-.18 E F3(.)2.5 E F0 -.2(bu)5 G -(iltin command).2 E<83>108 134.4 Q .45 -(specifying a \214lename containing a slash as an ar)144 134.4 R .449 -(gument to the)-.18 F F32.949 E F0 .449(option to the)2.949 F F3 -(hash)2.949 E F0 -.2(bu)2.949 G .449(iltin com-).2 F(mand)144 146.4 Q -<83>108 163.2 Q(importing function de\214nitions from the shell en)144 -163.2 Q(vironment at startup)-.4 E<83>108 180 Q(parsing the v)144 180 Q -(alue of)-.25 E F1(SHELLOPTS)2.5 E F0(from the shell en)2.25 E -(vironment at startup)-.4 E<83>108 196.8 Q(redirecting output using the\ - >, >|, <>, >&, &>, and >> redirection operators)144 196.8 Q<83>108 -213.6 Q(using the)144 213.6 Q F3(exec)2.5 E F0 -.2(bu)2.5 G -(iltin command to replace the shell with another command).2 E<83>108 -230.4 Q(adding or deleting b)144 230.4 Q(uiltin commands with the)-.2 E -F32.5 E F0(and)2.5 E F32.5 E F0(options to the)2.5 E F3 -(enable)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 247.2 Q -(using the)144 247.2 Q F3(enable)2.5 E F0 -.2(bu)2.5 G -(iltin command to enable disabled shell b).2 E(uiltins)-.2 E<83>108 264 -Q(specifying the)144 264 Q F32.5 E F0(option to the)2.5 E F3 -(command)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 280.8 Q -(turning of)144 280.8 Q 2.5(fr)-.25 G(estricted mode with)-2.5 E F3 -(set +r)2.5 E F0(or)2.5 E F3(set +o r)2.5 E(estricted)-.18 E F0(.)A -(These restrictions are enforced after an)108 297.6 Q 2.5(ys)-.15 G +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(beha)108 84 Q -.15 +(ve)-.2 G 2.5(si).15 G(dentically to)-2.5 E/F1 10/Times-Bold@0 SF(bash) +2.5 E F0(with the e)2.5 E(xception that the follo)-.15 E +(wing are disallo)-.25 E(wed or not performed:)-.25 E<83>108 100.8 Q +(changing directories with)144 100.8 Q F1(cd)2.5 E F0<83>108 117.6 Q +(setting or unsetting the v)144 117.6 Q(alues of)-.25 E/F2 9 +/Times-Bold@0 SF(SHELL)2.5 E/F3 9/Times-Roman@0 SF(,)A F2 -.666(PA)2.25 +G(TH)-.189 E F3(,)A F2(ENV)2.25 E F3(,)A F0(or)2.25 E F2 -.27(BA)2.5 G +(SH_ENV).27 E F0<83>108 134.4 Q(specifying command names containing)144 +134.4 Q F1(/)2.5 E F0<83>108 151.2 Q +(specifying a \214lename containing a)144 151.2 Q F1(/)2.5 E F0 +(as an ar)2.5 E(gument to the)-.18 E F1(.)2.5 E F0 -.2(bu)5 G +(iltin command).2 E<83>108 168 Q .449 +(specifying a \214lename containing a slash as an ar)144 168 R .449 +(gument to the)-.18 F F12.95 E F0 .45(option to the)2.95 F F1 +(hash)2.95 E F0 -.2(bu)2.95 G .45(iltin com-).2 F(mand)144 180 Q<83>108 +196.8 Q(importing function de\214nitions from the shell en)144 196.8 Q +(vironment at startup)-.4 E<83>108 213.6 Q(parsing the v)144 213.6 Q +(alue of)-.25 E F2(SHELLOPTS)2.5 E F0(from the shell en)2.25 E +(vironment at startup)-.4 E<83>108 230.4 Q(redirecting output using the\ + >, >|, <>, >&, &>, and >> redirection operators)144 230.4 Q<83>108 +247.2 Q(using the)144 247.2 Q F1(exec)2.5 E F0 -.2(bu)2.5 G +(iltin command to replace the shell with another command).2 E<83>108 264 +Q(adding or deleting b)144 264 Q(uiltin commands with the)-.2 E F1 +2.5 E F0(and)2.5 E F12.5 E F0(options to the)2.5 E F1(enable)2.5 E +F0 -.2(bu)2.5 G(iltin command).2 E<83>108 280.8 Q(using the)144 280.8 Q +F1(enable)2.5 E F0 -.2(bu)2.5 G +(iltin command to enable disabled shell b).2 E(uiltins)-.2 E<83>108 +297.6 Q(specifying the)144 297.6 Q F12.5 E F0(option to the)2.5 E +F1(command)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 314.4 Q +(turning of)144 314.4 Q 2.5(fr)-.25 G(estricted mode with)-2.5 E F1 +(set +r)2.5 E F0(or)2.5 E F1(set +o r)2.5 E(estricted)-.18 E F0(.)A +(These restrictions are enforced after an)108 331.2 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 314.4 R -.15 -(xe)-.15 G 1.567(cuted \(see).15 F F1 1.567(COMMAND EXECUTION)4.067 F F0 -(abo)3.817 E -.15(ve)-.15 G(\),).15 E F3(rbash)108 326.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/F4 10.95 -/Times-Bold@0 SF(SEE ALSO)72 343.2 Q/F5 10/Times-Italic@0 SF(Bash Refer) -108 355.2 Q(ence Manual)-.37 E F0 2.5(,B)C(rian F)-2.5 E -(ox and Chet Rame)-.15 E(y)-.15 E F5(The Gnu Readline Libr)108 367.2 Q +(When a command that is found to be a shell script is e)108 348 R -.15 +(xe)-.15 G 1.566(cuted \(see).15 F F2 1.566(COMMAND EXECUTION)4.066 F F0 +(abo)3.816 E -.15(ve)-.15 G(\),).15 E F1(rbash)108 360 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/F4 10.95 +/Times-Bold@0 SF(SEE ALSO)72 376.8 Q/F5 10/Times-Italic@0 SF(Bash Refer) +108 388.8 Q(ence Manual)-.37 E F0 2.5(,B)C(rian F)-2.5 E +(ox and Chet Rame)-.15 E(y)-.15 E F5(The Gnu Readline Libr)108 400.8 Q (ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E -F5(The Gnu History Libr)108 379.2 Q(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E -(ox and Chet Rame)-.15 E(y)-.15 E F5 -.8(Po)108 391.2 S(rtable Oper).8 E +F5(The Gnu History Libr)108 412.8 Q(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E +(ox and Chet Rame)-.15 E(y)-.15 E F5 -.8(Po)108 424.8 S(rtable Oper).8 E (ating System Interface \(POSIX\) P)-.15 E(art 2: Shell and Utilities) --.8 E F0 2.5(,I)C(EEE --)-2.5 E(http://pubs.opengroup.or)144 403.2 Q -(g/onlinepubs/9699919799/)-.18 E(http://tiswww)108 415.2 Q +-.8 E F0 2.5(,I)C(EEE --)-2.5 E(http://pubs.opengroup.or)144 436.8 Q +(g/onlinepubs/9699919799/)-.18 E(http://tiswww)108 448.8 Q (.case.edu/~chet/bash/POSIX -- a description of posix mode)-.65 E F5(sh) -108 427.2 Q F0(\(1\),)A F5(ksh)2.5 E F0(\(1\),)A F5(csh)2.5 E F0(\(1\))A -F5(emacs)108 439.2 Q F0(\(1\),)A F5(vi)2.5 E F0(\(1\))A F5 -.37(re)108 -451.2 S(adline).37 E F0(\(3\))A F4(FILES)72 468 Q F5(/bin/bash)109.666 -480 Q F0(The)144 492 Q F3(bash)2.5 E F0 -.15(exe)2.5 G(cutable).15 E F5 -(/etc/pr)109.666 504 Q(o\214le)-.45 E F0 -(The systemwide initialization \214le, e)144 516 Q -.15(xe)-.15 G -(cuted for login shells).15 E F5(~/.bash_pr)109.666 528 Q(o\214le)-.45 E -F0(The personal initialization \214le, e)144 540 Q -.15(xe)-.15 G -(cuted for login shells).15 E F5(~/.bashr)109.666 552 Q(c)-.37 E F0 -(The indi)144 564 Q(vidual per)-.25 E(-interacti)-.2 E -.15(ve)-.25 G -(-shell startup \214le).15 E F5(~/.bash_lo)109.666 576 Q(gout)-.1 E F0 -(The indi)144 588 Q(vidual login shell cleanup \214le, e)-.25 E -.15(xe) --.15 G(cuted when a login shell e).15 E(xits)-.15 E F5(~/.inputr)109.666 -600 Q(c)-.37 E F0(Indi)144 612 Q(vidual)-.25 E F5 -.37(re)2.5 G(adline) -.37 E F0(initialization \214le)2.5 E F4 -.548(AU)72 628.8 S(THORS).548 E -F0(Brian F)108 640.8 Q(ox, Free Softw)-.15 E(are F)-.1 E(oundation)-.15 -E(bfox@gnu.or)108 652.8 Q(g)-.18 E(Chet Rame)108 669.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.rame)108 681.6 Q(y@case.edu)-.15 E F4 -.11(BU)72 -698.4 S 2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .568 -(If you \214nd a b)108 710.4 R .568(ug in)-.2 F F3(bash,)3.068 E F0 .568 -(you should report it.)3.068 F .568(But \214rst, you should mak)5.568 F -3.068(es)-.1 G .568(ure that it really is a b)-3.068 F .567(ug, and)-.2 -F 5.625(that it appears in the latest v)108 722.4 R 5.625(ersion of)-.15 -F F3(bash)8.125 E F0 10.625(.T)C 5.625(he latest v)-10.625 F 5.626 -(ersion is al)-.15 F -.1(wa)-.1 G 5.626(ys a).1 F -.25(va)-.2 G 5.626 -(ilable from).25 F(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15(ve)-.15 -G(mber 16).15 E(76)185.545 E 0 Cg EP +108 460.8 Q F0(\(1\),)A F5(ksh)2.5 E F0(\(1\),)A F5(csh)2.5 E F0(\(1\))A +F5(emacs)108 472.8 Q F0(\(1\),)A F5(vi)2.5 E F0(\(1\))A F5 -.37(re)108 +484.8 S(adline).37 E F0(\(3\))A F4(FILES)72 501.6 Q F5(/bin/bash)109.666 +513.6 Q F0(The)144 525.6 Q F1(bash)2.5 E F0 -.15(exe)2.5 G(cutable).15 E +F5(/etc/pr)109.666 537.6 Q(o\214le)-.45 E F0 +(The systemwide initialization \214le, e)144 549.6 Q -.15(xe)-.15 G +(cuted for login shells).15 E F5(~/.bash_pr)109.666 561.6 Q(o\214le)-.45 +E F0(The personal initialization \214le, e)144 573.6 Q -.15(xe)-.15 G +(cuted for login shells).15 E F5(~/.bashr)109.666 585.6 Q(c)-.37 E F0 +(The indi)144 597.6 Q(vidual per)-.25 E(-interacti)-.2 E -.15(ve)-.25 G +(-shell startup \214le).15 E F5(~/.bash_lo)109.666 609.6 Q(gout)-.1 E F0 +(The indi)144 621.6 Q(vidual login shell cleanup \214le, e)-.25 E -.15 +(xe)-.15 G(cuted when a login shell e).15 E(xits)-.15 E F5(~/.inputr) +109.666 633.6 Q(c)-.37 E F0(Indi)144 645.6 Q(vidual)-.25 E F5 -.37(re) +2.5 G(adline).37 E F0(initialization \214le)2.5 E F4 -.548(AU)72 662.4 S +(THORS).548 E F0(Brian F)108 674.4 Q(ox, Free Softw)-.15 E(are F)-.1 E +(oundation)-.15 E(bfox@gnu.or)108 686.4 Q(g)-.18 E(Chet Rame)108 703.2 Q +1.3 -.65(y, C)-.15 H(ase W).65 E(estern Reserv)-.8 E 2.5(eU)-.15 G(ni) +-2.5 E -.15(ve)-.25 G(rsity).15 E(chet.rame)108 715.2 Q(y@case.edu)-.15 +E(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 E(76)190.95 E 0 Cg EP %%Page: 77 77 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 -/Times-Italic@0 SF(ftp://ftp.gnu.or)108 84 Q(g/pub/gnu/bash/)-.37 E F0 -(.)A .411(Once you ha)108 100.8 R .711 -.15(ve d)-.2 H .411 -(etermined that a b).15 F .411(ug actually e)-.2 F .411(xists, use the) --.15 F F1(bashb)3.18 E(ug)-.2 E F0 .41(command to submit a b)3.13 F .41 -(ug report.)-.2 F(If)5.41 E .594(you ha)108 112.8 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 124.8 Q F1 -.2(bu)2.5 G(g-bash@gnu.or).2 E(g)-.37 E F0 -(or posted to the Usenet ne)2.5 E(wsgroup)-.25 E/F2 10/Times-Bold@0 SF -(gnu.bash.b)2.5 E(ug)-.2 E F0(.)A(ALL b)108 141.6 Q -(ug reports should include:)-.2 E(The v)108 158.4 Q(ersion number of) --.15 E F2(bash)2.5 E F0(The hardw)108 170.4 Q(are and operating system) --.1 E(The compiler used to compile)108 182.4 Q 2.5(Ad)108 194.4 S -(escription of the b)-2.5 E(ug beha)-.2 E(viour)-.2 E 2.5(As)108 206.4 S -(hort script or `recipe' which e)-2.5 E -.15(xe)-.15 G(rcises the b).15 -E(ug)-.2 E F1(bashb)108.27 223.2 Q(ug)-.2 E F0 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10.95 +/Times-Bold@0 SF -.11(BU)72 84 S 2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E +F0 .567(If you \214nd a b)108 96 R .568(ug in)-.2 F/F2 10/Times-Bold@0 +SF(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 +(that it appears in the latest v)108 108 R 5.625(ersion of)-.15 F F2 +(bash)8.125 E F0 10.625(.T)C 5.625(he latest v)-10.625 F 5.625 +(ersion is al)-.15 F -.1(wa)-.1 G 5.625(ys a).1 F -.25(va)-.2 G 5.625 +(ilable from).25 F/F3 10/Times-Italic@0 SF(ftp://ftp.gnu.or)108 120 Q +(g/pub/gnu/bash/)-.37 E F0(.)A .41(Once you ha)108 136.8 R .71 -.15 +(ve d)-.2 H .41(etermined that a b).15 F .41(ug actually e)-.2 F .411 +(xists, use the)-.15 F F3(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 148.8 R .895 -.15(ve a \214)-.2 H .595 +(x, you are encouraged to mail that as well!).15 F .594 +(Suggestions and `philosophical' b)5.595 F .594(ug reports may)-.2 F +(be mailed to)108 160.8 Q F3 -.2(bu)2.5 G(g-bash@gnu.or).2 E(g)-.37 E F0 +(or posted to the Usenet ne)2.5 E(wsgroup)-.25 E F2(gnu.bash.b)2.5 E(ug) +-.2 E F0(.)A(ALL b)108 177.6 Q(ug reports should include:)-.2 E(The v) +108 194.4 Q(ersion number of)-.15 E F2(bash)2.5 E F0(The hardw)108 206.4 +Q(are and operating system)-.1 E(The compiler used to compile)108 218.4 +Q 2.5(Ad)108 230.4 S(escription of the b)-2.5 E(ug beha)-.2 E(viour)-.2 +E 2.5(As)108 242.4 S(hort script or `recipe' which e)-2.5 E -.15(xe)-.15 +G(rcises the b).15 E(ug)-.2 E F3(bashb)108.27 259.2 Q(ug)-.2 E F0 (inserts the \214rst three items automatically into the template it pro) 2.72 E(vides for \214ling a b)-.15 E(ug report.)-.2 E(Comments and b)108 -240 Q(ug reports concerning this manual page should be directed to)-.2 E -F1 -.15(ch)2.5 G(et.r).15 E(ame)-.15 E(y@case)-.3 E(.edu)-.15 E F0(.).25 -E/F3 10.95/Times-Bold@0 SF -.11(BU)72 256.8 S(GS).11 E F0(It')108 268.8 -Q 2.5(st)-.55 G(oo big and too slo)-2.5 E -.65(w.)-.25 G 1.869 -(There are some subtle dif)108 285.6 R 1.869(ferences between)-.25 F F2 +276 Q(ug reports concerning this manual page should be directed to)-.2 E +F3 -.15(ch)2.5 G(et.r).15 E(ame)-.15 E(y@case)-.3 E(.edu)-.15 E F0(.).25 +E F1 -.11(BU)72 292.8 S(GS).11 E F0(It')108 304.8 Q 2.5(st)-.55 G +(oo big and too slo)-2.5 E -.65(w.)-.25 G 1.868 +(There are some subtle dif)108 321.6 R 1.868(ferences between)-.25 F F2 (bash)4.369 E F0 1.869(and traditional v)4.369 F 1.869(ersions of)-.15 F -F2(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 297.6 Q F0(speci\214cation.)2.25 E -(Aliases are confusing in some uses.)108 314.4 Q(Shell b)108 331.2 Q +F2(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 333.6 Q F0(speci\214cation.)2.25 E +(Aliases are confusing in some uses.)108 350.4 Q(Shell b)108 367.2 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 348 R .39 -(process suspension is attempted.)108 360 R .389 -(When a process is stopped, the shell immediately e)5.39 F -.15(xe)-.15 -G .389(cutes the ne).15 F .389(xt com-)-.15 F .192 -(mand in the sequence.)108 372 R .192(It suf)5.192 F .192(\214ces to pl\ -ace the sequence of commands between parentheses to force it into a)-.25 -F(subshell, which may be stopped as a unit.)108 384 Q(Array v)108 400.8 -Q(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E -(There may be only one acti)108 417.6 Q .3 -.15(ve c)-.25 H -(oprocess at a time.).15 E(GNU Bash 4.4)72 768 Q(2015 No)136.385 E -.15 -(ve)-.15 G(mber 16).15 E(77)185.545 E 0 Cg EP +re not handled gracefully when)108 384 R .389 +(process suspension is attempted.)108 396 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 408 R .192(It suf)5.193 F .192(\214ces to place the sequence of com\ +mands between parentheses to force it into a)-.25 F +(subshell, which may be stopped as a unit.)108 420 Q(Array v)108 436.8 Q +(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E +(There may be only one acti)108 453.6 Q .3 -.15(ve c)-.25 H +(oprocess at a time.).15 E(GNU Bash 4.4)72 768 Q(2016 January 25)141.79 +E(77)190.95 E 0 Cg EP %%Trailer end %%EOF diff --git a/doc/bashref.dvi b/doc/bashref.dvi index 04bde15a510d8e9bdb88d2573f7ef0a9e6d79df0..28fb009903f514ad581db567ffbf08fd006a358e 100644 GIT binary patch delta 3031 zcmZXWdt8&(8OQfL?=_bd8wu*Y(yt^q?w<@!KtgiKfwOU<2YVGQ5mF`WBHR)&hE8p+$dCw*9IVY!P zd(3y+V`}>F2`K|(2gbRlw?))uJ?%Pg-H&5z&YC@zGF!>QTBdn+T~Jt*$^vPEn!5<&o|iw%MhQ5?bZSUBv}?rKNe! zIc}TN?shhm6%?#(^e%5($(*u6hqG>vrPQ-4)Lu13?(*87>?3Ri%FJmv);q>s)36t( zY__2l_WNd|XtUA8sCz`YFbm&go22-7%l4 z&_&pdLHQI(ehV$=`7*r%j{v&#FGkddOs>QTEmmgwsl!#s>VWu}XZ84s1dshpMH9X( z!9qXNxf^#G;J<$6&M`b|gbqJ*za77n;cKr^_fcp2sK>Z7`YGE0}u{R?H%5G)@aEX~|`UnIpkPlD3VpN>EPa zjy=p!8MaXfKf$z1c%m02>v^V5i|4(ELo(^S!npPD1C7q!X3j~_=7A(~;XllD5zbS{ z?PRQ4dW0pBb0TZi!QW|;7{HFwV?aD562?A|U@wL1RyJCKFDQ&mWhdz|bvUI@)7b-B zXs2*8i*3}x2@0ELvQ;d+OQLevX?o0=r9cOpNRAY-^9^vALcwA--vDzdNY(60EmrF( zomJRB7~l+rHO=fX8LB8O+s`gF!cq#UZEUy!+lEl8zsTn6p^m6My&_>pqQ@qX#rN56 zI#^7UAJ{FP*;eLogNT#oPD@Zkp&)=;Xn;Zr-FtHbWb7T{rR^1QoCHf~vUeyqOon|F zBF1z5wKzVK(yA%k6Ai2;YTG+y^*pFts`fF<#f8e~vJsW)%s<t3ZbqZ+yQ zG}xFrmN7My(&`L8-3Tj)T3D>d={&V>@$9Y7N2EMvWP;Pgraw{ zgNY?j*ssOF=VY`9j20~hTKQ^}P%mNB7)l|@!e|{P2UFTOLNJ?Q1BKha6_U(wi^AkQ zAxnZh<#;`IQyzo~VdQ4Ha7F_+Xnbplpw+@n3jL}C*??7jDHW|3mTA;Q>YZHVR$-hD zxArHCb_s$BKBTX7<5eM=oIEP1o9g+g>NT!U1het^wS}l=kPZ&Mcp!=d+!gMLcvm3s zNVs6YM~U8yd;_8&BkCwgCQ&{0Oi}bXHS0+_dx(7{_{q<_9x1kH)yqKp*FrbNTa%n1 zuGe8gieHhKCT`SYnucs2E4Fa(ImyZr2OHIU*Y1a!5M@)nm_)ATh(}~N=4T$b#1^A^ zkMPypUoO65QV$-FA?i~#GW^*uUe+wC_W}p$`o8#v5#Jx9Tno^QA)g--yPMT>(FB0cLku!17Dkgn_;1A!6Fl_z3{uEwicQE&CMu1PuxkL-#o?M~JcdstMG=~e zQR*E|9Y-{|U97O3^h2!hNzTQ-`Se60gzE{{ZAA9^wE1 delta 2876 zcmYk8d014}6~H~`zHQ#jn>RBc;DUl06$JzV0Wk@n2`Ujqw9!CS5DcIZad3&$C{f#} zAR_96+K9VBZET$CRTHdBqo@_c)f2~no(R3=>Wb-jCGJ3vR*or|N*aM6`;O(qb$ z`Mv8_h}N2BL9}b}!~H767@uj80P$w%&EU2jmaDLV!R|n~Vui_Wh@)r1;JF3nGZ5Z_ zY6bQ&xReZ_XoV*PKW&r~yHnrsP-=&I7W^?E?#fV3^&XvV@C}nezl9JhTx76nHLSBi zB7?lGFxCzo7(Cerv0ku4gYFnd3r@ijRr@OWsX|gITics4OdUa5~Gy*OvCO(uPu(CZx-NQy~0);Ngo!X zHwgMJa!-|OOP$z9Tv6&i=K)%i#JxcJl@%EZU zeP-i*;A*|<_iFN7Jj&I0)&E&LGZ%-!Hm&2wm`?oGl+d{!qX5Lec`z-RhkgWY^>p2Q z3`F;bLksW_;LOYHJKbM`ePmqt6QeGr$eUp-g9#cYDX@k?^A;SUfG>lIdvLcE)-o7& z1pj8!THfZ3!`FkRp2L5s@H-ZqaRoQ2*s`5^-^0Z!EYVs5xER_5-Ozzvu#&4* z2xE~4{v<|)5C%CR`qReX^^7(RB43*^?h+$yD4DN9l2*}5Vrj}a^1Y%jX*8cOh5XtK z8iNOgq)K_&@7o3Bwt}Cuve2zE;v+*31_P@|t^!U5m$s6J7Vu^uyGXnWgBdJ3O3o>G zV6o$+Nd(FD-D>z&9OqdhiUkP%eR8bFjUXkDr4ymk9bHGx6BH;9_G$A?yw3$ z9_HFU?o%7+2l>@H>rZgqta#iQF)x;Wbe_w%K!it9^%c&hV9P&VsV=nnC(h3do$2Ez z+$Q%|V{}}(hVM)p1^$$x&$-v;j5j~e3T6*e+?@|ovD*O;)!d&41-f{c_VIjz3TYl@ z*+@P}#uQ^>`fA2%*T?fuOwiLK$tRniqr#Y1#-AQ_@?BM&+2)~q7x9^n7fDoabk&Tj zZ+gUQH}dOExZ&T1qLX&=84B(==#g-5Kc8)bejaA|Nxn(N`q!KDr>idVV^zG+Xk_iX z!9M`_fc|`w&$h!9R+-m9=tN7O@c~wRdfG!Z%R-^m7~)h<=_#P!FKNTf7KYiNJA?cTA=ZNFTNqu=73N#Ohe5?GA;f}3r`;4o zAC(B@76@l>c!i)?uNX2Eo^)9~UFC@Oz=N1;0C>1>V)y|L&?VTmhBp@GA?fV)9SV zh2P8g>;|L7l6YJ}vF-)=hBFY%Bi^X>L71t=(=Q^WLV#T3m{WV_EAo^*x z1|fj94G|pDc+Ls##TD{zW8@5-ecF0jzmdR5o%dkfnCzauI(hN(_{X0 zlE3tZ0-t-BgMFl(G6wzPq1Hu7)n<&m;Gyypq|YrFznz*=q@6s>qkGe&Xq$e=+MH4v zjn9@2sW5@+&}xGjOr|c8R@?OvXJo``(l`~~XK-zsRKWwGb9PC^Hr#n#OK5KzPT#7N zIy&^ZYry74$=87mrx*!WBww5UDlkI1_oPmCD0f3LZ6u}{cEq2lPD2#*-ox~{Zl>n~ z20o%qL8jy+{r8c+iB4K`s%)pj3QgD#R(P1X8%))ySX1Yr-o9sAG7%OVhU#T4aWKFm xe5Xvl6{=6e*Ik7=`D_9tzcMz8ZE}Y}Fx0~&#hEwyKpDM}YDN@4#UI^&{|C_m3C{ok diff --git a/doc/bashref.html b/doc/bashref.html index ff10af1d..98333fc9 100644 --- a/doc/bashref.html +++ b/doc/bashref.html @@ -1,13 +1,13 @@