Files
konsole/doc/developer/old-documents/VT100/t.pl
Sascha Peilicke 8f573b66f0 Updated README file and moved 'user-doc' and 'developer' documentation into the new folder 'doc'.
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=1117615
2010-04-22 15:59:26 +00:00

18 lines
331 B
Perl
Executable File

#!/usr/bin/perl
# This script is here only as a pattern for maintainance works.
# It has changing contents and is of no use to anyone but me.
$source = "Table.Codes";
open(CODES, $source) || die "cannot open file '" . $source . "'.";
while (<CODES>)
{
if (/^attr/)
{
s/VT100/VT100 ANSI/ if (!/DEC/);
}
print $_;
}