⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hsuser.texi

📁 linux中bash shell的源代码
💻 TEXI
📖 第 1 页 / 共 2 页
字号:
@ignoreThis file documents the user interface to the GNU History library.Copyright (C) 1988-2002 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@ifclear BashFeatures@defcodeindex bt@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 @sc{gnu} History Library interactively,from a user's standpoint.  It should be considered a user's guide.  Forinformation on using the @sc{gnu} History Library in your own programs,@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 @option{-o history} option to the @code{set} builtinis enabled (@pxref{The Set Builtin}),the shell provides access to the @dfn{command history},the list of commands previously typed.The value of the @env{HISTSIZE} shell variable is used as thenumber of commands to save in a history list.The text of the last @env{$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@env{HISTIGNORE} and @env{HISTCONTROL}.When the shell starts up, the history is initialized from thefile named by the @env{HISTFILE} variable (default @file{~/.bash_history}).The file named by the value of @env{HISTFILE} is truncated, ifnecessary, to contain no more than the number of lines specified bythe value of the @env{HISTFILESIZE} variable.When an interactive shell exits, the last@env{$HISTSIZE} lines are copied from the history list to the filenamed by @env{$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 @env{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 @env{$HISTFILESIZE}lines.  If @env{HISTFILESIZE} is not set, no truncation is performed.If the @env{HISTTIMEFORMAT} is set, the time stamp informationassociated with each history entry is written to the history file.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 @env{HISTCONTROL} and @env{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 @option{-l} flag isgiven, the commands are listed on standard output.  The @option{-n} flagsuppresses the command numbers when listing.  The @option{-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 @env{FCEDIT} variable if set, or the value of the@env{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 a @samp{*} have been modified.An argument of @var{n} lists only the last @var{n} lines.If the shell variable @env{HISTTIMEFORMAT} is set and not null,it is used as a format string for @var{strftime} to displaythe time stamp associated with each displayed history entry.No intervening blank is printed between the formatted time stampand the history line.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 @option{-w}, @option{-r}, @option{-a}, or @option{-n} options isused, if @var{filename}is given, then it is used as the history file.  If not, thenthe value of the @env{HISTFILE} variable is used.@end table@end ifset

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -