From 4e7e7b85a7fc862f70dd4aed74978bc9441d642f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Fri, 7 Feb 2025 16:02:50 +0100 Subject: [PATCH] notes: add small signal handling section I noticed a small oddity in handling, so I took a note --- NOTES.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/NOTES.md b/NOTES.md index 6041f6c..d52c450 100644 --- a/NOTES.md +++ b/NOTES.md @@ -312,6 +312,13 @@ here-document are subjected to parameter expansion, command substitution, and arithmetic expansion, the character sequence \newline is ignored, and ‘\’ must be used to quote the characters ‘\’, ‘$’, and ‘`’. +## Signal handling + +cf. 6.12 Shell Compatibility Mode => compat32 + +interrupting a command list such as "a; b; c" causes the execution of the entire +list to be aborted. + ## Definitions cf. [Bash Reference Manual](https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html#Definitions) cf. 2 Definitions