📄 inc-hist.texinfo
字号:
@ignoreThis file documents the user interface to the GNU History library.Copyright (C) 1988-1999 Free Software Foundation, Inc.Authored by Brian Fox and Chet Ramey.Permission is granted to make and distribute verbatim copies of this manualprovided the copyright notice and this permission notice are preserved onall copies.Permission is granted to process this file through Tex and print theresults, provided the printed document carries copying permission noticeidentical to this one except for the removal of this paragraph (thisparagraph not being relevant to the printed manual).Permission is granted to copy and distribute modified versions of thismanual under the conditions for verbatim copying, provided also that theGNU Copyright statement is available to the distributee, and provided thatthe entire resulting derived work is distributed under the terms of apermission notice identical to this one.Permission is granted to copy and distribute translations of this manualinto another language, under the above conditions for modified versions.@end ignore@node Using History Interactively@chapter Using History Interactively@c @ifclear BashFeatures@c @defcodeindex bt@c @end ifclear@ifset BashFeaturesThis chapter describes how to use the @sc{gnu} History Libraryinteractively, from a user's standpoint.It should be considered a user's guide.For information on using the @sc{gnu} History Library in other programs,see the @sc{gnu} Readline Library Manual.@end ifset@ifclear BashFeaturesThis chapter describes how to use the GNU History Library interactively,from a user's standpoint. It should be considered a user's guide.@c For@c information on using the GNU History Library in your own programs,@c @pxref{Programming with GNU History}.@end ifclear@ifset BashFeatures@menu* Bash History Facilities:: How Bash lets you manipulate your command history.* Bash History Builtins:: The Bash builtin commands that manipulate the command history.* History Interaction:: What it feels like using History as a user.@end menu@end ifset@ifclear BashFeatures@menu* History Interaction:: What it feels like using History as a user.@end menu@end ifclear@ifset BashFeatures@node Bash History Facilities@section Bash History Facilities@cindex command history@cindex history listWhen the @samp{-o history} option to the @code{set} builtinis enabled (@pxref{The Set Builtin}),the shell provides access to the @var{command history},the list of commands previously typed.The value of the @code{HISTSIZE} shell variable is used as thenumber of commands to save in a history list.The text of the last @code{$HISTSIZE}commands (default 500) is saved.The shell stores each command in the history list prior toparameter and variable expansionbut after history expansion is performed, subject to thevalues of the shell variables@code{HISTIGNORE} and @code{HISTCONTROL}.When the shell starts up, the history is initialized from thefile named by the @code{HISTFILE} variable (default @file{~/.bash_history}).The file named by the value of @code{HISTFILE} is truncated, ifnecessary, to contain no more than the number of lines specified bythe value of the @code{HISTFILESIZE} variable.When an interactive shell exits, the last@code{$HISTSIZE} lines are copied from the history list to the filenamed by @code{$HISTFILE}.If the @code{histappend} shell option is set (@pxref{Bash Builtins}),the lines are appended to the history file,otherwise the history file is overwritten.If @code{HISTFILE}is unset, or if the history file is unwritable, the history isnot saved. After saving the history, the history file is truncatedto contain no more than @code{$HISTFILESIZE}lines. If @code{HISTFILESIZE} is not set, no truncation is performed.The builtin command @code{fc} may be used to list or edit and re-executea portion of the history list.The @code{history} builtin may be used to display or modify the historylist and manipulate the history file.When using command-line editing, search commandsare available in each editing mode that provide access to thehistory list (@pxref{Commands For History}).The shell allows control over which commands are saved on the historylist. The @code{HISTCONTROL} and @code{HISTIGNORE}variables may be set to cause the shell to save only a subset of thecommands entered.The @code{cmdhist}shell option, if enabled, causes the shell to attempt to save eachline of a multi-line command in the same history entry, addingsemicolons where necessary to preserve syntactic correctness.The @code{lithist}shell option causes the shell to save the command with embedded newlinesinstead of semicolons.The @code{shopt} builtin is used to set these options.@xref{Bash Builtins}, for a description of @code{shopt}.@node Bash History Builtins@section Bash History Builtins@cindex history builtinsBash provides two builtin commands which manipulate thehistory list and history file.@table @code@item fc@btindex fc@example@code{fc [-e @var{ename}] [-nlr] [@var{first}] [@var{last}]}@code{fc -s [@var{pat}=@var{rep}] [@var{command}]}@end exampleFix Command. In the first form, a range of commands from @var{first} to@var{last} is selected from the history list. Both @var{first} and@var{last} may be specified as a string (to locate the most recentcommand beginning with that string) or as a number (an index into thehistory list, where a negative number is used as an offset from thecurrent command number). If @var{last} is not specified it is set to@var{first}. If @var{first} is not specified it is set to the previouscommand for editing and @minus{}16 for listing. If the @samp{-l} flag isgiven, the commands are listed on standard output. The @samp{-n} flagsuppresses the command numbers when listing. The @samp{-r} flagreverses the order of the listing. Otherwise, the editor given by@var{ename} is invoked on a file containing those commands. If@var{ename} is not given, the value of the following variable expansionis used: @code{$@{FCEDIT:-$@{EDITOR:-vi@}@}}. This says to use thevalue of the @code{FCEDIT} variable if set, or the value of the@code{EDITOR} variable if that is set, or @code{vi} if neither is set.When editing is complete, the edited commands are echoed and executed.In the second form, @var{command} is re-executed after each instanceof @var{pat} in the selected command is replaced by @var{rep}.A useful alias to use with the @code{fc} command is @code{r='fc -s'}, sothat typing @samp{r cc} runs the last command beginning with @code{cc}and typing @samp{r} re-executes the last command (@pxref{Aliases}).@item history@btindex history@examplehistory [@var{n}]history -chistory -d @var{offset}history [-anrw] [@var{filename}]history -ps @var{arg}@end exampleWith no options, display the history list with line numbers.Lines prefixed with with a @samp{*} have been modified.An argument of @var{n} lists only the last @var{n} lines.Options, if supplied, have the following meanings:@table @code@item -cClear the history list. This may be combinedwith the other options to replace the history list completely.@item -d @var{offset}Delete the history entry at position @var{offset}.@var{offset} should be specified as it appears when the history isdisplayed.@item -aAppend the newhistory lines (history lines entered since the beginning of thecurrent Bash session) to the history file.@item -nAppend the history lines not already read from the history fileto the current history list. These are lines appended to the historyfile since the beginning of the current Bash session.@item -rRead the current history file and append its contents tothe history list.@item -wWrite out the current history to the history file.@item -pPerform history substitution on the @var{arg}s and display the resulton the standard output, without storing the results in the history list.@item -sThe @var{arg}s are added to the end ofthe history list as a single entry.@end tableWhen any of the @samp{-w}, @samp{-r}, @samp{-a}, or @samp{-n} options isused, if @var{filename}is given, then it is used as the history file. If not, thenthe value of the @code{HISTFILE} variable is used.@end table@end ifset@node History Interaction@section History Expansion@cindex history expansionThe History library provides a history expansion feature that is similarto the history expansion provided by @code{csh}. This sectiondescribes the syntax used to manipulate the history information.History expansions introduce words from the history list intothe input stream, making it easy to repeat commands, insert thearguments to a previous command into the current input line, orfix errors in previous commands quickly.History expansion takes place in two parts. The first is to determinewhich line from the history list should be used during substitution.The second is to select portions of that line for inclusion into thecurrent one. The line selected from the history is called the@dfn{event}, and the portions of that line that are acted upon arecalled @dfn{words}. Various @dfn{modifiers} are available to manipulatethe selected words. The line is broken into words in the same fashionthat Bash does, so that several wordssurrounded by quotes are considered one word.History expansions are introduced by the appearance of thehistory expansion character, which is @samp{!} by default.@ifset BashFeaturesOnly @samp{\} and @samp{'} may be used to escape the history expansioncharacter.@end ifset@ifset BashFeaturesSeveral shell options settable with the @code{shopt}builtin (@pxref{Bash Builtins}) may be used to tailorthe behavior of history expansion. If the@code{histverify} shell option is enabled, and Readlineis being used, history substitutions are not immediately passed tothe shell parser.Instead, the expanded line is reloaded into the Readlineediting buffer for further modification.If Readline is being used, and the @code{histreedit}shell option is enabled, a failed history expansion will bereloaded into the Readline editing buffer for correction.The @samp{-p} option to the @code{history} builtin commandmay be used to see what a history expansion will do before using it.The @samp{-s} option to the @code{history} builtin may be used toadd commands to the end of the history list without actually executingthem, so that they are available for subsequent recall.This is most useful in conjunction with Readline.The shell allows control of the various characters used by thehistory expansion mechanism with the @code{histchars} variable.@end ifset@menu* Event Designators:: How to specify which history line to use.* Word Designators:: Specifying which words are of interest.* Modifiers:: Modifying the results of substitution.@end menu@node Event Designators@subsection Event Designators@cindex event designatorsAn event designator is a reference to a command line entry in thehistory list.@cindex history events@table @asis@item @code{!}Start a history substitution, except when followed by a space, tab,the end of the line, @samp{=} or @samp{(}.@item @code{!@var{n}}Refer to command line @var{n}.@item @code{!-@var{n}}Refer to the command @var{n} lines back.@item @code{!!}Refer to the previous command. This is a synonym for @samp{!-1}.@item @code{!@var{string}}Refer to the most recent command starting with @var{string}.@item @code{!?@var{string}[?]}Refer to the most recent command containing @var{string}. The trailing@samp{?} may be omitted if the @var{string} is followed immediately bya newline.@item @code{^@var{string1}^@var{string2}^}Quick Substitution. Repeat the last command, replacing @var{string1}with @var{string2}. Equivalent to@code{!!:s/@var{string1}/@var{string2}/}.@item @code{!#}The entire command line typed so far.@end table@node Word Designators@subsection Word DesignatorsWord designators are used to select desired words from the event.A @samp{:} separates the event specification from the word designator. Itmay be omitted if the word designator begins with a @samp{^}, @samp{$},@samp{*}, @samp{-}, or @samp{%}. Words are numbered from the beginningof the line, with the first word being denoted by 0 (zero). Words areinserted into the current line separated by single spaces.@need 0.75For example,@table @code@item !!designates the preceding command. When you type this, the precedingcommand is repeated in toto.@item !!:$designates the last argument of the preceding command. This may beshortened to @code{!$}.@item !fi:2designates the second argument of the most recent command starting withthe letters @code{fi}.@end table@need 0.75Here are the word designators: @table @code@item 0 (zero)The @code{0}th word. For many applications, this is the command word.@item @var{n}The @var{n}th word.@item ^The first argument; that is, word 1.@item $The last argument.@item %The word matched by the most recent @samp{?@var{string}?} search.@item @var{x}-@var{y}A range of words; @samp{-@var{y}} abbreviates @samp{0-@var{y}}.@item *All of the words, except the @code{0}th. This is a synonym for @samp{1-$}.It is not an error to use @samp{*} if there is just one word in the event;the empty string is returned in that case.@item @var{x}*Abbreviates @samp{@var{x}-$}@item @var{x}-Abbreviates @samp{@var{x}-$} like @samp{@var{x}*}, but omits the last word.@end tableIf a word designator is supplied without an event specification, theprevious command is used as the event.@node Modifiers@subsection ModifiersAfter the optional word designator, you can add a sequence of one or moreof the following modifiers, each preceded by a @samp{:}.@table @code@item hRemove a trailing pathname component, leaving only the head.@item tRemove all leading pathname components, leaving the tail.@item rRemove a trailing suffix of the form @samp{.@var{suffix}}, leavingthe basename.@item eRemove all but the trailing suffix.@item pPrint the new command but do not execute it.@ifset BashFeatures@item qQuote the substituted words, escaping further substitutions.@item xQuote the substituted words as with @samp{q},but break into words at spaces, tabs, and newlines.@end ifset@item s/@var{old}/@var{new}/Substitute @var{new} for the first occurrence of @var{old} in theevent line. Any delimiter may be used in place of @samp{/}.The delimiter may be quoted in @var{old} and @var{new}with a single backslash. If @samp{&} appears in @var{new},it is replaced by @var{old}. A single backslash will quotethe @samp{&}. The final delimiter is optional if it is the lastcharacter on the input line.@item &Repeat the previous substitution.@item gCause changes to be applied over the entire event line. Used inconjunction with @samp{s}, as in @code{gs/@var{old}/@var{new}/},or with @samp{&}.@end table
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -