Remove doc. It's been moved to a subdir.
[deliverable/binutils-gdb.git] / readline / inc-hist.texi
CommitLineData
681fa9a8
RP
1@ifinfo
2This file documents the GNU History library.
3
4Copyright (C) 1988 Free Software Foundation, Inc.
5Authored by Brian Fox.
6
7Permission is granted to make and distribute verbatim copies of this manual
8provided the copyright notice and this permission notice are preserved on
9all copies.
10@end ifinfo
11
12@ignore
13Permission is granted to process this file through Tex and print the
14results, provided the printed document carries copying permission notice
15identical to this one except for the removal of this paragraph (this
16paragraph not being relevant to the printed manual).
17
18Permission is granted to copy and distribute modified versions of this
19manual under the conditions for verbatim copying, provided also that the
20GNU Copyright statement is available to the distributee, and provided that
21the entire resulting derived work is distributed under the terms of a
22permission notice identical to this one.
23
24Permission is granted to copy and distribute translations of this manual
25into another language, under the above conditions for modified versions.
26@end ignore
27
28@node History Top,,,
29@appendix Command Line History
30@ifinfo
31This file is meant to be an inclusion in the documentation of programs
32that use the history library features. There is also a standalone
33document, entitled @file{history.texinfo}.
34@end ifinfo
35
36This Appendix describes the GNU History library, a programming tool that
37provides a consistent user interface for recalling lines of previously
38typed input.
39
40@menu
41* Introduction to History:: What is the GNU History library for?
42* History Interaction:: What it feels like using History as a user.
43@end menu
44
45@node Introduction to History, History Interaction, History Top, Top
46@appendixsec Introduction to History
47
48Many programs read input from the user a line at a time. The GNU history
49library is able to keep track of those lines, associate arbitrary data with
50each line, and utilize information from previous lines in making up new
51ones.
52
53The programmer using the History library has available to him functions
54for remembering lines on a history stack, associating arbitrary data
55with a line, removing lines from the stack, searching through the stack
56for a line containing an arbitrary text string, and referencing any line
57on the stack directly. In addition, a history @dfn{expansion} function
58is available which provides for a consistent user interface across many
59different programs.
60
61When you use programs written with the History library, you have the
62benefit of a consistent user interface, with a set of well-known
63commands for manipulating the text of previous lines and using that text
64in new commands. The basic history manipulation commands are similar to
65the history substitution used by Csh.
66
67GNU programs often also use the Readline library, which includes history
68manipulation by default, and has the added advantage of Emacs style
69command line editing.
70
71@node History Interaction, , Introduction to History, Top
72@appendixsec History Interaction
73@cindex expansion
74
75The History library provides a history expansion feature that is similar
76to the history expansion in Csh. The following text describes what
77syntax features are available.
78
79History expansion takes place in two parts. The first is to determine
80which line from the previous history should be used during substitution.
81The second is to select portions of that line for inclusion into the
82current one. The line selected from the previous history is called the
83@dfn{event}, and the portions of that line that are acted upon are
84called @dfn{words}. The line is broken into words in the same fashion
85used by the Bash shell, so that several words surrounded by quotes are
86treated as if they were a single word.
87
88@menu
89* Event Designators:: How to specify which history line to use. *
90Word Designators:: Specifying which words are of interest. *
91Modifiers:: Modifying the results of susbstitution.
92@end menu
93
94@node Event Designators, Word Designators, , History Interaction
95@appendixsubsec Event Designators
96@cindex event designators
97
98An event designator is a reference to a command line entry in the
99history list.
100
101@table @asis
102
103@item @code{!}
104Start a history subsititution, except when followed by a space, tab, or
105the end of the line; or by @samp{=} or @samp{(}.
106
107@item @code{!!}
108Refer to the previous command. This is a synonym for @code{!-1}.
109
110@item @code{!@var{n}}
111Refer to command line @var{n}.
112
113@item @code{!-@var{n}}
114Refer to the command line @var{n} lines back.
115
116@item @code{!@var{string}}
117Refer to the most recent command starting with @var{string}.
118
119@item @code{!?@var{string}}[@code{?}]
120Refer to the most recent command containing @var{string}.
121
122@end table
123
124@node Word Designators, Modifiers, Event Designators, History Interaction
125@appendixsubsec Word Designators
126
127A @samp{:} separates the event specification from the word designator. It
128can be omitted if the word designator begins with a @samp{^}, @samp{$},
129@samp{*} or @samp{%}. Words are numbered from the beginning of the line,
130with the first word being denoted by a 0 (zero).
131
132@table @code
133
134@item 0 (zero)
135The zero'th word. For many applications, this is the command word.
136
137@item n
138The @var{n}'th word.
139
140@item ^
141The first argument. that is, word 1.
142
143@item $
144The last argument.
145
146@item %
147The word matched by the most recent @code{?@var{string}?} search.
148
149@item @var{x}-@var{y}
150A range of words; @code{-@var{y}} abbreviates @code{0-@var{y}}.
151
152@item *
153All of the words, excepting the zero'th. This is a synonym for @samp{1-$}.
154It is not an error to use @samp{*} if there is just one word in the event.
155The empty string is returned in that case.
156
157@end table
158
159@node Modifiers, , Word Designators, History Interaction
160@appendixsubsec Modifiers
161
162After the optional word designator, you can add a sequence of one or more
163of the following modifiers, each preceded by a @samp{:}.
164
165@table @code
166
167@item #
168The entire command line typed so far. This means the current command,
169not the previous command, so it really isn't a word designator, and doesn't
170belong in this section.
171
172@item h
173Remove a trailing pathname component, leaving only the head.
174
175@item r
176Remove a trailing suffix of the form @samp{.@var{suffix}}, leaving the basename.
177
178@item e
179Remove all but the suffix.
180
181@item t
182Remove all leading pathname components, leaving the tail.
183
184@item p
185Print the new command but do not execute it. This takes effect
186immediately, so it should be the last specifier on the line.
187
188@end table
This page took 0.030563 seconds and 4 git commands to generate.