1(
2# LINT: stitch together incomplete \-ending lines
3# LINT: swallow here-doc to avoid false positives in content
4echo wobba \
5gorgo snoot \
6wafta snurb <<-EOF &&
7quoth the raven,
8nevermore...
9EOF
1011
# LINT: missing "&&" on 'cat'
12cat <<EOF >bip
13fish fly high
14EOF
1516
# LINT: swallow here-doc (EOF is last line of subshell)
17echo <<-\EOF >bop
18gomez
19morticia
20wednesday
21pugsly
22EOF
23)