Unable to trap SIGINT signal in a background shell

Per your note:

Signals ignored upon entry to the shell cannot be trapped or reset.

I have noticed that ZSH does not ignore the signals sent back and forth between parent and child process, but bash does. Here's the question I posted myself:

Trapping CHLD signal - ZSH works but ksh/bash/sh don't?


The bash manpage on OSX (but it should be the same in other versions) has this to say about signal handling:

Non-builtin commands run by bash have signal handlers set to the values inherited by the shell from its parent. When job control is not in effect, asynchronous commands ignore SIGINT and SIGQUIT in addition to these inherited handlers.

and further on, under the trap command:

Signals ignored upon entry to the shell cannot be trapped or reset.

Since scripts don't use job control by default, this means the case you're talking about.