mirror of
https://github.com/ipxe/ipxe
synced 2025-12-10 13:32:20 +03:00
10 lines
140 B
Perl
10 lines
140 B
Perl
|
|
#!/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
|