我输入help suspend
并得到以下简短说明:
suspend: suspend [-f]
Suspend shell execution.
Suspend the execution of this shell until it receives a SIGCONT signal.
Unless forced, login shells cannot be suspended.
Options:
-f force the suspend, even if the shell is a login shell
Exit Status:
Returns success unless job control is not enabled or an error occurs.
我的理解是:我输入后suspend
终端冻结,甚至strg + c也无法解冻它。但是,当我打开另一个终端并为冻结的终端搜索PID并键入kill -SIGCONT PID-NR
SIGCONT信号时,该信号会发送到冻结的终端并解冻,以使其解冻。
但是,暂停终端的实际目的是什么?每天哪种应用程序很典型?使它成为内置shell的人想到了什么?