gpt4 book ai didi

perl - 在 Perl 中尝试/捕捉键盘中断?

转载 作者:行者123 更新时间:2023-12-01 23:14:04 25 4
gpt4 key购买 nike

如何在 Perl 中捕获键盘中断?

while(1) {
try {
print 1;
}
catch KeyboardInterrupt {
print 2;
}
}

最佳答案

您似乎在尝试在这里编写 Python。

“键盘中断”,很可能意味着 SIGINT。您可以使用 %SIG 哈希处理信号。例如:

$SIG{INT} = sub { print "Received SIGINT\n" };

关于perl - 在 Perl 中尝试/捕捉键盘中断?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11562950/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com