]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
docs/CODING_STYLE: add sentence about redirection operators 26320/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sun, 5 Feb 2023 21:04:45 +0000 (22:04 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 6 Feb 2023 08:19:04 +0000 (09:19 +0100)
docs/CODING_STYLE.md

index 516207071bbc88b7f06a01da484050963619ea48..9a35583536862ea9c209c194922dcb4a6fcd34c5 100644 (file)
@@ -122,7 +122,8 @@ SPDX-License-Identifier: LGPL-2.1-or-later
 
 - Empty lines to separate code blocks are a good thing, please add them
   abundantly. However, please stick to one at a time, i.e. multiple empty lines
-  immediately following each other are not OK. Also, we try to keep function calls and their immediate error handling together. Hence:
+  immediately following each other are not OK. Also, we try to keep function
+  calls and their immediate error handling together. Hence:
 
   ```c
   /* → empty line here is good */
@@ -131,7 +132,9 @@ SPDX-License-Identifier: LGPL-2.1-or-later
   if (r < 0)
           return log_error_errno(r, "Some function failed: %m");
   /* → empty line here is good */
-  ```
+
+- In shell scripts, do not use whitespace after the redirection operator
+  (`>some/file` instead of `> some/file`, `<<EOF` instead of `<< EOF`).
 
 ## Code Organization and Semantics