2 # echo the line passed to the output decoding certain
3 # "escape" sequences on the way
5 # Copyright (c) 2002 Dirk Koopman G1TLH
10 my ($self, $line) = @_;
12 $line =~ s/\\t/\t/g; # tabs
13 $line =~ s/\\a/\a/g; # beeps
14 my @out = split /\\[n]/, $line;