Comments
#
# Comment above a block consisting of 4 or more lines
#
if some condition; then
line1
line2
fi
# Comment above a block consisting of 3 lines of less
if some condition; then
line
fi
some condition && foo=bar # Comment#
# Multi-line comment above a block consisting of 4 or more lines. Lines break
# at column-80 (which should never contain any character).
#
if some condition; then
line1
line2
fi
# Multi-line comment above a block consisting of 3 lines or less. Lines break
# at column-80 (which should never contain any character).
if some condition; then
line
fi
some condition && foo=bar # Multi-line comment for a single line. Line breaks
# at column-80 (which should never contain any character).Last updated