2015-09-21 22:24:03 +0100, Stephane Chazelas: [...] > If it didn't, we could not use it in scripts of shells that > don't do WCE *but also in non-shell scripts* (perl, python, > ruby...) or non-scripts. [...]
For completeness perl's and python's system() like system(3) ignore SIGINT, so it's a WUNE (wait and unconditionaly not exit). python's subprocess.call() does "IUE" (for "immediate unconditional exit") -- Stephane