aboutsummaryrefslogtreecommitdiff
path: root/man/man1/wintext.1
blob: 7d3463d19d582b3d18ce04e1ec1d10dc1dece5dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
.TH WINTEXT 1
.SH NAME
wintext, ", "" \- access text in current window
.SH SYNOPSIS
.B wintext
.br
.B \C'"'\ 
[
.I prefix
]
.br
.B \C'"'\C'"'\ 
[
.I prefix
]
.SH DESCRIPTION
.I Wintext
prints the text of the current
.I win
(see
.IR acme (1))
or
.IR 9term (1)
window to standard output.
.PP
.I \C'"'
searches the window text for commands typed with a particular prefix
and prints them, indented, to standard output.
.I Prefix
is a regular expression that is matched against the beginning of the command-line.
If
.I prefix
is omitted,
.I \C'"'
prints the last command executed.
.I \C'"'\C'"'
prints the last command that
.I \C'"'
would print and then executes it by piping it into 
.IR rc (1).
.PP
Both
.I \C'"'
and
.I \C'"'\C'"'
identify commands in the window text by looking for lines
beginning with a shell prompt.
Prompts are assumed to be an unindented sequence of
non-whitespace characters followed by one of the
characters
.BR % ,
.BR ; ,
.BR $ ,
or
.BR # .
.SH EXAMPLES
Print the
.IR ls (1)
and
.I lc
commands executed in this window:
.IP
.EX
.ta +4n
% \C'"' 'l[sc]'
	% ls -l /tmp/qq*
	# ls -lrt /etc
	% lc r*
%
.EE
.PP
Execute the most recent
.I lc
command again:
.IP
.EX
.ta +4n
% \C'"'\C'"' lc
	% lc r*
ramfs   rc      read    rio     rm
% 
.EE
.SH SEE ALSO
.IR 9term (1),
.IR acme (1)
.SH SOURCE
.B /usr/local/plan9/bin
.SH BUGS
.I \C'"'
and
.I \C'"'\C'"'
are hard to type in shells other than
.IR rc (1).
.\" and in troff!
.PP
Don't run
.I \C'"'\C'"'
twice in a row.