git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] CodingGuidelines: Add a note about spaces after redirection
@ 2012-02-24 23:12 Tim Henigan
  2012-02-24 23:12 ` [PATCH v2 2/2] CodingGuidelines: Add note forbidding use of 'which' in shell scripts Tim Henigan
  2012-02-27 20:55 ` [PATCH v2 1/2] CodingGuidelines: Add a note about spaces after redirection Junio C Hamano
  0 siblings, 2 replies; 3+ messages in thread
From: Tim Henigan @ 2012-02-24 23:12 UTC (permalink / raw)
  To: git, gitster; +Cc: tim.henigan

During code review of some patches, it was noted that redirection operators
should have space before, but no space after them.

Signed-off-by: Tim Henigan <tim.henigan@gmail.com>
---

Updated to include double-quotes around redirection target and also
document why they are needed.


 Documentation/CodingGuidelines |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/Documentation/CodingGuidelines b/Documentation/CodingGuidelines
index 4830086..5a190b9 100644
--- a/Documentation/CodingGuidelines
+++ b/Documentation/CodingGuidelines
@@ -35,6 +35,16 @@ For shell scripts specifically (not exhaustive):
 
  - Case arms are indented at the same depth as case and esac lines.
 
+ - Redirection operators should be written with space before, but
+   no space after them.  For example:
+      'echo test >"$file"'  is preferred over
+      'echo test > "$file"'
+
+   Note that even though it is not required by POSIX to double-
+   quote the redirection target in a variable (as shown above),
+   our code does so because some versions of bash issue a warning
+   without them.
+
  - We prefer $( ... ) for command substitution; unlike ``, it
    properly nests.  It should have been the way Bourne spelled
    it from day one, but unfortunately isn't.
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-02-27 20:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-24 23:12 [PATCH v2 1/2] CodingGuidelines: Add a note about spaces after redirection Tim Henigan
2012-02-24 23:12 ` [PATCH v2 2/2] CodingGuidelines: Add note forbidding use of 'which' in shell scripts Tim Henigan
2012-02-27 20:55 ` [PATCH v2 1/2] CodingGuidelines: Add a note about spaces after redirection Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).