blob: dc4ce37cb5188a63cf3a831a16d21363cfffd3f2 [file] [log] [blame]
Eric Sunshine878f9882018-07-11 02:46:33 -04001#------------------------------------------------------------------------------
2# Detect broken &&-chains in tests.
3#
4# At present, only &&-chains in subshells are examined by this linter;
5# top-level &&-chains are instead checked directly by the test framework. Like
6# the top-level &&-chain linter, the subshell linter (intentionally) does not
7# check &&-chains within {...} blocks.
8#
9# Checking for &&-chain breakage is done line-by-line by pure textual
10# inspection.
11#
12# Incomplete lines (those ending with "\") are stitched together with following
13# lines to simplify processing, particularly of "one-liner" statements.
14# Top-level here-docs are swallowed to avoid false positives within the
15# here-doc body, although the statement to which the here-doc is attached is
16# retained.
17#
18# Heuristics are used to detect end-of-subshell when the closing ")" is cuddled
19# with the final subshell statement on the same line:
20#
21# (cd foo &&
22# bar)
23#
24# in order to avoid misinterpreting the ")" in constructs such as "x=$(...)"
25# and "case $x in *)" as ending the subshell.
26#
Eric Sunshine0d713172021-12-13 01:30:53 -050027# Lines missing a final "&&" are flagged with "?!AMP?!", as are lines which
28# chain commands with ";" internally rather than "&&". A line may be flagged
29# for both violations.
Eric Sunshine878f9882018-07-11 02:46:33 -040030#
31# Detection of a missing &&-link in a multi-line subshell is complicated by the
32# fact that the last statement before the closing ")" must not end with "&&".
33# Since processing is line-by-line, it is not known whether a missing "&&" is
34# legitimate or not until the _next_ line is seen. To accommodate this, within
35# multi-line subshells, each line is stored in sed's "hold" area until after
36# the next line is seen and processed. If the next line is a stand-alone ")",
37# then a missing "&&" on the previous line is legitimate; otherwise a missing
38# "&&" is a break in the &&-chain.
39#
40# (
41# cd foo &&
42# bar
43# )
44#
45# In practical terms, when "bar" is encountered, it is flagged with "?!AMP?!",
46# but when the stand-alone ")" line is seen which closes the subshell, the
47# "?!AMP?!" violation is removed from the "bar" line (retrieved from the "hold"
48# area) since the final statement of a subshell must not end with "&&". The
49# final line of a subshell may still break the &&-chain by using ";" internally
Eric Sunshine0d713172021-12-13 01:30:53 -050050# to chain commands together rather than "&&", but an internal "?!AMP?!" is
51# never removed from a line even though a line-ending "?!AMP?!" might be.
Eric Sunshine878f9882018-07-11 02:46:33 -040052#
53# Care is taken to recognize the last _statement_ of a multi-line subshell, not
54# necessarily the last textual _line_ within the subshell, since &&-chaining
55# applies to statements, not to lines. Consequently, blank lines, comment
56# lines, and here-docs are swallowed (but not the command to which the here-doc
57# is attached), leaving the last statement in the "hold" area, not the last
58# line, thus simplifying &&-link checking.
59#
60# The final statement before "done" in for- and while-loops, and before "elif",
61# "else", and "fi" in if-then-else likewise must not end with "&&", thus
62# receives similar treatment.
63#
Eric Sunshinec2c29cc2018-08-13 04:47:34 -040064# Swallowing here-docs with arbitrary tags requires a bit of finesse. When a
Eric Sunshine34ba05c2021-12-13 01:30:57 -050065# line such as "cat <<EOF" is seen, the here-doc tag is copied to the front of
66# the line enclosed in angle brackets as a sentinel, giving "<EOF>cat <<EOF".
Eric Sunshinec2c29cc2018-08-13 04:47:34 -040067# As each subsequent line is read, it is appended to the target line and a
68# (whitespace-loose) back-reference match /^<(.*)>\n\1$/ is attempted to see if
69# the content inside "<...>" matches the entirety of the newly-read line. For
70# instance, if the next line read is "some data", when concatenated with the
Eric Sunshine34ba05c2021-12-13 01:30:57 -050071# target line, it becomes "<EOF>cat <<EOF\nsome data", and a match is attempted
Eric Sunshinec2c29cc2018-08-13 04:47:34 -040072# to see if "EOF" matches "some data". Since it doesn't, the next line is
73# attempted. When a line consisting of only "EOF" (and possible whitespace) is
Eric Sunshine34ba05c2021-12-13 01:30:57 -050074# encountered, it is appended to the target line giving "<EOF>cat <<EOF\nEOF",
Eric Sunshinec2c29cc2018-08-13 04:47:34 -040075# in which case the "EOF" inside "<...>" does match the text following the
76# newline, thus the closing here-doc tag has been found. The closing tag line
77# and the "<...>" prefix on the target line are then discarded, leaving just
Eric Sunshine34ba05c2021-12-13 01:30:57 -050078# the target line "cat <<EOF".
Eric Sunshine878f9882018-07-11 02:46:33 -040079#------------------------------------------------------------------------------
80
81# incomplete line -- slurp up next line
82:squash
83/\\$/ {
Eric Sunshineace64e52018-07-31 01:03:20 -040084 N
85 s/\\\n//
86 bsquash
Eric Sunshine878f9882018-07-11 02:46:33 -040087}
88
89# here-doc -- swallow it to avoid false hits within its body (but keep the
90# command to which it was attached)
Eric Sunshine2d536142021-12-13 01:30:55 -050091/<<-*[ ]*[\\'"]*[A-Za-z0-9_]/ {
Eric Sunshine22597af2021-12-13 01:30:56 -050092 /"[^"]*<<[^"]*"/bnotdoc
Eric Sunshine34ba05c2021-12-13 01:30:57 -050093 s/^\(.*<<-*[ ]*\)[\\'"]*\([A-Za-z0-9_][A-Za-z0-9_]*\)['"]*/<\2>\1\2/
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +000094 :hered
Eric Sunshine878f9882018-07-11 02:46:33 -040095 N
Eric Sunshinec2c29cc2018-08-13 04:47:34 -040096 /^<\([^>]*\)>.*\n[ ]*\1[ ]*$/!{
97 s/\n.*$//
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +000098 bhered
Eric Sunshinec2c29cc2018-08-13 04:47:34 -040099 }
100 s/^<[^>]*>//
101 s/\n.*$//
Eric Sunshine878f9882018-07-11 02:46:33 -0400102}
Eric Sunshine22597af2021-12-13 01:30:56 -0500103:notdoc
Eric Sunshine878f9882018-07-11 02:46:33 -0400104
105# one-liner "(...) &&"
106/^[ ]*!*[ ]*(..*)[ ]*&&[ ]*$/boneline
107
108# same as above but without trailing "&&"
109/^[ ]*!*[ ]*(..*)[ ]*$/boneline
110
111# one-liner "(...) >x" (or "2>x" or "<x" or "|x" or "&"
112/^[ ]*!*[ ]*(..*)[ ]*[0-9]*[<>|&]/boneline
113
114# multi-line "(...\n...)"
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000115/^[ ]*(/bsubsh
Eric Sunshine878f9882018-07-11 02:46:33 -0400116
117# innocuous line -- print it and advance to next line
118b
119
120# found one-liner "(...)" -- mark suspect if it uses ";" internally rather than
121# "&&" (but not ";" in a string)
122:oneline
123/;/{
Eric Sunshine0d713172021-12-13 01:30:53 -0500124 /"[^"]*;[^"]*"/!s/;/; ?!AMP?!/
Eric Sunshine878f9882018-07-11 02:46:33 -0400125}
126b
127
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000128:subsh
Ævar Arnfjörð Bjarmason2d9ded82018-08-24 15:20:13 +0000129# bare "(" line? -- stash for later printing
Eric Sunshine878f9882018-07-11 02:46:33 -0400130/^[ ]*([ ]*$/ {
Eric Sunshine878f9882018-07-11 02:46:33 -0400131 h
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000132 bnextln
Eric Sunshine878f9882018-07-11 02:46:33 -0400133}
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500134# "(..." line -- "(" opening subshell cuddled with command; temporarily replace
135# "(" with sentinel "^" and process the line as if "(" had been seen solo on
136# the preceding line; this temporary replacement prevents several rules from
137# accidentally thinking "(" introduces a nested subshell; "^" is changed back
138# to "(" at output time
Eric Sunshine878f9882018-07-11 02:46:33 -0400139x
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500140s/.*//
Eric Sunshine878f9882018-07-11 02:46:33 -0400141x
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500142s/(/^/
Eric Sunshine878f9882018-07-11 02:46:33 -0400143bslurp
144
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000145:nextln
Eric Sunshine878f9882018-07-11 02:46:33 -0400146N
147s/.*\n//
148
149:slurp
150# incomplete line "...\"
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000151/\\$/bicmplte
Eric Sunshine22e3e022018-08-13 04:47:38 -0400152# multi-line quoted string "...\n..."?
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000153/"/bdqstr
Eric Sunshine22e3e022018-08-13 04:47:38 -0400154# multi-line quoted string '...\n...'? (but not contraction in string "it's")
155/'/{
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000156 /"[^'"]*'[^'"]*"/!bsqstr
Eric Sunshine878f9882018-07-11 02:46:33 -0400157}
Eric Sunshined9387112018-08-13 04:47:37 -0400158:folded
Eric Sunshine22597af2021-12-13 01:30:56 -0500159# here-doc -- swallow it (but not "<<" in a string)
160/<<-*[ ]*[\\'"]*[A-Za-z0-9_]/{
161 /"[^"]*<<[^"]*"/!bheredoc
162}
Eric Sunshine878f9882018-07-11 02:46:33 -0400163# comment or empty line -- discard since final non-comment, non-empty line
164# before closing ")", "done", "elsif", "else", or "fi" will need to be
165# re-visited to drop "suspect" marking since final line of those constructs
166# legitimately lacks "&&", so "suspect" mark must be removed
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000167/^[ ]*#/bnextln
168/^[ ]*$/bnextln
Eric Sunshine878f9882018-07-11 02:46:33 -0400169# in-line comment -- strip it (but not "#" in a string, Bash ${#...} array
170# length, or Perforce "//depot/path#42" revision in filespec)
171/[ ]#/{
172 /"[^"]*#[^"]*"/!s/[ ]#.*$//
173}
174# one-liner "case ... esac"
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500175/^[ ^]*case[ ]*..*esac/bchkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400176# multi-line "case ... esac"
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500177/^[ ^]*case[ ]..*[ ]in/bcase
Eric Sunshine878f9882018-07-11 02:46:33 -0400178# multi-line "for ... done" or "while ... done"
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500179/^[ ^]*for[ ]..*[ ]in/bcont
180/^[ ^]*while[ ]/bcont
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000181/^[ ]*do[ ]/bcont
182/^[ ]*do[ ]*$/bcont
183/;[ ]*do/bcont
Eric Sunshine878f9882018-07-11 02:46:33 -0400184/^[ ]*done[ ]*&&[ ]*$/bdone
185/^[ ]*done[ ]*$/bdone
186/^[ ]*done[ ]*[<>|]/bdone
187/^[ ]*done[ ]*)/bdone
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000188/||[ ]*exit[ ]/bcont
189/||[ ]*exit[ ]*$/bcont
Eric Sunshine878f9882018-07-11 02:46:33 -0400190# multi-line "if...elsif...else...fi"
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500191/^[ ^]*if[ ]/bcont
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000192/^[ ]*then[ ]/bcont
193/^[ ]*then[ ]*$/bcont
194/;[ ]*then/bcont
Eric Sunshine878f9882018-07-11 02:46:33 -0400195/^[ ]*elif[ ]/belse
196/^[ ]*elif[ ]*$/belse
197/^[ ]*else[ ]/belse
198/^[ ]*else[ ]*$/belse
199/^[ ]*fi[ ]*&&[ ]*$/bdone
200/^[ ]*fi[ ]*$/bdone
201/^[ ]*fi[ ]*[<>|]/bdone
202/^[ ]*fi[ ]*)/bdone
203# nested one-liner "(...) &&"
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500204/^[ ^]*(.*)[ ]*&&[ ]*$/bchkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400205# nested one-liner "(...)"
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500206/^[ ^]*(.*)[ ]*$/bchkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400207# nested one-liner "(...) >x" (or "2>x" or "<x" or "|x")
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500208/^[ ^]*(.*)[ ]*[0-9]*[<>|]/bchkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400209# nested multi-line "(...\n...)"
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500210/^[ ^]*(/bnest
Eric Sunshine878f9882018-07-11 02:46:33 -0400211# multi-line "{...\n...}"
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500212/^[ ^]*{/bblock
Eric Sunshine878f9882018-07-11 02:46:33 -0400213# closing ")" on own line -- exit subshell
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000214/^[ ]*)/bclssolo
Eric Sunshine878f9882018-07-11 02:46:33 -0400215# "$((...))" -- arithmetic expansion; not closing ")"
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000216/\$(([^)][^)]*))[^)]*$/bchkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400217# "$(...)" -- command substitution; not closing ")"
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000218/\$([^)][^)]*)[^)]*$/bchkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400219# multi-line "$(...\n...)" -- command substitution; treat as nested subshell
Eric Sunshine06fc5c92018-08-13 04:47:36 -0400220/\$([^)]*$/bnest
Eric Sunshine878f9882018-07-11 02:46:33 -0400221# "=(...)" -- Bash array assignment; not closing ")"
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000222/=(/bchkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400223# closing "...) &&"
224/)[ ]*&&[ ]*$/bclose
225# closing "...)"
226/)[ ]*$/bclose
227# closing "...) >x" (or "2>x" or "<x" or "|x")
228/)[ ]*[<>|]/bclose
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000229:chkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400230# mark suspect if line uses ";" internally rather than "&&" (but not ";" in a
231# string and not ";;" in one-liner "case...esac")
232/;/{
233 /;;/!{
Eric Sunshine0d713172021-12-13 01:30:53 -0500234 /"[^"]*;[^"]*"/!s/;/; ?!AMP?!/
Eric Sunshine878f9882018-07-11 02:46:33 -0400235 }
236}
237# line ends with pipe "...|" -- valid; not missing "&&"
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000238/|[ ]*$/bcont
Eric Sunshine878f9882018-07-11 02:46:33 -0400239# missing end-of-line "&&" -- mark suspect
Eric Sunshinedb8c7a12021-12-13 01:30:50 -0500240/&&[ ]*$/!s/$/ ?!AMP?!/
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000241:cont
Eric Sunshine878f9882018-07-11 02:46:33 -0400242# retrieve and print previous line
243x
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500244s/^\([ ]*\)^/\1(/
Eric Sunshine34ba05c2021-12-13 01:30:57 -0500245s/?!HERE?!/<</g
Eric Sunshine878f9882018-07-11 02:46:33 -0400246n
247bslurp
248
249# found incomplete line "...\" -- slurp up next line
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000250:icmplte
Eric Sunshine878f9882018-07-11 02:46:33 -0400251N
252s/\\\n//
253bslurp
254
Eric Sunshine22e3e022018-08-13 04:47:38 -0400255# check for multi-line double-quoted string "...\n..." -- fold to one line
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000256:dqstr
Eric Sunshine22e3e022018-08-13 04:47:38 -0400257# remove all quote pairs
258s/"\([^"]*\)"/@!\1@!/g
259# done if no dangling quote
260/"/!bdqdone
261# otherwise, slurp next line and try again
Eric Sunshine878f9882018-07-11 02:46:33 -0400262N
263s/\n//
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000264bdqstr
Eric Sunshine22e3e022018-08-13 04:47:38 -0400265:dqdone
266s/@!/"/g
Eric Sunshined9387112018-08-13 04:47:37 -0400267bfolded
Eric Sunshine878f9882018-07-11 02:46:33 -0400268
Eric Sunshine22e3e022018-08-13 04:47:38 -0400269# check for multi-line single-quoted string '...\n...' -- fold to one line
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000270:sqstr
Eric Sunshine22e3e022018-08-13 04:47:38 -0400271# remove all quote pairs
272s/'\([^']*\)'/@!\1@!/g
273# done if no dangling quote
274/'/!bsqdone
275# otherwise, slurp next line and try again
Eric Sunshine878f9882018-07-11 02:46:33 -0400276N
277s/\n//
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000278bsqstr
Eric Sunshine22e3e022018-08-13 04:47:38 -0400279:sqdone
280s/@!/'/g
Eric Sunshined9387112018-08-13 04:47:37 -0400281bfolded
Eric Sunshine878f9882018-07-11 02:46:33 -0400282
283# found here-doc -- swallow it to avoid false hits within its body (but keep
Eric Sunshinec2c29cc2018-08-13 04:47:34 -0400284# the command to which it was attached)
Eric Sunshine878f9882018-07-11 02:46:33 -0400285:heredoc
Eric Sunshine34ba05c2021-12-13 01:30:57 -0500286s/^\(.*\)<<\(-*[ ]*\)[\\'"]*\([A-Za-z0-9_][A-Za-z0-9_]*\)['"]*/<\3>\1?!HERE?!\2\3/
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000287:hdocsub
Eric Sunshine878f9882018-07-11 02:46:33 -0400288N
Eric Sunshinec2c29cc2018-08-13 04:47:34 -0400289/^<\([^>]*\)>.*\n[ ]*\1[ ]*$/!{
290 s/\n.*$//
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000291 bhdocsub
Eric Sunshinec2c29cc2018-08-13 04:47:34 -0400292}
293s/^<[^>]*>//
Eric Sunshine878f9882018-07-11 02:46:33 -0400294s/\n.*$//
Eric Sunshined9387112018-08-13 04:47:37 -0400295bfolded
Eric Sunshine878f9882018-07-11 02:46:33 -0400296
297# found "case ... in" -- pass through untouched
298:case
299x
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500300s/^\([ ]*\)^/\1(/
Eric Sunshine34ba05c2021-12-13 01:30:57 -0500301s/?!HERE?!/<</g
Eric Sunshine878f9882018-07-11 02:46:33 -0400302n
Eric Sunshine31da22d2021-12-13 01:30:58 -0500303:cascom
304/^[ ]*#/{
305 N
306 s/.*\n//
307 bcascom
308}
Eric Sunshine878f9882018-07-11 02:46:33 -0400309/^[ ]*esac/bslurp
310bcase
311
312# found "else" or "elif" -- drop "suspect" from final line before "else" since
313# that line legitimately lacks "&&"
314:else
315x
Eric Sunshine0d713172021-12-13 01:30:53 -0500316s/\( ?!AMP?!\)* ?!AMP?!$//
Eric Sunshine878f9882018-07-11 02:46:33 -0400317x
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000318bcont
Eric Sunshine878f9882018-07-11 02:46:33 -0400319
320# found "done" closing for-loop or while-loop, or "fi" closing if-then -- drop
321# "suspect" from final contained line since that line legitimately lacks "&&"
322:done
323x
Eric Sunshine0d713172021-12-13 01:30:53 -0500324s/\( ?!AMP?!\)* ?!AMP?!$//
Eric Sunshine878f9882018-07-11 02:46:33 -0400325x
326# is 'done' or 'fi' cuddled with ")" to close subshell?
327/done.*)/bclose
328/fi.*)/bclose
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000329bchkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400330
331# found nested multi-line "(...\n...)" -- pass through untouched
332:nest
333x
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000334:nstslrp
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500335s/^\([ ]*\)^/\1(/
Eric Sunshine34ba05c2021-12-13 01:30:57 -0500336s/?!HERE?!/<</g
Eric Sunshine878f9882018-07-11 02:46:33 -0400337n
Eric Sunshine31da22d2021-12-13 01:30:58 -0500338:nstcom
339# comment -- not closing ")" if in comment
340/^[ ]*#/{
341 N
342 s/.*\n//
343 bnstcom
344}
Eric Sunshine878f9882018-07-11 02:46:33 -0400345# closing ")" on own line -- stop nested slurp
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000346/^[ ]*)/bnstcl
Eric Sunshine878f9882018-07-11 02:46:33 -0400347# "$((...))" -- arithmetic expansion; not closing ")"
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000348/\$(([^)][^)]*))[^)]*$/bnstcnt
Eric Sunshine878f9882018-07-11 02:46:33 -0400349# "$(...)" -- command substitution; not closing ")"
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000350/\$([^)][^)]*)[^)]*$/bnstcnt
Eric Sunshine878f9882018-07-11 02:46:33 -0400351# closing "...)" -- stop nested slurp
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000352/)/bnstcl
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000353:nstcnt
Eric Sunshine878f9882018-07-11 02:46:33 -0400354x
Kyohei Kadotab3b753b2020-09-10 02:17:41 +0000355bnstslrp
356:nstcl
Eric Sunshine878f9882018-07-11 02:46:33 -0400357# is it "))" which closes nested and parent subshells?
358/)[ ]*)/bslurp
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000359bchkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400360
361# found multi-line "{...\n...}" block -- pass through untouched
362:block
363x
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500364s/^\([ ]*\)^/\1(/
Eric Sunshine34ba05c2021-12-13 01:30:57 -0500365s/?!HERE?!/<</g
Eric Sunshine878f9882018-07-11 02:46:33 -0400366n
Eric Sunshine31da22d2021-12-13 01:30:58 -0500367:blkcom
368/^[ ]*#/{
369 N
370 s/.*\n//
371 bblkcom
372}
Eric Sunshine878f9882018-07-11 02:46:33 -0400373# closing "}" -- stop block slurp
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000374/}/bchkchn
Eric Sunshine878f9882018-07-11 02:46:33 -0400375bblock
376
377# found closing ")" on own line -- drop "suspect" from final line of subshell
378# since that line legitimately lacks "&&" and exit subshell loop
Ævar Arnfjörð Bjarmasona3c4c882018-08-24 15:20:14 +0000379:clssolo
Eric Sunshine878f9882018-07-11 02:46:33 -0400380x
Eric Sunshine0d713172021-12-13 01:30:53 -0500381s/\( ?!AMP?!\)* ?!AMP?!$//
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500382s/^\([ ]*\)^/\1(/
Eric Sunshine34ba05c2021-12-13 01:30:57 -0500383s/?!HERE?!/<</g
Eric Sunshine878f9882018-07-11 02:46:33 -0400384p
385x
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500386s/^\([ ]*\)^/\1(/
Eric Sunshine34ba05c2021-12-13 01:30:57 -0500387s/?!HERE?!/<</g
Eric Sunshine878f9882018-07-11 02:46:33 -0400388b
389
390# found closing "...)" -- exit subshell loop
391:close
392x
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500393s/^\([ ]*\)^/\1(/
Eric Sunshine34ba05c2021-12-13 01:30:57 -0500394s/?!HERE?!/<</g
Eric Sunshine878f9882018-07-11 02:46:33 -0400395p
396x
Eric Sunshined73f5cf2021-12-13 01:30:59 -0500397s/^\([ ]*\)^/\1(/
Eric Sunshine34ba05c2021-12-13 01:30:57 -0500398s/?!HERE?!/<</g
Eric Sunshine878f9882018-07-11 02:46:33 -0400399b