• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-2,2021,879

src/H14-Aug-2015-4,7673,785

tests/H14-Aug-2015-2,6612,584

AUTHORSH A D11-Aug-2015159 53

COPYINGH A D11-Aug-201534.3 KiB675553

ChangeLogH A D11-Aug-20152.9 KiB8563

INSTALLH A D14-Aug-201515.4 KiB371289

Makefile.amH A D14-Aug-20152.6 KiB8245

Makefile.inH A D14-Aug-201569.4 KiB1,7341,551

NEWSH A D14-Aug-20152 KiB6040

READMEH A D11-Aug-20152 KiB6243

aclocal.m4H A D14-Aug-201546.5 KiB1,3101,186

compileH A D14-Aug-20157.2 KiB348258

configureH A D14-Aug-2015179.1 KiB6,2405,172

configure.acH A D14-Aug-20152.4 KiB8169

depcompH A D14-Aug-201523 KiB792502

exercise-seqsH A D14-Aug-20153.7 KiB13299

install-shH A D14-Aug-201513.7 KiB528351

mdate-shH A D14-Aug-20155.9 KiB225117

missingH A D14-Aug-20156.7 KiB216143

reseqH A D14-Aug-20157.3 KiB295236

reseq.inH A D11-Aug-20157.3 KiB295236

test-driverH A D14-Aug-20154.2 KiB14084

texinfo.texH A D14-Aug-2015315.5 KiB10,0809,328

README

1This is the README file for GNU Teseq.
2
3GNU Teseq is a tool for analyzing files that contain control characters
4and terminal control sequences. It is intended to be useful for diagnosing
5terminal emulators, and programs that make heavy use of terminal
6features (such as those based on the Curses library).
7
8  Copyright (C) 2008,2013 Micah Cowan
9
10  Copying and distribution of this file, with or without modification,
11  are permitted in any medium without royalty provided the copyright
12  notice and this notice are preserved.
13
14The latest version of this program is always available at
15http://ftp.gnu.org/gnu/teseq/.
16
17
18GNU Teseq takes raw terminal data as input, like:
19
20  ^[[1mHi^[[m there, world^H^H^H^H^Hearth
21
22And spits out something like:
23
24  : Esc [ 1 m
25  & SGR: SELECT GRAPHIC RENDITION
26  " Set bold text.
27  |Hi|
28  : Esc [ 0 m
29  & SGR: SELECT GRAPHIC RENDITION
30  " Clear graphic rendition to defaults.
31  | there, world|
32  . BS/^H BS/^H BS/^H BS/^H BS/^H
33  |earth|.
34
35The accompanying program `reseq' may then be used to reverse this
36translated output back into its original form, if desired.
37
38
39See the INSTALL file for information on how to build and install this
40program.
41
42Please report all bugs to bug-teseq@gnu.org.
43
44Teseq has no requirements beyond a normal Unix build environment.
45
46Teseq ships with a companion program, Reseq, which translates the
47output from Teseq back into its original source form.  Reseq is written
48in the Perl programming language, and so requires perl in order to
49run.
50
51Teseq also ships with a suite of regression tests. Some of these are
52written in relatively portable POSIX sh; some others require the Check
53test library, available at http://check.sourceforge.net/.
54
55If changes are made to the Check-based test suite sources (*.cm files),
56the Checkmk processor, available at
57http://micah.cowan.name/projects/checkmk/, will be required to generate
58the tests. At some point in the near future, Checkmk will be shipped as
59part of Check, and will not need to be obtained separately.
60
61GNU Teseq is free software. See the file COPYING for copying conditions.
62