Bash

是否有一個標準命令總是帶有信號退出?

  • October 10, 2020

這個問題非常類似於Is there a standard command that always exits with a failure?

SIGTERM我正在編寫一些程式碼,我需要測試它是否在子程序因信號(例如or )而退出時優雅地處理子程序SIGINT

有什麼簡潔的東西我可以稱之為喜歡truefalse用信號來實現嗎?

好的 :-)

您想要的腳本如下所示:

#! /bin/sh

kill $$

kill這依賴於內置命令而不是程序這一事實/bin/kill

引用自:https://unix.stackexchange.com/questions/613792