This commit is contained in:
Nick Bebout 2014-05-29 20:56:21 -05:00
parent 428581af1e
commit 459f6a81cb
151 changed files with 10053 additions and 1910 deletions

View file

@ -7,7 +7,8 @@ my $t = Unicode::IMAPUtf7->new();
while (<>) {
chomp ;
push( @result, sprintf( "%33s %s\n", $_, $t->decode($_) ) ) ;
#push( @result, sprintf( "%33s %s\n", $_, $t->decode($_) ) ) ;
push( @result, sprintf( "%s\n", $t->decode($_) ) ) ;
}
print @result ;