From 6231100eaef70e8ab8dd3cb600e5715d7f2ea7d8 Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Wed, 18 Oct 2017 10:07:06 -0400 Subject: [PATCH] commit bash-20171013 snapshot --- doc/bash.0 | 3075 ++++++++++++++-------------- doc/bash.1 | 2 +- doc/bash.html | 11 +- doc/bash.info | 276 +-- doc/bash.pdf | Bin 338725 -> 339063 bytes doc/bash.ps | 5109 +++++++++++++++++++++++----------------------- doc/bashref.dvi | Bin 756388 -> 756456 bytes doc/bashref.html | 13 +- doc/bashref.info | 276 +-- doc/bashref.log | 71 +- doc/bashref.pdf | Bin 743593 -> 743678 bytes doc/bashref.ps | 29 +- doc/builtins.ps | 2 +- doc/rbash.ps | 2 +- lib/sh/casemod.c | 6 +- 15 files changed, 4454 insertions(+), 4418 deletions(-) diff --git a/doc/bash.0 b/doc/bash.0 index 3542cb61..8a3d8177 100644 --- a/doc/bash.0 +++ b/doc/bash.0 @@ -2595,43 +2595,44 @@ CCOOMMMMAANNDD EEXXEECCUUTTIIOONN 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 - message and returns an exit status of 127. + in a separate execution environment with the original command and the + original command's arguments as its arguments, and the function's exit + status becomes the exit status of that subshell. If that function is + not defined, the shell prints an error message and returns an exit sta- + tus of 127. - If the search is successful, or if the command name contains one or + If the search is successful, or if the command name contains one or more slashes, the shell executes the named program in a separate execu- tion environment. Argument 0 is set to the name given, and the remain- ing arguments to the command are set to the arguments given, if any. - If this execution fails because the file is not in executable format, - and the file is not a directory, it is assumed to be a _s_h_e_l_l _s_c_r_i_p_t, a - 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 @@ -2639,251 +2640,251 @@ 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. - When the shell is waiting for a job or process using the wwaaiitt builtin, - and job control is enabled, wwaaiitt will return when the job changes - state. The --ff option will force wwaaiitt to wait until the job or process + When the shell is waiting for a job or process using the wwaaiitt builtin, + and job control is enabled, wwaaiitt will return when the job changes + state. The --ff option will force wwaaiitt to wait until the job or process terminates before returning. PPRROOMMPPTTIINNGG When executing interactively, bbaasshh displays the primary prompt PPSS11 when - it is ready to read a command, and the secondary prompt PPSS22 when it - needs more input to complete a command. BBaasshh displays PPSS00 after it - reads a command but before executing it. BBaasshh displays PPSS44 as - described above before tracing each command when the --xx option is - enabled. BBaasshh allows these prompt strings to be customized by insert- - ing a number of backslash-escaped special characters that are decoded + it is ready to read a command, and the secondary prompt PPSS22 when it + needs more input to complete a command. BBaasshh displays PPSS00 after it + reads a command but before executing it. BBaasshh displays PPSS44 as + described above before tracing each command when the --xx option is + enabled. BBaasshh allows these prompt strings to be customized by insert- + ing 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) @@ -2893,7 +2894,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 @@ -2902,8 +2903,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 @@ -2912,66 +2913,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 @@ -2979,18 +2980,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. @@ -3002,15 +3003,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 @@ -3018,7 +3019,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 @@ -3029,7 +3030,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 @@ -3039,20 +3040,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 @@ -3062,77 +3063,77 @@ 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. bblliinnkk--mmaattcchhiinngg--ppaarreenn ((OOffff)) If set to OOnn, readline attempts to briefly move the cursor to an opening parenthesis when a closing parenthesis is inserted. ccoolloorreedd--ccoommpplleettiioonn--pprreeffiixx ((OOffff)) - If set to OOnn, when listing completions, readline displays the + If set to OOnn, when listing completions, readline displays the common prefix of the set of possible completions using a differ- - ent color. The color definitions are taken from the value of + ent color. The color definitions are taken from the value of the LLSS__CCOOLLOORRSS environment variable. ccoolloorreedd--ssttaattss ((OOffff)) - If set to OOnn, readline displays possible completions using dif- - ferent colors to indicate their file type. The color defini- - tions are taken from the value of the LLSS__CCOOLLOORRSS environment + If set to OOnn, readline displays possible completions using dif- + ferent colors to indicate their file type. The color defini- + tions are taken from the value of the LLSS__CCOOLLOORRSS environment variable. ccoommmmeenntt--bbeeggiinn ((````##'''')) - The string that is inserted when the readline iinnsseerrtt--ccoommmmeenntt + The string that is inserted when the readline iinnsseerrtt--ccoommmmeenntt command is executed. This command is bound to MM--## in emacs mode and to ## in vi command mode. ccoommpplleettiioonn--ddiissppllaayy--wwiiddtthh ((--11)) - The number of screen columns used to display possible matches - when performing completion. The value is ignored if it is less - than 0 or greater than the terminal screen width. A value of 0 - will cause matches to be displayed one per line. The default + The number of screen columns used to display possible matches + when performing completion. The value is ignored if it is less + than 0 or greater than the terminal screen width. A value of 0 + will cause matches to be displayed one per line. The default value is -1. ccoommpplleettiioonn--iiggnnoorree--ccaassee ((OOffff)) If set to OOnn, readline performs filename matching and completion in a case-insensitive fashion. ccoommpplleettiioonn--mmaapp--ccaassee ((OOffff)) - If set to OOnn, and ccoommpplleettiioonn--iiggnnoorree--ccaassee is enabled, readline - treats hyphens (_-) and underscores (__) as equivalent when per- + If set to OOnn, and ccoommpplleettiioonn--iiggnnoorree--ccaassee is enabled, readline + treats hyphens (_-) and underscores (__) as equivalent when per- forming case-insensitive filename matching and completion. ccoommpplleettiioonn--pprreeffiixx--ddiissppllaayy--lleennggtthh ((00)) - The length in characters of the common prefix of a list of pos- - sible completions that is displayed without modification. When - set to a value greater than zero, common prefixes longer than - this value are replaced with an ellipsis when displaying possi- + The length in characters of the common prefix of a list of pos- + sible completions that is displayed without modification. When + set to a value greater than zero, common prefixes longer than + this value are replaced with an ellipsis when displaying possi- ble completions. ccoommpplleettiioonn--qquueerryy--iitteemmss ((110000)) - This determines when the user is queried about viewing the num- - ber of possible completions generated by the ppoossssiibbllee--ccoommppllee-- - ttiioonnss command. It may be set to any integer value greater than - or equal to zero. If the number of possible completions is + 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 - _m_e_t_a _p_r_e_f_i_x). The default is _O_n, but readline will set it to + prefixing an escape character (in effect, using escape as the + _m_e_t_a _p_r_e_f_i_x). The default is _O_n, but readline will set it to _O_f_f if the locale contains eight-bit characters. ddiissaabbllee--ccoommpplleettiioonn ((OOffff)) If set to OOnn, readline will inhibit word completion. Completion - characters will be inserted into the line as if they had been + characters will be inserted into the line as if they had been mapped to sseellff--iinnsseerrtt. eecchhoo--ccoonnttrrooll--cchhaarraacctteerrss ((OOnn)) - When set to OOnn, on operating systems that indicate they support + When set to OOnn, on operating systems that indicate they support it, readline echoes a character corresponding to a signal gener- ated from the keyboard. eeddiittiinngg--mmooddee ((eemmaaccss)) @@ -3141,191 +3142,191 @@ RREEAADDLLIINNEE vvii. 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. 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 - number of history entries is set to the value of the HHIISSTTSSIIZZEE - shell variable. If an attempt is made to set _h_i_s_t_o_r_y_-_s_i_z_e to a + the number of history entries is not limited. By default, the + number of history entries is set to the value of the HHIISSTTSSIIZZEE + shell variable. If an attempt is made to set _h_i_s_t_o_r_y_-_s_i_z_e to a non-numeric value, the maximum number of history entries will be set to 500. hhoorriizzoonnttaall--ssccrroollll--mmooddee ((OOffff)) - When set to OOnn, makes readline use a single line for display, + When set to OOnn, makes readline use a single line for display, scrolling the input horizontally on a single screen line when it - becomes longer than the screen width rather than wrapping to a + 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 eighth bit from the characters it reads), + If set to OOnn, readline will enable eight-bit input (that is, it + will not strip the eighth 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. The default is _O_f_f, - but readline will set it to _O_n if the locale contains eight-bit + mmeettaa--ffllaagg is a synonym for this variable. The default is _O_f_f, + but readline will set it to _O_n if the locale contains eight-bit characters. iisseeaarrcchh--tteerrmmiinnaattoorrss ((````CC--[[CC--JJ'''')) - The string of characters that should terminate an incremental - search without subsequently executing the character as a com- - mand. If this variable has not been given a value, the charac- + The string of characters that should terminate an incremental + search without subsequently executing the character as a com- + mand. If this variable has not been given a value, the charac- ters _E_S_C and _C_-_J will terminate an incremental search. kkeeyymmaapp ((eemmaaccss)) - Set the current readline keymap. The set of valid keymap names - is _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_c_o_m_- - _m_a_n_d, and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d; _e_m_a_c_s is - equivalent to _e_m_a_c_s_-_s_t_a_n_d_a_r_d. The default value is _e_m_a_c_s; the + Set the current readline keymap. The set of valid keymap names + is _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_c_o_m_- + _m_a_n_d, and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d; _e_m_a_c_s is + equivalent to _e_m_a_c_s_-_s_t_a_n_d_a_r_d. The default value is _e_m_a_c_s; the value of eeddiittiinngg--mmooddee also affects the default keymap. kkeeyysseeqq--ttiimmeeoouutt ((550000)) - Specifies the duration _r_e_a_d_l_i_n_e will wait for a character when - reading an ambiguous key sequence (one that can form a complete + Specifies the duration _r_e_a_d_l_i_n_e will wait for a character when + reading an ambiguous key sequence (one that can form a complete key sequence using the input read so far, or can take additional - input to complete a longer key sequence). If no input is - 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. The default is _O_f_f, but readline will set it to _O_n if the locale contains eight-bit characters. ppaaggee--ccoommpplleettiioonnss ((OOnn)) - If set to OOnn, readline uses an internal _m_o_r_e-like pager to dis- + If set to OOnn, readline uses an internal _m_o_r_e-like pager to dis- play a screenful of possible completions at a time. pprriinntt--ccoommpplleettiioonnss--hhoorriizzoonnttaallllyy ((OOffff)) - If set to OOnn, readline will display completions with matches - sorted horizontally in alphabetical order, rather than down the + If set to OOnn, readline will display completions with matches + sorted horizontally in alphabetical order, rather than down the screen. rreevveerrtt--aallll--aatt--nneewwlliinnee ((OOffff)) - If set to OOnn, readline will undo all changes to history lines + If set to OOnn, readline will undo all changes to history lines before returning when aacccceepptt--lliinnee is executed. By default, his- - tory lines may be modified and retain individual undo lists + tory lines may be modified and retain individual undo lists across calls to rreeaaddlliinnee. sshhooww--aallll--iiff--aammbbiigguuoouuss ((OOffff)) - This alters the default behavior of the completion functions. + This alters the default behavior of the completion functions. If set to OOnn, words which have more than one possible completion - cause the matches to be listed immediately instead of ringing + cause the matches to be listed immediately instead of ringing the bell. sshhooww--aallll--iiff--uunnmmooddiiffiieedd ((OOffff)) - This alters the default behavior of the completion functions in + This alters the default behavior of the completion functions in a fashion similar to sshhooww--aallll--iiff--aammbbiigguuoouuss. If set to OOnn, words - which have more than one possible completion without any possi- - ble partial completion (the possible completions don't share a - common prefix) cause the matches to be listed immediately + 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 @@ -3340,51 +3341,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 @@ -3400,29 +3401,29 @@ RREEAADDLLIINNEE Move forward to the end of the next word. Words are composed of alphanumeric characters (letters and digits). bbaacckkwwaarrdd--wwoorrdd ((MM--bb)) - Move back to the start of the current or previous word. Words + Move back to the start of the current or previous word. Words are composed of alphanumeric characters (letters and digits). sshheellll--ffoorrwwaarrdd--wwoorrdd - Move forward to the end of the next word. Words are delimited + Move forward to the end of the next word. Words are delimited by non-quoted shell metacharacters. sshheellll--bbaacckkwwaarrdd--wwoorrdd - Move back to the start of the current or previous word. Words + Move back to the start of the current or previous word. Words are delimited by non-quoted shell metacharacters. pprreevviioouuss--ssccrreeeenn--lliinnee - Attempt to move point to the same physical screen column on the - previous physical screen line. This will not have the desired - effect if the current Readline line does not take up more than - one physical line or if point is not greater than the length of + Attempt to move point to the same physical screen column on the + previous physical screen line. This will not have the desired + effect if the current Readline line does not take up more than + one physical line or if point is not greater than the length of the prompt plus the screen width. nneexxtt--ssccrreeeenn--lliinnee - Attempt to move point to the same physical screen column on the + Attempt to move point to the same physical screen column on the next physical screen line. This will not have the desired effect - if the current Readline line does not take up more than one - physical line or if the length of the current Readline line is + if the current Readline line does not take up more than one + physical line or if the length of the current Readline line is not greater than the length of the prompt plus the screen width. cclleeaarr--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. @@ -3430,70 +3431,70 @@ 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. hhiissttoorryy--ssuubbssttrriinngg--sseeaarrcchh--bbaacckkwwaarrdd Search backward through the history for the string of characters - between the start of the current line and the current cursor + between the start of the current line and the current cursor position (the _p_o_i_n_t). The search string may match anywhere in a history line. This is a non-incremental search. hhiissttoorryy--ssuubbssttrriinngg--sseeaarrcchh--ffoorrwwaarrdd - Search forward through the history for the string of characters + Search forward through the history for the string of characters between the start of the current line and the point. The search - string may match anywhere in a history line. This is a non- + string may match anywhere in a history line. 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. @@ -3502,80 +3503,80 @@ 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. A - numeric argument, if supplied, specifies the history entry to + Accept the current line for execution and fetch the next line + relative to the current line from the history for editing. A + numeric argument, if supplied, specifies the history entry to use instead of the current line. eeddiitt--aanndd--eexxeeccuuttee--ccoommmmaanndd ((CC--xx CC--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 @@ -3584,31 +3585,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. @@ -3617,65 +3618,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--//)) @@ -3684,67 +3685,67 @@ RREEAADDLLIINNEE List the possible completions of the text before point, treating it as a filename. ccoommpplleettee--uusseerrnnaammee ((MM--~~)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a username. ppoossssiibbllee--uusseerrnnaammee--ccoommpplleettiioonnss ((CC--xx ~~)) List the possible completions of the text before point, treating it as a username. ccoommpplleettee--vvaarriiaabbllee ((MM--$$)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a shell variable. ppoossssiibbllee--vvaarriiaabbllee--ccoommpplleettiioonnss ((CC--xx $$)) List the possible completions of the text before point, treating it as a shell variable. ccoommpplleettee--hhoossttnnaammee ((MM--@@)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a hostname. ppoossssiibbllee--hhoossttnnaammee--ccoommpplleettiioonnss ((CC--xx @@)) List the possible completions of the text before point, treating it as a hostname. ccoommpplleettee--ccoommmmaanndd ((MM--!!)) - Attempt completion on the text before point, treating it as a - command name. Command completion attempts to match the text - against aliases, reserved words, shell functions, shell + Attempt completion on the text before point, treating it as a + command name. Command completion attempts to match the text + against aliases, reserved words, shell functions, shell builtins, and finally executable filenames, in that order. ppoossssiibbllee--ccoommmmaanndd--ccoommpplleettiioonnss ((CC--xx !!)) List the possible completions of the text before point, treating it as a command name. ddyynnaammiicc--ccoommpplleettee--hhiissttoorryy ((MM--TTAABB)) - Attempt completion on the text before point, comparing the text - against lines from the history list for possible completion + Attempt completion on the text before point, comparing the text + against lines from the history list for possible completion matches. ddaabbbbrreevv--eexxppaanndd - Attempt menu completion on the text before point, comparing the + Attempt menu completion on the text before point, comparing the text against lines from the history list for possible completion matches. ccoommpplleettee--iinnttoo--bbrraacceess ((MM--{{)) Perform filename completion and insert the list of possible com- - pletions enclosed within braces so the list is available to the + pletions enclosed within braces so the list is available to the shell (see BBrraaccee EExxppaannssiioonn above). KKeeyybbooaarrdd MMaaccrrooss ssttaarrtt--kkbbdd--mmaaccrroo ((CC--xx (()) - Begin saving the characters typed into the current keyboard + Begin saving the characters typed into the current keyboard macro. eenndd--kkbbdd--mmaaccrroo ((CC--xx )))) Stop saving the characters typed into the current keyboard macro and store the definition. ccaallll--llaasstt--kkbbdd--mmaaccrroo ((CC--xx ee)) - Re-execute the last keyboard macro defined, by making the char- + Re-execute the last keyboard macro defined, by making the char- acters in the macro appear as if typed at the keyboard. pprriinntt--llaasstt--kkbbdd--mmaaccrroo (()) - Print the last keyboard macro defined in a format suitable for + Print the last keyboard macro defined in a format suitable for the _i_n_p_u_t_r_c file. MMiisscceellllaanneeoouuss rree--rreeaadd--iinniitt--ffiillee ((CC--xx CC--rr)) - Read in the contents of the _i_n_p_u_t_r_c file, and incorporate any + Read in the contents of the _i_n_p_u_t_r_c file, and incorporate any bindings or variable assignments found there. aabboorrtt ((CC--gg)) - Abort the current editing command and ring the terminal's bell + Abort the current editing command and ring the terminal's bell (subject to the setting of bbeellll--ssttyyllee). ddoo--lloowweerrccaassee--vveerrssiioonn ((MM--AA,, MM--BB,, MM--_x,, ......)) - If the metafied character _x is uppercase, run the command that + If the metafied character _x is uppercase, run the command that is bound to the corresponding metafied lowercase character. The behavior is undefined if _x is already lowercase. pprreeffiixx--mmeettaa ((EESSCC)) @@ -3752,196 +3753,196 @@ RREEAADDLLIINNEE uunnddoo ((CC--__,, CC--xx CC--uu)) Incremental undo, separately remembered for each line. rreevveerrtt--lliinnee ((MM--rr)) - Undo all changes made to this line. This is like executing the - uunnddoo command enough times to return the line to its initial + Undo all changes made to this line. This is like executing the + uunnddoo command enough times to return the line to its initial state. ttiillddee--eexxppaanndd ((MM--&&)) Perform tilde expansion on the current word. sseett--mmaarrkk ((CC--@@,, MM--<>)) - Set the mark to the point. If a numeric argument is supplied, + Set the mark to the point. If a numeric argument is supplied, the mark is set to that position. eexxcchhaannggee--ppooiinntt--aanndd--mmaarrkk ((CC--xx CC--xx)) - Swap the point with the mark. The current cursor position is - set to the saved position, and the old cursor position is saved + Swap the point with the mark. The current cursor position is + set to the saved position, and the old cursor position is saved as the mark. cchhaarraacctteerr--sseeaarrcchh ((CC--]])) A character is read and point is moved to the next occurrence of - that character. A negative count searches for previous occur- + that character. A negative count searches for previous occur- rences. cchhaarraacctteerr--sseeaarrcchh--bbaacckkwwaarrdd ((MM--CC--]])) - A character is read and point is moved to the previous occur- - rence of that character. A negative count searches for subse- + A character is read and point is moved to the previous occur- + rence of that character. A negative count searches for subse- quent occurrences. sskkiipp--ccssii--sseeqquueennccee - Read enough characters to consume a multi-key sequence such as - those defined for keys like Home and End. Such sequences begin + Read enough characters to consume a multi-key sequence such as + those defined for keys like Home and End. Such sequences begin with a Control Sequence Indicator (CSI), usually ESC-[. If this - sequence is bound to "\[", keys producing such sequences will - have no effect unless explicitly bound to a readline command, - instead of inserting stray characters into the editing buffer. + sequence is bound to "\[", keys producing such sequences will + have no effect unless explicitly bound to a readline command, + instead of inserting stray characters into the editing buffer. This is unbound by default, but usually bound to ESC-[. iinnsseerrtt--ccoommmmeenntt ((MM--##)) - Without a numeric argument, the value of the readline ccoomm-- - mmeenntt--bbeeggiinn variable is inserted at the beginning of the current + Without a numeric argument, the value of the readline ccoomm-- + mmeenntt--bbeeggiinn variable is inserted at the beginning of the current line. If a numeric argument is supplied, this command acts as a - toggle: if the characters at the beginning of the line do not - match the value of ccoommmmeenntt--bbeeggiinn, the value is inserted, other- + toggle: if the characters at the beginning of the line do not + match the value of ccoommmmeenntt--bbeeggiinn, the value is inserted, other- wise the characters in ccoommmmeenntt--bbeeggiinn are deleted from the begin- - ning of the line. In either case, the line is accepted as if a - newline had been typed. The default value of ccoommmmeenntt--bbeeggiinn - causes this command to make the current line a shell comment. - If a numeric argument causes the comment character to be + 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() @@ -3952,162 +3953,162 @@ RREEAADDLLIINNEE HHIISSTTOORRYY - When the --oo hhiissttoorryy option to the sseett builtin is enabled, the shell + When the --oo hhiissttoorryy option to the sseett builtin is enabled, the shell provides access to the _c_o_m_m_a_n_d _h_i_s_t_o_r_y, the list of commands previously - typed. The value of the HHIISSTTSSIIZZEE variable is used as the number of + typed. The value of the HHIISSTTSSIIZZEE variable is used as the number of commands to save in a history list. The text of the last HHIISSTTSSIIZZEE com- - mands (default 500) is saved. The shell stores each command in the - history list prior to parameter and variable expansion (see EEXXPPAANNSSIIOONN - above) but after history expansion is performed, subject to the values + mands (default 500) is saved. The shell stores each command in the + history list prior to parameter and variable expansion (see EEXXPPAANNSSIIOONN + above) but after history expansion is performed, subject to the values of the shell variables HHIISSTTIIGGNNOORREE and HHIISSTTCCOONNTTRROOLL. On startup, the history is initialized from the file named by the vari- - able HHIISSTTFFIILLEE (default _~_/_._b_a_s_h___h_i_s_t_o_r_y). The file named by the value - of HHIISSTTFFIILLEE is truncated, if necessary, to contain no more than the - number of lines specified by the value of HHIISSTTFFIILLEESSIIZZEE. If HHIISSTTFFIILLEE-- - SSIIZZEE is unset, or set to null, a non-numeric value, or a numeric value - less than zero, the history file is not truncated. When the history - file is read, lines beginning with the history comment character fol- + able HHIISSTTFFIILLEE (default _~_/_._b_a_s_h___h_i_s_t_o_r_y). The file named by the value + of HHIISSTTFFIILLEE is truncated, if necessary, to contain no more than the + number of lines specified by the value of HHIISSTTFFIILLEESSIIZZEE. If HHIISSTTFFIILLEE-- + SSIIZZEE is unset, or set to null, a non-numeric value, or a numeric value + less than zero, the history file is not truncated. When the history + file is read, lines beginning with the history comment character fol- lowed immediately by a digit are interpreted as timestamps for the fol- lowing history line. These timestamps are optionally displayed depend- - ing on the value of the HHIISSTTTTIIMMEEFFOORRMMAATT variable. When a shell with - history enabled exits, the last $$HHIISSTTSSIIZZEE lines are copied from the - history list to $$HHIISSTTFFIILLEE. If the hhiissttaappppeenndd shell option is enabled - (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the - lines are appended to the history file, otherwise the history file is + 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, and is performed on each + History expansion is performed immediately after a complete line is + read, before the shell breaks it into words, and is performed on each line individually without taking quoting on previous lines into account. It takes place in two parts. The first is to determine which - line from the history list to use during substitution. The second is - to select portions of that line for inclusion into the current one. - The line selected from the history is the _e_v_e_n_t, and the portions of - that line that are acted upon are _w_o_r_d_s. Various _m_o_d_i_f_i_e_r_s are avail- - able to manipulate the selected words. The line is broken into words - in the same fashion as when reading input, so that several _m_e_t_a_c_h_a_r_a_c_- + line from the history list to use during substitution. The second is + to select portions of that line for inclusion into the current one. + The line selected from the history is the _e_v_e_n_t, and the portions of + that line that are acted upon are _w_o_r_d_s. Various _m_o_d_i_f_i_e_r_s are avail- + able to manipulate the selected words. The line is broken into words + in the same fashion as when reading input, so that several _m_e_t_a_c_h_a_r_a_c_- _t_e_r-separated words surrounded by quotes are considered one word. His- - tory expansions are introduced by the appearance of the history expan- - sion character, which is !! by default. Only backslash (\\) and single - quotes can quote the history expansion character, but the history - expansion character is also treated as quoted if it immediately pre- + tory expansions are introduced by the appearance of the history expan- + sion character, which is !! by default. Only backslash (\\) and single + quotes can quote the history expansion character, but the history + expansion character is also treated as quoted if it immediately pre- cedes 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. @@ -4116,80 +4117,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- + 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] @@ -4198,29 +4199,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 @@ -4232,174 +4233,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 @@ -4407,7 +4408,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 @@ -4416,17 +4417,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. @@ -4435,188 +4436,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 those - using or changing the --nn attribute itself, are performed - on the variable referenced by _n_a_m_e's value. The nameref + --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name + reference to another variable. That other variable is + defined by the value of _n_a_m_e. All references, assign- + ments, and attribute modifications to _n_a_m_e, except those + using or changing the --nn attribute itself, are performed + on the variable referenced by _n_a_m_e's value. The nameref attribute cannot be applied to array variables. --rr Make _n_a_m_es readonly. These names cannot then be assigned values by subsequent assignment statements or unset. - --tt Give each _n_a_m_e the _t_r_a_c_e attribute. Traced functions - 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 @@ -4629,190 +4630,190 @@ 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 - file cannot be executed. A subshell exits unconditionally if - eexxeecc fails. If _c_o_m_m_a_n_d is not specified, any redirections take - effect in the current shell, and the return status is 0. If + not be executed for some reason, a non-interactive shell exits, + unless the eexxeeccffaaiill shell option is enabled. In that case, it + returns failure. An interactive shell returns failure if the + file cannot be executed. A subshell exits unconditionally if + eexxeecc fails. If _c_o_m_m_a_n_d is not specified, any redirections take + effect in the current shell, and the return status is 0. If there is a redirection error, the return status is 1. eexxiitt [_n] - Cause the shell to exit with a status of _n. If _n is omitted, + Cause the shell to exit with a status of _n. If _n is omitted, the exit status is that of the last command executed. A trap on EEXXIITT is executed before the shell terminates. eexxppoorrtt [--ffnn] [_n_a_m_e[=_w_o_r_d]] ... eexxppoorrtt --pp - The supplied _n_a_m_e_s are marked for automatic export to the envi- - ronment of subsequently executed commands. If the --ff option is - given, the _n_a_m_e_s refer to functions. If no _n_a_m_e_s are given, or - if the --pp option is supplied, a list of names of all exported - variables is printed. The --nn option causes the export property + The supplied _n_a_m_e_s are marked for automatic export to the envi- + ronment of subsequently executed commands. If the --ff option is + given, the _n_a_m_e_s refer to functions. If no _n_a_m_e_s are given, or + if the --pp option is supplied, a list of names of all exported + variables is printed. The --nn option causes the export property to be removed from each _n_a_m_e. If a variable name is followed by =_w_o_r_d, the value of the variable is set to _w_o_r_d. eexxppoorrtt returns an exit status of 0 unless an invalid option is encountered, one - of the _n_a_m_e_s is not a valid shell variable name, or --ff is sup- + of the _n_a_m_e_s is not a valid shell variable name, or --ff is sup- plied with a _n_a_m_e that is not a function. ffcc [--ee _e_n_a_m_e] [--llnnrr] [_f_i_r_s_t] [_l_a_s_t] ffcc --ss [_p_a_t=_r_e_p] [_c_m_d] - The first form selects a range of commands from _f_i_r_s_t to _l_a_s_t - from the history list and displays or edits and re-executes - them. _F_i_r_s_t and _l_a_s_t may be specified as a string (to locate - the last command beginning with that string) or as a number (an - index into the history list, where a negative number is used as - an offset from the current command number). 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 interpreted the same as - _f_i_r_s_t above. A useful alias to use with this is ``r="fc -s"'', - so that typing ``r cc'' runs the last command beginning with + In the second form, _c_o_m_m_a_n_d is re-executed after each instance + of _p_a_t is replaced by _r_e_p. _C_o_m_m_a_n_d is interpreted the same as + _f_i_r_s_t above. A useful alias to use with this is ``r="fc -s"'', + so that typing ``r cc'' runs the last command beginning with ``cc'' and typing ``r'' re-executes the last command. - If the first form is used, the return value is 0 unless an - 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 @@ -4829,49 +4830,49 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS hhiissttoorryy --ss _a_r_g [_a_r_g _._._.] With no options, display the command history list with line num- bers. Lines listed with a ** have been modified. An argument of - _n lists only the last _n lines. If the shell variable HHIISSTTTTIIMMEE-- - FFOORRMMAATT is set and not null, it is used as a format string for - _s_t_r_f_t_i_m_e(3) to display the time stamp associated with each dis- - played history entry. No intervening blank is printed between - the formatted time stamp and the history line. If _f_i_l_e_n_a_m_e is - supplied, it is used as the name of the history file; if not, - the value of HHIISSTTFFIILLEE is used. Options, if supplied, have the + _n lists only the last _n lines. If the shell variable HHIISSTTTTIIMMEE-- + FFOORRMMAATT is set and not null, it is used as a format string for + _s_t_r_f_t_i_m_e(3) to display the time stamp associated with each dis- + played history entry. No intervening blank is printed between + the formatted time stamp and the history line. If _f_i_l_e_n_a_m_e is + supplied, it is used as the name of the history file; if not, + the value of HHIISSTTFFIILLEE is used. Options, if supplied, have the following meanings: --cc Clear the history list by deleting all the entries. --dd _o_f_f_s_e_t - Delete the history entry at position _o_f_f_s_e_t. If _o_f_f_s_e_t + Delete the history entry at position _o_f_f_s_e_t. If _o_f_f_s_e_t is negative, it is interpreted as relative to one greater than the last history position, so negative indices count - back from the end of the history, and an index of -1 + back from the end of the history, and an index of -1 refers to the current hhiissttoorryy --dd command. - --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. @@ -4880,210 +4881,210 @@ 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 - input line, rather than newline. If _d_e_l_i_m is the empty + --dd The first character of _d_e_l_i_m is used to terminate each + input line, rather than newline. If _d_e_l_i_m is the empty string, mmaappffiillee will terminate a line when it reads a NUL character. - --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, all lines are + --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, all lines are copied. - --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default + --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default index is 0. --ss Discard the first _c_o_u_n_t lines read. - --tt Remove a trailing _d_e_l_i_m (default newline) from each line + --tt Remove a trailing _d_e_l_i_m (default newline) from each line read. - --uu Read lines from file descriptor _f_d instead of the stan- + --uu Read lines from file descriptor _f_d instead of the stan- dard input. - --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The + --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The --cc option specifies _q_u_a_n_t_u_m. - --cc Specify the number of lines read between each call to + --cc Specify the number of lines read between each call to _c_a_l_l_b_a_c_k. - If --CC is specified without --cc, the default quantum is 5000. + If --CC is specified without --cc, the default quantum is 5000. When _c_a_l_l_b_a_c_k is evaluated, it is supplied the index of the next array element to be assigned and the line to be assigned to that - element as additional arguments. _c_a_l_l_b_a_c_k is evaluated after + element as additional arguments. _c_a_l_l_b_a_c_k is evaluated after the line is read but before the array element is assigned. - If not supplied with an explicit origin, mmaappffiillee will clear + 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, split - into words as described above under WWoorrdd SSpplliittttiinngg, 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, split + into words as described above under WWoorrdd SSpplliittttiinngg, and the first word is assigned to the first _n_a_m_e, the second word to the second _n_a_m_e, and so on. If there are more words than names, the remaining words and their intervening delimiters are assigned to - the last _n_a_m_e. If there are fewer words read from the input - stream than names, the remaining names are assigned empty val- - ues. The characters in IIFFSS are used to split the line into + the last _n_a_m_e. If there are fewer words read from the input + stream than names, the remaining names are assigned empty val- + ues. The characters in IIFFSS are used to split the line into words using the same rules the shell uses for expansion (described above under WWoorrdd SSpplliittttiinngg). The backslash character (\\) may be used to remove any special meaning for the next char- - acter read and for line continuation. Options, if supplied, + acter read and for line continuation. Options, if supplied, have the following meanings: --aa _a_n_a_m_e The words are assigned to sequential indices of the array @@ -5091,31 +5092,31 @@ 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 - input line, rather than newline. If _d_e_l_i_m is the empty - string, rreeaadd will terminate a line when it reads a NUL + The first character of _d_e_l_i_m is used to terminate the + input line, rather than newline. If _d_e_l_i_m is the empty + string, rreeaadd will terminate a line when it reads a NUL character. --ee If the standard input is coming from a terminal, rreeaaddlliinnee - (see RREEAADDLLIINNEE above) is used to obtain the line. Read- - line uses the current (or default, if line editing was - not previously active) editing settings, but uses Read- + (see RREEAADDLLIINNEE above) is used to obtain the line. Read- + line uses the current (or default, if line editing was + not previously active) editing settings, but uses Read- line's default filename completion. --ii _t_e_x_t - If rreeaaddlliinnee is being used to read the line, _t_e_x_t is + If rreeaaddlliinnee is being used to read the line, _t_e_x_t is placed into the editing buffer before editing begins. --nn _n_c_h_a_r_s - rreeaadd returns after reading _n_c_h_a_r_s characters rather than + rreeaadd returns after reading _n_c_h_a_r_s characters rather than waiting for a complete line of input, but honors a delim- - iter if fewer than _n_c_h_a_r_s characters are read before the + iter if fewer than _n_c_h_a_r_s characters are read before the delimiter. --NN _n_c_h_a_r_s - rreeaadd returns after reading exactly _n_c_h_a_r_s characters - rather than waiting for a complete line of input, unless - EOF is encountered or rreeaadd times out. Delimiter charac- - ters encountered in the input are not treated specially - and do not cause rreeaadd to return until _n_c_h_a_r_s characters - are read. The result is not split on the characters in - IIFFSS; the intent is that the variable is assigned exactly + rreeaadd returns after reading exactly _n_c_h_a_r_s characters + rather than waiting for a complete line of input, unless + EOF is encountered or rreeaadd times out. Delimiter charac- + ters encountered in the input are not treated specially + and do not cause rreeaadd to return until _n_c_h_a_r_s characters + are read. The result is not split on the characters in + IIFFSS; the intent is that the variable is assigned exactly the characters read (with the exception of backslash; see the --rr option below). --pp _p_r_o_m_p_t @@ -5123,131 +5124,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: @@ -5255,10 +5256,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 @@ -5272,8 +5273,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. @@ -5288,374 +5289,374 @@ 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 external - (non-builtin) command and, if necessary, updates the + If set, bbaasshh checks the window size after each external + (non-builtin) command and, if necessary, updates the values of LLIINNEESS and CCOOLLUUMMNNSS. - ccmmddhhiisstt If set, bbaasshh attempts to save all lines of a multiple- - line command in the same history entry. This allows - easy re-editing of multi-line commands. This option is - enabled by default, but only has an effect if command + ccmmddhhiisstt If set, bbaasshh attempts to save all lines of a multiple- + line command in the same history entry. This allows + easy re-editing of multi-line commands. This option is + enabled by default, but only has an effect if command history is enabled, as described above under HHIISSTTOORRYY. ccoommppaatt3311 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 - the results of pathname expansion. The filenames ````..'''' - and ````....'''' must always be matched explicitly, even if + ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in + the results of pathname expansion. The filenames ````..'''' + and ````....'''' must always be matched explicitly, even if ddoottgglloobb is set. eexxeeccffaaiill If set, a non-interactive shell will not exit if it can- - not execute the file specified as an argument to the - eexxeecc builtin command. An interactive shell does not + not execute the file specified as an argument to the + eexxeecc builtin command. An interactive shell does not exit if eexxeecc fails. eexxppaanndd__aalliiaasseess - If set, aliases are expanded as described above under + If set, aliases are expanded as described above under AALLIIAASSEESS. This option is enabled by default for interac- tive shells. eexxttddeebbuugg - If set at shell invocation, arrange to execute the - debugger profile before the shell starts, identical to - the ----ddeebbuuggggeerr option. If set after invocation, behav- + If set at shell invocation, arrange to execute the + debugger profile before the shell starts, identical to + the ----ddeebbuuggggeerr option. If set after invocation, behav- ior 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. llooccaallvvaarr__iinnhheerriitt If set, local variables inherit the value and attributes of a variable of the same name that exists at a previous - scope before any new value is assigned. The nameref + scope before any new value is assigned. The nameref attribute is not inherited. 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-- @@ -5663,50 +5664,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. @@ -5723,120 +5724,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: @@ -5845,12 +5846,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) @@ -5859,53 +5860,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- @@ -5913,23 +5914,23 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS wwaaiitt [--ffnn] [_i_d _._._.] Wait for each specified child process and return its termination - status. Each _i_d may be a process ID or a job specification; if - a job spec is given, all processes in that job's pipeline are + status. Each _i_d may be a process ID or a job specification; if + a job spec is given, all processes in that job's pipeline are waited for. If _i_d is not given, 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 the --ff option is supplied, and job + option is supplied, wwaaiitt waits for any job to terminate and + returns its exit status. If the --ff option is supplied, and job control is enabled, wwaaiitt forces _i_d to terminate before returning - its status, instead of returning when it changes status. If _i_d - specifies a non-existent process or job, the return status is - 127. Otherwise, the return status is the exit status of the + its status, instead of returning when it changes status. If _i_d + specifies a non-existent process or job, the return status is + 127. Otherwise, the return status is the 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 @@ -5938,16 +5939,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- @@ -5956,10 +5957,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 @@ -5969,14 +5970,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 @@ -5994,7 +5995,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 @@ -6008,14 +6009,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: @@ -6026,7 +6027,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 @@ -6043,10 +6044,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. @@ -6055,4 +6056,4 @@ BBUUGGSS -GNU Bash 4.4 2017 June 23 BASH(1) +GNU Bash 4.4 2017 October 7 BASH(1) diff --git a/doc/bash.1 b/doc/bash.1 index 650db3a9..92642550 100644 --- a/doc/bash.1 +++ b/doc/bash.1 @@ -3293,7 +3293,7 @@ is an array variable subscripted with .B @ or .BR * , -the case modification operation is applied to each member of the +the operation is applied to each member of the array in turn, and the expansion is the resultant list. .sp 1 The result of the expansion is subject to word splitting and pathname diff --git a/doc/bash.html b/doc/bash.html index b2ac871c..8e8d4865 100644 --- a/doc/bash.html +++ b/doc/bash.html @@ -3,7 +3,7 @@ -
BASH(1)2017 June 23BASH(1) +BASH(1)2017 October 7BASH(1)

Index @@ -5976,9 +5976,10 @@ A full search of the directories in 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 command_not_found_handle. -If that function exists, it is invoked with the original command and +If that function exists, it is invoked in a separate execution environment +with the original command and the original command's arguments as its arguments, and the function's -exit status becomes the exit status of the shell. +exit status becomes the exit status of that subshell. If that function is not defined, the shell prints an error message and returns an exit status of 127.

@@ -13753,7 +13754,7 @@ There may be only one active coprocess at a time.


-
GNU Bash 4.42017 June 23BASH(1) +GNU Bash 4.42017 October 7BASH(1)

@@ -13859,6 +13860,6 @@ There may be only one active coprocess at a time.
This document was created by man2html from bash.1.
-Time: 05 October 2017 14:35:31 EDT +Time: 09 October 2017 15:38:40 EDT diff --git a/doc/bash.info b/doc/bash.info index c4523ffb..1fcaa314 100644 --- a/doc/bash.info +++ b/doc/bash.info @@ -2,9 +2,9 @@ This is bash.info, produced by makeinfo version 6.4 from bashref.texi. This text is a brief description of the features that are present in the -Bash shell (version 4.4, 23 June 2017). +Bash shell (version 4.4, 7 October 2017). - This is Edition 4.4, last updated 23 June 2017, of 'The GNU Bash + This is Edition 4.4, last updated 7 October 2017, of 'The GNU Bash Reference Manual', for 'Bash', Version 4.4. Copyright (C) 1988-2017 Free Software Foundation, Inc. @@ -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, 23 June 2017). The Bash home page is +Bash shell (version 4.4, 7 October 2017). The Bash home page is . - This is Edition 4.4, last updated 23 June 2017, of 'The GNU Bash + This is Edition 4.4, last updated 7 October 2017, of 'The GNU Bash Reference Manual', for 'Bash', Version 4.4. Bash contains features that appear in other popular shells, and some @@ -2551,11 +2551,11 @@ taken. '$PATH' 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 'command_not_found_handle'. 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 message and returns an - exit status of 127. + function exists, it is invoked in a separate execution environment + with the original command and the original command's arguments as + its arguments, and the function's exit status becomes the exit + status of that subshell. If that function is not defined, the + shell prints an error message and returns an exit status of 127. 4. If the search is successful, or if the command name contains one or more slashes, the shell executes the named program in a separate @@ -11504,134 +11504,134 @@ D.5 Concept Index  Tag Table: -Node: Top889 -Node: Introduction2801 -Node: What is Bash?3017 -Node: What is a shell?4131 -Node: Definitions6669 -Node: Basic Shell Features9620 -Node: Shell Syntax10839 -Node: Shell Operation11865 -Node: Quoting13158 -Node: Escape Character14458 -Node: Single Quotes14943 -Node: Double Quotes15291 -Node: ANSI-C Quoting16569 -Node: Locale Translation17828 -Node: Comments18724 -Node: Shell Commands19342 -Node: Simple Commands20214 -Node: Pipelines20845 -Node: Lists23777 -Node: Compound Commands25516 -Node: Looping Constructs26528 -Node: Conditional Constructs29023 -Node: Command Grouping40078 -Node: Coprocesses41557 -Node: GNU Parallel43389 -Node: Shell Functions47363 -Node: Shell Parameters54562 -Node: Positional Parameters58975 -Node: Special Parameters59875 -Node: Shell Expansions63212 -Node: Brace Expansion65335 -Node: Tilde Expansion68169 -Node: Shell Parameter Expansion70517 -Node: Command Substitution84694 -Node: Arithmetic Expansion86049 -Node: Process Substitution86981 -Node: Word Splitting88101 -Node: Filename Expansion90045 -Node: Pattern Matching92419 -Node: Quote Removal96405 -Node: Redirections96700 -Node: Executing Commands106258 -Node: Simple Command Expansion106928 -Node: Command Search and Execution108858 -Node: Command Execution Environment111194 -Node: Environment114178 -Node: Exit Status115837 -Node: Signals117507 -Node: Shell Scripts119474 -Node: Shell Builtin Commands121989 -Node: Bourne Shell Builtins124027 -Node: Bash Builtins144682 -Node: Modifying Shell Behavior173591 -Node: The Set Builtin173936 -Node: The Shopt Builtin184349 -Node: Special Builtins200684 -Node: Shell Variables201663 -Node: Bourne Shell Variables202100 -Node: Bash Variables204204 -Node: Bash Features233997 -Node: Invoking Bash234896 -Node: Bash Startup Files240882 -Node: Interactive Shells245985 -Node: What is an Interactive Shell?246395 -Node: Is this Shell Interactive?247044 -Node: Interactive Shell Behavior247859 -Node: Bash Conditional Expressions251347 -Node: Shell Arithmetic255713 -Node: Aliases258530 -Node: Arrays261078 -Node: The Directory Stack266240 -Node: Directory Stack Builtins267024 -Node: Controlling the Prompt269992 -Node: The Restricted Shell272754 -Node: Bash POSIX Mode274579 -Node: Job Control284930 -Node: Job Control Basics285390 -Node: Job Control Builtins290358 -Node: Job Control Variables295085 -Node: Command Line Editing296241 -Node: Introduction and Notation297912 -Node: Readline Interaction299535 -Node: Readline Bare Essentials300726 -Node: Readline Movement Commands302509 -Node: Readline Killing Commands303469 -Node: Readline Arguments305387 -Node: Searching306431 -Node: Readline Init File308617 -Node: Readline Init File Syntax309764 -Node: Conditional Init Constructs329951 -Node: Sample Init File332476 -Node: Bindable Readline Commands335593 -Node: Commands For Moving336797 -Node: Commands For History338646 -Node: Commands For Text342941 -Node: Commands For Killing346330 -Node: Numeric Arguments348811 -Node: Commands For Completion349950 -Node: Keyboard Macros354141 -Node: Miscellaneous Commands354828 -Node: Readline vi Mode360781 -Node: Programmable Completion361688 -Node: Programmable Completion Builtins369149 -Node: A Programmable Completion Example379035 -Node: Using History Interactively384286 -Node: Bash History Facilities384970 -Node: Bash History Builtins387971 -Node: History Interaction392263 -Node: Event Designators395325 -Node: Word Designators396544 -Node: Modifiers398181 -Node: Installing Bash399583 -Node: Basic Installation400720 -Node: Compilers and Options403411 -Node: Compiling For Multiple Architectures404152 -Node: Installation Names405815 -Node: Specifying the System Type406633 -Node: Sharing Defaults407349 -Node: Operation Controls408022 -Node: Optional Features408980 -Node: Reporting Bugs419506 -Node: Major Differences From The Bourne Shell420700 -Node: GNU Free Documentation License437552 -Node: Indexes462729 -Node: Builtin Index463183 -Node: Reserved Word Index470010 -Node: Variable Index472458 -Node: Function Index488136 -Node: Concept Index501439 +Node: Top893 +Node: Introduction2809 +Node: What is Bash?3025 +Node: What is a shell?4139 +Node: Definitions6677 +Node: Basic Shell Features9628 +Node: Shell Syntax10847 +Node: Shell Operation11873 +Node: Quoting13166 +Node: Escape Character14466 +Node: Single Quotes14951 +Node: Double Quotes15299 +Node: ANSI-C Quoting16577 +Node: Locale Translation17836 +Node: Comments18732 +Node: Shell Commands19350 +Node: Simple Commands20222 +Node: Pipelines20853 +Node: Lists23785 +Node: Compound Commands25524 +Node: Looping Constructs26536 +Node: Conditional Constructs29031 +Node: Command Grouping40086 +Node: Coprocesses41565 +Node: GNU Parallel43397 +Node: Shell Functions47371 +Node: Shell Parameters54570 +Node: Positional Parameters58983 +Node: Special Parameters59883 +Node: Shell Expansions63220 +Node: Brace Expansion65343 +Node: Tilde Expansion68177 +Node: Shell Parameter Expansion70525 +Node: Command Substitution84702 +Node: Arithmetic Expansion86057 +Node: Process Substitution86989 +Node: Word Splitting88109 +Node: Filename Expansion90053 +Node: Pattern Matching92427 +Node: Quote Removal96413 +Node: Redirections96708 +Node: Executing Commands106266 +Node: Simple Command Expansion106936 +Node: Command Search and Execution108866 +Node: Command Execution Environment111242 +Node: Environment114226 +Node: Exit Status115885 +Node: Signals117555 +Node: Shell Scripts119522 +Node: Shell Builtin Commands122037 +Node: Bourne Shell Builtins124075 +Node: Bash Builtins144730 +Node: Modifying Shell Behavior173639 +Node: The Set Builtin173984 +Node: The Shopt Builtin184397 +Node: Special Builtins200732 +Node: Shell Variables201711 +Node: Bourne Shell Variables202148 +Node: Bash Variables204252 +Node: Bash Features234045 +Node: Invoking Bash234944 +Node: Bash Startup Files240930 +Node: Interactive Shells246033 +Node: What is an Interactive Shell?246443 +Node: Is this Shell Interactive?247092 +Node: Interactive Shell Behavior247907 +Node: Bash Conditional Expressions251395 +Node: Shell Arithmetic255761 +Node: Aliases258578 +Node: Arrays261126 +Node: The Directory Stack266288 +Node: Directory Stack Builtins267072 +Node: Controlling the Prompt270040 +Node: The Restricted Shell272802 +Node: Bash POSIX Mode274627 +Node: Job Control284978 +Node: Job Control Basics285438 +Node: Job Control Builtins290406 +Node: Job Control Variables295133 +Node: Command Line Editing296289 +Node: Introduction and Notation297960 +Node: Readline Interaction299583 +Node: Readline Bare Essentials300774 +Node: Readline Movement Commands302557 +Node: Readline Killing Commands303517 +Node: Readline Arguments305435 +Node: Searching306479 +Node: Readline Init File308665 +Node: Readline Init File Syntax309812 +Node: Conditional Init Constructs329999 +Node: Sample Init File332524 +Node: Bindable Readline Commands335641 +Node: Commands For Moving336845 +Node: Commands For History338694 +Node: Commands For Text342989 +Node: Commands For Killing346378 +Node: Numeric Arguments348859 +Node: Commands For Completion349998 +Node: Keyboard Macros354189 +Node: Miscellaneous Commands354876 +Node: Readline vi Mode360829 +Node: Programmable Completion361736 +Node: Programmable Completion Builtins369197 +Node: A Programmable Completion Example379083 +Node: Using History Interactively384334 +Node: Bash History Facilities385018 +Node: Bash History Builtins388019 +Node: History Interaction392311 +Node: Event Designators395373 +Node: Word Designators396592 +Node: Modifiers398229 +Node: Installing Bash399631 +Node: Basic Installation400768 +Node: Compilers and Options403459 +Node: Compiling For Multiple Architectures404200 +Node: Installation Names405863 +Node: Specifying the System Type406681 +Node: Sharing Defaults407397 +Node: Operation Controls408070 +Node: Optional Features409028 +Node: Reporting Bugs419554 +Node: Major Differences From The Bourne Shell420748 +Node: GNU Free Documentation License437600 +Node: Indexes462777 +Node: Builtin Index463231 +Node: Reserved Word Index470058 +Node: Variable Index472506 +Node: Function Index488184 +Node: Concept Index501487  End Tag Table diff --git a/doc/bash.pdf b/doc/bash.pdf index 2e6614ad4c213ec718a78570d3a4af4eae033d6a..042c215cb26111ba22abad9f3e421d3c91ada76d 100644 GIT binary patch delta 279497 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

l@lfMi={{G4(=OeCJ| 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 delta 279360 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.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 730.8 Q .3 -.15(ve ex)-.15 H(pansions are remo).15 E -.15(ve)-.15 G(d.).15 E -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(26)197.335 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(26)192.895 E 0 Cg EP %%Page: 27 27 %%BeginPageSetup BP @@ -3592,8 +3595,8 @@ an 9 should be used with care, as the)108 669.6 R 3.447(ym)-.15 G .947 (to be opened for read-)3.661 F(ing on \214le descriptor)108 722.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(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E -(27)197.335 E 0 Cg EP +(is not speci\214ed.)2.74 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 +E(27)192.895 E 0 Cg EP %%Page: 28 28 %%BeginPageSetup BP @@ -3674,7 +3677,7 @@ F1(n)2.5 E F0(is speci\214ed\) for a command.)2.5 E (The format of here-documents is:)108 681.6 Q([)144 698.4 Q F1(n)A F0(]) A F2(<<)A F0([)A F2A F0(])A F1(wor)A(d)-.37 E(her)164 710.4 Q (e-document)-.37 E(delimiter)144 722.4 Q F0(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(28)197.335 E 0 Cg EP +(2017 October 7)143.735 E(28)192.895 E 0 Cg EP %%Page: 29 29 %%BeginPageSetup BP @@ -3776,7 +3779,7 @@ ses that may be set and unset with the)108 708 R F2(alias)2.893 E F0 F(\(see)108 720 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 -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(29)197.335 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(29)192.895 E 0 Cg EP %%Page: 30 30 %%BeginPageSetup BP @@ -3927,8 +3930,8 @@ E F0 2.724(,a)C(nd)-2.724 E F2(func1)2.724 E F0 .224 F2(func2)2.964 E F0 .464(will resolv)2.964 F 2.964(et)-.15 G 2.963(ot) -2.964 G .463(he local v)-2.963 F(ariable)-.25 E F2(var)2.963 E F0(from) 2.963 E F2(func1)2.963 E F0 2.963(,s)C(hado)-2.963 E .463(wing an)-.25 F -(y)-.15 E(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(30)197.335 E 0 Cg -EP +(y)-.15 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(30)192.895 E 0 +Cg EP %%Page: 31 31 %%BeginPageSetup BP @@ -4030,7 +4033,7 @@ F0(bitwise e)144 633.6 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F2(|) (conditional operator)144 693.6 Q F2 2.5(=*)108 705.6 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 717.6 Q(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(31)197.335 E 0 Cg EP +(2017 October 7)143.735 E(31)192.895 E 0 Cg EP %%Page: 32 32 %%BeginPageSetup BP @@ -4156,7 +4159,7 @@ F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E(fecti)-.25 E (fecti)-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F2108 714 Q F1 (\214le)2.5 E F0 -.35(Tr)144 714 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(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(32)197.335 E 0 Cg EP +(2017 October 7)143.735 E(32)192.895 E 0 Cg EP %%Page: 33 33 %%BeginPageSetup BP @@ -4251,7 +4254,7 @@ F(an)3.664 E 3.664(yw)-.15 G 1.164(ords remain)-3.764 F .776(after e)144 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 -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(33)197.335 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(33)192.895 E 0 Cg EP %%Page: 34 34 %%BeginPageSetup BP @@ -4299,73 +4302,75 @@ F0(under)4.415 E F2 1.915(SHELL B)4.415 F(UIL)-.09 E 1.915(TIN COMMANDS) .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 searc\ hes for a de\214ned shell function named)108 312 R F4(command_not_f) -3.456 E(ound_han-)-.25 E(dle)108 324 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 336 R .775 -(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 348 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 364.8 R -.15 -(xe)-.15 G 1.089(cutes the).15 F .197(named program in a separate e)108 -376.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 388.8 Q +3.456 E(ound_han-)-.25 E(dle)108 324 Q F0 6.006(.I)C 3.506(ft)-6.006 G +1.006(hat function e)-3.506 F 1.006(xists, it is in)-.15 F -.2(vo)-.4 G +-.1(ke).2 G 3.506(di).1 G 3.506(nas)-3.506 G 1.005(eparate e)-3.506 F +-.15(xe)-.15 G 1.005(cution en).15 F 1.005 +(vironment with the original command)-.4 F .255 +(and the original command')108 336 R 2.755(sa)-.55 G -.18(rg)-2.755 G +.255(uments as its ar).18 F .256(guments, and the function')-.18 F 2.756 +(se)-.55 G .256(xit status becomes the e)-2.906 F .256(xit sta-)-.15 F +.263(tus of that subshell.)108 348 R .263(If that function is not de\ +\214ned, the shell prints an error message and returns an e)5.263 F .263 +(xit sta-)-.15 F(tus of 127.)108 360 Q 1.089(If the search is successfu\ +l, or if the command name contains one or more slashes, the shell e)108 +376.8 R -.15(xe)-.15 G 1.09(cutes the).15 F .198 +(named program in a separate e)108 388.8 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 400.8 Q (guments to the command are set to the ar)-.18 E(guments gi)-.18 E -.15 -(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.809(If this e)108 405.6 R +(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.809(If this e)108 417.6 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 417.6 R/F5 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 429.6 R/F5 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 429.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 441.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 441.6 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 453.6 R 1.219 (xception that the locations of commands remembered by the parent \(see) -.15 F F4(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 453.6 S(IL).09 E(TIN COMMANDS)-.828 E F3(\))A -F0(are retained by the child.)2.25 E .348(If the program is a \214le be) -108 470.4 R .348(ginning with)-.15 F F4(#!)2.848 E F0 2.848(,t)C .347(h\ +(SHELL)3.719 E -.09(BU)108 465.6 S(IL).09 E(TIN COMMANDS)-.828 E F3(\))A +F0(are retained by the child.)2.25 E .347(If the program is a \214le be) +108 482.4 R .347(ginning with)-.15 F F4(#!)2.847 E F0 2.847(,t)C .348(h\ e remainder of the \214rst line speci\214es an interpreter for the pro-) --2.848 F 3.178(gram. The)108 482.4 R .678(shell e)3.178 F -.15(xe)-.15 G +-2.847 F 3.178(gram. The)108 494.4 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.193(format themselv) -108 494.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 506.4 R -1.131(wed by the name of the program, follo)-.25 F 1.131(wed by the)-.25 -F(command ar)108 518.4 Q(guments, if an)-.18 E -.65(y.)-.15 G F1 -(COMMAND EXECUTION ENVIR)72 535.2 Q(ONMENT)-.329 E F0(The shell has an) -108 547.2 Q F5 -.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 564 Q -1.406(open \214les inherited by the shell at in)144 564 R -.2(vo)-.4 G -1.405(cation, as modi\214ed by redirections supplied to the).2 F F4 -(exec)3.905 E F0 -.2(bu)144 576 S(iltin).2 E<83>108 592.8 Q -(the current w)144 592.8 Q(orking directory as set by)-.1 E F4(cd)2.5 E + handle this e).15 F -.15(xe)-.15 G(cutable).15 E 1.192(format themselv) +108 506.4 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 518.4 R +1.13(wed by the name of the program, follo)-.25 F 1.13(wed by the)-.25 F +(command ar)108 530.4 Q(guments, if an)-.18 E -.65(y.)-.15 G F1 +(COMMAND EXECUTION ENVIR)72 547.2 Q(ONMENT)-.329 E F0(The shell has an) +108 559.2 Q F5 -.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 576 Q +1.405(open \214les inherited by the shell at in)144 576 R -.2(vo)-.4 G +1.406(cation, as modi\214ed by redirections supplied to the).2 F F4 +(exec)3.906 E F0 -.2(bu)144 588 S(iltin).2 E<83>108 604.8 Q +(the current w)144 604.8 Q(orking directory as set by)-.1 E F4(cd)2.5 E F0(,)A F4(pushd)2.5 E F0 2.5(,o)C(r)-2.5 E F4(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 609.6 Q(the \214le creation mode mask as set by)144 609.6 Q F4 +<83>108 621.6 Q(the \214le creation mode mask as set by)144 621.6 Q F4 (umask)2.5 E F0(or inherited from the shell')2.5 E 2.5(sp)-.55 G(arent) --2.5 E<83>108 626.4 Q(current traps set by)144 626.4 Q F4(trap)2.5 E F0 -<83>108 643.2 Q .256(shell parameters that are set by v)144 643.2 R .256 -(ariable assignment or with)-.25 F F4(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 655.2 Q(vironment)-.4 E<83>108 672 Q -(shell functions de\214ned during e)144 672 Q -.15(xe)-.15 G +-2.5 E<83>108 638.4 Q(current traps set by)144 638.4 Q F4(trap)2.5 E F0 +<83>108 655.2 Q .257(shell parameters that are set by v)144 655.2 R .256 +(ariable assignment or with)-.25 F F4(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 667.2 Q(vironment)-.4 E<83>108 684 Q +(shell functions de\214ned during e)144 684 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 688.8 Q -(options enabled at in)144 688.8 Q -.2(vo)-.4 G(cation \(either by def) +(arent in the en)-2.5 E(vironment)-.4 E<83>108 700.8 Q +(options enabled at in)144 700.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 F4(set) -2.5 E F0<83>108 705.6 Q(options enabled by)144 705.6 Q F4(shopt)2.5 E F0 -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(34)197.335 E 0 Cg EP +2.5 E F0<83>108 717.6 Q(options enabled by)144 717.6 Q F4(shopt)2.5 E F0 +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(34)192.895 E 0 Cg EP %%Page: 35 35 %%BeginPageSetup BP @@ -4376,73 +4381,73 @@ BP F0<83>108 100.8 Q -.25(va)144 100.8 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 9/Times-Bold@0 SF(PPID)2.5 E F0 .427 -(When a simple command other than a b)108 117.6 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 129.6 S .133(cution en).15 F .133 +/F2 9/Times-Bold@0 SF(PPID)2.5 E F0 .426 +(When a simple command other than a b)108 117.6 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 129.6 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 141.6 Q<83>108 158.4 Q 1.056(the shell')144 158.4 R -3.556(so)-.55 G 1.056(pen \214les, plus an)-3.556 F 3.556(ym)-.15 G +.133(otherwise noted, the v)2.634 F .133(alues are inherited from)-.25 F +(the shell.)108 141.6 Q<83>108 158.4 Q 1.055(the shell')144 158.4 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 170.4 Q<83>108 187.2 Q(the current w)144 187.2 Q (orking directory)-.1 E<83>108 204 Q(the \214le creation mode mask)144 -204 Q<83>108 220.8 Q .856(shell v)144 220.8 R .857 +204 Q<83>108 220.8 Q .857(shell v)144 220.8 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 232.8 Q(vironment) --.4 E<83>108 249.6 Q .307(traps caught by the shell are reset to the v) -144 249.6 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 +-.4 E<83>108 249.6 Q .306(traps caught by the shell are reset to the v) +144 249.6 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 261.6 Q 2.5(Ac)108 278.4 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 295.2 R -.2(vo)-.4 G -.1 -(ke).2 G 3.078(di).1 G(n)-3.078 E 2.745(as)108 307.2 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 319.2 R .358 +(ke).2 G 3.077(di).1 G(n)-3.077 E 2.744(as)108 307.2 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 319.2 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 331.2 -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-) +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 331.2 +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 343.2 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 -360 R 1.376(wned to e)-.15 F -.15(xe)-.15 G 1.377 +-.15(xe)-2.65 G(cution en).15 E(vironment.)-.4 E 1.377(Subshells spa)108 +360 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 -F13.877 E F0 1.377(option from the parent)3.877 F 2.5(shell. When) +F13.876 E F0 1.376(option from the parent)3.876 F 2.5(shell. When) 108 372 R(not in)2.5 E/F3 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 F12.5 E F0 -(option in such subshells.)2.5 E .405(If a command is follo)108 388.8 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 -400.8 R F3(/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 +(option in such subshells.)2.5 E .404(If a command is follo)108 388.8 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 +400.8 R F3(/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 412.8 Q/F4 10.95/Times-Bold@0 SF -(ENVIR)72 429.6 Q(ONMENT)-.329 E F0 2.354(When a program is in)108 441.6 +(ENVIR)72 429.6 Q(ONMENT)-.329 E F0 2.353(When a program is in)108 441.6 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 F3(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 F3(name)108 453.6 Q +E F0 7.353(.T).68 G 2.354(his is a list of)-7.353 F F3(name)108 453.6 Q F0A F3(value)A F0(pairs, of the form)2.5 E F3(name)2.5 E F0(=)A F3 -(value)A F0(.).18 E 1.485(The shell pro)108 470.4 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 +(value)A F0(.).18 E 1.486(The shell pro)108 470.4 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 482.4 Q .144(viron\ ment and creates a parameter for each name found, automatically marking\ - it for)-.4 F F3 -.2(ex)2.643 G(port).2 E F0 .143(to child pro-)3.323 F -2.703(cesses. Ex)108 494.4 R .203(ecuted commands inherit the en)-.15 F + it for)-.4 F F3 -.2(ex)2.644 G(port).2 E F0 .144(to child pro-)3.324 F +2.704(cesses. Ex)108 494.4 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 +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 506.4 R -3.653(vironment. If)-.4 F 1.153(the v)3.653 F 1.153 +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 518.4 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.) @@ -4450,216 +4455,216 @@ ment and creates a parameter for each name found, automatically marking\ 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 542.4 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 554.4 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.)2.5 E .563(The en)108 -571.2 R .563(vironment for an)-.4 F(y)-.15 E F3 .563(simple command) -3.403 F F0 .562 +.301(modi\214ed in the shell, less an)108 542.4 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 +554.4 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.)2.5 E .562(The en)108 +571.2 R .562(vironment for an)-.4 F(y)-.15 E F3 .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 583.2 R .502 -.15(ve i) +.203(parameter assignments, as described abo)108 583.2 R .502 -.15(ve i) -.15 H(n).15 E F2 -.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) +(.)A F0 .202(These assignment statements af)4.702 F .202(fect only the) -.25 F(en)108 595.2 Q(vironment seen by that command.)-.4 E .81(If the) 108 612 R F13.31 E F0 .81(option is set \(see the)3.31 F F1(set) 3.31 E F0 -.2(bu)3.31 G .81(iltin command belo).2 F .81(w\), then)-.25 F F3(all)3.64 E F0 .81(parameter assignments are placed in)3.82 F(the en) 108 624 Q (vironment for a command, not just those that precede the command name.) --.4 E(When)108 640.8 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 640.8 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 652.8 Q(vironment.)-.4 E F4 -(EXIT ST)72 669.6 Q -1.04(AT)-.986 G(US)1.04 E F0 .151(The e)108 681.6 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 F3 -(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 693.6 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 705.6 Q 5.507(.E)-.65 G -.507(xit statuses from shell b)-5.507 F .507 +(EXIT ST)72 669.6 Q -1.04(AT)-.986 G(US)1.04 E F0 .15(The e)108 681.6 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 F3(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 693.6 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 705.6 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 +(Under)5.507 E(certain circumstances, the shell will use special v)108 717.6 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(35)197.335 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(35)192.895 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 -.15(Fo)108 84 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 96 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 108 Q/F1 10/Times-Italic@0 SF(N) +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 96 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 108 Q/F1 10/Times-Italic@0 SF(N) 2.5 E F0(,)A/F2 10/Times-Bold@0 SF(bash)2.5 E F0(uses the v)2.5 E -(alue of 128+)-.25 E F1(N)A F0(as the e)2.5 E(xit status.)-.15 E .404 +(alue of 128+)-.25 E F1(N)A F0(as the e)2.5 E(xit status.)-.15 E .405 (If a command is not found, the child process created to e)108 124.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 136.8 Q(ut is not e)-.2 E -.15(xe) +-.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 136.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 153.6 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 170.4 R .081 +-.15 E .08(Shell b)108 170.4 R .08 (uiltin commands return a status of 0 \()-.2 F F1(true)A F0 2.581(\)i)C -2.581(fs)-2.581 G .08(uccessful, and non-zero \()-2.581 F F1(false)A F0 -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 182.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 F1(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 182.4 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 194.4 Q(guments.)-.18 -E F2(Bash)108 211.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 +(va)-.4 G .467(lid options or).25 F(missing ar)108 194.4 Q(guments.)-.18 +E F2(Bash)108 211.2 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(it e)108 223.2 Q(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F2 (exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G/F3 10.95/Times-Bold@0 SF(SIGN)72 240 Q(ALS)-.219 E F0(When)108 252 Q F2 -(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 9/Times-Bold@0 SF(SIGTERM)3.183 E F0 .683 -(\(so that)2.933 F F2 .683(kill 0)3.183 F F0 .683(does not kill an)3.183 -F(interacti)108 264 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 F2 -(wait)2.958 E F0 -.2(bu)2.958 G .457(iltin is interruptible\).).2 F .457 -(In all cases,)5.457 F F2(bash)108 276 Q F0(ignores)2.5 E F4(SIGQ)2.5 E +(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/F4 9/Times-Bold@0 SF(SIGTERM)3.183 E F0 .682 +(\(so that)2.933 F F2 .682(kill 0)3.182 F F0 .682(does not kill an)3.182 +F(interacti)108 264 Q .757 -.15(ve s)-.25 H .457(hell\), and).15 F F4 +(SIGINT)2.957 E F0 .458(is caught and handled \(so that the)2.707 F F2 +(wait)2.958 E F0 -.2(bu)2.958 G .458(iltin is interruptible\).).2 F .458 +(In all cases,)5.458 F F2(bash)108 276 Q F0(ignores)2.5 E F4(SIGQ)2.5 E (UIT)-.09 E/F5 9/Times-Roman@0 SF(.)A F0(If job control is in ef)4.5 E (fect,)-.25 E F2(bash)2.5 E F0(ignores)2.5 E F4(SIGTTIN)2.5 E F5(,)A F4 (SIGTT)2.25 E(OU)-.162 E F5(,)A F0(and)2.25 E F4(SIGTSTP)2.5 E F5(.)A F0 -(Non-b)108 292.8 Q 1.064(uiltin commands run by)-.2 F F2(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 304.8 R .748(job control is not in ef)3.248 F .747 -(fect, asynchronous commands ignore)-.25 F F4(SIGINT)3.247 E F0(and) -2.997 E F4(SIGQ)3.247 E(UIT)-.09 E F0 .747(in addi-)2.997 F .652 +(Non-b)108 292.8 Q 1.065(uiltin commands run by)-.2 F F2(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 304.8 R .747(job control is not in ef)3.247 F .747 +(fect, asynchronous commands ignore)-.25 F F4(SIGINT)3.248 E F0(and) +2.998 E F4(SIGQ)3.248 E(UIT)-.09 E F0 .748(in addi-)2.998 F .653 (tion to these inherited handlers.)108 316.8 R .653 -(Commands run as a result of command substitution ignore the k)5.652 F +(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 328.8 Q F4 (SIGTTIN)2.5 E F5(,)A F4(SIGTT)2.25 E(OU)-.162 E F5(,)A F0(and)2.25 E F4 -(SIGTSTP)2.5 E F5(.)A F0 2.046(The shell e)108 345.6 R 2.046 +(SIGTSTP)2.5 E F5(.)A F0 2.045(The shell e)108 345.6 R 2.045 (xits by def)-.15 F 2.045(ault upon receipt of a)-.1 F F4(SIGHUP)4.545 E -F5(.)A F0 2.045(Before e)6.545 F 2.045(xiting, an interacti)-.15 F 2.345 --.15(ve s)-.25 H 2.045(hell resends the).15 F F4(SIGHUP)108 357.6 Q F0 -1.004(to all jobs, running or stopped.)3.254 F 1.004 -(Stopped jobs are sent)6.004 F F4(SIGCONT)3.505 E F0 1.005 -(to ensure that the)3.255 F 3.505(yr)-.15 G(ecei)-3.505 E 1.305 -.15 -(ve t)-.25 H(he).15 E F4(SIGHUP)108 369.6 Q F5(.)A F0 2.53 -.8(To p)5.43 -H(re).8 E -.15(ve)-.25 G .93(nt the shell from sending the signal to a \ -particular job, it should be remo).15 F -.15(ve)-.15 G 3.429(df).15 G -.929(rom the)-3.429 F 1.356(jobs table with the)108 381.6 R F2(diso) -3.856 E(wn)-.1 E F0 -.2(bu)3.856 G 1.356(iltin \(see).2 F F4 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 F4 +F5(.)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 F4(SIGHUP)108 357.6 Q F0 +1.005(to all jobs, running or stopped.)3.255 F 1.004 +(Stopped jobs are sent)6.005 F F4(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 F4(SIGHUP)108 369.6 Q F5(.)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 381.6 R F2(diso) +3.857 E(wn)-.1 E F0 -.2(bu)3.857 G 1.357(iltin \(see).2 F F4 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 F4 (SIGHUP)108 393.6 Q F0(using)2.25 E F2(diso)2.5 E(wn \255h)-.1 E F0(.)A .166(If the)108 410.4 R F2(huponexit)2.666 E F0 .166 (shell option has been set with)2.666 F F2(shopt)2.666 E F0(,)A F2(bash) 2.666 E F0 .166(sends a)2.666 F F4(SIGHUP)2.666 E F0 .166 (to all jobs when an interacti)2.416 F -.15(ve)-.25 G(login shell e)108 -422.4 Q(xits.)-.15 E(If)108 439.2 Q F2(bash)3.046 E F0 .546(is w)3.046 F +422.4 Q(xits.)-.15 E(If)108 439.2 Q F2(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 451.2 R -.15(xe)-.15 G .663 +-3.046 F .662(will not be e)108 451.2 R -.15(xe)-.15 G .662 (cuted until the command completes.).15 F(When)5.663 E F2(bash)3.163 E -F0 .662(is w)3.163 F .662(aiting for an asynchronous command)-.1 F .99 +F0 .663(is w)3.163 F .663(aiting for an asynchronous command)-.1 F .99 (via the)108 463.2 R F2(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 F2 (wait)3.49 E F0 -.2(bu)3.49 G .99(iltin to).2 F (return immediately with an e)108 475.2 Q (xit status greater than 128, immediately after which the trap is e)-.15 E -.15(xe)-.15 G(cuted.).15 E F3(JOB CONTR)72 492 Q(OL)-.329 E F1 -.25 -(Jo)108 504 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 F1(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 516 Q F1 --.37(re)C(sume).37 E F0 3.201(\)t)C .701(heir e)-3.201 F -.15(xe)-.15 G +(Jo)108 504 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 F1(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 516 Q F1 +-.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) +(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 528 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 -F2(bash)2.5 E F0(.)A .785(The shell associates a)108 544.8 R F1(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 556.8 R F2 -(jobs)2.84 E F0 2.84(command. When)2.84 F F2(bash)2.84 E F0 .341 -(starts a job asynchronously \(in the)2.84 F F1(bac)2.841 E(kgr)-.2 E -(ound)-.45 E F0 .341(\), it prints a line).77 F(that looks lik)108 568.8 +F2(bash)2.5 E F0(.)A .784(The shell associates a)108 544.8 R F1(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 556.8 R F2 +(jobs)2.841 E F0 2.841(command. When)2.841 F F2(bash)2.841 E F0 .341 +(starts a job asynchronously \(in the)2.841 F F1(bac)2.84 E(kgr)-.2 E +(ound)-.45 E F0 .34(\), it prints a line).77 F(that looks lik)108 568.8 Q(e:)-.1 E([1] 25647)144 585.6 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 602.4 R .732(with this job is 25647.)108 614.4 R .733 +ociated)108 602.4 R .733(with this job is 25647.)108 614.4 R .732 (All of the processes in a single pipeline are members of the same job) -5.732 F(.)-.4 E F2(Bash)5.733 E F0(uses)3.233 E(the)108 626.4 Q F1(job) -4.24 E F0(abstraction as the basis for job control.)2.73 E 3.063 -.8 -(To f)108 643.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 655.2 R F1(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 F2(Bash)5.732 E F0(uses)3.232 E(the)108 626.4 Q F1(job) +4.24 E F0(abstraction as the basis for job control.)2.73 E 3.062 -.8 +(To f)108 643.2 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 655.2 R F1(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 667.2 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023 -(board-generated signals such as).15 F F4(SIG-)2.522 E(INT)108 679.2 Q -F5(.)A F0 1.346(These processes are said to be in the)5.846 F F1(for) -3.847 E -.4(eg)-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F1(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 691.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 +(board-generated signals such as).15 F F4(SIG-)2.523 E(INT)108 679.2 Q +F5(.)A F0 1.347(These processes are said to be in the)5.847 F F1(for) +3.846 E -.4(eg)-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F1(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 691.2 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 703.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 715.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 +-2.66 F(-)-.2 E 3.051(minal. Background)108 715.2 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 2.098(terminal are sent a)108 727.2 R F4 2.098(SIGTTIN \(SIGTT)4.598 F (OU\))-.162 E F0 2.098(signal by the k)4.348 F(ernel')-.1 E 4.598(st) -.55 G 2.098(erminal dri)-4.598 F -.15(ve)-.25 G 2.898 -.4(r, w).15 H -2.098(hich, unless caught,).4 F(GNU Bash 4.4)72 768 Q(2017 June 23) -148.175 E(36)197.335 E 0 Cg EP +2.098(hich, unless caught,).4 F(GNU Bash 4.4)72 768 Q(2017 October 7) +143.735 E(36)192.895 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 -(suspends the process.)108 84 Q 1.088(If the operating system on which) -108 100.8 R/F1 10/Times-Bold@0 SF(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 112.8 S -.301(ping the).8 F/F2 10/Times-Italic@0 SF(suspend)3.141 E F0 .301 -(character \(typically)3.571 F F1(^Z)2.801 E F0 2.801(,C)C .301 +(suspends the process.)108 84 Q 1.087(If the operating system on which) +108 100.8 R/F1 10/Times-Bold@0 SF(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 112.8 S +.302(ping the).8 F/F2 10/Times-Italic@0 SF(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 124.8 R F1(bash)4.642 E F0 +F 2.142(stopped and returns control to)108 124.8 R F1(bash)4.642 E F0 7.142(.T)C 2.142(yping the)-7.942 F F2 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\ +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 136.8 R(to)108 148.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 160.8 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 172.8 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 160.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 172.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 184.8 Q .777(There are a number of w)108 201.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 213.6 -Q F2(jobspec)A F0 3.458(\). Job)B(number)3.458 E F2(n)3.818 E F0 .957 +Q F2(jobspec)A F0 3.457(\). Job)B(number)3.457 E F2(n)3.817 E F0 .957 (may be referred to as)3.697 F F1(%n)3.457 E F0 5.957(.A)C .957 (job may also be referred to using a pre\214x of the)-2.5 F .59(name us\ ed to start it, or using a substring that appears in its command line.) 108 225.6 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 237.6 Q F1(ce)3.464 E F0(job)3.464 -E 5.964(.I)-.4 G 3.463(fap)-5.964 G .963 +F0 .59(refers to a)3.09 F(stopped)108 237.6 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.463(,o)C 3.463(nt)-3.463 G .963(he other)-3.463 F .086 +F0 3.464(,o)C 3.464(nt)-3.464 G .964(he other)-3.464 F .087 (hand, refers to an)108 249.6 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 @@ -4668,80 +4673,80 @@ F0 3.463(,o)C 3.463(nt)-3.463 G .963(he other)-3.463 F .086 (he symbols)-5.018 F F1(%%)2.518 E F0(and)2.518 E F1(%+)2.518 E F0 .018 (refer to the shell')2.518 F 2.518(sn)-.55 G .018(otion of the)-2.518 F F2(curr)2.518 E .018(ent job)-.37 F F0 2.518(,w).23 G .018(hich is) --2.518 F .494(the last job stopped while it w)108 273.6 R .495 +-2.518 F .495(the last job stopped while it w)108 273.6 R .495 (as in the fore)-.1 F .495(ground or started in the background.)-.15 F -(The)5.495 E F2(pr)4.245 E -.15(ev)-.37 G .495(ious job).15 F F0 .495 -(may be)3.225 F .788(referenced using)108 285.6 R F1<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 F1 -(%+)3.287 E F0(and)3.287 E F1<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 297.6 R F1 +(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 285.6 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 297.6 R F1 (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 F1(+)2.757 E F0(,)A .411 -(and the pre)108 309.6 R .411(vious job with a)-.25 F F12.911 E F0 -5.411(.A)C .411(single % \(with no accompan)-2.5 F .41 +-.1 G .256(ys \215agged with a).1 F F1(+)2.756 E F0(,)A .41(and the pre) +108 309.6 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 321.6 Q(.)-.4 E .443 +(rent job)108 321.6 Q(.)-.4 E .444 (Simply naming a job can be used to bring it into the fore)108 338.4 R -(ground:)-.15 E F1(%1)2.944 E F0 .444(is a synon)2.944 F .444(ym for) --.15 F F1 -.63(``)2.944 G .444(fg %1').63 F(')-.63 E F0 2.944(,b)C -(ringing)-2.944 E 1.473(job 1 from the background into the fore)108 -350.4 R 3.973(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.972 G 1.472 -(%1 &').63 F(')-.63 E F0 1.472(resumes job 1 in the background,)3.972 F +(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 +350.4 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 362.4 Q -.25(va)-.25 G(lent to).25 E F1 -.63(``)2.5 G(bg %1') -.63 E(')-.63 E F0(.)A .13(The shell learns immediately whene)108 379.2 R --.15(ve)-.25 G 2.63(raj).15 G .13(ob changes state.)-2.63 F(Normally) -5.131 E(,)-.65 E F1(bash)2.631 E F0 -.1(wa)2.631 G .131 -(its until it is about to print a).1 F .158 -(prompt before reporting changes in a job')108 391.2 R 2.658(ss)-.55 G -.158(tatus so as to not interrupt an)-2.658 F 2.657(yo)-.15 G .157 -(ther output.)-2.657 F .157(If the)5.157 F F12.657 E F0 .157 -(option to)2.657 F(the)108 403.2 Q F1(set)2.647 E F0 -.2(bu)2.647 G .147 -(iltin command is enabled,).2 F F1(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 -415.2 Q(xits.)-.15 E .033(If an attempt to e)108 432 R(xit)-.15 E F1 -(bash)2.533 E F0 .033(is made while jobs are stopped \(or)2.533 F 2.532 -(,i)-.4 G 2.532(ft)-2.532 G(he)-2.532 E F1(checkjobs)2.532 E F0 .032 -(shell option has been enabled)2.532 F 2.019(using the)108 444 R F1 -(shopt)4.519 E F0 -.2(bu)4.519 G 2.019 -(iltin, running\), the shell prints a w).2 F 2.02 -(arning message, and, if the)-.1 F F1(checkjobs)4.52 E F0 2.02 -(option is)4.52 F .459(enabled, lists the jobs and their statuses.)108 -456 R(The)5.459 E F1(jobs)2.959 E F0 .458 -(command may then be used to inspect their status.)2.958 F .458(If a) -5.458 F .603(second attempt to e)108 468 R .604 +.63 E(')-.63 E F0(.)A .131(The shell learns immediately whene)108 379.2 +R -.15(ve)-.25 G 2.631(raj).15 G .131(ob changes state.)-2.631 F +(Normally)5.131 E(,)-.65 E F1(bash)2.631 E F0 -.1(wa)2.63 G .13 +(its until it is about to print a).1 F .157 +(prompt before reporting changes in a job')108 391.2 R 2.657(ss)-.55 G +.157(tatus so as to not interrupt an)-2.657 F 2.658(yo)-.15 G .158 +(ther output.)-2.658 F .158(If the)5.158 F F12.658 E F0 .158 +(option to)2.658 F(the)108 403.2 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 +415.2 Q(xits.)-.15 E .032(If an attempt to e)108 432 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 444 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 +456 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 468 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 480 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E .645 -(When the shell is w)108 496.8 R .645 -(aiting for a job or process using the)-.1 F F1(wait)3.144 E F0 -.2(bu) -3.144 G .644(iltin, and job control is enabled,).2 F F1(wait)3.144 E F0 -(will)3.144 E .428(return when the job changes state. The)108 508.8 R F1 +(and an)108 480 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E .644 +(When the shell is w)108 496.8 R .644 +(aiting for a job or process using the)-.1 F F1(wait)3.145 E F0 -.2(bu) +3.145 G .645(iltin, and job control is enabled,).2 F F1(wait)3.145 E F0 +(will)3.145 E .428(return when the job changes state. The)108 508.8 R F1 2.928 E F0 .428(option will force)2.928 F F1(wait)2.928 E F0 .428 (to w)2.928 F .428(ait until the job or process terminates)-.1 F (before returning.)108 520.8 Q/F4 10.95/Times-Bold@0 SF(PR)72 537.6 Q -(OMPTING)-.329 E F0 .645(When e)108 549.6 R -.15(xe)-.15 G .645 -(cuting interacti).15 F -.15(ve)-.25 G(ly).15 E(,)-.65 E F1(bash)3.145 E +(OMPTING)-.329 E F0 .644(When e)108 549.6 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 .427 -(and the secondary prompt)108 561.6 R F3(PS2)2.927 E F0 .427 -(when it needs more input to complete a command.)2.677 F F1(Bash)5.428 E -F0(displays)2.928 E F3(PS0)2.928 E F0(after)2.678 E .038 -(it reads a command b)108 573.6 R .038(ut before e)-.2 F -.15(xe)-.15 G -.038(cuting it.).15 F F1(Bash)5.038 E F0(displays)2.537 E F3(PS4)2.537 E -F0 .037(as described abo)2.287 F .337 -.15(ve b)-.15 H .037 -(efore tracing each com-).15 F 1.121(mand when the)108 585.6 R F1 -3.621 E F0 1.122(option is enabled.)3.621 F F1(Bash)6.122 E F0(allo) +(when it is ready to read a command,)2.895 F .428 +(and the secondary prompt)108 561.6 R F3(PS2)2.928 E F0 .427 +(when it needs more input to complete a command.)2.678 F F1(Bash)5.427 E +F0(displays)2.927 E F3(PS0)2.927 E F0(after)2.677 E .037 +(it reads a command b)108 573.6 R .037(ut before e)-.2 F -.15(xe)-.15 G +.037(cuting it.).15 F F1(Bash)5.037 E F0(displays)2.537 E F3(PS4)2.538 E +F0 .038(as described abo)2.288 F .338 -.15(ve b)-.15 H .038 +(efore tracing each com-).15 F 1.122(mand when the)108 585.6 R F1 +3.622 E F0 1.122(option is enabled.)3.622 F F1(Bash)6.122 E F0(allo) 3.622 E 1.122(ws these prompt strings to be customized by inserting a) -.25 F(number of backslash-escaped special characters that are decoded \ as follo)108 597.6 Q(ws:)-.25 E F1(\\a)144 609.6 Q F0 (an ASCII bell character \(07\))180 609.6 Q F1(\\d)144 621.6 Q F0 (the date in "W)180 621.6 Q(eekday Month Date" format \(e.g., "T)-.8 E (ue May 26"\))-.45 E F1(\\D{)144 633.6 Q F2(format)A F1(})A F0(the)180 -645.6 Q F2(format)3.927 E F0 1.427(is passed to)3.927 F F2(strftime) -3.927 E F0 1.427 +645.6 Q F2(format)3.926 E F0 1.426(is passed to)3.926 F F2(strftime) +3.926 E F0 1.427 (\(3\) and the result is inserted into the prompt string; an)B(empty)180 657.6 Q F2(format)2.5 E F0 (results in a locale-speci\214c time representation.)2.5 E @@ -4751,8 +4756,8 @@ as follo)108 597.6 Q(ws:)-.25 E F1(\\a)144 609.6 Q F0 Q F0(the hostname)180 693.6 Q F1(\\j)144 705.6 Q F0 (the number of jobs currently managed by the shell)180 705.6 Q F1(\\l) 144 717.6 Q F0(the basename of the shell')180 717.6 Q 2.5(st)-.55 G -(erminal de)-2.5 E(vice name)-.25 E(GNU Bash 4.4)72 768 Q(2017 June 23) -148.175 E(37)197.335 E 0 Cg EP +(erminal de)-2.5 E(vice name)-.25 E(GNU Bash 4.4)72 768 Q +(2017 October 7)143.735 E(37)192.895 E 0 Cg EP %%Page: 38 38 %%BeginPageSetup BP @@ -4771,10 +4776,10 @@ SF(\\n)144 84 Q F0(ne)180 84 Q(wline)-.25 E F1(\\r)144 96 Q F0 180 Q F0(the v)180 180 Q(ersion of)-.15 E F1(bash)2.5 E F0 (\(e.g., 2.00\))2.5 E F1(\\V)144 192 Q F0(the release of)180 192 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 204 Q F0 .115(the current w) -180 204 R .115(orking directory)-.1 F 2.615(,w)-.65 G(ith)-2.615 E/F2 9 -/Times-Bold@0 SF($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 F2(PR) +(l\().15 G(e.g., 2.00.0\))-2.5 E F1(\\w)144 204 Q F0 .116(the current w) +180 204 R .116(orking directory)-.1 F 2.616(,w)-.65 G(ith)-2.616 E/F2 9 +/Times-Bold@0 SF($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 F2(PR) 180 216 Q(OMPT_DIR)-.27 E(TRIM)-.36 E F0 -.25(va)2.25 G(riable\)).25 E F1(\\W)144 228 Q F0(the basename of the current w)180 228 Q (orking directory)-.1 E 2.5(,w)-.65 G(ith)-2.5 E F2($HOME)2.5 E F0 @@ -4789,76 +4794,76 @@ F1(\\\\)144 288 Q F0 2.5(ab)180 288 S(ackslash)-2.5 E F1(\\[)144 300 Q F0(be)180 300 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 312 Q F1(\\])144 324 Q F0 -(end a sequence of non-printing characters)180 324 Q .119 +(end a sequence of non-printing characters)180 324 Q .12 (The command number and the history number are usually dif)108 340.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 352.8 R F2(HIST)4.084 E(OR)-.162 E(Y)-.315 E F0 +.119(ferent: the history number of a command is its)-.25 F 1.585(positi\ +on in the history list, which may include commands restored from the hi\ +story \214le \(see)108 352.8 R F2(HIST)4.085 E(OR)-.162 E(Y)-.315 E F0 (belo)108 364.8 Q .541(w\), while the command number is the position in\ - the sequence of commands e)-.25 F -.15(xe)-.15 G .541 + 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 376.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 -.351(tion, arithmetic e)108 388.8 R .352(xpansion, and quote remo)-.15 F +.352(tion, arithmetic e)108 388.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 .352(shell option \(see the)2.852 +(pr)2.852 E(omptv)-.18 E(ars)-.1 E F0 .351(shell option \(see the)2.852 F(description of the)108 400.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/F4 10.95/Times-Bold@0 SF(READLINE)72 417.6 Q F0 .151 +-.25 E/F4 10.95/Times-Bold@0 SF(READLINE)72 417.6 Q F0 .15 (This is the library that handles reading input when using an interacti) -108 429.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 441.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 453.6 Q .851 +108 429.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 441.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 453.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 .851 +3.351(Av)5.851 G .851(i-style line editing interf)-3.351 F .852 (ace is also)-.1 F -.2(av)108 465.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 477.6 Q F2 .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) +(\(see)108 477.6 Q F2 .762(SHELL B)3.262 F(UIL)-.09 E .762(TIN COMMANDS) +-.828 F F0(belo)3.012 E 3.262(w\). T)-.25 F 3.263(ot)-.8 G .763(urn of) -3.263 F 3.263(fl)-.25 G .763 -(ine editing after the shell is running, use the)-3.263 F F1(+o)3.262 E +(ine editing after the shell is running, use the)-3.263 F F1(+o)3.263 E (emacs)108 489.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 506.4 Q F0 .463(In this section, the Emacs-style notation is used to denote k) 108 518.4 R -.15(ey)-.1 G(strok).15 E 2.963(es. Control)-.1 F -.1(ke) 2.963 G .463(ys are denoted by C\255)-.05 F F3 -.1(ke)C(y)-.2 E F0(,)A -1.153(e.g., C\255n means Control\255N.)108 530.4 R(Similarly)6.153 E(,) --.65 E F3(meta)4.033 E F0 -.1(ke)3.913 G 1.153(ys are denoted by M\255) --.05 F F3 -.1(ke)C(y)-.2 E F0 3.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 542.4 S .83 -(yboards without a)-.05 F F3(meta)3.71 E F0 -.1(ke)3.59 G 2.13 -.65 -(y, M)-.05 H.65 E F3(x)A F0 .83(means ESC)3.33 F F3(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 F3(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 554.4 R F3 .6(meta pr)3.1 F -(e\214x)-.37 E F0 5.6(.T)C .6(he combination M\255C\255)-5.6 F F3(x)A F0 -.599(means ESC\255Control\255)3.099 F F3(x)A F0 3.099(,o)C 3.099(rp) --3.099 G .599(ress the Escape k)-3.099 F .899 -.15(ey t)-.1 H .599 +1.152(e.g., C\255n means Control\255N.)108 530.4 R(Similarly)6.152 E(,) +-.65 E F3(meta)4.032 E F0 -.1(ke)3.913 G 1.153(ys are denoted by M\255) +-.05 F F3 -.1(ke)C(y)-.2 E F0 3.653(,s)C 3.653(oM)-3.653 G 1.153 +(\255x means Meta\255X.)-3.653 F(\(On)6.153 E -.1(ke)108 542.4 S .831 +(yboards without a)-.05 F F3(meta)3.711 E F0 -.1(ke)3.591 G 2.131 -.65 +(y, M)-.05 H.65 E F3(x)A F0 .831(means ESC)3.331 F F3(x)3.331 E F0 +3.331(,i)C .83(.e., press the Escape k)-3.331 F 1.13 -.15(ey t)-.1 H .83 +(hen the).15 F F3(x)4.1 E F0 -.1(ke)3.86 G 4.63 -.65(y. T)-.05 H .83 +(his mak).65 F(es)-.1 E .599(ESC the)108 554.4 R F3 .599(meta pr)3.099 F +(e\214x)-.37 E F0 5.599(.T)C .599(he combination M\255C\255)-5.599 F F3 +(x)A F0 .599(means ESC\255Control\255)3.099 F F3(x)A F0 3.099(,o)C 3.099 +(rp)-3.099 G .6(ress the Escape k)-3.099 F .9 -.15(ey t)-.1 H .6 (hen hold).15 F(the Control k)108 566.4 Q .3 -.15(ey w)-.1 H (hile pressing the).15 E F3(x)3.27 E F0 -.1(ke)3.03 G -.65(y.)-.05 G(\)) -.65 E .619(Readline commands may be gi)108 583.2 R -.15(ve)-.25 G 3.119 +.65 E .62(Readline commands may be gi)108 583.2 R -.15(ve)-.25 G 3.119 (nn).15 G(umeric)-3.119 E F3(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 595.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 +.619(hich normally act as a repeat count.)-3.119 F(Sometimes,)5.619 E +(ho)108 595.2 Q(we)-.25 E -.15(ve)-.25 G 1.418 -.4(r, i).15 H 3.118(ti) +.4 G 3.119(st)-3.118 G .619(he sign of the ar)-3.119 F .619 (gument that is signi\214cant.)-.18 F -.15(Pa)5.619 G .619(ssing a ne) .15 F -.05(ga)-.15 G(ti).05 E .919 -.15(ve a)-.25 H -.18(rg).15 G .619 -(ument to a command that).18 F 1.018(acts in the forw)108 607.2 R 1.018 +(ument to a command that).18 F 1.019(acts in the forw)108 607.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.019 -(ard direction.)-.1 F(Com-)6.019 E(mands whose beha)108 619.2 Q +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 619.2 Q (vior with ar)-.2 E(guments de)-.18 E(viates from this are noted belo) --.25 E -.65(w.)-.25 G .812(When a command is described as)108 636 R F3 +-.25 E -.65(w.)-.25 G .811(When a command is described as)108 636 R F3 (killing)3.311 E F0(te)3.311 E .811(xt, the te)-.15 F .811 -(xt deleted is sa)-.15 F -.15(ve)-.2 G 3.311(df).15 G .811 -(or possible future retrie)-3.311 F -.25(va)-.25 G 3.311(l\().25 G F3 -(yank-)-3.311 E(ing)108 648 Q F0 2.529(\). The)B .029(killed te)2.529 F +(xt deleted is sa)-.15 F -.15(ve)-.2 G 3.311(df).15 G .812 +(or possible future retrie)-3.311 F -.25(va)-.25 G 3.312(l\().25 G F3 +(yank-)-3.312 E(ing)108 648 Q F0 2.529(\). The)B .029(killed te)2.529 F .029(xt is sa)-.15 F -.15(ve)-.2 G 2.529(di).15 G 2.529(na)-2.529 G F3 .029(kill ring)B F0 5.029(.C)C(onsecuti)-5.029 E .329 -.15(ve k)-.25 H .029(ills cause the te).15 F .029(xt to be accumulated into one unit,) @@ -4867,30 +4872,30 @@ F0 .463(In this section, the Emacs-style notation is used to denote k) (xt separate the chunks of te)-.15 F .567(xt on the kill)-.15 F(ring.) 108 672 Q F1(Readline Initialization)87 688.8 Q F0 .091(Readline is cus\ tomized by putting commands in an initialization \214le \(the)108 700.8 -R F3(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 712.8 R .196(en from the v) +R F3(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 F .091 +(name of this \214le)2.591 F .196(is tak)108 712.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 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 F3(~/.inputr)2.696 -E(c)-.37 E F0 5.196(.W).31 G .196(hen a)-5.196 F 1.034(program which us\ +E(c)-.37 E F0 5.196(.W).31 G .197(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 724.8 R 1.335 -.15(ey b)-.1 H 1.035(indings and).15 F -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(38)197.335 E 0 Cg EP +nd the k)108 724.8 R 1.334 -.15(ey b)-.1 H 1.034(indings and).15 F +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(38)192.895 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 -.25(va)108 84 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 +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 96 R .737(Lines be)5.737 F .737(ginning with a) -.15 F/F1 10/Times-Bold@0 SF(#)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 .737 -(indicate conditional)3.237 F 2.5(constructs. Other)108 108 R +.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 108 R (lines denote k)2.5 E .3 -.15(ey b)-.1 H(indings and v).15 E -(ariable settings.)-.25 E .987(The def)108 124.8 R .987(ault k)-.1 F +(ariable settings.)-.25 E .986(The def)108 124.8 R .986(ault k)-.1 F -.15(ey)-.1 G .987(-bindings may be changed with an).15 F/F2 10 /Times-Italic@0 SF(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 136.8 @@ -4900,11 +4905,11 @@ G(rsal\255ar).15 E(gument)-.18 E(or)108 182.4 Q(C\255Meta\255u: uni)144 194.4 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 206.4 Q F2(inputr)2.51 E(c)-.37 E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G (\255C\255u e)-2.5 E -.15(xe)-.15 G(cute the readline command).15 E F2 -(univer)2.5 E(sal\255ar)-.1 E(gument)-.37 E F0(.).68 E 1.26(The follo) +(univer)2.5 E(sal\255ar)-.1 E(gument)-.37 E F0(.).68 E 1.261(The follo) 108 223.2 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 235.2 Q F0(,)1.1 E F2 +(ESC)3.761 E F0(,).72 E F2(LFD)3.761 E F0(,).28 E F2(NEWLINE)3.76 E F0 +(,).73 E F2(RET)3.76 E F0(,)1.27 E F2(RETURN)108 235.2 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 252 R .209(ws k)-.25 F @@ -4915,46 +4920,46 @@ F2 -.4(RU)3.761 G(BOUT).4 E F0(,)1.27 E F2(DEL)3.761 E F0(,).53 E F2 (The syntax for controlling k)108 292.8 R .666 -.15(ey b)-.1 H .366 (indings in the).15 F F2(inputr)2.876 E(c)-.37 E F0 .366 (\214le is simple.)3.176 F .366(All that is required is the name of the) -5.366 F .264(command or the te)108 304.8 R .264(xt of a macro and a k) +5.366 F .263(command or the te)108 304.8 R .264(xt of a macro and a k) -.15 F .564 -.15(ey s)-.1 H .264(equence to which it should be bound.) -.15 F .263(The name may be speci-)5.264 F .853(\214ed in one of tw)108 +.15 F .264(The name may be speci-)5.264 F .853(\214ed in one of tw)108 316.8 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 328.8 Q .161 -(When using the form)108 345.6 R F1 -.1(ke)2.661 G(yname).1 E F0(:)A F2 -(function\255name).833 E F0(or)2.661 E F2(macr)2.661 E(o)-.45 E F0(,)A -F2 -.1(ke)2.661 G(yname)-.2 E F0 .16(is the name of a k)2.84 F .46 -.15 -(ey s)-.1 H .16(pelled out in Eng-).15 F 2.5(lish. F)108 357.6 R(or e) +(es, or as a k)-.15 F -.15(ey)-.1 G(sequence.)108 328.8 Q .16 +(When using the form)108 345.6 R F1 -.1(ke)2.66 G(yname).1 E F0(:)A F2 +(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 357.6 R(or e) -.15 E(xample:)-.15 E(Control-u: uni)144 381.6 Q -.15(ve)-.25 G (rsal\255ar).15 E(gument)-.18 E(Meta-Rubout: backw)144 393.6 Q -(ard-kill-w)-.1 E(ord)-.1 E(Control-o: "> output")144 405.6 Q .698 +(ard-kill-w)-.1 E(ord)-.1 E(Control-o: "> output")144 405.6 Q .699 (In the abo)108 422.4 R .998 -.15(ve ex)-.15 H(ample,).15 E F2(C\255u) 3.038 E F0 .698(is bound to the function)3.448 F F1(uni)3.198 E -.1(ve) -.1 G(rsal\255ar).1 E(gument)-.1 E F0(,)A F2(M\255DEL)3.878 E F0 .698 (is bound to the func-)3.728 F(tion)108 434.4 Q F1 -(backward\255kill\255w)2.759 E(ord)-.1 E F0 2.759(,a)C(nd)-2.759 E F2 -(C\255o)2.599 E F0 .258(is bound to run the macro e)2.939 F .258 +(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 (xpressed on the right hand side \(that is, to)-.15 F(insert the te)108 446.4 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 463.2 R F1("k)2.555 -E(eyseq")-.1 E F0(:)A F2(function\255name).833 E F0(or)2.555 E F2(macr) -2.555 E(o)-.45 E F0(,)A F1 -.1(ke)2.555 G(yseq).1 E F0(dif)2.556 E .056 -(fers from)-.25 F F1 -.1(ke)2.556 G(yname).1 E F0(abo)2.556 E .356 -.15 -(ve i)-.15 H 2.556(nt).15 G .056(hat strings)-2.556 F 1.284 +(into the line\).)2.5 E .056(In the second form,)108 463.2 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 475.2 R 1.584 -.15(ey s)-.1 H 1.284(equence m\ ay be speci\214ed by placing the sequence within double quotes.).15 F -(Some)6.284 E .385(GNU Emacs style k)108 487.2 R .685 -.15(ey e)-.1 H -.385(scapes can be used, as in the follo).15 F .385(wing e)-.25 F .386 -(xample, b)-.15 F .386(ut the symbolic character names)-.2 F +(Some)6.284 E .386(GNU Emacs style k)108 487.2 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 499.2 Q("\\C\255u": uni)144 523.2 Q -.15(ve) -.25 G(rsal\255ar).15 E(gument)-.18 E ("\\C\255x\\C\255r": re\255read\255init\255\214le)144 535.2 Q -("\\e[11~": "Function K)144 547.2 Q .3 -.15(ey 1)-.25 H(").15 E .315 -(In this e)108 564 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 +("\\e[11~": "Function K)144 547.2 Q .3 -.15(ey 1)-.25 H(").15 E .314 +(In this e)108 564 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 G(rsal\255ar).1 E(gument)-.1 E F0(.)A F2 .315(C\255x C\255r)5.155 F F0 -.314(is bound to the func-)3.544 F(tion)108 576 Q F1 -.18(re)2.5 G +.315(is bound to the func-)3.545 F(tion)108 576 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 @@ -4966,7 +4971,7 @@ F0(literal \010)180 664.8 Q(In addition to the GNU Emacs style escape s\ equences, a second set of backslash escapes is a)108 681.6 Q -.25(va)-.2 G(ilable:).25 E F1(\\a)144 693.6 Q F0(alert \(bell\))180 693.6 Q F1(\\b) 144 705.6 Q F0(backspace)180 705.6 Q F1(\\d)144 717.6 Q F0(delete)180 -717.6 Q(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(39)197.335 E 0 Cg +717.6 Q(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(39)192.895 E 0 Cg EP %%Page: 40 40 %%BeginPageSetup @@ -4982,51 +4987,50 @@ SF(\\f)144 84 Q F0(form feed)180 84 Q F1(\\n)144 96 Q F0(ne)180 96 Q (alue)-.25 E F2(nnn)2.5 E F0(\(one to three digits\))2.5 E F1(\\x)144 156 Q F2(HH)A F0(the eight-bit character whose v)180 156 Q (alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0 -(\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E 1.141 +(\(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 172.8 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 184.8 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 + quotes must be used to indicate a macro de\214nition.)-.15 F .089 +(Unquoted te)108 184.8 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 196.8 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 213.6 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 225.6 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 +F1(Bash)108 213.6 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 225.6 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 237.6 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E (UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F1 -(Readline V)87 254.4 Q(ariables)-.92 E F0 .043(Readline has v)108 266.4 +(Readline V)87 254.4 Q(ariables)-.92 E F0 .044(Readline has v)108 266.4 R .043(ariables that can be used to further customize its beha)-.25 F (vior)-.2 E 5.043(.A)-.55 G -.25(va)-2.5 G .043 -(riable may be set in the).25 F F2(inpu-)2.554 E(tr)108 278.4 Q(c)-.37 E +(riable may be set in the).25 F F2(inpu-)2.553 E(tr)108 278.4 Q(c)-.37 E F0(\214le with a statement of the form)2.81 E F1(set)144 295.2 Q F2 (variable\255name value)2.5 E F0 .79(Except where noted, readline v)108 312 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) +F -.05(ga)-.15 G .79(rd to case\).).05 F(Unrecog-)5.79 E .449(nized v) 108 324 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 336 Q -.15(ve)-.25 G .468 +.448(ariable v)-.25 F .448(alue is read, empty or null v)-.25 F .448 +(alues, "on" \(case-insensi-)-.25 F(ti)108 336 Q -.15(ve)-.25 G .467 (\), 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 -348 S(lues are:).25 E F1(bell\255style \(audible\))108 364.8 Q F0 .01 +F -.25(va)-.25 G .468(lent to).25 F F1(Off)2.968 E F0 5.468(.T)C .468 +(he v)-5.468 F .468(ariables and their def)-.25 F(ault)-.1 E -.25(va)108 +348 S(lues are:).25 E F1(bell\255style \(audible\))108 364.8 Q F0 .011 (Controls what happens when readline w)144 376.8 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 388.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 400.8 Q 2.5(sb)-.55 G -(ell.)-2.5 E F1(bind\255tty\255special\255chars \(On\))108 412.8 Q F0 -.055(If set to)144 424.8 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 436.8 Q -.15 +(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 388.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 400.8 Q 2.5(sb)-.55 G(ell.) +-2.5 E F1(bind\255tty\255special\255chars \(On\))108 412.8 Q F0 .056 +(If set to)144 424.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 436.8 Q -.15 (ve)-.25 G 2.5(rt).15 G 2.5(ot)-2.5 G(heir readline equi)-2.5 E -.25(va) -.25 G(lents.).25 E F1(blink\255matching\255par)108 448.8 Q(en \(Off\)) -.18 E F0 .21(If set to)144 460.8 R F1(On)2.71 E F0 2.71(,r)C .21 @@ -5036,38 +5040,38 @@ empts to bind the control characters treated specially by the k)-2.555 F (ed\255completion\255pr)-.18 E(e\214x \(Off\))-.18 E F0 .515(If set to) 144 496.8 R F1(On)3.015 E F0 3.015(,w)C .515(hen listing completions, r\ eadline displays the common pre\214x of the set of possible)-3.015 F -2.936(completions using a dif)144 508.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 520.8 Q +2.935(completions using a dif)144 508.8 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 520.8 Q F0(en)2.5 E(vironment v)-.4 E(ariable.)-.25 E F1(color)108 532.8 Q -(ed\255stats \(Off\))-.18 E F0 1.579(If set to)144 544.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 556.8 R(color de\214nitions are tak)2.5 E(en from the v) --.1 E(alue of the)-.25 E F1(LS_COLORS)2.5 E F0(en)2.5 E(vironment v)-.4 -E(ariable.)-.25 E F1(comment\255begin \(`)108 568.8 Q(`#')-.63 E('\)) --.63 E F0 .885(The string that is inserted when the readline)144 580.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 592.8 Q F1 +(ed\255stats \(Off\))-.18 E F0 1.58(If set to)144 544.8 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 +556.8 R(color de\214nitions are tak)2.5 E(en from the v)-.1 E +(alue of the)-.25 E F1(LS_COLORS)2.5 E F0(en)2.5 E(vironment v)-.4 E +(ariable.)-.25 E F1(comment\255begin \(`)108 568.8 Q(`#')-.63 E('\))-.63 +E F0 .884(The string that is inserted when the readline)144 580.8 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 592.8 Q F1 (M\255#)2.5 E F0(in emacs mode and to)2.5 E F1(#)2.5 E F0 (in vi command mode.)2.5 E F1(completion\255display\255width \(-1\))108 604.8 Q F0 1.453(The number of screen columns used to display possible \ -matches when performing completion.)144 616.8 R .194(The v)144 628.8 R +matches when performing completion.)144 616.8 R .193(The v)144 628.8 R .193(alue is ignored if it is less than 0 or greater than the terminal \ -screen width.)-.25 F 2.693(Av)5.193 G .193(alue of 0 will)-2.943 F +screen width.)-.25 F 2.694(Av)5.194 G .194(alue of 0 will)-2.944 F (cause matches to be displayed one per line.)144 640.8 Q(The def)5 E (ault v)-.1 E(alue is -1.)-.25 E F1(completion\255ignor)108 652.8 Q (e\255case \(Off\))-.18 E F0(If set to)144 664.8 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\255map\255case \(Off\))108 676.8 Q F0 .093(If set to)144 +(completion\255map\255case \(Off\))108 676.8 Q F0 .094(If set to)144 688.8 R F1(On)2.593 E F0 2.593(,a)C(nd)-2.593 E F1(completion\255ignor) 2.593 E(e\255case)-.18 E F0 .093(is enabled, readline treats h)2.593 F -.093(yphens \()-.05 F F2A F0 2.593(\)a)C .094(nd underscores)-2.593 +.093(yphens \()-.05 F F2A F0 2.593(\)a)C .093(nd underscores)-2.593 F(\()144 700.8 Q F2(_)A F0 2.5(\)a)C 2.5(se)-2.5 G(qui)-2.5 E -.25(va) -.25 G(lent when performing case\255insensiti).25 E .3 -.15(ve \214)-.25 H(lename matching and completion.).15 E(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(40)197.335 E 0 Cg EP +(2017 October 7)143.735 E(40)192.895 E 0 Cg EP %%Page: 41 41 %%BeginPageSetup BP @@ -5076,29 +5080,29 @@ BP (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 SF(completion\255pr)108 84 Q(e\214x\255display\255length \(0\))-.18 E F0 .829(The length in characters of the common pre\214x of a list of possi\ -ble completions that is displayed)144 96 R 1.274 -(without modi\214cation.)144 108 R 1.274(When set to a v)6.274 F 1.274 -(alue greater than zero, common pre\214x)-.25 F 1.275 +ble completions that is displayed)144 96 R 1.275 +(without modi\214cation.)144 108 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 120 S(lue are replaced with an \ ellipsis when displaying possible completions.).25 E F1 -(completion\255query\255items \(100\))108 132 Q F0 .53 -(This determines when the user is queried about vie)144 144 R .529 -(wing the number of possible completions gen-)-.25 F .56(erated by the) -144 156 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 168 R +(completion\255query\255items \(100\))108 132 Q F0 .529 +(This determines when the user is queried about vie)144 144 R .53 +(wing the number of possible completions gen-)-.25 F .561(erated by the) +144 156 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 168 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 180 S .237 +the v)5.782 F .783(alue of this)-.25 F -.25(va)144 180 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 192 Q F1(con)108 204 -Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .613(If set to)144 216 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 +Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)144 216 R F1(On) +3.112 E F0 3.112(,r)C .613(eadline will con)-3.112 F -.15(ve)-.4 G .613 +(rt characters with the eighth bit set to an ASCII k).15 F .913 -.15 +(ey s)-.1 H .613(equence by).15 F .541 (stripping the eighth bit and pre\214xing an escape character \(in ef) 144 228 R .541(fect, using escape as the)-.25 F/F2 10/Times-Italic@0 SF -.542(meta pr)3.042 F(e-)-.37 E<8c78>144 240 Q F0 2.5(\). The)B(def)2.5 E +.541(meta pr)3.041 F(e-)-.37 E<8c78>144 240 Q F0 2.5(\). The)B(def)2.5 E (ault is)-.1 E F2(On)2.5 E F0 2.5(,b)C(ut readline will set it to)-2.7 E F2(Of)2.5 E(f)-.18 E F0(if the locale contains eight-bit characters.)2.5 E F1(disable\255completion \(Off\))108 252 Q F0 .038(If set to)144 264 R @@ -5106,39 +5110,39 @@ 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 276 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E F0 -(.)A F1(echo\255contr)108 288 Q(ol\255characters \(On\))-.18 E F0 1.21 -(When set to)144 300 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 +(.)A F1(echo\255contr)108 288 Q(ol\255characters \(On\))-.18 E F0 1.211 +(When set to)144 300 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 312 Q -.15(ey)-.1 G -(board.).15 E F1(editing\255mode \(emacs\))108 324 Q F0 .142 +(board.).15 E F1(editing\255mode \(emacs\))108 324 Q F0 .141 (Controls whether readline be)144 336 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 +.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 348 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E F0(.)A F1(emacs\255mode\255string \(@\))108 360 Q F0 .051(This string i\ s displayed immediately before the last line of the primary prompt when\ - emacs editing)144 372 R .293(mode is acti)144 384 R -.15(ve)-.25 G -5.293(.T).15 G .293(he v)-5.293 F .293(alue is e)-.25 F .293 + emacs editing)144 372 R .292(mode is acti)144 384 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 396 -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 +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 408 R (the mode string.)144 420 Q F1(enable\255brack)108 432 Q -(eted\255paste \(Off\))-.1 E F0 1.221(When set to)144 444 R F1(On)3.721 +(eted\255paste \(Off\))-.1 E F0 1.222(When set to)144 444 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 456 R(uf)-.2 E .353(fer as a single strin\ -g of characters, instead of treating each character as if)-.25 F .543 +g of characters, instead of treating each character as if)-.25 F .544 (it had been read from the k)144 468 R -.15(ey)-.1 G 3.043(board. This) -.15 F .543(can pre)3.043 F -.15(ve)-.25 G .544 +.15 F .543(can pre)3.043 F -.15(ve)-.25 G .543 (nt pasted characters from being interpreted as).15 F(editing commands.) -144 480 Q F1(enable\255k)108 492 Q(eypad \(Off\))-.1 E F0 .893 +144 480 Q F1(enable\255k)108 492 Q(eypad \(Off\))-.1 E F0 .892 (When set to)144 504 R F1(On)3.393 E F0 3.393(,r)C .893 (eadline will try to enable the application k)-3.393 F -.15(ey)-.1 G -.893(pad when it is called.).15 F .892(Some sys-)5.893 F +.893(pad when it is called.).15 F .893(Some sys-)5.893 F (tems need this to enable the arro)144 516 Q 2.5(wk)-.25 G -.15(ey)-2.6 G(s.).15 E F1(enable\255meta\255k)108 528 Q(ey \(On\))-.1 E F0 .64 (When set to)144 540 R F1(On)3.14 E F0 3.14(,r)C .64 @@ -5150,86 +5154,86 @@ G(s.).15 E F1(enable\255meta\255k)108 528 Q(ey \(On\))-.1 E F0 .64 (expand\255tilde \(Off\))108 564 Q F0(If set to)144 576 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 588 Q(eser)-.18 E -.1 -(ve)-.1 G(\255point \(Off\)).1 E F0 1.339(If set to)144 600 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 612 Q -.15 +(ve)-.1 G(\255point \(Off\)).1 E F0 1.338(If set to)144 600 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 612 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 624 Q F0 .948 +(history\255size \(unset\))108 624 Q F0 .949 (Set the maximum number of history entries sa)144 636 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 648 R 2.983(we)-.25 G .483 -(ntries are sa)-2.983 F -.15(ve)-.2 G 2.983(d. If).15 F .482(set to a v) -2.983 F .482(alue less than zero, the num-)-.25 F .277 -(ber of history entries is not limited.)144 660 R .277(By def)5.277 F -.278(ault, the number of history entries is set to the v)-.1 F .278 -(alue of)-.25 F(the)144 672 Q F1(HISTSIZE)3.411 E F0 .911(shell v)3.411 -F 3.411(ariable. If)-.25 F .911(an attempt is made to set)3.411 F F2 -(history\255size)3.41 E F0 .91(to a non-numeric v)3.41 F(alue,)-.25 E +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 648 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 .278 +(ber of history entries is not limited.)144 660 R .277(By def)5.278 F +.277(ault, the number of history entries is set to the v)-.1 F .277 +(alue of)-.25 F(the)144 672 Q F1(HISTSIZE)3.41 E F0 .91(shell v)3.41 F +3.41(ariable. If)-.25 F .911(an attempt is made to set)3.41 F F2 +(history\255size)3.411 E F0 .911(to a non-numeric v)3.411 F(alue,)-.25 E (the maximum number of history entries will be set to 500.)144 684 Q F1 -(horizontal\255scr)108 696 Q(oll\255mode \(Off\))-.18 E F0 .448 -(When set to)144 708 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 +(horizontal\255scr)108 696 Q(oll\255mode \(Off\))-.18 E F0 .449 +(When set to)144 708 R F1(On)2.949 E F0 2.949(,m)C(ak)-2.949 E .448 +(es readline use a single line for display)-.1 F 2.948(,s)-.65 G .448 (crolling the input horizontally on a)-2.948 F 1.194(single screen line\ when it becomes longer than the screen width rather than wrapping to a\ - ne)144 720 R(w)-.25 E(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(41) -197.335 E 0 Cg EP + ne)144 720 R(w)-.25 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E +(41)192.895 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(line.)144 84 Q/F1 -10/Times-Bold@0 SF(input\255meta \(Off\))108 96 Q F0 1.061(If set to)144 -108 R F1(On)3.561 E F0 3.561(,r)C 1.062(eadline will enable eight-bit i\ -nput \(that is, it will not strip the eighth bit from the)-3.561 F .336 +10/Times-Bold@0 SF(input\255meta \(Off\))108 96 Q F0 1.062(If set to)144 +108 R F1(On)3.562 E F0 3.562(,r)C 1.061(eadline will enable eight-bit i\ +nput \(that is, it will not strip the eighth bit from the)-3.562 F .335 (characters it reads\), re)144 120 R -.05(ga)-.15 G .335 -(rdless of what the terminal claims it can support.).05 F .335(The name) -5.335 F F1(meta\255\215ag)2.835 E F0(is)2.835 E 2.864(as)144 132 S(ynon) --2.864 E .364(ym for this v)-.15 F 2.864(ariable. The)-.25 F(def)2.864 E +(rdless of what the terminal claims it can support.).05 F .336(The name) +5.336 F F1(meta\255\215ag)2.836 E F0(is)2.836 E 2.865(as)144 132 S(ynon) +-2.865 E .365(ym for this v)-.15 F 2.864(ariable. The)-.25 F(def)2.864 E .364(ault is)-.1 F/F2 10/Times-Italic@0 SF(Of)2.864 E(f)-.18 E F0 2.864 -(,b)C .364(ut readline will set it to)-3.064 F F2(On)2.864 E F0 .365 -(if the locale contains)2.865 F(eight-bit characters.)144 144 Q F1 +(,b)C .364(ut readline will set it to)-3.064 F F2(On)2.864 E F0 .364 +(if the locale contains)2.864 F(eight-bit characters.)144 144 Q F1 (isear)108 156 Q(ch\255terminators \(`)-.18 E(`C\255[C\255J')-.63 E('\)) -.63 E F0 .439(The string of characters that should terminate an increm\ ental search without subsequently e)144 168 R -.15(xe)-.15 G(cut-).15 E -.934(ing the character as a command.)144 180 R .935(If this v)5.935 F -.935(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.435(nav).15 G .935 -(alue, the characters)-3.685 F F2(ESC)3.435 E F0(and)144 192 Q F2 +.935(ing the character as a command.)144 180 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(ESC)3.434 E F0(and)144 192 Q F2 (C\255J)2.5 E F0(will terminate an incremental search.)2.5 E F1 -.1(ke) -108 204 S(ymap \(emacs\)).1 E F0 2.021(Set the current readline k)144 -216 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 +108 204 S(ymap \(emacs\)).1 E F0 2.02(Set the current readline k)144 216 +R -.15(ey)-.1 G 4.521(map. The).15 F 2.021(set of v)4.521 F 2.021 +(alid k)-.25 F -.15(ey)-.1 G 2.021(map names is).15 F F2 2.021 +(emacs, emacs\255standar)4.521 F(d,)-.37 E .069 (emacs\255meta, emacs\255ctlx, vi, vi\255command)144 228 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 240 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 240 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 252 Q(fects the def)-.25 +(editing\255mode)4.044 E F0(also)4.044 E(af)144 252 Q(fects the def)-.25 E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1 -.1(ke)108 264 S -(yseq\255timeout \(500\)).1 E F0 .367(Speci\214es the duration)144 276 R +(yseq\255timeout \(500\)).1 E F0 .368(Speci\214es the duration)144 276 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) +(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 288 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 300 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 300 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 312 R .907 +2.82 G(adline).37 E F0(will)2.82 E .906(use the shorter b)144 312 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 +(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 324 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 336 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 348 Q .3 -.15(ey s)-.1 H +(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 348 Q .3 -.15(ey s)-.1 H (equence to complete.).15 E F1(mark\255dir)108 360 Q(ectories \(On\)) -.18 E F0(If set to)144 372 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.) @@ -5242,48 +5246,48 @@ E F2 -.37(re)2.551 G(adline).37 E F0 .051(will w)2.551 F .051 (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 432 Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A F1 -(match\255hidden\255\214les \(On\))108 444 Q F0 .193(This v)144 456 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 +(match\255hidden\255\214les \(On\))108 444 Q F0 .192(This v)144 456 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 468 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 +-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 480 Q F1 (menu\255complete\255display\255pr)108 492 Q(e\214x \(Off\))-.18 E F0 -1.586(If set to)144 504 R F1(On)4.086 E F0 4.086(,m)C 1.585(enu complet\ +1.585(If set to)144 504 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.086 F(\(which may be empty\) before c)144 516 Q +-4.085 F(\(which may be empty\) before c)144 516 Q (ycling through the list.)-.15 E F1(output\255meta \(Off\))108 528 Q F0 -.506(If set to)144 540 R F1(On)3.006 E F0 3.006(,r)C .507(eadline will \ +.507(If set to)144 540 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 552 Q .885(ed escape sequence.)-.15 F .884 +ta-)-3.007 F(pre\214x)144 552 Q .884(ed escape sequence.)-.15 F .884 (The def)5.884 F .884(ault is)-.1 F F2(Of)3.384 E(f)-.18 E F0 3.384(,b)C -.884(ut readline will set it to)-3.584 F F2(On)3.384 E F0 .884 +.884(ut readline will set it to)-3.584 F F2(On)3.384 E F0 .885 (if the locale contains)3.384 F(eight-bit characters.)144 564 Q F1 -(page\255completions \(On\))108 576 Q F0 .808(If set to)144 588 R F1(On) +(page\255completions \(On\))108 576 Q F0 .809(If set to)144 588 R F1(On) 3.308 E F0 3.308(,r)C .808(eadline uses an internal)-3.308 F F2(mor) 3.308 E(e)-.37 E F0(-lik)A 3.308(ep)-.1 G .808 (ager to display a screenful of possible comple-)-3.308 F (tions at a time.)144 600 Q F1 -(print\255completions\255horizontally \(Off\))108 612 Q F0 1.319 -(If set to)144 624 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 +(print\255completions\255horizontally \(Off\))108 612 Q F0 1.318 +(If set to)144 624 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 636 Q 2.5(,r)-.4 G(ather than do)-2.5 E(wn the screen.)-.25 E F1 -2.29 -.18(re v)108 648 T(ert\255all\255at\255newline \(Off\)).08 E -F0 .698(If set to)144 660 R F1(On)3.198 E F0 3.198(,r)C .699 +F0 .699(If set to)144 660 R F1(On)3.199 E F0 3.199(,r)C .699 (eadline will undo all changes to history lines before returning when) --3.198 F F1(accept\255line)3.199 E F0(is)3.199 E -.15(exe)144 672 S +-3.199 F F1(accept\255line)3.198 E F0(is)3.198 E -.15(exe)144 672 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 684 S(adline) .18 E F0(.)A F1(sho)108 696 Q(w\255all\255if\255ambiguous \(Off\))-.1 E -F0 .303(This alters the def)144 708 R .303(ault beha)-.1 F .304 +F0 .304(This alters the def)144 708 R .304(ault beha)-.1 F .304 (vior of the completion functions.)-.2 F .304(If set to)5.304 F F1(On) -2.804 E F0 2.804(,w)C .304(ords which ha)-2.904 F .604 -.15(ve m)-.2 H +2.804 E F0 2.803(,w)C .303(ords which ha)-2.903 F .603 -.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 720 R(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(42)197.335 E 0 Cg EP +(2017 October 7)143.735 E(42)192.895 E 0 Cg EP %%Page: 43 43 %%BeginPageSetup BP @@ -5291,74 +5295,74 @@ BP /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(bell.)144 84 Q/F1 10/Times-Bold@0 SF(sho)108 96 Q(w\255all\255if\255unmodi\214ed \(Off\)) --.1 E F0 5.345(This alters the def)144 108 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 120 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 +-.1 E F0 5.346(This alters the def)144 108 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 120 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 (ords which ha)-4.291 F 1.991 -.15(ve m)-.2 H 1.691 -(ore than one possible completion).15 F 1.039(without an)144 132 R 3.539 +(ore than one possible completion).15 F 1.04(without an)144 132 R 3.54 (yp)-.15 G 1.039 -(ossible partial completion \(the possible completions don')-3.539 F -3.539(ts)-.18 G 1.04(hare a common pre\214x\))-3.539 F(cause the matche\ -s to be listed immediately instead of ringing the bell.)144 144 Q F1 -(sho)108 156 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.019 -(If set to)144 168 R F1(On)3.519 E F0 3.519(,a)C 1.018 -(dd a character to the be)-3.519 F 1.018 +(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 144 Q F1 +(sho)108 156 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.018 +(If set to)144 168 R F1(On)3.518 E F0 3.518(,a)C 1.018 +(dd a character to the be)-3.518 F 1.018 (ginning of the prompt indicating the editing mode: emacs)-.15 F (\(@\), vi command \(:\) or vi insertion \(+\).)144 180 Q F1 -(skip\255completed\255text \(Off\))108 192 Q F0 .094(If set to)144 204 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 +(skip\255completed\255text \(Off\))108 192 Q F0 .095(If set to)144 204 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 216 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 \ +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 228 R -1.395(ord being com-)-.1 F(pleted, so portions of the w)144 240 Q +1.394(ord being com-)-.1 F(pleted, so portions of the w)144 240 Q (ord follo)-.1 E(wing the cursor are not duplicated.)-.25 E F1 (vi\255cmd\255mode\255string \(\(cmd\)\))108 252 Q F0 1.198(This string\ is displayed immediately before the last line of the primary prompt wh\ -en vi editing)144 264 R .521(mode is acti)144 276 R .821 -.15(ve a)-.25 +en vi editing)144 264 R .522(mode is acti)144 276 R .822 -.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 .822 -.15(ey b)-3.122 H .522 -(inding, so the standard).15 F .87(set of meta- and control pre\214x)144 -288 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) +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 288 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 300 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 312 Q F1 (vi\255ins\255mode\255string \(\(ins\)\))108 324 Q F0 1.198(This string\ is displayed immediately before the last line of the primary prompt wh\ -en vi editing)144 336 R .782(mode is acti)144 348 R 1.083 -.15(ve a)-.25 +en vi editing)144 336 R .783(mode is acti)144 348 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 .87 +.783(inding, so the standard).15 F .869 (set of meta- and control pre\214x)144 360 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 -372 R .386(gin and end sequences of non-printing characters, which can \ -be used to embed a ter)-.15 F(-)-.2 E +(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 372 +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 384 Q F1 -(visible\255stats \(Off\))108 396 Q F0 .847(If set to)144 408 R F1(On) +(visible\255stats \(Off\))108 396 Q F0 .846(If set to)144 408 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 10/Times-Italic@0 SF (stat)3.346 E F0 .846(\(2\) is appended to the \214lename)B (when listing possible completions.)144 420 Q F1 (Readline Conditional Constructs)87 436.8 Q F0 .05 (Readline implements a f)108 448.8 R .05(acility similar in spirit to t\ -he conditional compilation features of the C preprocessor)-.1 F .097 -(which allo)108 460.8 R .097(ws k)-.25 F .396 -.15(ey b)-.1 H .096 +he conditional compilation features of the C preprocessor)-.1 F .096 +(which allo)108 460.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 .096 +(ariable settings to be performed as the result of tests.)-.25 F .097 (There are four parser)5.096 F(directi)108 472.8 Q -.15(ve)-.25 G 2.5 -(su).15 G(sed.)-2.5 E F1($if)108 489.6 Q F0(The)144 489.6 Q F1($if)2.962 -E F0 .462(construct allo)2.962 F .463(ws bindings to be made based on t\ -he editing mode, the terminal being used,)-.25 F .478 +(su).15 G(sed.)-2.5 E F1($if)108 489.6 Q F0(The)144 489.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 501.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 (are required to isolate it.)144 513.6 Q F1(mode)144 530.4 Q F0(The)180 -530.4 Q F1(mode=)3.711 E F0 1.211(form of the)3.711 F F1($if)3.711 E F0 +530.4 Q F1(mode=)3.712 E F0 1.212(form of the)3.712 F F1($if)3.711 E F0 (directi)3.711 E 1.511 -.15(ve i)-.25 H 3.711(su).15 G 1.211 (sed to test whether readline is in emacs or vi)-3.711 F 3.065 (mode. This)180 542.4 R .565(may be used in conjunction with the)3.065 F @@ -5366,13 +5370,13 @@ 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 554.4 R F2(emacs\255standar)3.235 E (d)-.37 E F0(and)3.235 E F2(emacs\255ctlx)3.235 E F0 -.1(ke)3.235 G .735 (ymaps only if readline is starting)-.05 F(out in emacs mode.)180 566.4 -Q F1(term)144 583.2 Q F0(The)180 583.2 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 595.2 R +Q F1(term)144 583.2 Q F0(The)180 583.2 Q F1(term=)3.196 E F0 .696 +(form may be used to include terminal-speci\214c k)3.196 F .996 -.15 +(ey b)-.1 H .697(indings, perhaps to bind).15 F .654(the k)180 595.2 R .954 -.15(ey s)-.1 H .654(equences output by the terminal').15 F 3.154 (sf)-.55 G .654(unction k)-3.154 F -.15(ey)-.1 G 3.154(s. The).15 F -.1 -(wo)3.154 G .654(rd on the right side of).1 F(the)180 607.2 Q F1(=)3.232 -E F0 .732(is tested ag)3.232 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 607.2 Q F1(=)3.231 +E F0 .731(is tested ag)3.231 F .732(ainst both the full name of the ter\ minal and the portion of the terminal)-.05 F(name before the \214rst)180 619.2 Q F12.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0 (to match both)2.74 E F2(sun)2.84 E F0(and)2.74 E F2(sun\255cmd)2.5 E F0 @@ -5381,15 +5385,15 @@ 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 660 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 -672 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 684 R -.15(Fo)5.397 G 2.896(ri).15 G .396 +(nd an initialization \214le can test for a)-2.614 F .501(particular v) +180 672 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 684 R -.15(Fo)5.396 G 2.896(ri).15 G .396 (nstance, the follo)-2.896 F .396(wing command adds a k)-.25 F .696 -.15 -(ey s)-.1 H .396(equence that quotes the).15 F(current or pre)180 696 Q +(ey s)-.1 H .397(equence that quotes the).15 F(current or pre)180 696 Q (vious w)-.25 E(ord in)-.1 E F1(bash)2.5 E F0(:)A F1($if)180 720 Q F0 -(Bash)2.5 E(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(43)197.335 E 0 -Cg EP +(Bash)2.5 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(43)192.895 E +0 Cg EP %%Page: 44 44 %%BeginPageSetup BP @@ -5403,66 +5407,66 @@ BP 2.5 E F1($else)108 141.6 Q F0(Commands in this branch of the)144 141.6 Q F1($if)2.5 E F0(directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E -.15(xe) -.15 G(cuted if the test f).15 E(ails.)-.1 E F1($include)108 158.4 Q F0 -.356(This directi)144 170.4 R .656 -.15(ve t)-.25 H(ak).15 E .356 -(es a single \214lename as an ar)-.1 F .357 +.357(This directi)144 170.4 R .657 -.15(ve t)-.25 H(ak).15 E .357 +(es a single \214lename as an ar)-.1 F .356 (gument and reads commands and bindings from that)-.18 F 2.5(\214le. F) 144 182.4 R(or e)-.15 E(xample, the follo)-.15 E(wing directi)-.25 E .3 -.15(ve w)-.25 H(ould read).05 E/F2 10/Times-Italic@0 SF(/etc/inputr)2.5 E(c)-.37 E F0(:)A F1($include)144 206.4 Q F2(/etc/inputr)5.833 E(c)-.37 -E F1(Sear)87 223.2 Q(ching)-.18 E F0 .835(Readline pro)108 235.2 R .835 +E F1(Sear)87 223.2 Q(ching)-.18 E F0 .834(Readline pro)108 235.2 R .834 (vides commands for searching through the command history \(see)-.15 F -/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 247.2 Q +/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 247.2 Q (There are tw)5 E 2.5(os)-.1 G(earch modes:)-2.5 E F2(incr)2.51 E (emental)-.37 E F0(and)3.01 E F2(non-incr)2.5 E(emental)-.37 E F0(.).51 -E .697(Incremental searches be)108 264 R .697 +E .698(Incremental searches be)108 264 R .698 (gin before the user has \214nished typing the search string.)-.15 F -.698(As each character of the)5.698 F .113 +.697(As each character of the)5.697 F .112 (search string is typed, readline displays the ne)108 276 R .112 (xt entry from the history matching the string typed so f)-.15 F(ar)-.1 -E 5.112(.A)-.55 G(n)-5.112 E .542 +E 5.113(.A)-.55 G(n)-5.113 E .542 (incremental search requires only as man)108 288 R 3.042(yc)-.15 G .542 -(haracters as needed to \214nd the desired history entry)-3.042 F 5.542 -(.T)-.65 G .542(he char)-5.542 F(-)-.2 E .224(acters present in the v) +(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 300 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 312 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 .097(mental search.)108 324 R .096(Control-G will abort an incrementa\ -l search and restore the original line.)5.097 F .096(When the search is) -5.096 F(terminated, the history entry containing the search string beco\ -mes the current line.)108 336 Q 2.938 -.8(To \214)108 352.8 T 1.339(nd \ +F .096(mental search.)108 324 R .096(Control-G will abort an incrementa\ +l search and restore the original line.)5.096 F .097(When the search is) +5.097 F(terminated, the history entry containing the search string beco\ +mes the current line.)108 336 Q 2.939 -.8(To \214)108 352.8 T 1.339(nd \ other matching entries in the history list, type Control-S or Control-R\ - as appropriate.).8 F 1.339(This will)6.339 F .675(search backw)108 -364.8 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 376.8 R .474 -.15 + as appropriate.).8 F 1.338(This will)6.338 F .674(search backw)108 +364.8 R .674(ard or forw)-.1 F .674(ard in the history for the ne)-.1 F +.675(xt entry matching the search string typed so f)-.15 F(ar)-.1 E +5.675(.A)-.55 G -.15(ny)-5.675 G .175(other k)108 376.8 R .475 -.15 (ey s)-.1 H .174 (equence bound to a readline command will terminate the search and e).15 -F -.15(xe)-.15 G .175(cute that command.).15 F -.15(Fo)5.175 G(r).15 E -.541(instance, a)108 388.8 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 400.8 -Q .653(Readline remembers the last incremental search string.)108 417.6 -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 429.6 Q 2.5(ws)-.25 G +F -.15(xe)-.15 G .174(cute that command.).15 F -.15(Fo)5.174 G(r).15 E +.54(instance, a)108 388.8 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 +400.8 Q .653(Readline remembers the last incremental search string.)108 +417.6 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 429.6 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 446.4 R(The searc\ h string may be typed by the user or be part of the contents of the cur\ -rent line.)108 458.4 Q F1(Readline Command Names)87 475.2 Q F0 1.391 +rent line.)108 458.4 Q F1(Readline Command Names)87 475.2 Q F0 1.392 (The follo)108 487.2 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 499.2 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 511.2 Q F2(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 523.2 Q F0 2.5 +3.891(ya)-.15 G(re)-3.891 E 2.621(bound. Command)108 499.2 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 511.2 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 F1(set\255mark)108 523.2 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 540 Q(or Mo)-.25 E(ving)-.1 E @@ -5474,15 +5478,15 @@ F0 .911(refers to a cursor position sa)3.411 F -.15(ve)-.2 G 3.411(db) .15 E(ard a character)-.1 E(.)-.55 E F1(backward\255char \(C\255b\))108 624 Q F0(Mo)144 636 Q .3 -.15(ve b)-.15 H(ack a character).15 E(.)-.55 E F1 -.25(fo)108 648 S(rward\255w).25 E(ord \(M\255f\))-.1 E F0(Mo)144 660 -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 +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 672 Q F1(backward\255w)108 684 Q(ord \(M\255b\)) -.1 E F0(Mo)144 696 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 708 Q(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(44)197.335 E 0 Cg EP +(2017 October 7)143.735 E(44)192.895 E 0 Cg EP %%Page: 45 45 %%BeginPageSetup BP @@ -5493,25 +5497,25 @@ SF(shell\255f)108 84 Q(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 96 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 108 -Q F1(shell\255backward\255w)108 120 Q(ord)-.1 E F0(Mo)144 132 Q .908 +Q F1(shell\255backward\255w)108 120 Q(ord)-.1 E F0(Mo)144 132 Q .909 -.15(ve b)-.15 H .609(ack to the start of the current or pre).15 F .609 -(vious w)-.25 F 3.109(ord. W)-.1 F .609 +(vious w)-.25 F 3.109(ord. W)-.1 F .608 (ords are delimited by non-quoted shell)-.8 F(metacharacters.)144 144 Q F1(pr)108 156 Q -.15(ev)-.18 G(ious\255scr).15 E(een\255line)-.18 E F0 -.891(Attempt to mo)144 168 R 1.191 -.15(ve p)-.15 H .891 +.89(Attempt to mo)144 168 R 1.19 -.15(ve p)-.15 H .89 (oint to the same ph).15 F .891(ysical screen column on the pre)-.05 F -.89(vious ph)-.25 F .89(ysical screen line.)-.05 F .87(This will not ha) -144 180 R 1.17 -.15(ve t)-.2 H .87(he desired ef).15 F .87 -(fect if the current Readline line does not tak)-.25 F 3.37(eu)-.1 G +.891(vious ph)-.25 F .891(ysical screen line.)-.05 F .87 +(This will not ha)144 180 R 1.17 -.15(ve t)-.2 H .87(he desired ef).15 F +.87(fect if the current Readline line does not tak)-.25 F 3.37(eu)-.1 G 3.37(pm)-3.37 G .87(ore than one)-3.37 F(ph)144 192 Q(ysical line or if\ point is not greater than the length of the prompt plus the screen wid\ -th.)-.05 E F1(next\255scr)108 204 Q(een\255line)-.18 E F0 .638 -(Attempt to mo)144 216 R .938 -.15(ve p)-.15 H .638(oint to the same ph) -.15 F .637(ysical screen column on the ne)-.05 F .637(xt ph)-.15 F .637 -(ysical screen line. This)-.05 F .008(will not ha)144 228 R .309 -.15 +th.)-.05 E F1(next\255scr)108 204 Q(een\255line)-.18 E F0 .637 +(Attempt to mo)144 216 R .937 -.15(ve p)-.15 H .637(oint to the same ph) +.15 F .638(ysical screen column on the ne)-.05 F .638(xt ph)-.15 F .638 +(ysical screen line. This)-.05 F .009(will not ha)144 228 R .309 -.15 (ve t)-.2 H .009(he desired ef).15 F .009 (fect if the current Readline line does not tak)-.25 F 2.509(eu)-.1 G -2.509(pm)-2.509 G .009(ore than one ph)-2.509 F(ysical)-.05 E .772(line\ +2.509(pm)-2.509 G .008(ore than one ph)-2.509 F(ysical)-.05 E .772(line\ or if the length of the current Readline line is not greater than the \ length of the prompt plus)144 240 R(the screen width.)144 252 Q F1 (clear\255scr)108 264 Q(een \(C\255l\))-.18 E F0 .993 @@ -5521,10 +5525,10 @@ length of the prompt plus)144 240 R(the screen width.)144 252 Q F1 (current line without clearing the screen.)144 288 Q F1 -.18(re)108 300 S(draw\255curr).18 E(ent\255line)-.18 E F0(Refresh the current line.)144 312 Q F1(Commands f)87 328.8 Q(or Manipulating the History)-.25 E -(accept\255line \(Newline, Retur)108 340.8 Q(n\))-.15 E F0 .159 -(Accept the line re)144 352.8 R -.05(ga)-.15 G .159 +(accept\255line \(Newline, Retur)108 340.8 Q(n\))-.15 E F0 .158 +(Accept the line re)144 352.8 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.658(,a)-.65 G .158(dd it to the history list)-2.658 F .699 +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 364.8 R/F2 9/Times-Bold@0 SF (HISTCONTR)3.199 E(OL)-.27 E F0 -.25(va)2.949 G 3.199(riable. If).25 F .699(the line is a modi\214ed history line, then)3.199 F @@ -5540,36 +5544,36 @@ E(ving forw)-.15 E(ard in the list.)-.1 E F1 .3 -.15(ve t)-.15 H 2.5(ot).15 G(he end of the input history)-2.5 E 2.5 (,i)-.65 G(.e., the line currently being entered.)-2.5 E F1 -2.29 -.18 (re v)108 484.8 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 -1.471(Search backw)144 496.8 R 1.471 -(ard starting at the current line and mo)-.1 F 1.47 +1.47(Search backw)144 496.8 R 1.471 +(ard starting at the current line and mo)-.1 F 1.471 (ving `up' through the history as necessary)-.15 F(.)-.65 E (This is an incremental search.)144 508.8 Q F1 -.25(fo)108 520.8 S -(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.131 -(Search forw)144 532.8 R 1.131(ard starting at the current line and mo) --.1 F 1.132(ving `do)-.15 F 1.132(wn' through the history as necessary) +(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.132 +(Search forw)144 532.8 R 1.132(ard starting at the current line and mo) +-.1 F 1.131(ving `do)-.15 F 1.131(wn' through the history as necessary) -.25 F(.)-.65 E(This is an incremental search.)144 544.8 Q F1 (non\255incr)108 556.8 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H -(rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .165(Search backw) +(rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .164(Search backw) 144 568.8 R .164(ard through the history starting at the current line u\ sing a non-incremental search for)-.1 F 2.5(as)144 580.8 S (tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 592.8 Q (emental\255f)-.18 E(orward\255sear)-.25 E(ch\255history \(M\255n\))-.18 -E F0 1.353(Search forw)144 604.8 R 1.354(ard through the history using \ +E F0 1.354(Search forw)144 604.8 R 1.354(ard through the history using \ a non-incremental search for a string supplied by the)-.1 F(user)144 616.8 Q(.)-.55 E F1(history\255sear)108 628.8 Q(ch\255f)-.18 E(orward) --.25 E F0 .249(Search forw)144 640.8 R .249(ard through the history for\ +-.25 E F0 .248(Search forw)144 640.8 R .249(ard through the history for\ the string of characters between the start of the current line)-.1 F (and the point.)144 652.8 Q(This is a non-incremental search.)5 E F1 -(history\255sear)108 664.8 Q(ch\255backward)-.18 E F0 .95(Search backw) +(history\255sear)108 664.8 Q(ch\255backward)-.18 E F0 .951(Search backw) 144 676.8 R .951(ard through the history for the string of characters b\ etween the start of the current)-.1 F(line and the point.)144 688.8 Q (This is a non-incremental search.)5 E F1(history\255substring\255sear) -108 700.8 Q(ch\255backward)-.18 E F0 .951(Search backw)144 712.8 R .951 -(ard through the history for the string of characters between the start\ - of the current)-.1 F .007(line and the current cursor position \(the) -144 724.8 R/F3 10/Times-Italic@0 SF(point)2.507 E F0 2.507(\). The)B -.007(search string may match an)2.507 F .007(ywhere in a history)-.15 F -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(45)197.335 E 0 Cg EP +108 700.8 Q(ch\255backward)-.18 E F0 .95(Search backw)144 712.8 R .951(\ +ard through the history for the string of characters between the start \ +of the current)-.1 F .007(line and the current cursor position \(the)144 +724.8 R/F3 10/Times-Italic@0 SF(point)2.507 E F0 2.507(\). The)B .007 +(search string may match an)2.507 F .006(ywhere in a history)-.15 F +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(45)192.895 E 0 Cg EP %%Page: 46 46 %%BeginPageSetup BP @@ -5578,77 +5582,77 @@ BP (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.5(line. This)144 84 R(is a non-incremental search.)2.5 E/F1 10/Times-Bold@0 SF (history\255substring\255sear)108 96 Q(ch\255f)-.18 E(orward)-.25 E F0 -.249(Search forw)144 108 R .249(ard through the history for the string \ -of characters between the start of the current line)-.1 F .318 -(and the point.)144 120 R .319(The search string may match an)5.318 F -.319(ywhere in a history line.)-.15 F .319(This is a non-incremental) -5.319 F(search.)144 132 Q F1(yank\255nth\255ar)108 144 Q 2.5(g\()-.1 G +.248(Search forw)144 108 R .249(ard through the history for the string \ +of characters between the start of the current line)-.1 F .319 +(and the point.)144 120 R .319(The search string may match an)5.319 F +.319(ywhere in a history line.)-.15 F .318(This is a non-incremental) +5.318 F(search.)144 132 Q F1(yank\255nth\255ar)108 144 Q 2.5(g\()-.1 G <4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 156 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 -168 R -.4(Wi)5.794 G .794(th an ar).4 F(gument)-.18 E/F2 10 +F .622(ord on the pre)-.1 F .622(vious line\))-.25 F .795(at point.)144 +168 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 180 Q .292 -(vious command be)-.25 F .292(gin with w)-.15 F .291(ord 0\).)-.1 F +(vious command \(the w)-.25 F .794(ords in the)-.1 F(pre)144 180 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 192 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 +.292(ord from the end of)-.1 F .282(the pre)144 192 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 204 Q (xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 216 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 228 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 240 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 252 Q .807 -.15(ve b)-.15 H .507 +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 228 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 240 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 252 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 264 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 276 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 264 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 276 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 288 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 300 S(rd, as if the "!$" history e).1 E(xpansion had been speci\214ed.) --.15 E F1(shell\255expand\255line \(M\255C\255e\))108 312 Q F0 .623 +-.15 E F1(shell\255expand\255line \(M\255C\255e\))108 312 Q F0 .622 (Expand the line as the shell does.)144 324 R .622 -(This performs alias and history e)5.622 F .622 +(This performs alias and history e)5.622 F .623 (xpansion as well as all of the)-.15 F(shell w)144 336 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 348 Q F0 .938 +(history\255expand\255line \(M\255^\))108 348 Q F0 .939 (Perform history e)144 360 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 372 Q(xpansion.)-.15 E F1(magic\255space) -108 384 Q F0 1.627(Perform history e)144 396 R 1.627 -(xpansion on the current line and insert a space.)-.15 F(See)6.626 E F3 -(HIST)4.126 E(OR)-.162 E 3.876(YE)-.315 G(XP)-3.876 E(ANSION)-.666 E F0 +(ANSION)-.666 E F0(belo)3.189 E 3.438(wf)-.25 G .938(or a descrip-) +-3.438 F(tion of history e)144 372 Q(xpansion.)-.15 E F1(magic\255space) +108 384 Q F0 1.626(Perform history e)144 396 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 408 Q 2.5(wf)-.25 G(or a description of history e)-2.5 E -(xpansion.)-.15 E F1(alias\255expand\255line)108 420 Q F0 .394 -(Perform alias e)144 432 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 444 Q F1 +(xpansion.)-.15 E F1(alias\255expand\255line)108 420 Q F0 .395 +(Perform alias e)144 432 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 444 Q F1 (history\255and\255alias\255expand\255line)108 456 Q F0 (Perform history and alias e)144 468 Q(xpansion on the current line.) -.15 E F1(insert\255last\255ar)108 480 Q(gument \(M\255.)-.1 E 2.5(,M) .833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 492 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 504 Q F0 .948 +(operate\255and\255get\255next \(C\255o\))108 504 Q F0 .947 (Accept the current line for e)144 516 R -.15(xe)-.15 G .948 -(cution and fetch the ne).15 F .948(xt line relati)-.15 F 1.247 -.15 -(ve t)-.25 H 3.447(ot).15 G .947(he current line from the)-3.447 F .729 -(history for editing.)144 528 R 3.229(An)5.729 G .729(umeric ar)-3.229 F +(cution and fetch the ne).15 F .948(xt line relati)-.15 F 1.248 -.15 +(ve t)-.25 H 3.448(ot).15 G .948(he current line from the)-3.448 F .73 +(history for editing.)144 528 R 3.23(An)5.73 G .73(umeric ar)-3.23 F .729 (gument, if supplied, speci\214es the history entry to use instead of) -.18 F(the current line.)144 540 Q F1 @@ -5661,92 +5665,92 @@ H .492(hrough the history).15 F 5.491(.A)-.65 G(ne)-2.5 E -.05(ga)-.15 G (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 .798 +(\(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.299 -(ft)-5.799 G .799(his character is read when)-3.299 F .592 +(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 -.592(ginning of the line, Readline interprets it)-.15 F +.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 .441 +(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.441 F F1 -(EOF)2.942 E F0(char)2.942 E(-)-.2 E(acter)144 676.8 Q 2.5(,a)-.4 G(s) +(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 .553(Delete the character behind the cursor)144 700.8 R +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 .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 712.8 Q -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(46)197.335 E 0 Cg EP +(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(2017 October 7)143.735 E(46)192.895 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 -.25(fo)108 84 S(rward\255backward\255delete\255char).25 E F0 .473 -(Delete the character under the cursor)144 96 R 2.973(,u)-.4 G .474 -(nless the cursor is at the end of the line, in which case the)-2.973 F +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 .779(Add the ne)144 +(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) -.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.278 E F0 3.278(,f)C -(or)-3.278 E -.15(ex)144 144 S(ample.).15 E F1(tab\255insert \(C\255v T) +(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 .321(Drag the character before point forw)144 216 R .321 +108 204 Q F0 .322(Drag the character before point forw)144 216 R .321 (ard o)-.1 F -.15(ve)-.15 G 2.821(rt).15 G .321 -(he character at point, mo)-2.821 F .322(ving point forw)-.15 F .322 +(he character at point, mo)-2.821 F .321(ving point forw)-.15 F .321 (ard as well.)-.1 F 1.182 (If point is at the end of the line, then this transposes the tw)144 228 -R 3.682(oc)-.1 G 1.182(haracters before point.)-3.682 F(Ne)6.182 E -.05 +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 -.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 .023(Drag the w)144 -264 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 +(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.699(Uppercase the current \(or follo)144 300 +(ord \(M\255u\))-.1 E F0 1.698(Uppercase the current \(or follo)144 300 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.998 -.15(ve a)-.25 H -.18(rg).15 G 1.698 +-.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.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) +(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.975(Capitalize the current \(or follo)144 372 +(ord \(M\255c\))-.1 E F0 1.974(Capitalize the current \(or follo)144 372 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.974 +-.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 .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 420 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 432 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 444 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 456 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 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 +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 @@ -5754,39 +5758,39 @@ 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 (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 .729 -(Kill from point to the end of the current w)144 604.8 R .728 -(ord, or if between w)-.1 F .728(ords, to the end of the ne)-.1 F .728 +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 (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.) -.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 .728(Kill from point to the end of the current w)144 664.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 676.8 S +(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 -(2017 June 23)148.175 E(47)197.335 E 0 Cg EP +(2017 October 7)143.735 E(47)192.895 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(unix\255w)108 84 Q(ord\255rubout \(C\255w\))-.1 E F0 .364(Kill the w) -144 96 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 108 Q F1(unix\255\214lename\255rubout)108 120 Q -F0 .167(Kill the w)144 132 R .166 +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 (ord behind point, using white space and the slash character as the w) --.1 F .166(ord boundaries.)-.1 F(The)5.166 E(killed te)144 144 Q +-.1 F .167(ord boundaries.)-.1 F(The)5.167 E(killed te)144 144 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 @@ -5794,15 +5798,15 @@ 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 (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.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 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.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 288 Q(ord)-.1 E F0(.)A 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 (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 @@ -5813,36 +5817,36 @@ F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 352.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 (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 .367(starts a ne)2.867 F -.05 +(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 .779(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 .778 +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 (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) 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 .898(wise ignored.)144 448.8 R .898 -(As a special case, if this command is immediately follo)5.898 F .898 +-.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 (wed by a character that is)-.25 F 1.23 (neither a digit nor minus sign, the ar)144 460.8 R 1.23 (gument count for the ne)-.18 F 1.23(xt command is multiplied by four) --.15 F(.)-.55 E .822(The ar)144 472.8 R .822 +-.15 F(.)-.55 E .823(The ar)144 472.8 R .823 (gument count is initially one, so e)-.18 F -.15(xe)-.15 G .823 -(cuting this function the \214rst time mak).15 F .823(es the ar)-.1 F +(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 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 (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 .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 549.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 +(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 (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 @@ -5850,26 +5854,26 @@ E(es the ar)-.1 E(gument count sixteen, and so on.)-.18 E F1(Completing) -.15 E F1(insert\255completions \(M\255*\))108 597.6 Q F0 .783 (Insert all completions of the te)144 609.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.283 E(pletions)144 -621.6 Q F0(.)A F1(menu\255complete)108 633.6 Q F0 .929(Similar to)144 -645.6 R F1(complete)3.429 E F0 3.429(,b)C .929(ut replaces the w)-3.629 +.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 F .929(ord to be completed with a single match from the list of)-.1 F -1.193(possible completions.)144 657.6 R 1.193(Repeated e)6.193 F -.15 -(xe)-.15 G 1.193(cution of).15 F F1(menu\255complete)3.694 E F0 1.194 -(steps through the list of possible)3.694 F .829 +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.228 E F0 1.73 +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(2017 June 23)148.175 E(48)197.335 E 0 -Cg EP +(ault.)-.1 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(48)192.895 E +0 Cg EP %%Page: 49 49 %%BeginPageSetup BP @@ -5885,7 +5889,7 @@ SF(menu\255complete\255backward)108 84 Q F0 .82(Identical to)144 96 R F1 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.734 +(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 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 @@ -5911,10 +5915,10 @@ E F1(possible\255\214lename\255completions \(C\255x /\))108 192 Q F0 (possible\255hostname\255completions \(C\255x @\))108 336 Q F0 (List the possible completions of the te)144 348 Q (xt before point, treating it as a hostname.)-.15 E F1 -(complete\255command \(M\255!\))108 360 Q F0 .581 +(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 .58 -(Command comple-)5.58 F .715(tion attempts to match the te)144 384 R +(xt before point, treating it as a command name.)-.15 F .581 +(Command comple-)5.581 F .715(tion attempts to match the te)144 384 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 @@ -5922,14 +5926,14 @@ E F1(possible\255\214lename\255completions \(C\255x /\))108 192 Q F0 (possible\255command\255completions \(C\255x !\))108 408 Q F0 (List the possible completions of the te)144 420 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 .425 +(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 .424 +(xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .425 (ainst lines from the history list)-.05 F (for possible completion matches.)144 456 Q F1(dab)108 468 Q(br)-.1 E --.15(ev)-.18 G(\255expand).15 E F0 .61 +-.15(ev)-.18 G(\255expand).15 E F0 .611 (Attempt menu completion on the te)144 480 R .611 -(xt before point, comparing the te)-.15 F .611(xt ag)-.15 F .611 +(xt before point, comparing the te)-.15 F .61(xt ag)-.15 F .61 (ainst lines from the his-)-.05 F (tory list for possible completion matches.)144 492 Q F1 (complete\255into\255braces \(M\255{\))108 504 Q F0 .4(Perform \214lena\ @@ -5945,19 +5949,19 @@ E(start\255kbd\255macr)108 556.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) (ving the characters typed into the current k)-.2 E -.15(ey)-.1 G (board macro and store the de\214nition.).15 E F1 (call\255last\255kbd\255macr)108 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 .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 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 +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.777 -(Read in the contents of the)144 693.6 R F2(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 -705.6 Q(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(49)197.335 E 0 Cg +(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(2017 October 7)143.735 E(49)192.895 E 0 Cg EP %%Page: 50 50 %%BeginPageSetup @@ -5965,14 +5969,14 @@ 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.248 -(Abort the current editing command and ring the terminal')144 96 R 5.749 -(sb)-.55 G 3.249(ell \(subject to the setting of)-5.749 F F1 +SF(abort \(C\255g\))108 84 Q F0 3.249 +(Abort the current editing command and ring the terminal')144 96 R 5.748 +(sb)-.55 G 3.248(ell \(subject to the setting of)-5.748 F F1 (bell\255style)144 108 Q F0(\).)A F1(do\255lo)108 120 Q(wer)-.1 E (case\255v)-.18 E(ersion \(M\255A, M\255B, M\255)-.1 E/F2 10 -/Times-Italic@0 SF(x)A F1 2.5(,.)C(..\))-2.5 E F0 1.739 -(If the meta\214ed character)144 132 R F2(x)4.239 E F0 1.739 -(is uppercase, run the command that is bound to the corresponding)4.239 +/Times-Italic@0 SF(x)A F1 2.5(,.)C(..\))-2.5 E F0 1.738 +(If the meta\214ed character)144 132 R F2(x)4.238 E F0 1.739 +(is uppercase, run the command that is bound to the corresponding)4.238 F(meta\214ed lo)144 144 Q(wercase character)-.25 E 5(.T)-.55 G(he beha) -5 E(vior is unde\214ned if)-.2 E F2(x)2.5 E F0(is already lo)2.5 E (wercase.)-.25 E F1(pr)108 156 Q(e\214x\255meta \(ESC\))-.18 E F0 @@ -5991,60 +5995,61 @@ F0 1.095(command enough times to)3.595 F (Set the mark to the point.)144 276 Q(If a numeric ar)5 E (gument is supplied, the mark is set to that position.)-.18 E F1 (exchange\255point\255and\255mark \(C\255x C\255x\))108 288 Q F0(Sw)144 -300 Q .283(ap the point with the mark.)-.1 F .283 +300 Q .282(ap the point with the mark.)-.1 F .283 (The current cursor position is set to the sa)5.283 F -.15(ve)-.2 G -2.782(dp).15 G .282(osition, and the old)-2.782 F(cursor position is sa) +2.783(dp).15 G .283(osition, and the old)-2.783 F(cursor position is sa) 144 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.035(Ac)144 336 S -.535(haracter is read and point is mo)-3.035 F -.15(ve)-.15 G 3.035(dt) +(character\255sear)108 324 Q(ch \(C\255]\))-.18 E F0 3.036(Ac)144 336 S +.536(haracter is read and point is mo)-3.036 F -.15(ve)-.15 G 3.035(dt) .15 G 3.035(ot)-3.035 G .535(he ne)-3.035 F .535 -(xt occurrence of that character)-.15 F 5.536(.A)-.55 G(ne)-2.5 E -.05 -(ga)-.15 G(ti).05 E .836 -.15(ve c)-.25 H(ount).15 E(searches for pre) +(xt occurrence of that character)-.15 F 5.535(.A)-.55 G(ne)-2.5 E -.05 +(ga)-.15 G(ti).05 E .835 -.15(ve c)-.25 H(ount).15 E(searches for pre) 144 348 Q(vious occurrences.)-.25 E F1(character\255sear)108 360 Q -(ch\255backward \(M\255C\255]\))-.18 E F0 3.544(Ac)144 372 S 1.044 -(haracter is read and point is mo)-3.544 F -.15(ve)-.15 G 3.544(dt).15 G +(ch\255backward \(M\255C\255]\))-.18 E F0 3.543(Ac)144 372 S 1.043 +(haracter is read and point is mo)-3.543 F -.15(ve)-.15 G 3.544(dt).15 G 3.544(ot)-3.544 G 1.044(he pre)-3.544 F 1.044 -(vious occurrence of that character)-.25 F 6.043(.A)-.55 G(ne)-2.5 E +(vious occurrence of that character)-.25 F 6.044(.A)-.55 G(ne)-2.5 E -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G (count searches for subsequent occurrences.)144 384 Q F1 -(skip\255csi\255sequence)108 396 Q F0 1.826 +(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.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 420 R .791 -(Such sequences be)5.791 F .791 +-.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 (gin with a Control Sequence Indicator \(CSI\), usually ESC\255[.)-.15 F -.331(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 .632 -.15(ve n) --.2 H 2.832(oe).15 G -.25(ff)-2.832 G .332(ect unless e).25 F(xplic-) +.332(If this sequence is bound to "\\[", k)144 432 R -.15(ey)-.1 G 2.831 +(sp).15 G .331(roducing such sequences will ha)-2.831 F .631 -.15(ve n) +-.2 H 2.831(oe).15 G -.25(ff)-2.831 G .331(ect unless e).25 F(xplic-) -.15 E .026(itly bound to a readline command, instead of inserting stra\ y characters into the editing b)144 444 R(uf)-.2 E(fer)-.25 E 5.026(.T) -.55 G(his)-5.026 E(is unbound by def)144 456 Q(ault, b)-.1 E (ut usually bound to ESC\255[.)-.2 E F1(insert\255comment \(M\255#\))108 -468 Q F0 -.4(Wi)144 480 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 492 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 +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 (ginning of the line do not match the v)-.15 F .321(alue of)-.25 F F1 -(comment\255begin)2.821 E F0 2.822(,t)C .322(he v)-2.822 F .322(alue is) --.25 F .832(inserted, otherwise the characters in)144 516 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 +(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.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 540 Q F0 .84 -(causes this command to mak)3.34 F 3.339(et)-.1 G .839 -(he current line a shell comment.)-3.339 F .839(If a numeric ar)5.839 F +(wline had been typed.)-.25 F 1.468(The def)6.468 F 1.468(ault v)-.1 F +1.468(alue of)-.25 F F1(com-)3.968 E(ment\255begin)144 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 (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 .791(The w)144 576 R .791 -(ord before point is treated as a pattern for pathname e)-.1 F .792 +(ord \(M\255g\))-.1 E F0 .792(The w)144 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 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 .176(The w)144 612 R .176 +-.1 E F0 .175(The w)144 612 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 @@ -6057,226 +6062,226 @@ le completions.)2.5 E F1(glob\255expand\255w)108 600 Q(ord \(C\255x *\)) .872(the line is redra)144 672 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 .627 -(Print all of the functions and their k)144 708 R .927 -.15(ey b)-.1 H -.626(indings to the readline output stream.).15 F .626(If a numeric ar) -5.626 F(gu-)-.18 E +(ex)144 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(2017 June 23)148.175 E(50)197.335 E -0 Cg EP +(\214le.)2.5 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(50)192.895 +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/F1 10/Times-Bold@0 -SF(dump\255v)108 84 Q(ariables)-.1 E F0 1.799 +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.8(alues to the readline output stream.) --.25 F 1.8(If a)6.8 F .305(numeric ar)144 108 R .304 +(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 (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 .592(Print all of the readline k)144 144 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 156 Q +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 .528(gument is supplied, the output is formatted in such a w)-.18 F .528 -(ay that it can be made part of an)-.1 F F2(inputr)3.027 E(c)-.37 E F0 +(ay that it can be made part of an)-.1 F F2(inputr)3.028 E(c)-.37 E F0 (\214le.)144 168 Q F1(display\255shell\255v)108 180 Q (ersion \(C\255x C\255v\))-.1 E F0(Display v)144 192 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 .146(When w)108 +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 (gument to a command for which a completion speci\214cation \(a)-.18 F -F2(compspec)108 232.8 Q F0 3.829(\)h)C 1.329 -(as been de\214ned using the)-3.829 F F1(complete)3.829 E F0 -.2(bu) +F2(compspec)108 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) 3.829 G 1.329(iltin \(see).2 F/F3 9/Times-Bold@0 SF 1.329(SHELL B)3.829 -F(UIL)-.09 E 1.329(TIN COMMANDS)-.828 F F0(belo)3.579 E 1.328(w\), the) +F(UIL)-.09 E 1.329(TIN COMMANDS)-.828 F F0(belo)3.579 E 1.329(w\), the) -.25 F(programmable completion f)108 244.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 261.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 +(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 (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 .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 285.6 R .823 -(for the w)108 297.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 309.6 R .367(no compspec is found fo\ +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\ r the full pathname, an attempt is made to \214nd a compspec for the po\ -rtion)2.866 F(follo)108 321.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) +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 .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) 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 .464 +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 -.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 391.2 R .595 -(When the)5.595 F F13.095 E F0(or)3.095 E F13.095 E F0 .596 +.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 (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 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 -.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 +.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 -.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 -472.8 R F3(IFS)2.912 E F0 .412(special v)2.662 F .412 +.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 (ariable as delimiters.)-.25 F .412(Shell quoting is honored.)5.412 F -.413(Each w)5.412 F .413(ord is then e)-.1 F(xpanded)-.15 E .092 -(using brace e)108 484.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 +.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 (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 .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 +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.237 -(After these matches ha)108 537.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 549.6 R -.2 +(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 (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.875 E F4(,)A F3(COMP_POINT)5.625 E F4(,)A F3 -(COMP_KEY)108 561.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 -573.6 S .986(hell function is being in)-3.486 F -.2(vo)-.4 G -.1(ke).2 G +(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 .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.985 E .346 -(the function or command is in)108 585.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 597.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 609.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 621.6 R -.715(ainst the w)-.05 F .714(ord being completed is performed; the func\ +(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\ tion or command has complete free-)-.1 F(dom in generating the matches.) -108 633.6 Q(An)108 650.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 +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 -.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 .438(acilities, including)-.1 F(the)108 662.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 +(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 (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 .08(xt, an)-.15 F 2.58(yc)-.15 G .08 -(ommand speci\214ed with the)-2.58 F F12.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 703.2 -R .359(should print a list of completions, one per line, to the standar\ -d output.)2.859 F .358(Backslash may be used)5.359 F(to escape a ne)108 +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 -(2017 June 23)148.175 E(51)197.335 E 0 Cg EP +(2017 October 7)143.735 E(51)192.895 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 .376 +(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.877 E F0 .377(option is applied to the)2.877 F 3.182 -(list. The)108 96 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 108 R .522(ord being completed.)-.1 F 3.022(Al)5.522 G -(iteral)-3.022 E F1(&)3.022 E F0 .523 +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 (may be escaped with a backslash; the backslash is remo)3.022 F -.15(ve) --.15 G 3.023(db).15 G(efore)-3.023 E .85(attempting a match.)108 120 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 132 Q -.05(ga)-.15 G .764 +-.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 (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.265 E F1(nocase-)3.265 E(match)108 144 Q F0 +3.264(d. If).15 F(the)3.264 E F1(nocase-)3.264 E(match)108 144 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.087(,a)-.65 G .887 -.15(ny p)-3.087 H .587(re\214x and suf).15 +160.8 Q 3.086(,a)-.65 G .886 -.15(ny p)-3.086 H .586(re\214x and suf).15 F .587(\214x speci\214ed with the)-.25 F F13.087 E F0(and)3.087 E F13.087 E F0 .587(options are added to each member of the com-) 3.087 F(pletion list, and the result is returned to the readline comple\ -tion code as the list of possible completions.)108 172.8 Q .246 +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) -.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 .247(as supplied to)-.1 F +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 .462 -(If the)108 218.4 R F1 .462(\255o plusdirs)2.962 F F0 .462(option w) +(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.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 .559 -(By def)108 247.2 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 259.2 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 271.2 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 283.2 S 3.172(sd).1 G .672 -(e\214ned, the)-3.172 F F1(bash)3.172 E F0(def)3.172 E .671 +(atches are added to the results of the other actions.)-2.5 E .56 +(By def)108 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 (ault completions are attempted if the compspec generates no matches.) --.1 F .671(If the)5.671 F F13.171 E(default)108 295.2 Q F0 1.207 -(option w)3.706 F 1.207(as supplied to)-.1 F F1(complete)3.707 E F0 +-.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.207(when the compspec w)3.707 F 1.207(as de\214ned, readline')-.1 F -3.707(sd)-.55 G(ef)-3.707 E 1.207(ault completion)-.1 F +3.707(sd)-.55 G(ef)-3.707 E 1.206(ault completion)-.1 F (will be performed if the compspec \(and, if attempted, the def)108 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 .632(tions force r\ +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.762(to the v)108 348 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 360 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 376.8 -R .191(This is most useful when used in combina-)5.191 F 1.33 +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 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) 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 .665 -(being attempted \(supplied as the \214rst ar)108 424.8 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 +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 .083(This allo)5.083 F -.083(ws a set of)-.25 F(completions to be b)108 448.8 Q(uilt dynamicall\ +-.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\ y as completion is attempted, rather than being loaded all at once.)-.2 -E -.15(Fo)108 465.6 S 2.636(ri).15 G .137 -(nstance, assuming that there is a library of compspecs, each k)-2.636 F +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 .137(ept in a \214le corresponding to the name of)-.1 F (the command, the follo)108 477.6 Q(wing def)-.25 E (ault completion function w)-.1 E(ould load completions dynamically:)-.1 @@ -6285,209 +6290,208 @@ E/F2 10/Courier@0 SF(_completion_loader\(\))108 494.4 Q({)108 506.4 Q 6 (/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 -.372(When the)108 583.2 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 595.2 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 607.2 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 +.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 (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.066(ta).2 G 1.565(fter history e)-4.066 F 1.565 +S 4.065(ta).2 G 1.565(fter history e)-4.065 F 1.565 (xpansion is performed, subject to the v)-.15 F 1.565 (alues of the shell v)-.25 F(ariables)-.25 E F5(HISTIGNORE)4.065 E F0 -(and)3.815 E F5(HISTCONTR)108 643.2 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.) +(and)3.816 E F5(HISTCONTR)108 643.2 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.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 +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 (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 .658 -(lines speci\214ed by the v)108 684 R .658(alue of)-.25 F F5 +.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 (HISTFILESIZE)3.158 E F6(.)A F0(If)5.158 E F1(HISTFILESIZE)3.158 E F0 -.659(is unset, or set to null, a non-numeric)3.158 F -.25(va)108 696 S +.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.604 +(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 .151 -(stamps for the follo)108 720 R .151(wing history line.)-.25 F .151 +(wed immediately by a digit are interpreted as time-)-.25 F .15 +(stamps for the follo)108 720 R .15(wing history line.)-.25 F .151 (These timestamps are optionally displayed depending on the v)5.151 F -.15(alue of)-.25 F(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(52) -197.335 E 0 Cg EP +.151(alue of)-.25 F(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(52) +192.895 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(the)108 84 Q/F1 9 -/Times-Bold@0 SF(HISTTIMEFORMA)3.558 E(T)-.855 E F0 -.25(va)3.309 G +/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.059(lines are)3.309 F .159 -(copied from the history list to)108 96 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 -108 Q F0(under)2.581 E F1 .081(SHELL B)2.581 F(UIL)-.09 E .081 +($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 (TIN COMMANDS)-.828 F F0(belo)2.332 E .082 (w\), the lines are appended to the history \214le, otherwise the)-.25 F -.197(history \214le is o)108 120 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 132 R F1(HISTTIMEFORMA)3.083 E(T)-.855 E F0 -.25(va)2.834 G +.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 .584(riable is set, time stamps are written to the history \214le, mark) -.25 F .584(ed with the his-)-.1 F 1.148(tory comment character)108 144 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 +.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.877(,t)-.65 G -1.377(he history \214le is)-3.877 F .757 +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 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 (alue, or a numeric v)-.25 E -(alue less than zero, the history \214le is not truncated.)-.25 E .298 -(The b)108 196.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 208.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 +(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.001 F -.25(va) --.2 G .002(ilable in each edit-).25 F(ing mode that pro)108 232.8 Q -(vide access to the history list.)-.15 E 1.486(The shell allo)108 249.6 -R 1.486(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486 +(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 (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.485 E F1(HISTCONTR)3.985 -E(OL)-.27 E F0(and)3.735 E F1(HISTIGNORE)108 261.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 +-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 (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 (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.577 E F0 -.374(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 .373 -(wlines instead of semicolons.)-.25 F .373(See the)5.373 F .318 -(description of the)108 309.6 R F3(shopt)2.818 E F0 -.2(bu)2.818 G .318 +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 (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 .319 +(UIL)-.09 E .318(TIN COMMANDS)-.828 F F0 .318 (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 .611 -(The shell supports a history e)108 350.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 362.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 374.4 R F3(+H)4.514 E F0 2.014 +-.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 (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.013(SHELL B)4.513 F(UIL)-.09 E 2.013 +(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 .3 -.15(ve s)-.25 H(hells do not perform history e).15 E -(xpansion by def)-.15 E(ault.)-.1 E 1.305(History e)108 403.2 R 1.305 +(xpansion by def)-.15 E(ault.)-.1 E 1.306(History e)108 403.2 R 1.306 (xpansions introduce w)-.15 F 1.306(ords from the history list into the\ - input stream, making it easy to repeat)-.1 F .21 -(commands, insert the ar)108 415.2 R .21(guments to a pre)-.18 F .209 + 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 (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.163(History e)108 +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 .252 +read, before the shell breaks it into)-.15 F -.1(wo)108 456 S .251 (rds, and is performed on each line indi).1 F .251 -(vidually without taking quoting on pre)-.25 F .251 -(vious lines into account.)-.25 F(It)5.251 E(tak)108 468 Q .145 -(es place in tw)-.1 F 2.645(op)-.1 G 2.646(arts. The)-2.645 F .146(\214\ +(vidually without taking quoting on pre)-.25 F .252 +(vious lines into account.)-.25 F(It)5.252 E(tak)108 468 Q .146 +(es place in tw)-.1 F 2.646(op)-.1 G 2.646(arts. The)-2.646 F .146(\214\ rst is to determine which line from the history list to use during subs\ titution.)2.646 F .766(The second is to select portions of that line fo\ -r inclusion into the current one.)108 480 R .766 -(The line selected from the)5.766 F .253(history is the)108 492 R/F5 10 -/Times-Italic@0 SF -.15(ev)2.753 G(ent).15 E F0 2.753(,a)C .253 +r inclusion into the current one.)108 480 R .767 +(The line selected from the)5.767 F .254(history is the)108 492 R/F5 10 +/Times-Italic@0 SF -.15(ev)2.754 G(ent).15 E F0 2.753(,a)C .253 (nd the portions of that line that are acted upon are)-2.753 F F5(wor) -2.753 E(ds)-.37 E F0 5.253(.V)C(arious)-6.363 E F5(modi\214er)2.754 E(s) --.1 E F0 .254(are a)2.754 F -.25(va)-.2 G(il-).25 E .539 -(able to manipulate the selected w)108 504 R 3.039(ords. The)-.1 F .538 -(line is brok)3.038 F .538(en into w)-.1 F .538(ords in the same f)-.1 F -.538(ashion as when reading)-.1 F .572(input, so that se)108 516 R -.15 -(ve)-.25 G(ral).15 E F5(metac)3.072 E(har)-.15 E(acter)-.15 E F0 .572 +2.753 E(ds)-.37 E F0 5.253(.V)C(arious)-6.363 E F5(modi\214er)2.753 E(s) +-.1 E F0 .253(are a)2.753 F -.25(va)-.2 G(il-).25 E .538 +(able to manipulate the selected w)108 504 R 3.038(ords. The)-.1 F .538 +(line is brok)3.038 F .538(en into w)-.1 F .539(ords in the same f)-.1 F +.539(ashion as when reading)-.1 F .573(input, so that se)108 516 R -.15 +(ve)-.25 G(ral).15 E F5(metac)3.073 E(har)-.15 E(acter)-.15 E F0 .572 (-separated w)B .572(ords surrounded by quotes are considered one w)-.1 -F 3.073(ord. His-)-.1 F .356(tory e)108 528 R .355 +F 3.072(ord. His-)-.1 F .355(tory e)108 528 R .355 (xpansions are introduced by the appearance of the history e)-.15 F .355 -(xpansion character)-.15 F 2.855(,w)-.4 G .355(hich is)-2.855 F F3(!) -3.688 E F0 .355(by def)3.688 F(ault.)-.1 E .79(Only backslash \()108 540 -R F3(\\).833 E F0 3.29(\)a).833 G .79 -(nd single quotes can quote the history e)-3.29 F .79 -(xpansion character)-.15 F 3.291(,b)-.4 G .791(ut the history e)-3.491 F +(xpansion character)-.15 F 2.855(,w)-.4 G .356(hich is)-2.855 F F3(!) +3.689 E F0 .356(by def)3.689 F(ault.)-.1 E .791(Only backslash \()108 +540 R F3(\\).833 E F0 3.291(\)a).833 G .79 +(nd single quotes can quote the history e)-3.291 F .79 +(xpansion character)-.15 F 3.29(,b)-.4 G .79(ut the history e)-3.49 F (xpansion)-.15 E .789(character is also treated as quoted if it immedia\ tely precedes the closing double quote in a double-quoted)108 552 R (string.)108 564 Q(Se)108 580.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 592.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 +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 +(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F3(\()3.163 E F0(will also inhibit e)108 604.8 Q(xpansion.)-.15 E(Se)108 621.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 633.6 R F3 +(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 633.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\ +-.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 645.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 657.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 669.6 -Q(eedit)-.18 E F0 1.202(shell option is enabled, a f)3.702 F 1.202 +5.46(.I)-.55 G .46(nstead, the e)-5.46 F .46(xpanded line)-.15 F 1.515 +(is reloaded into the)108 657.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 669.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 681.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 +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 693.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 +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 705.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 722.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(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(53)197.335 E 0 Cg EP +(2017 October 7)143.735 E(53)192.895 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 1.146 -(description of)108 84 R/F1 10/Times-Bold@0 SF(histchars)3.646 E F0(abo) -3.646 E 1.446 -.15(ve u)-.15 H(nder).15 E F1 1.146(Shell V)3.646 F -(ariables)-.92 E F0 3.646(\). The)B 1.147 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.147 +(description of)108 84 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 96 Q F1 -(Ev)87 112.8 Q(ent Designators)-.1 E F0 .205(An e)108 124.8 R -.15(ve) +(Ev)87 112.8 Q(ent Designators)-.1 E F0 .204(An e)108 124.8 R -.15(ve) -.25 G .204(nt designator is a reference to a command line entry in the\ - history list.).15 F .204(Unless the reference is abso-)5.204 F(lute, e) + history list.).15 F .205(Unless the reference is abso-)5.204 F(lute, e) 108 136.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 153.6 -Q F0 1.607(Start a history substitution, e)144 153.6 R 1.607 +Q F0 1.608(Start a history substitution, e)144 153.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.608(line, carriage return, = or \().25 F +(,n)C -.25(ew)-4.107 G 1.607(line, carriage return, = or \().25 F (\(when the)144 165.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 177.6 Q/F2 10/Times-Italic@0 SF(n)A F0 @@ -6503,42 +6507,42 @@ n in the history list containing)144 249.6 R F2(string)144 261.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 278.6 Q F2(string1)-5 I F3(^)5 I F2 -(string2)-5 I F3(^)5 I F0 .784(Quick substitution.)144 285.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 297.6 S(!!:s/).74 E F2 +(string2)-5 I F3(^)5 I F0 .783(Quick substitution.)144 285.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 297.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 309.6 Q F0 (The entire command line typed so f)144 309.6 Q(ar)-.1 E(.)-.55 E F1 --.75(Wo)87 326.4 S(rd Designators).75 E F0 -.8(Wo)108 338.4 S 1.313 +-.75(Wo)87 326.4 S(rd Designators).75 E F0 -.8(Wo)108 338.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 350.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 350.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 362.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 374.4 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 362.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 374.4 Q F1 2.5(0\()108 391.2 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 403.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 415.2 Q F0(The)144 415.2 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E F1(^)108 427.2 Q F0(The \214rst ar)144 427.2 Q 2.5(gument. That)-.18 F -(is, w)2.5 E(ord 1.)-.1 E F1($)108 439.2 Q F0 .064(The last w)144 439.2 -R 2.564(ord. This)-.1 F .064(is usually the last ar)2.564 F .064 +(is, w)2.5 E(ord 1.)-.1 E F1($)108 439.2 Q F0 .063(The last w)144 439.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 451.2 Q(ord in the line.)-.1 E +.064(ord if there is only)-.1 F(one w)144 451.2 Q(ord in the line.)-.1 E F1(%)108 463.2 Q F0(The w)144 463.2 Q(ord matched by the most recent `?) -.1 E F2(string)A F0(?' search.)A F2(x)108.77 475.2 Q F1A F2(y)A F0 2.5(Ar)144 475.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 487.2 Q F0 -.315(All of the w)144 487.2 R .315(ords b)-.1 F .315(ut the zeroth.)-.2 +.316(All of the w)144 487.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 499.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 499.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 511.2 Q F0(Abbre)144 511.2 Q(viates)-.25 E F2(x\255$)2.5 E F0(.)A F1 <78ad>108 523.2 Q F0(Abbre)144 523.2 Q(viates)-.25 E F2(x\255$)2.5 E F0 @@ -6546,9 +6550,9 @@ F .315(This is a synon)5.315 F .315(ym for `)-.15 F F2(1\255$)A F0 2.815 (ord.)-.1 E(If a w)108 540 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 556.8 Q F0 .184(After the optional w)108 568.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 +(Modi\214ers)87 556.8 Q F0 .183(After the optional w)108 568.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 580.8 Q F1(h)108 597.6 Q F0(Remo)144 597.6 Q .3 -.15(ve a t)-.15 H (railing \214lename component, lea).15 E(ving only the head.)-.2 E F1(t) @@ -6565,21 +6569,21 @@ E -.15(ve)-.25 G(nt speci\214cation, the pre).15 E (Quote the substituted w)144 669.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 681.6 Q F2(old)A F1(/)A F2(ne)A(w)-.15 E -F1(/)A F0(Substitute)144 693.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) +F1(/)A F0(Substitute)144 693.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 705.6 R .617 +.221(elimiter can be used in place)-2.721 F .616(of /.)144 705.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 +5.616 F -.15(ve)-.25 G .617(nt line.).15 F .617(The delimiter may)5.617 F .666(be quoted in)144 717.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 1.595(single backslash will quote the &.)144 729.6 R -(If)6.595 E F2(old)4.325 E F0 1.594(is null, it is set to the last)4.865 -F F2(old)4.324 E F0 1.594(substituted, or)4.864 F 4.094(,i)-.4 G 4.094 -(fn)-4.094 G(o)-4.094 E(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(54) -197.335 E 0 Cg EP +F0 5.666(.A).77 G 1.594(single backslash will quote the &.)144 729.6 R +(If)6.594 E F2(old)4.324 E F0 1.595(is null, it is set to the last)4.864 +F F2(old)4.325 E F0 1.595(substituted, or)4.865 F 4.095(,i)-.4 G 4.095 +(fn)-4.095 G(o)-4.095 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E +(54)192.895 E 0 Cg EP %%Page: 55 55 %%BeginPageSetup BP @@ -6590,43 +6594,43 @@ BP /Times-Italic@0 SF(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 96 Q F0 (Repeat the pre)144 96 Q(vious substitution.)-.25 E F2(g)108 108 Q F0 -.397(Cause changes to be applied o)144 108 R -.15(ve)-.15 G 2.897(rt).15 -G .398(he entire e)-2.897 F -.15(ve)-.25 G .398(nt line.).15 F .398 -(This is used in conjunction with `)5.398 F F2(:s)A F0 2.898('\()C -(e.g.,)-2.898 E(`)144 120 Q F2(:gs/)A F1(old)A F2(/)A F1(ne)A(w)-.15 E -F2(/)A F0 1.219('\) or `)B F2(:&)A F0 3.719('. If)B 1.219(used with `) -3.719 F F2(:s)A F0 1.218(', an)B 3.718(yd)-.15 G 1.218 -(elimiter can be used in place of /, and the \214nal)-3.718 F .089 +.398(Cause changes to be applied o)144 108 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 120 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 132 R --.15(ve)-.25 G .09(nt line.).15 F(An)5.09 E F2(a)2.59 E F0 .09 -(may be used as a synon)2.59 F .09(ym for)-.15 F F2(g)144 144 Q F0(.)A +-.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 144 Q F0(.)A F2(G)108 156 Q F0(Apply the follo)144 156 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 172.8 Q(UIL)-.11 E -(TIN COMMANDS)-1.007 E F0 .063(Unless otherwise noted, each b)108 184.8 +(TIN COMMANDS)-1.007 E F0 .062(Unless otherwise noted, each b)108 184.8 R .062(uiltin command documented in this section as accepting options p\ receded by)-.2 F F2108 196.8 Q F0(accepts)3.077 E F23.077 E F0 .577(to signify the end of the options.)3.077 F(The)5.577 E F2(:)3.077 E F0(,)A F2(true)3.077 E F0(,)A F2(false)3.077 E F0 3.077(,a)C(nd)-3.077 E F2(test)3.077 E F0(/)A F2([)A F0 -.2(bu)3.077 G .577 -(iltins do not accept options).2 F .462(and do not treat)108 208.8 R F2 +(iltins do not accept options).2 F .461(and do not treat)108 208.8 R F2 2.961 E F0(specially)2.961 E 5.461(.T)-.65 G(he)-5.461 E F2(exit) 2.961 E F0(,)A F2(logout)2.961 E F0(,)A F2 -.18(re)2.961 G(tur).18 E(n) -.15 E F0(,)A F2(br)2.961 E(eak)-.18 E F0(,)A F2(continue)2.961 E F0(,)A F2(let)2.961 E F0 2.961(,a)C(nd)-2.961 E F2(shift)2.961 E F0 -.2(bu) -2.961 G .461(iltins accept and).2 F .26(process ar)108 220.8 R .26 -(guments be)-.18 F .26(ginning with)-.15 F F22.76 E F0 .261 -(without requiring)2.76 F F22.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 +2.962 G .462(iltins accept and).2 F .261(process ar)108 220.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 232.8 R 1.154(guments be)-.18 F 1.154(ginning with)-.15 F F2 3.654 E F0 1.154(as in)3.654 F -.25(va)-.4 G 1.154 (lid options and require).25 F F23.654 E F0(to)3.654 E(pre)108 244.8 Q -.15(ve)-.25 G(nt this interpretation.).15 E F2(:)108 262.8 Q F0 -([)2.5 E F1(ar)A(guments)-.37 E F0(])A .451(No ef)144 274.8 R .451 +([)2.5 E F1(ar)A(guments)-.37 E F0(])A .452(No ef)144 274.8 R .452 (fect; the command does nothing be)-.25 F .452(yond e)-.15 F(xpanding) --.15 E F1(ar)3.282 E(guments)-.37 E F0 .452(and performing an)3.222 F -2.952(ys)-.15 G(peci\214ed)-2.952 E 2.5(redirections. The)144 286.8 R +-.15 E F1(ar)3.282 E(guments)-.37 E F0 .451(and performing an)3.221 F +2.951(ys)-.15 G(peci\214ed)-2.951 E 2.5(redirections. The)144 286.8 R (return status is zero.)2.5 E F2(.)110.5 303.6 Q F1(\214lename)6.666 E F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A F2(sour)108 315.6 Q(ce)-.18 E F1(\214lename)2.5 E F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A 1.02 @@ -6639,67 +6643,67 @@ F1(\214lename)2.5 E F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A 1.02 .608(names in)144 351.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 363.6 -R -.15(xe)-.15 G 3.332(cutable. When).15 F F2(bash)3.332 E F0 .832 -(is not in)3.332 F F1 .832(posix mode)3.332 F F0 3.332(,t)C .833 -(he current directory is searched if no)-3.332 F .982 +-5.608 F F4 -.666(PA)3.108 G(TH)-.189 E F0 .833(need not be e)144 363.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 375.6 R F4 -.666(PA)3.481 G(TH)-.189 E/F5 9 /Times-Roman@0 SF(.)A F0 .981(If the)5.481 F F2(sour)3.481 E(cepath)-.18 E F0 .981(option to the)3.481 F F2(shopt)3.481 E F0 -.2(bu)3.481 G .981 -(iltin command is turned of).2 F .981(f, the)-.25 F F4 -.666(PA)144 -387.6 S(TH)-.189 E F0 .112(is not searched.)2.362 F .112(If an)5.112 F +(iltin command is turned of).2 F .982(f, the)-.25 F F4 -.666(PA)144 +387.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 399.6 Q F0 1.697(is e)4.197 F -.15(xe)-.15 G 4.197 +(\214lename)144 399.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 F24.197 E F0 1.696(option is)4.197 F -(enabled,)144 411.6 Q F2(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 F2(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 411.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 F2(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 +(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 423.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 435.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 F2(sour)3.935 E(ce)-.18 E F0 3.763 +(alue is retained when)-4.185 F F2(sour)3.935 E(ce)-.18 E F0 3.762 (completes. The)144 447.6 R 1.262 -(return status is the status of the last command e)3.763 F 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 459.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 476.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 488.4 Q F0 2.724(with no ar)5.224 F 2.724 +(..])-2.5 E F2(Alias)144 488.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.225 E +(option prints the list of aliases in the form)5.224 F F2(alias)5.224 E F1(name)144 500.4 Q F0(=)A F1(value)A F0 .58(on standard output.)3.08 F .58(When ar)5.58 F .58 (guments are supplied, an alias is de\214ned for each)-.18 F F1(name) -3.08 E F0(whose)144 512.4 Q F1(value)2.508 E F0 .009(is gi)2.508 F -.15 +3.08 E F0(whose)144 512.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 +(ord to be check)-.1 F .008(ed for alias substi-)-.1 F .579 (tution when the alias is e)144 524.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 .578(is sup-)3.078 -F 1.313(plied, the name and v)144 536.4 R 1.314 +(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 536.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.314(is gi)3.814 F --.15(ve)-.25 G 3.814(nf).15 G(or)-3.814 E +(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 548.4 Q F2(bg)108 565.2 Q F0([) -2.5 E F1(jobspec)A F0(...])2.5 E .745(Resume each suspended job)144 -577.2 R F1(jobspec)3.245 E F0 .745 -(in the background, as if it had been started with)3.245 F F2(&)3.244 E -F0 5.744(.I)C(f)-5.744 E F1(job-)4.984 E(spec)144 589.2 Q F0 .671 -(is not present, the shell')3.481 F 3.171(sn)-.55 G .672(otion of the) --3.171 F F1(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F2 -(bg)5.672 E F1(jobspec)4.912 E F0 .672(returns 0 unless run)3.482 F .419 +2.5 E F1(jobspec)A F0(...])2.5 E .744(Resume each suspended job)144 +577.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 589.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 601.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 F1(jobspec)2.918 E F0 -.1(wa)2.918 G 2.918(sn).1 G -(ot)-2.918 E(found or w)144 613.2 Q(as started without job control.)-.1 +(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 613.2 Q(as started without job control.)-.1 E F2(bind)108 630 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 642 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 @@ -6712,17 +6716,17 @@ F2-2.5 E F1 -.1(ke)2.5 G(yseq)-.2 E F0(])A F2(bind)108 654 Q F0([) G(ymap)-.2 E F0(])A F1 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F1 (function\255name)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 -.37(re)C -(adline\255command).37 E F0 .238(Display current)144 702 R F2 -.18(re) -2.738 G(adline).18 E F0 -.1(ke)2.738 G 2.738(ya)-.05 G .239 -(nd function bindings, bind a k)-2.738 F .539 -.15(ey s)-.1 H .239 -(equence to a).15 F F2 -.18(re)2.739 G(adline).18 E F0 .239(function or) -2.739 F .476(macro, or set a)144 714 R F2 -.18(re)2.976 G(adline).18 E -F0 -.25(va)2.976 G 2.976(riable. Each).25 F .476(non-option ar)2.976 F -.475(gument is a command as it w)-.18 F .475(ould appear in)-.1 F F1 -(.inputr)144 726 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(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(55)197.335 E 0 Cg EP +(adline\255command).37 E F0 .239(Display current)144 702 R F2 -.18(re) +2.739 G(adline).18 E F0 -.1(ke)2.739 G 2.739(ya)-.05 G .239 +(nd function bindings, bind a k)-2.739 F .539 -.15(ey s)-.1 H .238 +(equence to a).15 F F2 -.18(re)2.738 G(adline).18 E F0 .238(function or) +2.738 F .475(macro, or set a)144 714 R F2 -.18(re)2.975 G(adline).18 E +F0 -.25(va)2.975 G 2.975(riable. Each).25 F .476(non-option ar)2.976 F +.476(gument is a command as it w)-.18 F .476(ould appear in)-.1 F F1 +(.inputr)144 726 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(GNU Bash 4.4)72 768 Q +(2017 October 7)143.735 E(55)192.895 E 0 Cg EP %%Page: 56 56 %%BeginPageSetup BP @@ -6732,16 +6736,16 @@ BP (re\255read\255init\255\214le'. Options,)144 84 R(if supplied, ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E/F1 10 /Times-Bold@0 SF144 96 Q/F2 10/Times-Italic@0 SF -.1(ke)2.5 G -(ymap)-.2 E F0(Use)180 108 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 120 S(ymap)-.2 E F0 3.192(names are)5.882 F F2 3.192 -(emacs, emacs\255standar)5.692 F 3.193 +(ymap)-.2 E F0(Use)180 108 Q F2 -.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 F2 -.1(ke) +180 120 S(ymap)-.2 E F0 3.193(names are)5.883 F F2 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 132 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 +(vi\255command)180 132 Q F0 4.113(,a)C(nd)-4.113 E F2(vi\255insert)4.113 +E F0(.).68 E F2(vi)6.613 E F0 1.613(is equi)4.113 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 144 Q(ym\);)-.15 E F2 +-.1 E F0 1.614(is also a syn-)4.114 F(on)180 144 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 156 Q F0 (List the names of all)180 156 Q F1 -.18(re)2.5 G(adline).18 E F0 @@ -6774,164 +6778,164 @@ E F2(function)2.5 E F0(.)A F1144 300 Q F2(function)2.5 E F0 180 360 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 372 Q F0 1.764(is e)4.264 F -.15(xe)-.15 G 1.765 +4.325 E(mand)180 372 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 384 S(adline).18 E F0 1.353(line b)3.853 F(uf)-.2 E 1.353 +-.18(re)180 384 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 -396 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 +396 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 408 Q/F4 9 +(READLINE_LINE)4.511 E F0(or)4.261 E F3(READLINE_POINT)180 408 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 420 -Q F0 .83(List all k)180 420 R 1.13 -.15(ey s)-.1 H .829 +Q F0 .829(List all k)180 420 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 432 Q(The return v) 144 448.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 465.6 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .054 -(Exit from within a)144 477.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 +E F1(br)108 465.6 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .055 +(Exit from within a)144 477.6 R F1 -.25(fo)2.555 G(r).25 E F0(,)A F1 +(while)2.555 E F0(,)A F1(until)2.555 E F0 2.555(,o)C(r)-2.555 E F1 (select)2.555 E F0 2.555(loop. If)2.555 F F2(n)2.555 E F0 .055 (is speci\214ed, break)2.555 F F2(n)2.555 E F0(le)2.555 E -.15(ve)-.25 G -(ls.).15 E F2(n)5.415 E F0 .055(must be)2.795 F/F5 10/Symbol SF2.555 -E F0(1.)2.555 E(If)144 489.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 +(ls.).15 E F2(n)5.414 E F0 .054(must be)2.794 F/F5 10/Symbol SF2.554 +E F0(1.)2.554 E(If)144 489.6 Q F2(n)3.074 E F0 .215(is greater than the\ + number of enclosing loops, all enclosing loops are e)2.954 F 2.715 +(xited. The)-.15 F .215(return v)2.715 F(alue)-.25 E(is 0 unless)144 501.6 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F1 -.2 (bu)108 518.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 530.4 Q .792 -(ecute the speci\214ed shell b)-.15 F .792(uiltin, passing it)-.2 F F2 +F2(ar)A(guments)-.37 E F0(])A(Ex)144 530.4 Q .793 +(ecute the speci\214ed shell b)-.15 F .793(uiltin, passing it)-.2 F F2 (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 -542.4 R .615(uiltin, retaining the functionality of)-.2 F .57(the b)144 +542.4 R .616(uiltin, retaining the functionality of)-.2 F .57(the b)144 554.4 R .57(uiltin within the function.)-.2 F(The)5.57 E F1(cd)3.07 E F0 -.2(bu)3.07 G .57(iltin is commonly rede\214ned this w).2 F(ay)-.1 E 5.57(.T)-.65 G .57(he return status)-5.57 F(is f)144 566.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 583.2 Q F0([)2.5 E F2 -.2(ex)C(pr) -.2 E F0(])A .254(Returns the conte)144 595.2 R .254(xt of an)-.15 F +.2 E F0(])A .253(Returns the conte)144 595.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 607.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 F1(.)2.754 E F0(or)2.754 E F1(sour)144 607.2 Q +(ce)-.18 E F0 -.2(bu)2.825 G 2.825(iltins\). W).2 F(ithout)-.4 E F2 -.2 +(ex)2.825 G(pr).2 E F0(,)A F1(caller)2.825 E F0 .324 (displays the line number and source \214lename of the current)2.824 F -.254(subroutine call.)144 619.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 619.2 R .253(If a non-ne)5.253 F -.05(ga)-.15 +G(ti).05 E .553 -.15(ve i)-.25 H(nte).15 E .253(ger is supplied as)-.15 +F F2 -.2(ex)2.753 G(pr).2 E F0(,)A F1(caller)2.753 E F0 .254 +(displays the line number)2.754 F 2.754(,s)-.4 G(ub-)-2.754 E 1.327(rou\ tine name, and source \214le corresponding to that position in the curr\ -ent e)144 631.2 R -.15(xe)-.15 G 1.328(cution call stack.).15 F .001 -(This e)144 643.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 655.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 667.2 Q +ent e)144 631.2 R -.15(xe)-.15 G 1.327(cution call stack.).15 F(This e) +144 643.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 655.2 R .52(return v)3.02 F .52 +(alue is 0 unless the shell is not e)-.25 F -.15(xe)-.15 G .519 +(cuting a subroutine call or).15 F F2 -.2(ex)3.019 G(pr).2 E F0 .519 +(does not corre-)3.019 F(spond to a v)144 667.2 Q (alid position in the call stack.)-.25 E F1(cd)108 684 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 696 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 708 R -3.535(ault. An)-.1 F 3.535(ya)-.15 G 1.035(dditional ar)-3.535 F 1.035 +(dir)A F0(])A .321(Change the current directory to)144 696 R F2(dir) +2.821 E F0 5.321(.i)C(f)-5.321 E F2(dir)2.821 E F0 .322 +(is not supplied, the v)2.821 F .322(alue of the)-.25 F F3(HOME)2.822 E +F0 .322(shell v)2.572 F .322(ariable is)-.25 F 1.036(the def)144 708 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 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 720 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(GNU Bash 4.4)72 768 -Q(2017 June 23)148.175 E(56)197.335 E 0 Cg EP +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 .849 +(the search path for the directory containing)144 720 R F2(dir)3.349 E +F0 3.35(:e).73 G .85(ach directory name in)-3.35 F F3(CDP)3.35 E -.855 +(AT)-.666 G(H).855 E F0 .85(is searched for)3.1 F(GNU Bash 4.4)72 768 Q +(2017 October 7)143.735 E(56)192.895 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-Italic@0 SF(dir)144 84 Q F0 5.664(.A)C(lternati)-5.664 E .964 +/Times-Italic@0 SF(dir)144 84 Q F0 5.665(.A)C(lternati)-5.665 E .965 -.15(ve d)-.25 H .665(irectory names in).15 F/F2 9/Times-Bold@0 SF(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(in)144 96 Q F2(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 +(are separated by a colon \(:\).)2.915 F 3.165(An)5.665 G .664 +(ull directory name)-3.165 F(in)144 96 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.512 E F0(be)4.892 E 1.662 +-.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 108 Q -.855(AT)-.666 G -(H).855 E F0 .19(is not used.)2.44 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 .191 -(ysical directory structure by resolving)-.05 F 1.12 +(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 120 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 132 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 144 R F1(..) +-.25 F .443(ing the link after processing instances of)144 144 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.943(sp)-2.943 G .443(rocessed by remo)-2.943 F(ving)-.15 +(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 156 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.466(If the)144 168 R F3 -3.966 E F0 1.466(option is supplied with)3.966 F F33.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 +F .744(ginning of)-.15 F F1(dir)3.244 E F0(.)A 1.465(If the)144 168 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 180 R F3(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 192 R F32.837 E F0 .336 -(option presents the e)2.836 F .336(xtended attrib)-.15 F .336 +F0 .468(will return an unsuccessful status.)2.968 F .467(On systems) +5.467 F .336(that support it, the)144 192 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 204 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 216 R F2(CDP)2.607 E -.855(AT)-.666 G -(H).855 E F0 .107(is used, or if)2.357 F F32.607 E F0 .106 -(is the \214rst ar)2.607 F .106(gument, and the directory change)-.18 F +.106(empty directory name from)144 216 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 228 R 2.538(ww) -.25 G .038(orking directory is written to the standard output.)-2.638 F (The return v)144 240 Q(alue is true if the directory w)-.25 E (as successfully changed; f)-.1 E(alse otherwise.)-.1 E F3(command)108 256.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 268.8 Q F1(command)2.765 E F0(with) -3.335 E F1(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 280.8 R -F2 -.666(PA)3.001 G(TH)-.189 E F0 .502(are e)2.751 F -.15(xe)-.15 G +(ar)A(g)-.37 E F0(...])2.5 E(Run)144 268.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 280.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 .502(n, the search for).15 F F1(command)3.202 E -F0(is)3.772 E .4(performed using a def)144 292.8 R .4(ault v)-.1 F .4 -(alue for)-.25 F F2 -.666(PA)2.9 G(TH)-.189 E F0 .399 +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 292.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 304.8 R F32.674 E F0(or)2.674 E F3 -2.674 E F0 .175(option is supplied, a description of)2.674 F F1 -(command)2.875 E F0 .175(is printed.)3.445 F(The)5.175 E F32.675 E -F0 .175(option causes)2.675 F 3.318(as)144 316.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 F1(command)3.617 E F0 .817(to be displayed; the)4.087 -F F3144 328.8 Q F0 .249(option produces a more v)2.749 F .249 -(erbose description.)-.15 F .249(If the)5.249 F F32.749 E F0(or) -2.749 E F32.75 E F0 .25(option is supplied, the e)2.75 F .25 -(xit status)-.15 F 1.005(is 0 if)144 340.8 R F1(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 +5.4 E .175(either the)144 304.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 316.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 328.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 340.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 352.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 F3(command)4.099 E F0 -.2(bu)144 364.8 S +(command)144.2 352.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 364.8 S (iltin is the e).2 E(xit status of)-.15 E F1(command)2.5 E F0(.).77 E F3 (compgen)108 381.6 Q F0([)2.5 E F1(option)A F0 2.5(][)C F1(wor)-2.5 E(d) --.37 E F0(])A .013(Generate possible completion matches for)144 393.6 R +-.37 E F0(])A .012(Generate possible completion matches for)144 393.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.512(yo)-.15 G(ption)-2.512 E .981 -(accepted by the)144 405.6 R F3(complete)3.481 E F0 -.2(bu)3.481 G .981 +E F0 .013(s, which may be an)B 2.513(yo)-.15 G(ption)-2.513 E .982 +(accepted by the)144 405.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 .982(nd write the matches to the) --3.481 F .131(standard output.)144 417.6 R .131(When using the)5.131 F -F32.631 E F0(or)2.631 E F32.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 429.6 Q(acilities, while a)-.1 E -.25(va)-.2 G +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 417.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 429.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 453.6 R .352 (ay as if the programmable completion code had gen-)-.1 F .02(erated th\ @@ -6941,50 +6945,50 @@ em directly from a completion speci\214cation with the same \215ags.)144 (will be displayed.)2.5 E(The return v)144 501.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 F3 -(complete)108 518.4 Q F0([)3.728 E F3(\255abcdefgjksuv)A F0 3.728(][)C -F3-3.728 E F1(comp-option)3.728 E F0 3.728(][)C F3(\255DE)-3.728 E +(complete)108 518.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.729(][)C F3-3.729 E F1(wor)3.729 -E(dlist)-.37 E F0 3.729(][)C F3-3.729 E F1(func-)3.729 E(tion)108 +-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 530.4 Q F0 2.5(][)C F3-2.5 E F1(command)2.5 E F0(])A([)144 542.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 554.4 Q F0([)2.5 E F3(\255DE)A F0 2.5(][)C F1(name)-2.5 E F0(...])2.5 E -.634(Specify ho)144 566.4 R 3.134(wa)-.25 G -.18(rg)-3.134 G .634 -(uments to each).18 F F1(name)3.134 E F0 .634(should be completed.)3.134 -F .633(If the)5.634 F F33.133 E F0 .633 -(option is supplied, or if no)3.133 F .139(options are supplied, e)144 +.633(Specify ho)144 566.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 578.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 590.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.346 +F .139(ay that allo)-.1 F .139(ws them to be)-.25 F .31 +(reused as input.)144 590.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 602.4 R(The)6.347 E -F33.847 E F0 1.347(option indicates that the remaining options) +F33.847 E F0 1.346(option indicates that the remaining options) 3.847 F .5(and actions should apply to the `)144 614.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 626.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 .065 +(option indicates that)3.455 F .064 (the remaining options and actions should apply to `)144 638.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 650.4 Q 1.437 +(`empty')-.74 E 2.565('c)-.74 G .065 +(ommand completion; that is, comple-)-2.565 F +(tion attempted on a blank line.)144 650.4 Q 1.438 (The process of applying these completion speci\214cations when w)144 -674.4 R 1.438(ord completion is attempted is)-.1 F(described abo)144 +674.4 R 1.437(ord completion is attempted is)-.1 F(described abo)144 686.4 Q .3 -.15(ve u)-.15 H(nder).15 E F3(Pr)2.5 E -(ogrammable Completion)-.18 E F0(.)A .556 -(Other options, if speci\214ed, ha)144 710.4 R .856 -.15(ve t)-.2 H .555 +(ogrammable Completion)-.18 E F0(.)A .555 +(Other options, if speci\214ed, ha)144 710.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 F33.055 E F0(,)A F33.055 E F0 3.055 -(,a)C(nd)-3.055 E F33.055 E F0 2.741(options \(and, if necessary) -144 722.4 R 5.241(,t)-.65 G(he)-5.241 E F35.241 E F0(and)5.241 E -F35.241 E F0 2.742 +(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 2.742(options \(and, if necessary) +144 722.4 R 5.242(,t)-.65 G(he)-5.242 E F35.242 E F0(and)5.241 E +F35.241 E F0 2.741 (options\) should be quoted to protect them from)5.241 F(GNU Bash 4.4)72 -768 Q(2017 June 23)148.175 E(57)197.335 E 0 Cg EP +768 Q(2017 October 7)143.735 E(57)192.895 E 0 Cg EP %%Page: 58 58 %%BeginPageSetup BP @@ -6994,26 +6998,26 @@ BP (pansion before the).15 E/F1 10/Times-Bold@0 SF(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 96 Q/F2 10/Times-Italic@0 SF(comp-option)2.5 E F0(The)184 108 Q F2 -(comp-option)2.791 E F0 .291(controls se)2.791 F -.15(ve)-.25 G .291 +(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 120 Q F2(comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 132 Q F0 .281(Perform the rest of the def)224 144 R(ault)-.1 E F1(bash) 2.781 E F0 .281(completions if the compspec generates no)2.781 F -(matches.)224 156 Q F1(default)184 168 Q F0 2.876(Use readline')224 168 -R 5.376(sd)-.55 G(ef)-5.376 E 2.875 +(matches.)224 156 Q F1(default)184 168 Q F0 2.875(Use readline')224 168 +R 5.375(sd)-.55 G(ef)-5.375 E 2.876 (ault \214lename completion if the compspec generates no)-.1 F(matches.) 224 180 Q F1(dir)184 192 Q(names)-.15 E F0(Perform directory name compl\ etion if the compspec generates no matches.)224 204 Q F1(\214lenames)184 216 Q F0 -.7(Te)224 228 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 +\214lenames, so it can perform an).7 F 2.636<798c>-.15 G(le-)-2.636 E .134(name\255speci\214c processing \(lik)224 240 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 252 R .45 (Intended to be used with shell)5.45 F(functions.)224 264 Q F1(noquote) 184 276 Q F0 -.7(Te)224 276 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 +3.314(ya)-.15 G .815(re \214lenames \(quoting)-3.314 F (\214lenames is the def)224 288 Q(ault\).)-.1 E F1(nosort)184 300 Q F0 -.7(Te)224 300 S(ll readline not to sort the list of possible completio\ ns alphabetically).7 E(.)-.65 E F1(nospace)184 312 Q F0 -.7(Te)224 312 S @@ -7021,7 +7025,7 @@ ns alphabetically).7 E(.)-.65 E F1(nospace)184 312 Q F0 -.7(Te)224 312 S F .22(ords completed at the end)-.1 F(of the line.)224 324 Q F1 (plusdirs)184 336 Q F0 1.985(After an)224 336 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 348 R 3.084(ym)-.15 G .584 +.584(completion is attempted and an)224 348 R 3.084(ym)-.15 G .584 (atches are added to the results of the other)-3.084 F(actions.)224 360 Q F1144 372 Q F2(action)2.5 E F0(The)184 384 Q F2(action)2.5 E F0 (may be one of the follo)2.5 E @@ -7056,7 +7060,7 @@ Q(en from the \214le speci\214ed by the)-.1 E/F3 9/Times-Bold@0 SF Q(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(setopt)184 708 Q F0 -1.11(Va)224 708 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 -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(58)197.335 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(58)192.895 E 0 Cg EP %%Page: 59 59 %%BeginPageSetup BP @@ -7071,103 +7075,103 @@ SF(shopt)184 84 Q F0(Shell option names as accepted by the)224 84 Q F1 (May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 132 S (riable).1 E F0(Names of all shell v)224 132 Q 2.5(ariables. May)-.25 F (also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 144 Q/F2 -10/Times-Italic@0 SF(command)2.5 E(command)184 156 Q F0 1.056(is e)3.556 -F -.15(xe)-.15 G 1.056(cuted in a subshell en).15 F 1.056 +10/Times-Italic@0 SF(command)2.5 E(command)184 156 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 168 Q F1144 180 Q F2(function)2.5 E F0 .113 +184 168 Q F1144 180 Q F2(function)2.5 E F0 .114 (The shell function)184 192 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 204 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 204 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 216 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 228 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 240 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) +(ord being completed, and the)-.1 F .103(third ar)184 228 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 240 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 252 Q(Y)-.828 E F0(array v)2.25 -E(ariable.)-.25 E F1144 264 Q F2(globpat)2.5 E F0 1.008 -(The pathname e)184 276 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-) +E(ariable.)-.25 E F1144 264 Q F2(globpat)2.5 E F0 1.007 +(The pathname e)184 276 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 288 Q F1144 300 Q F2(pr)2.5 E(e\214x)-.37 E(pr) -184 312 Q(e\214x)-.37 E F0 .534(is added at the be)3.034 F .534 +184 312 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 324 Q F1144 336 Q F2(suf)2.5 E <8c78>-.18 E(suf)184 336 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 348 Q F2(wor)2.5 E -(dlist)-.37 E F0(The)184 360 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 372 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 +(dlist)-.37 E F0(The)184 360 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 372 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 384 Q(ord being completed.)-.1 E -F1144 396 Q F2(\214lterpat)2.5 E(\214lterpat)184 408 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 +F1144 396 Q F2(\214lterpat)2.5 E(\214lterpat)184 408 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 420 R 1.596 (guments, and each completion)-.18 F(matching)184 432 Q F2(\214lterpat) -3.205 E F0 .705(is remo)3.205 F -.15(ve)-.15 G 3.205(df).15 G .704 -(rom the list.)-3.205 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0 -(in)3.204 E F2(\214lterpat)3.204 E F0(ne)3.204 E -.05(ga)-.15 G .704 +3.204 E F0 .704(is remo)3.204 F -.15(ve)-.15 G 3.204(df).15 G .704 +(rom the list.)-3.204 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0 +(in)3.204 E F2(\214lterpat)3.205 E F0(ne)3.205 E -.05(ga)-.15 G .705 (tes the pattern;).05 F(in this case, an)184 444 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 460.8 R .466 +-.15(ve)-.15 G(d.).15 E .467(The return v)144 460.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 472.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 484.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 472.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 484.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 501.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 513.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 525.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 +.447(s, or for the currently-e)B -.15(xe)-.15 G(cuting).15 E .725 +(completion if no)144 525.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 537.6 Q F2(name) -3.223 E F0 .723(or the current completion.)3.223 F .724(The possible v) +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 549.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 549.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 561.6 R(`def)-.74 E(ault')-.1 E 3.727('c)-.74 G 1.228(o\ +1.228(the `)144 561.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 573.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 `) +no)-3.728 F 2.177(completion has pre)144 573.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 585.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 609.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 609.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 621.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 638.4 Q F0([) -2.5 E F2(n)A F0(])A 1.754(Resume the ne)144 650.4 R 1.754 +2.5 E F2(n)A F0(])A 1.753(Resume the ne)144 650.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 662.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 662.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 +(is greater than the number of enclosing)3.949 F .513 (loops, the last enclosing loop \(the `)144 674.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 686.4 Q F1(declar)108 703.2 +(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 686.4 Q F1(declar)108 703.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 -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(59)197.335 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(59)192.895 E 0 Cg EP %%Page: 60 60 %%BeginPageSetup BP @@ -7176,138 +7180,138 @@ BP (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 SF(typeset)108 84 Q 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 1.264(Declare v)144 96 R 1.264 -(ariables and/or gi)-.25 F 1.564 -.15(ve t)-.25 H 1.264(hem attrib).15 F +(value)A F0 2.5(].)C(..])-2.5 E 1.265(Declare v)144 96 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.765(nt).15 G 1.265(hen display the v) --3.765 F 1.265(alues of)-.25 F -.25(va)144 108 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 F13.482 E F0 .982(is used)3.482 F(with)144 120 -Q F2(name)2.774 E F0(ar)2.774 E .274 +(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 108 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 F13.483 E F0 .983(is used)3.483 F(with)144 120 +Q F2(name)2.775 E F0(ar)2.775 E .275 (guments, additional options, other than)-.18 F F12.775 E F0(and) -2.775 E F12.775 E F0 2.775(,a)C .275(re ignored.)-2.775 F(When) -5.275 E F12.775 E F0 .275(is supplied)2.775 F(without)144 132 Q F2 -(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 144 Q 1.181 -(utes speci\214ed by the additional options.)-.2 F 1.182 -(If no other options are supplied with)6.181 F F13.682 E F0(,)A F1 -(declar)3.682 E(e)-.18 E F0 .62(will display the attrib)144 156 R .62 +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 132 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 144 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 156 R .62 (utes and v)-.2 F .62(alues of all shell v)-.25 F 3.12(ariables. The) -.25 F F13.12 E F0 .62(option will restrict the display)3.12 F -1.29(to shell functions.)144 168 R(The)6.29 E F13.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 180 R .948(utes are printed.)-.2 F .948 -(If the)5.948 F F1(extdeb)3.448 E(ug)-.2 E F0 .948 +1.291(to shell functions.)144 168 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 180 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 192 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 204 Q F1 -3.892 E F0 6.392(.T)C(he)-6.392 E F13.892 E F0 1.391 -(option forces v)3.892 F 1.391 +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 216 Q F1(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 228 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 240 Q(utes:)-.2 E F1 +(ve)-.25 G(n).15 E(when)144 216 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 228 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 240 Q(utes:)-.2 E F1 144 252 Q F0(Each)180 252 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 264 Q F0(Each)180 264 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 276 Q F0(Use function names only)180 276 Q(.)-.65 -E F1144 288 Q F0 .557(The v)180 288 R .558 +E F1144 288 Q F0 .558(The v)180 288 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 +(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 300 Q F0(abo)2.25 E -.15(ve)-.15 G 2.5(\)i).15 G 2.5(sp)-2.5 G(erformed when the v)-2.5 E -(ariable is assigned a v)-.25 E(alue.)-.25 E F1144 312 Q F0 .91 +(ariable is assigned a v)-.25 E(alue.)-.25 E F1144 312 Q F0 .909 (When the v)180 312 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 324 R -(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 336 Q -F0(Gi)180 336 Q 1.619 -.15(ve e)-.25 H(ach).15 E F2(name)3.819 E F0(the) -3.819 E F2(namer)3.819 E(ef)-.37 E F0(attrib)3.819 E 1.319 +G .91(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 324 R(upper) +2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 336 Q F0(Gi) +180 336 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 348 R 1.519(ariable is de\214ned by the v)-.25 F -1.518(alue of)-.25 F F2(name)4.018 E F0 6.518(.A)C 1.518 -(ll references, assignments, and)-6.518 F(attrib)180 360 Q .226 +1.518(That other v)180 348 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 360 Q .227 (ute modi\214cations to)-.2 F F2(name)2.726 E F0 2.726(,e)C .226 (xcept those using or changing the)-2.876 F F12.726 E F0(attrib) -2.726 E .227(ute itself, are)-.2 F .809(performed on the v)180 372 R -.809(ariable referenced by)-.25 F F2(name)3.308 E F0 1.908 -.55('s v)D -3.308(alue. The).3 F .808(nameref attrib)3.308 F .808(ute cannot be)-.2 +2.726 E .226(ute itself, are)-.2 F .808(performed on the v)180 372 R +.808(ariable referenced by)-.25 F F2(name)3.308 E F0 1.908 -.55('s v)D +3.308(alue. The).3 F .809(nameref attrib)3.309 F .809(ute cannot be)-.2 F(applied to array v)180 384 Q(ariables.)-.25 E F1144 396 Q F0 -(Mak)180 396 Q(e)-.1 E F2(name)5.046 E F0 5.046(sr)C(eadonly)-5.046 E -7.546(.T)-.65 G 2.546(hese names cannot then be assigned v)-7.546 F -2.547(alues by subsequent)-.25 F(assignment statements or unset.)180 408 -Q F1144 420 Q F0(Gi)180 420 Q .73 -.15(ve e)-.25 H(ach).15 E F2 -(name)2.93 E F0(the)2.929 E F2(tr)2.929 E(ace)-.15 E F0(attrib)2.929 E +(Mak)180 396 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 408 +Q F1144 420 Q F0(Gi)180 420 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.929 E F1(RETURN)2.929 E F0 +E(UG)-.1 E F0(and)2.93 E F1(RETURN)2.93 E F0 (traps from the calling shell.)180 432 Q(The trace attrib)5 E (ute has no special meaning for v)-.2 E(ariables.)-.25 E F1144 444 -Q F0 .909(When the v)180 444 R .909(ariable is assigned a v)-.25 F .909 +Q F0 .91(When the v)180 444 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 456 R(lo)2.5 -E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 468 Q -F0(Mark)180 468 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 484.8 R 2.621(ft)-.25 G .121 -(he attrib)-2.621 F .121(ute instead, with the e)-.2 F .12 -(xceptions that)-.15 F F1(+a)2.62 E F0 .12(may not be used)2.62 F .644 -(to destro)144 496.8 R 3.144(ya)-.1 G 3.144(na)-3.144 G .644(rray v) --3.144 F .644(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.145 -(ute. When)-.2 F .645(used in a func-)3.145 F(tion,)144 508.8 Q F1 +(ve)-.4 G .909(rted to upper).15 F(-)-.2 E 2.5(case. The)180 456 R(lo) +2.5 E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 +468 Q F0(Mark)180 468 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 .12 +(Using `+' instead of `\255' turns of)144 484.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 496.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 508.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.282 -(is supplied.)144 520.8 R 1.282(If a v)6.282 F 1.283 +(command, unless the)2.835 F F12.835 E F0(option)2.835 E 1.283 +(is supplied.)144 520.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.283 -(ariable is set to)-.25 F F2(value)3.783 E F0(.)A .927(When using)144 -532.8 R F13.427 E F0(or)3.427 E F13.427 E F0 .926 -(and the compound assignment syntax to create array v)3.427 F .926 +(,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 +532.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 544.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 556.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 -568.8 R .062(alue to a readonly v)-.25 F .063 -(ariable, an attempt is made to assign a v)-.25 F .063 +144 556.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 +568.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 580.8 R F1 (Arrays)2.602 E F0(abo)2.602 E -.15(ve)-.15 G .102(\), one of the).15 F -F2(names)2.602 E F0 .101(is not a)2.602 F -.25(va)144 592.8 S .171 +F2(names)2.602 E F0 .102(is not a)2.602 F -.25(va)144 592.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 +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 604.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 616.8 Q (xistent function with)-.15 E F12.5 E F0(.)A F1 (dirs [\255clpv] [+)108 633.6 Q F2(n)A F1 2.5(][)C-2.5 E F2(n)A F1 -(])A F0 -.4(Wi)144 645.6 S .328 +(])A F0 -.4(Wi)144 645.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 +.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 657.6 R 1.238 (Directories are added to the list with the)6.238 F F1(pushd)144 669.6 Q -F0 2.003(command; the)4.503 F F1(popd)4.503 E F0 2.003(command remo) +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 681.6 Q -.1(wa)-.1 G (ys the \214rst directory in the stack.).1 E F1144 693.6 Q F0 (Clears the directory stack by deleting all of the entries.)180 693.6 Q -F1144 705.6 Q F0 .882 -(Produces a listing using full pathnames; the def)180 705.6 R .881 +F1144 705.6 Q F0 .881 +(Produces a listing using full pathnames; the def)180 705.6 R .882 (ault listing format uses a tilde to denote)-.1 F(the home directory)180 -717.6 Q(.)-.65 E(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(60)197.335 -E 0 Cg EP +717.6 Q(.)-.65 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(60) +192.895 E 0 Cg EP %%Page: 61 61 %%BeginPageSetup BP @@ -7315,61 +7319,61 @@ BP /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(Print the directory stack with one entry per line.) -180 84 Q F1144 96 Q F0 .272(Print the directory stack with one en\ -try per line, pre\214xing each entry with its inde)180 96 R 2.773(xi) --.15 G 2.773(nt)-2.773 G(he)-2.773 E(stack.)180 108 Q F1(+)144 120 Q/F2 -10/Times-Italic@0 SF(n)A F0 1.565(Displays the)180 120 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 +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 156 Q .258(The return v)144 +(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 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 213.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 +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 237.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 +.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 261.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 273.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 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 .425(Output the)144 302.4 R F2(ar)2.925 E(g)-.37 E +-.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 314.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 +(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.848 E F0 1.348(option disables the)3.848 F 1.054 +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.555 -(ya)-.15 G 1.055(re interpreted by def)-3.555 F(ault.)-.1 E(The)144 -350.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 362.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 +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 @@ -7384,65 +7388,65 @@ E(alue)-.25 E F2(nnn)2.5 E F0(\(zero to three octal digits\))2.5 E F1 (\\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 542.4 Q F2(HHHH)A F0 1.507 -(the Unicode \(ISO/IEC 10646\) character whose v)180 554.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 566.4 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 -(\\U)144 578.4 Q F2(HHHHHHHH)A F0 .547 +(\\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 .548(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) -3.048 E(HHH)180 602.4 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G +(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 631.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 +(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 +(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 .989 -(is used, each)3.489 F F2(name)3.489 E F0 .989(is dis-)3.489 F 1.581 +(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 679.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 691.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 703.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 715.2 R F1 -2.898 E F0 .399(option is supplied, a list of shell b)2.899 F .399 +2.866 E F0 .366(option will delete a b)2.866 F .366(uiltin pre)-.2 F +.366(viously loaded with)-.25 F F12.867 E F0 5.367(.I)C 2.867(fn) +-5.367 G(o)-2.867 E F2(name)2.867 E F0(ar)2.867 E .367(guments are gi) +-.18 F -.15(ve)-.25 G .367(n, or).15 F .399(if the)144 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 +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 .098(uiltins are printed.)-.2 F -(If)5.098 E F12.598 E F0(GNU Bash 4.4)72 768 Q(2017 June 23) -148.175 E(61)197.335 E 0 Cg EP +(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(2017 October 7) +143.735 E(61)192.895 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 1.916 +(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.879 -(enabled. If)144 96 R/F1 10/Times-Bold@0 SF2.879 E F0 .379 -(is supplied, the output is restricted to the POSIX)2.879 F/F2 10 -/Times-Italic@0 SF(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 108 R F2 -(name)3.854 E F0 .994(is not a shell b)3.674 F .994 -(uiltin or there is an error loading a ne)-.2 F 3.495(wb)-.25 G .995 -(uiltin from a shared)-3.695 F(object.)144 120 Q F1 -2.3 -.15(ev a)108 +(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.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 160.8 R -.15(xe)-.15 G +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) @@ -7450,84 +7454,84 @@ Q F2(ar)3.171 E(g)-.37 E F0 3.171(sa)C .671 (guments,)-.18 E F1 -2.3 -.15(ev a)2.5 H(l).15 E F0(returns 0.)2.5 E F1 (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 201.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 213.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 225.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 237.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 249.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 261.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 +.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 3.32(ure. An)144 273.6 R(interacti)3.32 E 1.12 -.15(ve s) -.25 H .82(hell returns f).15 F .82(ailure if the \214le cannot be e)-.1 F -.15(xe)-.15 G 3.32(cuted. A).15 F .82(subshell e)3.32 F .82 -(xits uncondi-)-.15 F .287(tionally if)144 285.6 R F1(exec)2.787 E F0 --.1(fa)2.787 G 2.787(ils. If).1 F F2(command)2.987 E F0 .287 -(is not speci\214ed, an)3.557 F 2.788(yr)-.15 G .288(edirections tak) --2.788 F 2.788(ee)-.1 G -.25(ff)-2.788 G .288(ect in the current shell,) +(xits uncondi-)-.15 F .288(tionally if)144 285.6 R F1(exec)2.788 E F0 +-.1(fa)2.788 G 2.788(ils. If).1 F F2(command)2.988 E F0 .288 +(is not speci\214ed, an)3.558 F 2.787(yr)-.15 G .287(edirections tak) +-2.787 F 2.787(ee)-.1 G -.25(ff)-2.787 G .287(ect in the current shell,) .25 F(and the return status is 0.)144 297.6 Q (If there is a redirection error)5 E 2.5(,t)-.4 G (he return status is 1.)-2.5 E F1(exit)108 314.4 Q F0([)2.5 E F2(n)A F0 -(])A .096(Cause the shell to e)144 314.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) +(])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 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 355.2 Q F0 .256(The supplied)144 367.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 379.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 +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.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 403.2 S 1.447 +(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 415.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 427.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 439.2 Q F1(fc)108 456 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 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 .431 +(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 .432 -(from the history list and displays or)3.612 F .142(edits and re-e)144 -492 R -.15(xe)-.15 G .142(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs) +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 504 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 516 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 528 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 540 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 564 Q F12.522 E F0 .022 @@ -7536,128 +7540,128 @@ 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 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 588 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 600 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 612 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 624 S(cuted.).15 E .788(In the second form,)144 648 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 660 Q F0 .172(is interpreted the same as)2.672 F F2<8c72> -2.672 E(st)-.1 E F0(abo)2.672 E -.15(ve)-.15 G 5.172(.A).15 G .171 -(useful alias to use with this is)-2.5 F F4 .171(r='fc \255s')2.671 F F0 -2.671(,s)C 2.671(ot)-2.671 G(hat)-2.671 E(typing)144 672 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 +(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 .171(is interpreted the same as)2.671 F F2<8c72> +2.671 E(st)-.1 E F0(abo)2.671 E -.15(ve)-.15 G 5.171(.A).15 G .172 +(useful alias to use with this is)-2.499 F F4 .172(r='fc \255s')2.672 F +F0 2.672(,s)C 2.672(ot)-2.672 G(hat)-2.672 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 720 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(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(62) -197.335 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(2017 October 7)143.735 E(62) +192.895 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 .788 -(last command e)144 84 R -.15(xe)-.15 G .788(cuted or f).15 F .787 +(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 -.787(If the)5.787 F 1.135 +.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.136(cuted, unless).15 F/F1 10/Times-Italic@0 SF -(cmd)3.836 E F0 1.136(does not)4.406 F(specify a v)144 108 Q +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.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 +(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.413(is not present, the)4.223 F(shell')144 148.8 Q -3.116(sn)-.55 G .616(otion of the)-3.116 F F1(curr)3.116 E .616(ent job) --.37 F F0 .617(is used.)3.116 F .617(The return v)5.617 F .617 +(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 -.363(ground, or f)-.15 F .363 -(ailure if run when job control is disabled or)-.1 F 2.862(,w)-.4 G .362 +.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.293 F F1 -(optstring)6.023 E F0 .793(contains the option)3.513 F .15 -(characters to be recognized; if a character is follo)144 213.6 R .149 -(wed by a colon, the option is e)-.25 F .149(xpected to ha)-.15 F .449 --.15(ve a)-.2 H(n).15 E(ar)144 225.6 Q .578 -(gument, which should be separated from it by white space.)-.18 F .579 +(is used by shell procedures to parse positional parameters.)3.294 F 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 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 .796 -(option in the shell v)144 249.6 R(ariable)-.25 E F1(name)3.296 E F0 -3.296(,i).18 G(nitializing)-3.296 E F1(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 261.6 Q .085 +4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .797 +(option in the shell v)144 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 +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.346 E F0 .846(places that ar)3.346 F(gument)-.18 E .804 -(into the v)144 285.6 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 +(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 309.6 -Q 2.044(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.043 +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 F1(name)2.5 E F0 -(is set to ?.)2.5 E F2(getopts)144 369.6 Q F0 2.392 -(normally parses the positional parameters, b)4.892 F 2.392 -(ut if more ar)-.2 F 2.393(guments are gi)-.18 F -.15(ve)-.25 G 4.893 -(ni).15 G(n)-4.893 E F1(ar)4.893 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.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 F1(optstring)3.895 E F0 1.165 -(is a colon,)3.885 F F1(silent)4.005 E F0(error)4.345 E 1.07 +(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.07 F --.25(va)-.4 G 1.071(lid options or).25 F .394(missing option ar)144 -429.6 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 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 .666(If an in)144 465.6 R --.25(va)-.4 G .666(lid option is seen,).25 F F2(getopts)3.166 E F0 .667 -(places ? into)3.167 F F1(name)3.527 E F0 .667 -(and, if not silent, prints an error message)3.347 F .4(and unsets)144 -477.6 R F3(OPT)2.9 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 .399(and no)2.649 F -(diagnostic message is printed.)144 489.6 Q 1.241(If a required ar)144 -513.6 R 1.241(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.742 -(\)i).833 G 3.742(sp)-3.742 G 1.242(laced in)-3.742 F F1(name)144 525.6 -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 F2 -(getopts)2.734 E F0 .234(is silent, then a colon \()2.734 F F2(:).833 E +(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 +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 @@ -7666,29 +7670,30 @@ F0(\)).833 E(is placed in)144 537.6 Q F1(name)2.86 E F0(and)2.68 E F3 3.718 E F0 .858(is determined by searching)3.538 F .956 (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 626.4 -R F22.743 E F0 .243 -(option is supplied, no path search is performed, and)2.743 F F1 -(\214lename)4.653 E F0 .242(is used as the full \214lename)2.923 F 1.711 -(of the command.)144 638.4 R(The)6.711 E F24.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 F24.212 E F0 +(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 .703(plied, the full pathname to which each)144 662.4 R F1(name) -3.204 E F0 .704(corresponds is printed.)3.204 F .704(If multiple)5.704 F -F1(name)3.204 E F0(ar)3.204 E(guments)-.18 E .795(are supplied with)144 +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 -686.4 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 698.4 Q F22.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 710.4 Q F1(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(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(63)197.335 E 0 Cg EP +.25 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(63)192.895 E 0 Cg +EP %%Page: 64 64 %%BeginPageSetup BP @@ -7696,12 +7701,12 @@ BP /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(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 .866 +/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 .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 108 R F2(pattern)2.807 E F0 2.807 -(;o).24 G .307(therwise help for all the b)-2.807 F .306 +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 @@ -7717,13 +7722,13 @@ F1(history \255p)108 237.6 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5 -.37 E F0([)2.5 E F2(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144 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 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 +.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 285.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 +/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 @@ -7734,71 +7739,71 @@ F F2(n)3.24 E F0 .38(lists only the last)3.12 F F2(n)3.24 E F0 2.88 2.25 E(Options, if supplied, ha)5 E .3 -.15(ve t)-.2 H(he follo).15 E (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 .39 +144 345.6 Q F2(of)2.5 E(fset)-.18 E F0 .389 (Delete the history entry at position)180 357.6 R F2(of)2.889 E(fset) -.18 E F0 5.389(.I)C(f)-5.389 E F2(of)2.889 E(fset)-.18 E F0 .389(is ne) -2.889 F -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G 2.889(,i).15 G 2.889(ti) --2.889 G 2.889(si)-2.889 G .389(nterpreted as relati)-2.889 F -.15(ve) --.25 G .598(to one greater than the last history position, so ne)180 -369.6 R -.05(ga)-.15 G(ti).05 E .899 -.15(ve i)-.25 H .599 +2.889 F -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G 2.89(,i).15 G 2.89(ti) +-2.89 G 2.89(si)-2.89 G .39(nterpreted as relati)-2.89 F -.15(ve)-.25 G +.599(to one greater than the last history position, so ne)180 369.6 R +-.05(ga)-.15 G(ti).05 E .899 -.15(ve i)-.25 H .598 (ndices count back from the end).15 F(of the history)180 381.6 Q 2.5(,a) -.65 G(nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 G 2.5(1r)-2.5 G (efers to the current)-2.5 E F1(history -d)2.5 E F0(command.)2.5 E F1 -144 393.6 Q F0 .565(Append the `)180 393.6 R(`ne)-.74 E(w')-.25 E -3.065('h)-.74 G .564(istory lines to the history \214le.)-3.065 F .564 +144 393.6 Q F0 .564(Append the `)180 393.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 405.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 417.6 Q F0 .854(Read the history lines not already read from the history \214\ -le into the current history list.)180 417.6 R .773 +le into the current history list.)180 417.6 R .772 (These are lines appended to the history \214le since the be)180 429.6 R -.772(ginning of the current)-.15 F F1(bash)3.272 E F0(ses-)3.272 E +.773(ginning of the current)-.15 F F1(bash)3.273 E F0(ses-)3.273 E (sion.)180 441.6 Q F1144 453.6 Q F0(Read the contents of the hist\ ory \214le and append them to the current history list.)180 453.6 Q F1 144 465.6 Q F0 (Write the current history list to the history \214le, o)180 465.6 Q -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G -(ontents.)-2.5 E F1144 477.6 Q F0 .625 +(ontents.)-2.5 E F1144 477.6 Q F0 .626 (Perform history substitution on the follo)180 477.6 R(wing)-.25 E F2 -(ar)3.125 E(gs)-.37 E F0 .626(and display the result on the standard) +(ar)3.125 E(gs)-.37 E F0 .625(and display the result on the standard) 3.125 F 2.975(output. Does)180 489.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 501.6 Q(xpansion.)-.15 E F1144 513.6 Q F0 -.362(Store the)180 513.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 +.363(Store the)180 513.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 525.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 542.4 R F3(HISTTIMEFORMA)2.645 E(T) +(are added.)2.77 E .145(If the)144 542.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 554.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 566.4 R .956 -(ginning with the history comment character follo)-.15 F .955 -(wed immediately by a digit)-.25 F 1.795 +.25 F .669(entry is written to the history \214le, mark)144 554.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 566.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 578.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 590.4 Q -.25(va)-.4 G .768(lid \ +1.795(alue is 0 unless an)-.25 F(in)144 590.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 602.4 Q(fset) --.18 E F0 1.031(is supplied as an ar)3.531 F 1.031(gument to)-.18 F F1 +-.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 614.4 S(ils.).1 E F1(jobs)108 631.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 614.4 S(ils.).1 E F1(jobs)108 631.2 Q F0([) 2.5 E F1(\255lnprs)A F0 2.5(][)C F2(jobspec)A F0(... ])2.5 E F1 (jobs \255x)108 643.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 655.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 667.2 Q F0 (List process IDs in addition to the normal information.)180 667.2 Q F1 -144 679.2 Q F0 .194(Display information only about jobs that ha) -180 679.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 691.2 Q F1 +144 679.2 Q F0 .193(Display information only about jobs that ha) +180 679.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 691.2 Q F1 144 703.2 Q F0(List only the process ID of the job')180 703.2 Q 2.5(sp) -.55 G(rocess group leader)-2.5 E(.)-.55 E F1144 715.2 Q F0 (Display only running jobs.)180 715.2 Q(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(64)197.335 E 0 Cg EP +(2017 October 7)143.735 E(64)192.895 E 0 Cg EP %%Page: 65 65 %%BeginPageSetup BP @@ -7806,73 +7811,73 @@ BP /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 only stopped jobs.)180 84 Q(If)144 100.8 Q -/F2 10/Times-Italic@0 SF(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 +/F2 10/Times-Italic@0 SF(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(an in)144 112.8 Q -.25(va)-.4 G(lid option is encountered or an in).25 E -.25(va) --.4 G(lid).25 E F2(jobspec)4.24 E F0(is supplied.)2.81 E .395(If the)144 -129.6 R F12.895 E F0 .394(option is supplied,)2.894 F F1(jobs) +-.4 G(lid).25 E F2(jobspec)4.24 E F0(is supplied.)2.81 E .394(If the)144 +129.6 R F12.894 E F0 .394(option is supplied,)2.894 F F1(jobs) 2.894 E F0 .394(replaces an)2.894 F(y)-.15 E F2(jobspec)4.634 E F0 .394 (found in)3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 -E F0 .394(with the corre-)3.164 F(sponding process group ID, and e)144 +E F0 .395(with the corre-)3.164 F(sponding process group ID, and e)144 141.6 Q -.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E F2(ar)2.5 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.) -.15 E F1(kill)108 158.4 Q F0([)2.5 E F1A F2(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 170.4 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 182.4 R F2(sigspec)2.959 E F0(or)2.929 E -F2(signum)2.959 E F0 .119(to the processes named by)2.939 F F2(pid)3.87 -E F0(or)3.39 E F2(jobspec)2.62 E F0(.).31 E F2(sigspec)5.46 E F0(is)2.93 -E .319(either a case-insensiti)144 194.4 R .619 -.15(ve s)-.25 H .319 -(ignal name such as).15 F/F3 9/Times-Bold@0 SF(SIGKILL)2.819 E F0 .318 -(\(with or without the)2.569 F F3(SIG)2.818 E F0 .318 -(pre\214x\) or a signal)2.568 F(number;)144 206.4 Q F2(signum)4.188 E F0 -1.349(is a signal number)4.168 F 6.349(.I)-.55 G(f)-6.349 E F2(sigspec) +A F0(|)2.5 E F2 -.2(ex)2.5 G(it_status).2 E F0(])A .12 +(Send the signal named by)144 182.4 R F2(sigspec)2.96 E F0(or)2.93 E F2 +(signum)2.96 E F0 .119(to the processes named by)2.939 F F2(pid)3.869 E +F0(or)3.389 E F2(jobspec)2.619 E F0(.).31 E F2(sigspec)5.459 E F0(is) +2.929 E .318(either a case-insensiti)144 194.4 R .618 -.15(ve s)-.25 H +.318(ignal name such as).15 F/F3 9/Times-Bold@0 SF(SIGKILL)2.818 E F0 +.319(\(with or without the)2.569 F F3(SIG)2.819 E F0 .319 +(pre\214x\) or a signal)2.569 F(number;)144 206.4 Q F2(signum)4.189 E F0 +1.349(is a signal number)4.169 F 6.349(.I)-.55 G(f)-6.349 E F2(sigspec) 4.189 E F0 1.349(is not present, then)4.159 F F3(SIGTERM)3.849 E F0 -1.349(is assumed.)3.599 F(An)6.349 E(ar)144 218.4 Q .523(gument of)-.18 +1.348(is assumed.)3.599 F(An)6.348 E(ar)144 218.4 Q .522(gument of)-.18 F F13.023 E F0 .523(lists the signal names.)3.023 F .523(If an) 5.523 F 3.023(ya)-.15 G -.18(rg)-3.023 G .523(uments are supplied when) .18 F F13.023 E F0 .523(is gi)3.023 F -.15(ve)-.25 G .523 (n, the names).15 F .28(of the signals corresponding to the ar)144 230.4 R .28(guments are listed, and the return status is 0.)-.18 F(The)5.28 E -F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 242.4 Q .378(gument to)-.18 F -F12.878 E F0 .378 -(is a number specifying either a signal number or the e)2.878 F .377 -(xit status of a process termi-)-.15 F .962(nated by a signal.)144 254.4 +F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 242.4 Q .377(gument to)-.18 F +F12.877 E F0 .378 +(is a number specifying either a signal number or the e)2.877 F .378 +(xit status of a process termi-)-.15 F .963(nated by a signal.)144 254.4 R(The)5.962 E F13.462 E F0 .962(option is equi)3.462 F -.25(va) -.25 G .962(lent to).25 F F13.462 E F0(.)A F1(kill)5.962 E F0 .962 (returns true if at least one signal w)3.462 F(as)-.1 E (successfully sent, or f)144 266.4 Q(alse if an error occurs or an in) -.1 E -.25(va)-.4 G(lid option is encountered.).25 E F1(let)108 283.2 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Each)144 -295.2 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 307.2 Q F2(ar) +295.2 Q F2(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 307.2 Q F2(ar) 2.83 E(g)-.37 E F0 -.25(eva)2.72 G(luates to 0,).25 E F1(let)2.5 E F0 (returns 1; 0 is returned otherwise.)2.5 E F1(local)108 324 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 336 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 348 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 +-5.06 E F2(option)2.56 E F0 .06(can be)2.56 F(an)144 348 Q 3.152(yo)-.15 +G 3.152(ft)-3.152 G .652(he options accepted by)-3.152 F F1(declar)3.152 +E(e)-.18 E F0 5.652(.W)C(hen)-5.652 E F1(local)3.152 E F0 .653 (is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144 -360 Q F2(name)3.281 E F0 .421(to ha)3.101 F .721 -.15(ve a v)-.2 H .422 +360 Q F2(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 +5.421 E F2(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 372 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 384 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 396 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 +(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 384 R F1(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 396 R 1.243 +(ith no operands,)-.4 F F1(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 408 R F1(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) @@ -7890,17 +7895,17 @@ F0 2.5(][)C F1-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E (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 477.6 R +(])A .35(Read lines from the standard input into the inde)144 477.6 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 489.6 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 501.6 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 513.6 Q F0 .911 -(The \214rst character of)180 513.6 R F2(delim)3.411 E F0 .911 -(is used to terminate each input line, rather than ne)3.411 F 3.41 +(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 F2(fd)2.851 E F0 1.249(if the)144 489.6 +R F13.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 F2(arr)3.748 E(ay)-.15 E F0 6.248(.O)C 1.248(ptions, if supplied,) +-6.248 F(ha)144 501.6 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 513.6 Q F0 .91 +(The \214rst character of)180 513.6 R F2(delim)3.41 E F0 .911 +(is used to terminate each input line, rather than ne)3.41 F 3.411 (wline. If)-.25 F F2(delim)180 525.6 Q F0(is the empty string,)2.5 E F1 (map\214le)2.5 E F0(will terminate a line when it reads a NUL character) 2.5 E(.)-.55 E F1144 537.6 Q F0(Cop)180 537.6 Q 2.5(ya)-.1 G 2.5 @@ -7919,26 +7924,26 @@ E F2(delim)2.5 E F0(\(def)2.5 E(ault ne)-.1 E (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 609.6 Q F0(Specify the number of lines read between each call to)180 609.6 Q -F2(callbac)2.5 E(k)-.2 E F0(.).67 E(If)144 626.4 Q F12.967 E F0 +F2(callbac)2.5 E(k)-.2 E F0(.).67 E(If)144 626.4 Q F12.968 E F0 .467(is speci\214ed without)2.967 F F12.967 E F0 2.967(,t)C .467 (he def)-2.967 F .467(ault quantum is 5000.)-.1 F(When)5.467 E F2 (callbac)2.967 E(k)-.2 E F0 .467(is e)2.967 F -.25(va)-.25 G .467 -(luated, it is sup-).25 F .262(plied the inde)144 638.4 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 650.4 R(guments.)-.18 E F2(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 +(luated, it is sup-).25 F .261(plied the inde)144 638.4 R 2.761(xo)-.15 +G 2.761(ft)-2.761 G .261(he ne)-2.761 F .262(xt array element to be ass\ +igned and the line to be assigned to that element)-.15 F .275 +(as additional ar)144 650.4 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 662.4 Q (If not supplied with an e)144 679.2 Q(xplicit origin,)-.15 E F1 (map\214le)2.5 E F0(will clear)2.5 E F2(arr)2.5 E(ay)-.15 E F0 -(before assigning to it.)2.5 E F1(map\214le)144 696 Q F0 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 F2(arr) -4.405 E(ay)-.15 E F0(is)4.405 E(in)144 708 Q -.25(va)-.4 G +(before assigning to it.)2.5 E F1(map\214le)144 696 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 708 Q -.25(va)-.4 G (lid or unassignable, or if).25 E F2(arr)2.5 E(ay)-.15 E F0 (is not an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 G(rray)-2.5 E(.)-.65 E -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(65)197.335 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(65)192.895 E 0 Cg EP %%Page: 66 66 %%BeginPageSetup BP @@ -7947,15 +7952,15 @@ BP (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 SF(popd)108 84 Q F0<5bad>2.5 E F1(n)A F0 2.5(][)C(+)-2.5 E/F2 10 /Times-Italic@0 SF(n)A F0 2.5(][)C-2.5 E F2(n)A F0(])A(Remo)144 96 Q --.15(ve)-.15 G 2.799(se).15 G .299(ntries from the directory stack.) --2.799 F -.4(Wi)5.299 G .299(th no ar).4 F .299(guments, remo)-.18 F --.15(ve)-.15 G 2.799(st).15 G .3(he top directory from the)-2.799 F -1.479(stack, and performs a)144 108 R F1(cd)3.979 E F0 1.479(to the ne) -3.979 F 3.979(wt)-.25 G 1.479(op directory)-3.979 F 6.479(.A)-.65 G -.18 -(rg)-6.479 G 1.478(uments, if supplied, ha).18 F 1.778 -.15(ve t)-.2 H -1.478(he follo).15 F(wing)-.25 E(meanings:)144 120 Q F1144 132 Q -F0 .551(Suppresses the normal change of directory when remo)180 132 R -.551(ving directories from the stack, so)-.15 F +-.15(ve)-.15 G 2.8(se).15 G .3(ntries from the directory stack.)-2.8 F +-.4(Wi)5.299 G .299(th no ar).4 F .299(guments, remo)-.18 F -.15(ve)-.15 +G 2.799(st).15 G .299(he top directory from the)-2.799 F 1.478 +(stack, and performs a)144 108 R F1(cd)3.978 E F0 1.479(to the ne)3.978 +F 3.979(wt)-.25 G 1.479(op directory)-3.979 F 6.479(.A)-.65 G -.18(rg) +-6.479 G 1.479(uments, if supplied, ha).18 F 1.779 -.15(ve t)-.2 H 1.479 +(he follo).15 F(wing)-.25 E(meanings:)144 120 Q F1144 132 Q F0 +.551(Suppresses the normal change of directory when remo)180 132 R .551 +(ving directories from the stack, so)-.15 F (that only the stack is manipulated.)180 144 Q F1(+)144 156 Q F2(n)A F0 (Remo)180 156 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 @@ -7963,227 +7968,227 @@ F1(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero.)-2.64 F -.15(Fo)180 168 S 2.5(re).15 G(xample:)-2.65 E/F3 10/Courier@0 SF(popd +0)2.5 E F0 (remo)2.5 E -.15(ve)-.15 G 2.5(st).15 G(he \214rst directory)-2.5 E(,) -.65 E F3(popd +1)2.5 E F0(the second.)2.5 E F1144 180 Q F2(n)A F0 -(Remo)180 180 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 +(Remo)180 180 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 192 R(or e)-.15 E(xample:)-.15 E F3(popd -0)2.5 E F0(remo) 2.5 E -.15(ve)-.15 G 2.5(st).15 G(he last directory)-2.5 E(,)-.65 E F3 -(popd -1)2.5 E F0(the ne)2.5 E(xt to last.)-.15 E .644(If the)144 208.8 -R F1(popd)3.144 E F0 .644(command is successful, a)3.144 F F1(dirs)3.143 -E F0 .643(is performed as well, and the return status is 0.)3.143 F F1 -(popd)5.643 E F0 .415(returns f)144 220.8 R .415(alse if an in)-.1 F +(popd -1)2.5 E F0(the ne)2.5 E(xt to last.)-.15 E .643(If the)144 208.8 +R F1(popd)3.143 E F0 .643(command is successful, a)3.143 F F1(dirs)3.143 +E F0 .644(is performed as well, and the return status is 0.)3.143 F F1 +(popd)5.644 E F0 .416(returns f)144 220.8 R .416(alse if an in)-.1 F -.25(va)-.4 G .415 -(lid option is encountered, the directory stack is empty).25 F 2.916 -(,an)-.65 G(on-e)-2.916 E .416(xistent direc-)-.15 F +(lid option is encountered, the directory stack is empty).25 F 2.915 +(,an)-.65 G(on-e)-2.915 E .415(xistent direc-)-.15 F (tory stack entry is speci\214ed, or the directory change f)144 232.8 Q (ails.)-.1 E F1(printf)108 249.6 Q F0([)2.5 E F1A F2(var)2.5 E F0 -(])A F2(format)2.5 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A 1.437 -(Write the formatted)144 261.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 +(])A F2(format)2.5 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A 1.436 +(Write the formatted)144 261.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 273.6 R(ariable) -.25 E F2(var)2.626 E F0 .126(rather than being printed to the standard) -2.626 F(output.)144 285.6 Q(The)144 309.6 Q F2(format)3.018 E F0 .517(i\ +2.626 F(output.)144 285.6 Q(The)144 309.6 Q F2(format)3.017 E F0 .517(i\ s a character string which contains three types of objects: plain chara\ -cters, which are)3.018 F .704(simply copied to standard output, charact\ -er escape sequences, which are con)144 321.6 R -.15(ve)-.4 G .704 +cters, which are)3.017 F .704(simply copied to standard output, charact\ +er escape sequences, which are con)144 321.6 R -.15(ve)-.4 G .703 (rted and copied to).15 F .036(the standard output, and format speci\ -\214cations, each of which causes printing of the ne)144 333.6 R .036 +\214cations, each of which causes printing of the ne)144 333.6 R .037 (xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 345.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 357.6 Q +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 357.6 Q (xtensions:)-.15 E F1(%b)144 369.6 Q F0(causes)180 369.6 Q F1(printf) -2.596 E F0 .096(to e)2.596 F .096 +2.595 E F0 .096(to e)2.595 F .096 (xpand backslash escape sequences in the corresponding)-.15 F F2(ar) -2.596 E(gument)-.37 E F0 .095(in the)2.595 F(same w)180 381.6 Q(ay as) +2.596 E(gument)-.37 E F0 .096(in the)2.596 F(same w)180 381.6 Q(ay as) -.1 E F1(echo \255e)2.5 E F0(.)A F1(%q)144 393.6 Q F0(causes)180 393.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 405.6 Q F1(%\()144 417.6 Q F2(datefmt)A F1(\)T)A F0(causes) -180 429.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 441.6 R F2 +180 429.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 441.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 .458(of seconds since the epoch.)180 +(ger representing the number)-.15 F .457(of seconds since the epoch.)180 453.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 +.458(alues may be used: -1 represents the)-.25 F .848 (current time, and -2 represents the time the shell w)180 465.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 477.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 489.6 Q -(vior)-.2 E(.)-.55 E(Ar)144 506.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 518.4 +(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 477.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 489.6 Q +(vior)-.2 E(.)-.55 E(Ar)144 506.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 518.4 R 1.259 (wed, and if the leading character is a single or double quote, the v) --.25 F 1.258(alue is the)-.25 F(ASCII v)144 530.4 Q(alue of the follo) --.25 E(wing character)-.25 E(.)-.55 E(The)144 547.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 +-.25 F 1.259(alue is the)-.25 F(ASCII v)144 530.4 Q(alue of the follo) +-.25 E(wing character)-.25 E(.)-.55 E(The)144 547.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 E(guments)-.37 E F0 5.923(.I)C 3.423(ft)-5.923 G(he)-3.423 E F2(format) -3.423 E F0 .924(requires more)3.424 F F2(ar)144 559.2 Q(guments)-.37 E -F0 .033(than are supplied, the e)2.534 F .033 +3.423 E F0 .923(requires more)3.423 F F2(ar)144 559.2 Q(guments)-.37 E +F0 .033(than are supplied, the e)2.533 F .033 (xtra format speci\214cations beha)-.15 F .333 -.15(ve a)-.2 H 2.533(si) -.15 G 2.533(faz)-2.533 G .033(ero v)-2.533 F .033(alue or null string,) +.15 G 2.533(faz)-2.533 G .033(ero v)-2.533 F .034(alue or null string,) -.25 F(as appropriate, had been supplied.)144 571.2 Q(The return v)5 E (alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E F1(pushd) 108 588 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 600 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 612 R 3.14(wt)-.25 -G .64(op of the)-3.14 F .417(stack the current w)144 624 R .416 +(][)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 612 R 3.139(wt)-.25 +G .639(op of the)-3.139 F .416(stack the current w)144 624 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.916(od)-.1 G(irectories)-2.916 E 1.625 +(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 636 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 648 Q F1 144 660 Q F0 1.811(Suppresses the normal change of directory when\ rotating or adding directories to the)180 660 R (stack, so that only the stack is manipulated.)180 672 Q F1(+)144 684 Q -F2(n)A F0 1.267(Rotates the stack so that the)180 684 R F2(n)3.767 E F0 -1.268(th directory \(counting from the left of the list sho)B 1.268 +F2(n)A F0 1.268(Rotates the stack so that the)180 684 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 696 Q F0 2.5(,s)C (tarting with zero\) is at the top.)-2.5 E F1144 708 Q F2(n)A F0 .92 (Rotates the stack so that the)180 708 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 720 Q F0 2.5(,s)C(tarting with zero\) is at the top.)-2.5 -E(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(66)197.335 E 0 Cg EP +E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(66)192.895 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/F1 10 -/Times-Italic@0 SF(dir)144.35 84 Q F0(Adds)180 84 Q F1(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 +/Times-Italic@0 SF(dir)144.35 84 Q F0(Adds)180 84 Q F1(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 96 Q(gument to the)-.18 E/F2 10 -/Times-Bold@0 SF(cd)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .489(If the)144 -112.8 R F2(pushd)2.989 E F0 .489(command is successful, a)2.989 F F2 -(dirs)2.988 E F0 .488(is performed as well.)2.988 F .488 -(If the \214rst form is used,)5.488 F F2(pushd)2.988 E F0 1.039 -(returns 0 unless the cd to)144 124.8 R F1(dir)3.889 E F0 -.1(fa)4.269 G -3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F2(pushd)3.54 E F0 -1.04(returns 0 unless the directory)3.54 F .847(stack is empty)144 136.8 -R 3.347(,an)-.65 G(on-e)-3.347 E .847(xistent directory stack element i\ -s speci\214ed, or the directory change to the)-.15 F(speci\214ed ne)144 -148.8 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E(ails.)-.1 E F2(pwd)108 -165.6 Q F0([)2.5 E F2(\255LP)A F0(])A .844 +/Times-Bold@0 SF(cd)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .488(If the)144 +112.8 R F2(pushd)2.988 E F0 .488(command is successful, a)2.988 F F2 +(dirs)2.988 E F0 .488(is performed as well.)2.988 F .489 +(If the \214rst form is used,)5.488 F F2(pushd)2.989 E F0 1.04 +(returns 0 unless the cd to)144 124.8 R F1(dir)3.89 E F0 -.1(fa)4.27 G +3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F2(pushd)3.539 E F0 +1.039(returns 0 unless the directory)3.539 F .846(stack is empty)144 +136.8 R 3.346(,an)-.65 G(on-e)-3.346 E .847(xistent directory stack ele\ +ment is speci\214ed, or the directory change to the)-.15 F +(speci\214ed ne)144 148.8 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E +(ails.)-.1 E F2(pwd)108 165.6 Q F0([)2.5 E F2(\255LP)A F0(])A .845 (Print the absolute pathname of the current w)144 177.6 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 +(orking directory)-.1 F 5.844(.T)-.65 G .844 +(he pathname printed contains no)-5.844 F .181(symbolic links if the)144 189.6 R F22.681 E F0 .181(option is supplied or the)2.681 F F2 .181(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F2 -(set)2.681 E F0 -.2(bu)2.681 G .181(iltin command is).2 F 3.263 -(enabled. If)144 201.6 R(the)3.263 E F23.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\ +(set)2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264 +(enabled. If)144 201.6 R(the)3.264 E F23.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 213.6 R -.25(va) -.4 G(lid).25 E(option is supplied.)144 225.6 Q F2 -.18(re)108 242.4 S -(ad).18 E F0([)3.816 E F2(\255ers)A F0 3.816(][)C F2-3.816 E F1 -(aname)3.816 E F0 3.816(][)C F2-3.816 E F1(delim)3.816 E F0 3.816 -(][)C F2-3.816 E F1(te)3.816 E(xt)-.2 E F0 3.816(][)C F2 --3.816 E F1(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.817(][)C F2-3.817 E -F1(nc)3.817 E(har)-.15 E(s)-.1 E F0 3.817(][)C F2-3.817 E F1(pr) -3.817 E(ompt)-.45 E F0 3.817(][)C F2-3.817 E F1(timeout)3.817 E F0 -3.817(][)C F2-3.817 E F1(fd)3.817 E F0(])A([)108 254.4 Q F1(name)A +(ad).18 E F0([)3.817 E F2(\255ers)A F0 3.817(][)C F2-3.817 E F1 +(aname)3.817 E F0 3.817(][)C F2-3.817 E F1(delim)3.817 E F0 3.817 +(][)C F2-3.817 E F1(te)3.817 E(xt)-.2 E F0 3.817(][)C F2 +-3.817 E F1(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F2-3.816 E +F1(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F2-3.816 E F1(pr) +3.816 E(ompt)-.45 E F0 3.816(][)C F2-3.816 E F1(timeout)3.816 E F0 +3.816(][)C F2-3.816 E F1(fd)3.816 E F0(])A([)108 254.4 Q F1(name)A F0(...])2.5 E .516(One line is read from the standard input, or from th\ e \214le descriptor)144 266.4 R F1(fd)3.016 E F0 .516(supplied as an ar) -3.016 F .516(gument to)-.18 F(the)144 278.4 Q F23.847 E F0 1.347 -(option, split into w)3.847 F 1.347(ords as described abo)-.1 F 1.648 --.15(ve u)-.15 H(nder).15 E F2 -.75(Wo)3.848 G 1.348(rd Splitting).75 F -F0 3.848(,a)C 1.348(nd the \214rst w)-3.848 F 1.348(ord is)-.1 F 1.465 +3.016 F .517(gument to)-.18 F(the)144 278.4 Q F23.848 E F0 1.348 +(option, split into w)3.848 F 1.348(ords as described abo)-.1 F 1.647 +-.15(ve u)-.15 H(nder).15 E F2 -.75(Wo)3.847 G 1.347(rd Splitting).75 F +F0 3.847(,a)C 1.347(nd the \214rst w)-3.847 F 1.347(ord is)-.1 F 1.465 (assigned to the \214rst)144 290.4 R F1(name)3.965 E F0 3.965(,t).18 G 1.465(he second w)-3.965 F 1.465(ord to the second)-.1 F F1(name)3.965 E F0 3.965(,a).18 G 1.465(nd so on.)-3.965 F 1.465(If there are more)6.465 F -.1(wo)144 302.4 S 1.112(rds than names, the remaining w).1 F 1.112 (ords and their interv)-.1 F 1.112 (ening delimiters are assigned to the last)-.15 F F1(name)144 314.4 Q F0 -5.723(.I).18 G 3.223(ft)-5.723 G .723(here are fe)-3.223 F .723(wer w) --.25 F .722 +5.722(.I).18 G 3.222(ft)-5.722 G .722(here are fe)-3.222 F .722(wer w) +-.25 F .723 (ords read from the input stream than names, the remaining names are)-.1 -F .531(assigned empty v)144 326.4 R 3.031(alues. The)-.25 F .531 -(characters in)3.031 F/F3 9/Times-Bold@0 SF(IFS)3.031 E F0 .532 -(are used to split the line into w)2.781 F .532(ords using the same)-.1 +F .532(assigned empty v)144 326.4 R 3.032(alues. The)-.25 F .532 +(characters in)3.032 F/F3 9/Times-Bold@0 SF(IFS)3.032 E F0 .531 +(are used to split the line into w)2.782 F .531(ords using the same)-.1 F .197(rules the shell uses for e)144 338.4 R .197 (xpansion \(described abo)-.15 F .497 -.15(ve u)-.15 H(nder).15 E F2 --.75(Wo)2.697 G .197(rd Splitting).75 F F0 2.697(\). The)B .196 -(backslash charac-)2.697 F .156(ter \()144 350.4 R F2(\\)A F0 2.656(\)m) -C .156(ay be used to remo)-2.656 F .457 -.15(ve a)-.15 H .457 -.15(ny s) -.15 H .157(pecial meaning for the ne).15 F .157 +-.75(Wo)2.697 G .197(rd Splitting).75 F F0 2.697(\). The)B .197 +(backslash charac-)2.697 F .157(ter \()144 350.4 R F2(\\)A F0 2.657(\)m) +C .157(ay be used to remo)-2.657 F .457 -.15(ve a)-.15 H .457 -.15(ny s) +.15 H .157(pecial meaning for the ne).15 F .156 (xt character read and for line continu-)-.15 F 2.5(ation. Options,)144 362.4 R(if supplied, ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F2144 374.4 Q F1(aname)2.5 E F0 1.05(The w) -180 386.4 R 1.049 +(wing meanings:)-.25 E F2144 374.4 Q F1(aname)2.5 E F0 1.049 +(The w)180 386.4 R 1.049 (ords are assigned to sequential indices of the array v)-.1 F(ariable) --.25 E F1(aname)3.549 E F0 3.549(,s).18 G 1.049(tarting at 0.)-3.549 F -F1(aname)180.33 398.4 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 --.25(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F1(name)2.5 E F0 -(ar)2.5 E(guments are ignored.)-.18 E F2144 410.4 Q F1(delim)2.5 E -F0 1.317(The \214rst character of)180 422.4 R F1(delim)3.817 E F0 1.317 -(is used to terminate the input line, rather than ne)3.817 F 3.818 +-.25 E F1(aname)3.55 E F0 3.55(,s).18 G 1.05(tarting at 0.)-3.55 F F1 +(aname)180.33 398.4 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 -.25 +(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F1(name)2.5 E F0(ar)2.5 +E(guments are ignored.)-.18 E F2144 410.4 Q F1(delim)2.5 E F0 +1.318(The \214rst character of)180 422.4 R F1(delim)3.818 E F0 1.317 +(is used to terminate the input line, rather than ne)3.818 F 3.817 (wline. If)-.25 F F1(delim)180 434.4 Q F0(is the empty string,)2.5 E F2 -.18(re)2.5 G(ad).18 E F0 (will terminate a line when it reads a NUL character)2.5 E(.)-.55 E F2 -144 446.4 Q F0 .373 +144 446.4 Q F0 .372 (If the standard input is coming from a terminal,)180 446.4 R F2 -.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 +(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 458.4 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 470.4 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings, b)-2.5 E (ut uses Readline')-.2 E 2.5(sd)-.55 G(ef)-2.5 E (ault \214lename completion.)-.1 E F2144 482.4 Q F1(te)2.5 E(xt) --.2 E F0(If)180 482.4 Q F2 -.18(re)2.716 G(adline).18 E F0 .216 -(is being used to read the line,)2.716 F F1(te)2.716 E(xt)-.2 E F0 .216 -(is placed into the editing b)2.716 F(uf)-.2 E .215(fer before edit-) +-.2 E F0(If)180 482.4 Q F2 -.18(re)2.715 G(adline).18 E F0 .216 +(is being used to read the line,)2.715 F F1(te)2.716 E(xt)-.2 E F0 .216 +(is placed into the editing b)2.716 F(uf)-.2 E .216(fer before edit-) -.25 F(ing be)180 494.4 Q(gins.)-.15 E F2144 506.4 Q F1(nc)2.5 E -(har)-.15 E(s)-.1 E F2 -.18(re)180 518.4 S(ad).18 E F0 1.394 -(returns after reading)3.894 F F1(nc)3.894 E(har)-.15 E(s)-.1 E F0 1.395 -(characters rather than w)3.894 F 1.395(aiting for a complete line of) +(har)-.15 E(s)-.1 E F2 -.18(re)180 518.4 S(ad).18 E F0 1.395 +(returns after reading)3.895 F F1(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 530.4 Q(ut honors a delimiter if fe)-.2 E(wer than) -.25 E F1(nc)2.5 E(har)-.15 E(s)-.1 E F0 (characters are read before the delimiter)2.5 E(.)-.55 E F2144 542.4 Q F1(nc)2.5 E(har)-.15 E(s)-.1 E F2 -.18(re)180 554.4 S(ad).18 E -F0 1.269(returns after reading e)3.77 F(xactly)-.15 E F1(nc)3.769 E(har) --.15 E(s)-.1 E F0 1.269(characters rather than w)3.769 F 1.269 -(aiting for a complete)-.1 F .274 +F0 1.269(returns after reading e)3.769 F(xactly)-.15 E F1(nc)3.769 E +(har)-.15 E(s)-.1 E F0 1.269(characters rather than w)3.769 F 1.27 +(aiting for a complete)-.1 F .275 (line of input, unless EOF is encountered or)180 566.4 R F2 -.18(re) -2.775 G(ad).18 E F0 .275(times out.)2.775 F .275 -(Delimiter characters encoun-)5.275 F 1.003 +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 578.4 -R F2 -.18(re)3.502 G(ad).18 E F0 1.002(to return until)3.502 F F1(nc) -3.502 E(har)-.15 E(s)-.1 E F0 .608(characters are read.)180 590.4 R .608 -(The result is not split on the characters in)5.608 F F2(IFS)3.108 E F0 -3.108(;t)C .609(he intent is that the)-3.108 F -.25(va)180 602.4 S .67 +R F2 -.18(re)3.503 G(ad).18 E F0 1.003(to return until)3.503 F F1(nc) +3.503 E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 590.4 R .608 +(The result is not split on the characters in)5.609 F F2(IFS)3.108 E F0 +3.108(;t)C .608(he intent is that the)-3.108 F -.25(va)180 602.4 S .669 (riable is assigned e).25 F .669 -(xactly the characters read \(with the e)-.15 F .669 +(xactly the characters read \(with the e)-.15 F .67 (xception of backslash; see the)-.15 F F2180 614.4 Q F0 (option belo)2.5 E(w\).)-.25 E F2144 626.4 Q F1(pr)2.5 E(ompt)-.45 -E F0(Display)180 638.4 Q F1(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) +E F0(Display)180 638.4 Q F1(pr)3.661 E(ompt)-.45 E F0 1.161 +(on standard error)3.661 F 3.661(,w)-.4 G 1.161(ithout a trailing ne) -3.661 F 1.161(wline, before attempting to read)-.25 F(an)180 650.4 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 F2 -144 662.4 Q F0 .544(Backslash does not act as an escape character) -180 662.4 R 5.543(.T)-.55 G .543 +144 662.4 Q F0 .543(Backslash does not act as an escape character) +180 662.4 R 5.543(.T)-.55 G .544 (he backslash is considered to be part of)-5.543 F(the line.)180 674.4 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 F2144 686.4 Q F0(Silent mode.)180 686.4 Q (If input is coming from a terminal, characters are not echoed.)5 E F2 -144 698.4 Q F1(timeout)2.5 E F0(Cause)180 710.4 Q F2 -.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 +144 698.4 Q F1(timeout)2.5 E F0(Cause)180 710.4 Q F2 -.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 722.4 R F1(timeout)3.061 E -F0(seconds.)3.061 E F1(timeout)5.561 E F0 .56(may be a decimal number) -3.061 F(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(67)197.335 E 0 Cg +F0(seconds.)3.061 E F1(timeout)5.561 E F0 .561(may be a decimal number) +3.061 F(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(67)192.895 E 0 Cg EP %%Page: 68 68 %%BeginPageSetup @@ -8194,11 +8199,11 @@ BP (with a fractional portion follo)180 84 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 10/Times-Bold@0 SF -.18(re)2.5 G(ad).18 E F0 .506(is reading input from\ - a terminal, pipe, or other special \214le; it has no ef)180 96 R .505 -(fect when reading)-.25 F .589(from re)180 108 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 + a terminal, pipe, or other special \214le; it has no ef)180 96 R .506 +(fect when reading)-.25 F .59(from re)180 108 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 120 S(riable).25 E/F2 10/Times-Italic@0 SF(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 @@ -8208,41 +8213,41 @@ F1 -.18(re)3.089 G(ad).18 E F0(sa)3.089 E -.15(ve)-.2 G 3.089(sa).15 G 1.12(on-zero other)-3.62 F(-)-.2 E 2.5(wise. The)180 144 R -.15(ex)2.5 G (it status is greater than 128 if the timeout is e).15 E(xceeded.)-.15 E F1144 156 Q F2(fd)2.5 E F0(Read input from \214le descriptor)180 -156 Q F2(fd)2.5 E F0(.)A .477(If no)144 172.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 184.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 +156 Q F2(fd)2.5 E F0(.)A .476(If no)144 172.8 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 9/Times-Bold@0 SF(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 184.8 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 -.25(va)144 196.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 +(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 208.8 Q(gument to)-.18 E F1 2.5 E F0(.)A F1 -.18(re)108 225.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 237.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 249.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 261.6 Q 3.334(ed. The) +(may not be changed by subse-)3.54 F 1.096(quent assignment.)144 249.6 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 261.6 Q 3.334(ed. The) -.1 F F13.334 E F0 .834(option restricts the v)3.334 F .834 (ariables to inde)-.25 F -.15(xe)-.15 G 3.334(da).15 G .834(rrays; the) -3.334 F F13.334 E F0 .834(option restricts the v)3.334 F(ari-) --.25 E .777(ables to associati)144 273.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 285.6 R -.15(ve) +-.25 E .776(ables to associati)144 273.6 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 285.6 R -.15(ve) -.25 G .521(n, or if the).15 F F13.021 E F0 .521 (option is supplied, a list of all readonly names is printed.)3.021 F -.522(The other)5.521 F .295(options may be used to restrict the output \ -to a subset of the set of readonly names.)144 297.6 R(The)5.295 E F1 -2.795 E F0(option)2.795 E .786 +.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 297.6 R(The)5.296 E F1 +2.796 E F0(option)2.796 E .786 (causes output to be displayed in a format that may be reused as input.) -144 309.6 R .786(If a v)5.786 F .786(ariable name is fol-)-.25 F(lo)144 -321.6 Q .718(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v) +144 309.6 R .786(If a v)5.786 F .785(ariable name is fol-)-.25 F(lo)144 +321.6 Q .717(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) @@ -8250,143 +8255,143 @@ to a subset of the set of readonly names.)144 297.6 R(The)5.295 E F1 -.25 F .26(ariable name, or)-.25 F F12.76 E F0 .26 (is supplied with a)2.76 F F2(name)144.36 345.6 Q F0 (that is not a function.)2.68 E F1 -.18(re)108 362.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 374.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 +E F0([)2.5 E F2(n)A F0(])A .02(Causes a function to stop e)144 374.4 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 386.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 398.4 R 3.738(,t)-.4 G 1.238 +-.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 398.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.066(before the trap handler)144 +-3.738 F -.15(xe)-.15 G(cuted).15 E 1.067(before the trap handler)144 410.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 .39 +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 422.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 434.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 446.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 458.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 +.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 434.4 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 446.4 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 458.4 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 470.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 +(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 482.4 R -.15 (xe)-.15 G .381(cution of a script by).15 F F1(.)2.881 E F0(or)3.714 E -F1(sour)2.881 E(ce)-.18 E F0 5.381(.A)C .681 -.15(ny c)-5.381 H(om-).15 -E .75(mand associated with the)144 494.4 R F1(RETURN)3.249 E F0 .749 +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 494.4 R F1(RETURN)3.249 E F0 .749 (trap is e)3.249 F -.15(xe)-.15 G .749(cuted before e).15 F -.15(xe)-.15 -G .749(cution resumes after the function).15 F(or script.)144 506.4 Q F1 +G .75(cution resumes after the function).15 F(or script.)144 506.4 Q F1 (set)108 523.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 535.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 547.2 S .835 +(g)-.37 E F0(...])2.5 E -.4(Wi)144 547.2 S .836 (thout options, the name and v).4 F .835(alue of each shell v)-.25 F -.836(ariable are displayed in a format that can be)-.25 F .784 +.835(ariable are displayed in a format that can be)-.25 F .784 (reused as input for setting or resetting the currently-set v)144 559.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 571.2 R F2(posix)2.911 E F0 +R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .784 +(riables cannot be).25 F 2.912(reset. In)144 571.2 R F2(posix)2.912 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.531 -(locale. When)144 583.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 595.2 R 1.624 +(The output is sorted according to the current)5.412 F 3.53 +(locale. When)144 583.2 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 595.2 R 1.623 (alues for the positional parameters and are assigned, in)-.25 F(order) 144 607.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 619.2 Q -F0 1.378(Each v)184 619.2 R 1.377 +F0 1.377(Each v)184 619.2 R 1.377 (ariable or function that is created or modi\214ed is gi)-.25 F -.15(ve) --.25 G 3.877(nt).15 G 1.377(he e)-3.877 F 1.377(xport attrib)-.15 F -1.377(ute and)-.2 F(mark)184 631.2 Q(ed for e)-.1 E(xport to the en)-.15 -E(vironment of subsequent commands.)-.4 E F1144 643.2 Q F0 .131 +-.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 631.2 Q(ed for e)-.1 E(xport to the en)-.15 +E(vironment of subsequent commands.)-.4 E F1144 643.2 Q F0 .132 (Report the status of terminated background jobs immediately)184 643.2 R -2.632(,r)-.65 G .132(ather than before the ne)-2.632 F(xt)-.15 E +2.632(,r)-.65 G .131(ather than before the ne)-2.632 F(xt)-.15 E (primary prompt.)184 655.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 667.2 Q F0 -.088(Exit immediately if a)184 667.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 679.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 691.2 -R .079(xit if the command that f)-.15 F .079 +.087(Exit immediately if a)184 667.2 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 679.2 Q +F2 1.521(compound command)4.021 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 .079(The shell does not e)184 +691.2 R .079(xit if the command that f)-.15 F .08 (ails is part of the command list immediately)-.1 F(follo)184 703.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 715.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 727.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 -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(68)197.335 E 0 Cg EP +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 715.2 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 727.2 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 +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(68)192.895 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 -.25(va)184 84 S -.661(lue is being in).25 F -.15(ve)-.4 G .661(rted with).15 F/F1 10 -/Times-Bold@0 SF(!)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 +.66(lue is being in).25 F -.15(ve)-.4 G .66(rted with).15 F/F1 10 +/Times-Bold@0 SF(!)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 96 R 1.112(ailed while)-.1 F F1 -3.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 108 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 120 R .617 +3.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 108 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 120 R .617 (vironment and each subshell en)-.4 F .617(vironment separately \(see) --.4 F/F2 9/Times-Bold@0 SF .618(COMMAND EXE-)3.118 F .643(CUTION ENVIR) +-.4 F/F2 9/Times-Bold@0 SF .617(COMMAND EXE-)3.117 F .642(CUTION ENVIR) 184 132 R(ONMENT)-.27 E F0(abo)2.893 E -.15(ve)-.15 G .643 (\), and may cause subshells to e).15 F .643(xit before e)-.15 F -.15 -(xe)-.15 G .642(cuting all).15 F(the commands in the subshell.)184 144 Q +(xe)-.15 G .643(cuting all).15 F(the commands in the subshell.)184 144 Q 2.042(If a compound command or shell function e)184 162 R -.15(xe)-.15 G 2.042(cutes in a conte).15 F 2.042(xt where)-.15 F F14.542 E F0 -2.043(is being)4.543 F 1.436(ignored, none of the commands e)184 174 R --.15(xe)-.15 G 1.435(cuted within the compound command or function).15 F -.193(body will be af)184 186 R .193(fected by the)-.25 F F12.693 E +2.042(is being)4.542 F 1.435(ignored, none of the commands e)184 174 R +-.15(xe)-.15 G 1.436(cuted within the compound command or function).15 F +.194(body will be af)184 186 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 .194(is set and a command returns a f)2.693 F(ailure) +2.693 E F0 .193(is set and a command returns a f)2.693 F(ailure) -.1 E 3.39(status. If)184 198 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 210 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 +(where)184 210 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 222 Q F1 144 234 Q F0(Disable pathname e)184 234 Q(xpansion.)-.15 E F1 -144 246 Q F0 2.239(Remember the location of commands as the)184 -246 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 -258 Q(ault.)-.1 E F1144 270 Q F0 .513(All ar)184 270 R .514 +144 246 Q F0 2.238(Remember the location of commands as the)184 +246 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 +258 Q(ault.)-.1 E F1144 270 Q F0 .514(All ar)184 270 R .514 (guments in the form of assignment statements are placed in the en)-.18 -F .514(vironment for a)-.4 F +F .513(vironment for a)-.4 F (command, not just those that precede the command name.)184 282 Q F1 -144 294 Q F0 .149(Monitor mode.)184 294 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 +144 294 Q F0 .148(Monitor mode.)184 294 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 306 R F2 .651(JOB CONTR)3.151 F -(OL)-.27 E F0(abo)2.901 E -.15(ve)-.15 G 3.151(\). All).15 F .651 -(processes run in a separate)3.151 F .679(process group.)184 318 R .678 +(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 318 R .679 (When a background job completes, the shell prints a line containing it\ -s)5.679 F -.15(ex)184 330 S(it status.).15 E F1144 342 Q F0 .652 -(Read commands b)184 342 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 354 Q(This is ignored by interacti)5 E .3 +s)5.678 F -.15(ex)184 330 S(it status.).15 E F1144 342 Q F0 .653 +(Read commands b)184 342 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 354 Q(This is ignored by interacti)5 E .3 -.15(ve s)-.25 H(hells.).15 E F1144 366 Q/F3 10/Times-Italic@0 SF (option\255name)2.5 E F0(The)184 378 Q F3(option\255name)2.5 E F0 (can be one of the follo)2.5 E(wing:)-.25 E F1(allexport)184 390 Q F0 @@ -8403,14 +8408,14 @@ F0 2.5(option. This)224 462 R(also af)2.5 E(fects the editing interf) (functrace)184 498 Q F0(Same as)224 510 Q F12.5 E F0(.)A F1 (hashall)184 522 Q F0(Same as)224 522 Q F12.5 E F0(.)A F1 (histexpand)184 534 Q F0(Same as)224 546 Q F12.5 E F0(.)A F1 -(history)184 558 Q F0 .587(Enable command history)224 558 R 3.087(,a) +(history)184 558 Q F0 .586(Enable command history)224 558 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 570 Q (ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184 -582 Q(eeof)-.18 E F0 1.656(The ef)224 594 R 1.656 +582 Q(eeof)-.18 E F0 1.657(The ef)224 594 R 1.657 (fect is as if the shell command)-.25 F/F5 10/Courier@0 SF(IGNOREEOF=10) -4.157 E F0 1.657(had been e)4.157 F -.15(xe)-.15 G(cuted).15 E(\(see)224 +4.156 E F0 1.656(had been e)4.156 F -.15(xe)-.15 G(cuted).15 E(\(see)224 606 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 618 S(yw).1 E(ord)-.1 E F0(Same as)224 630 Q F1 2.5 E F0(.)A F1(monitor)184 642 Q F0(Same as)224 642 Q F12.5 @@ -8419,7 +8424,7 @@ E F0(.)A F1(noexec)184 678 Q F0(Same as)224 678 Q F12.5 E F0(.)A F1(noglob)184 690 Q F0(Same as)224 690 Q F12.5 E F0(.)A F1(nolog) 184 702 Q F0(Currently ignored.)224 702 Q F1(notify)184 714 Q F0 (Same as)224 714 Q F12.5 E F0(.)A(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(69)197.335 E 0 Cg EP +(2017 October 7)143.735 E(69)192.895 E 0 Cg EP %%Page: 70 70 %%BeginPageSetup BP @@ -8429,60 +8434,60 @@ BP SF(nounset)184 84 Q F0(Same as)224 84 Q F12.5 E F0(.)A F1(onecmd) 184 96 Q F0(Same as)224 96 Q F12.5 E F0(.)A F1(ph)184 108 Q (ysical)-.15 E F0(Same as)224 108 Q F12.5 E F0(.)A F1(pipefail)184 -120 Q F0 1.03(If set, the return v)224 120 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 132 R +120 Q F0 1.029(If set, the return v)224 120 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 132 R 1.136 (xit with a non-zero status, or zero if all commands in the pipeline) -.15 F -.15(ex)224 144 S(it successfully).15 E 5(.T)-.65 G (his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 156 Q F0 -2.091(Change the beha)224 156 R 2.091(vior of)-.2 F F1(bash)4.591 E F0 +2.09(Change the beha)224 156 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 168 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 180 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 +/Times-Bold@0 SF 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 180 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 192 Q(vior)-.2 E(.)-.55 E F1(pri)184 204 Q(vileged)-.1 E F0(Same as)224 216 Q F12.5 E F0(.)A F1 -.1(ve)184 228 S(rbose).1 E F0(Same as)224 -228 Q F12.5 E F0(.)A F1(vi)184 240 Q F0 1.465 -(Use a vi-style command line editing interf)224 240 R 3.966(ace. This) --.1 F 1.466(also af)3.966 F 1.466(fects the editing)-.25 F(interf)224 +228 Q F12.5 E F0(.)A F1(vi)184 240 Q F0 1.466 +(Use a vi-style command line editing interf)224 240 R 3.965(ace. This) +-.1 F 1.465(also af)3.965 F 1.465(fects the editing)-.25 F(interf)224 252 Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1 (xtrace)184 264 Q F0(Same as)224 264 Q F12.5 E F0(.)A(If)184 282 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 -294 Q F0 1.071(is supplied with no)3.571 F F2(option\255name)3.571 E F0 -3.571(,as)C 1.071(eries of)-3.571 F F1(set)3.572 E F0 1.072 -(commands to recreate the current)3.572 F +F13.052 E F0 .552(is supplied with no)3.052 F F2(option\255name) +3.053 E F0 3.053(,t)C .553(he v)-3.053 F .553 +(alues of the current options are printed.)-.25 F(If)5.553 E F1(+o)184 +294 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 306 Q F1 -144 318 Q F0 -.45(Tu)184 318 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 330 R 1.501 -(vironment, and the)-.4 F F3(SHELLOPTS)4.001 E/F4 9/Times-Roman@0 SF(,)A -F3 -.27(BA)184 342 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 354 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 +144 318 Q F0 -.45(Tu)184 318 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($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 330 R 1.5 +(vironment, and the)-.4 F F3(SHELLOPTS)4 E/F4 9/Times-Roman@0 SF(,)A F3 +-.27(BA)184 342 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 354 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 366 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 378 Q .694 -.15(ve u)-.25 H .394 +(option is not supplied, these actions are tak)2.961 F .462 +(en and the ef)-.1 F(fec-)-.25 E(ti)184 378 Q .695 -.15(ve u)-.25 H .395 (ser id is set to the real user id.).15 F .395(If the)5.395 F F1 -2.895 E F0 .395(option is supplied at startup, the ef)2.895 F(fecti)-.25 -E -.15(ve)-.25 G .387(user id is not reset.)184 390 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 +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 390 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 402 Q F1144 414 Q F0 (Exit after reading and e)184 414 Q -.15(xe)-.15 G(cuting one command.) -.15 E F1144 426 Q F0 -.35(Tr)184 426 S .043(eat unset v).35 F .044 +.15 E F1144 426 Q F0 -.35(Tr)184 426 S .044(eat unset v).35 F .044 (ariables and parameters other than the special parameters "@" and "*" \ -as an)-.25 F .183(error when performing parameter e)184 438 R 2.683 -(xpansion. If)-.15 F -.15(ex)2.683 G .182 +as an)-.25 F .182(error when performing parameter e)184 438 R 2.682 +(xpansion. If)-.15 F -.15(ex)2.682 G .183 (pansion is attempted on an unset v).15 F(ari-)-.25 E .746 (able or parameter)184 450 R 3.246(,t)-.4 G .746 (he shell prints an error message, and, if not interacti)-3.246 F -.15 @@ -8491,37 +8496,37 @@ as an)-.25 F .183(error when performing parameter e)184 438 R 2.683 (ya)-.15 G(re read.)-2.5 E F1144 486 Q F0 .315(After e)184 486 R .315(xpanding each)-.15 F F2 .315(simple command)2.815 F F0(,)A F1 -.25 (fo)2.815 G(r).25 E F0(command,)2.815 E F1(case)2.815 E F0(command,) -2.815 E F1(select)2.815 E F0(command,)2.815 E 1.235(or arithmetic)184 +2.815 E F1(select)2.815 E F0(command,)2.815 E 1.236(or arithmetic)184 498 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 510 Q (xpanded ar)-.15 E(guments or associated w)-.18 E(ord list.)-.1 E F1 -144 522 Q F0 2.579(The shell performs brace e)184 522 R 2.578 +144 522 Q F0 2.578(The shell performs brace e)184 522 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.078(\). This).15 F 2.578(is on by)5.078 F(def)184 534 Q -(ault.)-.1 E F1144 546 Q F0 .213(If set,)184 546 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 +-.15(ve)-.15 G 5.079(\). This).15 F 2.579(is on by)5.079 F(def)184 534 Q +(ault.)-.1 E F1144 546 Q F0 .214(If set,)184 546 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 (xisting \214le with the)-.15 F F1(>)2.714 E F0(,)A F1(>&)2.714 E F0 -2.714(,a)C(nd)-2.714 E F1(<>)2.714 E F0 .214(redirection opera-)2.714 F -3.054(tors. This)184 558 R .553(may be o)3.053 F -.15(ve)-.15 G .553 +2.713(,a)C(nd)-2.713 E F1(<>)2.713 E F0 .213(redirection opera-)2.713 F +3.053(tors. This)184 558 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 570 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 -144 582 Q F0 .103(If set, an)184 582 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 594 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 606 Q F1 -144 618 Q F0(Enable)184 618 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 630 Q -.15 -(ve)-.25 G(.).15 E F1144 642 Q F0 .96 +144 582 Q F0 .104(If set, an)184 582 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 594 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 606 Q F1 +144 618 Q F0(Enable)184 618 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 630 Q -.15 +(ve)-.25 G(.).15 E F1144 642 Q F0 .959 (If set, the shell does not resolv)184 642 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 +(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 654 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 666 R(def)2.686 +(.I)-.65 G 5.322(tu)-7.822 G 2.822(ses the ph)-5.322 F 2.821 +(ysical directory structure)-.05 F 2.685(instead. By)184 666 R(def)2.685 E(ault,)-.1 E F1(bash)2.686 E F0(follo)2.686 E .186 (ws the logical chain of directories when performing com-)-.25 F (mands which change the current directory)184 678 Q(.)-.65 E F1144 @@ -8532,61 +8537,62 @@ E(ault,)-.1 E F1(bash)2.686 E F0(follo)2.686 E .186 (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 714 Q F0 (traps are normally not inherited in such cases.)2.5 E(GNU Bash 4.4)72 -768 Q(2017 June 23)148.175 E(70)197.335 E 0 Cg EP +768 Q(2017 October 7)143.735 E(70)192.895 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 -SF144 84 Q F0 .4(If no ar)184 84 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 -96 Q/F2 10/Times-Italic@0 SF(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G -2.5(ni).15 G 2.5(fs)-2.5 G(ome of them be)-2.5 E(gin with a)-.15 E F1 -2.5 E F0(.)A F1144 108 Q F0 1.945 +SF144 84 Q F0 .401(If no ar)184 84 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 96 Q/F2 +10/Times-Italic@0 SF(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5(ni) +.15 G 2.5(fs)-2.5 G(ome of them be)-2.5 E(gin with a)-.15 E F12.5 E +F0(.)A F1144 108 Q F0 1.944 (Signal the end of options, cause all remaining)184 108 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 120 R F1 -3.445 E F0(and)3.445 E F13.445 E F0 .945 -(options are turned of)3.445 F 3.445(f. If)-.25 F .946(there are no) -3.445 F F2(ar)3.446 E(g)-.37 E F0 .946(s, the positional)B +(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 120 R F1 +3.446 E F0(and)3.446 E F13.446 E F0 .945 +(options are turned of)3.446 F 3.445(f. If)-.25 F .945(there are no) +3.445 F F2(ar)3.445 E(g)-.37 E F0 .945(s, the positional)B (parameters remain unchanged.)184 132 Q .425(The options are of)144 148.8 R 2.925(fb)-.25 G 2.925(yd)-2.925 G(ef)-2.925 E .425 (ault unless otherwise noted.)-.1 F .425 -(Using + rather than \255 causes these options)5.425 F .177 -(to be turned of)144 160.8 R 2.677(f. The)-.25 F .178 +(Using + rather than \255 causes these options)5.425 F .178 +(to be turned of)144 160.8 R 2.678(f. The)-.25 F .178 (options can also be speci\214ed as ar)2.678 F .178(guments to an in) --.18 F -.2(vo)-.4 G .178(cation of the shell.).2 F(The)5.178 E .066 +-.18 F -.2(vo)-.4 G .177(cation of the shell.).2 F(The)5.177 E .066 (current set of options may be found in)144 172.8 R F1<24ad>2.566 E F0 5.066(.T)C .066(he return status is al)-5.066 F -.1(wa)-.1 G .066 -(ys true unless an in).1 F -.25(va)-.4 G .066(lid option).25 F +(ys true unless an in).1 F -.25(va)-.4 G .067(lid option).25 F (is encountered.)144 184.8 Q F1(shift)108 201.6 Q F0([)2.5 E F2(n)A F0 -(])A .428(The positional parameters from)144 213.6 R F2(n)2.928 E F0 -.429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.429 G -.429(rameters represented by the num-).15 F(bers)144 225.6 Q F1($#)2.583 -E F0(do)2.583 E .083(wn to)-.25 F F1($#)2.583 E F0A F2(n)A F0 .083 -(+1 are unset.)B F2(n)5.443 E F0 .083(must be a non-ne)2.823 F -.05(ga) --.15 G(ti).05 E .382 -.15(ve n)-.25 H .082(umber less than or equal to) -.15 F F1($#)2.582 E F0 5.082(.I)C(f)-5.082 E F2(n)2.942 E F0 .06 +(])A .429(The positional parameters from)144 213.6 R F2(n)2.929 E F0 +.429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.428 G +.428(rameters represented by the num-).15 F(bers)144 225.6 Q F1($#)2.582 +E F0(do)2.582 E .082(wn to)-.25 F F1($#)2.582 E F0A F2(n)A F0 .082 +(+1 are unset.)B F2(n)5.442 E F0 .082(must be a non-ne)2.822 F -.05(ga) +-.15 G(ti).05 E .383 -.15(ve n)-.25 H .083(umber less than or equal to) +.15 F F1($#)2.583 E F0 5.083(.I)C(f)-5.083 E F2(n)2.943 E F0 .06 (is 0, no parameters are changed.)144 237.6 R(If)5.06 E F2(n)2.92 E F0 .06(is not gi)2.8 F -.15(ve)-.25 G .06(n, it is assumed to be 1.).15 F (If)5.06 E F2(n)2.92 E F0 .06(is greater than)2.8 F F1($#)2.56 E F0 2.56 -(,t)C(he)-2.56 E .144(positional parameters are not changed.)144 249.6 R -.144(The return status is greater than zero if)5.144 F F2(n)3.003 E F0 -.143(is greater than)2.883 F F1($#)2.643 E F0 +(,t)C(he)-2.56 E .143(positional parameters are not changed.)144 249.6 R +.144(The return status is greater than zero if)5.143 F F2(n)3.004 E F0 +.144(is greater than)2.884 F F1($#)2.644 E F0 (or less than zero; otherwise 0.)144 261.6 Q F1(shopt)108 278.4 Q F0([) 2.5 E F1(\255pqsu)A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(optname) --2.5 E F0(...])2.5 E -.8(To)144 290.4 S .639(ggle the v).8 F .639 +-2.5 E F0(...])2.5 E -.8(To)144 290.4 S .64(ggle the v).8 F .639 (alues of settings controlling optional shell beha)-.25 F(vior)-.2 E -5.639(.T)-.55 G .64(he settings can be either those)-5.639 F .375 -(listed belo)144 302.4 R 1.675 -.65(w, o)-.25 H 1.175 -.4(r, i).65 H -2.875(ft).4 G(he)-2.875 E F12.875 E F0 .375 +5.639(.T)-.55 G .639(he settings can be either those)-5.639 F .374 +(listed belo)144 302.4 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 (option is used, those a)2.875 F -.25(va)-.2 G .375(ilable with the).25 -F F12.875 E F0 .374(option to the)2.875 F F1(set)2.874 E F0 -.2 -(bu)2.874 G .374(iltin com-).2 F 3.325(mand. W)144 314.4 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 +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 314.4 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 326.4 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 338.4 Q(Other options ha)5 E .3 @@ -8594,64 +8600,64 @@ F13.445 E F0 .945(option causes output to be displayed in a form) F0(Enable \(set\) each)180 350.4 Q F2(optname)2.5 E F0(.)A F1144 362.4 Q F0(Disable \(unset\) each)180 362.4 Q F2(optname)2.5 E F0(.)A F1 144 374.4 Q F0 .003(Suppresses normal output \(quiet mode\); the \ -return status indicates whether the)180 374.4 R F2(optname)2.504 E F0 -(is)2.504 E .256(set or unset.)180 386.4 R .256(If multiple)5.256 F F2 -(optname)2.756 E F0(ar)2.756 E .256(guments are gi)-.18 F -.15(ve)-.25 G -2.756(nw).15 G(ith)-2.756 E F12.756 E F0 2.755(,t)C .255 -(he return status is zero if)-2.755 F(all)180 398.4 Q F2(optnames)2.5 E +return status indicates whether the)180 374.4 R F2(optname)2.503 E F0 +(is)2.503 E .255(set or unset.)180 386.4 R .255(If multiple)5.255 F F2 +(optname)2.755 E F0(ar)2.755 E .256(guments are gi)-.18 F -.15(ve)-.25 G +2.756(nw).15 G(ith)-2.756 E F12.756 E F0 2.756(,t)C .256 +(he return status is zero if)-2.756 F(all)180 398.4 Q F2(optnames)2.5 E F0(are enabled; non-zero otherwise.)2.5 E F1144 410.4 Q F0 (Restricts the v)180 410.4 Q(alues of)-.25 E F2(optname)2.5 E F0 (to be those de\214ned for the)2.5 E F12.5 E F0(option to the)2.5 -E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .624(If either)144 427.2 R F1 -3.124 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 .625(If either)144 427.2 R F1 +3.125 E F0(or)3.124 E F13.124 E F0 .624(is used with no) 3.124 F F2(optname)3.124 E F0(ar)3.124 E(guments,)-.18 E F1(shopt)3.124 -E F0(sho)3.124 E .624(ws only those options which are)-.25 F 2.234 +E F0(sho)3.124 E .624(ws only those options which are)-.25 F 2.233 (set or unset, respecti)144 439.2 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 451.2 Q(ault.) -.1 E 1.544(The return status when listing options is zero if all)144 -468 R F2(optnames)4.044 E F0 1.545(are enabled, non-zero otherwise.) -4.045 F .696 +468 R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.) +4.044 F .696 (When setting or unsetting options, the return status is zero unless an) -144 480 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .695(alid shell) +144 480 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696(alid shell) -.25 F(option.)144 492 Q(The list of)144 508.8 Q F1(shopt)2.5 E F0 -(options is:)2.5 E F1(autocd)144 526.8 Q F0 .199 +(options is:)2.5 E F1(autocd)144 526.8 Q F0 .2 (If set, a command name that is the name of a directory is e)184 526.8 R --.15(xe)-.15 G .2(cuted as if it were the ar).15 F(gu-)-.18 E +-.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E (ment to the)184 538.8 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F (option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E -F1(cdable_v)144 550.8 Q(ars)-.1 E F0 .156(If set, an ar)184 562.8 R .156 -(gument to the)-.18 F F1(cd)2.656 E F0 -.2(bu)2.656 G .155 +F1(cdable_v)144 550.8 Q(ars)-.1 E F0 .155(If set, an ar)184 562.8 R .155 +(gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156 (iltin command that is not a directory is assumed to be the).2 F (name of a v)184 574.8 Q(ariable whose v)-.25 E (alue is the directory to change to.)-.25 E F1(cdspell)144 586.8 Q F0 1.055 (If set, minor errors in the spelling of a directory component in a)184 -586.8 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.988 -(corrected. The)184 598.8 R 1.488(errors check)3.988 F 1.487 -(ed for are transposed characters, a missing character)-.1 F 3.987(,a) --.4 G(nd)-3.987 E .77(one character too man)184 610.8 R 4.57 -.65(y. I) +586.8 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 +(corrected. The)184 598.8 R 1.487(errors check)3.987 F 1.487 +(ed for are transposed characters, a missing character)-.1 F 3.988(,a) +-.4 G(nd)-3.988 E .77(one character too man)184 610.8 R 4.57 -.65(y. I) -.15 H 3.27(fac).65 G .77 (orrection is found, the corrected \214lename is printed, and)-3.27 F (the command proceeds.)184 622.8 Q (This option is only used by interacti)5 E .3 -.15(ve s)-.25 H(hells.) -.15 E F1(checkhash)144 634.8 Q F0 .737(If set,)184 646.8 R F1(bash)3.237 -E F0 .736(checks that a command found in the hash table e)3.237 F .736 +.15 E F1(checkhash)144 634.8 Q F0 .736(If set,)184 646.8 R F1(bash)3.236 +E F0 .736(checks that a command found in the hash table e)3.236 F .737 (xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184 658.8 Q(If a hashed command no longer e)5 E (xists, a normal path search is performed.)-.15 E F1(checkjobs)144 670.8 -Q F0 .448(If set,)184 682.8 R F1(bash)2.948 E F0 .448 -(lists the status of an)2.948 F 2.949(ys)-.15 G .449 -(topped and running jobs before e)-2.949 F .449(xiting an interacti)-.15 -F -.15(ve)-.25 G 3.439(shell. If)184 694.8 R(an)3.439 E 3.439(yj)-.15 G -.938(obs are running, this causes the e)-3.439 F .938 -(xit to be deferred until a second e)-.15 F .938(xit is)-.15 F 2.203 +Q F0 .449(If set,)184 682.8 R F1(bash)2.949 E F0 .449 +(lists the status of an)2.949 F 2.949(ys)-.15 G .448 +(topped and running jobs before e)-2.949 F .448(xiting an interacti)-.15 +F -.15(ve)-.25 G 3.438(shell. If)184 694.8 R(an)3.438 E 3.438(yj)-.15 G +.938(obs are running, this causes the e)-3.438 F .938 +(xit to be deferred until a second e)-.15 F .939(xit is)-.15 F 2.203 (attempted without an interv)184 706.8 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 718.8 Q -.1(wa) +-.15(ve)-.15 G 4.703(\). The).15 F(shell)4.703 E(al)184 718.8 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(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E -(71)197.335 E 0 Cg EP +(obs are stopped.)-2.5 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E +(71)192.895 E 0 Cg EP %%Page: 72 72 %%BeginPageSetup BP @@ -8666,109 +8672,110 @@ SF(checkwinsize)144 84 Q F0 1.09(If set,)184 96 R F1(bash)3.59 E F0 1.09 /Times-Roman@0 SF(.)A F1(cmdhist)144 120 Q F0 1.202(If set,)184 120 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 132 Q 6.133(.T)-.65 G 1.133(his allo)-6.133 F 1.133 -(ws easy re-editing of multi-line commands.)-.25 F 1.132 -(This option is enabled by)6.132 F(def)184 144 Q .613(ault, b)-.1 F .613 -(ut only has an ef)-.2 F .614 -(fect if command history is enabled, as described abo)-.25 F .914 -.15 +(entry)184 132 Q 6.132(.T)-.65 G 1.132(his allo)-6.132 F 1.132 +(ws easy re-editing of multi-line commands.)-.25 F 1.133 +(This option is enabled by)6.133 F(def)184 144 Q .614(ault, b)-.1 F .614 +(ut only has an ef)-.2 F .613 +(fect if command history is enabled, as described abo)-.25 F .913 -.15 (ve u)-.15 H(nder).15 E F2(HIST)184 156 Q(OR)-.162 E(Y)-.315 E F3(.)A F1 -(compat31)144 168 Q F0 .42(If set,)184 180 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 192 R F1([[)2.961 E F0 .462(conditional command')2.962 F(s)-.55 E F1 +(compat31)144 168 Q F0 .419(If set,)184 180 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 192 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 204 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 .82 +3.21 F -.15(ve)3.21 G .71(rsions prior to bash-4.1).15 F .821 (use ASCII collation and)184 216 R/F4 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 228 Q F4(str) -2.5 E(coll)-.37 E F0(\(3\).).51 E F1(compat32)144 240 Q F0 1.41(If set,) -184 252 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 +.19 F 3.32(sc)-.55 G(ollation)-3.32 E(sequence and)184 228 Q F4(str)2.5 +E(coll)-.37 E F0(\(3\).).51 E F1(compat32)144 240 Q F0 1.409(If set,)184 +252 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 3.2 with respect to locale-speci\214c)-.15 F .423 (string comparison when using the)184 264 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 +2.922 E F0 .422(operators \(see pre-)2.922 F .48 (vious item\) and the ef)184 276 R .481 -(fect of interrupting a command list.)-.25 F .48(Bash v)5.481 F .48 +(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 288 Q (xt command in the list after one terminates due to an interrupt.)-.15 E -F1(compat40)144 300 Q F0 1.409(If set,)184 312 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 324 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 336 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 -348 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 360 Q -(xt command in the list.)-.15 E F1(compat41)144 372 Q F0 1.483(If set,) -184 384 R F1(bash)3.983 E F0 3.983(,w)C 1.483(hen in)-3.983 F F4(posix) -3.983 E F0 1.484 -(mode, treats a single quote in a double-quoted parameter)3.983 F -.15 -(ex)184 396 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 +F1(compat40)144 300 Q F0 1.41(If set,)184 312 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 4.0 with respect to locale-speci\214c)-.15 F 2.007 +(string comparison when using the)184 324 R F1([[)4.507 E F0 2.008 +(conditional command')4.507 F(s)-.55 E F1(<)4.508 E F0(and)4.508 E F1(>) +4.508 E F0 2.008(operators \(see)4.508 F .77(description of)184 336 R F1 +(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 348 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 360 Q +(xt command in the list.)-.15 E F1(compat41)144 372 Q F0 1.484(If set,) +184 384 R F1(bash)3.984 E F0 3.984(,w)C 1.484(hen in)-3.984 F F4(posix) +3.984 E F0 1.483 +(mode, treats a single quote in a double-quoted parameter)3.984 F -.15 +(ex)184 396 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 408 -R .59(This is the beha)5.59 F .59(vior of)-.2 F .59 +R .59(This is the beha)5.59 F .59(vior of)-.2 F .589 (posix mode through v)184 420 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 +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 432 Q F1(compat42)144 444 Q -F0 1.796(If set,)184 456 R F1(bash)4.296 E F0 1.796 +F0 1.797(If set,)184 456 R F1(bash)4.297 E F0 1.796 (does not process the replacement string in the pattern substitution w) 4.296 F(ord)-.1 E -.15(ex)184 468 S(pansion using quote remo).15 E -.25 -(va)-.15 G(l.).25 E F1(compat43)144 480 Q F0 .141(If set,)184 492 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 504 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 516 S .353 +(va)-.15 G(l.).25 E F1(compat43)144 480 Q F0 .14(If set,)184 492 R F1 +(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 504 R .913(gument to)-.18 F F1 +(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 516 S .352 (tal errors that cause the current command to f).1 F .353(ail \(the def) --.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 528 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 540 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 +-.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 528 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 540 R -.15(xe)-.15 G .374(cuted \(this allo).15 F +(ws)-.25 E F1(br)2.874 E(eak)-.18 E F0(or)2.875 E F1(continue)2.875 E F0 +.375(in a shell function to af)2.875 F .375(fect loops in)-.25 F (the caller')184 552 Q 2.5(sc)-.55 G(onte)-2.5 E(xt\).)-.15 E F1 -(complete_fullquote)144 564 Q F0 .653(If set,)184 576 R F1(bash)3.153 E +(complete_fullquote)144 564 Q F0 .654(If set,)184 576 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.525(forming completion.)184 588 R 1.524 -(If not set,)6.525 F F1(bash)4.024 E F0(remo)4.024 E -.15(ve)-.15 G +mes when per)3.153 F(-)-.2 E 1.524(forming completion.)184 588 R 1.524 +(If not set,)6.524 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 600 R .029(metacharacters appear in shell v)184 -612 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 624 R 1.073 +enames when these)184 600 R .028(metacharacters appear in shell v)184 +612 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 624 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 636 T 1.923 -.4(r, a).25 H 1.423 -.15(ny d).4 H 1.123 +(ev e)184 636 T 1.922 -.4(r, a).25 H 1.422 -.15(ny d).4 H 1.123 (ollar signs appearing in \214lenames will not be quoted, either).15 F -6.123(.T)-.55 G 1.122(his is acti)-6.123 F -.15(ve)-.25 G .59 +6.123(.T)-.55 G 1.123(his is acti)-6.123 F -.15(ve)-.25 G .59 (only when bash is using backslashes to quote completed \214lenames.)184 648 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 660 Q (ault, which is the def)-.1 E(ault bash beha)-.1 E(vior in v)-.2 E -(ersions through 4.2.)-.15 E F1(dir)144 672 Q(expand)-.18 E F0 .487 -(If set,)184 684 R F1(bash)2.987 E F0 .486 +(ersions through 4.2.)-.15 E F1(dir)144 672 Q(expand)-.18 E F0 .486 +(If set,)184 684 R F1(bash)2.986 E F0 .486 (replaces directory names with the results of w)2.986 F .486(ord e)-.1 F -.486(xpansion when perform-)-.15 F .179(ing \214lename completion.)184 -696 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 -708 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(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E -(72)197.335 E 0 Cg EP +.487(xpansion when perform-)-.15 F .18(ing \214lename completion.)184 +696 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 708 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(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 +E(72)192.895 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/F1 10/Times-Bold@0 -SF(dirspell)144 84 Q F0 .859(If set,)184 84 R F1(bash)3.359 E F0 .858 -(attempts spelling correction on directory names during w)3.359 F .858 +SF(dirspell)144 84 Q F0 .858(If set,)184 84 R F1(bash)3.358 E F0 .858 +(attempts spelling correction on directory names during w)3.358 F .859 (ord completion if)-.1 F (the directory name initially supplied does not e)184 96 Q(xist.)-.15 E F1(dotglob)144 108 Q F0 .165(If set,)184 108 R F1(bash)2.665 E F0 .165 @@ -8778,40 +8785,40 @@ F1(dotglob)144 108 Q F0 .165(If set,)184 108 R F1(bash)2.665 E F0 .165 G(')-.08 E F0(and)5 E F1 -.63(``)2.5 G(..).63 E -.63('')-.55 G F0 (must al)5.63 E -.1(wa)-.1 G(ys be matched e).1 E(xplicitly)-.15 E 2.5 (,e)-.65 G -.15(ve)-2.75 G 2.5(ni).15 G(f)-2.5 E F1(dotglob)2.5 E F0 -(is set.)2.5 E F1(execfail)144 132 Q F0 1.387(If set, a non-interacti) -184 132 R 1.687 -.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 +(is set.)2.5 E F1(execfail)144 132 Q F0 1.386(If set, a non-interacti) +184 132 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.387 (cute the \214le speci\214ed as an).15 F(ar)184 144 Q(gument to the)-.18 E F1(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E(An interacti)5 E .3 -.15(ve s)-.25 H(hell does not e).15 E(xit if)-.15 E F1(exec)2.5 E F0 --.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 156 Q F0 .716 +-.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 156 Q F0 .717 (If set, aliases are e)184 168 R .717(xpanded as described abo)-.15 F 1.017 -.15(ve u)-.15 H(nder).15 E/F2 9/Times-Bold@0 SF(ALIASES)3.217 E -/F3 9/Times-Roman@0 SF(.)A F0 .717(This option is enabled)5.217 F +/F3 9/Times-Roman@0 SF(.)A F0 .716(This option is enabled)5.217 F (by def)184 180 Q(ault for interacti)-.1 E .3 -.15(ve s)-.25 H(hells.) -.15 E F1(extdeb)144 192 Q(ug)-.2 E F0 .672(If set at shell in)184 204 R --.2(vo)-.4 G .672(cation, arrange to e).2 F -.15(xe)-.15 G .671 -(cute the deb).15 F .671(ugger pro\214le before the shell starts,)-.2 F -.22(identical to the)184 216 R F12.72 E(ugger)-.2 E F0 2.721 -(option. If)2.721 F .221(set after in)2.721 F -.2(vo)-.4 G .221 -(cation, beha).2 F .221(vior intended for use by)-.2 F(deb)184 228 Q -(uggers is enabled:)-.2 E F1(1.)184 240 Q F0(The)220 240 Q F14.251 -E F0 1.751(option to the)4.251 F F1(declar)4.251 E(e)-.18 E F0 -.2(bu) +.15 E F1(extdeb)144 192 Q(ug)-.2 E F0 .671(If set at shell in)184 204 R +-.2(vo)-.4 G .671(cation, arrange to e).2 F -.15(xe)-.15 G .671 +(cute the deb).15 F .672(ugger pro\214le before the shell starts,)-.2 F +.221(identical to the)184 216 R F12.721 E(ugger)-.2 E F0 +2.721(option. If)2.721 F .221(set after in)2.721 F -.2(vo)-.4 G .221 +(cation, beha).2 F .22(vior intended for use by)-.2 F(deb)184 228 Q +(uggers is enabled:)-.2 E F1(1.)184 240 Q F0(The)220 240 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 252 Q (gument.)-.18 E F1(2.)184 264 Q F0 1.667(If the command run by the)220 264 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 276 -Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 288 Q F0 .841 -(If the command run by the)220 288 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 +Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 288 Q F0 .84 +(If the command run by the)220 288 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 300 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 312 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 324 Q F2 -.27(BA)220 324 S(SH_ARGC).27 E F0 -(and)3.154 E F2 -.27(BA)3.404 G(SH_ARGV).27 E F0 .904 +(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 336 Q -.15(ve)-.15 G(.).15 E F1(5.)184 348 Q F0 1.637(Function tracing is ena\ bled: command substitution, shell functions, and sub-)220 348 R @@ -8831,74 +8838,74 @@ E F0(")A F4(string)A F0 4.973("q)C 2.473(uoting is performed within) -4.973 F F1(${)4.973 E F4(par)A(ameter)-.15 E F1(})A F0 -.15(ex)4.973 G (pansions).15 E(enclosed in double quotes.)184 444 Q (This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 456 Q F0 -1.424(If set, patterns which f)184 456 R 1.425 -(ail to match \214lenames during pathname e)-.1 F 1.425 +1.425(If set, patterns which f)184 456 R 1.425 +(ail to match \214lenames during pathname e)-.1 F 1.424 (xpansion result in an)-.15 F -.15(ex)184 468 S(pansion error).15 E(.) -.55 E F1 -.25(fo)144 480 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 -.937(If set, the suf)184 492 R<8c78>-.25 E .936(es speci\214ed by the) +.936(If set, the suf)184 492 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 504 R .32 +-.25 F .937(ords to be ignored)-.1 F .32(when performing w)184 504 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 516 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 F3(.)A F0 .447(This option is)4.947 F(enabled by def) -184 528 Q(ault.)-.1 E F1(globasciiranges)144 540 Q F0 2.518 +(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 2.947 +(pletions. See)184 516 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 F3(.)A F0 .448(This option is)4.948 F(enabled by def) +184 528 Q(ault.)-.1 E F1(globasciiranges)144 540 Q F0 2.519 (If set, range e)184 552 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 564 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 +(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 564 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 576 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 588 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 +(b)3.52 E F0 1.02(will not)3.52 F .956(collate between)184 588 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 600 Q(.)-.55 E -F1(globstar)144 612 Q F0 .518(If set, the pattern)184 612 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 +F1(globstar)144 612 Q F0 .519(If set, the pattern)184 612 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 624 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 +(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 636 Q F1(gnu_errfmt)144 648 Q F0(If set, shell error messages are writt\ en in the standard GNU error message format.)184 660 Q F1(histappend)144 672 Q F0 .676 (If set, the history list is appended to the \214le named by the v)184 -684 R .676(alue of the)-.25 F F2(HISTFILE)3.177 E F0 -.25(va)2.927 G +684 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 696 Q(xits, rather than o)-.15 E -.15(ve)-.15 G(rwriting the \214le.).15 E(GNU Bash 4.4)72 768 Q -(2017 June 23)148.175 E(73)197.335 E 0 Cg EP +(2017 October 7)143.735 E(73)192.895 E 0 Cg EP %%Page: 74 74 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(histr)144 84 Q(eedit)-.18 E F0 .576(If set, and)184 96 R F1 -.18(re) -3.076 G(adline).18 E F0 .575(is being used, a user is gi)3.076 F -.15 -(ve)-.25 G 3.075(nt).15 G .575(he opportunity to re-edit a f)-3.075 F -.575(ailed his-)-.1 F(tory substitution.)184 108 Q F1(histv)144 120 Q -(erify)-.1 E F0 .402(If set, and)184 132 R F1 -.18(re)2.903 G(adline).18 +SF(histr)144 84 Q(eedit)-.18 E F0 .575(If set, and)184 96 R F1 -.18(re) +3.075 G(adline).18 E F0 .575(is being used, a user is gi)3.075 F -.15 +(ve)-.25 G 3.075(nt).15 G .576(he opportunity to re-edit a f)-3.075 F +.576(ailed his-)-.1 F(tory substitution.)184 108 Q F1(histv)144 120 Q +(erify)-.1 E F0 .403(If set, and)184 132 R F1 -.18(re)2.903 G(adline).18 E F0 .403 (is being used, the results of history substitution are not immediately) -2.903 F .662(passed to the shell parser)184 144 R 5.662(.I)-.55 G .661 -(nstead, the resulting line is loaded into the)-5.662 F F1 -.18(re)3.161 -G(adline).18 E F0(editing)3.161 E -.2(bu)184 156 S -.25(ff).2 G(er).25 E +2.903 F .661(passed to the shell parser)184 144 R 5.661(.I)-.55 G .662 +(nstead, the resulting line is loaded into the)-5.661 F F1 -.18(re)3.162 +G(adline).18 E F0(editing)3.162 E -.2(bu)184 156 S -.25(ff).2 G(er).25 E 2.5(,a)-.4 G(llo)-2.5 E(wing further modi\214cation.)-.25 E F1 -(hostcomplete)144 168 Q F0 1.181(If set, and)184 180 R F1 -.18(re)3.681 -G(adline).18 E F0 1.181(is being used,)3.681 F F1(bash)3.682 E F0 1.182 -(will attempt to perform hostname completion)3.682 F 1.381(when a w)184 -192 R 1.381(ord containing a)-.1 F F1(@)3.881 E F0 1.381 -(is being completed \(see)3.881 F F1(Completing)3.88 E F0(under)3.88 E -/F2 9/Times-Bold@0 SF(READLINE)3.88 E F0(abo)184 204 Q -.15(ve)-.15 G +(hostcomplete)144 168 Q F0 1.182(If set, and)184 180 R F1 -.18(re)3.682 +G(adline).18 E F0 1.182(is being used,)3.682 F F1(bash)3.682 E F0 1.181 +(will attempt to perform hostname completion)3.681 F 1.38(when a w)184 +192 R 1.38(ord containing a)-.1 F F1(@)3.881 E F0 1.381 +(is being completed \(see)3.881 F F1(Completing)3.881 E F0(under)3.881 E +/F2 9/Times-Bold@0 SF(READLINE)3.881 E F0(abo)184 204 Q -.15(ve)-.15 G 2.5(\). This).15 F(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 216 Q F0(If set,)184 228 Q F1(bash)2.5 E F0(will send)2.5 E F2(SIGHUP) 2.5 E F0(to all jobs when an interacti)2.25 E .3 -.15(ve l)-.25 H (ogin shell e).15 E(xits.)-.15 E F1(inherit_err)144 240 Q(exit)-.18 E F0 -.219(If set, command substitution inherits the v)184 252 R .219 -(alue of the)-.25 F F1(err)2.719 E(exit)-.18 E F0 .22 +.22(If set, command substitution inherits the v)184 252 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 264 Q 2.5(vironment. This)-.4 F(option is enabled when)2.5 E/F3 10 /Times-Italic@0 SF(posix mode)2.5 E F0(is enabled.)2.5 E F1(interacti) @@ -8907,66 +8914,66 @@ G(adline).18 E F0 1.181(is being used,)3.681 F F1(bash)3.682 E F0 1.182 .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 300 R 1.267 -.15(ve s) -.25 H .967(hell \(see).15 F F2(COMMENTS)3.467 E F0(abo)3.217 E -.15(ve) --.15 G 3.467(\). This).15 F .968(option is)3.468 F(enabled by def)184 +-.15 G 3.467(\). This).15 F .967(option is)3.467 F(enabled by def)184 312 Q(ault.)-.1 E F1(lastpipe)144 324 Q F0 .066 (If set, and job control is not acti)184 324 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 336 Q(vironment.)-.4 E F1(lithist)144 348 Q F0 .654(If set, and the) -184 348 R F1(cmdhist)3.154 E F0 .654 +184 336 Q(vironment.)-.4 E F1(lithist)144 348 Q F0 .655(If set, and the) +184 348 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 +3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F (with embedded ne)184 360 Q (wlines rather than using semicolon separators where possible.)-.25 E F1 -(localv)144 372 Q(ar_inherit)-.1 E F0 .422(If set, local v)184 384 R +(localv)144 372 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 384 R .422(ariables inherit the v)-.25 F .422(alue and attrib)-.25 F .422 (utes of a v)-.2 F .422(ariable of the same name that)-.25 F -.15(ex)184 -396 S .173(ists at a pre).15 F .173(vious scope before an)-.25 F 2.673 -(yn)-.15 G .673 -.25(ew va)-2.673 H .173(lue is assigned.).25 F .174 -(The nameref attrib)5.174 F .174(ute is not)-.2 F(inherited.)184 408 Q +396 S .174(ists at a pre).15 F .174(vious scope before an)-.25 F 2.673 +(yn)-.15 G .673 -.25(ew va)-2.673 H .173(lue is assigned.).25 F .173 +(The nameref attrib)5.173 F .173(ute is not)-.2 F(inherited.)184 408 Q F1(login_shell)144 420 Q F0 .486 (The shell sets this option if it is started as a login shell \(see)184 -432 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 444 S(lue may not be changed.).25 -E F1(mailwar)144 456 Q(n)-.15 E F0 .814(If set, and a \214le that)184 -468 R F1(bash)3.314 E F0 .815 -(is checking for mail has been accessed since the last time it)3.314 F +432 R F2(INV)2.987 E(OCA)-.405 E(TION)-.855 E F0(abo)2.737 E -.15(ve) +-.15 G 2.987(\). The).15 F -.25(va)184 444 S(lue may not be changed.).25 +E F1(mailwar)144 456 Q(n)-.15 E F0 .815(If set, and a \214le that)184 +468 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 480 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E (`The mail in)-.74 E F3(mail\214le)2.5 E F0(has been read')2.5 E 2.5('i) -.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1(no_empty_cmd_completion)144 492 -Q F0 .325(If set, and)184 504 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 +Q F0 .324(If set, and)184 504 R F1 -.18(re)2.824 G(adline).18 E F0 .324 +(is being used,)2.824 F F1(bash)2.824 E F0 .324 +(will not attempt to search the)2.824 F F2 -.666(PA)2.825 G(TH)-.189 E +F0 .325(for possible)2.575 F (completions when completion is attempted on an empty line.)184 516 Q F1 -(nocaseglob)144 528 Q F0 .436(If set,)184 540 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 552 S +(nocaseglob)144 528 Q F0 .437(If set,)184 540 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 552 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 564 Q F0 1.194(If set,)184 -576 R F1(bash)3.694 E F0 1.194(matches patterns in a case\255insensiti) -3.694 F 1.493 -.15(ve f)-.25 H 1.193(ashion when performing matching).05 +-.15(ve)-.15 G(\).).15 E F1(nocasematch)144 564 Q F0 1.193(If set,)184 +576 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 588 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 600 S .623(rd e).1 F .623(xpansions, or when \214ltering possib\ +(wo)184 600 S .622(rd e).1 F .623(xpansions, or when \214ltering possib\ le completions as part of programmable com-)-.15 F(pletion.)184 612 Q F1 -(nullglob)144 624 Q F0 .854(If set,)184 636 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 648 S +(nullglob)144 624 Q F0 .855(If set,)184 636 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 648 S (pand to a null string, rather than themselv).15 E(es.)-.15 E F1(pr)144 -660 Q(ogcomp)-.18 E F0 .677(If set, the programmable completion f)184 -672 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 +660 Q(ogcomp)-.18 E F0 .676(If set, the programmable completion f)184 +672 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 684 Q(This option is enabled by def)5 E(ault.)-.1 E F1 -(pr)144 696 Q(omptv)-.18 E(ars)-.1 E F0 1.447 +(pr)144 696 Q(omptv)-.18 E(ars)-.1 E F0 1.448 (If set, prompt strings under)184 708 R 1.448(go parameter e)-.18 F -1.448(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 720 -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(GNU Bash 4.4)72 768 -Q(2017 June 23)148.175 E(74)197.335 E 0 Cg EP +1.447(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 720 +S .17(pansion, and quote remo).15 F -.25(va)-.15 G 2.67(la).25 G .17 +(fter being e)-2.67 F .17(xpanded as described in)-.15 F F2(PR)2.671 E +(OMPTING)-.27 E F0(abo)2.421 E -.15(ve)-.15 G(.).15 E(GNU Bash 4.4)72 +768 Q(2017 October 7)143.735 E(74)192.895 E 0 Cg EP %%Page: 75 75 %%BeginPageSetup BP @@ -8982,44 +8989,44 @@ SF -.18(re)144 96 S(stricted_shell).18 E F0 1.069 (This is not reset when the startup \214les are e)5.36 F -.15(xe)-.15 G (-).15 E(cuted, allo)184 132 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 144 Q(erbose)-.1 E F0 .501(If set, the)184 156 R F1 -(shift)3.001 E F0 -.2(bu)3.001 G .501 -(iltin prints an error message when the shift count e).2 F .502 +F1(shift_v)144 144 Q(erbose)-.1 E F0 .502(If set, the)184 156 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 168 Q F1(sour) -144 180 Q(cepath)-.18 E F0 .771(If set, the)184 192 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 204 Q 2.5(gument. This)-.18 F(option is enabled by def)2.5 E(ault.) --.1 E F1(xpg_echo)144 216 Q F0(If set, the)184 228 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 244.8 Q F0([)2.5 E F1A F0(])A 1.001 -(Suspend the e)144 256.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 268.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 280.8 S(nless the shell is a login shell and)-2.5 E +144 180 Q(cepath)-.18 E F0 .77(If set, the)184 192 R F1(sour)3.27 E(ce) +-.18 E F0(\()3.27 E F1(.)A F0 3.27(\)b)C .77(uiltin uses the v)-3.47 F +.771(alue of)-.25 F F2 -.666(PA)3.271 G(TH)-.189 E F0 .771 +(to \214nd the directory containing the)3.021 F +(\214le supplied as an ar)184 204 Q 2.5(gument. This)-.18 F +(option is enabled by def)2.5 E(ault.)-.1 E F1(xpg_echo)144 216 Q F0 +(If set, the)184 228 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 244.8 Q F0([)2.5 E F1A F0(])A 1.002(Suspend the e)144 256.8 R +-.15(xe)-.15 G 1.002(cution of this shell until it recei).15 F -.15(ve) +-.25 G 3.501(sa).15 G F2(SIGCONT)A F0 3.501(signal. A)3.251 F 1.001 +(login shell cannot be)3.501 F .022(suspended; the)144 268.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 280.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 297.6 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([) -108 309.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 309.6 R .878 -(alse\) depending on the e)-.1 F -.25(va)-.25 G .878 +108 309.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .878 +(Return a status of 0 \(true\) or 1 \(f)144 309.6 R .877 +(alse\) depending on the e)-.1 F -.25(va)-.25 G .877 (luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 321.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 3.079 -(primaries described abo)144 333.6 R 3.379 -.15(ve u)-.15 H(nder).15 E -F2(CONDITION)5.579 E 3.079(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF -(.)A F1(test)7.579 E F0 3.08(does not accept an)5.58 F(y)-.15 E +(gument. Expressions)-.18 F .53(are composed of the)3.03 F 3.08 +(primaries described abo)144 333.6 R 3.38 -.15(ve u)-.15 H(nder).15 E F2 +(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 345.6 Q(gument of)-.18 -E F12.5 E F0(as signifying the end of options.)2.5 E .786 -(Expressions may be combined using the follo)144 363.6 R .785 -(wing operators, listed in decreasing order of prece-)-.25 F 3.411 -(dence. The)144 375.6 R -.25(eva)3.411 G .911 -(luation depends on the number of ar).25 F .912(guments; see belo)-.18 F -4.712 -.65(w. O)-.25 H .912(perator precedence is).65 F +E F12.5 E F0(as signifying the end of options.)2.5 E .785 +(Expressions may be combined using the follo)144 363.6 R .786 +(wing operators, listed in decreasing order of prece-)-.25 F 3.412 +(dence. The)144 375.6 R -.25(eva)3.412 G .912 +(luation depends on the number of ar).25 F .911(guments; see belo)-.18 F +4.711 -.65(w. O)-.25 H .911(perator precedence is).65 F (used when there are \214v)144 387.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G (ore ar)-2.5 E(guments.)-.18 E F1(!)144 399.6 Q F3 -.2(ex)2.5 G(pr).2 E F0 -.35(Tr)180 399.6 S(ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 @@ -9042,9 +9049,9 @@ F1([)2.5 E F0 -.25(eva)2.5 G(luate conditional e).25 E E 2.5(2a)144 554.4 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) 180 566.4 R .37(gument is)-.18 F F1(!)2.87 E F0 2.87(,t)C .37(he e)-2.87 F .37(xpression is true if and only if the second ar)-.15 F .37 -(gument is null.)-.18 F .38(If the \214rst ar)180 578.4 R .38 -(gument is one of the unary conditional operators listed abo)-.18 F .679 --.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.879 E(TION)180 590.4 Q .552 +(gument is null.)-.18 F .379(If the \214rst ar)180 578.4 R .38 +(gument is one of the unary conditional operators listed abo)-.18 F .68 +-.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.88 E(TION)180 590.4 Q .553 (AL EXPRESSIONS)-.18 F F4(,)A F0 .552(the e)2.802 F .552 (xpression is true if the unary test is true.)-.15 F .552 (If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 602.4 Q @@ -9055,34 +9062,34 @@ F .37(xpression is true if and only if the second ar)-.15 F .37 (If the second ar)5.236 F .236(gument is one of)-.18 F .855 (the binary conditional operators listed abo)180 638.4 R 1.155 -.15 (ve u)-.15 H(nder).15 E F2(CONDITION)3.355 E .855(AL EXPRESSIONS)-.18 F -F4(,)A F0(the)3.105 E .579(result of the e)180 650.4 R .578(xpression i\ +F4(,)A F0(the)3.104 E .578(result of the e)180 650.4 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 662.4 R(The)6.332 E F13.832 -E F0(and)3.832 E F13.832 E F0 1.333 +(guments)-.18 E 1.333(as operands.)180 662.4 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 674.4 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 -686.4 R 3.021(guments. If)-.18 F .521(the \214rst ar)3.021 F .521 -(gument is e)-.18 F(xactly)-.15 E F1(\()3.021 E F0 .521(and the third) -3.021 F(ar)180 698.4 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 +(o-ar)-.1 E(gument)-.18 E .521(test using the second and third ar)180 +686.4 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 698.4 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 710.4 Q(xpression is f)-.15 E(alse.)-.1 E(GNU Bash 4.4) -72 768 Q(2017 June 23)148.175 E(75)197.335 E 0 Cg EP +72 768 Q(2017 October 7)143.735 E(75)192.895 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 2.5(4a)144 84 S --.18(rg)-2.5 G(uments).18 E .384(If the \214rst ar)180 96 R .384 -(gument is)-.18 F/F1 10/Times-Bold@0 SF(!)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 +-.18(rg)-2.5 G(uments).18 E .385(If the \214rst ar)180 96 R .385 +(gument is)-.18 F/F1 10/Times-Bold@0 SF(!)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 108 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 +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 120 Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 132 S 2.5(rm)-2.5 G(ore ar)-2.5 E(guments)-.18 E 1.635(The e)180 144 R 1.635(xpression is parsed and e) @@ -9095,72 +9102,71 @@ E F1(times)108 190.8 Q F0 1.229(Print the accumulated user and system t\ imes for the shell and for processes run from the shell.)144 190.8 R (The return status is 0.)144 202.8 Q F1(trap)108 219.6 Q F0([)2.5 E F1 (\255lp)A F0 2.5(][)C([)-2.5 E/F2 10/Times-Italic@0 SF(ar)A(g)-.37 E F0 -(])A F2(sigspec)2.5 E F0(...])2.5 E .702(The command)144 231.6 R F2(ar) -3.532 E(g)-.37 E F0 .702(is to be read and e)3.422 F -.15(xe)-.15 G .702 -(cuted when the shell recei).15 F -.15(ve)-.25 G 3.203(ss).15 G -(ignal\(s\))-3.203 E F2(sigspec)3.203 E F0 5.703(.I).31 G(f)-5.703 E F2 -(ar)3.533 E(g)-.37 E F0(is)3.423 E .609(absent \(and there is a single) +(])A F2(sigspec)2.5 E F0(...])2.5 E .703(The command)144 231.6 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.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 243.6 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 255.6 R .658(alue it had upon entrance to the shell\).) --.25 F(If)5.658 E F2(ar)3.488 E(g)-.37 E F0 .659 +.659(\(the v)144 255.6 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 267.6 Q F0 .581 -(is ignored by the shell and by the commands it in)3.391 F -.2(vo)-.4 G --.1(ke).2 G 3.08(s. If).1 F F2(ar)3.41 E(g)-.37 E F0 .58 -(is not present and)3.3 F F13.08 E F0(has)3.08 E 1.214 +144.34 267.6 Q F0 .58(is ignored by the shell and by the commands it in) +3.39 F -.2(vo)-.4 G -.1(ke).2 G 3.081(s. If).1 F 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 279.6 R -F2(sigspec)4.054 E F0 1.215(are displayed.)4.024 F 1.215(If no ar)6.215 +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 291.6 R F13.36 E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F1(trap)3.36 E F0 .86 (prints the list of commands associated with each)3.36 F 2.83 (signal. The)144 303.6 R F12.83 E F0 .33(option causes the shell \ -to print a list of signal names and their corresponding num-)2.83 F -4.311(bers. Each)144 315.6 R F2(sigspec)4.651 E F0 1.811 -(is either a signal name de\214ned in <)4.621 F F2(signal.h)A F0 1.81 -(>, or a signal number)B 6.81(.S)-.55 G(ignal)-6.81 E +to print a list of signal names and their corresponding num-)2.83 F 4.31 +(bers. Each)144 315.6 R F2(sigspec)4.65 E F0 1.811 +(is either a signal name de\214ned in <)4.62 F F2(signal.h)A F0 1.811 +(>, or a signal number)B 6.811(.S)-.55 G(ignal)-6.811 E (names are case insensiti)144 327.6 Q .3 -.15(ve a)-.25 H(nd the).15 E -/F3 9/Times-Bold@0 SF(SIG)2.5 E F0(pre\214x is optional.)2.25 E 1.648 -(If a)144 345.6 R F2(sigspec)4.488 E F0(is)4.458 E F3(EXIT)4.148 E F0 -1.648(\(0\) the command)3.898 F F2(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 F2(sigspec)4.489 E F0(is)4.459 E F3(DEB)144 -357.6 Q(UG)-.09 E/F4 9/Times-Roman@0 SF(,)A F0 1.168(the command)3.418 F -F2(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 F2 1.167(simple command) -3.667 F F0(,)A F2(for)3.667 E F0(command,)3.667 E F2(case)3.667 E F0 -(com-)3.667 E(mand,)144 369.6 Q F2(select)2.646 E F0 .146(command, e) -2.646 F -.15(ve)-.25 G .146(ry arithmetic).15 F F2(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 381.6 R F3 .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 F1(extdeb)2.645 E(ug)-.2 E F0 -.145(option to)2.645 F(the)144 393.6 Q F1(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 F1(DEB)3.2 E(UG) --.1 E F0 3.2(trap. If)3.2 F(a)3.2 E F2(sigspec)3.54 E F0(is)3.51 E F3 -(RETURN)3.2 E F4(,)A F0 .701(the com-)2.951 F(mand)144 405.6 Q F2(ar) -3.474 E(g)-.37 E F0 .644(is e)3.364 F -.15(xe)-.15 G .643 +/F3 9/Times-Bold@0 SF(SIG)2.5 E F0(pre\214x is optional.)2.25 E 1.649 +(If a)144 345.6 R F2(sigspec)4.489 E F0(is)4.459 E F3(EXIT)4.149 E F0 +1.649(\(0\) the command)3.899 F F2(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 F2(sigspec)4.488 E F0(is)4.458 E F3(DEB)144 +357.6 Q(UG)-.09 E/F4 9/Times-Roman@0 SF(,)A F0 1.167(the command)3.417 F +F2(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 F2 1.168(simple command) +3.667 F F0(,)A F2(for)3.668 E F0(command,)3.668 E F2(case)3.668 E F0 +(com-)3.668 E(mand,)144 369.6 Q F2(select)2.647 E F0 .147(command, e) +2.647 F -.15(ve)-.25 G .147(ry arithmetic).15 F F2(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 381.6 R F3 .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 F1(extdeb)2.646 E(ug)-.2 E F0 +.146(option to)2.646 F(the)144 393.6 Q F1(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 F1(DEB)3.2 E +(UG)-.1 E F0 3.2(trap. If)3.2 F(a)3.2 E F2(sigspec)3.54 E F0(is)3.51 E +F3(RETURN)3.2 E F4(,)A F0 .7(the com-)2.95 F(mand)144 405.6 Q F2(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 -.643(cuted with the).15 F F1(.)3.143 E F0(or)3.143 E F1(sour)3.143 E(ce) --.18 E F0 -.2(bu)3.143 G(iltins).2 E(\214nishes e)144 417.6 Q -.15(xe) --.15 G(cuting.).15 E .96(If a)144 435.6 R F2(sigspec)3.8 E F0(is)3.77 E -F3(ERR)3.46 E F4(,)A F0 .96(the command)3.21 F F2(ar)3.791 E(g)-.37 E F0 -.961(is e)3.681 F -.15(xe)-.15 G .961(cuted whene).15 F -.15(ve)-.25 G -3.461(rap).15 G .961(ipeline \(which may consist of a)-3.461 F .185(sin\ -gle simple command\), a list, or a compound command returns a non\255ze\ -ro e)144 447.6 R .184(xit status, subject to)-.15 F .451(the follo)144 -459.6 R .451(wing conditions.)-.25 F(The)5.451 E F3(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 471.6 R .388(wing a)-.25 F F1(while) -2.888 E F0(or)2.888 E F1(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388 -(ord, part of the test in an)-.1 F F2(if)2.897 E F0 .387 -(statement, part)4.847 F .777(of a command e)144 483.6 R -.15(xe)-.15 G +.644(cuted with the).15 F F1(.)3.144 E F0(or)3.144 E F1(sour)3.144 E(ce) +-.18 E F0 -.2(bu)3.144 G(iltins).2 E(\214nishes e)144 417.6 Q -.15(xe) +-.15 G(cuting.).15 E .961(If a)144 435.6 R F2(sigspec)3.801 E F0(is) +3.771 E F3(ERR)3.461 E F4(,)A F0 .961(the command)3.211 F F2(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(single simple command\), a list, or a compound command ret\ +urns a non\255zero e)144 447.6 R .185(xit status, subject to)-.15 F .452 +(the follo)144 459.6 R .452(wing conditions.)-.25 F(The)5.452 E F3(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 471.6 R .387(wing a)-.25 F F1(while) +2.887 E F0(or)2.887 E F1(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388 +(ord, part of the test in an)-.1 F F2(if)2.898 E F0 .388 +(statement, part)4.848 F .778(of a command e)144 483.6 R -.15(xe)-.15 G .778(cuted in a).15 F F1(&&)3.278 E F0(or)3.278 E F1(||)3.278 E F0 .778 (list e)3.278 F .778(xcept the command follo)-.15 F .778 -(wing the \214nal)-.25 F F1(&&)3.278 E F0(or)3.278 E F1(||)3.278 E F0 -3.278(,a)C -.15(ny)-3.278 G 1.28(command in a pipeline b)144 495.6 R +(wing the \214nal)-.25 F F1(&&)3.278 E F0(or)3.278 E F1(||)3.277 E F0 +3.277(,a)C -.15(ny)-3.277 G 1.28(command in a pipeline b)144 495.6 R 1.28(ut the last, or if the command')-.2 F 3.78(sr)-.55 G 1.28(eturn v) -3.78 F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F F1(!)3.78 E F0(.)A(These are the same conditions obe)144 507.6 Q @@ -9169,53 +9175,54 @@ F1(!)3.78 E F0(.)A(These are the same conditions obe)144 507.6 Q (Signals ignored upon entry to the shell cannot be trapped or reset.)144 525.6 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 537.6 R .662 -(alues in a subshell or subshell en)-.25 F .661(vironment when one is) +(alues in a subshell or subshell en)-.25 F .662(vironment when one is) -.4 F 2.5(created. The)144 549.6 R(return status is f)2.5 E(alse if an) -.1 E(y)-.15 E F2(sigspec)2.84 E F0(is in)2.81 E -.25(va)-.4 G (lid; otherwise).25 E F1(trap)2.5 E F0(returns true.)2.5 E F1(type)108 566.4 Q F0([)2.5 E F1(\255aftpP)A F0(])A F2(name)2.5 E F0([)2.5 E F2 -(name)A F0(...])2.5 E -.4(Wi)144 578.4 S .173 -(th no options, indicate ho).4 F 2.673(we)-.25 G(ach)-2.673 E F2(name) -3.033 E F0 -.1(wo)2.853 G .174 -(uld be interpreted if used as a command name.).1 F .174(If the)5.174 F -F1144 590.4 Q F0 .843(option is used,)3.343 F F1(type)3.343 E F0 +(name)A F0(...])2.5 E -.4(Wi)144 578.4 S .174 +(th no options, indicate ho).4 F 2.674(we)-.25 G(ach)-2.674 E F2(name) +3.034 E F0 -.1(wo)2.854 G .173 +(uld be interpreted if used as a command name.).1 F .173(If the)5.173 F +F1144 590.4 Q F0 .842(option is used,)3.342 F F1(type)3.342 E F0 .843(prints a string which is one of)3.343 F F2(alias)3.343 E F0(,).27 E F2 -.1(ke)3.343 G(ywor)-.2 E(d)-.37 E F0(,).77 E F2(function)3.343 E F0 -(,).24 E F2 -.2(bu)3.342 G(iltin).2 E F0 3.342(,o).24 G(r)-3.342 E F2 -(\214le)5.252 E F0(if)3.522 E F2(name)144.36 602.4 Q F0 .086 -(is an alias, shell reserv)2.766 F .086(ed w)-.15 F .086 -(ord, function, b)-.1 F .087(uiltin, or disk \214le, respecti)-.2 F -.15 -(ve)-.25 G(ly).15 E 5.087(.I)-.65 G 2.587(ft)-5.087 G(he)-2.587 E F2 -(name)2.947 E F0 .087(is not)2.767 F .119 +(,).24 E F2 -.2(bu)3.343 G(iltin).2 E F0 3.343(,o).24 G(r)-3.343 E F2 +(\214le)5.253 E F0(if)3.523 E F2(name)144.36 602.4 Q F0 .087 +(is an alias, shell reserv)2.767 F .087(ed w)-.15 F .087 +(ord, function, b)-.1 F .086(uiltin, or disk \214le, respecti)-.2 F -.15 +(ve)-.25 G(ly).15 E 5.086(.I)-.65 G 2.586(ft)-5.086 G(he)-2.586 E F2 +(name)2.946 E F0 .086(is not)2.766 F .118 (found, then nothing is printed, and an e)144 614.4 R .118 -(xit status of f)-.15 F .118(alse is returned.)-.1 F .118(If the)5.118 F -F12.618 E F0 .118(option is used,)2.618 F F1(type)2.618 E F0 .855 +(xit status of f)-.15 F .118(alse is returned.)-.1 F .119(If the)5.119 F +F12.619 E F0 .119(option is used,)2.619 F F1(type)2.619 E F0 .855 (either returns the name of the disk \214le that w)144 626.4 R .855 (ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F F2(name)3.715 E F0 -.855(were speci\214ed as a com-)3.535 F .641(mand name, or nothing if) -144 638.4 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 F2(\214le)3.14 E F0 5.64(.T).18 G(he)-5.64 E -F13.14 E F0 .64(option forces a)3.14 F F3 -.666(PA)3.14 G(TH)-.189 -E F0 .112(search for each)144 650.4 R F2(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 F2(\214le)2.613 E F0 5.113(.I) -.18 G 2.613(fac)-5.113 G .113(ommand is hashed,)-2.613 F F12.613 E -F0(and)144 662.4 Q F13.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 F3 -.666(PA)3.23 G(TH)-.189 E F4(.)A F0 .73(If the)5.23 F F1 -144 674.4 Q F0 1.748(option is used,)4.248 F F1(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 F2(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 686.4 R F1 -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 +638.4 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 F2(\214le)3.141 E F0 5.641(.T).18 G(he)-5.641 E F1 +3.141 E F0 .641(option forces a)3.141 F F3 -.666(PA)3.141 G(TH) +-.189 E F0 .113(search for each)144 650.4 R F2(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 F2(\214le)2.613 E F0 5.113 +(.I).18 G 2.613(fa)-5.113 G .112(command is hashed,)-.001 F F1 +2.612 E F0(and)144 662.4 Q F13.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 F3 -.666(PA)3.231 G(TH)-.189 E F4(.)A F0 .731(If the)5.231 F F1 +144 674.4 Q F0 1.749(option is used,)4.249 F F1(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 F2(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 686.4 R F1 +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 698.4 R F13.723 E F0 6.223(.T)C(he)-6.223 E F13.723 E F0 -1.223(option suppresses shell function lookup, as)3.723 F .326(with the) -144 710.4 R F1(command)2.826 E F0 -.2(bu)2.826 G(iltin.).2 E F1(type) -5.326 E F0 .326(returns true if all of the ar)2.826 F .325 -(guments are found, f)-.18 F .325(alse if an)-.1 F 2.825(ya)-.15 G .325 -(re not)-2.825 F(found.)144 722.4 Q(GNU Bash 4.4)72 768 Q(2017 June 23) -148.175 E(76)197.335 E 0 Cg EP +1.223(option suppresses shell function lookup, as)3.723 F .325(with the) +144 710.4 R F1(command)2.825 E F0 -.2(bu)2.825 G(iltin.).2 E F1(type) +5.325 E F0 .325(returns true if all of the ar)2.825 F .326 +(guments are found, f)-.18 F .326(alse if an)-.1 F 2.826(ya)-.15 G .326 +(re not)-2.826 F(found.)144 722.4 Q(GNU Bash 4.4)72 768 Q +(2017 October 7)143.735 E(76)192.895 E 0 Cg EP %%Page: 77 77 %%BeginPageSetup BP @@ -9223,29 +9230,29 @@ BP /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(ulimit)108 84 Q F0([)2.5 E F1(\255HSabcde\214klmnpqrstuvxPT)A F0([) -2.5 E/F2 10/Times-Italic@0 SF(limit)A F0(]])A(Pro)144 96 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 +2.5 E/F2 10/Times-Italic@0 SF(limit)A F0(]])A(Pro)144 96 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 108 R 3.444(ws)-.25 G .944(uch control.)-3.444 F(The) -5.944 E F13.444 E F0(and)3.444 E F13.444 E F0 .943 +.943(that allo)144 108 R 3.443(ws)-.25 G .943(uch control.)-3.443 F(The) +5.943 E F13.443 E F0(and)3.443 E F13.444 E F0 .944 (options specify that the hard or soft limit is set for the)3.444 F(gi) -144 120 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208(\ +144 120 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 sof\ -t limit may)2.708 F .426(be increased up to the v)144 132 R .426 -(alue of the hard limit.)-.25 F .425(If neither)5.426 F F12.925 E -F0(nor)2.925 E F12.925 E F0 .425 -(is speci\214ed, both the soft and)2.925 F .139(hard limits are set.)144 +t limit may)2.709 F .425(be increased up to the v)144 132 R .425 +(alue of the hard limit.)-.25 F .426(If neither)5.425 F F12.926 E +F0(nor)2.926 E F12.926 E F0 .426 +(is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144 144 R .139(The v)5.139 F .139(alue of)-.25 F F2(limit)2.729 E F0 .139 (can be a number in the unit speci\214ed for the resource or one)3.319 F -.742(of the special v)144 156 R(alues)-.25 E F1(hard)3.242 E F0(,)A F1 +.741(of the special v)144 156 R(alues)-.25 E F1(hard)3.241 E F0(,)A F1 (soft)3.241 E F0 3.241(,o)C(r)-3.241 E F1(unlimited)3.241 E F0 3.241(,w) C .741(hich stand for the current hard limit, the current)-3.241 F .78 (soft limit, and no limit, respecti)144 168 R -.15(ve)-.25 G(ly).15 E 5.78(.I)-.65 G(f)-5.78 E F2(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 180 R F12.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 180 R F12.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 192 Q 2.5(alue. Other) -.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F1144 204 @@ -9263,8 +9270,8 @@ Q F1144 288 Q F0 -.1 E F1144 312 Q F0(The maximum resident set size \(man)180 312 Q 2.5(ys)-.15 G(ystems do not honor this limit\))-2.5 E F1144 324 Q F0 .791(The maximum number of open \214le descriptors \(most systems do\ - not allo)180 324 R 3.291(wt)-.25 G .791(his v)-3.291 F .791(alue to) --.25 F(be set\))180 336 Q F1144 348 Q F0 + not allo)180 324 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F +(be set\))180 336 Q F1144 348 Q F0 (The pipe size in 512-byte blocks \(this may not be set\))180 348 Q F1 144 360 Q F0(The maximum number of bytes in POSIX message queues) 180 360 Q F1144 372 Q F0 @@ -9281,19 +9288,19 @@ Q F1144 444 Q F0(The maximum number of \214le locks)180 444 Q F1 Q F2(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 496.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 -508.8 R F14.088 E F0 4.089(,w)C 1.589 +(alue of the speci\214ed resource.)-3.218 F(If)5.468 E .044 +(no option is gi)144 496.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 +508.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 520.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 520.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 532.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 532.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 544.8 S .5 -.25(ew l)-2.5 H(imit.).25 E F1(umask)108 561.6 Q F0([)2.5 E @@ -9303,15 +9310,15 @@ F1A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(mode)-2.5 E F0(])A (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 585.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 -597.6 Q F2(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382 +597.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 609.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 621.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 633.6 Q +(mode)144.38 621.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 633.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 650.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 @@ -9322,75 +9329,75 @@ F(remo)144 674.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 691.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 703.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 703.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 715.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 727.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 715.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 727.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(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(77)197.335 E 0 Cg EP +F(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(77)192.895 E 0 Cg EP %%Page: 78 78 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(remo)144 84 Q -.15 -(ve)-.15 G 2.537(d. If).15 F(the)2.537 E/F1 10/Times-Bold@0 SF +(ve)-.15 G 2.538(d. If).15 F(the)2.537 E/F1 10/Times-Bold@0 SF 2.537 E F0 .037(option is supplied, and)2.537 F/F2 10/Times-Italic@0 SF (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 96 R .492 +(will)2.537 E .492(be unset rather than the v)144 96 R .492 (ariable it references.)-.25 F F15.492 E F0 .492(has no ef)2.992 F .492(fect if the)-.25 F F12.992 E F0 .492(option is supplied.) -2.992 F .492(If no)5.492 F .22(options are supplied, each)144 108 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 120 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 132 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 144 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 +2.992 F .493(If no)5.493 F .221(options are supplied, each)144 108 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 120 +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 132 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.455 E F4(,)A F3(SECONDS)5.455 E +F4(,)A F3(LINENO)144 144 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 156 +F 4.598(yl)-.15 G 2.098(ose their special)-4.598 F(properties, e)144 156 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 172.8 Q F0([)2.5 E F1(\255fn)A F0 2.5(][)C F2(id ...)-2.5 E F0(])A -.8(Wa)144 184.8 S .659(it for each speci\214ed child process and return its termi\ -nation status.).8 F(Each)5.659 E F2(id)3.169 E F0 .659(may be a process) -3.929 F .009(ID or a job speci\214cation; if a job spec is gi)144 196.8 -R -.15(ve)-.25 G .008(n, all processes in that job').15 F 2.508(sp)-.55 -G .008(ipeline are w)-2.508 F .008(aited for)-.1 F 5.008(.I)-.55 G(f) --5.008 E F2(id)144.01 208.8 Q F0 .521(is not gi)3.791 F -.15(ve)-.25 G +nation status.).8 F(Each)5.659 E F2(id)3.169 E F0 .658(may be a process) +3.928 F .008(ID or a job speci\214cation; if a job spec is gi)144 196.8 +R -.15(ve)-.25 G .009(n, all processes in that job').15 F 2.509(sp)-.55 +G .009(ipeline are w)-2.509 F .009(aited for)-.1 F 5.009(.I)-.55 G(f) +-5.009 E F2(id)144.01 208.8 Q F0 .522(is not gi)3.792 F -.15(ve)-.25 G .521(n, all currently acti).15 F .821 -.15(ve c)-.25 H .521 (hild processes are w).15 F .521(aited for)-.1 F 3.021(,a)-.4 G .521 -(nd the return status is zero.)-3.021 F(If)5.522 E(the)144 220.8 Q F1 -3.057 E F0 .557(option is supplied,)3.057 F F1(wait)3.057 E F0 -.1 +(nd the return status is zero.)-3.021 F(If)5.521 E(the)144 220.8 Q F1 +3.056 E F0 .556(option is supplied,)3.056 F F1(wait)3.057 E F0 -.1 (wa)3.057 G .557(its for an).1 F 3.057(yj)-.15 G .557 -(ob to terminate and returns its e)-3.057 F .557(xit status.)-.15 F .556 -(If the)5.556 F F13.056 E F0 .586 +(ob to terminate and returns its e)-3.057 F .557(xit status.)-.15 F .557 +(If the)5.557 F F13.057 E F0 .587 (option is supplied, and job control is enabled,)144 232.8 R F1(wait) -3.086 E F0(forces)3.086 E F2(id)3.086 E F0 .587 -(to terminate before returning its sta-)3.086 F .756 +3.086 E F0(forces)3.086 E F2(id)3.086 E F0 .586 +(to terminate before returning its sta-)3.086 F .755 (tus, instead of returning when it changes status.)144 244.8 R(If)5.756 -E F2(id)3.266 E F0 .755(speci\214es a non-e)4.026 F .755 +E F2(id)3.266 E F0 .756(speci\214es a non-e)4.026 F .756 (xistent process or job, the)-.15 F .365(return status is 127.)144 256.8 R .365(Otherwise, the return status is the e)5.365 F .365 (xit status of the last process or job w)-.15 F(aited)-.1 E(for)144 268.8 Q(.)-.55 E/F5 10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 285.6 Q F0 -(If)108 297.6 Q F1(bash)4.397 E F0 1.897(is started with the name)4.397 +(If)108 297.6 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 F1 -4.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 309.6 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 +4.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 309.6 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 (beha)108 321.6 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 338.4 Q @@ -9401,13 +9408,13 @@ F4(,)A F3 -.666(PA)2.25 G(TH)-.189 E F4(,)A F3(ENV)2.25 E F4(,)A F0(or) (specifying command names containing)144 372 Q F1(/)2.5 E F0<83>108 388.8 Q(specifying a \214lename containing a)144 388.8 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 405.6 Q .45 +(iltin command).2 E<83>108 405.6 Q .449 (specifying a \214lename containing a slash as an ar)144 405.6 R .449 -(gument to the)-.18 F F12.949 E F0 .449(option to the)2.949 F F1 -(hash)2.949 E F0 -.2(bu)2.949 G .449(iltin com-).2 F(mand)144 417.6 Q -<83>108 434.4 Q(importing function de\214nitions from the shell en)144 -434.4 Q(vironment at startup)-.4 E<83>108 451.2 Q(parsing the v)144 -451.2 Q(alue of)-.25 E F3(SHELLOPTS)2.5 E F0(from the shell en)2.25 E +(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 417.6 Q<83> +108 434.4 Q(importing function de\214nitions from the shell en)144 434.4 +Q(vironment at startup)-.4 E<83>108 451.2 Q(parsing the v)144 451.2 Q +(alue of)-.25 E F3(SHELLOPTS)2.5 E F0(from the shell en)2.25 E (vironment at startup)-.4 E<83>108 468 Q(redirecting output using the >\ , >|, <>, >&, &>, and >> redirection operators)144 468 Q<83>108 484.8 Q (using the)144 484.8 Q F1(exec)2.5 E F0 -.2(bu)2.5 G @@ -9424,8 +9431,8 @@ F1(command)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 552 Q (These restrictions are enforced after an)108 568.8 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 585.6 R -.15 -(xe)-.15 G 1.567(cuted \(see).15 F F3 1.567(COMMAND EXECUTION)4.067 F F0 -(abo)3.817 E -.15(ve)-.15 G(\),).15 E F1(rbash)108 597.6 Q F0(turns of) +(xe)-.15 G 1.566(cuted \(see).15 F F3 1.566(COMMAND EXECUTION)4.066 F F0 +(abo)3.816 E -.15(ve)-.15 G(\),).15 E F1(rbash)108 597.6 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 F5(SEE ALSO)72 614.4 Q F2(Bash Refer)108 626.4 Q(ence Manual)-.37 E F0 2.5(,B)C(rian F) @@ -9439,7 +9446,7 @@ E(wned to e)-.15 E -.15(xe)-.15 G(cute the script.).15 E F5(SEE ALSO)72 (http://tiswww)108 686.4 Q (.case.edu/~chet/bash/POSIX -- a description of posix mode)-.65 E F2(sh) 108 698.4 Q F0(\(1\),)A F2(ksh)2.5 E F0(\(1\),)A F2(csh)2.5 E F0(\(1\))A -(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E(78)197.335 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(78)192.895 E 0 Cg EP %%Page: 79 79 %%BeginPageSetup BP @@ -9465,20 +9472,20 @@ E F0(The personal initialization \214le, e)144 184.8 Q -.15(xe)-.15 G (oundation)-.15 E(bfox@gnu.or)108 297.6 Q(g)-.18 E(Chet Rame)108 314.4 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 326.4 Q(y@case.edu)-.15 -E F2 -.11(BU)72 343.2 S 2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .568 +E F2 -.11(BU)72 343.2 S 2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .567 (If you \214nd a b)108 355.2 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 367.2 R 5.625(ersion of)-.15 -F F3(bash)8.125 E F0 10.625(.T)C 5.625(he latest v)-10.625 F 5.626 -(ersion is al)-.15 F -.1(wa)-.1 G 5.626(ys a).1 F -.25(va)-.2 G 5.626 +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 367.2 R 5.625(ersion of)-.15 +F F3(bash)8.125 E F0 10.625(.T)C 5.625(he latest v)-10.625 F 5.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 F1(ftp://ftp.gnu.or)108 379.2 Q(g/pub/gnu/bash/)-.37 -E F0(.)A .411(Once you ha)108 396 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 408 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 +E F0(.)A .41(Once you ha)108 396 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 F1(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 408 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 420 Q F1 -.2(bu)2.5 G(g-bash@gnu.or).2 E(g)-.37 E F0 (or posted to the Usenet ne)2.5 E(wsgroup)-.25 E F3(gnu.bash.b)2.5 E(ug) -.2 E F0(.)A(ALL b)108 436.8 Q(ug reports should include:)-.2 E(The v) @@ -9492,25 +9499,25 @@ G(rcises the b).15 E(ug)-.2 E F1(bashb)108.27 518.4 Q(ug)-.2 E F0 535.2 Q(ug reports concerning this manual page should be directed to)-.2 E F1 -.15(ch)2.5 G(et.r).15 E(ame)-.15 E(y@case)-.3 E(.edu)-.15 E F0(.) .25 E F2 -.11(BU)72 552 S(GS).11 E F0(It')108 564 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 580.8 R 1.869(ferences between)-.25 F F3 +(oo big and too slo)-2.5 E -.65(w.)-.25 G 1.868 +(There are some subtle dif)108 580.8 R 1.868(ferences between)-.25 F F3 (bash)4.369 E F0 1.869(and traditional v)4.369 F 1.869(ersions of)-.15 F -F3(sh)4.368 E F0 4.368(,m)C 1.868(ostly because of the)-4.368 F/F4 9 +F3(sh)4.369 E F0 4.369(,m)C 1.869(ostly because of the)-4.369 F/F4 9 /Times-Bold@0 SF(POSIX)108 592.8 Q F0(speci\214cation.)2.25 E (Aliases are confusing in some uses.)108 609.6 Q(Shell b)108 626.4 Q (uiltin commands and functions are not stoppable/restartable.)-.2 E 1.315(Compound commands and command sequences of the form `a ; b ; c' a\ -re not handled gracefully when)108 643.2 R .39 +re not handled gracefully when)108 643.2 R .389 (process suspension is attempted.)108 655.2 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 667.2 R .192(It suf)5.192 F .192(\214ces to \ -place the sequence of commands between parentheses to force it into a) --.25 F(subshell, which may be stopped as a unit.)108 679.2 Q(Array v)108 -696 Q(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E +(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 667.2 R .192(It suf)5.193 F .192(\214ces to place the sequence of c\ +ommands between parentheses to force it into a)-.25 F +(subshell, which may be stopped as a unit.)108 679.2 Q(Array v)108 696 Q +(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E (There may be only one acti)108 712.8 Q .3 -.15(ve c)-.25 H -(oprocess at a time.).15 E(GNU Bash 4.4)72 768 Q(2017 June 23)148.175 E -(79)197.335 E 0 Cg EP +(oprocess at a time.).15 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 +E(79)192.895 E 0 Cg EP %%Trailer end %%EOF diff --git a/doc/bashref.dvi b/doc/bashref.dvi index d263483e25cd9bae8bb3cb37350090c87e3003c2..1c979a410216b2446bf498f7a04a8910bf3fcc58 100644 GIT binary patch delta 2929 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 Og*OzQ$R@dB|NI|@fcb_1 diff --git a/doc/bashref.html b/doc/bashref.html index fce05b41..aa138f43 100644 --- a/doc/bashref.html +++ b/doc/bashref.html @@ -1,9 +1,9 @@