diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2020-08-18 01:52:17 +0430 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-18 16:58:17 +0200 |
commit | 32bfb485775cd9d36e9057ed0a5c613feed8c156 (patch) | |
tree | eba53f061639c09ca9cbe08192b6a0490b5bd487 /Base/usr | |
parent | 4ee4c94d607270f0c688a6b83e67b3f057cca41a (diff) | |
download | serenity-32bfb485775cd9d36e9057ed0a5c613feed8c156.zip |
Shell: Update manpage about for loop behaviour around signals
Diffstat (limited to 'Base/usr')
-rw-r--r-- | Base/usr/share/man/man5/Shell.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/usr/share/man/man5/Shell.md b/Base/usr/share/man/man5/Shell.md index 3821ceeb4a..175919489c 100644 --- a/Base/usr/share/man/man5/Shell.md +++ b/Base/usr/share/man/man5/Shell.md @@ -169,7 +169,7 @@ The general syntax follows the form `for name in expr { sequence }`, and allows A for-loop evaluates the _sequence_ once per every element in the _expr_, seetting the local variable _name_ to the element being processed. -The Shell shall cancel the for loop if two consecutive commands are interrupted via any of SIGINT (\^C), SIGQUIT (\^\\) or SIGKILL. +The Shell shall cancel the for loop if two consecutive commands are interrupted via SIGINT (\^C), and any other terminating signal aborts the loop entirely. #### Examples ```sh |