You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|