summaryrefslogtreecommitdiffstats
path: root/contrib/p910nd-0.8/banner.pl
blob: 5a238c80a46b832485bd155696a5bce419844c1d (plain) (blame)
1
2
3
4
5
6
7
8
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