-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash-5.1-time-stamps.txt
1411 lines (1411 loc) · 43.1 KB
/
bash-5.1-time-stamps.txt
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
1607093680 .
1465512960 ./ABOUT-NLS
1600090486 ./aclocal.m4
1591376654 ./alias.c
1591377183 ./alias.h
1598884458 ./array.c
1605041821 ./array.h
1602257938 ./arrayfunc.c
1588195455 ./arrayfunc.h
1591376842 ./assoc.c
1587320133 ./assoc.h
1330390041 ./AUTHORS
1231097542 ./bashansi.h
1597670440 ./bashhist.c
1591376437 ./bashhist.h
1477857454 ./bashintl.h
1483403768 ./bashjmp.h
1601904190 ./bashline.c
1576255162 ./bashline.h
1240610634 ./bashtypes.h
1591376941 ./bracecomp.c
1591376678 ./braces.c
1730894944 ./builtins
1591377789 ./builtins/alias.def
1410053067 ./builtins/bashgetopt.c
1591377300 ./builtins/bashgetopt.h
1582830973 ./builtins/bind.def
1591377799 ./builtins/break.def
1525356674 ./builtins/builtin.def
1568647909 ./builtins/caller.def
1591377813 ./builtins/cd.def
1564056011 ./builtins/colon.def
1594758581 ./builtins/command.def
1581539167 ./builtins/common.c
1594137445 ./builtins/common.h
1595273260 ./builtins/complete.def
1597418401 ./builtins/declare.def
1544201572 ./builtins/echo.def
1591377658 ./builtins/enable.def
1453746517 ./builtins/eval.def
1563653768 ./builtins/evalfile.c
1602257834 ./builtins/evalstring.c
1581083713 ./builtins/exec.def
1591377679 ./builtins/exit.def
1598456280 ./builtins/fc.def
1591377700 ./builtins/fg_bg.def
1591377336 ./builtins/gen-helpfiles.c
1414958466 ./builtins/getopt.c
1591377361 ./builtins/getopt.h
1581439512 ./builtins/getopts.def
1592339166 ./builtins/hash.def
1591377586 ./builtins/help.def
1591377727 ./builtins/history.def
1218745899 ./builtins/inlib.def
1591377738 ./builtins/jobs.def
1591377749 ./builtins/kill.def
1481577296 ./builtins/let.def
1564056225 ./builtins/Makefile.in
1591377763 ./builtins/mapfile.def
1591377283 ./builtins/mkbuiltins.c
1591377573 ./builtins/printf.def
1218743813 ./builtins/psize.c
1381756475 ./builtins/psize.sh
1591377492 ./builtins/pushd.def
1591377508 ./builtins/read.def
1568647903 ./builtins/reserved.def
1546963180 ./builtins/return.def
1596479503 ./builtins/set.def
1597418417 ./builtins/setattr.def
1581539043 ./builtins/shift.def
1591377387 ./builtins/shopt.def
1591377431 ./builtins/source.def
1591377440 ./builtins/suspend.def
1483393489 ./builtins/test.def
1231097543 ./builtins/times.def
1602604664 ./builtins/trap.def
1591377468 ./builtins/type.def
1591377405 ./builtins/ulimit.def
1591377546 ./builtins/umask.def
1586459637 ./builtins/wait.def
1492607748 ./builtins.h
1605110683 ./CHANGES
1597431879 ./command.h
1596829333 ./COMPAT
1576006663 ./config-bot.h
1605540866 ./config-top.h
1589910862 ./config.h.in
1607090714 ./configure
1607090695 ./configure.ac
1231097543 ./conftypes.h
1591376693 ./copy_cmd.c
1218546032 ./COPYING
1730894943 ./cross-build
1005665789 ./cross-build/cygwin32.cache
986914824 ./cross-build/opennt.cache
1523371726 ./cross-build/qnx.cache
904057948 ./cross-build/x86-beos.cache
1730894959 ./CWRU
1607093092 ./CWRU/changelog
1607093688 ./CWRU/misc
1218994830 ./CWRU/misc/bison
1231097544 ./CWRU/misc/errlist.c
1231097544 ./CWRU/misc/hpux10-dlfcn.h
1231097544 ./CWRU/misc/open-files.c
1275258884 ./CWRU/misc/sigs.c
1231097544 ./CWRU/misc/sigstat.c
865436578 ./CWRU/PLATFORMS
901124096 ./CWRU/README
768753830 ./CWRU/sh-redir-hack
1252701055 ./dispose_cmd.c
1591377159 ./dispose_cmd.h
1730894952 ./doc
1471621259 ./doc/aosa-bash-full.pdf
1405958690 ./doc/aosa-bash.pdf
1381757457 ./doc/article.ms
1384951889 ./doc/article.pdf
1382454471 ./doc/article.ps
783376319 ./doc/article.txt
1605729843 ./doc/bash.0
1605729839 ./doc/bash.1
1605730389 ./doc/bash.html
1605730386 ./doc/bash.info
1605730390 ./doc/bash.pdf
1605730386 ./doc/bash.ps
1596815899 ./doc/bashbug.0
1596397189 ./doc/bashbug.1
1596815891 ./doc/bashbug.ps
1605730387 ./doc/bashref.dvi
1605730389 ./doc/bashref.html
1605730345 ./doc/bashref.info
1605730392 ./doc/bashref.pdf
1605730387 ./doc/bashref.ps
1605730333 ./doc/bashref.texi
1605730387 ./doc/builtins.0
1521127851 ./doc/builtins.1
1605730386 ./doc/builtins.ps
1546440017 ./doc/FAQ
1236699764 ./doc/fdl.texi
1236699810 ./doc/fdl.txt
939135511 ./doc/htmlpost.sh
1054224216 ./doc/infopost.sh
919286022 ./doc/INTRO
1590007309 ./doc/Makefile.in
1605733706 ./doc/rbash.0
1218547491 ./doc/rbash.1
1605730386 ./doc/rbash.ps
919286124 ./doc/README
1135958198 ./doc/rose94.pdf
938460221 ./doc/rose94.ps
1449495365 ./doc/texinfo.tex
1604002749 ./doc/version.texi
1591376854 ./error.c
1591377144 ./error.h
1598884791 ./eval.c
1730894948 ./examples
1730894949 ./examples/bash-completion
1494807346 ./examples/bash-completion/bash-completion-2.5.tar.xz
1495135531 ./examples/bash-completion/README
1607093689 ./examples/complete
1219454417 ./examples/complete/bash_completion
1027528799 ./examples/complete/bashcc-1.0.1.tar.gz
1362190236 ./examples/complete/cdfunc
1362190461 ./examples/complete/complete-examples
1730894949 ./examples/functions
1362190734 ./examples/functions/array-stuff
974825776 ./examples/functions/array-to-string
1492524755 ./examples/functions/arrayops.bash
1508153694 ./examples/functions/autoload
1576007726 ./examples/functions/autoload.v2
1245188352 ./examples/functions/autoload.v3
1576007768 ./examples/functions/autoload.v4
1502882788 ./examples/functions/autoload.v4.t
694127838 ./examples/functions/basename
1576007783 ./examples/functions/csh-compat
694127834 ./examples/functions/dirname
1397830389 ./examples/functions/dirstack
1028226024 ./examples/functions/exitstat
694127848 ./examples/functions/external
982944326 ./examples/functions/fact
1362190948 ./examples/functions/fstty
1362190988 ./examples/functions/func
1362191040 ./examples/functions/inetaddr
888947834 ./examples/functions/inpath
1551479258 ./examples/functions/isnum2
1018537085 ./examples/functions/isvalidip
1362191182 ./examples/functions/ksh-cd
1362191207 ./examples/functions/ksh-compat-test
1362191234 ./examples/functions/kshenv
801256712 ./examples/functions/login
1362191322 ./examples/functions/notify.bash
1362191378 ./examples/functions/seq
1362191401 ./examples/functions/seq2
1551472588 ./examples/functions/shcat
1551472609 ./examples/functions/shcat2
1576007704 ./examples/functions/sort-pos-params
1362191492 ./examples/functions/substr
1362191539 ./examples/functions/substr2
1362191574 ./examples/functions/whatis
1362191597 ./examples/functions/whence
1362191638 ./examples/functions/which
1521747344 ./examples/INDEX.html
1521747327 ./examples/INDEX.txt
1730894950 ./examples/loadables
1584536316 ./examples/loadables/accept.c
1600875938 ./examples/loadables/asort.c
1584537417 ./examples/loadables/basename.c
1477919681 ./examples/loadables/cat.c
1587133546 ./examples/loadables/csv.c
1587393997 ./examples/loadables/cut.c
1545845588 ./examples/loadables/dirname.c
1551468323 ./examples/loadables/fdflags.c
1593442592 ./examples/loadables/finfo.c
1539110883 ./examples/loadables/head.c
1451345911 ./examples/loadables/hello.c
1497970405 ./examples/loadables/id.c
1591380340 ./examples/loadables/ln.c
1438027423 ./examples/loadables/loadables.h
1438028934 ./examples/loadables/logname.c
1600874807 ./examples/loadables/Makefile.in
1440704589 ./examples/loadables/Makefile.inc.in
1558703908 ./examples/loadables/mkdir.c
1580834371 ./examples/loadables/mkfifo.c
1553870341 ./examples/loadables/mktemp.c
1463444243 ./examples/loadables/mypid.c
1508153744 ./examples/loadables/necho.c
1508153761 ./examples/loadables/pathchk.c
1730894950 ./examples/loadables/perl
891451861 ./examples/loadables/perl/bperl.c
891453717 ./examples/loadables/perl/iperl.c
1433427904 ./examples/loadables/perl/Makefile.in
919461802 ./examples/loadables/perl/README
1497970472 ./examples/loadables/print.c
1497970484 ./examples/loadables/printenv.c
1587413221 ./examples/loadables/push.c
1576007615 ./examples/loadables/README
1576007602 ./examples/loadables/realpath.c
1559054178 ./examples/loadables/rm.c
1438028710 ./examples/loadables/rmdir.c
1591380367 ./examples/loadables/seq.c
1576007629 ./examples/loadables/setpgid.c
1580827830 ./examples/loadables/sleep.c
1477951246 ./examples/loadables/stat.c
1584537532 ./examples/loadables/strftime.c
1438028666 ./examples/loadables/sync.c
1576007643 ./examples/loadables/tee.c
1497970562 ./examples/loadables/template.c
1438029178 ./examples/loadables/truefalse.c
1497970574 ./examples/loadables/tty.c
1497970584 ./examples/loadables/uname.c
1438028644 ./examples/loadables/unlink.c
1497970600 ./examples/loadables/whoami.c
1730894949 ./examples/misc
1236697807 ./examples/misc/aliasconv.bash
1236697807 ./examples/misc/aliasconv.sh
1236697807 ./examples/misc/cshtobash
1730894949 ./examples/scripts
1238021965 ./examples/scripts/cat.sh
1362193473 ./examples/scripts/center
800564571 ./examples/scripts/inpath
1362193629 ./examples/scripts/shprompt
1362193654 ./examples/scripts/spin.bash
1362193753 ./examples/scripts/xterm_title
1362193784 ./examples/scripts/zprintf
1730894948 ./examples/startup-files
832965883 ./examples/startup-files/bash-profile
1576007796 ./examples/startup-files/Bash_aliases
807295881 ./examples/startup-files/Bash_profile
1274100280 ./examples/startup-files/bashrc
807296025 ./examples/startup-files/Bashrc.bfox
1362193982 ./examples/startup-files/README
1602512173 ./execute_cmd.c
1583253544 ./execute_cmd.h
1590612571 ./expr.c
1590590201 ./externs.h
1591376876 ./findcmd.c
1581352053 ./findcmd.h
1597418516 ./flags.c
1597418576 ./flags.h
1595961353 ./general.c
1591282226 ./general.h
1591376786 ./hashcmd.c
1587314395 ./hashcmd.h
1588683919 ./hashlib.c
1587395027 ./hashlib.h
1730894952 ./include
1218549964 ./include/ansi_stdlib.h
1441199458 ./include/chartypes.h
1294000171 ./include/filecntl.h
1231097549 ./include/gettext.h
1218549646 ./include/maxpath.h
1218549665 ./include/memalloc.h
1218549699 ./include/ocache.h
1576007559 ./include/posixdir.h
1423398959 ./include/posixjmp.h
1240160356 ./include/posixselect.h
1576772677 ./include/posixstat.h
1591291709 ./include/posixtime.h
1553880352 ./include/posixwait.h
1456924913 ./include/shmbchar.h
1570545141 ./include/shmbutil.h
1591379638 ./include/shtty.h
1331130023 ./include/stat-time.h
1591379686 ./include/stdc.h
1591379652 ./include/systimes.h
1590611318 ./include/typemax.h
1218549952 ./include/unionwait.h
1593614662 ./input.c
1582575186 ./input.h
1536349881 ./INSTALL
1596550659 ./jobs.c
1587319726 ./jobs.h
1730894959 ./lib
1730894961 ./lib/glob
1218550428 ./lib/glob/collsyms.h
1730894961 ./lib/glob/doc
720904480 ./lib/glob/doc/glob.texi
799702009 ./lib/glob/doc/Makefile
1604083740 ./lib/glob/glob.c
1591378610 ./lib/glob/glob.h
1591378464 ./lib/glob/glob_loop.c
1484748642 ./lib/glob/gm_loop.c
1591378481 ./lib/glob/gmisc.c
1520623755 ./lib/glob/Makefile.in
689374092 ./lib/glob/ndir.h
1596135383 ./lib/glob/sm_loop.c
1596207469 ./lib/glob/smatch.c
1591378639 ./lib/glob/strmatch.c
1591378518 ./lib/glob/strmatch.h
1591378543 ./lib/glob/xmbsrtowcs.c
1730894961 ./lib/intl
1231097550 ./lib/intl/bindtextdom.c
1070991550 ./lib/intl/ChangeLog
1231097550 ./lib/intl/config.charset
1231097550 ./lib/intl/dcgettext.c
1231097550 ./lib/intl/dcigettext.c
1231097550 ./lib/intl/dcngettext.c
1231097550 ./lib/intl/dgettext.c
1231097550 ./lib/intl/dngettext.c
1231097550 ./lib/intl/eval-plural.h
1231097550 ./lib/intl/explodename.c
1231097550 ./lib/intl/finddomain.c
1231097550 ./lib/intl/gettext.c
1231097550 ./lib/intl/gettextP.h
1231097550 ./lib/intl/gmo.h
1231097550 ./lib/intl/hash-string.h
1231097550 ./lib/intl/intl-compat.c
1398348728 ./lib/intl/l10nflist.c
1231097550 ./lib/intl/libgnuintl.h.in
1231097550 ./lib/intl/loadinfo.h
1398306441 ./lib/intl/loadmsgcat.c
1231097550 ./lib/intl/localcharset.c
1231097550 ./lib/intl/localcharset.h
1231097550 ./lib/intl/locale.alias
1398304747 ./lib/intl/localealias.c
1231097550 ./lib/intl/localename.c
1231097550 ./lib/intl/log.c
1357427800 ./lib/intl/Makefile.in
1231097550 ./lib/intl/ngettext.c
1231097550 ./lib/intl/os2compat.c
1231097551 ./lib/intl/os2compat.h
1231097551 ./lib/intl/osdep.c
1231097551 ./lib/intl/plural-exp.c
1231097551 ./lib/intl/plural-exp.h
1231097551 ./lib/intl/plural.c
1231097551 ./lib/intl/plural.y
1218997539 ./lib/intl/ref-add.sin
1218997565 ./lib/intl/ref-del.sin
1231097551 ./lib/intl/relocatable.c
1231097551 ./lib/intl/relocatable.h
1231097551 ./lib/intl/textdomain.c
1070991550 ./lib/intl/VERSION
1730894959 ./lib/malloc
1003237936 ./lib/malloc/alloca.c
1343605941 ./lib/malloc/getpagesize.h
619112594 ./lib/malloc/i386-alloca.s
1591378856 ./lib/malloc/imalloc.h
1433427949 ./lib/malloc/Makefile.in
1594217970 ./lib/malloc/malloc.c
1591378870 ./lib/malloc/mstats.h
1591378785 ./lib/malloc/shmalloc.h
1591378884 ./lib/malloc/stats.c
1218551161 ./lib/malloc/stub.c
1594218014 ./lib/malloc/table.c
1591378805 ./lib/malloc/table.h
1591378912 ./lib/malloc/trace.c
1218551248 ./lib/malloc/watch.c
1591378820 ./lib/malloc/watch.h
636660230 ./lib/malloc/x386-alloca.s
1142953309 ./lib/malloc/xleaktrace
1218551322 ./lib/malloc/xmalloc.c
1730894962 ./lib/readline
1218549964 ./lib/readline/ansi_stdlib.h
1603720994 ./lib/readline/bind.c
1487695236 ./lib/readline/callback.c
733096672 ./lib/readline/ChangeLog
1453736266 ./lib/readline/chardefs.h
1574177454 ./lib/readline/colors.c
1453736291 ./lib/readline/colors.h
1487458112 ./lib/readline/compat.c
1598542109 ./lib/readline/complete.c
1218546032 ./lib/readline/COPYING
1599569802 ./lib/readline/display.c
1730894962 ./lib/readline/doc
1236699764 ./lib/readline/doc/fdl.texi
1585056599 ./lib/readline/doc/history.texi
1604002837 ./lib/readline/doc/hstech.texi
1588709953 ./lib/readline/doc/hsuser.texi
1219097104 ./lib/readline/doc/Makefile
1585056624 ./lib/readline/doc/rlman.texi
1592493904 ./lib/readline/doc/rltech.texi
1604001610 ./lib/readline/doc/rluser.texi
1585056554 ./lib/readline/doc/rluserman.texi
1604004544 ./lib/readline/doc/version.texi
1588616590 ./lib/readline/emacs_keymap.c
1730894962 ./lib/readline/examples
1310041061 ./lib/readline/examples/excallback.c
1592246376 ./lib/readline/examples/fileman.c
1231097553 ./lib/readline/examples/histexamp.c
1231097553 ./lib/readline/examples/Inputrc
1219097130 ./lib/readline/examples/Makefile
1231097553 ./lib/readline/examples/manexamp.c
1394123148 ./lib/readline/examples/rl-callbacktest.c
1438872683 ./lib/readline/examples/rl.c
1493909651 ./lib/readline/examples/rlcat.c
1582902007 ./lib/readline/examples/rltest.c
1588616669 ./lib/readline/funmap.c
1576007004 ./lib/readline/histexpand.c
1584463055 ./lib/readline/histfile.c
1496865212 ./lib/readline/histlib.h
1488227965 ./lib/readline/history.c
1530752687 ./lib/readline/history.h
1540153563 ./lib/readline/histsearch.c
1596407621 ./lib/readline/input.c
1605023410 ./lib/readline/isearch.c
1511810490 ./lib/readline/keymaps.c
1537290591 ./lib/readline/keymaps.h
1603721858 ./lib/readline/kill.c
1487459653 ./lib/readline/macro.c
1520623779 ./lib/readline/Makefile.in
1586963536 ./lib/readline/mbutil.c
1588617008 ./lib/readline/misc.c
1487458175 ./lib/readline/nls.c
1487460117 ./lib/readline/parens.c
1487460167 ./lib/readline/parse-colors.c
1334254801 ./lib/readline/parse-colors.h
1576007559 ./lib/readline/posixdir.h
1423398959 ./lib/readline/posixjmp.h
1240160356 ./lib/readline/posixselect.h
1576772677 ./lib/readline/posixstat.h
1603809340 ./lib/readline/readline.c
1589985747 ./lib/readline/readline.h
763414288 ./lib/readline/README
1487690730 ./lib/readline/rlconf.h
1378143268 ./lib/readline/rldefs.h
1576006935 ./lib/readline/rlmbutil.h
1603891990 ./lib/readline/rlprivate.h
1231097553 ./lib/readline/rlshell.h
1301166021 ./lib/readline/rlstdc.h
1537370366 ./lib/readline/rltty.c
1231097553 ./lib/readline/rltty.h
1397143845 ./lib/readline/rltypedefs.h
1231097553 ./lib/readline/rlwinsize.h
1487458228 ./lib/readline/savestring.c
1603721187 ./lib/readline/search.c
1487458369 ./lib/readline/shell.c
1596745802 ./lib/readline/signals.c
897074360 ./lib/readline/STANDALONE
1453736175 ./lib/readline/tcap.h
1602169594 ./lib/readline/terminal.c
1586783217 ./lib/readline/text.c
1591379444 ./lib/readline/tilde.c
1231097557 ./lib/readline/tilde.h
1548959232 ./lib/readline/undo.c
1585163795 ./lib/readline/util.c
1489165813 ./lib/readline/vi_keymap.c
1594132987 ./lib/readline/vi_mode.c
1487458166 ./lib/readline/xfree.c
1489165786 ./lib/readline/xmalloc.c
1231097554 ./lib/readline/xmalloc.h
1730894960 ./lib/sh
1591378979 ./lib/sh/casemod.c
1343606049 ./lib/sh/clktck.c
1524879582 ./lib/sh/clock.c
1275258725 ./lib/sh/dprintf.c
1591378990 ./lib/sh/eaccess.c
1218556271 ./lib/sh/fmtullong.c
1320537426 ./lib/sh/fmtulong.c
1218556318 ./lib/sh/fmtumax.c
1591379001 ./lib/sh/fnxform.c
1591379025 ./lib/sh/fpurge.c
1331394530 ./lib/sh/getcwd.c
1531145686 ./lib/sh/getenv.c
1591290828 ./lib/sh/gettimeofday.c
1343606076 ./lib/sh/inet_aton.c
1577397557 ./lib/sh/input_avail.c
1388692649 ./lib/sh/itos.c
1591901872 ./lib/sh/mailstat.c
1591290956 ./lib/sh/Makefile.in
1591379051 ./lib/sh/makepath.c
1453746299 ./lib/sh/mbscasecmp.c
1527254148 ./lib/sh/mbschr.c
1527254172 ./lib/sh/mbscmp.c
1218556547 ./lib/sh/memset.c
1591379071 ./lib/sh/mktime.c
1470843024 ./lib/sh/netconn.c
1591379085 ./lib/sh/netopen.c
1381756377 ./lib/sh/oslib.c
1576007249 ./lib/sh/pathcanon.c
1591379099 ./lib/sh/pathphys.c
1590776470 ./lib/sh/random.c
1218556726 ./lib/sh/rename.c
1218556743 ./lib/sh/setlinebuf.c
1572469000 ./lib/sh/shmatch.c
1527254271 ./lib/sh/shmbchar.c
1591379111 ./lib/sh/shquote.c
1218556857 ./lib/sh/shtty.c
1591379141 ./lib/sh/snprintf.c
1591379157 ./lib/sh/spell.c
1544285734 ./lib/sh/strcasecmp.c
1240595905 ./lib/sh/strcasestr.c
1351094262 ./lib/sh/strchrnul.c
1388692104 ./lib/sh/strdup.c
1343606135 ./lib/sh/strerror.c
1597064226 ./lib/sh/strftime.c
1577386938 ./lib/sh/stringlist.c
1577386664 ./lib/sh/stringvec.c
1218557164 ./lib/sh/strnlen.c
1381757029 ./lib/sh/strpbrk.c
1218557301 ./lib/sh/strstr.c
1562696685 ./lib/sh/strtod.c
1591379171 ./lib/sh/strtoimax.c
1218564098 ./lib/sh/strtol.c
1218564099 ./lib/sh/strtoll.c
1218564099 ./lib/sh/strtoul.c
1218563283 ./lib/sh/strtoull.c
1591379183 ./lib/sh/strtoumax.c
1553184558 ./lib/sh/strtrans.c
1591379195 ./lib/sh/times.c
1580827865 ./lib/sh/timeval.c
1591379215 ./lib/sh/tmpfile.c
1591288138 ./lib/sh/uconvert.c
1591288051 ./lib/sh/ufuncs.c
1591379228 ./lib/sh/unicode.c
1563563100 ./lib/sh/utf8.c
1218563549 ./lib/sh/vprint.c
1218563609 ./lib/sh/wcsdup.c
1350438698 ./lib/sh/wcsnwidth.c
1275858610 ./lib/sh/wcswidth.c
1591379247 ./lib/sh/winsize.c
1592859815 ./lib/sh/zcatfd.c
1591379289 ./lib/sh/zgetline.c
1592859932 ./lib/sh/zmapfd.c
1592859978 ./lib/sh/zread.c
1218563929 ./lib/sh/zwrite.c
1607093685 ./lib/termcap
1231097556 ./lib/termcap/ltcap.h
1433427984 ./lib/termcap/Makefile.in
1438870628 ./lib/termcap/termcap.c
1438870644 ./lib/termcap/termcap.h
1231098009 ./lib/termcap/tparam.c
1231097557 ./lib/termcap/version.c
1730894961 ./lib/tilde
1491856438 ./lib/tilde/Makefile.in
895177022 ./lib/tilde/README
1489016860 ./lib/tilde/shell.c
1591379444 ./lib/tilde/tilde.c
1231097557 ./lib/tilde/tilde.h
1231097557 ./list.c
1582574923 ./locale.c
1730894943 ./m4
1550091398 ./m4/codeset.m4
1550093623 ./m4/extern-inline.m4
1550093419 ./m4/fcntl-o.m4
1550091438 ./m4/gettext.m4
1550092758 ./m4/glibc2.m4
1550091770 ./m4/glibc21.m4
1550093038 ./m4/host-cpu-c-abi.m4
1550091842 ./m4/iconv.m4
1568140167 ./m4/intdiv0.m4
1550093493 ./m4/intl-thread-locale.m4
1568147495 ./m4/intl.m4
1550093564 ./m4/intlmacosx.m4
1550093201 ./m4/intmax.m4
1550092005 ./m4/inttypes-pri.m4
1550091956 ./m4/inttypes.m4
1550091979 ./m4/inttypes_h.m4
1550092060 ./m4/lcmessage.m4
1550092082 ./m4/lib-ld.m4
1550092127 ./m4/lib-link.m4
1550092189 ./m4/lib-prefix.m4
1550092884 ./m4/lock.m4
1550092214 ./m4/nls.m4
1550092231 ./m4/po.m4
1550093301 ./m4/printf-posix.m4
1550092254 ./m4/progtest.m4
1550672020 ./m4/pthread_rwlock_rdlock.m4
1550093715 ./m4/size_max.m4
1331127268 ./m4/stat-time.m4
1550092277 ./m4/stdint_h.m4
1550092974 ./m4/threadlib.m4
1331130166 ./m4/timespec.m4
1550092299 ./m4/uintmax_t.m4
1550092325 ./m4/ulonglong.m4
1550092822 ./m4/visibility.m4
1550093103 ./m4/wchar_t.m4
1550093138 ./m4/wint_t.m4
1550093360 ./m4/xsize.m4
1591376751 ./mailcheck.c
1591377109 ./mailcheck.h
1591376956 ./make_cmd.c
1591376307 ./make_cmd.h
1607093479 ./Makefile.in
1604336590 ./MANIFEST
1343605718 ./mksyntax.c
1604330914 ./NEWS
1594217485 ./nojobs.c
1590540146 ./NOTES
1606583406 ./parse.y
1606583839 ./parser-built
1547237583 ./parser.h
1590006057 ./patchlevel.h
1592401307 ./pathexp.c
1591377032 ./pathexp.h
1231097560 ./pathnames.h.in
1598883831 ./pcomplete.c
1591376455 ./pcomplete.h
1591376974 ./pcomplib.c
1730894948 ./po
1606585904 ./po/af.gmo
1606585902 ./po/af.po
1606585899 ./po/bash.pot
1606585904 ./po/bg.gmo
1606585902 ./po/bg.po
1070991551 ./po/boldquot.sed
1606585904 ./po/ca.gmo
1606585902 ./po/ca.po
1606585904 ./po/cs.gmo
1606585902 ./po/cs.po
1606585904 ./po/da.gmo
1606585902 ./po/da.po
1606585904 ./po/de.gmo
1606585902 ./po/de.po
1606585904 ./po/el.gmo
1606585902 ./po/el.po
1606585904 ./po/en@boldquot.gmo
1070991551 ./po/en@boldquot.header
1606585902 ./po/en@boldquot.po
1606585904 ./po/en@quot.gmo
1070991551 ./po/en@quot.header
1606585900 ./po/en@quot.po
1606585904 ./po/eo.gmo
1606585902 ./po/eo.po
1606585904 ./po/es.gmo
1606585902 ./po/es.po
1606585904 ./po/et.gmo
1606585902 ./po/et.po
1606585904 ./po/fi.gmo
1606585902 ./po/fi.po
1606585904 ./po/fr.gmo
1606585902 ./po/fr.po
1606585904 ./po/ga.gmo
1606585902 ./po/ga.po
1606585904 ./po/gl.gmo
1606585902 ./po/gl.po
1606585904 ./po/hr.gmo
1606585902 ./po/hr.po
1606585904 ./po/hu.gmo
1606585903 ./po/hu.po
1606585904 ./po/id.gmo
1606585903 ./po/id.po
1070991551 ./po/insert-header.sin
1606585904 ./po/it.gmo
1606585903 ./po/it.po
1606585904 ./po/ja.gmo
1606585903 ./po/ja.po
1606585904 ./po/ko.gmo
1606585903 ./po/ko.po
1572472604 ./po/LINGUAS
1606585904 ./po/lt.gmo
1606585903 ./po/lt.po
1592488437 ./po/Makefile.in.in
1071883783 ./po/Makevars
1606585904 ./po/nb.gmo
1606585903 ./po/nb.po
1606585904 ./po/nl.gmo
1606585903 ./po/nl.po
1606585904 ./po/pl.gmo
1606585903 ./po/pl.po
1255115175 ./po/POTFILES.in
1606585905 ./po/pt.gmo
1606585903 ./po/pt.po
1606585905 ./po/pt_BR.gmo
1606585903 ./po/pt_BR.po
1070991551 ./po/quot.sed
1071891629 ./po/README
1070991551 ./po/remove-potcdate.sin
1606585905 ./po/ro.gmo
1606585903 ./po/ro.po
1606585905 ./po/ru.gmo
1606585903 ./po/ru.po
1088520437 ./po/Rules-builtins
1070991551 ./po/Rules-quot
1606585905 ./po/sk.gmo
1606585903 ./po/sk.po
1606585905 ./po/sl.gmo
1606585903 ./po/sl.po
1606585905 ./po/sr.gmo
1606585903 ./po/sr.po
1606585905 ./po/sv.gmo
1606585903 ./po/sv.po
1606585905 ./po/tr.gmo
1606585904 ./po/tr.po
1606585905 ./po/uk.gmo
1606585904 ./po/uk.po
1606585905 ./po/vi.gmo
1606585904 ./po/vi.po
1606585905 ./po/zh_CN.gmo
1606585904 ./po/zh_CN.po
1606585905 ./po/zh_TW.gmo
1606585904 ./po/zh_TW.po
1590007262 ./POSIX
1591376490 ./print_cmd.c
1440158986 ./quit.h
1590007374 ./RBASH
1590003303 ./README
1591886376 ./redir.c
1591212681 ./redir.h
1596553224 ./shell.c
1591377044 ./shell.h
1602602856 ./sig.c
1606158762 ./sig.h
1568646808 ./siglist.c
1591377066 ./siglist.h
1419960049 ./stringlib.c
1605540795 ./subst.c
1596553033 ./subst.h
1730894959 ./support
1440765915 ./support/bash.pc.in
1142953391 ./support/bash.xbm
1596151988 ./support/bashbug.sh
1596469279 ./support/bashbug.sh.in
1591380015 ./support/bashversion.c
1218999734 ./support/checkbashisms
1605728319 ./support/config.guess
1527003999 ./support/config.rpath
1605728412 ./support/config.sub
1218630937 ./support/fixlinks
1018990164 ./support/install.sh
1526063323 ./support/Makefile.in
1576007306 ./support/man2html.c
1218630956 ./support/missing
1218630180 ./support/mkclone
1346289340 ./support/mkconffiles
1218630241 ./support/mkdirs
1070991550 ./support/mkinstalldirs
1591380432 ./support/mksignames.c
1591380105 ./support/mkversion.sh
1361976336 ./support/printenv.c
1218630611 ./support/printenv.sh
1218630628 ./support/recho.c
1218630644 ./support/rlvers.sh
1576248677 ./support/shobj-conf
1600261991 ./support/signames.c
1240241822 ./support/SYMLINKS
1574261283 ./support/texi2dvi
1218630777 ./support/texi2html
1470842294 ./support/xcase.c
1218630794 ./support/xenix-link.sh
1218630811 ./support/zecho.c
1600093205 ./syntax.h
1605038342 ./test.c
1589488670 ./test.h
1730894958 ./tests
1567191135 ./tests/alias.right
1567172226 ./tests/alias.tests
1567172229 ./tests/alias1.sub
1567172229 ./tests/alias2.sub
1567092581 ./tests/alias3.sub
1567172229 ./tests/alias4.sub
1567172229 ./tests/alias5.sub
1587320715 ./tests/appendop.right
1567172226 ./tests/appendop.tests
1567172229 ./tests/appendop1.sub
1567172229 ./tests/appendop2.sub
1588963140 ./tests/arith-for.right
1567172226 ./tests/arith-for.tests
1581436143 ./tests/arith.right
1581436007 ./tests/arith.tests
1567172229 ./tests/arith1.sub
1567172229 ./tests/arith2.sub
1567172229 ./tests/arith3.sub
1292947846 ./tests/arith4.sub
1590611524 ./tests/arith5.sub
1567172229 ./tests/arith6.sub
1445879278 ./tests/arith7.sub
1567172229 ./tests/arith8.sub
875039773 ./tests/array-at-star
1596641068 ./tests/array.right
1596640996 ./tests/array.tests
1099584466 ./tests/array1.sub
1567172229 ./tests/array10.sub
1567172229 ./tests/array11.sub
1567172229 ./tests/array12.sub
1567092588 ./tests/array13.sub
1567172229 ./tests/array14.sub
1567172229 ./tests/array15.sub
1567172229 ./tests/array16.sub
1567172230 ./tests/array17.sub
1567172230 ./tests/array18.sub
1585248733 ./tests/array19.sub
875039659 ./tests/array2.right
1317856821 ./tests/array2.sub
1567172230 ./tests/array20.sub
1567172230 ./tests/array21.sub
1567172230 ./tests/array22.sub
1567172230 ./tests/array23.sub
1567172230 ./tests/array24.sub
1567172230 ./tests/array25.sub
1567172230 ./tests/array26.sub
1567172230 ./tests/array27.sub
1596641034 ./tests/array28.sub
1099584532 ./tests/array3.sub
1567172230 ./tests/array4.sub
1567172230 ./tests/array5.sub
1567172230 ./tests/array6.sub
1214685242 ./tests/array7.sub
1567172230 ./tests/array8.sub
1567172230 ./tests/array9.sub
1605037556 ./tests/assoc.right
1585083457 ./tests/assoc.tests
1567172230 ./tests/assoc1.sub
1567172230 ./tests/assoc10.sub
1588257284 ./tests/assoc11.sub
1567172230 ./tests/assoc2.sub
1567172230 ./tests/assoc3.sub
1567172230 ./tests/assoc4.sub
1567172230 ./tests/assoc5.sub
1567172230 ./tests/assoc6.sub
1567172230 ./tests/assoc7.sub
1440083636 ./tests/assoc8.sub
1605037474 ./tests/assoc9.sub
1567191249 ./tests/attr.right
1567172226 ./tests/attr.tests
1567172230 ./tests/attr1.sub
1567172230 ./tests/attr2.sub
1288958585 ./tests/braces.right
1567172226 ./tests/braces.tests
1594755272 ./tests/builtins.right
1594753240 ./tests/builtins.tests
1223157599 ./tests/builtins1.sub
937928781 ./tests/builtins2.sub
1277679247 ./tests/builtins3.sub
1567172230 ./tests/builtins4.sub
1567172230 ./tests/builtins5.sub
1567172230 ./tests/builtins6.sub
1594755189 ./tests/builtins7.sub
1567191304 ./tests/case.right
1567172226 ./tests/case.tests
1567172230 ./tests/case1.sub
1567172230 ./tests/case2.sub
1567172230 ./tests/case3.sub
1567172230 ./tests/case4.sub
1605280080 ./tests/casemod.right
1605280071 ./tests/casemod.tests
1595274295 ./tests/complete.right
1595273888 ./tests/complete.tests
1573159030 ./tests/comsub-eof.right
1573158883 ./tests/comsub-eof.tests
1215306105 ./tests/comsub-eof0.sub
1215306105 ./tests/comsub-eof1.sub
1215306105 ./tests/comsub-eof2.sub
1215306105 ./tests/comsub-eof3.sub
1237073738 ./tests/comsub-eof4.sub
1243452989 ./tests/comsub-eof5.sub
1573141061 ./tests/comsub-eof6.sub
1587666349 ./tests/comsub-posix.right
1587666345 ./tests/comsub-posix.tests
1213375914 ./tests/comsub-posix1.sub
1567172230 ./tests/comsub-posix2.sub
1567172230 ./tests/comsub-posix3.sub
1567191337 ./tests/comsub.right
1567172226 ./tests/comsub.tests
1567172230 ./tests/comsub1.sub
1480973756 ./tests/comsub2.sub
1567172231 ./tests/comsub3.sub
1567172231 ./tests/comsub4.sub
1567172231 ./tests/cond-regexp1.sub
1567172231 ./tests/cond-regexp2.sub
1567172231 ./tests/cond-regexp3.sub
1567191350 ./tests/cond.right
1567172227 ./tests/cond.tests
1434394328 ./tests/coproc.right
1567172227 ./tests/coproc.tests
1310996526 ./tests/COPYRIGHT
1151249930 ./tests/cprint.right
1567172227 ./tests/cprint.tests
1567191363 ./tests/dbg-support.right
1567172231 ./tests/dbg-support.sub
1576007478 ./tests/dbg-support.tests
1567191445 ./tests/dbg-support2.right
1567172227 ./tests/dbg-support2.tests
1567172231 ./tests/dbg-support3.sub
1552600112 ./tests/dollar-at-star
1567172231 ./tests/dollar-at-star1.sub
1567172231 ./tests/dollar-at-star2.sub
1567172231 ./tests/dollar-at-star3.sub
1567172231 ./tests/dollar-at-star4.sub
1567172231 ./tests/dollar-at-star5.sub
1567172231 ./tests/dollar-at-star6.sub
1567172231 ./tests/dollar-at-star7.sub
1469296017 ./tests/dollar-at-star8.sub
1567172231 ./tests/dollar-at-star9.sub
1567172231 ./tests/dollar-at1.sub
1567172231 ./tests/dollar-at2.sub
1245277620 ./tests/dollar-at3.sub
1298907042 ./tests/dollar-at4.sub
1567172231 ./tests/dollar-at5.sub
1567172231 ./tests/dollar-at6.sub
1567172232 ./tests/dollar-at7.sub
1567172232 ./tests/dollar-star1.sub
1567172232 ./tests/dollar-star10.sub
1567172232 ./tests/dollar-star2.sub
1567172232 ./tests/dollar-star3.sub
1245277661 ./tests/dollar-star4.sub
1567172232 ./tests/dollar-star5.sub
1567172232 ./tests/dollar-star6.sub
1567172232 ./tests/dollar-star7.sub
1567172232 ./tests/dollar-star8.sub
1567172232 ./tests/dollar-star9.sub
1552693956 ./tests/dollar.right
1567191561 ./tests/dstack.right
1576007402 ./tests/dstack.tests
879528501 ./tests/dstack2.right
1567172227 ./tests/dstack2.tests
1478815772 ./tests/dynvar.right
1601672141 ./tests/dynvar.tests
1596643075 ./tests/errors.right
1596643062 ./tests/errors.tests
1567172232 ./tests/errors1.sub
1329341591 ./tests/errors2.sub
1391196936 ./tests/errors3.sub
1567172232 ./tests/errors4.sub
1521114517 ./tests/errors5.sub
1567172232 ./tests/errors6.sub
1567172232 ./tests/errors7.sub
1546286786 ./tests/errors8.sub
1569422150 ./tests/exec.right
856379210 ./tests/exec1.sub
1567172232 ./tests/exec10.sub
1434151066 ./tests/exec11.sub
1567172232 ./tests/exec12.sub
1567172232 ./tests/exec13.sub
1569422094 ./tests/exec14.sub
856895185 ./tests/exec2.sub
857411881 ./tests/exec3.sub
857412022 ./tests/exec4.sub
879527605 ./tests/exec5.sub
1567172232 ./tests/exec6.sub
1567172232 ./tests/exec7.sub
1180315265 ./tests/exec8.sub
1567172232 ./tests/exec9.sub
1569422140 ./tests/execscript
1596657516 ./tests/exp.right
1596657505 ./tests/exp.tests
1567172232 ./tests/exp1.sub
1567172232 ./tests/exp10.sub
1567172232 ./tests/exp11.sub
1567172232 ./tests/exp12.sub
1180312558 ./tests/exp2.sub
1255822838 ./tests/exp3.sub
1290880037 ./tests/exp4.sub
1567172232 ./tests/exp5.sub
1567172232 ./tests/exp6.sub
1567172232 ./tests/exp7.sub
1567172232 ./tests/exp8.sub
1567172232 ./tests/exp9.sub
1567191642 ./tests/exportfunc.right
1567172227 ./tests/exportfunc.tests
1567172232 ./tests/exportfunc1.sub
1567172232 ./tests/exportfunc2.sub
1567172232 ./tests/exportfunc3.sub
1521125956 ./tests/extglob.right
1567172227 ./tests/extglob.tests
1567172232 ./tests/extglob1.sub
1567172232 ./tests/extglob1a.sub
920923517 ./tests/extglob2.right
1335185050 ./tests/extglob2.sub
1567172227 ./tests/extglob2.tests
1099088422 ./tests/extglob3.right
1567172233 ./tests/extglob3.sub
1567172227 ./tests/extglob3.tests
1567172233 ./tests/extglob4.sub
1567172233 ./tests/extglob5.sub
1583249103 ./tests/func.right
1567172227 ./tests/func.tests
1567172233 ./tests/func1.sub
1567172233 ./tests/func2.sub
1583249085 ./tests/func3.sub
1567172233 ./tests/func4.sub
1568836395 ./tests/getopts.right