]> git.ipfire.org Git - thirdparty/util-linux.git/blame - misc-utils/script.1
Imported from util-linux-2.11o tarball.
[thirdparty/util-linux.git] / misc-utils / script.1
CommitLineData
6dbe3af9
KZ
1.\" Copyright (c) 1980, 1990 Regents of the University of California.
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\" must display the following acknowledgement:
14.\" This product includes software developed by the University of
15.\" California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\" may be used to endorse or promote products derived from this software
18.\" without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)script.1 6.5 (Berkeley) 7/27/91
33.\"
66ee8158 34.Dd July 30, 2000
6dbe3af9 35.Dt SCRIPT 1
66ee8158 36.Os Linux
6dbe3af9
KZ
37.Sh NAME
38.Nm script
39.Nd make typescript of terminal session
40.Sh SYNOPSIS
41.Nm script
42.Op Fl a
66ee8158
KZ
43.Op Fl f
44.Op Fl q
e8f26419 45.Op Fl t
6dbe3af9
KZ
46.Op Ar file
47.Sh DESCRIPTION
48.Nm Script
49makes a typescript of everything printed on your terminal.
50It is useful for students who need a hardcopy record of an interactive
51session as proof of an assignment, as the typescript file
52can be printed out later with
53.Xr lpr 1 .
54.Pp
55If the argument
56.Ar file
57is given,
58.Nm
59saves all dialogue in
60.Ar file .
61If no file name is given, the typescript is saved in the file
62.Pa typescript .
63.Pp
66ee8158 64Options:
6dbe3af9
KZ
65.Bl -tag -width Ds
66.It Fl a
67Append the output to
68.Ar file
69or
70.Pa typescript ,
71retaining the prior contents.
66ee8158
KZ
72.It Fl f
73Flush output after each write. This is nice for telecooperation:
74One person does `mkfifo foo; script -f foo' and another can
75supervise real-time what is being done using `cat foo'.
76.It Fl q
77Be quiet.
e8f26419
KZ
78.It Fl t
79Output timeing data to standard error. This data contains two fields,
80separated by a space. The first field indicates how much time elapsed since
81the previous output. The second field indicates how many characters were
82output this time. This information can be used to replay typescripts with
83realistic typing and output delays.
6dbe3af9
KZ
84.El
85.Pp
86The script ends when the forked shell exits (a
87.Em control-D
88to exit
89the Bourne shell
90.Pf ( Xr sh 1 ) ,
91and
92.Em exit ,
93.Em logout
94or
95.Em control-d
96(if
97.Em ignoreeof
98is not set) for the
99C-shell,
100.Xr csh 1 ) .
101.Pp
102Certain interactive commands, such as
103.Xr vi 1 ,
104create garbage in the typescript file.
105.Nm Script
106works best with commands that do not manipulate the
107screen, the results are meant to emulate a hardcopy
108terminal.
109.Sh ENVIRONMENT
110The following environment variable is utilized by
111.Nm script :
112.Bl -tag -width SHELL
113.It Ev SHELL
114If the variable
115.Ev SHELL
116exists, the shell forked by
117.Nm script
118will be that shell. If
119.Ev SHELL
120is not set, the Bourne shell
121is assumed. (Most shells set this variable automatically).
122.El
123.Sh SEE ALSO
124.Xr csh 1
125(for the
126.Em history
ffc43748
KZ
127mechanism),
128.Xr replay 1 .
6dbe3af9
KZ
129.Sh HISTORY
130The
131.Nm script
132command appeared in
133.Bx 3.0 .
134.Sh BUGS
135.Nm Script
136places
137.Sy everything
138in the log file, including linefeeds and backspaces.
139This is not what the naive user expects.