summaryrefslogtreecommitdiffstats
path: root/contrib/p910nd-0.8/banner.pl
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/p910nd-0.8/banner.pl')
-rwxr-xr-xcontrib/p910nd-0.8/banner.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/contrib/p910nd-0.8/banner.pl b/contrib/p910nd-0.8/banner.pl
new file mode 100755
index 00000000..5a238c80
--- /dev/null
+++ b/contrib/p910nd-0.8/banner.pl
@@ -0,0 +1,9 @@
+#!/usr/bin/perl
+while (1)
+{
+ exit 0 if read(STDIN,$c,1) == 0;
+ last if ($cl eq "\031" && $c eq "\001");
+ $cl = $c;
+}
+kill 'STOP',$$;
+exit 0