]> git.sesse.net Git - remoteglot/commitdiff
Add the historic text.pl, so we can delete it right afterwards.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 24 Nov 2014 20:24:29 +0000 (21:24 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 24 Nov 2014 20:24:29 +0000 (21:24 +0100)
www/text.pl [new file with mode: 0755]

diff --git a/www/text.pl b/www/text.pl
new file mode 100755 (executable)
index 0000000..9319e56
--- /dev/null
@@ -0,0 +1,16 @@
+#! /usr/bin/perl
+use CGI;
+print CGI->header(-type=>'text/plain', -refresh=>'5; http://analysis.sesse.net/text.pl', -expires=>'+5s');
+# print CGI->header(-type=>'text/plain');
+open(my $fh, "tail -100 /home/remoteglot/log.txt |");
+my @lines = ();
+while (<$fh>) {
+       s/.*H.*2J.*Analysis/Analysis/;
+       if (/^Analysis/) { @lines = (); }
+       push @lines, $_;
+}
+print join('', @lines);
+#system("tail -100 /home/remoteglot/log.txt | grep -A 8 Analysis | sed 's/^.*Analysis/Analysis/'");
+if (-r "/srv/analysis.sesse.net/complete_analysis.txt") {
+#      system("cat /srv/analysis.sesse.net/complete_analysis.txt");
+}