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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
|
This is Info file screen.info, produced by Makeinfo-1.55 from the input
file ./screen.texinfo.
This file documents the `Screen' virtual terminal manager.
Copyright (c) 1993-1995 Free Software Foundation, Inc.
Permission is granted to make and distribute verbatim copies of this
manual provided the copyright notice and this permission notice are
preserved on all copies.
Permission is granted to copy and distribute modified versions of
this manual under the conditions for verbatim copying, provided that
the entire resulting derived work is distributed under the terms of a
permission notice identical to this one.
Permission is granted to copy and distribute translations of this
manual into another language, under the above conditions for modified
versions, except that this permission notice may be stated in a
translation approved by the Foundation.
File: screen.info, Node: Last Message, Next: Message Wait, Prev: Hardware Status Line, Up: Message Line
Display Last Message
====================
- Command: lastmsg
(`C-a m', `C-a C-m')
Repeat the last message displayed in the message line. Useful if
you're typing when a message appears, because (unless your
terminal has a hardware status line) the message goes away when
you press a key.
File: screen.info, Node: Message Wait, Prev: Last Message, Up: Message Line
Message Wait
============
- Command: msgminwait SEC
(none)
Defines the time `screen' delays a new message when another is
currently displayed. Defaults to 1 second.
- Command: msgwait SEC
(none)
Defines the time a message is displayed, if `screen' is not
disturbed by other activity. Defaults to 5 seconds.
File: screen.info, Node: Logging, Next: Startup, Prev: Message Line, Up: Top
Logging
*******
This section describes the commands for keeping a record of your
session.
* Menu:
* Hardcopy:: Dump the current screen to a file
* Log:: Log the output of a window to a file
File: screen.info, Node: Hardcopy, Next: Log, Up: Logging
hardcopy
========
- Command: hardcopy
(`C-a h', `C-a C-h')
Writes out the current display contents to the file `hardcopy.N'
in the window's default directory, where N is the number of the
current window. This either appends or overwrites the file if it
exists, as determined by the `hardcopy_append' command.
- Command: hardcopy_append STATE
(none)
If set to `on', `screen' will append to the `hardcopy.N' files
created by the command `hardcopy'; otherwise, these files are
overwritten each time.
- Command: hardcopydir DIRECTORY
(none)
Defines a directory where hardcopy files will be placed. If unset
hardcopys are dumped in screen's current working directory.
File: screen.info, Node: Log, Prev: Hardcopy, Up: Logging
log
===
- Command: log [STATE]
(`C-a H')
Begins/ends logging of the current window to the file
`screenlog.N' in the window's default directory, where N is the
number of the current window. This filename can be changed with
the `logfile' command. If no parameter is given, the logging
state is toggled. The session log is appended to the previous
contents of the file if it already exists. The current contents
and the contents of the scrollback history are not included in the
session log. Default is `off'.
- Command: logfile FILENAME
- Command: logfile FLUSH SECS
(none)
Defines the name the logfiles will get. The default is
`screenlog.%n'. The second form changes the number of seconds
`screen' will wait before flushing the logfile buffer to the
file-system. The default value is 10 seconds.
- Command: logtstamp [STATE]
- Command: logtstamp `after' SECS
- Command: logtstamp `string' STRING
(none)
This command controls logfile time-stamp mechanism of screen. If
time-stamps are turned `on', screen adds a string containing the
current time to the logfile after two minutes of inactivity. When
output continues and more than another two minutes have passed, a
second time-stamp is added to document the restart of the output.
You can change this timeout with the second form of the command.
The third form is used for customizing the time-stamp string (`--
%n:%t -- time-stamp -- %M/%d/%y %c:%s --\n' by default).
File: screen.info, Node: Startup, Next: Miscellaneous, Prev: Logging, Up: Top
Startup
*******
This section describes commands which are only useful in the
`.screenrc' file, for use at startup.
* Menu:
* echo:: Display a message.
* sleep:: Pause execution of the `.screenrc'.
* Startup Message:: Control display of the copyright notice.
File: screen.info, Node: echo, Next: sleep, Up: Startup
echo
====
- Command: echo [`-n'] MESSAGE
(none)
The echo command may be used to annoy `screen' users with a
'message of the day'. Typically installed in a global screenrc.
The option `-n' may be used to suppress the line feed. See also
`sleep'. Echo is also useful for online checking of environment
variables.
File: screen.info, Node: sleep, Next: Startup Message, Prev: echo, Up: Startup
sleep
=====
- Command: sleep NUM
(none)
This command will pause the execution of a .screenrc file for NUM
seconds. Keyboard activity will end the sleep. It may be used to
give users a chance to read the messages output by `echo'.
File: screen.info, Node: Startup Message, Prev: sleep, Up: Startup
Startup Message
===============
- Command: startup_message STATE
(none)
Select whether you want to see the copyright notice during startup.
Default is `on', as you probably noticed.
File: screen.info, Node: Miscellaneous, Next: String Escapes, Prev: Startup, Up: Top
Miscellaneous commands
**********************
The commands described here do not fit well under any of the other
categories.
* Menu:
* At:: Execute a command at other displays or windows.
* Break:: Send a break signal to the window.
* Debug:: Suppress/allow debugging output.
* License:: Display the disclaimer page.
* Nethack:: Use `nethack'-like error messages.
* Nonblock:: Disable flow-control to a display.
* Number:: Change the current window's number.
* Silence:: Notify on inactivity.
* Time:: Display the time and load average.
* Verbose:: Display window creation commands.
* Version:: Display the version of `screen'.
* Zombie:: Keep dead windows.
* Printcmd:: Set command for VT100 printer port emulation.
* Sorendition:: Change the text highlighting method.
File: screen.info, Node: At, Next: Break, Up: Miscellaneous
At
==
- Command: at [IDENTIFIER][#|*|%] COMMAND [ARGS]
(none)
Execute a command at other displays or windows as if it had been
entered there. `At' changes the context (the `current window' or
`current display' setting) of the command. If the first parameter
describes a non-unique context, the command will be executed
multiple times. If the first parameter is of the form
`IDENTIFIER*' then identifier is matched against user names. The
command is executed once for each display of the selected user(s).
If the first parameter is of the form `IDENTIFIER%' identifier is
matched against displays. Displays are named after the ttys they
attach. The prefix `/dev/' or `/dev/tty' may be omitted from the
identifier. If IDENTIFIER has a `#' or nothing appended it is
matched against window numbers and titles. Omitting an identifier
in front of the `#', `*' or `%' character selects all users,
displays or windows because a prefix-match is performed. Note that
on the affected display(s) a short message will describe what
happened. Note that the `#' character works as a comment
introducer when it is preceded by whitespace. This can be escaped
by prefixing `#' with a `\'. Permission is checked for the
initiator of the `at' command, not for the owners of the affected
display(s). Caveat: When matching against windows, the command is
executed at least once per window. Commands that change the
internal arrangement of windows (like `other') may be called
again. In shared windows the command will be repeated for each
attached display. Beware, when issuing toggle commands like
`login'! Some commands (e.g. `stuff', `\*Qprocess' or `paste')
require that a display is associated with the target windows.
These commands may not work correctly under `at' looping over
windows.
File: screen.info, Node: Break, Next: Debug, Prev: At, Up: Miscellaneous
Break
=====
- Command: break [DURATION]
(none)
Send a break signal for DURATION*0.25 seconds to this window. For
non-Posix systems the time interval is rounded up to full seconds.
Most useful if a character device is attached to the window rather
than a shell process (*note Window Types::.). The maximum duration
of a break signal is limited to 15 seconds.
- Command: pow_break
(none)
Reopen the window's terminal line and send a break condition.
- Command: breaktype [TCSENDBREAK|TIOCSBRK|TCSBRK]
(none)
Choose one of the available methods of generating a break signal
for terminal devices. This command should affect the current
window only. But it still behaves identical to `defbreaktype'.
This will be changed in the future. Calling `breaktype' with no
parameter displays the break setting for the current window.
- Command: defbreaktype [TCSENDBREAK|TIOCSBRK|TCSBRK]
(none)
Choose one of the available methods of generating a break signal
for terminal devices opened afterwards. The preferred methods are
`tcsendbreak' and `TIOCSBRK'. The third, `TCSBRK', blocks the
complete `screen' session for the duration of the break, but it
may be the only way to generate long breaks. `tcsendbreak' and
`TIOCSBRK' may or may not produce long breaks with spikes (e.g. 4
per second). This is not only system dependant, this also differs
between serial board drivers. Calling `defbreaktype' with no
parameter displays the current setting.
File: screen.info, Node: Debug, Next: License, Prev: Break, Up: Miscellaneous
Debug
=====
- Command: debug [ON|OFF]
(none)
Turns runtime debugging on or off. If `screen' has been compiled
with option `-DDEBUG' debugging is available and is turned on per
default. Note that this command only affects debugging output
from the main `SCREEN' process correctly. Debug output from
attacher processes can only be turned off once and forever.
File: screen.info, Node: License, Next: Nethack, Prev: Debug, Up: Miscellaneous
License
=======
- Command: license
(none)
Display the disclaimer page. This is done whenever `screen' is
started without options, which should be often enough.
File: screen.info, Node: Nethack, Next: Nonblock, Prev: License, Up: Miscellaneous
Nethack
=======
- Command: nethack STATE
(none)
Changes the kind of error messages used by `screen'. When you are
familiar with the game `nethack', you may enjoy the nethack-style
messages which will often blur the facts a little, but are much
funnier to read. Anyway, standard messages often tend to be
unclear as well.
This option is only available if `screen' was compiled with the
NETHACK flag defined (*note Installation::.). The default setting
is then determined by the presence of the environment variable
`$NETHACKOPTIONS'.
File: screen.info, Node: Nonblock, Next: Number, Prev: Nethack, Up: Miscellaneous
Nonblock
========
- Command: nonblock STATE
Enable or disable flow control for the current user interface
(display). It is used to prevent a slow display from slowing down
the processing of data output by a window. This command may be
helpful when multiple displays show the same window. `Nonblock'
is initially off for all displays.
File: screen.info, Node: Number, Next: Silence, Prev: Nonblock, Up: Miscellaneous
Number
======
- Command: number [N]
(`C-a N')
Change the current window's number. If the given number N is
already used by another window, both windows exchange their
numbers. If no argument is specified, the current window number
(and title) is shown.
File: screen.info, Node: Silence, Next: Time, Prev: Number, Up: Miscellaneous
Silence
=======
- Command: silence [STATE|SEC]
(none)
Toggles silence monitoring of windows. When silence is turned on
and an affected window is switched into the background, you will
receive the silence notification message in the status line after
a specified period of inactivity (silence). The default timeout
can be changed with the `silencewait' command or by specifying a
number of seconds instead of `on' or `off'. Silence is initially
off for all windows.
- Command: defsilence STATE
(none)
Same as the `silence' command except that the default setting for
new windows is changed. Initial setting is `off'.
- Command: silencewait SECONDS
(none)
Define the time that all windows monitored for silence should wait
before displaying a message. Default is 30 seconds.
File: screen.info, Node: Time, Next: Verbose, Prev: Silence, Up: Miscellaneous
Time
====
- Command: time
(`C-a t', `C-a C-t')
Uses the message line to display the time of day, the host name,
and the load averages over 1, 5, and 15 minutes (if this is
available on your system). For window-specific information use
`info' (*note Info::.).
File: screen.info, Node: Verbose, Next: Version, Prev: Time, Up: Miscellaneous
Verbose
=======
- Command: verbose [ON|OFF]
If verbose is switched on, the command name is echoed, whenever a
window is created (or resurrected from zombie state). Default is
off. Without parameter, the current setting is shown.
File: screen.info, Node: Version, Next: Zombie, Prev: Verbose, Up: Miscellaneous
Version
=======
- Command: version
(`C-a v')
Display the version and modification date in the message line.
File: screen.info, Node: Zombie, Next: Printcmd, Prev: Version, Up: Miscellaneous
Zombie
======
- Command: zombie [KEYS]
- Command: defzombie [KEYS]
(none)
Per default windows are removed from the window list as soon as the
windows process (e.g. shell) exits. When a string of two keys is
specified to the zombie command, `dead' windows will remain in the
list. The `kill' command may be used to remove the window.
Pressing the first key in the dead window has the same effect.
Pressing the second key, however, screen will attempt to resurrect
the window. The process that was initially running in the window
will be launched again. Calling `zombie' without parameters will
clear the zombie setting, thus making windows disappear when the
process terminates.
As the zombie setting is affected globally for all windows, this
command should only be called `defzombie'. Until we need this as a
per window setting, the commands `zombie' and `defzombie' are
synonymous.
File: screen.info, Node: Printcmd, Next: Sorendition, Prev: Zombie, Up: Miscellaneous
Printcmd
========
- Command: printcmd [CMD]
(none)
If CMD is not an empty string, screen will not use the terminal
capabilities `po/pf' for printing if it detects an ansi print
sequence `ESC [ 5 i', but pipe the output into CMD. This should
normally be a command like `lpr' or `cat > /tmp/scrprint'.
`Printcmd' without an argument displays the current setting. The
ansi sequence `ESC \' ends printing and closes the pipe.
Warning: Be careful with this command! If other user have write
access to your terminal, they will be able to fire off print
commands.
File: screen.info, Node: Sorendition, Prev: Printcmd, Up: Miscellaneous
Sorendition
===========
- Command: sorendition [ATTR [COLOR]]
(none)
Change the way screen does highlighting for text marking and
printing messages. ATTR is a hexadecimal number and describes the
attributes (inverse, underline, ...) the text will get. COLOR is
a 2 digit number and changes the foreground/background of the
highlighted text. Some knowledge of screen's internal character
representation is needed to make the characters appear in the
desired way. The default is currently `10 99' (standout, default
colors).
File: screen.info, Node: String Escapes, Next: Environment, Prev: Miscellaneous, Up: Top
String Escapes
**************
Screen provides an escape mechanism to insert information like the
current time into messages or file names. The escape character is `%'
with one exception: inside of a window's hardstatus `^%' (`^E') is used
instead.
Here is the full list of supported escapes:
`%'
the escape character itself
`a'
either `am' or `pm'
`A'
either `AM' or `PM'
`c'
current time `HH:MM' in 24h format
`C'
current time `HH:MM' in 12h format
`d'
day number
`D'
weekday name
`h'
hardstatus of the window
`l'
current load of the system
`m'
month number
`M'
month name
`n'
window number
`s'
seconds
`t'
window title
`u'
all other users on this window
`w'
all window numbers and names
`W'
all window numbers and names except the current one
`y'
last two digits of the year number
`Y'
full year number
`?'
the part to the next `%?' is displayed only if an escape expands
to an nonempty string
`:'
else part of `%?' The `c' and `C' escape may be qualified with a
`0' to make screen use zero instead of space as fill character. The `n'
escape understands a length qualifier (e.g. `%3n').
File: screen.info, Node: Environment, Next: Files, Prev: String Escapes, Up: Top
Environment Variables
*********************
`COLUMNS'
Number of columns on the terminal (overrides termcap entry).
`HOME'
Directory in which to look for .screenrc.
`LINES'
Number of lines on the terminal (overrides termcap entry).
`LOCKPRG'
Screen lock program.
`NETHACKOPTIONS'
Turns on `nethack' option.
`PATH'
Used for locating programs to run.
`SCREENCAP'
For customizing a terminal's `TERMCAP' value.
`SCREENDIR'
Alternate socket directory.
`SCREENRC'
Alternate user screenrc file.
`SHELL'
Default shell program for opening windows (default `/bin/sh').
`STY'
Alternate socket name. If `screen' is invoked, and the environment
variable `STY' is set, then it creates only a window in the
running `screen' session rather than starting a new session.
`SYSSCREENRC'
Alternate system screenrc file.
`TERM'
Terminal name.
`TERMCAP'
Terminal description.
File: screen.info, Node: Files, Next: Credits, Prev: Environment, Up: Top
Files Referenced
****************
`.../screen-3.?.??/etc/screenrc'
`.../screen-3.?.??/etc/etcscreenrc'
Examples in the `screen' distribution package for private and
global initialization files.
``$SYSSCREENRC''
`/local/etc/screenrc'
`screen' initialization commands
``$SCREENRC''
``$HOME'/.iscreenrc'
``$HOME'/.screenrc'
Read in after /local/etc/screenrc
``$SCREENDIR'/S-LOGIN'
`/local/screens/S-LOGIN'
Socket directories (default)
`/usr/tmp/screens/S-LOGIN'
Alternate socket directories.
`SOCKET DIRECTORY/.termcap'
Written by the `dumptermcap' command
`/usr/tmp/screens/screen-exchange or'
`/tmp/screen-exchange'
`screen' interprocess communication buffer
`hardcopy.[0-9]'
Screen images created by the hardcopy command
`screenlog.[0-9]'
Output log files created by the log command
`/usr/lib/terminfo/?/* or'
`/etc/termcap'
Terminal capability databases
`/etc/utmp'
Login records
``$LOCKPRG''
Program for locking the terminal.
File: screen.info, Node: Credits, Next: Bugs, Prev: Files, Up: Top
Credits
*******
Authors
=======
Originally created by Oliver Laumann, this latest version was
produced by Wayne Davison, Juergen Weigert and Michael Schroeder.
Contributors
============
Ken Beal (kbeal@amber.ssd.csd.harris.com),
Rudolf Koenig (rfkoenig@informatik.uni-erlangen.de),
Toerless Eckert (eckert@informatik.uni-erlangen.de),
Wayne Davison (davison@borland.com),
Patrick Wolfe (pat@kai.com, kailand!pat),
Bart Schaefer (schaefer@cse.ogi.edu),
Nathan Glasser (nathan@brokaw.lcs.mit.edu),
Larry W. Virden (lvirden@cas.org),
Howard Chu (hyc@hanauma.jpl.nasa.gov),
Tim MacKenzie (tym@dibbler.cs.monash.edu.au),
Markku Jarvinen (mta@{cc,cs,ee}.tut.fi),
Marc Boucher (marc@CAM.ORG),
Doug Siebert (dsiebert@isca.uiowa.edu),
Ken Stillson (stillson@tsfsrv.mitre.org),
Ian Frechett (frechett@spot.Colorado.EDU),
Brian Koehmstedt (bpk@gnu.ai.mit.edu),
Don Smith (djs6015@ultb.isc.rit.edu),
Frank van der Linden (vdlinden@fwi.uva.nl),
Martin Schweikert (schweik@cpp.ob.open.de),
David Vrona (dave@sashimi.lcu.com),
E. Tye McQueen (tye%spillman.UUCP@uunet.uu.net),
Matthew Green (mrg@mame.mu.oz.au),
Christopher Williams (cgw@unt.edu),
Matt Mosley (mattm@access.digex.net),
Gregory Neil Shapiro (gshapiro@wpi.WPI.EDU),
Jason Merrill (jason@jarthur.Claremont.EDU).
Version
=======
This manual describes version 3.9.0 of the `screen' program. Its
roots are a merge of a custom version 2.3PR7 by Wayne Davison and
several enhancements to Oliver Laumann's version 2.0. Note that all
versions numbered 2.x are copyright by Oliver Laumann.
See also *Note Availability::.
File: screen.info, Node: Bugs, Next: Installation, Prev: Credits, Up: Top
Bugs
****
Just like any other significant piece of software, `screen' has a
few bugs and missing features. Please send in a bug report if you have
found a bug not mentioned here.
* Menu:
* Known Bugs:: Problems we know about.
* Reporting Bugs:: How to contact the maintainers.
* Availability:: Where to find the lastest screen version.
File: screen.info, Node: Known Bugs, Next: Reporting Bugs, Up: Bugs
Known Bugs
==========
* `dm' (delete mode) and `xs' are not handled correctly (they are
ignored). `xn' is treated as a magic-margin indicator.
* `screen' has no clue about double-high or double-wide characters.
But this is the only area where `vttest' is allowed to fail.
* It is not possible to change the environment variable `$TERMCAP'
when reattaching under a different terminal type.
* The support of terminfo based systems is very limited. Adding extra
capabilities to `$TERMCAP' may not have any effects.
* `screen' does not make use of hardware tabs.
* `screen' must be installed setuid root on most systems in order to
be able to correctly change the owner of the tty device file for
each window. Special permission may also be required to write the
file `/etc/utmp'.
* Entries in `/etc/utmp' are not removed when `screen' is killed
with SIGKILL. This will cause some programs (like "w" or "rwho")
to advertise that a user is logged on who really isn't.
* `screen' may give a strange warning when your tty has no utmp
entry.
* When the modem line was hung up, `screen' may not automatically
detach (or quit) unless the device driver sends a HANGUP signal.
To detach such a `screen' session use the -D or -d command line
option.
* If a password is set, the command line options -d and -D still
detach a session without asking.
* Both `breaktype' and `defbreaktype' change the break generating
method used by all terminal devices. The first should change a
window specific setting, where the latter should change only the
default for new windows.
* When attaching to a multiuser session, the user's `.screenrc' file
is not sourced. Each users personal settings have to be included
in the `.screenrc' file from which the session is booted, or have
to be changed manually.
* A weird imagination is most useful to gain full advantage of all
the features.
File: screen.info, Node: Reporting Bugs, Next: Availability, Prev: Known Bugs, Up: Bugs
Reporting Bugs
==============
If you find a bug in `Screen', please send electronic mail to
`screen@uni-erlangen.de', and also to `bug-gnu-utils@prep.ai.mit.edu'.
Include the version number of `Screen' which you are using. Also
include in your message the hardware and operating system, the compiler
used to compile, a description of the bug behavior, and the conditions
that triggered the bug. Please recompile `screen' with the `-DDEBUG'
options enabled, reproduce the bug, and have a look at the debug output
written to the directory `/tmp/debug'. If necessary quote suspect
passages from the debug output and show the contents of your `config.h'
if it matters.
File: screen.info, Node: Availability, Prev: Reporting Bugs, Up: Bugs
Availability
============
`Screen' is available under the `GNU' copyleft.
The latest official release of `screen' available via anonymous ftp
from `prep.ai.mit.edu', `nic.funet.fi' or any other `GNU' distribution
site. The home site of `screen' is `ftp.uni-erlangen.de
(131.188.3.71)', in the directory `pub/utilities/screen'. The
subdirectory `private' contains the latest beta testing release. If
you want to help, send a note to screen@uni-erlangen.de.
File: screen.info, Node: Installation, Next: Concept Index, Prev: Bugs, Up: Top
Installation
************
Since `screen' uses pseudo-ttys, the select system call, and
UNIX-domain sockets/named pipes, it will not run under a system that
does not include these features of 4.2 and 4.3 BSD UNIX.
* Menu:
* Socket Directory:: Where screen stores its handle.
* Compiling Screen::
File: screen.info, Node: Socket Directory, Next: Compiling Screen, Up: Installation
Socket Directory
================
The socket directory defaults either to `$HOME/.screen' or simply to
`/tmp/screens' or preferably to `/usr/local/screens' chosen at
compile-time. If `screen' is installed setuid root, then the
administrator should compile screen with an adequate (not NFS mounted)
`SOCKDIR'. If `screen' is not running setuid-root, the user can specify
any mode 700 directory in the environment variable `$SCREENDIR'.
File: screen.info, Node: Compiling Screen, Prev: Socket Directory, Up: Installation
Compiling Screen
================
To compile and install screen:
The `screen' package comes with a `GNU Autoconf' configuration
script. Before you compile the package run
`sh ./configure'
This will create a `config.h' and `Makefile' for your machine. If
`configure' fails for some reason, then look at the examples and
comments found in the `Makefile.in' and `config.h.in' templates.
Rename `config.status' to `config.status.MACHINE' when you want to keep
configuration data for multiple architectures. Running `sh
./config.status.MACHINE' recreates your configuration significantly
faster than rerunning `configure'.
Read through the "User Configuration" section of `config.h', and verify
that it suits your needs. A comment near the top of this section
explains why it's best to install screen setuid to root. Check for the
place for the global `screenrc'-file and for the socket directory.
Check the compiler used in `Makefile', the prefix path where to install
`screen'. Then run
`make'
If `make' fails to produce one of the files `term.h', `comm.h' or
`tty.c', then use `FILENAME.X.dist' instead. For additional
information about installation of `screen' refer to the file
`INSTALLATION', coming with this package.
File: screen.info, Node: Concept Index, Next: Command Index, Prev: Installation, Up: Top
Concept Index
*************
* Menu:
* .screenrc: Startup Files.
* availability: Availability.
* binding: Key Binding.
* bug report: Reporting Bugs.
* bugs: Bugs.
* capabilities: Special Capabilities.
* command character: Command Character.
* command line options: Invoking Screen.
* command summary: Command Summary.
* compiling screen: Compiling Screen.
* control sequences: Control Sequences.
* copy and paste: Copy and Paste.
* customization: Customization.
* environment: Environment.
* escape character: Command Character.
* files: Files.
* flow control: Flow Control.
* input translation: Input Translation.
* installation: Installation.
* introduction: Getting Started.
* invoking: Invoking Screen.
* key binding: Key Binding.
* marking: Copy.
* message line: Message Line.
* multiuser session: Multiuser Session.
* options: Invoking Screen.
* overview: Overview.
* regions: Regions.
* screenrc: Startup Files.
* scrollback: Copy.
* socket directory: Socket Directory.
* string escapes: String Escapes.
* terminal capabilities: Special Capabilities.
* title: Naming Windows.
* window types: Window Types.
File: screen.info, Node: Command Index, Next: Keystroke Index, Prev: Concept Index, Up: Top
Command Index
*************
This is a list of all the commands supported by `screen'.
* Menu:
* acladd: Acladd.
* aclchg: Aclchg.
* acldel: Acldel.
* aclgrp: Aclgrp.
* aclumask: Umask.
* activity: Monitor.
* addacl: Acladd.
* allpartial: Redisplay.
* at: At.
* autodetach: Detach.
* autonuke: Autonuke.
* bell_msg: Bell.
* bind: Bind.
* bindkey: Bindkey.
* break: Break.
* breaktype: Break.
* bufferfile: Screen-Exchange.
* c1: Character Processing.
* caption: Caption.
* caption: Caption.
* chacl: Aclchg.
* charset: Character Processing.
* chdir: Chdir.
* clear: Clear.
* colon: Colon.
* command: Command Character.
* compacthist: Scrollback.
* console: Console.
* copy: Copy.
* copy_reg: Registers.
* crlf: Line Termination.
* debug: Debug.
* defautonuke: Autonuke.
* defbreaktype: Break.
* defc1: Character Processing.
* defcharset: Character Processing.
* defescape: Command Character.
* defflow: Flow.
* defgr: Character Processing.
* defhstatus: Hardstatus.
* defkanji: Character Processing.
* deflogin: Login.
* defmode: Mode.
* defmonitor: Monitor.
* defobuflimit: Obuflimit.
* defscrollback: Scrollback.
* defshell: Shell.
* defsilence: Silence.
* defslowpaste: Paste.
* defwrap: Wrap.
* defwritelock: Writelock.
* defzombie: Zombie.
* detach: Detach.
* digraph: Digraph.
* displays: Displays.
* dumptermcap: Dump Termcap.
* echo: echo.
* escape: Command Character.
* exec: Exec.
* fit: Window Size.
* flow: Flow.
* focus: Focus.
* gr: Character Processing.
* hardcopy: Hardcopy.
* hardcopydir: Hardcopy.
* hardcopy_append: Hardcopy.
* hardstatus: Hardware Status Line.
* hardstatus: Hardware Status Line.
* hardstatus: Hardware Status Line.
* height: Window Size.
* help: Help.
* history: History.
* hstatus: Hardstatus.
* info: Info.
* ins_reg: Registers.
* kanji: Character Processing.
* kill: Kill.
* lastmsg: Last Message.
* license: License.
* lockscreen: Lock.
* log: Log.
* logfile: Log.
* logfile: Log.
* login: Login.
* logtstamp: Log.
* logtstamp: Log.
* logtstamp: Log.
* mapdefault: Bindkey Control.
* mapnotnext: Bindkey Control.
* maptimeout: Bindkey Control.
* markkeys: Copy Mode Keys.
* meta: Command Character.
* monitor: Monitor.
* msgminwait: Message Wait.
* msgwait: Message Wait.
* multiuser: Multiuser.
* nethack: Nethack.
* next: Next and Previous.
* nonblock: Nonblock.
* number: Number.
* obuflimit: Obuflimit.
* only: Only.
* other: Other Window.
* partial: Redisplay.
* password: Detach.
* paste: Paste.
* pastefont: Paste.
* pow_break: Break.
* pow_detach: Power Detach.
* pow_detach_msg: Power Detach.
* prev: Next and Previous.
* printcmd: Printcmd.
* process: Registers.
* quit: Quit.
* readbuf: Screen-Exchange.
* readreg: Paste.
* redisplay: Redisplay.
* register: Registers.
* remove: Remove.
* removebuf: Screen-Exchange.
* reset: Reset.
* screen: Screen Command.
* scrollback: Scrollback.
* select: Select.
* sessionname: Session Name.
* setenv: Setenv.
* shell: Shell.
* shelltitle: Shell.
* silence: Silence.
* silencewait: Silence.
* sleep: sleep.
* slowpaste: Paste.
* sorendition: Sorendition.
* split: Split.
* startup_message: Startup Message.
* stuff: Registers.
* su: Su.
* suspend: Suspend.
* term: Term.
* termcap: Termcap Syntax.
* termcapinfo: Termcap Syntax.
* terminfo: Termcap Syntax.
* time: Time.
* title: Title Command.
* umask: Umask.
* unsetenv: Setenv.
* vbell: Bell.
* vbellwait: Bell.
* vbell_msg: Bell.
* verbose: Verbose.
* version: Version.
* wall: Wall.
* width: Window Size.
* windows: Windows.
* wrap: Wrap.
* writebuf: Screen-Exchange.
* writelock: Writelock.
* xoff: XON/XOFF.
* xon: XON/XOFF.
* zombie: Zombie.
File: screen.info, Node: Keystroke Index, Prev: Command Index, Up: Top
Keystroke Index
***************
This is a list of the default key bindings.
The leading escape character (*note Command Character::.) has been
omitted from the key sequences, since it is the same for all bindings.
* Menu:
* ": Select.
* ': Select.
* *: Displays.
* .: Dump Termcap.
* 0...9: Select.
* :: Colon.
* <: Screen-Exchange.
* =: Screen-Exchange.
* >: Screen-Exchange.
* ?: Help.
* {: History.
* A: Title Command.
* a: Command Character.
* c: Screen Command.
* C: Clear.
* C-a: Other Window.
* C-c: Screen Command.
* C-d: Detach.
* C-f: Flow.
* C-g: Bell.
* C-h: Hardcopy.
* C-i: Info.
* C-k: Kill.
* C-l: Redisplay.
* C-m: Last Message.
* C-n: Next and Previous.
* C-p: Next and Previous.
* C-q: XON/XOFF.
* C-r: Wrap.
* C-s: XON/XOFF.
* C-t: Time.
* C-v: Digraph.
* C-w: Windows.
* C-x: Lock.
* C-z: Suspend.
* C-[: Copy.
* C-\: Quit.
* C-]: Paste.
* D: Power Detach.
* d: Detach.
* ESC: Copy.
* F: Window Size.
* f: Flow.
* H: Log.
* h: Hardcopy.
* i: Info.
* k: Kill.
* l: Redisplay.
* L: Login.
* m: Last Message.
* M: Monitor.
* N: Number.
* n: Next and Previous.
* p: Next and Previous.
* q: XON/XOFF.
* Q: Only.
* r: Wrap.
* S: Split.
* s: XON/XOFF.
* SPC: Next and Previous.
* t: Time.
* TAB: Focus.
* v: Version.
* w: Windows.
* W: Window Size.
* x: Lock.
* X: Remove.
* z: Suspend.
* Z: Reset.
* [: Copy.
* ]: Paste.
|