mirror of
https://github.com/xcat2/xNBA.git
synced 2024-11-22 09:31:51 +00:00
10 lines
140 B
Perl
Executable File
10 lines
140 B
Perl
Executable File
#!/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
|