1(
2# LINT: inner "EOF" not misintrepreted as closing INPUT_END here-doc
3cat <<-\INPUT_END &&
4fish are mice
5but geese go slow
6data <<EOF
7perl is lerp
8and nothing else
9EOF
10toink
11INPUT_END
1213
# LINT: same but missing "&&"
14cat <<-\EOT
15text goes here
16data <<EOF
17data goes here
18EOF
19more test here
20EOT
2122
foobar
23)