File: autoreconf.before

package info (click to toggle)
bash 5.0-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 38,540 kB
  • sloc: ansic: 107,425; sh: 7,641; yacc: 5,401; makefile: 4,410; perl: 4,227; asm: 48; awk: 23; sed: 16
file content (1301 lines) | stat: -rw-r--r-- 71,441 bytes parent folder | download | duplicates (4)
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
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
symlink  ./ChangeLog
ab984e7a4e973053040e4ffcb944d2d1  ./variables.c
a8048d34fd07310cf1f5aa4f90f017d2  ./doc/bash.html
fdfa8b97a186efe690e9b45e0c2e127e  ./doc/Makefile.in
b9d73bfa3b6aae9c682a004a77cf0ca8  ./doc/bash.1
d2a953ff45f5b43b7f6487822b349651  ./doc/builtins.0
145318bad462d3949c5810782cb4bbb9  ./doc/version.texi
fdaef4f123a22e5b5fdb7a893656d2d3  ./doc/builtins.ps
2712ed9c024a4def2d96524f639e5fca  ./doc/bashbug.1
e1538438a3542bbc076ed3902cf82788  ./doc/bashref.texi
846697acb9912668a33659a10c5a4ce2  ./doc/INTRO
e0dfe3da32d9080ccd99edbb1f4e9e72  ./doc/rbash.1
fa0991565ca2da0003c7489ce527460d  ./doc/bash.0
5e54a18714eb27c93668f051045a1a49  ./doc/htmlpost.sh
39d2720195aba7869d367bae04c577b6  ./doc/builtins.1
10b9de612d532fdeeb7fe8fcd1435cc6  ./doc/fdl.txt
b0eab40b51f9fd39e0c62f1e2c2dea27  ./doc/rbash.ps
b626f11f160578dae605ec1f604c28ca  ./doc/bash.info
79212bfe6ead71a6890440c6118da314  ./doc/bashref.ps
dd1bc3d50715bdb3154db5ace16d996c  ./doc/bash.pdf
4d927357f6b10330b2b37218c5b75264  ./doc/bashbug.0
e60700357b8c2ef0a072a096119b076e  ./doc/bashref.dvi
82dbfaa3bd6282bec38bbae31e212b57  ./doc/texinfo.tex
85800b0420ab6c93605bd0147b7e2e60  ./doc/bashref.pdf
d8ec3d99045d12d6ad4c2905e1f0b952  ./doc/bashref.info
64f555b42c31637a9ecf44418de31c53  ./doc/bashref.html
43328c6cbc26b7d98e932985e02e6a71  ./doc/bash.ps
f97960baba184e7a721bf23cde04c3ad  ./doc/README
75d46dabee74d6e308b47373cd5602f2  ./doc/infopost.sh
d5b9698f581ca9d37765066177effa74  ./doc/bashbug.ps
31671afd1b008cb6b12ff2221560ab34  ./doc/rbash.0
072910d553f79906db69fa7c0e956bba  ./doc/fdl.texi
938310371752c6942d96ba9247fdf485  ./pcomplete.h
8d36cf739d418f4450bd28a789840f1b  ./hashcmd.h
640541e797d3a4627e31a0a3c84d3282  ./externs.h
b9e99de0292f7b7f5eca674c62067a38  ./y.tab.c
580fa2384ca884bf0cfb14b507b48a6b  ./bashhist.c
c0588e02d21ffd3a3ec6f4cd6ebb49da  ./execute_cmd.c
172188e3a6fc5409d4f113485cc6d79f  ./RBASH
7122cc7a40dee7f0a58b508ba544c269  ./Makefile.in
d3a47c27f28ab0a434470a06c52e7fc9  ./pathnames.h.in
ed47ce2472fa6c6f46c2c58cfa6e7725  ./test.c
f002da3a819cfd05476ff713ddb86240  ./CHANGES
d7babf4417c9bd8ced7899c87e3688e6  ./builtins.h
b390eea0055ed6a89e8bbaad5f52a5ea  ./POSIX
26877cc3df473ee58614b55796b644b8  ./jobs.h
c31da77239cad2d397e2f00f25b6a61c  ./alias.c
819742e3193df6ed5975e0dd80fc8970  ./COMPAT
32152b6bf35827f6e71ec726030c560d  ./siglist.c
639100fb4ef9282a6d7691bbbecdc722  ./sig.c
4cd0d11d28ee1a1efba06fcd97863788  ./config-top.h
d33f92d21c5f0ac1642ad2156c9cc5d0  ./alias.h
6e9b16a1af27731e016423cd4535b5a4  ./make_cmd.c
622450231f2c2a5500a225990705604f  ./unwind_prot.c
8c00452ef1e298846493ec8b239f93e2  ./ABOUT-NLS
c8e8ecb30963bd68ddd93748ff6f2fc4  ./dispose_cmd.h
d196ed78c8dba14e5805c2d9b29e2744  ./shell.h
aae58ac47462e00e61ecb599a952221d  ./siglist.h
80702baa2a5e1a36dea3571cac49f29e  ./builtins/Makefile.in
1eff48e6636a1fcb630083b49cc51b0d  ./builtins/let.def
046bbea1bb0e5fa74b14c81a2c6fa48a  ./builtins/colon.def
a8507c5d630426493ce66b142db04e7d  ./builtins/wait.def
14ce5cda81d9ac78818da34a0dbcc677  ./builtins/caller.def
6116d3293d95d4594b6c83c2d75674d8  ./builtins/common.h
979a0d4607f3f60f6740f882c717ebfa  ./builtins/alias.def
46be778b69a2615754742f51a66adf6c  ./builtins/reserved.def
36e2f271e95b7639eae50bedc2a13df1  ./builtins/getopt.c
90627247b5538800f43a444d9e2a02f5  ./builtins/jobs.def
55c9068a36c008c74d22078a43e91435  ./builtins/eval.def
6feddef5dccdd0d3fd2fed6f2f69268d  ./builtins/inlib.def
8305de2da1f4c375c66fabe283bfd852  ./builtins/return.def
d410c41baa9c7313e07ea89653651277  ./builtins/evalfile.c
ca5bbe92bfb52b5e5324513010e3a4ca  ./builtins/bind.def
326dde5030024c83279921001c4eb636  ./builtins/command.def
a841cdc94e4de199dff2719ddc679e60  ./builtins/pushd.def
ea028e4dc5b06230b34111e89547feb1  ./builtins/suspend.def
1cb4842bfe35411da03b033382f14959  ./builtins/source.def
6ccd473c71b6decb55e0339c01c795c7  ./builtins/exec.def
16697336df52ef6020669f3e4b380e15  ./builtins/fg_bg.def
d4c6b97bcd9907cecf2c1bd8c326de0c  ./builtins/read.def
8f7d4c630f4eef314a747a88c73bc8cc  ./builtins/hash.def
49040e2361b2bd265edf55db036b58fe  ./builtins/mapfile.def
95234a434065fbe519299089ed47835c  ./builtins/shift.def
c32558215ccaad3cf5bd906de44b8d43  ./builtins/help.def
4bee618e23b6785edbd8fff6bb3b68c6  ./builtins/declare.def
7a28e3a102a0d52712202febbc99cfa2  ./builtins/echo.def
19928865f349d1ac01d4f04ffe3debde  ./builtins/history.def
c08d7a5f1a90eecd7213367259f192ea  ./builtins/set.def
2ee74aa26c27b446b784b611240a1d41  ./builtins/enable.def
d8bf5b257ebce5879a39606ae44d320c  ./builtins/bashgetopt.h
bfec0f9a7f4592eeaac1f358a88e17d1  ./builtins/psize.sh
31a60cb08265c9e1cc9c03f5b7ccbdff  ./builtins/bashgetopt.c
9b1860b5adb9fe797e598637a500fdd1  ./builtins/gen-helpfiles.c
dd2aa4c371e04145329d1a3fe56850a7  ./builtins/common.c
9ed7145fe1deae3bddf69d05d2f85cdd  ./builtins/test.def
2a001397b71577652e1ff0dd7414bae2  ./builtins/trap.def
8abd2b2ab15e6cb8a9fb78583e36757b  ./builtins/complete.def
9013df24f36505d6d671882835bb3cca  ./builtins/printf.def
e8ac0429996f6e6e6833a85df0c5f88c  ./builtins/psize.c
a7cfad65230c95d1bdf67128bd03a570  ./builtins/setattr.def
9afdbc9940ffc2e11920aa1a43cca36d  ./builtins/exit.def
ecb0f943e758973c5da26964b7323975  ./builtins/getopts.def
01a43d425d0fb43ebf34c957390a95b5  ./builtins/cd.def
ee9c95ba5c421402bc1caa97c096b507  ./builtins/shopt.def
bf24988b786428f51d5734618f1560f1  ./builtins/times.def
db0f46136154bb1f42aa36bfc25b478c  ./builtins/kill.def
1042ae3e73f3d6405d033d295d973f08  ./builtins/type.def
eebcb50b15e226daaf48cf4e620c4d96  ./builtins/fc.def
8f7a3e35d86127e9d4721cf81e34fb5c  ./builtins/umask.def
daa815cca59cb4869fe5337a5a1c29e6  ./builtins/mkbuiltins.c
2a0a2160a9a2900f73ec90a695339c93  ./builtins/builtin.def
8f36f60d85b699f7162485a0011f4cb1  ./builtins/evalstring.c
105c7812b8237bdc0ec62597f2e92f7a  ./builtins/ulimit.def
e3d0a5ed55f475eaef6e96d6baed8d60  ./builtins/getopt.h
f959829235b07334beaec3141c3cc1fb  ./builtins/break.def
cc55bc662f7fdc6d33489e2ba34c883b  ./INSTALL
75af5e8f73c6a861a1a106f9e18c9b2d  ./dispose_cmd.c
36c2201542d63d35e9ab6ec755e95edd  ./test.h
55598ee205a4cd72eec6d0042e216baf  ./parser.h
7a0ffbf3c2528b4a1313bc88b9a9bea5  ./make_cmd.h
f175076a8c1f769e332f337ddc8b4071  ./sig.h
3af7656ab044ea4445b2d79ca887215e  ./xmalloc.c
970bd634533e952c75db59de4997a3af  ./examples/functions/arrayops.bash
8419b192560031fa4af782142f414d19  ./examples/functions/dirname
48d6c6666fc3dae143fafa264ef3ea17  ./examples/functions/fact
4fb3299b9c1c0065443bb6735b9247e1  ./examples/functions/whence
fd23952f92adc9e4f621283124d4e42b  ./examples/functions/inetaddr
b66d2256006f8176af5f7fc97c61af78  ./examples/functions/shcat
f0736896674608c2ab9d44c8d0b936e1  ./examples/functions/seq
38889bedde618a95cb972c567b40537f  ./examples/functions/kshenv
30475ae08dbd322648983009a3e680a6  ./examples/functions/basename
7817bb007382592e2088f81e16c3817d  ./examples/functions/autoload.v4.t
53d32d4cd1f027ba739b5712ba59026a  ./examples/functions/sort-pos-params
8081bb6e1ca28b95529b0290e78c8dcc  ./examples/functions/external
66891139570c7d7f9f52243c880f23da  ./examples/functions/shcat2
88d83ac48c07e568c30b398d8f9a7de4  ./examples/functions/autoload.v2
7e655bc4ecc874f4b84499cd7250cb73  ./examples/functions/csh-compat
76c6f826cf49808988a1bb4660a55482  ./examples/functions/login
61618bbd1999e303c99b65da265d7f7d  ./examples/functions/ksh-compat-test
bbee162d6d7c90ab2583db8cd83ebf66  ./examples/functions/notify.bash
b66fb988f045aa03c6cee4c5a97fc8d6  ./examples/functions/isvalidip
00076a9fcebc81643073d782d328182b  ./examples/functions/func
0150be613a11b2060f312f8a016b81a9  ./examples/functions/ksh-cd
986edab4118cb47fedd3a21b144ae832  ./examples/functions/substr2
4be22e5475fe871d1685fc344237d0c9  ./examples/functions/fstty
fd96d7206e035de1f5119dbb6f46949c  ./examples/functions/autoload.v4
11c481722ec7ed987de39e3096cc448a  ./examples/functions/substr
03a23de53d2647bddbdad432ed418863  ./examples/functions/autoload
b73ebed3a79a0b53ac799609a0bb93d7  ./examples/functions/inpath
cd149be0c4a983cf0871ca868dec08ea  ./examples/functions/isnum2
39c48771a1a4fbc9ee692b200117989d  ./examples/functions/autoload.v3
dec8b14f112da2772407e8dfae534d72  ./examples/functions/exitstat
33a84a37d8b89534040b7d3b23ea2856  ./examples/functions/array-to-string
b24a911e17c477672b92580522d22527  ./examples/functions/seq2
b3619eca7c07bdfcec49be203e5414c1  ./examples/functions/which
0f557ddffa7282f1ac04d1a5db15dd76  ./examples/functions/dirstack
d9016d72490d4107c767000389046e65  ./examples/functions/array-stuff
7856017c1c998ae66f936468a15c6d75  ./examples/functions/whatis
272d20cfb5ce473da118f03abe5b89ee  ./examples/loadables/hello.c
f5969722be64c01ae1d2cd8f566371be  ./examples/loadables/Makefile.in
5df3b760c6e78f3222e68c03445a9c4a  ./examples/loadables/cat.c
bcfee1a0b34000285247359f03a215fd  ./examples/loadables/sync.c
6614ae525e6be09d290ebfece426c567  ./examples/loadables/stat.c
b99ad6aa6da5671b790d125da2a22f7f  ./examples/loadables/logname.c
c9cee188e53c546a7fe68426e64a73c6  ./examples/loadables/whoami.c
48aa43d4c8d82ccc13de9adaa6499456  ./examples/loadables/fdflags.c
b19a8595e7e981baa8e0e7efce6cc812  ./examples/loadables/rm.c
321acef9034b86e781ce29b803c914e8  ./examples/loadables/Makefile.inc.in
fb752b7aeecf3ac126773c673e7f8e41  ./examples/loadables/tee.c
cc2a66d77be2f5ddf8153de8700953d4  ./examples/loadables/mkdir.c
4ba8bf993993597c1a3355824f4418c0  ./examples/loadables/realpath.c
7b9c9188ea48ece88f070f56b6e567a9  ./examples/loadables/dirname.c
02667770626707d189c2ca759ef7a55f  ./examples/loadables/necho.c
fabfd59f7dd1d5f7025204cbf896de98  ./examples/loadables/printenv.c
cb03b64a6f72774267f0615b03e6c52b  ./examples/loadables/tty.c
85918928162c086edcd54225c6ab9e87  ./examples/loadables/head.c
0a29f0defa6f16c0d8ae0d408a93ab2e  ./examples/loadables/ln.c
9f9eec8ac538fa5a33c68b2c764a3ed6  ./examples/loadables/truefalse.c
0a09afc9887e7fef10b45a56d02171d1  ./examples/loadables/id.c
855fe3989640e455fe8c761e10d3a181  ./examples/loadables/unlink.c
1e229999471458671a9f5aea1583cafd  ./examples/loadables/setpgid.c
f58ce19db41e74735bfc132c68562370  ./examples/loadables/push.c
6354f1f973a739a0e9d979ea57d0a7e9  ./examples/loadables/basename.c
885635ef3f66c0fcfa9c2c309bc806fa  ./examples/loadables/strftime.c
4a45f838985af529c13dc49870a8bcd2  ./examples/loadables/loadables.h
db7be44883297aedbd2627b6419fb988  ./examples/loadables/template.c
2c5945b172353282020fe8a1c09ad052  ./examples/loadables/print.c
726b55d8af8e578754528bdcabf7cfd7  ./examples/loadables/finfo.c
e6ea3ba44a4c07ff9a99c3e92ca118b2  ./examples/loadables/README
511c5c99ad783e9d87c03a5451dab178  ./examples/loadables/pathchk.c
1ba3500d52168412d94ebab0bf883649  ./examples/loadables/rmdir.c
48e2daff5bf70c6059d33cd96ca31032  ./examples/loadables/perl/Makefile.in
91d057b932d91155962b467f2bf85abc  ./examples/loadables/perl/iperl.c
59bf292c4a9dc1a067aa62e7fc1eb048  ./examples/loadables/perl/bperl.c
a4d15dea75fa78744dbed3affd39de13  ./examples/loadables/perl/README
1a842b920b64df3518765cd2ed73fa68  ./examples/loadables/uname.c
60bda8ba7650ea6ee33a0dd359500dcd  ./examples/loadables/sleep.c
b6e683d3ba2fc465bad01b5dd7aebe8c  ./examples/loadables/mypid.c
15300010bd4034de12c3fc4f171692e3  ./examples/bash-completion/bash-completion-2.5.tar.xz
ad9635db6ccc70a8ffc95f4b8f71df1d  ./examples/bash-completion/README
fe268cc8bd762bc225e8cf2210fc859e  ./examples/INDEX.txt
ff32d792be486576f9a62606c762d331  ./examples/startup-files/bash-profile
86017017975b8a11093108830bfe08ad  ./examples/startup-files/Bash_aliases
55763dcc633bb8fe5a9d60386e067b52  ./examples/startup-files/bashrc
d0fc580a63d260f91f2fe6b6d1f1a5c1  ./examples/startup-files/Bash_profile
3cc42a98baae32de6535fa8e8c5cd9ae  ./examples/startup-files/Bashrc.bfox
c089d672ad71591c509c65750a10e413  ./examples/startup-files/README
538b5363a412b46a944ec043c50ca761  ./examples/misc/aliasconv.sh
979091dab5f09717af53477af817e07d  ./examples/misc/cshtobash
ced8155a3bdcfe8da0ac059a4489763e  ./examples/misc/aliasconv.bash
f02f0f74d25c4aecff6df5a34f037820  ./examples/INDEX.html
c0b212aba87640c8e34449a7d642042f  ./examples/scripts/shprompt
dade8b67f8e857b47b0f80dd0f4e5d23  ./examples/scripts/zprintf
3a83cf08424c96d275604059d5fccfc4  ./examples/scripts/center
19caa1fba7a3bfd48eefb68d7ea5a049  ./examples/scripts/cat.sh
e45b3a4cc6eae9e36ecdd66db9dc634e  ./examples/scripts/spin.bash
66648b792ff548a3d3579245d3fd9f93  ./examples/scripts/xterm_title
04f21afef7e45b5992f4c89044887872  ./examples/scripts/inpath
51700209d84f25b1bae2d84b0206348a  ./examples/complete/complete-examples
c986e951aa87ad5ab98625300e46afa0  ./examples/complete/cdfunc
22040551e812c9812b3fa02ebb09a631  ./examples/complete/bashcc-1.0.1.tar.gz
16473c99f6e9e343309309eebd25fa1a  ./examples/complete/bash_completion
f553b822ab83859733c2e1e81f5dd9ce  ./array.c
8df21a58776ed5a732a74e73bf37c315  ./redir.c
65b913f33b715cf30b69c393795fc6ea  ./braces.c
d50de67882dea48a36e9386fb0fc8738  ./findcmd.h
50ee6024bbbe54ba509e72723ed7e26f  ./stringlib.c
83792432519ac91241ff7fce999a7149  ./assoc.h
53c72c61c7d8b497117722b2ce81c013  ./assoc.c
95f077e0c53b32bcebad353dc885c255  ./list.c
06f5be14e1b07b7387dac6a190f392c1  ./AUTHORS
6ebc8b74a03e31b80bdd0b43b5e8fd6e  ./CWRU/misc/sigs.c
c36f711cd7731df270f2735e0679128f  ./CWRU/misc/sigstat.c
f16d739577f52845103da52995eea8fa  ./CWRU/misc/hpux10-dlfcn.h
79f25616c0c50631d91c48ea8ad2eb3a  ./CWRU/misc/errlist.c
eac4379e721e374f78d6fa2d586d86e5  ./CWRU/misc/open-files.c
afbfb52029c32dfdc702fd7eb328d3fa  ./CWRU/misc/bison
bdc00a2813982b11fe69cbabfbb7fa6b  ./CWRU/changelog
2cad2f48a69949b81b0abc8e0a6f130f  ./CWRU/sh-redir-hack
855d67b0e1111ed41faea4a50ff98aa2  ./CWRU/README
31c94a57a6a672ca7955d93195fdebe5  ./CWRU/PLATFORMS
6690cebd5cce2dd4a531758c4fe00bff  ./shell.c
aa371c8978ef18bf58a465b6e29e3358  ./y.tab.h
4f47db65aede19a663e3f89fb10509da  ./xmalloc.h
c71293e1dd0999297826453280357393  ./patchlevel.h
8352bba518c92da3a912c7de522f4239  ./execute_cmd.h
728603bb3d3e190d9271a3b8d20c7305  ./.pc/man-macro-warnings.diff/doc/bash.1
f9dbbe62c4958aaaa7041b3a7c27a000  ./.pc/bashbug-editor.diff/support/bashbug.sh
d2feff3292b8ce53a37667908d925873  ./.pc/man-arithmetic.diff/doc/bash.1
26ab0db90d72e28ad0ba1e22ee510510  ./.pc/.version
dfd390d9795b66bf9638e4372e72be95  ./.pc/bash-aliases-repeat.diff/examples/startup-files/Bash_aliases
2d9a7f71c895a362447bf29d687d86c7  ./.pc/bzero.diff/lib/sh/oslib.c
32956ae0c6eeb9f3b411aed20b5f0212  ./.pc/applied-patches
783f75304e379ea54ec14de5019133a6  ./.pc/deb-bash-config.diff/config-top.h
da31094c885702f9ef29c6fb0a29db1e  ./.pc/deb-bash-config.diff/config-bot.h
c4c66ab7f875d46a3eb32a41f13c13d0  ./.pc/rbash-manpage.diff/doc/rbash.1
b20b1f2794f3a8b254e13257892c60e5  ./.pc/bash-default-editor.diff/builtins/fc.def
5839019356fec45370aef5a8099f250a  ./.pc/bash-default-editor.diff/bashline.c
26f1b682a8cdfbc9cd46ff1bd07c7d4b  ./.pc/man-vx-opts.diff/doc/bash.1
b3df3afb6526b49b12212941a28aeb34  ./.pc/exec-redirections-doc.diff/doc/bash.1
35db791801b5bf9fe481461cdb0741e7  ./.pc/exec-redirections-doc.diff/doc/bashref.texi
d41d8cd98f00b204e9800998ecf8427e  ./.pc/.dpkg-source-unapply
bf83d7368413d7b499518843a8b3038f  ./.pc/input-err.diff/input.c
7e1d3391525b0bfdfac5477282c82507  ./.pc/man-fignore.diff/doc/bash.1
9e2c4abfafcf9d4c9ba40d15dcfe7421  ./.pc/man-bashrc.diff/doc/bash.1
2e7600a328fb876b2751e640e27b4888  ./.pc/use-system-texi2html.diff/doc/Makefile.in
4873e3a0b25406c4adc0db94f0077555  ./.pc/man-test.diff/builtins/test.def
3222fd2d96235593cbd420ea1b4ed94c  ./.pc/po-de-fix.diff/po/de.po
266f9759f56277b2751b24d1eb17c50f  ./.pc/.quilt_patches
3064a36414f36e736267a658e3c8925b  ./.pc/man-nocaseglob.diff/doc/bash.1
d8d46c5430169bc9ada8f2a03e385a56  ./.pc/deb-examples.diff/examples/loadables/README
f275baa840932dd8f2c954da2d516d53  ./.pc/man-test2.diff/doc/bash.1
f8a0223e4b4a6674f393437e83f997bc  ./.pc/man-test2.diff/doc/bashref.texi
9c4386a1a2fb063d48a1c4f5964c855e  ./.pc/man-test2.diff/builtins/test.def
e8a673d5d4d69a5fd11c880fd4c3c481  ./.pc/.quilt_series
7934e2401ae463c279cbf9e8ad9de995  ./.pc/man-bashlogout.diff/doc/bash.1
000716de09ee39440a027c1c5bf0e3e0  ./bashansi.h
4d09f087d0d496f378810c58abdee656  ./trap.c
99d94c61c0d15d4937e843fbd24cd761  ./NOTES
4d0531e12cd8d0aa8ca4ef90b1e7eac2  ./conftypes.h
8b46dd04da0504bcaf05b10b7dc313ea  ./parse.y
231c9b86124fbb30d3024a49f8c91ede  ./command.h
636f843191114755de8769925af4284f  ./array.h
28e1778e3d812c05b8fc47bf7bc16a14  ./mailcheck.h
fac2bd4dd2194323712b18fe36b2b0df  ./NEWS
0e3b2899739a36e425bb3625b2f3826b  ./syntax.h
2546690c34260a715116fe3eab0915f8  ./include/shmbchar.h
3a9ee15f7d1ead5a00e2c643873afb5f  ./include/ocache.h
24aed7ed761d97c0cfb525993e4a9002  ./include/shmbutil.h
8c5f3b85028035de9ecde19c447edff5  ./include/posixtime.h
0bab71b938eb344efbe8916f3d57bc65  ./include/ansi_stdlib.h
620c7e85b5587e6fb2729b9e9140ba68  ./include/posixdir.h
e432eaad8585f2fa09a77aa015aab5b4  ./include/filecntl.h
e8cf9ce0ae23eb40b5e2b191515ce1e9  ./include/posixselect.h
e432eb4df2399ef6aaf7f85e5e8f9d5e  ./include/posixstat.h
23313a93f210490dd1100b28694b37e6  ./include/shtty.h
b7cc29abb842067003718f7227a10e69  ./include/maxpath.h
70202b4c5e22a7fd28840b56aa96b164  ./include/systimes.h
2bbed2eff2f7e9402a6c662afa7d7525  ./include/chartypes.h
d6e7a893a9ebffd5704acfdd6058b16f  ./include/stdc.h
1e7a06238c6b2c7d1aa818432360f7b3  ./include/memalloc.h
c20ee4b5b7778b1f4974385050e5dc21  ./include/posixwait.h
7f29ae0fb90e5f5633ffc75974cd5042  ./include/stat-time.h
5db863d98155d7603a3839c8d50c60d0  ./include/typemax.h
077a15ba01bd498f5b9f0f520e0bf8b3  ./include/posixjmp.h
2a4cb87d31d5e6577e8a06dafdb31557  ./include/gettext.h
8436a85731753611120227793df301f8  ./include/unionwait.h
fe943736557537b75324ffc54719212b  ./cross-build/opennt.cache
5d8aecfdc70f39928e454fe7b7a077ee  ./cross-build/x86-beos.cache
7e5d0e59e4cc50b06a31e3c1756ac98c  ./cross-build/cygwin32.cache
08acf124638ab364d559456ef17cd32d  ./cross-build/qnx.cache
1100dff3c26df4f4074c57eee85038b7  ./flags.c
2ccbfa50aad635ebfc000d0406353940  ./hashlib.h
8d821f09bd3340309a6c19b141b92fb4  ./trap.h
34a93d5c66da54bd607f218a64a70075  ./bracecomp.c
7a42b9f9054108053733ec39314736a0  ./subst.c
9fa706d0366485194490b7c30ecca604  ./bashhist.h
b8b7641041f78763edb19463fb1bca2e  ./bashintl.h
280b4bbfc3be8da1866dcbada31a0e41  ./tests/nquote.tests
1d2c4ab3a2ca4387d7b84ffb74767f72  ./tests/varenv2.sub
ccbdfb8e8b15d512d907afeee1e5c382  ./tests/run-heredoc
a19e72caef9cf1368a99abc76f35d577  ./tests/exp1.sub
8ee9a9b25ba1af0e9b97a3e668d19f26  ./tests/parser.right
399fbee22c6d8bd55a64b3273a02e30b  ./tests/run-history
278c050d3b2af32abc8a6ac8b17d11f8  ./tests/more-exp.tests
4e316e0d723a7237d0a1ba833364615a  ./tests/builtins2.sub
1ecd456ae2f6882865fe4a74b3d612e4  ./tests/run-quote
27f18db6438f7b11dbd582f765009978  ./tests/run-appendop
f26f9b204e136d7424b0a271d7dd5e78  ./tests/type1.sub
63e761e55299d18bac8751d8f84388cd  ./tests/comsub-eof2.sub
a123e7626d117b054459f8fe52600b6f  ./tests/getopts5.sub
4ab83e3d8e33285554c02a39fde279e2  ./tests/comsub4.sub
e5c25ca5c105f2cc7959f64a6ecbb030  ./tests/quote.tests
773f02ad82952056366ece718c88c6a0  ./tests/posixexp.right
11a26d720a4ef1ae09e73a97fa58bd54  ./tests/run-case
e66230497bf91658c5530f5db6ba1c06  ./tests/jobs1.sub
cdad05797a3a2f9b0aa135a00bd5a3e4  ./tests/cprint.tests
d0559a4ed7bba6104b4b6cb7c4067d10  ./tests/dollar-star8.sub
41c1f970168995a463c91880e1f3d8f8  ./tests/dstack.right
37dac78b69bc8e2a09e5330b295e5b83  ./tests/run-nquote1
12962c59dd2eb838bdd06e8a856e2984  ./tests/read4.sub
711a638debd0a3213c399af437147d79  ./tests/appendop2.sub
ac4d700cc2b330624d3f84586e8f1cdd  ./tests/prec.right
4b2002b656448fba71ba39afd4f67873  ./tests/vredir2.sub
00c4dde2c71b9b404a3e945638a1076a  ./tests/dollar-at-star6.sub
496d7b062760db7c878a9633738e566a  ./tests/redir10.sub
16a432cd8733c33666cfc13b2b1d0d36  ./tests/posixexp6.sub
808614fefece4440cfeab051d85300ab  ./tests/trap4.sub
c830b4f2332659b7e1f890b01979b815  ./tests/array3.sub
a4ff576dc44595a440342c87ba04444a  ./tests/trap3.sub
919efea556546498fd60168c06d3ae03  ./tests/histexp3.sub
951fa68458f98e2c446fe95401666d90  ./tests/history.right
a06a039d06b953414e7e66f7772f1298  ./tests/arith7.sub
c19e7cae104361895f1fe634733a1dfa  ./tests/array11.sub
1c46daf5fe5a05fabd37553356d52e6f  ./tests/quote.right
f88370b68fced1bd658f3a84412443e1  ./tests/varenv3.sub
f039cddd7ce80a49a12392e6eb3721a8  ./tests/case2.sub
c9975daa3bd82545d8dd7a537a0980d2  ./tests/new-exp5.sub
330c962d02c4326fab94fb72e93d40f0  ./tests/array13.sub
809f96f74d4c8a041308fd88a4eedfca  ./tests/nquote.right
e3c655fead5884420737d9984e6b32fb  ./tests/run-shopt
b6369ef9f5897050d505bc61ab7f79b7  ./tests/iquote.tests
abd303012e5a462432a15bb4dd2328a8  ./tests/glob1.sub
56da0821821ba7155c238a25fbafd44a  ./tests/assoc4.sub
bcda180d367613493c8a691819fa5d0c  ./tests/intl.tests
2a27459d370100303f226d541ed5ff20  ./tests/new-exp4.sub
938f50def80b2236d8379e5d168e68d4  ./tests/assoc9.sub
02fd7bf98e7969fb00ca3110b490b2de  ./tests/run-posixpat
1325c55e73b048980e6880d0219c93cc  ./tests/glob.right
79a526904d40c9df8fa469f75620392b  ./tests/run-lastpipe
f8baec0aa4ad2da4dcd9088a2dfa85f4  ./tests/COPYRIGHT
abebfc302020c95d38636742cb1561db  ./tests/strip.right
dba142e7e0cf874ccf0a88ab61ea7a34  ./tests/dollar-at5.sub
541f07be93afadd5297c4f7a335e8e95  ./tests/array8.sub
0b3c7dc24645bce655f2f7e33dc98f17  ./tests/ifs.right
837de05c1708b9619ff0df878ebe4b9c  ./tests/trap6.sub
712e487d3b346b264c5273f946fd5dca  ./tests/lastpipe.tests
48f2166789fc68b8662e41f14247324d  ./tests/precedence
87786f0909e6ad4ff45f1d8a6eec8523  ./tests/vredir6.sub
dc89630e498e6db6cfe98ca8a8f591b1  ./tests/run-braces
b08270d947c3ececf70f438125e29584  ./tests/getopts10.sub
d56e4577b8332880b42e081b821dd21b  ./tests/histexp.right
247229a6096dc49233f8a4f37205ddb9  ./tests/posixpat.right
3b6ba436dfb695c453aa708875850c22  ./tests/dollar-at-star7.sub
aa3b17f1b4453848d12a20e25262f5c7  ./tests/errors4.sub
998fb9427544de44b2f790b2bafb5739  ./tests/read.tests
5c3adc5ed14daa17e409279a8c302bed  ./tests/run-nameref
54f89da798ac8bbf5ac629b7a6abf7d0  ./tests/run-iquote
306698cf428cc16e7829d8d8ef90e1e9  ./tests/array1.sub
7054d052a14e9f43796c2e67b9dff595  ./tests/comsub-eof.tests
172a2fe13546975f109b04955621eb9d  ./tests/exportfunc3.sub
94af4f11ca6ea55840eca7e5017ba618  ./tests/arith-for.right
8cefcbd3347f66d8398560a350d10256  ./tests/new-exp7.sub
1b1b2a01e8df2468044e00dfdfbf8c88  ./tests/nameref3.sub
ab9b0c1c08534a07d4f1e4aafd98e1b7  ./tests/run-ifs
ee7e3692e99bf189e960cc5c3e8ee632  ./tests/exec9.sub
5af84e65912eed1c790f90f02dfdc253  ./tests/printf.tests
e85ac9846241016c145b18ebe7577488  ./tests/dbg-support.right
dbd44871973111fc5f9456fcce3cce3a  ./tests/array22.sub
fcf60e8c363e317ac6865142af47fdfa  ./tests/heredoc3.sub
3fb2d0254dda8949fb2161d9558a32aa  ./tests/rsh.tests
a74cc95443d1278f6e1f388038e1fb8d  ./tests/vredir.tests
9e42d69a0a6b287cfb16dade98bc09a6  ./tests/exportfunc2.sub
7423bd12b07caf39f4c9a2272f4ca964  ./tests/dollar-at-star
15fc7e6c74733c76a9c3700413922042  ./tests/exp5.sub
a06bf35fd29c581a64dd097e40c17307  ./tests/run-extglob2
86a1d80262a15aa064b62b72d4572162  ./tests/dollar-at2.sub
f6abc0b106c9844278a1ea4765243aad  ./tests/run-execscript
53326d17b32b0db5d6194a88922690a4  ./tests/run-nquote
f7083becd90ccc6c0a0c83a73f5e6c8b  ./tests/varenv.sh
5509b0a3d7550a44e82d398848adf1c0  ./tests/exec2.sub
0c8fe1380f143e0cc55eb345d1c132a0  ./tests/vredir5.sub
cbaa1f87a679f9310fbe029af4562f7c  ./tests/exec5.sub
e74688241ed329f3ec39ec9bca5ff9df  ./tests/herestr.tests
7c984f13913a61253974a10f4b0c3cd7  ./tests/run-globstar
ba0f023e0f73f95693c89423d0dd3fce  ./tests/dbg-support2.right
33e947ac33d37da5309b9d8be0a641f5  ./tests/ifs1.sub
630cc87da17939e1cb6fc6c98987fe96  ./tests/array10.sub
bf480941ffbbbb2eae559049c68584b4  ./tests/run-input-test
9034d3a343910997a409f30813e05a58  ./tests/version.mini
6d089d6c863edb8b3ee7b40440ed3399  ./tests/assoc7.sub
88155dfff4f1c13e61b5d30f7581acac  ./tests/exec.right
7a92271a3311413a5863719ea88d05a0  ./tests/run-procsub
044b89825817c992e2500c6e1acd1693  ./tests/run-alias
acdd4ce346c2035e8350e34e50d5d719  ./tests/run-vredir
20853a183ab37136352f8d045e55199d  ./tests/case.tests
7be923f82f3291b163ee5ce7c2a22292  ./tests/redir.tests
56c96c279cd6db3d07989cb3cbe63e54  ./tests/run-tilde2
026cce4c9263aad031a1c9a657b9903e  ./tests/read5.sub
ee67ffcfb9b83b25cdddecbf68a084ee  ./tests/histexp.tests
27be9b87f44ab4e05e7fb5fdd274bf54  ./tests/arith6.sub
1aaab151817cfda87d71c26d28943378  ./tests/case3.sub
085996c69640564b16312cd8e3c7fa6f  ./tests/attr.right
ed1bac51c4e4f62663b71bf62cfd2dff  ./tests/nquote3.sub
9fa42fc9699525b9bf2a1d07fb62821e  ./tests/dollar-at-star5.sub
8f87c0bfaf1390e97a8327c4ff99aa67  ./tests/getopts2.sub
c2c8057f70112b545352d0e88cba2341  ./tests/coproc.tests
e0c1c9c8ce1f5522474d0ede02b9a13b  ./tests/extglob3.sub
af891e37f4edb7b40c620b891e2d6ad1  ./tests/alias.tests
b8cacf97218cfeac72135fde56c3d63c  ./tests/redir1.sub
8f7f18dc89c60750bd7e615f55600397  ./tests/errors1.sub
f92470bd83b48faa4f9f1fc98a53b743  ./tests/ifs-posix.right
5799c210062e7c9bc26076bf499e7bb2  ./tests/nameref12.sub
058f6eeb402f0ac8ccf5ca90ad154150  ./tests/nameref4.sub
a484278cc4bb04efc2eedc28a82224ed  ./tests/exp8.sub
d58df616532ee8b17c72c814e9394916  ./tests/nameref5.sub
dd59245bb97e00fe680c45512b2eff2c  ./tests/getopts.tests
031ebc0b547a60ce524b90b716e80fec  ./tests/glob2.sub
4d6ba33a19110a0cccae5ac9a21b9097  ./tests/printf4.sub
c99d9b3bec93f06bc566ae647cea82f6  ./tests/dollar-at-star2.sub
708b7548062272fe99eeee391b236339  ./tests/assoc2.sub
8165b16ac82ecb0f3abfccd30028e70f  ./tests/mapfile2.sub
30449f14bb075e3eaa2cbee791925e3a  ./tests/set-x1.sub
6db567cea8adf3b824a3bad7dbec7c59  ./tests/new-exp3.sub
a89d72c081d50af25afd32261c9c61c0  ./tests/exec13.sub
2dfa75d21eb41588679cb82b9bfeccd9  ./tests/heredoc.right
9c2e38b8746041a5d456063754dd1d89  ./tests/redir4.sub
f9832eb74152f81cf819ca5c3d092338  ./tests/run-new-exp
e6f64da5724c7794da1e7261c1c08696  ./tests/source6.sub
04de6e6393057d44627c2e533d66bef4  ./tests/array17.sub
201be4e1c4a2b57f776871a3d76f7bbd  ./tests/exp11.sub
3c6e0b0e4f3de285b8d74c479f2e3c26  ./tests/exp10.sub
15b647585923876c22c65f6eadfdc916  ./tests/posixpipe.right
51c7bbd8eca2e23f3092c198610d4766  ./tests/array16.sub
d292c439fe3ee41fce91580b8633b1d3  ./tests/nquote1.tests
a9dd0daf16e75a3010b1ff5ed649a6a6  ./tests/extglob5.sub
7856c2a8782d8c40a628f5be5851d8ae  ./tests/quote1.sub
838752737fcae227bf22e4e74ebb199e  ./tests/posixexp3.sub
8b443bc9edda928d4a94fb16d9cea8ed  ./tests/shopt.right
9623cd453961659daed08066b38917b9  ./tests/nquote3.tests
0a9e247df892136b1b29ce178bac1a4a  ./tests/herestr1.sub
e31681ac1d353bb285b0d5ee8aa195c6  ./tests/run-builtins
8dcb236977b6a9687907243e69c4d1d7  ./tests/getopts.right
4d66cd844ad0f3d219761717d87b2ef0  ./tests/nameref17.sub
ecfcf75c055b97039ffc14803a1b7db8  ./tests/exp7.sub
4f35fd17e3795fd1d88faad408451a18  ./tests/dstack2.right
5a8106bc28042e4b7d282c9d750a2650  ./tests/new-exp1.sub
ba2015d73d7e9427c394f28603a56d2b  ./tests/redir7.sub
d12bd15f9828a498900d2ccea62fc446  ./tests/extglob1.sub
1203a71de356500b5e663c44d20dd1c9  ./tests/intl2.sub
ca98cb463950c27026d316a24d43d44b  ./tests/printf1.sub
100e83b26f5e3cd41aac80539da5f8de  ./tests/run-herestr
1cc6d9e9251863b8979ca713f4f54795  ./tests/casemod.right
ce97e91ee15c8a5b8e0de1895022ecef  ./tests/run-coproc
fff9e100a6417aa0750c3ea0edd30bad  ./tests/nameref14.sub
5899838adced5c5ecb5790c8592c8a7c  ./tests/new-exp2.sub
67c17c2d7b40ab3aabf786d3405ca9d8  ./tests/test.right
e85a7148ee6f7b9262c7495e611b08ac  ./tests/posixexp.tests
d236ec72753a981caa83895f1b695f1a  ./tests/rhs-exp.right
48b8bf266144169ddbb4096749818a6b  ./tests/run-getopts
432e8c3a23bc56d6821d77ee44820e7c  ./tests/array4.sub
96b124df7fd3421c4319177c309fcbb6  ./tests/run-varenv
aa89e2968a3b960e29feaa6e96b8f739  ./tests/trap2a.sub
ea832d19d23ef484f21ab8dbf9670695  ./tests/run-histexpand
180c4ab5979e99d34d406e989e469574  ./tests/case1.sub
e78f2ff08bfb91f1c40e0a3ba143824a  ./tests/set-e1.sub
99a91a6f938caa3dae458f25fe38e9f8  ./tests/exec10.sub
0fd79f47a7ef58713660e9da8cb12984  ./tests/errors.tests
54911e44eb8c9af5542ba4f3f01cc216  ./tests/heredoc.tests
7823a7d272a41d644f217bd3c9b7c2a3  ./tests/builtins1.sub
93196822b0446845e34ee6cc679a5869  ./tests/array9.sub
8dfa2f388d99880449a2803d9014a01a  ./tests/new-exp8.sub
e72d62567473e1e23f89fdd3d4ad13db  ./tests/iquote.right
67517dd5e7905c1f275847f70fb497e7  ./tests/dollar-star4.sub
94f3d51665aa9def54c8d2529cce9522  ./tests/run-type
fcc706db2c4510bcf521455cfcb7b5f6  ./tests/nquote2.right
34f6f410f4405b592d94487f2c691946  ./tests/extglob1a.sub
b9ec794d238a4a4ccd205a2e220418b7  ./tests/redir3.in2
eacfa44fa97db0818dab8f0d2f9874b4  ./tests/exp.tests
2be2f963aa733aa881222c721efd8ec7  ./tests/mapfile1.sub
581decb35bf8b4d6ade52eff709a9236  ./tests/dstack.tests
0f322a2397f1eaf964d72665be79bce7  ./tests/varenv5.sub
e303a00c9e2f35ea715ae64f9746f5b5  ./tests/source7.sub
96776c0a62757cb160645dbda707390e  ./tests/tilde.right
509b4e4350dda1bf2ccaa50f7e65d872  ./tests/varenv12.sub
a887f181b6355e3b1a83a6313acc4491  ./tests/alias3.sub
3f93fadbce9d2a68ddb423605bc75fd7  ./tests/run-cprint
b824c71d043ddfe89896846f33784cf0  ./tests/run-test
075314089e5b5e6f29eef7a2c2609c40  ./tests/dollar-at1.sub
9c3b80b4f1d278f09485669ac3a250e3  ./tests/comsub-eof0.sub
d6a04328fe3d6c5ce258699d32ad9440  ./tests/redir11.sub
b744d749c26c8de3a6ec68dafad18bc4  ./tests/run-read
2cea6f520e71b0dcb611c65873c079b5  ./tests/nameref.tests
ba8de2c12390a97f0452eeb794be3e63  ./tests/exec12.sub
9fbd430aa3b565e8714d436fbd052249  ./tests/arith.tests
8775ac05db4b9df12d8d5b226167d688  ./tests/extglob.right
463e50a7c47cb546bce46fc527805597  ./tests/mapfile.data
7b4e3c55862e04a7fa2d5c89b3e02cdc  ./tests/test-glue-functions
886bc5de95d2bb58c702c0f60e464dad  ./tests/trap5.sub
232251316099bdaf908f49067f041e56  ./tests/globstar.right
bbd0d068d027c28df65bb0539370f012  ./tests/rhs-exp.tests
15e4d3f965b45f63124fcc642e17913e  ./tests/array15.sub
c967c1d9a5a3a4b90862ab4a0484a3e6  ./tests/source4.sub
7d2a8078556ab0ff148b56085572e9df  ./tests/source3.sub
503a31a43caf87a53f898f5c3ec6c0e3  ./tests/vredir7.sub
0b85730eb2afd090ec030b9ffa84f512  ./tests/tilde2.tests
2a7810ae36af92a3d026b3702b72adb2  ./tests/comsub-eof1.sub
228dd9914e8706a9004919040da872f2  ./tests/type.right
e043fe1af0d17d8cbaea27e9b475088d  ./tests/func2.sub
8dc34242c9e5c73d72af70d090047f5a  ./tests/assoc1.sub
796df2ce0826be065ad943ece0706b21  ./tests/getopts6.sub
d4c67e7b427c34a9ef6c1be8f550fed3  ./tests/run-dynvar
dedc1e933e29070de4ebf12aa0ece781  ./tests/run-posixexp
8bd95f6f8adc1e2760abe2ea2f434e05  ./tests/comsub3.sub
dd3f50cb1b7b3831e92b42187b791aa1  ./tests/run-assoc
5fafb2447a1c4f074f7ed3c965e1bac5  ./tests/redir3.sub
e858cba3bb87d7fad529c6d0b15a8eb7  ./tests/input.right
92d3ca78dc9394812fe46debdefc91f6  ./tests/coproc.right
a51a2a9d07a2a10f7722cda2f48bbacf  ./tests/run-nquote2
3689ac31241e50a89aa11fc42c6fe88f  ./tests/dstack2.tests
e5120080860afacef6761251e5450845  ./tests/unicode3.sub
a14bb4fe77a4e0c09e78c19a051fa73d  ./tests/getopts7.sub
f7eac12036c384f9ffe20503111dd6e3  ./tests/vredir3.sub
00f80c9161f00c3733f0c7b67ff703f9  ./tests/dbg-support2.tests
d773b1a012390e2a06134074051feb22  ./tests/cond-regexp3.sub
08956d7fbd85b43a1b2b4c92df49fb8b  ./tests/invert.right
43e55b12653b3562140e0de12e888eb7  ./tests/trap.right
bd6b19f22dc2732db6945f2af956262d  ./tests/func.right
36c6a09216aceb9adb1ddddabbc5abfe  ./tests/dollar-at-star4.sub
a619349c6d13caa03e513443785fab50  ./tests/mapfile.right
422aa15c4975d0f0069cbf13930a50c5  ./tests/jobs.tests
f3c552d8da6de00446dbdf069ed8df7a  ./tests/attr.tests
c7987a94eadb8f2fc63f58e57022a085  ./tests/run-intl
d404401c8c6495b206fc35c95e55a6d5  ./tests/redir4.in1
9083ea2e08d19ad48438ec376ba37e62  ./tests/run-array2
a87ab4d58dab99c7d96b591f82896305  ./tests/redir3.in1
f7b7915521af5380e17cdb3a6ec74c13  ./tests/arith5.sub
8fd28e5789f61dd3cf7e90699b2b1fe8  ./tests/comsub-posix3.sub
c1074e59f3ddb1c77e810d21d626b9c7  ./tests/getopts1.sub
5e54c9b4e6a93989453078cf9521f3da  ./tests/run-ifs-posix
2a274fdac7fc217d3329430efc5ca7b8  ./tests/arith-for.tests
0aa06699affc6ffd89615b70d7c23c97  ./tests/nquote1.right
d614b7f9499687bba1c38cef6aabd90a  ./tests/errors7.sub
1297b54aaf4255a67aaab8a1d214b9dc  ./tests/extglob2.right
faf0ac076e2033f10b62cab9496d0c39  ./tests/nameref18.sub
09733b947f1f7f0de38114d90db9f1af  ./tests/dollar-at6.sub
8eb6b6b9a2165b400a5e7c5373c056fd  ./tests/varenv6.sub
c31ce20bc3d2cafa42aef22c273c4512  ./tests/read6.sub
b315d4f8f1ef1d6eabd08a7e20517d24  ./tests/type2.sub
5dd3f214ff6514189388c840b77c7f05  ./tests/cond-regexp2.sub
29a35dc786e6ed2392c81f2cc3a41a8f  ./tests/run-rhs-exp
09e3bfa58a8593af5c41360061a9c9e5  ./tests/read2.sub
52c0ee7d13e3d2063a4ad3a11adfdf93  ./tests/run-minimal
8146b752e96e9431a5b2b03f8788ce05  ./tests/vredir4.sub
a477847ff5949ef81f66709acf57d119  ./tests/nameref6.sub
c7ebb4567c0dba955cdb1aac453d53e7  ./tests/posixexp1.sub
e7d4e534e4f6cd2592380ae09502a082  ./tests/dollar-star5.sub
bd27f09eeb7512051b14718dc124e482  ./tests/invert.tests
b39a2cb59d98457e7ad98a89c5631a80  ./tests/run-extglob3
ee5e79401db19dd6d54d5169741b1406  ./tests/exec4.sub
2e4eb8b0d09e9fb7bdd9e6199ac6a2dd  ./tests/exp3.sub
a221db3fdd6facd83b1a6281647ef709  ./tests/nameref2.sub
16550230ead5a617bc463f5ab9c485ea  ./tests/exec7.sub
6393da733bc007df875486c443fa7454  ./tests/assoc3.sub
97f6c2a3716f45f26e9b4de91552fffd  ./tests/source1.sub
a1c579739adbccb010447452d358522f  ./tests/array23.sub
f5a35be44739d773a1f609a3dee4ceb5  ./tests/run-parser
d566e060af2d8eeb1623983d6336664a  ./tests/cond.tests
58c02563dd40da57cdc1ff77eb4ac9bf  ./tests/heredoc4.sub
54ae1f4c941056485d47d66a93ab2201  ./tests/exp6.sub
0b4a2fe5f4450489b6051ef701be4093  ./tests/dollar-at7.sub
40ad765fb72f26689e0a4ed4383a98f3  ./tests/builtins.right
d9391705e19d49e56a63f42110e40c60  ./tests/type3.sub
df1aa92381785407dab20ab4260cced3  ./tests/redir.right
583a1e58582d84002e0b4065e73f2e54  ./tests/set-x.tests
a72a9951287590310105494d9cf94a6b  ./tests/array6.sub
758f4a7600c5097f6b794a2760398bcd  ./tests/run-redir
154d0cdf34c8f849c323d9d29893e4ea  ./tests/set-e3.sub
f7b20b69f8cad74062e9c2a4f58e3ede  ./tests/history2.sub
4cb20f82254bd8da8a9a5b30f8adda8b  ./tests/run-comsub
86b97948b0aba05a4fb447e2b53e7607  ./tests/exp2.sub
8e40f1cecfeca09d12bc9c7ff1378349  ./tests/run-invert
a9becbf64a353a85a14cbeb0ee6f32bc  ./tests/globstar1.sub
e99135571d909ef8f2ddf0d5efd3a015  ./tests/dollar-star7.sub
28268532347775c39994a2ff50d5a9b5  ./tests/varenv7.sub
740c952947b978de78e827659fd34652  ./tests/posixexp2.tests
2dbd9d5fb58b72b9d712d472dc211ea4  ./tests/trap2.sub
ed7fd603329ddaab0522475cb708da70  ./tests/varenv4.sub
0b2910562fb1e0dfac809b674e829dd0  ./tests/posixexp4.sub
44144c30fce5ed5d38b165d32b72c110  ./tests/getopts8.sub
f5c8a94d51168433198a467d9a4bcccf  ./tests/nquote3.right
8c36a4b73613567b1de8f943e379d389  ./tests/type4.sub
d8266bf732791c2fd48d129a4cbe2b84  ./tests/run-dbg-support2
808a11f8a98fd68f098d4365685ba06b  ./tests/set-e.right
7cc22702eb197015e6ff8ded00aff6d0  ./tests/cond.right
7b4af499098b4b16470df52f2503ee8e  ./tests/comsub-posix2.sub
c040eb51d349c74f8b13700700eb8a22  ./tests/read.right
6c5e1161ee846ce84d94f867a3a72dcd  ./tests/array19.sub
e9c46e25a9b41e3b128f7a9c2d455973  ./tests/dollar.right
88e89c51800872390a429f1146fa90c5  ./tests/exp12.sub
dc2a3b917ac41e3191479730978d5d87  ./tests/casemod.tests
518d799f7631a7a430c9a8507bde6084  ./tests/nquote5.right
805b72debe32419d9b4bcf5fd21a59d6  ./tests/dollar-at4.sub
c7734cfbed819b9e65333ad54248e3f2  ./tests/errors.right
3b8d566bad42378448c92570a109a578  ./tests/comsub-eof3.sub
726231e74529b01c76a682051d862448  ./tests/dollar-star6.sub
e1b7f00eeeac2fdbb24fb9d33336e3fe  ./tests/nameref13.sub
541c8cba65f4d8a94f472df598bafe4b  ./tests/arith8.sub
e30c89b06fc6cb13048db1ed7a521ecf  ./tests/array.tests
6924456c3e8f1cb082cb3779029cc6af  ./tests/misc/sigint-2.sh
671cbbee87c1b27a2bf7c66279c05d44  ./tests/misc/read-nchars.tests
8c0a862f0625e989572d5cca435466cc  ./tests/misc/perf-script
ceaace355693a9cfc2853e00ff894cb6  ./tests/misc/dev-tcp.tests
fa3d1f37e1da29ed85f7972687a35372  ./tests/misc/test-minus-e.2
9b70d89198d56283cd4aa2ce0c649018  ./tests/misc/sigint-4.sh
e436be16997b82d88ac23053be9b149f  ./tests/misc/sigint-3.sh
02cd9a6eed6ed4f68f8b2be8d2501740  ./tests/misc/wait-bg.tests
d6a709cb2469336b7fe0564a533b0ec7  ./tests/misc/perftest
91110f67cea5963c41f19baa0ba98bd6  ./tests/misc/test-minus-e.1
474b8516d51ad15523898d951dc07b7c  ./tests/misc/run-r2.sh
b190d9ab1908eeeea45245b8facec605  ./tests/misc/redir-t2.sh
ede572798d4fbbc4e7d65451db6d4124  ./tests/misc/sigint-1.sh
d420ebb134464834c6bfd90658a82abb  ./tests/appendop1.sub
03c7eaaef085f75bb2bea86fd418b5c2  ./tests/printf3.sub
85e57b8fcbf08446f52d0244eceb379d  ./tests/run-all
099262e769d5db120874d62963138498  ./tests/redir5.sub
7a6040deded3874610f0c1cae8acb4b4  ./tests/run-trap
6e09b225c9b637af2dbbf7446511ac95  ./tests/run-precedence
749ab5fc8aeee2d0d8ca7798b149425b  ./tests/arith2.sub
6e43f486ace70c43991b78e572f97e2d  ./tests/run-posix2
23c8519cc8aa162d4550654b0995afd0  ./tests/array20.sub
562fcbd62d1a1389849f58dec995a5d5  ./tests/run-exp-tests
4e458cfcb968501a38d48a725ef06aa1  ./tests/vredir1.sub
6bed8fb1d5a80f64017e93709dfef62b  ./tests/run-set-e
28dca56e4bcd943b7ff5a0675592ae32  ./tests/array12.sub
69e4401cf3792e3bbb3048ba1823bad0  ./tests/array24.sub
07482de17713c4a48e28442e4819218b  ./tests/nquote4.right
0cc0dd6bea1078ae18099fc6ff8e8153  ./tests/array2.sub
748268281c47528c65e345fc1f6e31d3  ./tests/errors5.sub
dae9d5a8ebb0b67cadf64e34e9773823  ./tests/run-nquote3
84ccfca5c85e0d422378d2861a5aa8b0  ./tests/dbg-support3.sub
9228d1580114f93fdd3591c9b36ca870  ./tests/run-dirstack
95380b738d16a767f799f07ecbd6362f  ./tests/dollar-at-star3.sub
ac7e2d0af783bdaf4d30c45e5ea511c5  ./tests/jobs.right
7e9b2e556371f336c24a8ac145182c50  ./tests/jobs5.sub
4432831a545de72004cf64fdf9138221  ./tests/posixexp2.right
4747fe90d22b81f5202a49c39855b595  ./tests/varenv9.sub
e53156ae173e79cf7508aa2f3018c0b8  ./tests/procsub.tests
a06ae0cd9c2162137e54703a653d6668  ./tests/extglob2.sub
0699dbf2c1f312086b18783db031bc4a  ./tests/glob3.sub
84f0ae7c3b19961d1635f709e6e6980c  ./tests/extglob4.sub
c854782b435d18ec2bb85476f84420e1  ./tests/tilde2.right
3413509ea55b386b66859836773142fe  ./tests/func3.sub
753066e24010f2705fe991760172db93  ./tests/getopts4.sub
84d99fbb2d58dcda74f277643da44027  ./tests/history3.sub
f9abe520eaf000643a619e4c74a9623b  ./tests/vredir.right
b5dc98f3594accb10a0055372a0d330a  ./tests/redir6.sub
935b14d2e8b14a00c720e5c1a5f09faf  ./tests/test1.sub
76a0871ce32cc40d408294b938e8102d  ./tests/new-exp9.sub
bb8200fb2d4518ad8298eb31f084cbb9  ./tests/run-func
00e43bbdfcc95173160051824d1df2e1  ./tests/nameref8.sub
4afacd09de838d5f3ea674ace060da34  ./tests/nquote2.sub
0cc1b7ed5032b563bc3136161262d624  ./tests/heredoc2.sub
82d93b607cbcfa9434db01a14adcba49  ./tests/array7.sub
69578d162bb4e9eacc223311ece5fc3d  ./tests/assoc.tests
caf8c287da11c0bc1ea146a18992675b  ./tests/exec6.sub
902485ef999fdb27722a9698beb25b1c  ./tests/dynvar.right
e34c054608573eb1577e7a706b77b3ba  ./tests/varenv10.sub
7b455018e80fcbbfc405608553372e7a  ./tests/history.list
b10c0dfcc17a021c7199ffd27eb825fa  ./tests/run-jobs
09c4964fd8ea4e4d817cbd2c0d40b673  ./tests/exp4.sub
e6dea5cadf75954e47774ab8f46aaf1e  ./tests/comsub-eof5.sub
cf6c748d7516c6057e46007245200096  ./tests/assoc8.sub
2eb096e32a587a5a3dff4f5d84a16be3  ./tests/execscript
40e79f322b08719e8666e7cc261e917e  ./tests/posixpat.tests
23eb6885f2edab30b443ed12894bf7a4  ./tests/comsub-posix.right
88d257b4451fb62d1f45f0819b3dcf07  ./tests/run-casemod
7852b0fc83110a426f9a8e018fd6fc46  ./tests/cond-regexp1.sub
15ac91cf913f5b6db99665082560a876  ./tests/run-tilde
8912e1589e78ca950d52f639d75fa16b  ./tests/nameref19.sub
1a2819be9b0701fef9a8a8187c512586  ./tests/rhs-exp1.sub
42ed57b53897cc71b1da7e00ca47fccb  ./tests/alias1.sub
d2b7c6a97194e5484e3fb6437d48af17  ./tests/input-line.sh
7417df74e2352362499caaaa23d8a38a  ./tests/unicode2.sub
0616e424f02a76381edfd7f952585486  ./tests/array21.sub
f36c9f14c9e023467919a1b2a86332a5  ./tests/arith3.sub
4b58ef1597a2d53904e880559de2e865  ./tests/arith1.sub
3bc1e8311894b950d063d1cdaf602d84  ./tests/version
00cda9ac64b007072ef66a4ee331c4f7  ./tests/braces.right
a603a3ef408913f4b34c34466b6d9536  ./tests/nameref7.sub
2deca6071e5b23b0b58c1993f61710fa  ./tests/case.right
90d1c8464bc38df11862a4184db8a323  ./tests/dollar-star1.sub
2d4588d39783fb3cbcedb24e01cf5121  ./tests/getopts9.sub
0f881f39624bf5b0102cbf884a5f4584  ./tests/comsub1.sub
f9c3d1f14f645bf3d8a4ed0a6c81621b  ./tests/trap1.sub
8a87aa3dbab833216ac9d0701f193acb  ./tests/run-attr
586720e0ca6a74730ed3c6b5141197f6  ./tests/set-e.tests
d3abac92240454d8d9b8e2b3c576a710  ./tests/printf2.sub
3fd910e4223e6fef288d93faa005731e  ./tests/new-exp.tests
54feb391c1c50949bd7a532441cdbb6d  ./tests/jobs4.sub
000c63bb5ef885f4d7febc73393d7d9e  ./tests/parser.tests
e1f44943175988c7f4a3fe5694b59367  ./tests/jobs6.sub
da9e85e6b1f0445b1145d0bfea55c2e0  ./tests/attr1.sub
1ded9f8ec7c682ee8c789e58ad5b7bea  ./tests/lastpipe1.sub
25e937694584018fca891f262424db9a  ./tests/cprint.right
1ab9145878eb67e328d925a80dc2bccc  ./tests/exec8.sub
7d2a8078556ab0ff148b56085572e9df  ./tests/exec1.sub
c97665817effe2f59b8232f663764f5c  ./tests/nquote5.tests
45b6e8d19c74123f1e3da92351eff57e  ./tests/glob.tests
87a244f3767c580350bcb16ee66ccacf  ./tests/arith.right
c54433694bf86cfb4342bf158408392b  ./tests/errors3.sub
8961cd9a681bd0aa4df5fee68f3c4c70  ./tests/jobs2.sub
17bf32dd322a204ca68d630f0edaf77b  ./tests/new-exp6.sub
1faa8b18a529a7b066bf73ca6ade362e  ./tests/extglob2.tests
12056a3eab7dcf2f7ace4f2ba991a0e1  ./tests/run-set-x
daab42225119028ff9de6a89664c51f5  ./tests/func1.sub
810ba929db7553ac9b56b9db588f573c  ./tests/dollar-star2.sub
453df045373917875a198a38d2e51232  ./tests/rsh1.sub
f991397475bc411740f4ca8f9fcb087a  ./tests/appendop.tests
853f809868708e61073ccd53de3769e6  ./tests/extglob.tests
b315d4f8f1ef1d6eabd08a7e20517d24  ./tests/heredoc1.sub
c16ad027757708773f396f77831a6b87  ./tests/varenv11.sub
a63b62d0ab889954d03d0d5badbcd7ba  ./tests/strip.tests
17c37044dfe478dfee2f8e3efdf2209c  ./tests/run-comsub-posix
890216407eb681a31fd35601c1462dfa  ./tests/trap.tests
67d1df8196b4876170330420d8d860cf  ./tests/array-at-star
cdecdd4d4093189346afbd57bd5a38f3  ./tests/globstar2.sub
8c3a755cf22277876872e1320db08076  ./tests/extglob3.tests
0a0cf1cddbcb21b75d27ee38d07aa773  ./tests/ifs.tests
ead123a2fd3b107452a80b1fd93fd05c  ./tests/func4.sub
60eb3ec509ee4c73e1685e8ac3bd287a  ./tests/builtins.tests
6c8318df1caeaba34f94ac2bc35c0626  ./tests/nameref10.sub
50619bfface4e738caba7a7509efa9bb  ./tests/getopts3.sub
99b7dd05bb9302a889fa3e87885d2ed2  ./tests/shopt.tests
48358b797165c9690f34d844cfbba87f  ./tests/mapfile.tests
5b344923686581a28e75f16b7ea2dda4  ./tests/array25.sub
16c0b0f2468a364683a7ba0dce646c09  ./tests/redir9.sub
4cb8933f4bf2e4a47b2c82afe816db49  ./tests/alias.right
26ec4c77cdf8402a800007247e009abf  ./tests/run-posixexp2
24cfaf5f0509c45f82a9ceb78e29b0e7  ./tests/run-nquote5
652903d56904f1691cb32da6b57ba12e  ./tests/posix2.right
bf7109c52127ebb51a883dace92256d0  ./tests/globstar.tests
99a043db3f91cce5d4ef5f58905fb83f  ./tests/nameref.right
9535d9d5eeb140455a9b33d7702578db  ./tests/posixexp5.sub
40d0e264b7f36f1e004610752ad78e00  ./tests/read3.sub
e3b4f4b35fe986ee9d60137db77e7d06  ./tests/exec3.sub
4073f0169de99cd98c13277aa0c43a16  ./tests/tilde.tests
9e1050d5d76ae6fe662ba603761e2f36  ./tests/dbg-support.sub
baa7cd4ec83b2339d709c362388c43c8  ./tests/array18.sub
4afa8607014bee0f127b9727de793c4f  ./tests/varenv1.sub
7b1e0d03a2f7d7bacb3153098de86734  ./tests/run-comsub-eof
25ca0467fcf2f34ec1e2f25cf27b6ab3  ./tests/dollar-at3.sub
ea28be205a6ca9aef8e90daa19cea4e7  ./tests/README
d8a4b54a56df5efb66a02e2b5315d8d1  ./tests/run-cond
9a3ee1b1621c40c15e048155e02ed0b4  ./tests/dollar-star9.sub
9095f8f81804b128aaadcf41403fd5bb  ./tests/run-printf
69dfc49442ec6dcc67e6f8f3474dcc69  ./tests/builtins3.sub
14e788a510b5fc19776cd417047c5024  ./tests/run-nquote4
a93791e9e5446555763d09c6fd3df434  ./tests/posixexp2.sub
4e1a23ec18d3498834081d644faee7cd  ./tests/builtins5.sub
323c68fa4401d8a6e0456525f10e036c  ./tests/history.tests
f23576bd3b1282088c537cac1c028981  ./tests/nquote4.tests
44d89f53c4543dd7e263b456f4abbaa4  ./tests/nquote1.sub
87c25a00f96a5488629a6098eabeaba0  ./tests/run-exportfunc
3af48ad8a5cfb73f61b72c00f93176e4  ./tests/func.tests
1c322db4affff8e95cf21e2220d12825  ./tests/attr2.sub
6bd0c22230717ec41b1d6b271cf69c08  ./tests/printf.right
7c91ce63ebbfcd0d05e3a31dc580290d  ./tests/nquote2.tests
31155d2ba7b2acfd419b93e0fadfed4a  ./tests/histexp4.sub
910e4395ab79965b4793badc0d35fa10  ./tests/exec11.sub
b8b31f0f8038d116c252be2bb621607f  ./tests/dollar-at-star1.sub
12a4ed5d8027c802f2adefbdee230aa5  ./tests/comsub.right
bf47a56b12c7bd9d598722c287e511e3  ./tests/varenv.right
d0780bdbd05f5f5d8232124859352649  ./tests/comsub-posix.tests
bb8207684b1aba7597d96a125d91ae5e  ./tests/nameref11.sub
9122a08d98c27b9747ab149ce5b01c07  ./tests/procsub1.sub
3fb4438e03ddb7ad4b7bdcbbe82456ac  ./tests/intl3.sub
16d60a4ad4ff9770066577e70673f8fd  ./tests/comsub.tests
088f72f6ef260d6a3bf6c4970ed52fcf  ./tests/errors6.sub
b59134915deafe480bf3b4c40a47b0b0  ./tests/run-more-exp
7095ca486d755fb6b92f549866ff9ea6  ./tests/run-arith
7c39f0163ae60671979d3f7fd342c67e  ./tests/comsub-eof4.sub
ce6a97b1520d25f87b20410e0fc5d771  ./tests/array5.sub
a738f246fdaacbe07d867153f99ffc78  ./tests/run-strip
30ab86f955e8e1d19fd062dbc70a4f38  ./tests/posixpipe.tests
e073fc27a83e4c8acb8fb86c29a0de20  ./tests/set-e3a.sub
e9e30917835da29a3b9a2b4c82bb5603  ./tests/run-mapfile
8d9df1c8a5f0e8f0e59619ebeb81f27d  ./tests/iquote1.sub
f98e5dae1f8ffec9e2c885d4b3cf0a72  ./tests/varenv8.sub
f2dcdf6dd8a0cecfbe68420cdd00f72d  ./tests/comsub-posix1.sub
4b3512b6d2d8f69b10a83be197931aa2  ./tests/run-extglob
6b57258cb0f256d4a1e3a00a4edcbee1  ./tests/history1.sub
78b048aca5cfdb1fe599c4031a1f250f  ./tests/array2.right
8ecbd2d0b89e3252480f1d9898732c5c  ./tests/run-array
c4d89706a471397780fa5c83534c9c44  ./tests/source2.sub
3943c554da708e50327ded709ec04697  ./tests/dbg-support.tests
9b30b430017949d419e99ff832112daf  ./tests/set-e2.sub
03adc47fc37afabff8743ae5250521b9  ./tests/assoc.right
050ad2eee5bd39b7bd4c18363be6b913  ./tests/lastpipe2.sub
1ed2255b8374ad473757f4f0dbf93e0f  ./tests/dollar-at-star8.sub
4985438b465ccd948084174cd6d5012d  ./tests/run-rsh
f5866f2038352b271e4f40fb2577fa4f  ./tests/histexp2.sub
d4a5231a3a02f8a87ca7663a0e69a390  ./tests/appendop.right
99db10fa4700a86f6f15c019f046d8d7  ./tests/arith4.sub
f566e1d6a531d4ef791862f79037100f  ./tests/posix2.tests
99b84d0ca413bdf1f7fd23eb7ca38a03  ./tests/comsub2.sub
f594c25d3f6b832f3d8215fde39ee618  ./tests/set-x.right
176b9bbe63a461e775501f3fd000d8c8  ./tests/run-posixpipe
56832cd2644ff2a608932bb8b19ec433  ./tests/run-arith-for
58e8cc6f359f934cd8ad3b454656fd70  ./tests/new-exp11.sub
ebbcc4ef03e2ad5b94dd699146c88b02  ./tests/intl1.sub
923acb60590ec904bdeeb85a32615f9d  ./tests/exportfunc1.sub
5e55aeaf13e33d37a282437bbd549a43  ./tests/exportfunc.right
e6aeeeec5b8d74b7a5e4953df55dc120  ./tests/unicode1.sub
0a4993a00540f6d3d69d09532de4ddc9  ./tests/new-exp.right
ee0a74d0a0f438ab484a341c8150db2f  ./tests/errors2.sub
a542ef8c9add7012c434f281ca080fc1  ./tests/dollar-star3.sub
d1b89583aee411d873f3ba2621e3bd84  ./tests/exportfunc.tests
2d8f03b63b0c7ac564b234ec43c51172  ./tests/lastpipe.right
170ba60b828cfea03f5e621289085d97  ./tests/array14.sub
0274670cd3c495db36debc3fa3ec135b  ./tests/rsh2.sub
c8270b01b9b8654770d3fd4ed1272eb7  ./tests/jobs3.sub
2608b163403edec7789f083fe50b8688  ./tests/type.tests
42c5ea4f2db5ff6db2228e0dab94d6f2  ./tests/rsh.right
8798955d04074f255db637887e1879e6  ./tests/redir8.sub
6fc26c683564a0d8e7d4f0d747eda7ec  ./tests/test.tests
7c8717166504f6452ed18b07a29f3ad1  ./tests/posix2syntax.sub
b887f401d2b32c4f7bb26a153fa0c975  ./tests/more-exp.right
a67a513760fac1881674637fe2d7f48a  ./tests/array.right
431dcbc4d56303dd45e4b5cdaf66a94e  ./tests/histexp1.sub
7acdd70fe3fd54a6360c28884c001d0f  ./tests/parser1.sub
5e1b4d380f6aab8cad6cadf044845f45  ./tests/exp9.sub
d9bba3ab236291ac78dc565b5d5a63c4  ./tests/builtins4.sub
0d3c4f2b495b209c1122f4596238a78b  ./tests/new-exp10.sub
8d8f711e9572670085079b9f84707a5a  ./tests/alias4.sub
fb3268c52d45c2287c00d522aeeb475b  ./tests/run-dollars
70b5c9a0883c3672b90827cde36d1d7e  ./tests/braces.tests
3033145e5614108ea943ac0e6c8d8e5a  ./tests/intl.right
49c90fd177facf91954447422f3e53b1  ./tests/input-line.sub
40401ee9058e7a835b462a4c22425695  ./tests/extglob3.right
6a8cd4fbfae35fc0fa3a52c326ef9921  ./tests/nameref15.sub
10cb647101a37aeef7cf5511f865d994  ./tests/dynvar.tests
a9b3d790ea8c2f385059a904b5e2619b  ./tests/nameref1.sub
5b18718efe6094406e631e474b59e031  ./tests/redir2.sub
cc4b8dc2527fc3cd274b603d935ae2e8  ./tests/procsub.right
4c814172d6f894a35156a310bccdc437  ./tests/assoc6.sub
33b4ec366fdafd11329a8996554d02e6  ./tests/alias2.sub
2b2023926bc911ff5e7ffab347b29b93  ./tests/nameref9.sub
26db20fbfa0bed29dad1f28f7cf299b8  ./tests/builtins6.sub
0ed155f2a1430db874d40c60ad88dda6  ./tests/assoc5.sub
36dfccc7da5edbcc6788b277963790fd  ./tests/ifs-posix.tests
fc78fa7d3648f61b8943f49eb91720ac  ./tests/run-errors
f538c88a0575e29d3dfce1e431ac5262  ./tests/read1.sub
27ddf17a6cf06fd5295c3fdc86c99bf5  ./tests/nameref16.sub
3867bc7cfcd8a27b82fd076fc38f7a6f  ./tests/comsub-eof.right
06463597d3356d47ed43e7946886eecd  ./tests/herestr.right
2b35198c67853b1bf0727c4476b175a3  ./tests/source5.sub
fe7823b8185eaf23e560e1937331b6c4  ./tests/exp.right
11bd1d0901c7adfa2f75234b46bab29e  ./tests/run-dbg-support
76de7c8486a4af8a500668b0e6be87c1  ./tests/run-glob-test
1290fef00cbdf1607ccf01d971ac50b9  ./redir.h
133daaffa0ad9c8d6b879737e24b6904  ./hashcmd.c
90af2a38a61df82dcfe755e13f4c0e9b  ./print_cmd.c
cc08a8ce4f027a7508f693401aeb0306  ./jobs.c
76a55738afd39139dd2d7555595e6ace  ./locale.c
1231fb0208d6e6824c0660b3ca47e9b9  ./bashline.h
ed4dce8f6ec807b04c3c24d4da409fb7  ./copy_cmd.c
92ab3757104165eb2bbbd974e83c41e0  ./eval.c
aa9b36b2325d32c41ddc39750c70e978  ./unwind_prot.h
e44e214dc56136122f66da5f2d0c3fcf  ./error.c
ecfa86baf9a29200497c7b3cddb1b79a  ./version.c
816f31370a1c0a51676365b921bd4121  ./pathexp.c
aa371c8978ef18bf58a465b6e29e3358  ./parser-built
cd1e2301fa0d6ea833ce5cd91b1ca006  ./subst.h
26b24b34d024ab2aec31af3eedfc0847  ./po/en@boldquot.po
e42e3e489c2526d9815e5ed3c4915d4b  ./po/af.gmo
d92ec93839abbc831477e0eabf2df91a  ./po/lt.po
5629f5051cf3cfb86da1dd9d538eae10  ./po/es.gmo
c7fa02003d2ea7dda5dd92bca6afbce4  ./po/ca.po
26bff27763293388a70725c4c1bedf93  ./po/ru.po
140858226cbabd8977f21e2f29168bb1  ./po/en@boldquot.header
4c2308119eaccb3381e340828e307599  ./po/de.po
36a4eda984fcfbc2746a5d0996adbb94  ./po/ja.gmo
6c79a05462cad28328e28d793ca0444d  ./po/de.gmo
4888f78cdf8824812be4786cbf7c1b09  ./po/zh_TW.po
d17fd17c795d19f53e8d6d5e7d68d250  ./po/LINGUAS
957a59087a0223b0e22ea294f30e4a55  ./po/ro.po
540aa2c29d5a7100eca06487165408d7  ./po/Makefile.in.in
499b8fffb1f1438fe1d503151fd5a1eb  ./po/sk.gmo
f652c7cf9496049a47b091513f120a45  ./po/quot.sed
ddd397d948b4affd0a9850ab19c5f46c  ./po/sr.gmo
8b10e39b744173c8529f7c8778bfa0f3  ./po/id.po
e1e66bee343152afe23437a609884e76  ./po/bg.gmo
64821786af042873444a6e013154ce12  ./po/vi.gmo
9f72ef7fe3e7c7330c158be85dc1bd4c  ./po/boldquot.sed
debc6574dfe549a0ce203ae8f4ec006e  ./po/pl.po
9e018f5eaf00254fdafbf09ba63df2c2  ./po/pt_BR.po
4d296cbd3b3c108916685fa95772c840  ./po/bg.po
dba0804a7e2d95c9cad32074e9e1db49  ./po/ga.po
f2442c80ae32655607049deec9fc9fa7  ./po/fr.po
4058e3af6c83f511f54a7abd7bd9b71c  ./po/en@quot.gmo
4d43527e66aae700057d52b1665e55f0  ./po/ja.po
37b84a20964404a0e3367b168fb1e551  ./po/eo.po
ca31f25833018d51ed9fd3ee567e790d  ./po/fr.gmo
bb334b712231c9cf5607c9f4a98d90ed  ./po/sr.po
47dc7e611774d60605b0012c93f97aca  ./po/ro.gmo
aaf03a1b1d0afa75970594acde047455  ./po/bash.pot
f1f9727ebec008a31999620089c0590a  ./po/en@boldquot.gmo
be51d46ffd8b850017fa9ec991763114  ./po/da.po
3533a9dbf5b11aff2a18f69af44bf61d  ./po/zh_CN.po
ad4e97ff74edff4f00c0f7c180fb54fa  ./po/lt.gmo
905ceefdd67121f1a3f4f6417d043d0b  ./po/eo.gmo
88025f3ca24e206a3378c2587675a246  ./po/uk.po
f426ae3683f395fedfbb047206b58603  ./po/cs.po
0acd88c6ac79c87a5be26ad659fe7126  ./po/Rules-quot
62925a0534be06b01cc236d673b87754  ./po/nb.gmo
1db7ba5bf01b572370571c71bfe83442  ./po/ca.gmo
8242fda95b942e9f7df7abae4eca849b  ./po/sv.gmo
a17d98ad50b7b57a4d2be6b8b11dfd52  ./po/gl.po
0a03f23661ffd2a4d59ffeb38a7f4b10  ./po/af.po
c1305e59cdaedededc89a0f20bfd7695  ./po/en@quot.po
55ad02fb6e7e5aec92304d2018ed8eab  ./po/da.gmo
03e254ccdae925821da2f71a8369a12e  ./po/zh_CN.gmo
c1f5a124111b1284c254efd15f091513  ./po/es.po
64253a64392c1711f43dd898214cf840  ./po/it.gmo
0dd85b33f6f5fc905dbdf4ceded88e1b  ./po/fi.gmo
d8de6f5f00a661ba39b2094d075963bd  ./po/id.gmo
e49f799de64dec5c3d4787317c518b5c  ./po/hu.po
62f63d827a6e52cd026e23d3f3a36228  ./po/nl.gmo
55d428b50db8a0697e3ab72d08e6062f  ./po/pt.po
725530ab2003f8ecaf9481cf3f7f205c  ./po/el.po
b8d349a13678a4e0e18c8ee06c1bebea  ./po/insert-header.sin
cd927f43b8af61ceed8b516e7de0730d  ./po/zh_TW.gmo
a3b5252c1d2f5cb729ca04a097942ea0  ./po/nl.po
a7d0aaa56b22809dcbe5d8c277270648  ./po/et.po
74d186fc677c0641f29b07f18596e62c  ./po/et.gmo
1b55825c3eeb800a4aa75f1e8f0ddb09  ./po/POTFILES.in
cdffbd4ef7c97b97f2c72dd5408e8acb  ./po/el.gmo
f3c6b3a29bac4eec505bf8c5fac45af4  ./po/pt_BR.gmo
c204db6982c06bbae60bc333ce9412b7  ./po/tr.gmo
ae2ad0156895c4461ca32fe0524ef902  ./po/remove-potcdate.sin
465f5771e80b3eff8ac6d178859cb0df  ./po/uk.gmo
547f424695460e9f967750740e1b415d  ./po/tr.po
9ada3624d0ffe4a86487f10876bf02f8  ./po/vi.po
5474510cd05c525578d3f36297ce5904  ./po/sv.po
6f97d9a11866f13dff31885ef5873716  ./po/hr.po
2387b71a7af38721c806e29e6a8cf6bf  ./po/fi.po
424693e1171df2a46e12d6b45a01f10e  ./po/it.po
5f7f79148da72c1c2b8b2e80559bc6e5  ./po/README
94aef3e55a18b0d91b0d9f937afda610  ./po/pt.gmo
6f404f4dc671ba9ff69dfc9866ae3edf  ./po/cs.gmo
b790688c79f69dbd10998b336daef2f9  ./po/ru.gmo
4fab037eca87181f2066bda633c7aca7  ./po/en@quot.header
759ab3cb281d43101d92a8a5311c8fee  ./po/Makevars
cd6adb174ab60e163348e29fe1bd5ddc  ./po/Rules-builtins
58b9e91e9e0bb506dc4150605a697aea  ./po/ga.gmo
eeebaa59b9804068b9bb3b592cccde8c  ./po/nb.po
a11a046415fd35b832e841ee443608dc  ./po/sl.po
eb9d2d86cbfb2cd5b43575bbcf3af4b8  ./po/gl.gmo
91d7d6297e1907eeb79b5f344f88ed3c  ./po/pl.gmo
9b61f7a0fd7f7e2d6dde7cfc14829016  ./po/hr.gmo
3b5e86bdd8921e6d80b872048289b77c  ./po/hu.gmo
c3e6d059d419e1c46f144932027216a9  ./po/sk.po
d9e4afc5ffd3bc36b87e7c8d2f201920  ./po/sl.gmo
508d67ad6e5de2e0e69505e0f8b72d37  ./bashtypes.h
a882c889fcffc12070c002512af909ff  ./arrayfunc.h
0656b84099a3397dbe873cfc52d6b61b  ./mailcheck.c
1663a9818752eb2f92dfddc6bae12144  ./input.c
d54d0ec26607429de901e33880b5514c  ./variables.h
3a4560e78db3818f8a3a8d3d6cd6846f  ./config.h.in
a37b52a32c53d845b1623a826c8e82b6  ./findcmd.c
a96bed64985953ab06b2ef17c148b95b  ./general.h
fd41673ae49d374597e4159e8261f5ee  ./MANIFEST
9a4ed1cb85ff905f49e253144dce9560  ./aclocal.m4
aa9cfa75dc14d2a163993dfc87c151c1  ./input.h
9e9f0658e9c2cb2ac556e5525f91aa92  ./error.h
3cb9c50bf03adf1c73734c375baf02ee  ./nojobs.c
454c69d92f867defb64907dd0b9a4bb6  ./pcomplete.c
315af66737d8578e695bbe9043420a6a  ./m4/timespec.m4
499135043b9a522537b719936aeee27a  ./m4/stat-time.m4
74ac8e31f6e972a9793949baddd5d0b0  ./README
5bddbe681e2cb5da1a92fd242ad20904  ./quit.h
fe5e4a496f3829efbd7aa004fb986124  ./bashline.c
2ecfc2175ae2079774f074538470e468  ./lib/glob/doc/Makefile
cf0af04e3799a1163e22ddd0191f4608  ./lib/glob/doc/glob.texi
c9d38837e8f12577070c44f5d8e14cc4  ./lib/glob/Makefile.in
d79ce9ee4d0cd1f44b21a77e194c481a  ./lib/glob/smatch.c
58623094b9adb6d645f5d7f825bd6f99  ./lib/glob/strmatch.c
2f77436be1e294ae835f9de2a1ca8bd2  ./lib/glob/glob_loop.c
46224d4b83cdedbf7912877380a42b13  ./lib/glob/glob.h
52c509b620a61ee3edd9cedecf2c407b  ./lib/glob/strmatch.h
7abfebd75e8f97205d9bd7073eeeed81  ./lib/glob/collsyms.h
535fb2f3a884ae7a0f1072f0d6d24f74  ./lib/glob/gmisc.c
6e133ccc87b45c9653280511e36344cf  ./lib/glob/glob.c
c75628cd83936c87ef2907833164bac4  ./lib/glob/gm_loop.c
e4eb4acbc1ec27bdfc063becc3403390  ./lib/glob/sm_loop.c
17bb0115ceb66e8877c3271940632d72  ./lib/glob/ndir.h
d97646d4b7d1c8b2c893a1ebd3344e05  ./lib/glob/xmbsrtowcs.c
9624c777422a11b270e3ccd80f457db5  ./lib/sh/mailstat.c
0035126f6ba14016d115521600b1389a  ./lib/sh/Makefile.in
93c76afddad726ba4a8bf2bff27309ab  ./lib/sh/mbscasecmp.c
9fcdcc4b0efcf63cc36752e12383a729  ./lib/sh/clktck.c
414ba369d33cbeb266dec94912c5123d  ./lib/sh/memset.c
b507f2cae644eb8ea15139b458de31c9  ./lib/sh/strtoimax.c
b6e442452a62d4ba6d21f7a4dda296d5  ./lib/sh/strerror.c
b8a75791de74ddb98cc94a9c86a14b28  ./lib/sh/strtoll.c
7be0244546242cfd677cd7ded561f985  ./lib/sh/fmtumax.c
eb75e22fea81d6fb86da5f2e3557bafc  ./lib/sh/getcwd.c
0549f16bfd5d037c92385850e91566f4  ./lib/sh/zgetline.c
051c8807dd31fbd3ab3b8a27c07c3177  ./lib/sh/itos.c
650638be36a0b0835d31b4174f2e7b74  ./lib/sh/stringlist.c
fa6530729b750f5562ab21c02270e8e4  ./lib/sh/strtoull.c
1b00854d73a3296286d4062809e07161  ./lib/sh/fmtullong.c
dbf5d27634a2626d09b4fb8ae3bdfcd6  ./lib/sh/strdup.c
c2c21f24c163886e9c8ca4f8e8b6b235  ./lib/sh/shmatch.c
fe2c0ad714d50d6a3570f16c6a3f82e7  ./lib/sh/zmapfd.c
502c918c4183a278937c3e7b9fd46aa6  ./lib/sh/strpbrk.c
6e72cdf38534d5522d717065c936c254  ./lib/sh/unicode.c
4464311946c1b7f6590a28b28c2e78ba  ./lib/sh/timeval.c
f40652e6e2f41f26e334d3d13ad14c3a  ./lib/sh/rename.c
9609354c8705b9fe2f3c43598cef44d1  ./lib/sh/fnxform.c
68aea2aaffec94caea81b7d2380e7b6c  ./lib/sh/wcsdup.c
95b07a5e97f9d213dc462ae6de8508ed  ./lib/sh/spell.c
92a279b4b45bd2f3fcfe3db3f0240432  ./lib/sh/pathphys.c
2232ee4525635d00bb9b3d41bbbe55b0  ./lib/sh/shmbchar.c
0dd4bc5a7eafa170e896234b6490d2e6  ./lib/sh/eaccess.c
b9034374ca1e0dd482ed8a09d40d99b2  ./lib/sh/snprintf.c
dd9f5242c3f0535502459ea463363e8b  ./lib/sh/dprintf.c
08af8b9849086d1ab8bc02837966465c  ./lib/sh/inet_aton.c
1d7e1151a6a6e9167e115d3f3fd536be  ./lib/sh/stringvec.c
692185ff3080d330bc4ce9d6151c549d  ./lib/sh/makepath.c
2dad9a420ffb5f0028016fb875fb5a15  ./lib/sh/mbscmp.c
47d5be6379da4f049c8297fe99f46ff5  ./lib/sh/wcswidth.c
5ab076579f5a2fc4fb50321df36c231f  ./lib/sh/strtol.c
0bf1ecfd79e1fa71c15c1e60d7a78190  ./lib/sh/strnlen.c
f700fd9bdbd4138a2ae156029109f5f9  ./lib/sh/input_avail.c
11a4dc10a5b0342edeb77ff280154989  ./lib/sh/strcasecmp.c
6673573cedea232ad26b4148266f9552  ./lib/sh/strtod.c
c12fbafb84a78c7ed1ed2faca8b8e0ad  ./lib/sh/setlinebuf.c
868dd15029ed1acc7b98f54a849e9b15  ./lib/sh/tmpfile.c
e3047fab3762eb5c4338372189271b70  ./lib/sh/shtty.c
becb826c3528240ece721bcaab914b6c  ./lib/sh/getenv.c
bb567dc7b08eccf9aa7bbf2d26170a5d  ./lib/sh/winsize.c
e970b5d2f97bad27393b7049b4069f25  ./lib/sh/strstr.c
7452662b6b7eaa68fde63a8b6b671399  ./lib/sh/netconn.c
f62cbcd5a2b5cad5ca33de38d7eaea37  ./lib/sh/netopen.c
6e0af813ce1c5b0b221df87412044f1a  ./lib/sh/oslib.c
b49e417eae68fda796d17621bcc8df31  ./lib/sh/casemod.c
ecb13d8e6ffe4bc4d430213dbc45ed8c  ./lib/sh/zcatfd.c
503b7190723324d8ac7b80637685441b  ./lib/sh/strtoul.c
4725cfaf5535c120b3acc61e3eda9344  ./lib/sh/uconvert.c
3b7add984af5d85d9f9258a3689caa71  ./lib/sh/strtoumax.c
3d6d0f71046b482596d7ef692cb67bdf  ./lib/sh/clock.c
24f8d80c766d67b0bf035c02d0d65c7c  ./lib/sh/fpurge.c
f204e7b2897f9294d4f0f8208ef67038  ./lib/sh/strftime.c
5042f96adc4e03164ab27db77f83ce85  ./lib/sh/zwrite.c
809a940eeb5ec23d420319db5e0c51c1  ./lib/sh/mktime.c
5f4f858d9b7c3e65e83dada7a4e56b51  ./lib/sh/strchrnul.c
9f1d06cd1d9eda237f891f8d761e84b6  ./lib/sh/zread.c
e39fe859d4eb64705368547b9b81d971  ./lib/sh/pathcanon.c
a07e014895f74b3ac03543cc0fe90f59  ./lib/sh/ufuncs.c
15932eba81aa7564389520716a03c374  ./lib/sh/times.c
8311be3364b4fe7ff289aa616d277579  ./lib/sh/mbschr.c
1a0458e2d2872a5238287c5ce8759591  ./lib/sh/strcasestr.c
a648d08762047f26645604b0198198f3  ./lib/sh/shquote.c
eb2179075dd9b6400b23aa0e35dbdc69  ./lib/sh/strtrans.c
73839473aae373b9449c64dbf91889dc  ./lib/sh/vprint.c
3263ff485308e146340067a48e4b5258  ./lib/sh/wcsnwidth.c
441b2e97d549b82783e1bd8d53921df8  ./lib/sh/fmtulong.c
b87bc9692f21f0bb73a9b87ffa1a5849  ./lib/malloc/Makefile.in
972ffd6fb1ff8c43ddced1e54a61f558  ./lib/malloc/stats.c
b2fa3e1148ab0138cd458df29504336a  ./lib/malloc/i386-alloca.s
40a7d61e77bae2834672bc9370402026  ./lib/malloc/x386-alloca.s
3ade849dbcea0b3abdfa36ae18ca232b  ./lib/malloc/xmalloc.c
dd09e84026d65bc3baad67668d701b35  ./lib/malloc/table.h
611d59fc43fb78217db4b43bc66123aa  ./lib/malloc/stub.c
e318502423536754d6aefed109c4cc09  ./lib/malloc/shmalloc.h
9b35b19ee045e89e9da72aee4ff5fc79  ./lib/malloc/trace.c
a8ebcae9cb40ea3bd9928b3e862d9ae6  ./lib/malloc/imalloc.h
28f84155f51304b46656d84ba4e18358  ./lib/malloc/table.c
115104616717b29beca8dbc7c01310a7  ./lib/malloc/alloca.c
535608823869d40dbafac4263c76b53f  ./lib/malloc/watch.c
869c5bbedd4d81220d946a27b4793b2d  ./lib/malloc/getpagesize.h
a2ea419b6a1e813eeebd664948f42920  ./lib/malloc/mstats.h
e47b5cc7f8f0a2464330c720f1bb557d  ./lib/malloc/watch.h
51d199e4debc21f75589fcfe85a1ba6f  ./lib/malloc/malloc.c
57df0bc683bab9e66b2b7d6188857339  ./lib/malloc/xleaktrace
f25563a4ec69e4398ee5c94e17999d72  ./lib/tilde/Makefile.in
a5f7a0953b3a2f3744fad2a83b0835c3  ./lib/tilde/tilde.c
6367b119238a58b510a9c9b000533b26  ./lib/tilde/shell.c
dd7529358acf4efd1d3fcbbdb3a2122d  ./lib/tilde/README
4b810af2c83168d3cd86815a6bbeaaff  ./lib/tilde/tilde.h
5e0b46ca9bd339825dc767fa8fccedc1  ./lib/termcap/Makefile.in
566ca6b6bf654a5b8fd7e6face4b9380  ./lib/termcap/termcap.h
80f4bd38f4de4132ed3a86af583a469f  ./lib/termcap/ltcap.h
690d1c1a0ec3c278a722fde8a399a73c  ./lib/termcap/termcap.c
13c3b25d2d5dfbdc01e887c6d2f06606  ./lib/termcap/tparam.c
c54ea59b1f57821afe8f04748ca0be24  ./lib/termcap/version.c
47154544ab73c26a5b6ff0c683a0c53e  ./lib/intl/ref-add.sin
4f3e90616276ea41a32c50b9ebe397db  ./lib/intl/Makefile.in
ba7d579854539448f7a76eb33cbbc1a5  ./lib/intl/ChangeLog
68692f1a92c690c5efea81769b94dba1  ./lib/intl/gmo.h
1677bc2e34917c41fe50fbf6dc8a955a  ./lib/intl/ref-del.sin
5149d37191efbcbc0995d62216338310  ./lib/intl/dgettext.c
61e668a41b906c03c00023d57f8c5c07  ./lib/intl/l10nflist.c
1e98a64aad19104d6ebf3034cf69e18e  ./lib/intl/os2compat.h
77d7f7f9aa3faa10c1fbfba9459b53e2  ./lib/intl/finddomain.c
17835c6ed19a1e03f2e0f2c9215e8691  ./lib/intl/gettext.c
b0bcfe220971d8c63197cf22d77b03ab  ./lib/intl/plural.c
a9ae683d6494b43f02508cb0150c5c84  ./lib/intl/bindtextdom.c
b107a2948f6bf4a7a765af744079201f  ./lib/intl/dcngettext.c
1576bad9074c2bbb0c674ec77a2927b3  ./lib/intl/localename.c
66213e106a88a9ccec4fb60d290c1d83  ./lib/intl/hash-string.h
745c61f03e5ed2c9f49bbf46d70e5d5a  ./lib/intl/localealias.c
f58954e1e0c42486288f5da45d7e1f06  ./lib/intl/loadmsgcat.c
f7e1f10e11be24c92003db97cf55ed91  ./lib/intl/intl-compat.c
824fcbd20158f2ad155773e825fa588d  ./lib/intl/eval-plural.h
a3be829b47019c5725e8d6eebf76682b  ./lib/intl/osdep.c
9bc50f55b6b6a5cabf290aeba194e47e  ./lib/intl/config.charset
e4a6fd71dbbf8812fedc1c27e570e91d  ./lib/intl/log.c
76ca170a525d5b84d90f0478fe788931  ./lib/intl/VERSION
d3ce7a7265c5e2ff727f2c7dab6d9d80  ./lib/intl/gettextP.h
702820d59a1003203a32a6bf5871a13d  ./lib/intl/plural.y
4da4a4f7d3fc5c6599e63268ba68ad77  ./lib/intl/textdomain.c
84e7f0e9f14600e994143f0c2b855c9b  ./lib/intl/ngettext.c
2a9f4fdfd2204f05667bcfcf24f1550f  ./lib/intl/dcgettext.c
432b87e3670cb7c4e6effd8023ca8955  ./lib/intl/libgnuintl.h.in
8dc19114ce449c8e4bb06aace8704852  ./lib/intl/os2compat.c
81c743388efa49a208b441d956d02006  ./lib/intl/plural-exp.h
be758c2f2663fca2652b4e51539a1fdf  ./lib/intl/loadinfo.h
0ef79520ecd00db949efe43f72d8ac54  ./lib/intl/dngettext.c
c8096c04cd9f5c6fb05d63496c9e084c  ./lib/intl/plural-exp.c
29c55bea8dab934b7035bd553d242556  ./lib/intl/dcigettext.c
a15c0c2a33abc9e8c12dcf9987eaaa76  ./lib/intl/explodename.c
26e74e5dd046d43a2b1a1b44ec7a6a56  ./lib/intl/localcharset.h
86b86d193ed775abf2b459e316ed0070  ./lib/intl/localcharset.c
fd8765cf938bf0fc085fdb7301e821a7  ./lib/intl/relocatable.h
0ad52aeee8edac39b8bd8b6e6abe8284  ./lib/intl/locale.alias
a2c82417ec5a6d18be2baef865c5a1bb  ./lib/intl/relocatable.c
c34e79d96dd40e7643b7366d2d928f07  ./lib/readline/doc/version.texi
9011c6a31fbdb204b2a04a8f93cd1872  ./lib/readline/doc/Makefile
301814fadf04dcaa8dba6d2a9578b75b  ./lib/readline/doc/hsuser.texi
f2c574e6fd68c3c8d119485eaad89a76  ./lib/readline/doc/hstech.texi
b35bf3782935e4487f8dcc9d1c0ff91e  ./lib/readline/doc/rlman.texi
8576d039a679f02a9b7decf2996164cb  ./lib/readline/doc/rltech.texi
fc4331ed5b1a18b6c26cd971b80fa050  ./lib/readline/doc/rluser.texi
4e62e55398e7af4d4f8257ab56a72e3c  ./lib/readline/doc/history.texi
072910d553f79906db69fa7c0e956bba  ./lib/readline/doc/fdl.texi
8dc95bafc6eb5b4ec0bb0e1b7a7f5890  ./lib/readline/doc/rluserman.texi
039febb24d380307a9ed96d8e0767092  ./lib/readline/callback.c
6cac2a4379545cecf2ad18b3359b3e3f  ./lib/readline/emacs_keymap.c
c114b85cbcd5b1eec49cc65443cdcb2c  ./lib/readline/Makefile.in
7232ed3b7857122e8a53a99bc6efc38d  ./lib/readline/ChangeLog
83c1a52f267a25a5433f38c876516090  ./lib/readline/macro.c
5726064852131ae142d7cccd7ac664b0  ./lib/readline/colors.c
74d4df5cd77c38604565f89c21fcacc0  ./lib/readline/rltty.h
4ad4f0207bcb95eecbfd045cc8abd189  ./lib/readline/complete.c
5ede70a48f9148ac48441bd7a27d13ff  ./lib/readline/colors.h
0bab71b938eb344efbe8916f3d57bc65  ./lib/readline/ansi_stdlib.h
620c7e85b5587e6fb2729b9e9140ba68  ./lib/readline/posixdir.h
94f279db5d1e960563410926071e69de  ./lib/readline/bind.c
e8cf9ce0ae23eb40b5e2b191515ce1e9  ./lib/readline/posixselect.h
e432eb4df2399ef6aaf7f85e5e8f9d5e  ./lib/readline/posixstat.h
0daba0bbbd92284bd012090eb96ad5c3  ./lib/readline/histfile.c
f5b0bfe10af6b0487cc6c1c275ba9593  ./lib/readline/histsearch.c
185bf4027d8641ccf344aed3997bb706  ./lib/readline/isearch.c
4c38bfdf42677c710c270c654d4081f6  ./lib/readline/parse-colors.c
32e6f8515635f2a21b7ba555742980be  ./lib/readline/misc.c
35aa356fff4f759751b0850c717d9d33  ./lib/readline/funmap.c
85cfd328e5b060b204b9fe1e5809df82  ./lib/readline/readline.h
ac922dcd0b2c91ee5b68125a7ec17d37  ./lib/readline/rldefs.h
3c9f0c2ffe2e840bcffda7dc99b17097  ./lib/readline/xmalloc.c
65151ae1a011e152402f270b7d4633c3  ./lib/readline/examples/rltest.c
5b43fe2710d96cb383a4c9d8199ad2ca  ./lib/readline/examples/rl.c
29f9c14ad5b29d95ee2ab26410f34a56  ./lib/readline/examples/rlcat.c
82f40dde0b5c804d058eff115bc4fcf1  ./lib/readline/examples/Makefile
df3287a2a5ebeb3189ee601408cd5991  ./lib/readline/examples/rl-callbacktest.c
468328e08cf3fd2cbd7ec3481de4a9d5  ./lib/readline/examples/histexamp.c
228fdc869bfde1be5a26e6c274eaf5cc  ./lib/readline/examples/fileman.c
05e58ca0def73f34efef5ff4cac6a939  ./lib/readline/examples/Inputrc
d1d82ede8c5e85a0281af2d1c327fa1b  ./lib/readline/examples/manexamp.c
032c96681caa1f2c3aae6163b9dd89e8  ./lib/readline/examples/excallback.c
4e4cbb722542fc342e06b0c592e6f039  ./lib/readline/rltty.c
11368baf23970de35833a56f13972d17  ./lib/readline/undo.c
a5f7a0953b3a2f3744fad2a83b0835c3  ./lib/readline/tilde.c
43193f028a5cf0fab061b6d1135d41f1  ./lib/readline/shell.c
5ec5eb2bbd58665ce39d3dc6564ff768  ./lib/readline/keymaps.c
69c4eddc17066af7f3deccae301b7cb2  ./lib/readline/util.c
f23c94c9d1cd34e7c2d9469d5c5651d4  ./lib/readline/savestring.c
b4e8888ab8ed3a4d84679fd74e1df092  ./lib/readline/xmalloc.h
d6bbfb3e33fbc3488a10452670d5755e  ./lib/readline/rlconf.h
abaad1067c80b01dde50486731dad458  ./lib/readline/histexpand.c
f5df9557ec7fced94fede0e7a3e93b0b  ./lib/readline/rlprivate.h
b5fc756b0f152e134278645b689bd27a  ./lib/readline/rlwinsize.h
7c9e37f6ded2de2d611e6533edd99d67  ./lib/readline/text.c
02120f1e3b60238eff5541ba539dc8bc  ./lib/readline/chardefs.h
f07ae0b355692aa5ec9594fae2e90cf8  ./lib/readline/histlib.h
4935cecce5b3fbc335bac079ae105019  ./lib/readline/mbutil.c
bd8ee3335e7c5fa83bbc703152419a13  ./lib/readline/rlstdc.h
809ad68d08ea4fd1457279388c04bb9a  ./lib/readline/rlshell.h
a281f656ef63cfab0132649f1af43d0b  ./lib/readline/history.h
9f398666c4d5c91d2c756c24a02cbfc4  ./lib/readline/nls.c
9ca88a9bb1bd901a32b9bb49f4b7c108  ./lib/readline/terminal.c
f4081c3556d3c577290e6fae30659557  ./lib/readline/signals.c
2b122ab3c1511c7fae2dd186b3e4ce29  ./lib/readline/vi_keymap.c
f9f0bab9b1fe9bec4372062f4e0e5276  ./lib/readline/compat.c
57578bae236604ed6dc466397615a496  ./lib/readline/search.c
a6779e1c5e4e14185b51bd4e996402eb  ./lib/readline/input.c
0746f269c36c8aa234ea74cc20fe56cf  ./lib/readline/tcap.h
9940b980cee7e32e02193abc62590b76  ./lib/readline/rlmbutil.h
f8070ceeffc2364fb6a943f6f68a5e58  ./lib/readline/keymaps.h
e194e93b2d732981066cafa2f0a47b4f  ./lib/readline/rltypedefs.h
077a15ba01bd498f5b9f0f520e0bf8b3  ./lib/readline/posixjmp.h
a7bd2c5a975665a9357754790bc8abf2  ./lib/readline/README
7a29da87ea2c96062860669ef8b33a91  ./lib/readline/kill.c
f2932cf8b2dda34e2584c0f7d52cf1c4  ./lib/readline/vi_mode.c
22dbcbc422a9a69439ab1bb4fd89792e  ./lib/readline/STANDALONE
d32239bcb673463ab874e80d47fae504  ./lib/readline/COPYING
d109ef94402e4db5b3ce76273f0f5136  ./lib/readline/parse-colors.h
0dbdfff0400f923228b9faa31b09105d  ./lib/readline/parens.c
5c7a5b59204c7fbdec65612fef86ccbb  ./lib/readline/display.c
37617e7abcec042d7c3fd9eede2a9981  ./lib/readline/readline.c
c6e7e71d397a1b4575a7c52169bd78af  ./lib/readline/xfree.c
01d8d2fe1f165f4e16e9b7306511aad1  ./lib/readline/history.c
4b810af2c83168d3cd86815a6bbeaaff  ./lib/readline/tilde.h
e33b7e537fd06e554c593584f9ef9ab8  ./configure
6220fbae73304a052ffa1cedcf3b2a44  ./flags.h
ea11ff7f408a2bfbc18fd0d9c59d3c85  ./Y2K
df0a6a71ed282704114298c8cd1ca5d4  ./config-bot.h
801a5a44a7471ea5aeb2c0ed8c7a3b8f  ./mksyntax.c
3429d1a38fbf4cfc77b5ca9e3a7596a6  ./configure.ac
914bb7070d3a0e229cf4b329b7f2f2d8  ./hashlib.c
6b550e197d34dbc6efc4a9d1e504169f  ./pcomplib.c
d32239bcb673463ab874e80d47fae504  ./COPYING
570528f5bae956cca82c00e070596971  ./general.c
3f93311dec260b83d57eaff66ce3f2fd  ./bashjmp.h
d435e1400edd47edc732ca3f28c23042  ./arrayfunc.c
3fd4caf72a78c8d582cdc35a8669e583  ./pathexp.h
52dc685bc0ce11f362dd7a10b6013bb4  ./support/bash.xbm
2021591f44bcef200cff969ec80fa845  ./support/texi2dvi
d0e26cb94266f93757a3fdcec87c7c0f  ./support/mkclone
88476a65fa6438dbef6255e639d6bb34  ./support/Makefile.in
1d68db8aa18dc87c69e52a710da2cd7d  ./support/shobj-conf
ad82646514a7f2c743dc83ce2b2b5d84  ./support/printenv.sh
a1dde48f776886228ecaa1230f8921e1  ./support/mkconffiles
e15bc57d4a9dc27bc82270c8175e25c1  ./support/mkversion.sh
64ddebedfe094d725fb5df443e0555bf  ./support/config.rpath
bbf1c95b6ae6ee2fbd7b8d55c6284441  ./support/config.sub
2d513ac9d63b5973021ea27718532c94  ./support/SYMLINKS
f4ca6a9ca0bede9a0eaae64f0714efd3  ./support/config.guess
4e2d782878054aa75d29cea26391c3ba  ./support/fixlinks
f11af6fb159f13e85b0c1ec6ec08ffdc  ./support/recho.c
78cc21ea66df5c5578a77153ab191eb0  ./support/texi2html
8579718a3aa61eed988d31f24958db68  ./support/zecho.c
d9d304a90cc66c704fa652f6f2e0be83  ./support/bash.pc.in
537c1dfc8ed232c07360d5e5ad8c3443  ./support/mkdirs
323b934ca4dde9c6c5414e70b446fede  ./support/printenv.c
792922784eade1d03ecb1b33ba8bb7c3  ./support/mkinstalldirs
f01cade8404f87f796fee1a0a296092d  ./support/install.sh
8a5b4d266a0c8d4658e362a21608bcdd  ./support/mksignames.c
09e40ecfdcb25803b6998ca593ecaaad  ./support/rlvers.sh
3749b75fd8227d89f29636a47a181e9c  ./support/xcase.c
fce7211629dc4b85307c59b4ea5781b2  ./support/bashbug.sh.in
a60fb778240accc54a051f4bd100ccf2  ./support/missing
8a09778fae2494c17120b05f26c1242e  ./support/man2html.c
10865cf7dc85c1cc35275a09075570f8  ./support/xenix-link.sh
da7f37c8928376450c1eeb24c9b84dc6  ./support/signames.c
13314a4d51584fb6669333f5753092f1  ./support/bashbug.sh
a844702710fcc4cc39c885d9b31a7b29  ./support/checkbashisms
0876b8a36df538011a2d18c5d6d0eb6c  ./support/bashversion.c
fb99a53b9358d9a73dbafbf03494f917  ./expr.c