Browse Source

CodingGuidelines: give an example for case/esac statement

Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Junio C Hamano 11 years ago
parent
commit
79fc3ca123
  1. 12
      Documentation/CodingGuidelines

12
Documentation/CodingGuidelines

@ -42,7 +42,17 @@ For shell scripts specifically (not exhaustive): @@ -42,7 +42,17 @@ For shell scripts specifically (not exhaustive):

- We use tabs for indentation.

- Case arms are indented at the same depth as case and esac lines.
- Case arms are indented at the same depth as case and esac lines,
like this:

case "$variable" in
pattern1)
do this
;;
pattern2)
do that
;;
esac

- Redirection operators should be written with space before, but no
space after them. In other words, write 'echo test >"$file"'

Loading…
Cancel
Save