我运行了perl -e 'system "timeout -s 9 1 sleep 10"; print $? >> 8;'
,输出为0
。但是其中有If the command times out, and --preserve-status is not set, then exit with status 124.
。
没有KILL信号,输出为124
(perl -e 'system "timeout 1 sleep 10"; print $? >> 8;'
)
为什么SIGKILL结果为0退出状态?