rable 0.1.13

A Rust implementation of the Parable bash parser — complete GNU Bash 5.3-compatible parsing with Python bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
# Iteration 14: Here Documents

# === Basic here documents ===

=== simple here document
cat <<EOF
hello world
EOF
---
(command (word "cat") (redirect "<<" "hello world
"))
---


=== here document with multiple lines
cat <<END
line one
line two
line three
END
---
(command (word "cat") (redirect "<<" "line one
line two
line three
"))
---


=== here document empty
cat <<EOF
EOF
---
(command (word "cat") (redirect "<<" ""))
---


=== here document single line no newline at end
cat <<EOF
hello
EOF
---
(command (word "cat") (redirect "<<" "hello
"))
---


# === Different delimiters ===

=== delimiter with underscore
cat <<END_OF_DATA
content
END_OF_DATA
---
(command (word "cat") (redirect "<<" "content
"))
---


=== delimiter all caps
cat <<MARKER
text
MARKER
---
(command (word "cat") (redirect "<<" "text
"))
---


=== delimiter lowercase
cat <<end
text
end
---
(command (word "cat") (redirect "<<" "text
"))
---


=== delimiter mixed case
cat <<EndMarker
text
EndMarker
---
(command (word "cat") (redirect "<<" "text
"))
---


=== delimiter with numbers
cat <<EOF123
text
EOF123
---
(command (word "cat") (redirect "<<" "text
"))
---


# === Tab stripping with <<- ===

=== heredoc strip tabs
cat <<-EOF
	indented with tab
EOF
---
(command (word "cat") (redirect "<<-" "indented with tab
"))
---


=== heredoc strip tabs multiple lines
cat <<-END
	line one
	line two
END
---
(command (word "cat") (redirect "<<-" "line one
line two
"))
---


=== heredoc strip tabs delimiter indented
cat <<-EOF
	content
	EOF
---
(command (word "cat") (redirect "<<-" "content
"))
---


# === Quoted delimiters (no expansion) ===

=== double quoted delimiter
cat <<"EOF"
$variable not expanded
EOF
---
(command (word "cat") (redirect "<<" "$variable not expanded
"))
---


=== single quoted delimiter
cat <<'EOF'
$variable not expanded
EOF
---
(command (word "cat") (redirect "<<" "$variable not expanded
"))
---


=== escaped delimiter
cat <<\EOF
$variable not expanded
EOF
---
(command (word "cat") (redirect "<<" "$variable not expanded
"))
---


=== partially quoted delimiter
cat <<E"OF"
$variable not expanded
EOF
---
(command (word "cat") (redirect "<<" "$variable not expanded
"))
---


# === Here documents with expansions ===

=== heredoc with variable
cat <<EOF
hello $name
EOF
---
(command (word "cat") (redirect "<<" "hello $name
"))
---


=== heredoc with command substitution
cat <<EOF
today is $(date)
EOF
---
(command (word "cat") (redirect "<<" "today is $(date)
"))
---


=== heredoc with arithmetic
cat <<EOF
result is $((1+2))
EOF
---
(command (word "cat") (redirect "<<" "result is $((1+2))
"))
---


=== heredoc with braced variable
cat <<EOF
value is ${var}
EOF
---
(command (word "cat") (redirect "<<" "value is ${var}
"))
---


# === Here documents in different positions ===

=== heredoc with other redirects
cat <<EOF >output.txt
content
EOF
---
(command (word "cat") (redirect "<<" "content
") (redirect ">" "output.txt"))
---


=== heredoc with fd number
cat 0<<EOF
content
EOF
---
(command (word "cat") (redirect "<<" "content
"))
---


=== heredoc after args
cat -n <<EOF
content
EOF
---
(command (word "cat") (word "-n") (redirect "<<" "content
"))
---


# === Multiple here documents ===

=== two here documents
cat <<EOF1 <<EOF2
first
EOF1
second
EOF2
---
(command (word "cat") (redirect "<<" "first
") (redirect "<<" "second
"))
---


# === Here document in pipelines ===

=== heredoc in pipeline
cat <<EOF | grep hello
hello world
goodbye world
EOF
---
(pipe (command (word "cat") (redirect "<<" "hello world
goodbye world
")) (command (word "grep") (word "hello")))
---


=== heredoc at end of pipeline
echo start | cat <<EOF
middle
EOF
---
(pipe (command (word "echo") (word "start")) (command (word "cat") (redirect "<<" "middle
")))
---


# === Here document in lists ===

=== heredoc with semicolon after
cat <<EOF; echo done
content
EOF
---
(semi (command (word "cat") (redirect "<<" "content
")) (command (word "echo") (word "done")))
---


=== heredoc with and
cat <<EOF && echo success
content
EOF
---
(and (command (word "cat") (redirect "<<" "content
")) (command (word "echo") (word "success")))
---


# === Here strings (<<<) ===

=== simple here string
cat <<<"hello world"
---
(command (word "cat") (redirect "<<<" ""hello world""))
---


=== here string with variable
cat <<<"$name"
---
(command (word "cat") (redirect "<<<" ""$name""))
---


=== here string unquoted
cat <<<hello
---
(command (word "cat") (redirect "<<<" "hello"))
---


# === Edge cases ===

=== heredoc delimiter on same line as content start
cat <<EOF
EOF
---
(command (word "cat") (redirect "<<" ""))
---


=== heredoc with blank lines
cat <<EOF

blank above and below

EOF
---
(command (word "cat") (redirect "<<" "
blank above and below

"))
---


=== heredoc with special characters in content
cat <<EOF
$dollar `backtick` "quotes" 'single'
EOF
---
(command (word "cat") (redirect "<<" "$dollar `backtick` "quotes" 'single'
"))
---


=== heredoc delimiter not at start of line does not end
cat <<EOF
not EOF here
EOF
---
(command (word "cat") (redirect "<<" "not EOF here
"))
---


# === Additional edge cases from research ===

=== heredoc with append redirect
cat <<EOF >>output.txt
content
EOF
---
(command (word "cat") (redirect "<<" "content
") (redirect ">>" "output.txt"))
---


=== heredoc with stderr redirect
cat <<EOF 2>&1
content
EOF
---
(command (word "cat") (redirect "<<" "content
") (redirect ">&" 1))
---


=== heredoc with or operator
cat <<EOF || echo failed
content
EOF
---
(or (command (word "cat") (redirect "<<" "content
")) (command (word "echo") (word "failed")))
---


=== heredoc with background operator
cat <<EOF &
content
EOF
---
(background (command (word "cat") (redirect "<<" "content
")))
---


=== heredoc in while loop body
while true; do cat <<EOF
hello
EOF
done
---
(while (command (word "true")) (command (word "cat") (redirect "<<" "hello
")))
---


=== heredoc in for loop body
for i in 1 2; do cat <<EOF
line
EOF
done
---
(for (word "i") (in (word "1") (word "2")) (command (word "cat") (redirect "<<" "line
")))
---


=== heredoc after if then
if true; then cat <<EOF
content
EOF
fi
---
(if (command (word "true")) (command (word "cat") (redirect "<<" "content
")))
---


=== heredoc with escaped dollar in content
cat <<EOF
price is \$100
EOF
---
(command (word "cat") (redirect "<<" "price is \$100
"))
---


=== heredoc with backslash at end of line
cat <<EOF
line continues\
next part
EOF
---
(command (word "cat") (redirect "<<" "line continuesnext part
"))
---


=== heredoc with only whitespace content
cat <<EOF

EOF
---
(command (word "cat") (redirect "<<" "
"))
---


=== heredoc strip tabs preserves spaces
cat <<-EOF
	tab then spaces
EOF
---
(command (word "cat") (redirect "<<-" "tab then spaces
"))
---


=== heredoc delimiter with hyphen
cat <<END-MARKER
content
END-MARKER
---
(command (word "cat") (redirect "<<" "content
"))
---


=== herestring after file redirect
cat <input.txt <<<"extra"
---
(command (word "cat") (redirect "<" "input.txt") (redirect "<<<" ""extra""))
---


=== heredoc then herestring same command
cat <<EOF <<<"suffix"
prefix
EOF
---
(command (word "cat") (redirect "<<" "prefix
") (redirect "<<<" ""suffix""))
---


=== multiple commands after heredoc
cat <<EOF; echo one; echo two
content
EOF
---
(semi (semi (command (word "cat") (redirect "<<" "content
")) (command (word "echo") (word "one"))) (command (word "echo") (word "two")))
---


=== heredoc in subshell
(cat <<EOF)
content
EOF
---
(subshell (command (word "cat") (redirect "<<" "content
")))
---


=== heredoc in brace group
{ cat <<EOF; }
content
EOF
---
(brace-group (command (word "cat") (redirect "<<" "content
")))
---


=== heredoc with double backslash at end of line
cat <<EOF
test\\
next
EOF
---
(command (word "cat") (redirect "<<" "test\\
next
"))
---