Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 1
    Not really, no. I can send TSTP and CONT to processes. See Why did my trap not trigger? Commented Jul 19, 2023 at 22:55
  • That's a slightly different issue: you can send signals from another terminal, and they will get deferred until the system sees fit to pass them to the process. My point is that Bash Ctrl-Z itself stops the process indefinitely: a stopped process cannot receive any signals. It cannot even be killed by SIGTERM until it is also restarted by Bash job control. It cannot be resumed by Ctrl-Q, but (special case) it can be resumed by SIGCONT. Commented Jul 20, 2023 at 9:07