summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ansi2html20
1 files changed, 0 insertions, 20 deletions
diff --git a/scripts/ansi2html b/scripts/ansi2html
deleted file mode 100755
index e33e24630..000000000
--- a/scripts/ansi2html
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/perl
-use strict;
-use HTML::FromANSI ();
-
-my $h = HTML::FromANSI->new(
- fill_cols => 0,
- font_face => "",
- style => "",
- tt => 0
-);
-
-open IN, "<", $ARGV[0] or die "cannot read $ARGV[0]: $!";
-
-$h->add_text(<IN>);
-my $html = $h->html;
-$html =~ s/background: black; //g;
-$html =~ s/color: white; /color: black /g;
-$html =~ s/<br>/\n/g;
-
-print $html;