├── .gitignore ├── README ├── android_bash-3.2.51(2) ├── android_bash-4.0.38(2) ├── android_bash-4.1.11(2) ├── bash-3.2 ├── ABOUT-NLS ├── AUTHORS ├── CHANGES ├── COMPAT ├── COPYING ├── CWRU │ ├── PLATFORMS │ ├── README │ ├── mh-folder-comp │ ├── misc │ │ ├── bison │ │ ├── errlist.c │ │ ├── hpux10-dlfcn.h │ │ ├── open-files.c │ │ ├── sigs.c │ │ └── sigstat.c │ └── sh-redir-hack ├── INSTALL ├── MANIFEST ├── Makefile.in ├── NEWS ├── NOTES ├── POSIX ├── RBASH ├── README ├── Y2K ├── aclocal.m4 ├── alias.c ├── alias.h ├── array.c ├── array.h ├── arrayfunc.c ├── arrayfunc.h ├── bashansi.h ├── bashhist.c ├── bashhist.h ├── bashintl.h ├── bashjmp.h ├── bashline.c ├── bashline.h ├── bashtypes.h ├── bracecomp.c ├── braces.c ├── builtins.h ├── builtins │ ├── Makefile.in │ ├── alias.def │ ├── bashgetopt.c │ ├── bashgetopt.h │ ├── bind.def │ ├── break.def │ ├── builtin.def │ ├── caller.def │ ├── cd.def │ ├── colon.def │ ├── command.def │ ├── common.c │ ├── common.h │ ├── complete.def │ ├── declare.def │ ├── echo.def │ ├── enable.def │ ├── eval.def │ ├── evalfile.c │ ├── evalstring.c │ ├── exec.def │ ├── exit.def │ ├── fc.def │ ├── fg_bg.def │ ├── getopt.c │ ├── getopt.h │ ├── getopts.def │ ├── hash.def │ ├── help.def │ ├── history.def │ ├── inlib.def │ ├── jobs.def │ ├── kill.def │ ├── let.def │ ├── mkbuiltins.c │ ├── printf.def │ ├── psize.c │ ├── psize.sh │ ├── pushd.def │ ├── read.def │ ├── reserved.def │ ├── return.def │ ├── set.def │ ├── setattr.def │ ├── shift.def │ ├── shopt.def │ ├── source.def │ ├── suspend.def │ ├── test.def │ ├── times.def │ ├── trap.def │ ├── type.def │ ├── ulimit.def │ ├── umask.def │ └── wait.def ├── command.h ├── config-bot.h ├── config-top.h ├── config.h.in ├── configure ├── configure.in ├── conftypes.h ├── copy_cmd.c ├── cross-build │ ├── cygwin32.cache │ ├── opennt.cache │ └── x86-beos.cache ├── dispose_cmd.c ├── dispose_cmd.h ├── doc │ ├── FAQ │ ├── INTRO │ ├── Makefile.in │ ├── README │ ├── article.ms │ ├── bash.1 │ ├── bashbug.1 │ ├── bashref.texi │ ├── bashref.texi.orig │ ├── builtins.1 │ ├── fdl.texi │ ├── fdl.txt │ ├── htmlpost.sh │ ├── infopost.sh │ ├── rbash.1 │ ├── texinfo.tex │ └── version.texi ├── error.c ├── error.h ├── etc │ ├── bash_logout │ └── bashrc ├── eval.c ├── examples │ ├── INDEX.html │ ├── INDEX.txt │ ├── bashdb │ │ ├── PERMISSION │ │ ├── README │ │ ├── bashdb │ │ └── bashdb.el │ ├── complete │ │ ├── complete-examples │ │ ├── complete.freebsd │ │ ├── complete.gnu-longopt │ │ ├── complete.ianmac │ │ └── complete2.ianmac │ ├── functions │ │ ├── array-stuff │ │ ├── array-to-string │ │ ├── autoload │ │ ├── autoload.v2 │ │ ├── autoload.v3 │ │ ├── basename │ │ ├── basename2 │ │ ├── coproc.bash │ │ ├── coshell.README │ │ ├── coshell.bash │ │ ├── csh-compat │ │ ├── dirfuncs │ │ ├── dirname │ │ ├── emptydir │ │ ├── exitstat │ │ ├── external │ │ ├── fact │ │ ├── fstty │ │ ├── func │ │ ├── gethtml │ │ ├── getoptx.bash │ │ ├── inetaddr │ │ ├── inpath │ │ ├── isnum.bash │ │ ├── isnum2 │ │ ├── isvalidip │ │ ├── jdate.bash │ │ ├── jj.bash │ │ ├── keep │ │ ├── ksh-cd │ │ ├── ksh-compat-test │ │ ├── kshenv │ │ ├── login │ │ ├── lowercase │ │ ├── manpage │ │ ├── mhfold │ │ ├── notify.bash │ │ ├── pathfuncs │ │ ├── recurse │ │ ├── repeat2 │ │ ├── repeat3 │ │ ├── seq │ │ ├── seq2 │ │ ├── shcat │ │ ├── shcat2 │ │ ├── sort-pos-params │ │ ├── substr │ │ ├── substr2 │ │ ├── term │ │ ├── whatis │ │ ├── whence │ │ ├── which │ │ ├── xalias.bash │ │ └── xfind.bash │ ├── loadables │ │ ├── Makefile.in │ │ ├── README │ │ ├── basename.c │ │ ├── cat.c │ │ ├── cut.c │ │ ├── dirname.c │ │ ├── finfo.c │ │ ├── getconf.c │ │ ├── getconf.h │ │ ├── head.c │ │ ├── hello.c │ │ ├── id.c │ │ ├── ln.c │ │ ├── logname.c │ │ ├── mkdir.c │ │ ├── necho.c │ │ ├── pathchk.c │ │ ├── perl │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── bperl.c │ │ │ └── iperl.c │ │ ├── print.c │ │ ├── printenv.c │ │ ├── push.c │ │ ├── realpath.c │ │ ├── rmdir.c │ │ ├── sleep.c │ │ ├── strftime.c │ │ ├── sync.c │ │ ├── tee.c │ │ ├── template.c │ │ ├── truefalse.c │ │ ├── tty.c │ │ ├── uname.c │ │ ├── unlink.c │ │ └── whoami.c │ ├── misc │ │ ├── aliasconv.bash │ │ ├── aliasconv.sh │ │ ├── cshtobash │ │ └── suncmd.termcap │ ├── obashdb │ │ ├── PERMISSION │ │ ├── README │ │ ├── bashdb │ │ ├── bashdb.fns │ │ └── bashdb.pre │ ├── scripts.noah │ │ ├── PERMISSION │ │ ├── README │ │ ├── aref.bash │ │ ├── bash.sub.bash │ │ ├── bash_version.bash │ │ ├── meta.bash │ │ ├── mktmp.bash │ │ ├── number.bash │ │ ├── prompt.bash │ │ ├── remap_keys.bash │ │ ├── require.bash │ │ ├── send_mail.bash │ │ ├── shcat.bash │ │ ├── source.bash │ │ ├── string.bash │ │ ├── stty.bash │ │ └── y_or_n_p.bash │ ├── scripts.v2 │ │ ├── PERMISSION │ │ ├── README │ │ ├── arc2tarz │ │ ├── bashrand │ │ ├── cal2day.bash │ │ ├── cdhist.bash │ │ ├── corename │ │ ├── fman │ │ ├── frcp │ │ ├── lowercase │ │ ├── ncp │ │ ├── newext │ │ ├── nmv │ │ ├── pages │ │ ├── pf │ │ ├── pmtop │ │ ├── ren │ │ ├── rename │ │ ├── repeat │ │ ├── shprof │ │ ├── untar │ │ ├── uudec │ │ ├── uuenc │ │ ├── vtree │ │ └── where │ ├── scripts │ │ ├── adventure.sh │ │ ├── bcsh.sh │ │ ├── cat.sh │ │ ├── center │ │ ├── dd-ex.sh │ │ ├── fixfiles.bash │ │ ├── hanoi.bash │ │ ├── inpath │ │ ├── krand.bash │ │ ├── line-input.bash │ │ ├── nohup.bash │ │ ├── precedence │ │ ├── randomcard.bash │ │ ├── scrollbar │ │ ├── scrollbar2 │ │ ├── self-repro │ │ ├── showperm.bash │ │ ├── shprompt │ │ ├── spin.bash │ │ ├── timeout │ │ ├── vtree2 │ │ ├── vtree3 │ │ ├── vtree3a │ │ ├── websrv.sh │ │ ├── xterm_title │ │ └── zprintf │ └── startup-files │ │ ├── Bash_aliases │ │ ├── Bash_profile │ │ ├── Bashrc.bfox │ │ ├── README │ │ ├── apple │ │ ├── README │ │ ├── aliases │ │ ├── bash.defaults │ │ ├── environment │ │ ├── login │ │ ├── logout │ │ └── rc │ │ ├── bash-profile │ │ └── bashrc ├── execute_cmd.c ├── execute_cmd.h ├── expr.c ├── externs.h ├── findcmd.c ├── findcmd.h ├── flags.c ├── flags.h ├── general.c ├── general.h ├── hashcmd.c ├── hashcmd.h ├── hashlib.c ├── hashlib.h ├── include │ ├── ansi_stdlib.h │ ├── chartypes.h │ ├── filecntl.h │ ├── gettext.h │ ├── maxpath.h │ ├── memalloc.h │ ├── ocache.h │ ├── posixdir.h │ ├── posixjmp.h │ ├── posixstat.h │ ├── posixtime.h │ ├── posixwait.h │ ├── shmbutil.h │ ├── shtty.h │ ├── stdc.h │ ├── systimes.h │ ├── typemax.h │ └── unionwait.h ├── input.c ├── input.h ├── jobs.c ├── jobs.h ├── lib │ ├── glob │ │ ├── Makefile.in │ │ ├── collsyms.h │ │ ├── doc │ │ │ ├── Makefile │ │ │ └── glob.texi │ │ ├── glob.c │ │ ├── glob.h │ │ ├── glob_loop.c │ │ ├── ndir.h │ │ ├── sm_loop.c │ │ ├── smatch.c │ │ ├── strmatch.c │ │ ├── strmatch.h │ │ └── xmbsrtowcs.c │ ├── intl │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── VERSION │ │ ├── bindtextdom.c │ │ ├── config.charset │ │ ├── dcgettext.c │ │ ├── dcigettext.c │ │ ├── dcngettext.c │ │ ├── dgettext.c │ │ ├── dngettext.c │ │ ├── eval-plural.h │ │ ├── explodename.c │ │ ├── finddomain.c │ │ ├── gettext.c │ │ ├── gettextP.h │ │ ├── gmo.h │ │ ├── hash-string.h │ │ ├── intl-compat.c │ │ ├── l10nflist.c │ │ ├── libgnuintl.h.in │ │ ├── loadinfo.h │ │ ├── loadmsgcat.c │ │ ├── localcharset.c │ │ ├── localcharset.h │ │ ├── locale.alias │ │ ├── localealias.c │ │ ├── localename.c │ │ ├── log.c │ │ ├── ngettext.c │ │ ├── os2compat.c │ │ ├── os2compat.h │ │ ├── osdep.c │ │ ├── plural-exp.c │ │ ├── plural-exp.h │ │ ├── plural.c │ │ ├── plural.y │ │ ├── ref-add.sin │ │ ├── ref-del.sin │ │ ├── relocatable.c │ │ ├── relocatable.h │ │ └── textdomain.c │ ├── malloc │ │ ├── Makefile.in │ │ ├── alloca.c │ │ ├── getpagesize.h │ │ ├── imalloc.h │ │ ├── malloc.c │ │ ├── mstats.h │ │ ├── shmalloc.h │ │ ├── stats.c │ │ ├── stub.c │ │ ├── table.c │ │ ├── table.h │ │ ├── trace.c │ │ ├── watch.c │ │ ├── watch.h │ │ ├── xleaktrace │ │ └── xmalloc.c │ ├── readline │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── README │ │ ├── STANDALONE │ │ ├── ansi_stdlib.h │ │ ├── bind.c │ │ ├── callback.c │ │ ├── chardefs.h │ │ ├── compat.c │ │ ├── complete.c │ │ ├── display.c │ │ ├── doc │ │ │ ├── fdl.texi │ │ │ ├── history.texi │ │ │ ├── hstech.texi │ │ │ ├── hsuser.texi │ │ │ ├── rlman.texi │ │ │ ├── rltech.texi │ │ │ ├── rluser.texi │ │ │ ├── rluserman.texi │ │ │ └── version.texi │ │ ├── emacs_keymap.c │ │ ├── examples │ │ │ ├── Inputrc │ │ │ ├── Makefile │ │ │ ├── excallback.c │ │ │ ├── fileman.c │ │ │ ├── histexamp.c │ │ │ ├── manexamp.c │ │ │ ├── rl.c │ │ │ ├── rlcat.c │ │ │ └── rltest.c │ │ ├── funmap.c │ │ ├── histexpand.c │ │ ├── histfile.c │ │ ├── histlib.h │ │ ├── history.c │ │ ├── history.h │ │ ├── histsearch.c │ │ ├── input.c │ │ ├── isearch.c │ │ ├── keymaps.c │ │ ├── keymaps.h │ │ ├── kill.c │ │ ├── macro.c │ │ ├── mbutil.c │ │ ├── misc.c │ │ ├── nls.c │ │ ├── parens.c │ │ ├── posixdir.h │ │ ├── posixjmp.h │ │ ├── posixstat.h │ │ ├── readline.c │ │ ├── readline.h │ │ ├── rlconf.h │ │ ├── rldefs.h │ │ ├── rlmbutil.h │ │ ├── rlprivate.h │ │ ├── rlshell.h │ │ ├── rlstdc.h │ │ ├── rltty.c │ │ ├── rltty.h │ │ ├── rltypedefs.h │ │ ├── rlwinsize.h │ │ ├── savestring.c │ │ ├── search.c │ │ ├── shell.c │ │ ├── signals.c │ │ ├── tcap.h │ │ ├── terminal.c │ │ ├── text.c │ │ ├── tilde.c │ │ ├── tilde.h │ │ ├── undo.c │ │ ├── util.c │ │ ├── vi_keymap.c │ │ ├── vi_mode.c │ │ ├── xmalloc.c │ │ └── xmalloc.h │ ├── sh │ │ ├── Makefile.in │ │ ├── clktck.c │ │ ├── clock.c │ │ ├── eaccess.c │ │ ├── fmtullong.c │ │ ├── fmtulong.c │ │ ├── fmtumax.c │ │ ├── getcwd.c │ │ ├── getenv.c │ │ ├── inet_aton.c │ │ ├── itos.c │ │ ├── mailstat.c │ │ ├── makepath.c │ │ ├── memset.c │ │ ├── mktime.c │ │ ├── netconn.c │ │ ├── netopen.c │ │ ├── oslib.c │ │ ├── pathcanon.c │ │ ├── pathphys.c │ │ ├── rename.c │ │ ├── setlinebuf.c │ │ ├── shmatch.c │ │ ├── shquote.c │ │ ├── shtty.c │ │ ├── snprintf.c │ │ ├── spell.c │ │ ├── strcasecmp.c │ │ ├── strerror.c │ │ ├── strftime.c │ │ ├── strindex.c │ │ ├── stringlist.c │ │ ├── stringvec.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strstr.c │ │ ├── strtod.c │ │ ├── strtoimax.c │ │ ├── strtol.c │ │ ├── strtoll.c │ │ ├── strtoul.c │ │ ├── strtoull.c │ │ ├── strtoumax.c │ │ ├── strtrans.c │ │ ├── times.c │ │ ├── timeval.c │ │ ├── tmpfile.c │ │ ├── vprint.c │ │ ├── wcsdup.c │ │ ├── winsize.c │ │ ├── xstrchr.c │ │ ├── zcatfd.c │ │ ├── zread.c │ │ └── zwrite.c │ ├── termcap │ │ ├── Makefile.in │ │ ├── grot │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── termcap.info │ │ │ ├── termcap.info-1 │ │ │ ├── termcap.info-2 │ │ │ ├── termcap.info-3 │ │ │ ├── termcap.info-4 │ │ │ ├── termcap.texi │ │ │ └── texinfo.tex │ │ ├── ltcap.h │ │ ├── termcap.c │ │ ├── termcap.h │ │ ├── tparam.c │ │ └── version.c │ └── tilde │ │ ├── Makefile.in │ │ ├── README │ │ ├── shell.c │ │ ├── tilde.c │ │ └── tilde.h ├── list.c ├── locale.c ├── mailcheck.c ├── mailcheck.h ├── make_cmd.c ├── make_cmd.h ├── mksyntax.c ├── nojobs.c ├── parse.y ├── parser.h ├── patchlevel.h ├── pathexp.c ├── pathexp.h ├── pathnames.h.in ├── pcomplete.c ├── pcomplete.h ├── pcomplib.c ├── po │ ├── LINGUAS │ ├── Makefile.in.in │ ├── Makevars │ ├── POTFILES.in │ ├── Rules-builtins │ ├── Rules-quot │ ├── bash.pot │ ├── boldquot.sed │ ├── en@boldquot.gmo │ ├── en@boldquot.header │ ├── en@boldquot.po │ ├── en@quot.gmo │ ├── en@quot.header │ ├── en@quot.po │ ├── insert-header.sin │ ├── quot.sed │ ├── remove-potcdate.sin │ └── ru.po ├── print_cmd.c ├── quit.h ├── redir.c ├── redir.h ├── shell.c ├── shell.h ├── sig.c ├── sig.h ├── siglist.c ├── siglist.h ├── stringlib.c ├── subst.c ├── subst.h ├── support │ ├── Makefile.in │ ├── SYMLINKS │ ├── bash.xbm │ ├── bashbug.sh │ ├── bashversion.c │ ├── config.guess │ ├── config.rpath │ ├── config.sub │ ├── fixlinks │ ├── install.sh │ ├── man2html.c │ ├── missing │ ├── mkclone │ ├── mkconffiles │ ├── mkdirs │ ├── mkinstalldirs │ ├── mksignames.c │ ├── mkversion.sh │ ├── printenv.c │ ├── printenv.sh │ ├── recho.c │ ├── rlvers.sh │ ├── shobj-conf │ ├── signames.c │ ├── texi2dvi │ ├── texi2html │ ├── xenix-link.sh │ └── zecho.c ├── syntax.h ├── test.c ├── test.h ├── tests │ ├── COPYRIGHT │ ├── README │ ├── alias.right │ ├── alias.tests │ ├── appendop.right │ ├── appendop.tests │ ├── arith-for.right │ ├── arith-for.tests │ ├── arith.right │ ├── arith.tests │ ├── arith1.sub │ ├── arith2.sub │ ├── array-at-star │ ├── array.right │ ├── array.tests │ ├── array1.sub │ ├── array2.right │ ├── array2.sub │ ├── array3.sub │ ├── array4.sub │ ├── braces.right │ ├── braces.tests │ ├── builtins.right │ ├── builtins.tests │ ├── builtins1.sub │ ├── builtins2.sub │ ├── cond.right │ ├── cond.tests │ ├── cprint.right │ ├── cprint.tests │ ├── dbg-support.right │ ├── dbg-support.sub │ ├── dbg-support.tests │ ├── dbg-support2.right │ ├── dbg-support2.tests │ ├── dollar-at-star │ ├── dollar-at1.sub │ ├── dollar-at2.sub │ ├── dollar-star1.sub │ ├── dollar-star2.sub │ ├── dollar.right │ ├── dstack.right │ ├── dstack.tests │ ├── dstack2.right │ ├── dstack2.tests │ ├── errors.right │ ├── errors.tests │ ├── exec.right │ ├── exec1.sub │ ├── exec2.sub │ ├── exec3.sub │ ├── exec4.sub │ ├── exec5.sub │ ├── exec6.sub │ ├── exec7.sub │ ├── execscript │ ├── exp-tests │ ├── exp.right │ ├── extglob.right │ ├── extglob.tests │ ├── extglob1.sub │ ├── extglob2.right │ ├── extglob2.tests │ ├── extglob3.right │ ├── extglob3.tests │ ├── func.right │ ├── func.tests │ ├── func1.sub │ ├── func2.sub │ ├── func3.sub │ ├── getopts.right │ ├── getopts.tests │ ├── getopts1.sub │ ├── getopts2.sub │ ├── getopts3.sub │ ├── getopts4.sub │ ├── getopts5.sub │ ├── getopts6.sub │ ├── getopts7.sub │ ├── glob-test │ ├── glob.right │ ├── glob1.sub │ ├── heredoc.right │ ├── heredoc.tests │ ├── herestr.right │ ├── herestr.tests │ ├── histexp.right │ ├── histexp.tests │ ├── history.list │ ├── history.right │ ├── history.tests │ ├── ifs-posix.right │ ├── ifs-posix.tests │ ├── ifs.right │ ├── ifs.tests │ ├── input-line.sh │ ├── input-line.sub │ ├── input.right │ ├── intl.right │ ├── intl.tests │ ├── invert.right │ ├── invert.tests │ ├── iquote.right │ ├── iquote.tests │ ├── jobs.right │ ├── jobs.tests │ ├── jobs1.sub │ ├── jobs2.sub │ ├── jobs3.sub │ ├── jobs4.sub │ ├── misc │ │ ├── dev-tcp.tests │ │ ├── perf-script │ │ ├── perftest │ │ ├── read-nchars.tests │ │ ├── redir-t2.sh │ │ ├── run-r2.sh │ │ ├── sigint-1.sh │ │ ├── sigint-2.sh │ │ ├── sigint-3.sh │ │ ├── sigint-4.sh │ │ ├── test-minus-e.1 │ │ ├── test-minus-e.2 │ │ └── wait-bg.tests │ ├── more-exp.right │ ├── more-exp.tests │ ├── new-exp.right │ ├── new-exp.tests │ ├── new-exp1.sub │ ├── new-exp2.sub │ ├── new-exp3.sub │ ├── new-exp4.sub │ ├── new-exp5.sub │ ├── new-exp6.sub │ ├── nquote.right │ ├── nquote.tests │ ├── nquote1.right │ ├── nquote1.tests │ ├── nquote2.right │ ├── nquote2.tests │ ├── nquote3.right │ ├── nquote3.tests │ ├── nquote4.right │ ├── nquote4.tests │ ├── posix2.right │ ├── posix2.tests │ ├── posixpat.right │ ├── posixpat.tests │ ├── prec.right │ ├── precedence │ ├── printf.right │ ├── printf.tests │ ├── quote.right │ ├── quote.tests │ ├── read.right │ ├── read.tests │ ├── read1.sub │ ├── read2.sub │ ├── read3.sub │ ├── read4.sub │ ├── read5.sub │ ├── redir.right │ ├── redir.tests │ ├── redir1.sub │ ├── redir2.sub │ ├── redir3.in1 │ ├── redir3.in2 │ ├── redir3.sub │ ├── redir4.in1 │ ├── redir4.sub │ ├── redir5.sub │ ├── redir6.sub │ ├── redir7.sub │ ├── rhs-exp.right │ ├── rhs-exp.tests │ ├── rsh.right │ ├── rsh.tests │ ├── run-alias │ ├── run-all │ ├── run-appendop │ ├── run-arith │ ├── run-arith-for │ ├── run-array │ ├── run-array2 │ ├── run-braces │ ├── run-builtins │ ├── run-cond │ ├── run-cprint │ ├── run-dbg-support │ ├── run-dbg-support2 │ ├── run-dirstack │ ├── run-dollars │ ├── run-errors │ ├── run-execscript │ ├── run-exp-tests │ ├── run-extglob │ ├── run-extglob2 │ ├── run-extglob3 │ ├── run-func │ ├── run-getopts │ ├── run-glob-test │ ├── run-heredoc │ ├── run-herestr │ ├── run-histexpand │ ├── run-history │ ├── run-ifs │ ├── run-ifs-posix │ ├── run-input-test │ ├── run-intl │ ├── run-invert │ ├── run-iquote │ ├── run-jobs │ ├── run-minimal │ ├── run-more-exp │ ├── run-new-exp │ ├── run-nquote │ ├── run-nquote1 │ ├── run-nquote2 │ ├── run-nquote3 │ ├── run-nquote4 │ ├── run-posix2 │ ├── run-posixpat │ ├── run-precedence │ ├── run-printf │ ├── run-quote │ ├── run-read │ ├── run-redir │ ├── run-rhs-exp │ ├── run-rsh │ ├── run-set-e │ ├── run-set-x │ ├── run-shopt │ ├── run-strip │ ├── run-test │ ├── run-tilde │ ├── run-tilde2 │ ├── run-trap │ ├── run-type │ ├── run-varenv │ ├── set-e-test │ ├── set-e.right │ ├── set-x.right │ ├── set-x.tests │ ├── shopt.right │ ├── shopt.tests │ ├── source1.sub │ ├── source2.sub │ ├── source3.sub │ ├── source4.sub │ ├── source5.sub │ ├── strip.right │ ├── strip.tests │ ├── test.right │ ├── test.tests │ ├── tilde.right │ ├── tilde.tests │ ├── tilde2.right │ ├── tilde2.tests │ ├── trap.right │ ├── trap.tests │ ├── trap1.sub │ ├── trap2.sub │ ├── trap2a.sub │ ├── type.right │ ├── type.tests │ ├── varenv.right │ ├── varenv.sh │ ├── varenv1.sub │ ├── varenv2.sub │ ├── version │ └── version.mini ├── trap.c ├── trap.h ├── unwind_prot.c ├── unwind_prot.h ├── variables.c ├── variables.h ├── version.c ├── xmalloc.c └── xmalloc.h ├── bash-4.0 ├── ABOUT-NLS ├── AUTHORS ├── CHANGES ├── COMPAT ├── COPYING ├── CWRU │ ├── PLATFORMS │ ├── README │ ├── audit-patch │ ├── mh-folder-comp │ ├── misc │ │ ├── bison │ │ ├── errlist.c │ │ ├── hpux10-dlfcn.h │ │ ├── open-files.c │ │ ├── sigs.c │ │ └── sigstat.c │ └── sh-redir-hack ├── INSTALL ├── MANIFEST ├── MANIFEST.doc ├── Makefile.in ├── NEWS ├── NOTES ├── POSIX ├── RBASH ├── README ├── Y2K ├── aclocal.m4 ├── alias.c ├── alias.h ├── array.c ├── array.h ├── arrayfunc.c ├── arrayfunc.h ├── assoc.c ├── assoc.h ├── bashansi.h ├── bashhist.c ├── bashhist.h ├── bashintl.h ├── bashjmp.h ├── bashline.c ├── bashline.h ├── bashtypes.h ├── bracecomp.c ├── braces.c ├── builtins.h ├── builtins │ ├── Makefile.in │ ├── alias.def │ ├── bashgetopt.c │ ├── bashgetopt.h │ ├── bind.def │ ├── break.def │ ├── builtin.def │ ├── caller.def │ ├── cd.def │ ├── colon.def │ ├── command.def │ ├── common.c │ ├── common.h │ ├── complete.def │ ├── declare.def │ ├── echo.def │ ├── enable.def │ ├── eval.def │ ├── evalfile.c │ ├── evalstring.c │ ├── exec.def │ ├── exit.def │ ├── fc.def │ ├── fg_bg.def │ ├── getopt.c │ ├── getopt.h │ ├── getopts.def │ ├── hash.def │ ├── help.def │ ├── history.def │ ├── inlib.def │ ├── jobs.def │ ├── kill.def │ ├── let.def │ ├── mapfile.def │ ├── mkbuiltins.c │ ├── printf.def │ ├── psize.c │ ├── psize.sh │ ├── pushd.def │ ├── read.def │ ├── reserved.def │ ├── return.def │ ├── set.def │ ├── setattr.def │ ├── shift.def │ ├── shopt.def │ ├── source.def │ ├── suspend.def │ ├── test.def │ ├── times.def │ ├── trap.def │ ├── type.def │ ├── ulimit.def │ ├── umask.def │ └── wait.def ├── command.h ├── config-bot.h ├── config-top.h ├── config.h.in ├── configure ├── configure.in ├── conftypes.h ├── copy_cmd.c ├── cross-build │ ├── cygwin32.cache │ ├── opennt.cache │ └── x86-beos.cache ├── dispose_cmd.c ├── dispose_cmd.h ├── doc │ ├── FAQ │ ├── INTRO │ ├── Makefile.in │ ├── README │ ├── article.ms │ ├── article.pdf │ ├── article.txt │ ├── bash.1 │ ├── bash.pdf │ ├── bashbug.1 │ ├── bashref.pdf │ ├── bashref.texi │ ├── builtins.1 │ ├── fdl.texi │ ├── fdl.txt │ ├── htmlpost.sh │ ├── infopost.sh │ ├── rbash.1 │ ├── rose94.pdf │ ├── rose94.ps │ ├── texinfo.tex │ └── version.texi ├── error.c ├── error.h ├── etc │ ├── bash_logout │ └── bashrc ├── eval.c ├── examples │ ├── INDEX.html │ ├── INDEX.txt │ ├── complete │ │ ├── bash_completion │ │ ├── complete-examples │ │ ├── complete.freebsd │ │ ├── complete.gnu-longopt │ │ ├── complete.ianmac │ │ └── complete2.ianmac │ ├── functions │ │ ├── array-stuff │ │ ├── array-to-string │ │ ├── autoload │ │ ├── autoload.v2 │ │ ├── autoload.v3 │ │ ├── basename │ │ ├── basename2 │ │ ├── coproc.bash │ │ ├── coshell.README │ │ ├── coshell.bash │ │ ├── csh-compat │ │ ├── dirfuncs │ │ ├── dirname │ │ ├── emptydir │ │ ├── exitstat │ │ ├── external │ │ ├── fact │ │ ├── fstty │ │ ├── func │ │ ├── gethtml │ │ ├── getoptx.bash │ │ ├── inetaddr │ │ ├── inpath │ │ ├── isnum.bash │ │ ├── isnum2 │ │ ├── isvalidip │ │ ├── jdate.bash │ │ ├── jj.bash │ │ ├── keep │ │ ├── ksh-cd │ │ ├── ksh-compat-test │ │ ├── kshenv │ │ ├── login │ │ ├── lowercase │ │ ├── manpage │ │ ├── mhfold │ │ ├── notify.bash │ │ ├── pathfuncs │ │ ├── recurse │ │ ├── repeat2 │ │ ├── repeat3 │ │ ├── seq │ │ ├── seq2 │ │ ├── shcat │ │ ├── shcat2 │ │ ├── sort-pos-params │ │ ├── substr │ │ ├── substr2 │ │ ├── term │ │ ├── whatis │ │ ├── whence │ │ ├── which │ │ ├── xalias.bash │ │ └── xfind.bash │ ├── loadables │ │ ├── Makefile.in │ │ ├── README │ │ ├── basename.c │ │ ├── cat.c │ │ ├── cut.c │ │ ├── dirname.c │ │ ├── finfo.c │ │ ├── getconf.c │ │ ├── getconf.h │ │ ├── head.c │ │ ├── hello.c │ │ ├── id.c │ │ ├── ln.c │ │ ├── logname.c │ │ ├── mkdir.c │ │ ├── mypid.c │ │ ├── necho.c │ │ ├── pathchk.c │ │ ├── perl │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── bperl.c │ │ │ └── iperl.c │ │ ├── print.c │ │ ├── printenv.c │ │ ├── push.c │ │ ├── realpath.c │ │ ├── rmdir.c │ │ ├── sleep.c │ │ ├── strftime.c │ │ ├── sync.c │ │ ├── tee.c │ │ ├── template.c │ │ ├── truefalse.c │ │ ├── tty.c │ │ ├── uname.c │ │ ├── unlink.c │ │ └── whoami.c │ ├── misc │ │ ├── aliasconv.bash │ │ ├── aliasconv.sh │ │ ├── cshtobash │ │ └── suncmd.termcap │ ├── obashdb │ │ ├── PERMISSION │ │ ├── README │ │ ├── bashdb │ │ └── bashdb.el │ ├── scripts.noah │ │ ├── PERMISSION │ │ ├── README │ │ ├── aref.bash │ │ ├── bash.sub.bash │ │ ├── bash_version.bash │ │ ├── meta.bash │ │ ├── mktmp.bash │ │ ├── number.bash │ │ ├── prompt.bash │ │ ├── remap_keys.bash │ │ ├── require.bash │ │ ├── send_mail.bash │ │ ├── shcat.bash │ │ ├── source.bash │ │ ├── string.bash │ │ ├── stty.bash │ │ └── y_or_n_p.bash │ ├── scripts.v2 │ │ ├── PERMISSION │ │ ├── README │ │ ├── arc2tarz │ │ ├── bashrand │ │ ├── cal2day.bash │ │ ├── cdhist.bash │ │ ├── corename │ │ ├── fman │ │ ├── frcp │ │ ├── lowercase │ │ ├── ncp │ │ ├── newext │ │ ├── nmv │ │ ├── pages │ │ ├── pf │ │ ├── pmtop │ │ ├── ren │ │ ├── rename │ │ ├── repeat │ │ ├── shprof │ │ ├── untar │ │ ├── uudec │ │ ├── uuenc │ │ ├── vtree │ │ └── where │ ├── scripts │ │ ├── adventure.sh │ │ ├── bcsh.sh │ │ ├── cat.sh │ │ ├── center │ │ ├── dd-ex.sh │ │ ├── fixfiles.bash │ │ ├── hanoi.bash │ │ ├── inpath │ │ ├── krand.bash │ │ ├── line-input.bash │ │ ├── nohup.bash │ │ ├── precedence │ │ ├── randomcard.bash │ │ ├── scrollbar │ │ ├── scrollbar2 │ │ ├── self-repro │ │ ├── showperm.bash │ │ ├── shprompt │ │ ├── spin.bash │ │ ├── timeout │ │ ├── timeout2 │ │ ├── timeout3 │ │ ├── vtree2 │ │ ├── vtree3 │ │ ├── vtree3a │ │ ├── websrv.sh │ │ ├── xterm_title │ │ └── zprintf │ └── startup-files │ │ ├── Bash_aliases │ │ ├── Bash_profile │ │ ├── Bashrc.bfox │ │ ├── README │ │ ├── apple │ │ ├── README │ │ ├── aliases │ │ ├── bash.defaults │ │ ├── environment │ │ ├── login │ │ ├── logout │ │ └── rc │ │ ├── bash-profile │ │ └── bashrc ├── execute_cmd.c ├── execute_cmd.h ├── expr.c ├── externs.h ├── findcmd.c ├── findcmd.h ├── flags.c ├── flags.h ├── general.c ├── general.h ├── hashcmd.c ├── hashcmd.h ├── hashlib.c ├── hashlib.h ├── include │ ├── ansi_stdlib.h │ ├── chartypes.h │ ├── filecntl.h │ ├── gettext.h │ ├── maxpath.h │ ├── memalloc.h │ ├── ocache.h │ ├── posixdir.h │ ├── posixjmp.h │ ├── posixstat.h │ ├── posixtime.h │ ├── posixwait.h │ ├── shmbutil.h │ ├── shtty.h │ ├── stdc.h │ ├── systimes.h │ ├── typemax.h │ └── unionwait.h ├── input.c ├── input.h ├── jobs.c ├── jobs.h ├── lib │ ├── glob │ │ ├── Makefile.in │ │ ├── collsyms.h │ │ ├── doc │ │ │ ├── Makefile │ │ │ └── glob.texi │ │ ├── glob.c │ │ ├── glob.h │ │ ├── glob_loop.c │ │ ├── ndir.h │ │ ├── sm_loop.c │ │ ├── smatch.c │ │ ├── strmatch.c │ │ ├── strmatch.h │ │ └── xmbsrtowcs.c │ ├── intl │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── VERSION │ │ ├── bindtextdom.c │ │ ├── config.charset │ │ ├── dcgettext.c │ │ ├── dcigettext.c │ │ ├── dcngettext.c │ │ ├── dgettext.c │ │ ├── dngettext.c │ │ ├── eval-plural.h │ │ ├── explodename.c │ │ ├── finddomain.c │ │ ├── gettext.c │ │ ├── gettextP.h │ │ ├── gmo.h │ │ ├── hash-string.h │ │ ├── intl-compat.c │ │ ├── l10nflist.c │ │ ├── libgnuintl.h.in │ │ ├── loadinfo.h │ │ ├── loadmsgcat.c │ │ ├── localcharset.c │ │ ├── localcharset.h │ │ ├── locale.alias │ │ ├── localealias.c │ │ ├── localename.c │ │ ├── log.c │ │ ├── ngettext.c │ │ ├── os2compat.c │ │ ├── os2compat.h │ │ ├── osdep.c │ │ ├── plural-exp.c │ │ ├── plural-exp.h │ │ ├── plural.c │ │ ├── plural.y │ │ ├── ref-add.sin │ │ ├── ref-del.sin │ │ ├── relocatable.c │ │ ├── relocatable.h │ │ └── textdomain.c │ ├── malloc │ │ ├── Makefile.in │ │ ├── alloca.c │ │ ├── getpagesize.h │ │ ├── imalloc.h │ │ ├── malloc.c │ │ ├── mstats.h │ │ ├── shmalloc.h │ │ ├── stats.c │ │ ├── stub.c │ │ ├── table.c │ │ ├── table.h │ │ ├── trace.c │ │ ├── watch.c │ │ ├── watch.h │ │ ├── xleaktrace │ │ └── xmalloc.c │ ├── readline │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── README │ │ ├── STANDALONE │ │ ├── ansi_stdlib.h │ │ ├── bind.c │ │ ├── callback.c │ │ ├── chardefs.h │ │ ├── compat.c │ │ ├── complete.c │ │ ├── display.c │ │ ├── doc │ │ │ ├── fdl.texi │ │ │ ├── history.texi │ │ │ ├── hstech.texi │ │ │ ├── hsuser.texi │ │ │ ├── rlman.texi │ │ │ ├── rltech.texi │ │ │ ├── rluser.texi │ │ │ ├── rluserman.texi │ │ │ └── version.texi │ │ ├── emacs_keymap.c │ │ ├── examples │ │ │ ├── Inputrc │ │ │ ├── Makefile │ │ │ ├── excallback.c │ │ │ ├── fileman.c │ │ │ ├── histexamp.c │ │ │ ├── manexamp.c │ │ │ ├── rl.c │ │ │ ├── rlcat.c │ │ │ └── rltest.c │ │ ├── funmap.c │ │ ├── histexpand.c │ │ ├── histfile.c │ │ ├── histlib.h │ │ ├── history.c │ │ ├── history.h │ │ ├── histsearch.c │ │ ├── input.c │ │ ├── isearch.c │ │ ├── keymaps.c │ │ ├── keymaps.h │ │ ├── kill.c │ │ ├── macro.c │ │ ├── mbutil.c │ │ ├── misc.c │ │ ├── nls.c │ │ ├── parens.c │ │ ├── posixdir.h │ │ ├── posixjmp.h │ │ ├── posixstat.h │ │ ├── readline.c │ │ ├── readline.h │ │ ├── rlconf.h │ │ ├── rldefs.h │ │ ├── rlmbutil.h │ │ ├── rlprivate.h │ │ ├── rlshell.h │ │ ├── rlstdc.h │ │ ├── rltty.c │ │ ├── rltty.h │ │ ├── rltypedefs.h │ │ ├── rlwinsize.h │ │ ├── savestring.c │ │ ├── search.c │ │ ├── shell.c │ │ ├── signals.c │ │ ├── tcap.h │ │ ├── terminal.c │ │ ├── text.c │ │ ├── tilde.c │ │ ├── tilde.h │ │ ├── undo.c │ │ ├── util.c │ │ ├── vi_keymap.c │ │ ├── vi_mode.c │ │ ├── xmalloc.c │ │ └── xmalloc.h │ ├── sh │ │ ├── Makefile.in │ │ ├── casemod.c │ │ ├── clktck.c │ │ ├── clock.c │ │ ├── eaccess.c │ │ ├── fdprintf.c │ │ ├── fmtullong.c │ │ ├── fmtulong.c │ │ ├── fmtumax.c │ │ ├── fpurge.c │ │ ├── getcwd.c │ │ ├── getenv.c │ │ ├── inet_aton.c │ │ ├── input_avail.c │ │ ├── itos.c │ │ ├── mailstat.c │ │ ├── makepath.c │ │ ├── mbscmp.c │ │ ├── memset.c │ │ ├── mktime.c │ │ ├── netconn.c │ │ ├── netopen.c │ │ ├── oslib.c │ │ ├── pathcanon.c │ │ ├── pathphys.c │ │ ├── rename.c │ │ ├── setlinebuf.c │ │ ├── shmatch.c │ │ ├── shquote.c │ │ ├── shtty.c │ │ ├── snprintf.c │ │ ├── spell.c │ │ ├── strcasecmp.c │ │ ├── strerror.c │ │ ├── strftime.c │ │ ├── strindex.c │ │ ├── stringlist.c │ │ ├── stringvec.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strstr.c │ │ ├── strtod.c │ │ ├── strtoimax.c │ │ ├── strtol.c │ │ ├── strtoll.c │ │ ├── strtoul.c │ │ ├── strtoull.c │ │ ├── strtoumax.c │ │ ├── strtrans.c │ │ ├── times.c │ │ ├── timeval.c │ │ ├── tmpfile.c │ │ ├── uconvert.c │ │ ├── ufuncs.c │ │ ├── vprint.c │ │ ├── wcsdup.c │ │ ├── winsize.c │ │ ├── xstrchr.c │ │ ├── zcatfd.c │ │ ├── zgetline.c │ │ ├── zmapfd.c │ │ ├── zread.c │ │ └── zwrite.c │ ├── termcap │ │ ├── Makefile.in │ │ ├── ltcap.h │ │ ├── termcap.c │ │ ├── termcap.h │ │ ├── tparam.c │ │ └── version.c │ └── tilde │ │ ├── Makefile.in │ │ ├── README │ │ ├── shell.c │ │ ├── tilde.c │ │ └── tilde.h ├── list.c ├── locale.c ├── mailcheck.c ├── mailcheck.h ├── make_cmd.c ├── make_cmd.h ├── mksyntax.c ├── nojobs.c ├── parse.y ├── parser.h ├── patchlevel.h ├── pathexp.c ├── pathexp.h ├── pathnames.h.in ├── pcomplete.c ├── pcomplete.h ├── pcomplib.c ├── po │ ├── ._lt.po │ ├── LINGUAS │ ├── Makefile.in.in │ ├── Makevars │ ├── POTFILES.in │ ├── README │ ├── Rules-builtins │ ├── Rules-quot │ ├── af.gmo │ ├── af.po │ ├── bash.pot │ ├── bg.gmo │ ├── bg.po │ ├── boldquot.sed │ ├── ca.gmo │ ├── ca.po │ ├── cs.gmo │ ├── cs.po │ ├── de.gmo │ ├── de.po │ ├── en@boldquot.gmo │ ├── en@boldquot.header │ ├── en@boldquot.po │ ├── en@quot.gmo │ ├── en@quot.header │ ├── en@quot.po │ ├── eo.gmo │ ├── eo.po │ ├── es.gmo │ ├── es.po │ ├── et.gmo │ ├── et.po │ ├── fr.gmo │ ├── fr.po │ ├── hu.gmo │ ├── hu.po │ ├── id.gmo │ ├── id.po │ ├── insert-header.sin │ ├── ja.gmo │ ├── ja.po │ ├── lt.gmo │ ├── lt.po │ ├── nl.gmo │ ├── nl.po │ ├── pl.gmo │ ├── pl.po │ ├── pt_BR.gmo │ ├── pt_BR.po │ ├── quot.sed │ ├── remove-potcdate.sin │ ├── ro.gmo │ ├── ro.po │ ├── ru.gmo │ ├── ru.po │ ├── sk.gmo │ ├── sk.po │ ├── sv.gmo │ ├── sv.po │ ├── tr.gmo │ ├── tr.po │ ├── vi.gmo │ ├── vi.po │ ├── zh_TW.gmo │ └── zh_TW.po ├── print_cmd.c ├── quit.h ├── redir.c ├── redir.h ├── shell.c ├── shell.h ├── sig.c ├── sig.h ├── siglist.c ├── siglist.h ├── stringlib.c ├── subst.c ├── subst.h ├── support │ ├── Makefile.in │ ├── SYMLINKS │ ├── bash.xbm │ ├── bashbug.sh │ ├── bashversion.c │ ├── checkbashisms │ ├── config.guess │ ├── config.rpath │ ├── config.sub │ ├── fixlinks │ ├── install.sh │ ├── man2html.c │ ├── missing │ ├── mkclone │ ├── mkconffiles │ ├── mkdirs │ ├── mkinstalldirs │ ├── mksignames.c │ ├── mkversion.sh │ ├── printenv.c │ ├── printenv.sh │ ├── recho.c │ ├── rlvers.sh │ ├── shobj-conf │ ├── signames.c │ ├── texi2dvi │ ├── texi2html │ ├── xcase.c │ ├── xenix-link.sh │ └── zecho.c ├── syntax.h ├── test.c ├── test.h ├── tests │ ├── COPYRIGHT │ ├── README │ ├── alias.right │ ├── alias.tests │ ├── appendop.right │ ├── appendop.tests │ ├── arith-for.right │ ├── arith-for.tests │ ├── arith.right │ ├── arith.tests │ ├── arith1.sub │ ├── arith2.sub │ ├── array-at-star │ ├── array.right │ ├── array.tests │ ├── array1.sub │ ├── array2.right │ ├── array2.sub │ ├── array3.sub │ ├── array4.sub │ ├── array5.sub │ ├── array6.sub │ ├── array7.sub │ ├── array8.sub │ ├── array9.sub │ ├── assoc.right │ ├── assoc.tests │ ├── assoc1.sub │ ├── assoc2.sub │ ├── assoc3.sub │ ├── assoc4.sub │ ├── braces.right │ ├── braces.tests │ ├── builtins.right │ ├── builtins.tests │ ├── builtins1.sub │ ├── builtins2.sub │ ├── case.right │ ├── case.tests │ ├── casemod.right │ ├── casemod.tests │ ├── comsub-eof.right │ ├── comsub-eof.tests │ ├── comsub-eof0.sub │ ├── comsub-eof1.sub │ ├── comsub-eof2.sub │ ├── comsub-eof3.sub │ ├── comsub-posix.right │ ├── comsub-posix.tests │ ├── comsub-posix1.sub │ ├── comsub.right │ ├── comsub.tests │ ├── cond-regexp.sub │ ├── cond.right │ ├── cond.tests │ ├── coproc.right │ ├── coproc.tests │ ├── cprint.right │ ├── cprint.tests │ ├── dbg-support.right │ ├── dbg-support.sub │ ├── dbg-support.tests │ ├── dbg-support2.right │ ├── dbg-support2.tests │ ├── dollar-at-star │ ├── dollar-at1.sub │ ├── dollar-at2.sub │ ├── dollar-star1.sub │ ├── dollar-star2.sub │ ├── dollar-star3.sub │ ├── dollar.right │ ├── dstack.right │ ├── dstack.tests │ ├── dstack2.right │ ├── dstack2.tests │ ├── errors.right │ ├── errors.tests │ ├── exec.right │ ├── exec1.sub │ ├── exec2.sub │ ├── exec3.sub │ ├── exec4.sub │ ├── exec5.sub │ ├── exec6.sub │ ├── exec7.sub │ ├── exec8.sub │ ├── execscript │ ├── exp.right │ ├── exp.tests │ ├── exp1.sub │ ├── exp2.sub │ ├── extglob.right │ ├── extglob.tests │ ├── extglob1.sub │ ├── extglob2.right │ ├── extglob2.tests │ ├── extglob3.right │ ├── extglob3.tests │ ├── func.right │ ├── func.tests │ ├── func1.sub │ ├── func2.sub │ ├── func3.sub │ ├── getopts.right │ ├── getopts.tests │ ├── getopts1.sub │ ├── getopts2.sub │ ├── getopts3.sub │ ├── getopts4.sub │ ├── getopts5.sub │ ├── getopts6.sub │ ├── getopts7.sub │ ├── glob-test │ ├── glob.right │ ├── glob1.sub │ ├── heredoc.right │ ├── heredoc.tests │ ├── heredoc1.sub │ ├── herestr.right │ ├── herestr.tests │ ├── histexp.right │ ├── histexp.tests │ ├── history.list │ ├── history.right │ ├── history.tests │ ├── history1.sub │ ├── ifs-posix.right │ ├── ifs-posix.tests │ ├── ifs.right │ ├── ifs.tests │ ├── input-line.sh │ ├── input-line.sub │ ├── input.right │ ├── intl.right │ ├── intl.tests │ ├── intl1.sub │ ├── invert.right │ ├── invert.tests │ ├── iquote.right │ ├── iquote.tests │ ├── jobs.right │ ├── jobs.tests │ ├── jobs1.sub │ ├── jobs2.sub │ ├── jobs3.sub │ ├── jobs4.sub │ ├── mapfile.data │ ├── mapfile.right │ ├── mapfile.tests │ ├── mapfile1.sub │ ├── misc │ │ ├── dev-tcp.tests │ │ ├── perf-script │ │ ├── perftest │ │ ├── read-nchars.tests │ │ ├── redir-t2.sh │ │ ├── run-r2.sh │ │ ├── sigint-1.sh │ │ ├── sigint-2.sh │ │ ├── sigint-3.sh │ │ ├── sigint-4.sh │ │ ├── test-minus-e.1 │ │ ├── test-minus-e.2 │ │ └── wait-bg.tests │ ├── more-exp.right │ ├── more-exp.tests │ ├── new-exp.right │ ├── new-exp.tests │ ├── new-exp1.sub │ ├── new-exp2.sub │ ├── new-exp3.sub │ ├── new-exp4.sub │ ├── new-exp5.sub │ ├── new-exp6.sub │ ├── new-exp7.sub │ ├── nquote.right │ ├── nquote.tests │ ├── nquote1.right │ ├── nquote1.tests │ ├── nquote2.right │ ├── nquote2.tests │ ├── nquote3.right │ ├── nquote3.tests │ ├── nquote4.right │ ├── nquote4.tests │ ├── nquote5.right │ ├── nquote5.tests │ ├── posix2.right │ ├── posix2.tests │ ├── posixpat.right │ ├── posixpat.tests │ ├── prec.right │ ├── precedence │ ├── printf.right │ ├── printf.tests │ ├── quote.right │ ├── quote.tests │ ├── read.right │ ├── read.tests │ ├── read1.sub │ ├── read2.sub │ ├── read3.sub │ ├── read4.sub │ ├── read5.sub │ ├── read6.sub │ ├── redir.right │ ├── redir.tests │ ├── redir1.sub │ ├── redir2.sub │ ├── redir3.in1 │ ├── redir3.in2 │ ├── redir3.sub │ ├── redir4.in1 │ ├── redir4.sub │ ├── redir5.sub │ ├── redir6.sub │ ├── redir7.sub │ ├── redir8.sub │ ├── redir9.sub │ ├── rhs-exp.right │ ├── rhs-exp.tests │ ├── rsh.right │ ├── rsh.tests │ ├── run-alias │ ├── run-all │ ├── run-appendop │ ├── run-arith │ ├── run-arith-for │ ├── run-array │ ├── run-array2 │ ├── run-assoc │ ├── run-braces │ ├── run-builtins │ ├── run-case │ ├── run-casemod │ ├── run-comsub │ ├── run-comsub-eof │ ├── run-comsub-posix │ ├── run-cond │ ├── run-coproc │ ├── run-cprint │ ├── run-dbg-support │ ├── run-dbg-support2 │ ├── run-dirstack │ ├── run-dollars │ ├── run-errors │ ├── run-execscript │ ├── run-exp-tests │ ├── run-extglob │ ├── run-extglob2 │ ├── run-extglob3 │ ├── run-func │ ├── run-getopts │ ├── run-glob-test │ ├── run-heredoc │ ├── run-herestr │ ├── run-histexpand │ ├── run-history │ ├── run-ifs │ ├── run-ifs-posix │ ├── run-input-test │ ├── run-intl │ ├── run-invert │ ├── run-iquote │ ├── run-jobs │ ├── run-mapfile │ ├── run-minimal │ ├── run-more-exp │ ├── run-new-exp │ ├── run-nquote │ ├── run-nquote1 │ ├── run-nquote2 │ ├── run-nquote3 │ ├── run-nquote4 │ ├── run-nquote5 │ ├── run-posix2 │ ├── run-posixpat │ ├── run-precedence │ ├── run-printf │ ├── run-quote │ ├── run-read │ ├── run-redir │ ├── run-rhs-exp │ ├── run-rsh │ ├── run-set-e │ ├── run-set-x │ ├── run-shopt │ ├── run-strip │ ├── run-test │ ├── run-tilde │ ├── run-tilde2 │ ├── run-trap │ ├── run-type │ ├── run-varenv │ ├── set-e.right │ ├── set-e.tests │ ├── set-e1.sub │ ├── set-e2.sub │ ├── set-x.right │ ├── set-x.tests │ ├── shopt.right │ ├── shopt.tests │ ├── source1.sub │ ├── source2.sub │ ├── source3.sub │ ├── source4.sub │ ├── source5.sub │ ├── source6.sub │ ├── strip.right │ ├── strip.tests │ ├── test.right │ ├── test.tests │ ├── tilde.right │ ├── tilde.tests │ ├── tilde2.right │ ├── tilde2.tests │ ├── trap.right │ ├── trap.tests │ ├── trap1.sub │ ├── trap2.sub │ ├── trap2a.sub │ ├── type.right │ ├── type.tests │ ├── type1.sub │ ├── varenv.right │ ├── varenv.sh │ ├── varenv1.sub │ ├── varenv2.sub │ ├── version │ └── version.mini ├── trap.c ├── trap.h ├── unwind_prot.c ├── unwind_prot.h ├── variables.c ├── variables.h ├── version.c ├── xmalloc.c └── xmalloc.h ├── bash-4.1 ├── ABOUT-NLS ├── AUTHORS ├── CHANGES ├── COMPAT ├── COPYING ├── CWRU │ ├── PLATFORMS │ ├── README │ ├── mh-folder-comp │ ├── misc │ │ ├── bison │ │ ├── errlist.c │ │ ├── hpux10-dlfcn.h │ │ ├── open-files.c │ │ ├── sigs.c │ │ └── sigstat.c │ └── sh-redir-hack ├── ChangeLog ├── INSTALL ├── MANIFEST ├── MANIFEST.doc ├── Makefile.in ├── NEWS ├── NOTES ├── POSIX ├── RBASH ├── README ├── Y2K ├── aclocal.m4 ├── alias.c ├── alias.h ├── array.c ├── array.h ├── arrayfunc.c ├── arrayfunc.h ├── assoc.c ├── assoc.h ├── bashansi.h ├── bashhist.c ├── bashhist.h ├── bashintl.h ├── bashjmp.h ├── bashline.c ├── bashline.h ├── bashtypes.h ├── bracecomp.c ├── braces.c ├── builtins.h ├── builtins │ ├── Makefile.in │ ├── alias.def │ ├── bashgetopt.c │ ├── bashgetopt.h │ ├── bind.def │ ├── break.def │ ├── builtin.def │ ├── caller.def │ ├── cd.def │ ├── colon.def │ ├── command.def │ ├── common.c │ ├── common.h │ ├── complete.def │ ├── declare.def │ ├── echo.def │ ├── enable.def │ ├── eval.def │ ├── evalfile.c │ ├── evalstring.c │ ├── exec.def │ ├── exit.def │ ├── fc.def │ ├── fg_bg.def │ ├── getopt.c │ ├── getopt.h │ ├── getopts.def │ ├── hash.def │ ├── help.def │ ├── history.def │ ├── inlib.def │ ├── jobs.def │ ├── kill.def │ ├── let.def │ ├── mapfile.def │ ├── mkbuiltins.c │ ├── printf.def │ ├── psize.c │ ├── psize.sh │ ├── pushd.def │ ├── read.def │ ├── reserved.def │ ├── return.def │ ├── set.def │ ├── setattr.def │ ├── shift.def │ ├── shopt.def │ ├── source.def │ ├── suspend.def │ ├── test.def │ ├── times.def │ ├── trap.def │ ├── type.def │ ├── ulimit.def │ ├── umask.def │ └── wait.def ├── command.h ├── config-bot.h ├── config-top.h ├── config.h.in ├── configure ├── configure.in ├── conftypes.h ├── copy_cmd.c ├── cross-build │ ├── cygwin32.cache │ ├── opennt.cache │ └── x86-beos.cache ├── dispose_cmd.c ├── dispose_cmd.h ├── doc │ ├── ._fdl.texi │ ├── ._fdl.txt │ ├── FAQ │ ├── INTRO │ ├── Makefile.in │ ├── README │ ├── article.ms │ ├── article.pdf │ ├── article.txt │ ├── bash.1 │ ├── bash.pdf │ ├── bashbug.1 │ ├── bashref.pdf │ ├── bashref.texi │ ├── builtins.1 │ ├── fdl.texi │ ├── fdl.txt │ ├── htmlpost.sh │ ├── infopost.sh │ ├── rbash.1 │ ├── rose94.pdf │ ├── rose94.ps │ ├── texinfo.tex │ └── version.texi ├── error.c ├── error.h ├── etc │ ├── bash_logout │ └── bashrc ├── eval.c ├── examples │ ├── INDEX.html │ ├── INDEX.txt │ ├── complete │ │ ├── bash_completion │ │ ├── complete-examples │ │ ├── complete.freebsd │ │ ├── complete.gnu-longopt │ │ ├── complete.ianmac │ │ └── complete2.ianmac │ ├── functions │ │ ├── array-stuff │ │ ├── array-to-string │ │ ├── autoload │ │ ├── autoload.v2 │ │ ├── autoload.v3 │ │ ├── basename │ │ ├── basename2 │ │ ├── coproc.bash │ │ ├── coshell.README │ │ ├── coshell.bash │ │ ├── csh-compat │ │ ├── dirfuncs │ │ ├── dirname │ │ ├── emptydir │ │ ├── exitstat │ │ ├── external │ │ ├── fact │ │ ├── fstty │ │ ├── func │ │ ├── gethtml │ │ ├── getoptx.bash │ │ ├── inetaddr │ │ ├── inpath │ │ ├── isnum.bash │ │ ├── isnum2 │ │ ├── isvalidip │ │ ├── jdate.bash │ │ ├── jj.bash │ │ ├── keep │ │ ├── ksh-cd │ │ ├── ksh-compat-test │ │ ├── kshenv │ │ ├── login │ │ ├── lowercase │ │ ├── manpage │ │ ├── mhfold │ │ ├── notify.bash │ │ ├── pathfuncs │ │ ├── recurse │ │ ├── repeat2 │ │ ├── repeat3 │ │ ├── seq │ │ ├── seq2 │ │ ├── shcat │ │ ├── shcat2 │ │ ├── sort-pos-params │ │ ├── substr │ │ ├── substr2 │ │ ├── term │ │ ├── whatis │ │ ├── whence │ │ ├── which │ │ ├── xalias.bash │ │ └── xfind.bash │ ├── loadables │ │ ├── Makefile.in │ │ ├── README │ │ ├── basename.c │ │ ├── cat.c │ │ ├── cut.c │ │ ├── dirname.c │ │ ├── finfo.c │ │ ├── getconf.c │ │ ├── getconf.h │ │ ├── head.c │ │ ├── hello.c │ │ ├── id.c │ │ ├── ln.c │ │ ├── logname.c │ │ ├── mkdir.c │ │ ├── mypid.c │ │ ├── necho.c │ │ ├── pathchk.c │ │ ├── perl │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── bperl.c │ │ │ └── iperl.c │ │ ├── print.c │ │ ├── printenv.c │ │ ├── push.c │ │ ├── realpath.c │ │ ├── rmdir.c │ │ ├── sleep.c │ │ ├── strftime.c │ │ ├── sync.c │ │ ├── tee.c │ │ ├── template.c │ │ ├── truefalse.c │ │ ├── tty.c │ │ ├── uname.c │ │ ├── unlink.c │ │ └── whoami.c │ ├── misc │ │ ├── aliasconv.bash │ │ ├── aliasconv.sh │ │ ├── cshtobash │ │ └── suncmd.termcap │ ├── obashdb │ │ ├── PERMISSION │ │ ├── README │ │ ├── bashdb │ │ └── bashdb.el │ ├── scripts.noah │ │ ├── PERMISSION │ │ ├── README │ │ ├── aref.bash │ │ ├── bash.sub.bash │ │ ├── bash_version.bash │ │ ├── meta.bash │ │ ├── mktmp.bash │ │ ├── number.bash │ │ ├── prompt.bash │ │ ├── remap_keys.bash │ │ ├── require.bash │ │ ├── send_mail.bash │ │ ├── shcat.bash │ │ ├── source.bash │ │ ├── string.bash │ │ ├── stty.bash │ │ └── y_or_n_p.bash │ ├── scripts.v2 │ │ ├── PERMISSION │ │ ├── README │ │ ├── arc2tarz │ │ ├── bashrand │ │ ├── cal2day.bash │ │ ├── cdhist.bash │ │ ├── corename │ │ ├── fman │ │ ├── frcp │ │ ├── lowercase │ │ ├── ncp │ │ ├── newext │ │ ├── nmv │ │ ├── pages │ │ ├── pf │ │ ├── pmtop │ │ ├── ren │ │ ├── rename │ │ ├── repeat │ │ ├── shprof │ │ ├── untar │ │ ├── uudec │ │ ├── uuenc │ │ ├── vtree │ │ └── where │ ├── scripts │ │ ├── adventure.sh │ │ ├── bcsh.sh │ │ ├── cat.sh │ │ ├── center │ │ ├── dd-ex.sh │ │ ├── fixfiles.bash │ │ ├── hanoi.bash │ │ ├── inpath │ │ ├── krand.bash │ │ ├── line-input.bash │ │ ├── nohup.bash │ │ ├── precedence │ │ ├── randomcard.bash │ │ ├── scrollbar │ │ ├── scrollbar2 │ │ ├── self-repro │ │ ├── showperm.bash │ │ ├── shprompt │ │ ├── spin.bash │ │ ├── timeout │ │ ├── timeout2 │ │ ├── timeout3 │ │ ├── vtree2 │ │ ├── vtree3 │ │ ├── vtree3a │ │ ├── websrv.sh │ │ ├── xterm_title │ │ └── zprintf │ └── startup-files │ │ ├── Bash_aliases │ │ ├── Bash_profile │ │ ├── Bashrc.bfox │ │ ├── README │ │ ├── apple │ │ ├── README │ │ ├── aliases │ │ ├── bash.defaults │ │ ├── environment │ │ ├── login │ │ ├── logout │ │ └── rc │ │ ├── bash-profile │ │ └── bashrc ├── execute_cmd.c ├── execute_cmd.h ├── expr.c ├── externs.h ├── findcmd.c ├── findcmd.h ├── flags.c ├── flags.h ├── general.c ├── general.h ├── hashcmd.c ├── hashcmd.h ├── hashlib.c ├── hashlib.h ├── include │ ├── ansi_stdlib.h │ ├── chartypes.h │ ├── filecntl.h │ ├── gettext.h │ ├── maxpath.h │ ├── memalloc.h │ ├── ocache.h │ ├── posixdir.h │ ├── posixjmp.h │ ├── posixselect.h │ ├── posixstat.h │ ├── posixtime.h │ ├── posixwait.h │ ├── shmbutil.h │ ├── shtty.h │ ├── stdc.h │ ├── systimes.h │ ├── typemax.h │ └── unionwait.h ├── input.c ├── input.h ├── jobs.c ├── jobs.h ├── lib │ ├── glob │ │ ├── Makefile.in │ │ ├── collsyms.h │ │ ├── doc │ │ │ ├── Makefile │ │ │ └── glob.texi │ │ ├── glob.c │ │ ├── glob.h │ │ ├── glob_loop.c │ │ ├── ndir.h │ │ ├── sm_loop.c │ │ ├── smatch.c │ │ ├── strmatch.c │ │ ├── strmatch.h │ │ └── xmbsrtowcs.c │ ├── intl │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── VERSION │ │ ├── bindtextdom.c │ │ ├── config.charset │ │ ├── dcgettext.c │ │ ├── dcigettext.c │ │ ├── dcngettext.c │ │ ├── dgettext.c │ │ ├── dngettext.c │ │ ├── eval-plural.h │ │ ├── explodename.c │ │ ├── finddomain.c │ │ ├── gettext.c │ │ ├── gettextP.h │ │ ├── gmo.h │ │ ├── hash-string.h │ │ ├── intl-compat.c │ │ ├── l10nflist.c │ │ ├── libgnuintl.h.in │ │ ├── loadinfo.h │ │ ├── loadmsgcat.c │ │ ├── localcharset.c │ │ ├── localcharset.h │ │ ├── locale.alias │ │ ├── localealias.c │ │ ├── localename.c │ │ ├── log.c │ │ ├── ngettext.c │ │ ├── os2compat.c │ │ ├── os2compat.h │ │ ├── osdep.c │ │ ├── plural-exp.c │ │ ├── plural-exp.h │ │ ├── plural.c │ │ ├── plural.y │ │ ├── ref-add.sin │ │ ├── ref-del.sin │ │ ├── relocatable.c │ │ ├── relocatable.h │ │ └── textdomain.c │ ├── malloc │ │ ├── Makefile.in │ │ ├── alloca.c │ │ ├── getpagesize.h │ │ ├── imalloc.h │ │ ├── malloc.c │ │ ├── mstats.h │ │ ├── shmalloc.h │ │ ├── stats.c │ │ ├── stub.c │ │ ├── table.c │ │ ├── table.h │ │ ├── trace.c │ │ ├── watch.c │ │ ├── watch.h │ │ ├── xleaktrace │ │ └── xmalloc.c │ ├── readline │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── README │ │ ├── STANDALONE │ │ ├── ansi_stdlib.h │ │ ├── bind.c │ │ ├── callback.c │ │ ├── chardefs.h │ │ ├── compat.c │ │ ├── complete.c │ │ ├── display.c │ │ ├── doc │ │ │ ├── ._fdl.texi │ │ │ ├── fdl.texi │ │ │ ├── history.texi │ │ │ ├── hstech.texi │ │ │ ├── hsuser.texi │ │ │ ├── rlman.texi │ │ │ ├── rltech.texi │ │ │ ├── rluser.texi │ │ │ ├── rluserman.texi │ │ │ └── version.texi │ │ ├── emacs_keymap.c │ │ ├── examples │ │ │ ├── Inputrc │ │ │ ├── Makefile │ │ │ ├── excallback.c │ │ │ ├── fileman.c │ │ │ ├── histexamp.c │ │ │ ├── manexamp.c │ │ │ ├── rl.c │ │ │ ├── rlcat.c │ │ │ └── rltest.c │ │ ├── funmap.c │ │ ├── histexpand.c │ │ ├── histfile.c │ │ ├── histlib.h │ │ ├── history.c │ │ ├── history.h │ │ ├── histsearch.c │ │ ├── input.c │ │ ├── isearch.c │ │ ├── keymaps.c │ │ ├── keymaps.h │ │ ├── kill.c │ │ ├── macro.c │ │ ├── mbutil.c │ │ ├── misc.c │ │ ├── nls.c │ │ ├── parens.c │ │ ├── posixdir.h │ │ ├── posixjmp.h │ │ ├── posixselect.h │ │ ├── posixstat.h │ │ ├── readline.c │ │ ├── readline.h │ │ ├── rlconf.h │ │ ├── rldefs.h │ │ ├── rlmbutil.h │ │ ├── rlprivate.h │ │ ├── rlshell.h │ │ ├── rlstdc.h │ │ ├── rltty.c │ │ ├── rltty.h │ │ ├── rltypedefs.h │ │ ├── rlwinsize.h │ │ ├── savestring.c │ │ ├── search.c │ │ ├── shell.c │ │ ├── signals.c │ │ ├── tcap.h │ │ ├── terminal.c │ │ ├── text.c │ │ ├── tilde.c │ │ ├── tilde.h │ │ ├── undo.c │ │ ├── util.c │ │ ├── vi_keymap.c │ │ ├── vi_mode.c │ │ ├── xmalloc.c │ │ └── xmalloc.h │ ├── sh │ │ ├── Makefile.in │ │ ├── casemod.c │ │ ├── clktck.c │ │ ├── clock.c │ │ ├── eaccess.c │ │ ├── fdprintf.c │ │ ├── fmtullong.c │ │ ├── fmtulong.c │ │ ├── fmtumax.c │ │ ├── fnxform.c │ │ ├── fpurge.c │ │ ├── getcwd.c │ │ ├── getenv.c │ │ ├── inet_aton.c │ │ ├── input_avail.c │ │ ├── itos.c │ │ ├── mailstat.c │ │ ├── makepath.c │ │ ├── mbscasecmp.c │ │ ├── mbschr.c │ │ ├── mbscmp.c │ │ ├── memset.c │ │ ├── mktime.c │ │ ├── netconn.c │ │ ├── netopen.c │ │ ├── oslib.c │ │ ├── pathcanon.c │ │ ├── pathphys.c │ │ ├── rename.c │ │ ├── setlinebuf.c │ │ ├── shmatch.c │ │ ├── shquote.c │ │ ├── shtty.c │ │ ├── snprintf.c │ │ ├── spell.c │ │ ├── strcasecmp.c │ │ ├── strcasestr.c │ │ ├── strerror.c │ │ ├── strftime.c │ │ ├── stringlist.c │ │ ├── stringvec.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strstr.c │ │ ├── strtod.c │ │ ├── strtoimax.c │ │ ├── strtol.c │ │ ├── strtoll.c │ │ ├── strtoul.c │ │ ├── strtoull.c │ │ ├── strtoumax.c │ │ ├── strtrans.c │ │ ├── times.c │ │ ├── timeval.c │ │ ├── tmpfile.c │ │ ├── uconvert.c │ │ ├── ufuncs.c │ │ ├── vprint.c │ │ ├── wcsdup.c │ │ ├── winsize.c │ │ ├── zcatfd.c │ │ ├── zgetline.c │ │ ├── zmapfd.c │ │ ├── zread.c │ │ └── zwrite.c │ ├── termcap │ │ ├── Makefile.in │ │ ├── ltcap.h │ │ ├── termcap.c │ │ ├── termcap.h │ │ ├── tparam.c │ │ └── version.c │ └── tilde │ │ ├── Makefile.in │ │ ├── README │ │ ├── shell.c │ │ ├── tilde.c │ │ └── tilde.h ├── list.c ├── locale.c ├── mailcheck.c ├── mailcheck.h ├── make_cmd.c ├── make_cmd.h ├── mksyntax.c ├── nojobs.c ├── parse.y ├── parser.h ├── patchlevel.h ├── pathexp.c ├── pathexp.h ├── pathnames.h.in ├── pcomplete.c ├── pcomplete.h ├── pcomplib.c ├── po │ ├── LINGUAS │ ├── Makefile.in.in │ ├── Makevars │ ├── POTFILES.in │ ├── README │ ├── Rules-builtins │ ├── Rules-quot │ ├── af.gmo │ ├── af.po │ ├── bash.pot │ ├── bg.gmo │ ├── bg.po │ ├── boldquot.sed │ ├── ca.gmo │ ├── ca.po │ ├── cs.gmo │ ├── cs.po │ ├── de.gmo │ ├── de.po │ ├── en@boldquot.gmo │ ├── en@boldquot.header │ ├── en@boldquot.po │ ├── en@quot.gmo │ ├── en@quot.header │ ├── en@quot.po │ ├── eo.gmo │ ├── eo.po │ ├── es.gmo │ ├── es.po │ ├── et.gmo │ ├── et.po │ ├── fi.gmo │ ├── fi.po │ ├── fr.gmo │ ├── fr.po │ ├── ga.gmo │ ├── ga.po │ ├── hu.gmo │ ├── hu.po │ ├── id.gmo │ ├── id.po │ ├── insert-header.sin │ ├── ja.gmo │ ├── ja.po │ ├── lt.gmo │ ├── lt.po │ ├── nl.gmo │ ├── nl.po │ ├── pl.gmo │ ├── pl.po │ ├── pt_BR.gmo │ ├── pt_BR.po │ ├── quot.sed │ ├── remove-potcdate.sin │ ├── ro.gmo │ ├── ro.po │ ├── ru.gmo │ ├── ru.po │ ├── sk.gmo │ ├── sk.po │ ├── sv.gmo │ ├── sv.po │ ├── tr.gmo │ ├── tr.po │ ├── vi.gmo │ ├── vi.po │ ├── zh_TW.gmo │ └── zh_TW.po ├── print_cmd.c ├── quit.h ├── redir.c ├── redir.h ├── shell.c ├── shell.h ├── sig.c ├── sig.h ├── siglist.c ├── siglist.h ├── stringlib.c ├── subst.c ├── subst.h ├── support │ ├── Makefile.in │ ├── SYMLINKS │ ├── bash.xbm │ ├── bashbug.sh │ ├── bashversion.c │ ├── checkbashisms │ ├── config.guess │ ├── config.rpath │ ├── config.sub │ ├── fixlinks │ ├── install.sh │ ├── man2html.c │ ├── missing │ ├── mkclone │ ├── mkconffiles │ ├── mkdirs │ ├── mkinstalldirs │ ├── mksignames.c │ ├── mkversion.sh │ ├── printenv.c │ ├── printenv.sh │ ├── recho.c │ ├── rlvers.sh │ ├── shobj-conf │ ├── signames.c │ ├── texi2dvi │ ├── texi2html │ ├── xcase.c │ ├── xenix-link.sh │ └── zecho.c ├── syntax.h ├── test.c ├── test.h ├── tests │ ├── COPYRIGHT │ ├── README │ ├── alias.right │ ├── alias.tests │ ├── alias1.sub │ ├── appendop.right │ ├── appendop.tests │ ├── arith-for.right │ ├── arith-for.tests │ ├── arith.right │ ├── arith.tests │ ├── arith1.sub │ ├── arith2.sub │ ├── array-at-star │ ├── array.right │ ├── array.tests │ ├── array1.sub │ ├── array2.right │ ├── array2.sub │ ├── array3.sub │ ├── array4.sub │ ├── array5.sub │ ├── array6.sub │ ├── array7.sub │ ├── array8.sub │ ├── array9.sub │ ├── assoc.right │ ├── assoc.tests │ ├── assoc1.sub │ ├── assoc2.sub │ ├── assoc3.sub │ ├── assoc4.sub │ ├── assoc5.sub │ ├── assoc6.sub │ ├── braces.right │ ├── braces.tests │ ├── builtins.right │ ├── builtins.tests │ ├── builtins1.sub │ ├── builtins2.sub │ ├── case.right │ ├── case.tests │ ├── casemod.right │ ├── casemod.tests │ ├── comsub-eof.right │ ├── comsub-eof.tests │ ├── comsub-eof0.sub │ ├── comsub-eof1.sub │ ├── comsub-eof2.sub │ ├── comsub-eof3.sub │ ├── comsub-eof4.sub │ ├── comsub-eof5.sub │ ├── comsub-posix.right │ ├── comsub-posix.tests │ ├── comsub-posix1.sub │ ├── comsub.right │ ├── comsub.tests │ ├── comsub1.sub │ ├── cond-regexp.sub │ ├── cond.right │ ├── cond.tests │ ├── coproc.right │ ├── coproc.tests │ ├── cprint.right │ ├── cprint.tests │ ├── dbg-support.right │ ├── dbg-support.sub │ ├── dbg-support.tests │ ├── dbg-support2.right │ ├── dbg-support2.tests │ ├── dbg-support3.sub │ ├── dollar-at-star │ ├── dollar-at1.sub │ ├── dollar-at2.sub │ ├── dollar-at3.sub │ ├── dollar-star1.sub │ ├── dollar-star2.sub │ ├── dollar-star3.sub │ ├── dollar-star4.sub │ ├── dollar-star5.sub │ ├── dollar.right │ ├── dstack.right │ ├── dstack.tests │ ├── dstack2.right │ ├── dstack2.tests │ ├── errors.right │ ├── errors.tests │ ├── exec.right │ ├── exec1.sub │ ├── exec2.sub │ ├── exec3.sub │ ├── exec4.sub │ ├── exec5.sub │ ├── exec6.sub │ ├── exec7.sub │ ├── exec8.sub │ ├── execscript │ ├── exp.right │ ├── exp.tests │ ├── exp1.sub │ ├── exp2.sub │ ├── exp3.sub │ ├── extglob.right │ ├── extglob.tests │ ├── extglob1.sub │ ├── extglob2.right │ ├── extglob2.tests │ ├── extglob3.right │ ├── extglob3.tests │ ├── func.right │ ├── func.tests │ ├── func1.sub │ ├── func2.sub │ ├── func3.sub │ ├── getopts.right │ ├── getopts.tests │ ├── getopts1.sub │ ├── getopts2.sub │ ├── getopts3.sub │ ├── getopts4.sub │ ├── getopts5.sub │ ├── getopts6.sub │ ├── getopts7.sub │ ├── glob.right │ ├── glob.tests │ ├── glob1.sub │ ├── globstar.right │ ├── globstar.tests │ ├── globstar1.sub │ ├── heredoc.right │ ├── heredoc.tests │ ├── heredoc1.sub │ ├── herestr.right │ ├── herestr.tests │ ├── histexp.right │ ├── histexp.tests │ ├── history.list │ ├── history.right │ ├── history.tests │ ├── history1.sub │ ├── history2.sub │ ├── ifs-posix.right │ ├── ifs-posix.tests │ ├── ifs.right │ ├── ifs.tests │ ├── input-line.sh │ ├── input-line.sub │ ├── input.right │ ├── intl.right │ ├── intl.tests │ ├── intl1.sub │ ├── invert.right │ ├── invert.tests │ ├── iquote.right │ ├── iquote.tests │ ├── jobs.right │ ├── jobs.tests │ ├── jobs1.sub │ ├── jobs2.sub │ ├── jobs3.sub │ ├── jobs4.sub │ ├── mapfile.data │ ├── mapfile.right │ ├── mapfile.tests │ ├── mapfile1.sub │ ├── misc │ │ ├── dev-tcp.tests │ │ ├── perf-script │ │ ├── perftest │ │ ├── read-nchars.tests │ │ ├── redir-t2.sh │ │ ├── run-r2.sh │ │ ├── sigint-1.sh │ │ ├── sigint-2.sh │ │ ├── sigint-3.sh │ │ ├── sigint-4.sh │ │ ├── test-minus-e.1 │ │ ├── test-minus-e.2 │ │ └── wait-bg.tests │ ├── more-exp.right │ ├── more-exp.tests │ ├── new-exp.right │ ├── new-exp.tests │ ├── new-exp1.sub │ ├── new-exp2.sub │ ├── new-exp3.sub │ ├── new-exp4.sub │ ├── new-exp5.sub │ ├── new-exp6.sub │ ├── new-exp7.sub │ ├── nquote.right │ ├── nquote.tests │ ├── nquote1.right │ ├── nquote1.sub │ ├── nquote1.tests │ ├── nquote2.right │ ├── nquote2.tests │ ├── nquote3.right │ ├── nquote3.tests │ ├── nquote4.right │ ├── nquote4.tests │ ├── nquote5.right │ ├── nquote5.tests │ ├── posix2.right │ ├── posix2.tests │ ├── posixpat.right │ ├── posixpat.tests │ ├── prec.right │ ├── precedence │ ├── printf.right │ ├── printf.tests │ ├── printf2.sub │ ├── quote.right │ ├── quote.tests │ ├── read.right │ ├── read.tests │ ├── read1.sub │ ├── read2.sub │ ├── read3.sub │ ├── read4.sub │ ├── read5.sub │ ├── read6.sub │ ├── redir.right │ ├── redir.tests │ ├── redir1.sub │ ├── redir2.sub │ ├── redir3.in1 │ ├── redir3.in2 │ ├── redir3.sub │ ├── redir4.in1 │ ├── redir4.sub │ ├── redir5.sub │ ├── redir6.sub │ ├── redir7.sub │ ├── redir8.sub │ ├── redir9.sub │ ├── rhs-exp.right │ ├── rhs-exp.tests │ ├── rsh.right │ ├── rsh.tests │ ├── run-alias │ ├── run-all │ ├── run-appendop │ ├── run-arith │ ├── run-arith-for │ ├── run-array │ ├── run-array2 │ ├── run-assoc │ ├── run-braces │ ├── run-builtins │ ├── run-case │ ├── run-casemod │ ├── run-comsub │ ├── run-comsub-eof │ ├── run-comsub-posix │ ├── run-cond │ ├── run-coproc │ ├── run-cprint │ ├── run-dbg-support │ ├── run-dbg-support2 │ ├── run-dirstack │ ├── run-dollars │ ├── run-errors │ ├── run-execscript │ ├── run-exp-tests │ ├── run-extglob │ ├── run-extglob2 │ ├── run-extglob3 │ ├── run-func │ ├── run-getopts │ ├── run-glob-test │ ├── run-globstar │ ├── run-heredoc │ ├── run-herestr │ ├── run-histexpand │ ├── run-history │ ├── run-ifs │ ├── run-ifs-posix │ ├── run-input-test │ ├── run-intl │ ├── run-invert │ ├── run-iquote │ ├── run-jobs │ ├── run-mapfile │ ├── run-minimal │ ├── run-more-exp │ ├── run-new-exp │ ├── run-nquote │ ├── run-nquote1 │ ├── run-nquote2 │ ├── run-nquote3 │ ├── run-nquote4 │ ├── run-nquote5 │ ├── run-posix2 │ ├── run-posixpat │ ├── run-precedence │ ├── run-printf │ ├── run-quote │ ├── run-read │ ├── run-redir │ ├── run-rhs-exp │ ├── run-rsh │ ├── run-set-e │ ├── run-set-x │ ├── run-shopt │ ├── run-strip │ ├── run-test │ ├── run-tilde │ ├── run-tilde2 │ ├── run-trap │ ├── run-type │ ├── run-varenv │ ├── run-vredir │ ├── set-e.right │ ├── set-e.tests │ ├── set-e1.sub │ ├── set-e2.sub │ ├── set-x.right │ ├── set-x.tests │ ├── set-x1.sub │ ├── shopt.right │ ├── shopt.tests │ ├── source1.sub │ ├── source2.sub │ ├── source3.sub │ ├── source4.sub │ ├── source5.sub │ ├── source6.sub │ ├── strip.right │ ├── strip.tests │ ├── test.right │ ├── test.tests │ ├── tilde.right │ ├── tilde.tests │ ├── tilde2.right │ ├── tilde2.tests │ ├── trap.right │ ├── trap.tests │ ├── trap1.sub │ ├── trap2.sub │ ├── trap2a.sub │ ├── trap3.sub │ ├── type.right │ ├── type.tests │ ├── type1.sub │ ├── type2.sub │ ├── varenv.right │ ├── varenv.sh │ ├── varenv1.sub │ ├── varenv2.sub │ ├── version │ ├── version.mini │ ├── vredir.right │ ├── vredir.tests │ ├── vredir1.sub │ ├── vredir2.sub │ ├── vredir3.sub │ ├── vredir4.sub │ └── vredir5.sub ├── trap.c ├── trap.h ├── unwind_prot.c ├── unwind_prot.h ├── variables.c ├── variables.h ├── version.c ├── xmalloc.c └── xmalloc.h ├── download_and_patch_bash.sh ├── installer-zip ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script └── files │ ├── data │ └── local │ │ ├── .bash_aliases │ │ ├── .bashrc │ │ ├── .inputrc │ │ └── .profile │ └── system │ └── etc │ ├── bash.bashrc │ └── profile ├── mod_for_android.sh ├── notify.wav └── package_zips.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/README -------------------------------------------------------------------------------- /android_bash-3.2.51(2): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/android_bash-3.2.51(2) -------------------------------------------------------------------------------- /android_bash-4.0.38(2): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/android_bash-4.0.38(2) -------------------------------------------------------------------------------- /android_bash-4.1.11(2): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/android_bash-4.1.11(2) -------------------------------------------------------------------------------- /bash-3.2/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/ABOUT-NLS -------------------------------------------------------------------------------- /bash-3.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/AUTHORS -------------------------------------------------------------------------------- /bash-3.2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/CHANGES -------------------------------------------------------------------------------- /bash-3.2/COMPAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/COMPAT -------------------------------------------------------------------------------- /bash-3.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/COPYING -------------------------------------------------------------------------------- /bash-3.2/CWRU/PLATFORMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/CWRU/PLATFORMS -------------------------------------------------------------------------------- /bash-3.2/CWRU/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/CWRU/README -------------------------------------------------------------------------------- /bash-3.2/CWRU/misc/bison: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/CWRU/misc/bison -------------------------------------------------------------------------------- /bash-3.2/CWRU/misc/sigs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/CWRU/misc/sigs.c -------------------------------------------------------------------------------- /bash-3.2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/INSTALL -------------------------------------------------------------------------------- /bash-3.2/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/MANIFEST -------------------------------------------------------------------------------- /bash-3.2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/Makefile.in -------------------------------------------------------------------------------- /bash-3.2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/NEWS -------------------------------------------------------------------------------- /bash-3.2/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/NOTES -------------------------------------------------------------------------------- /bash-3.2/POSIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/POSIX -------------------------------------------------------------------------------- /bash-3.2/RBASH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/RBASH -------------------------------------------------------------------------------- /bash-3.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/README -------------------------------------------------------------------------------- /bash-3.2/Y2K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/Y2K -------------------------------------------------------------------------------- /bash-3.2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/aclocal.m4 -------------------------------------------------------------------------------- /bash-3.2/alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/alias.c -------------------------------------------------------------------------------- /bash-3.2/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/alias.h -------------------------------------------------------------------------------- /bash-3.2/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/array.c -------------------------------------------------------------------------------- /bash-3.2/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/array.h -------------------------------------------------------------------------------- /bash-3.2/arrayfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/arrayfunc.c -------------------------------------------------------------------------------- /bash-3.2/arrayfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/arrayfunc.h -------------------------------------------------------------------------------- /bash-3.2/bashansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/bashansi.h -------------------------------------------------------------------------------- /bash-3.2/bashhist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/bashhist.c -------------------------------------------------------------------------------- /bash-3.2/bashhist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/bashhist.h -------------------------------------------------------------------------------- /bash-3.2/bashintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/bashintl.h -------------------------------------------------------------------------------- /bash-3.2/bashjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/bashjmp.h -------------------------------------------------------------------------------- /bash-3.2/bashline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/bashline.c -------------------------------------------------------------------------------- /bash-3.2/bashline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/bashline.h -------------------------------------------------------------------------------- /bash-3.2/bashtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/bashtypes.h -------------------------------------------------------------------------------- /bash-3.2/bracecomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/bracecomp.c -------------------------------------------------------------------------------- /bash-3.2/braces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/braces.c -------------------------------------------------------------------------------- /bash-3.2/builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/builtins.h -------------------------------------------------------------------------------- /bash-3.2/builtins/cd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/builtins/cd.def -------------------------------------------------------------------------------- /bash-3.2/builtins/fc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/builtins/fc.def -------------------------------------------------------------------------------- /bash-3.2/builtins/let.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/builtins/let.def -------------------------------------------------------------------------------- /bash-3.2/builtins/psize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/builtins/psize.c -------------------------------------------------------------------------------- /bash-3.2/builtins/set.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/builtins/set.def -------------------------------------------------------------------------------- /bash-3.2/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/command.h -------------------------------------------------------------------------------- /bash-3.2/config-bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/config-bot.h -------------------------------------------------------------------------------- /bash-3.2/config-top.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/config-top.h -------------------------------------------------------------------------------- /bash-3.2/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/config.h.in -------------------------------------------------------------------------------- /bash-3.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/configure -------------------------------------------------------------------------------- /bash-3.2/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/configure.in -------------------------------------------------------------------------------- /bash-3.2/conftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/conftypes.h -------------------------------------------------------------------------------- /bash-3.2/copy_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/copy_cmd.c -------------------------------------------------------------------------------- /bash-3.2/dispose_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/dispose_cmd.c -------------------------------------------------------------------------------- /bash-3.2/dispose_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/dispose_cmd.h -------------------------------------------------------------------------------- /bash-3.2/doc/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/FAQ -------------------------------------------------------------------------------- /bash-3.2/doc/INTRO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/INTRO -------------------------------------------------------------------------------- /bash-3.2/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/Makefile.in -------------------------------------------------------------------------------- /bash-3.2/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/README -------------------------------------------------------------------------------- /bash-3.2/doc/article.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/article.ms -------------------------------------------------------------------------------- /bash-3.2/doc/bash.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/bash.1 -------------------------------------------------------------------------------- /bash-3.2/doc/bashbug.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/bashbug.1 -------------------------------------------------------------------------------- /bash-3.2/doc/bashref.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/bashref.texi -------------------------------------------------------------------------------- /bash-3.2/doc/builtins.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/builtins.1 -------------------------------------------------------------------------------- /bash-3.2/doc/fdl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/fdl.texi -------------------------------------------------------------------------------- /bash-3.2/doc/fdl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/fdl.txt -------------------------------------------------------------------------------- /bash-3.2/doc/htmlpost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/htmlpost.sh -------------------------------------------------------------------------------- /bash-3.2/doc/infopost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/infopost.sh -------------------------------------------------------------------------------- /bash-3.2/doc/rbash.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/rbash.1 -------------------------------------------------------------------------------- /bash-3.2/doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/texinfo.tex -------------------------------------------------------------------------------- /bash-3.2/doc/version.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/doc/version.texi -------------------------------------------------------------------------------- /bash-3.2/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/error.c -------------------------------------------------------------------------------- /bash-3.2/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/error.h -------------------------------------------------------------------------------- /bash-3.2/etc/bash_logout: -------------------------------------------------------------------------------- 1 | clear 2 | -------------------------------------------------------------------------------- /bash-3.2/etc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/etc/bashrc -------------------------------------------------------------------------------- /bash-3.2/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/eval.c -------------------------------------------------------------------------------- /bash-3.2/execute_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/execute_cmd.c -------------------------------------------------------------------------------- /bash-3.2/execute_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/execute_cmd.h -------------------------------------------------------------------------------- /bash-3.2/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/expr.c -------------------------------------------------------------------------------- /bash-3.2/externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/externs.h -------------------------------------------------------------------------------- /bash-3.2/findcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/findcmd.c -------------------------------------------------------------------------------- /bash-3.2/findcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/findcmd.h -------------------------------------------------------------------------------- /bash-3.2/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/flags.c -------------------------------------------------------------------------------- /bash-3.2/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/flags.h -------------------------------------------------------------------------------- /bash-3.2/general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/general.c -------------------------------------------------------------------------------- /bash-3.2/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/general.h -------------------------------------------------------------------------------- /bash-3.2/hashcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/hashcmd.c -------------------------------------------------------------------------------- /bash-3.2/hashcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/hashcmd.h -------------------------------------------------------------------------------- /bash-3.2/hashlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/hashlib.c -------------------------------------------------------------------------------- /bash-3.2/hashlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/hashlib.h -------------------------------------------------------------------------------- /bash-3.2/include/ocache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/include/ocache.h -------------------------------------------------------------------------------- /bash-3.2/include/shtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/include/shtty.h -------------------------------------------------------------------------------- /bash-3.2/include/stdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/include/stdc.h -------------------------------------------------------------------------------- /bash-3.2/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/input.c -------------------------------------------------------------------------------- /bash-3.2/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/input.h -------------------------------------------------------------------------------- /bash-3.2/jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/jobs.c -------------------------------------------------------------------------------- /bash-3.2/jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/jobs.h -------------------------------------------------------------------------------- /bash-3.2/lib/glob/doc/glob.texi: -------------------------------------------------------------------------------- 1 | Nothing happens here. 2 | -------------------------------------------------------------------------------- /bash-3.2/lib/glob/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/glob/glob.c -------------------------------------------------------------------------------- /bash-3.2/lib/glob/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/glob/glob.h -------------------------------------------------------------------------------- /bash-3.2/lib/glob/ndir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/glob/ndir.h -------------------------------------------------------------------------------- /bash-3.2/lib/intl/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/intl/VERSION -------------------------------------------------------------------------------- /bash-3.2/lib/intl/gmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/intl/gmo.h -------------------------------------------------------------------------------- /bash-3.2/lib/intl/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/intl/log.c -------------------------------------------------------------------------------- /bash-3.2/lib/intl/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/intl/osdep.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/clktck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/clktck.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/clock.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/eaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/eaccess.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/fmtumax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/fmtumax.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/getcwd.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/getenv.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/itos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/itos.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/memset.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/mktime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/mktime.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/netconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/netconn.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/netopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/netopen.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/oslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/oslib.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/rename.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/shmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/shmatch.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/shquote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/shquote.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/shtty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/shtty.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/spell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/spell.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/strnlen.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/strpbrk.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/strstr.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/strtod.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/strtol.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/strtoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/strtoll.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/strtoul.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/times.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/timeval.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/tmpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/tmpfile.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/vprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/vprint.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/wcsdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/wcsdup.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/winsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/winsize.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/xstrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/xstrchr.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/zcatfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/zcatfd.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/zread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/zread.c -------------------------------------------------------------------------------- /bash-3.2/lib/sh/zwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/sh/zwrite.c -------------------------------------------------------------------------------- /bash-3.2/lib/tilde/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/lib/tilde/README -------------------------------------------------------------------------------- /bash-3.2/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/list.c -------------------------------------------------------------------------------- /bash-3.2/locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/locale.c -------------------------------------------------------------------------------- /bash-3.2/mailcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/mailcheck.c -------------------------------------------------------------------------------- /bash-3.2/mailcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/mailcheck.h -------------------------------------------------------------------------------- /bash-3.2/make_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/make_cmd.c -------------------------------------------------------------------------------- /bash-3.2/make_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/make_cmd.h -------------------------------------------------------------------------------- /bash-3.2/mksyntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/mksyntax.c -------------------------------------------------------------------------------- /bash-3.2/nojobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/nojobs.c -------------------------------------------------------------------------------- /bash-3.2/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/parse.y -------------------------------------------------------------------------------- /bash-3.2/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/parser.h -------------------------------------------------------------------------------- /bash-3.2/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/patchlevel.h -------------------------------------------------------------------------------- /bash-3.2/pathexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/pathexp.c -------------------------------------------------------------------------------- /bash-3.2/pathexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/pathexp.h -------------------------------------------------------------------------------- /bash-3.2/pathnames.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/pathnames.h.in -------------------------------------------------------------------------------- /bash-3.2/pcomplete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/pcomplete.c -------------------------------------------------------------------------------- /bash-3.2/pcomplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/pcomplete.h -------------------------------------------------------------------------------- /bash-3.2/pcomplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/pcomplib.c -------------------------------------------------------------------------------- /bash-3.2/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/po/LINGUAS -------------------------------------------------------------------------------- /bash-3.2/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/po/Makevars -------------------------------------------------------------------------------- /bash-3.2/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/po/POTFILES.in -------------------------------------------------------------------------------- /bash-3.2/po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/po/Rules-quot -------------------------------------------------------------------------------- /bash-3.2/po/bash.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/po/bash.pot -------------------------------------------------------------------------------- /bash-3.2/po/boldquot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/po/boldquot.sed -------------------------------------------------------------------------------- /bash-3.2/po/en@quot.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/po/en@quot.gmo -------------------------------------------------------------------------------- /bash-3.2/po/en@quot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/po/en@quot.po -------------------------------------------------------------------------------- /bash-3.2/po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/po/quot.sed -------------------------------------------------------------------------------- /bash-3.2/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/po/ru.po -------------------------------------------------------------------------------- /bash-3.2/print_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/print_cmd.c -------------------------------------------------------------------------------- /bash-3.2/quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/quit.h -------------------------------------------------------------------------------- /bash-3.2/redir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/redir.c -------------------------------------------------------------------------------- /bash-3.2/redir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/redir.h -------------------------------------------------------------------------------- /bash-3.2/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/shell.c -------------------------------------------------------------------------------- /bash-3.2/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/shell.h -------------------------------------------------------------------------------- /bash-3.2/sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/sig.c -------------------------------------------------------------------------------- /bash-3.2/sig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/sig.h -------------------------------------------------------------------------------- /bash-3.2/siglist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/siglist.c -------------------------------------------------------------------------------- /bash-3.2/siglist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/siglist.h -------------------------------------------------------------------------------- /bash-3.2/stringlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/stringlib.c -------------------------------------------------------------------------------- /bash-3.2/subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/subst.c -------------------------------------------------------------------------------- /bash-3.2/subst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/subst.h -------------------------------------------------------------------------------- /bash-3.2/support/SYMLINKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/support/SYMLINKS -------------------------------------------------------------------------------- /bash-3.2/support/bash.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/support/bash.xbm -------------------------------------------------------------------------------- /bash-3.2/support/fixlinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/support/fixlinks -------------------------------------------------------------------------------- /bash-3.2/support/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/support/missing -------------------------------------------------------------------------------- /bash-3.2/support/mkclone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/support/mkclone -------------------------------------------------------------------------------- /bash-3.2/support/mkdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/support/mkdirs -------------------------------------------------------------------------------- /bash-3.2/support/recho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/support/recho.c -------------------------------------------------------------------------------- /bash-3.2/support/texi2dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/support/texi2dvi -------------------------------------------------------------------------------- /bash-3.2/support/zecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/support/zecho.c -------------------------------------------------------------------------------- /bash-3.2/syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/syntax.h -------------------------------------------------------------------------------- /bash-3.2/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/test.c -------------------------------------------------------------------------------- /bash-3.2/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/test.h -------------------------------------------------------------------------------- /bash-3.2/tests/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/COPYRIGHT -------------------------------------------------------------------------------- /bash-3.2/tests/README: -------------------------------------------------------------------------------- 1 | Type `sh run-all'. 2 | 3 | Read COPYRIGHT for copyright information. 4 | -------------------------------------------------------------------------------- /bash-3.2/tests/arith1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/arith1.sub -------------------------------------------------------------------------------- /bash-3.2/tests/arith2.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/arith2.sub -------------------------------------------------------------------------------- /bash-3.2/tests/array1.sub: -------------------------------------------------------------------------------- 1 | printf "%s\n" -a a=(a 'b c') 2 | -------------------------------------------------------------------------------- /bash-3.2/tests/array2.sub: -------------------------------------------------------------------------------- 1 | declare -a ''=(a 'b c') 2 | -------------------------------------------------------------------------------- /bash-3.2/tests/array3.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/array3.sub -------------------------------------------------------------------------------- /bash-3.2/tests/array4.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/array4.sub -------------------------------------------------------------------------------- /bash-3.2/tests/cond.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/cond.right -------------------------------------------------------------------------------- /bash-3.2/tests/cond.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/cond.tests -------------------------------------------------------------------------------- /bash-3.2/tests/exec.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/exec.right -------------------------------------------------------------------------------- /bash-3.2/tests/exec1.sub: -------------------------------------------------------------------------------- 1 | echo "$@" 2 | -------------------------------------------------------------------------------- /bash-3.2/tests/exec2.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/exec2.sub -------------------------------------------------------------------------------- /bash-3.2/tests/exec3.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/exec3.sub -------------------------------------------------------------------------------- /bash-3.2/tests/exec4.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/exec4.sub -------------------------------------------------------------------------------- /bash-3.2/tests/exec5.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/exec5.sub -------------------------------------------------------------------------------- /bash-3.2/tests/exec6.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/exec6.sub -------------------------------------------------------------------------------- /bash-3.2/tests/exec7.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/exec7.sub -------------------------------------------------------------------------------- /bash-3.2/tests/execscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/execscript -------------------------------------------------------------------------------- /bash-3.2/tests/exp-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/exp-tests -------------------------------------------------------------------------------- /bash-3.2/tests/exp.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/exp.right -------------------------------------------------------------------------------- /bash-3.2/tests/func.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/func.right -------------------------------------------------------------------------------- /bash-3.2/tests/func.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/func.tests -------------------------------------------------------------------------------- /bash-3.2/tests/func1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/func1.sub -------------------------------------------------------------------------------- /bash-3.2/tests/func2.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/func2.sub -------------------------------------------------------------------------------- /bash-3.2/tests/func3.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/func3.sub -------------------------------------------------------------------------------- /bash-3.2/tests/glob-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/glob-test -------------------------------------------------------------------------------- /bash-3.2/tests/glob.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/glob.right -------------------------------------------------------------------------------- /bash-3.2/tests/glob1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/glob1.sub -------------------------------------------------------------------------------- /bash-3.2/tests/ifs.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/ifs.right -------------------------------------------------------------------------------- /bash-3.2/tests/ifs.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/ifs.tests -------------------------------------------------------------------------------- /bash-3.2/tests/intl.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/intl.right -------------------------------------------------------------------------------- /bash-3.2/tests/intl.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/intl.tests -------------------------------------------------------------------------------- /bash-3.2/tests/jobs.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/jobs.right -------------------------------------------------------------------------------- /bash-3.2/tests/jobs.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/jobs.tests -------------------------------------------------------------------------------- /bash-3.2/tests/jobs1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/jobs1.sub -------------------------------------------------------------------------------- /bash-3.2/tests/jobs2.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/jobs2.sub -------------------------------------------------------------------------------- /bash-3.2/tests/jobs3.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/jobs3.sub -------------------------------------------------------------------------------- /bash-3.2/tests/jobs4.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/jobs4.sub -------------------------------------------------------------------------------- /bash-3.2/tests/misc/run-r2.sh: -------------------------------------------------------------------------------- 1 | ../../bash ./redir-t2.sh < /etc/passwd 2 | -------------------------------------------------------------------------------- /bash-3.2/tests/prec.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/prec.right -------------------------------------------------------------------------------- /bash-3.2/tests/precedence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/precedence -------------------------------------------------------------------------------- /bash-3.2/tests/read.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/read.right -------------------------------------------------------------------------------- /bash-3.2/tests/read.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/read.tests -------------------------------------------------------------------------------- /bash-3.2/tests/read1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/read1.sub -------------------------------------------------------------------------------- /bash-3.2/tests/read2.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/read2.sub -------------------------------------------------------------------------------- /bash-3.2/tests/read3.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/read3.sub -------------------------------------------------------------------------------- /bash-3.2/tests/read4.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/read4.sub -------------------------------------------------------------------------------- /bash-3.2/tests/read5.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/read5.sub -------------------------------------------------------------------------------- /bash-3.2/tests/redir1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/redir1.sub -------------------------------------------------------------------------------- /bash-3.2/tests/redir2.sub: -------------------------------------------------------------------------------- 1 | echo this is redir2.sub 2 | -------------------------------------------------------------------------------- /bash-3.2/tests/redir3.in1: -------------------------------------------------------------------------------- 1 | ab 2 | cd 3 | -------------------------------------------------------------------------------- /bash-3.2/tests/redir3.in2: -------------------------------------------------------------------------------- 1 | root 2 | daemon 3 | -------------------------------------------------------------------------------- /bash-3.2/tests/redir3.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/redir3.sub -------------------------------------------------------------------------------- /bash-3.2/tests/redir4.in1: -------------------------------------------------------------------------------- 1 | aa 2 | -------------------------------------------------------------------------------- /bash-3.2/tests/redir4.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/redir4.sub -------------------------------------------------------------------------------- /bash-3.2/tests/redir5.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/redir5.sub -------------------------------------------------------------------------------- /bash-3.2/tests/redir6.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/redir6.sub -------------------------------------------------------------------------------- /bash-3.2/tests/redir7.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/redir7.sub -------------------------------------------------------------------------------- /bash-3.2/tests/rsh.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/rsh.right -------------------------------------------------------------------------------- /bash-3.2/tests/rsh.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/rsh.tests -------------------------------------------------------------------------------- /bash-3.2/tests/run-alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-alias -------------------------------------------------------------------------------- /bash-3.2/tests/run-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-all -------------------------------------------------------------------------------- /bash-3.2/tests/run-arith: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-arith -------------------------------------------------------------------------------- /bash-3.2/tests/run-array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-array -------------------------------------------------------------------------------- /bash-3.2/tests/run-array2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-array2 -------------------------------------------------------------------------------- /bash-3.2/tests/run-braces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-braces -------------------------------------------------------------------------------- /bash-3.2/tests/run-cond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-cond -------------------------------------------------------------------------------- /bash-3.2/tests/run-cprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-cprint -------------------------------------------------------------------------------- /bash-3.2/tests/run-errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-errors -------------------------------------------------------------------------------- /bash-3.2/tests/run-func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-func -------------------------------------------------------------------------------- /bash-3.2/tests/run-ifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-ifs -------------------------------------------------------------------------------- /bash-3.2/tests/run-intl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-intl -------------------------------------------------------------------------------- /bash-3.2/tests/run-invert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-invert -------------------------------------------------------------------------------- /bash-3.2/tests/run-iquote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-iquote -------------------------------------------------------------------------------- /bash-3.2/tests/run-jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-jobs -------------------------------------------------------------------------------- /bash-3.2/tests/run-nquote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-nquote -------------------------------------------------------------------------------- /bash-3.2/tests/run-posix2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-posix2 -------------------------------------------------------------------------------- /bash-3.2/tests/run-printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-printf -------------------------------------------------------------------------------- /bash-3.2/tests/run-quote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-quote -------------------------------------------------------------------------------- /bash-3.2/tests/run-read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-read -------------------------------------------------------------------------------- /bash-3.2/tests/run-redir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-redir -------------------------------------------------------------------------------- /bash-3.2/tests/run-rsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-rsh -------------------------------------------------------------------------------- /bash-3.2/tests/run-set-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-set-e -------------------------------------------------------------------------------- /bash-3.2/tests/run-set-x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-set-x -------------------------------------------------------------------------------- /bash-3.2/tests/run-shopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-shopt -------------------------------------------------------------------------------- /bash-3.2/tests/run-strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-strip -------------------------------------------------------------------------------- /bash-3.2/tests/run-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-test -------------------------------------------------------------------------------- /bash-3.2/tests/run-tilde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-tilde -------------------------------------------------------------------------------- /bash-3.2/tests/run-tilde2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-tilde2 -------------------------------------------------------------------------------- /bash-3.2/tests/run-trap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-trap -------------------------------------------------------------------------------- /bash-3.2/tests/run-type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-type -------------------------------------------------------------------------------- /bash-3.2/tests/run-varenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/run-varenv -------------------------------------------------------------------------------- /bash-3.2/tests/set-e-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/set-e-test -------------------------------------------------------------------------------- /bash-3.2/tests/source1.sub: -------------------------------------------------------------------------------- 1 | echo $AVAR 2 | -------------------------------------------------------------------------------- /bash-3.2/tests/source3.sub: -------------------------------------------------------------------------------- 1 | echo "$@" 2 | -------------------------------------------------------------------------------- /bash-3.2/tests/source4.sub: -------------------------------------------------------------------------------- 1 | set -- m n o p 2 | -------------------------------------------------------------------------------- /bash-3.2/tests/test.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/test.right -------------------------------------------------------------------------------- /bash-3.2/tests/test.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/test.tests -------------------------------------------------------------------------------- /bash-3.2/tests/trap.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/trap.right -------------------------------------------------------------------------------- /bash-3.2/tests/trap.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/trap.tests -------------------------------------------------------------------------------- /bash-3.2/tests/trap1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/trap1.sub -------------------------------------------------------------------------------- /bash-3.2/tests/trap2.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/trap2.sub -------------------------------------------------------------------------------- /bash-3.2/tests/trap2a.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/trap2a.sub -------------------------------------------------------------------------------- /bash-3.2/tests/type.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/type.right -------------------------------------------------------------------------------- /bash-3.2/tests/type.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/type.tests -------------------------------------------------------------------------------- /bash-3.2/tests/varenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/varenv.sh -------------------------------------------------------------------------------- /bash-3.2/tests/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/tests/version -------------------------------------------------------------------------------- /bash-3.2/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/trap.c -------------------------------------------------------------------------------- /bash-3.2/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/trap.h -------------------------------------------------------------------------------- /bash-3.2/unwind_prot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/unwind_prot.c -------------------------------------------------------------------------------- /bash-3.2/unwind_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/unwind_prot.h -------------------------------------------------------------------------------- /bash-3.2/variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/variables.c -------------------------------------------------------------------------------- /bash-3.2/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/variables.h -------------------------------------------------------------------------------- /bash-3.2/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/version.c -------------------------------------------------------------------------------- /bash-3.2/xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/xmalloc.c -------------------------------------------------------------------------------- /bash-3.2/xmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-3.2/xmalloc.h -------------------------------------------------------------------------------- /bash-4.0/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/ABOUT-NLS -------------------------------------------------------------------------------- /bash-4.0/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/AUTHORS -------------------------------------------------------------------------------- /bash-4.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/CHANGES -------------------------------------------------------------------------------- /bash-4.0/COMPAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/COMPAT -------------------------------------------------------------------------------- /bash-4.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/COPYING -------------------------------------------------------------------------------- /bash-4.0/CWRU/PLATFORMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/CWRU/PLATFORMS -------------------------------------------------------------------------------- /bash-4.0/CWRU/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/CWRU/README -------------------------------------------------------------------------------- /bash-4.0/CWRU/audit-patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/CWRU/audit-patch -------------------------------------------------------------------------------- /bash-4.0/CWRU/misc/bison: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/CWRU/misc/bison -------------------------------------------------------------------------------- /bash-4.0/CWRU/misc/sigs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/CWRU/misc/sigs.c -------------------------------------------------------------------------------- /bash-4.0/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/INSTALL -------------------------------------------------------------------------------- /bash-4.0/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/MANIFEST -------------------------------------------------------------------------------- /bash-4.0/MANIFEST.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/MANIFEST.doc -------------------------------------------------------------------------------- /bash-4.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/Makefile.in -------------------------------------------------------------------------------- /bash-4.0/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/NEWS -------------------------------------------------------------------------------- /bash-4.0/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/NOTES -------------------------------------------------------------------------------- /bash-4.0/POSIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/POSIX -------------------------------------------------------------------------------- /bash-4.0/RBASH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/RBASH -------------------------------------------------------------------------------- /bash-4.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/README -------------------------------------------------------------------------------- /bash-4.0/Y2K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/Y2K -------------------------------------------------------------------------------- /bash-4.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/aclocal.m4 -------------------------------------------------------------------------------- /bash-4.0/alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/alias.c -------------------------------------------------------------------------------- /bash-4.0/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/alias.h -------------------------------------------------------------------------------- /bash-4.0/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/array.c -------------------------------------------------------------------------------- /bash-4.0/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/array.h -------------------------------------------------------------------------------- /bash-4.0/arrayfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/arrayfunc.c -------------------------------------------------------------------------------- /bash-4.0/arrayfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/arrayfunc.h -------------------------------------------------------------------------------- /bash-4.0/assoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/assoc.c -------------------------------------------------------------------------------- /bash-4.0/assoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/assoc.h -------------------------------------------------------------------------------- /bash-4.0/bashansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/bashansi.h -------------------------------------------------------------------------------- /bash-4.0/bashhist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/bashhist.c -------------------------------------------------------------------------------- /bash-4.0/bashhist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/bashhist.h -------------------------------------------------------------------------------- /bash-4.0/bashintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/bashintl.h -------------------------------------------------------------------------------- /bash-4.0/bashjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/bashjmp.h -------------------------------------------------------------------------------- /bash-4.0/bashline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/bashline.c -------------------------------------------------------------------------------- /bash-4.0/bashline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/bashline.h -------------------------------------------------------------------------------- /bash-4.0/bashtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/bashtypes.h -------------------------------------------------------------------------------- /bash-4.0/bracecomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/bracecomp.c -------------------------------------------------------------------------------- /bash-4.0/braces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/braces.c -------------------------------------------------------------------------------- /bash-4.0/builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/builtins.h -------------------------------------------------------------------------------- /bash-4.0/builtins/cd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/builtins/cd.def -------------------------------------------------------------------------------- /bash-4.0/builtins/fc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/builtins/fc.def -------------------------------------------------------------------------------- /bash-4.0/builtins/let.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/builtins/let.def -------------------------------------------------------------------------------- /bash-4.0/builtins/psize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/builtins/psize.c -------------------------------------------------------------------------------- /bash-4.0/builtins/set.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/builtins/set.def -------------------------------------------------------------------------------- /bash-4.0/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/command.h -------------------------------------------------------------------------------- /bash-4.0/config-bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/config-bot.h -------------------------------------------------------------------------------- /bash-4.0/config-top.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/config-top.h -------------------------------------------------------------------------------- /bash-4.0/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/config.h.in -------------------------------------------------------------------------------- /bash-4.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/configure -------------------------------------------------------------------------------- /bash-4.0/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/configure.in -------------------------------------------------------------------------------- /bash-4.0/conftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/conftypes.h -------------------------------------------------------------------------------- /bash-4.0/copy_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/copy_cmd.c -------------------------------------------------------------------------------- /bash-4.0/dispose_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/dispose_cmd.c -------------------------------------------------------------------------------- /bash-4.0/dispose_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/dispose_cmd.h -------------------------------------------------------------------------------- /bash-4.0/doc/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/FAQ -------------------------------------------------------------------------------- /bash-4.0/doc/INTRO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/INTRO -------------------------------------------------------------------------------- /bash-4.0/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/Makefile.in -------------------------------------------------------------------------------- /bash-4.0/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/README -------------------------------------------------------------------------------- /bash-4.0/doc/article.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/article.ms -------------------------------------------------------------------------------- /bash-4.0/doc/article.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/article.pdf -------------------------------------------------------------------------------- /bash-4.0/doc/article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/article.txt -------------------------------------------------------------------------------- /bash-4.0/doc/bash.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/bash.1 -------------------------------------------------------------------------------- /bash-4.0/doc/bash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/bash.pdf -------------------------------------------------------------------------------- /bash-4.0/doc/bashbug.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/bashbug.1 -------------------------------------------------------------------------------- /bash-4.0/doc/bashref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/bashref.pdf -------------------------------------------------------------------------------- /bash-4.0/doc/bashref.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/bashref.texi -------------------------------------------------------------------------------- /bash-4.0/doc/builtins.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/builtins.1 -------------------------------------------------------------------------------- /bash-4.0/doc/fdl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/fdl.texi -------------------------------------------------------------------------------- /bash-4.0/doc/fdl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/fdl.txt -------------------------------------------------------------------------------- /bash-4.0/doc/htmlpost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/htmlpost.sh -------------------------------------------------------------------------------- /bash-4.0/doc/infopost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/infopost.sh -------------------------------------------------------------------------------- /bash-4.0/doc/rbash.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/rbash.1 -------------------------------------------------------------------------------- /bash-4.0/doc/rose94.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/rose94.pdf -------------------------------------------------------------------------------- /bash-4.0/doc/rose94.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/rose94.ps -------------------------------------------------------------------------------- /bash-4.0/doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/texinfo.tex -------------------------------------------------------------------------------- /bash-4.0/doc/version.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/doc/version.texi -------------------------------------------------------------------------------- /bash-4.0/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/error.c -------------------------------------------------------------------------------- /bash-4.0/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/error.h -------------------------------------------------------------------------------- /bash-4.0/etc/bash_logout: -------------------------------------------------------------------------------- 1 | clear 2 | -------------------------------------------------------------------------------- /bash-4.0/etc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/etc/bashrc -------------------------------------------------------------------------------- /bash-4.0/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/eval.c -------------------------------------------------------------------------------- /bash-4.0/execute_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/execute_cmd.c -------------------------------------------------------------------------------- /bash-4.0/execute_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/execute_cmd.h -------------------------------------------------------------------------------- /bash-4.0/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/expr.c -------------------------------------------------------------------------------- /bash-4.0/externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/externs.h -------------------------------------------------------------------------------- /bash-4.0/findcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/findcmd.c -------------------------------------------------------------------------------- /bash-4.0/findcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/findcmd.h -------------------------------------------------------------------------------- /bash-4.0/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/flags.c -------------------------------------------------------------------------------- /bash-4.0/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/flags.h -------------------------------------------------------------------------------- /bash-4.0/general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/general.c -------------------------------------------------------------------------------- /bash-4.0/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/general.h -------------------------------------------------------------------------------- /bash-4.0/hashcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/hashcmd.c -------------------------------------------------------------------------------- /bash-4.0/hashcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/hashcmd.h -------------------------------------------------------------------------------- /bash-4.0/hashlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/hashlib.c -------------------------------------------------------------------------------- /bash-4.0/hashlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/hashlib.h -------------------------------------------------------------------------------- /bash-4.0/include/ocache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/include/ocache.h -------------------------------------------------------------------------------- /bash-4.0/include/shtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/include/shtty.h -------------------------------------------------------------------------------- /bash-4.0/include/stdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/include/stdc.h -------------------------------------------------------------------------------- /bash-4.0/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/input.c -------------------------------------------------------------------------------- /bash-4.0/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/input.h -------------------------------------------------------------------------------- /bash-4.0/jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/jobs.c -------------------------------------------------------------------------------- /bash-4.0/jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/jobs.h -------------------------------------------------------------------------------- /bash-4.0/lib/glob/doc/glob.texi: -------------------------------------------------------------------------------- 1 | Nothing happens here. 2 | -------------------------------------------------------------------------------- /bash-4.0/lib/glob/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/glob/glob.c -------------------------------------------------------------------------------- /bash-4.0/lib/glob/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/glob/glob.h -------------------------------------------------------------------------------- /bash-4.0/lib/glob/ndir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/glob/ndir.h -------------------------------------------------------------------------------- /bash-4.0/lib/intl/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/intl/VERSION -------------------------------------------------------------------------------- /bash-4.0/lib/intl/gmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/intl/gmo.h -------------------------------------------------------------------------------- /bash-4.0/lib/intl/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/intl/log.c -------------------------------------------------------------------------------- /bash-4.0/lib/intl/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/intl/osdep.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/casemod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/casemod.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/clktck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/clktck.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/clock.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/eaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/eaccess.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/fmtumax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/fmtumax.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/fpurge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/fpurge.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/getcwd.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/getenv.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/itos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/itos.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/mbscmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/mbscmp.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/memset.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/mktime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/mktime.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/netconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/netconn.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/netopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/netopen.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/oslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/oslib.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/rename.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/shmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/shmatch.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/shquote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/shquote.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/shtty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/shtty.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/spell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/spell.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/strnlen.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/strpbrk.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/strstr.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/strtod.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/strtol.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/strtoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/strtoll.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/strtoul.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/times.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/timeval.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/tmpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/tmpfile.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/ufuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/ufuncs.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/vprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/vprint.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/wcsdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/wcsdup.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/winsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/winsize.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/xstrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/xstrchr.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/zcatfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/zcatfd.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/zmapfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/zmapfd.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/zread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/zread.c -------------------------------------------------------------------------------- /bash-4.0/lib/sh/zwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/sh/zwrite.c -------------------------------------------------------------------------------- /bash-4.0/lib/tilde/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/lib/tilde/README -------------------------------------------------------------------------------- /bash-4.0/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/list.c -------------------------------------------------------------------------------- /bash-4.0/locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/locale.c -------------------------------------------------------------------------------- /bash-4.0/mailcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/mailcheck.c -------------------------------------------------------------------------------- /bash-4.0/mailcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/mailcheck.h -------------------------------------------------------------------------------- /bash-4.0/make_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/make_cmd.c -------------------------------------------------------------------------------- /bash-4.0/make_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/make_cmd.h -------------------------------------------------------------------------------- /bash-4.0/mksyntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/mksyntax.c -------------------------------------------------------------------------------- /bash-4.0/nojobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/nojobs.c -------------------------------------------------------------------------------- /bash-4.0/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/parse.y -------------------------------------------------------------------------------- /bash-4.0/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/parser.h -------------------------------------------------------------------------------- /bash-4.0/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/patchlevel.h -------------------------------------------------------------------------------- /bash-4.0/pathexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/pathexp.c -------------------------------------------------------------------------------- /bash-4.0/pathexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/pathexp.h -------------------------------------------------------------------------------- /bash-4.0/pathnames.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/pathnames.h.in -------------------------------------------------------------------------------- /bash-4.0/pcomplete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/pcomplete.c -------------------------------------------------------------------------------- /bash-4.0/pcomplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/pcomplete.h -------------------------------------------------------------------------------- /bash-4.0/pcomplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/pcomplib.c -------------------------------------------------------------------------------- /bash-4.0/po/._lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/._lt.po -------------------------------------------------------------------------------- /bash-4.0/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/LINGUAS -------------------------------------------------------------------------------- /bash-4.0/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/Makevars -------------------------------------------------------------------------------- /bash-4.0/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/POTFILES.in -------------------------------------------------------------------------------- /bash-4.0/po/README: -------------------------------------------------------------------------------- 1 | This apparently requires GNU sed 2 | -------------------------------------------------------------------------------- /bash-4.0/po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/Rules-quot -------------------------------------------------------------------------------- /bash-4.0/po/af.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/af.gmo -------------------------------------------------------------------------------- /bash-4.0/po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/af.po -------------------------------------------------------------------------------- /bash-4.0/po/bash.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/bash.pot -------------------------------------------------------------------------------- /bash-4.0/po/bg.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/bg.gmo -------------------------------------------------------------------------------- /bash-4.0/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/bg.po -------------------------------------------------------------------------------- /bash-4.0/po/boldquot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/boldquot.sed -------------------------------------------------------------------------------- /bash-4.0/po/ca.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/ca.gmo -------------------------------------------------------------------------------- /bash-4.0/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/ca.po -------------------------------------------------------------------------------- /bash-4.0/po/cs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/cs.gmo -------------------------------------------------------------------------------- /bash-4.0/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/cs.po -------------------------------------------------------------------------------- /bash-4.0/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/de.gmo -------------------------------------------------------------------------------- /bash-4.0/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/de.po -------------------------------------------------------------------------------- /bash-4.0/po/en@quot.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/en@quot.gmo -------------------------------------------------------------------------------- /bash-4.0/po/en@quot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/en@quot.po -------------------------------------------------------------------------------- /bash-4.0/po/eo.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/eo.gmo -------------------------------------------------------------------------------- /bash-4.0/po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/eo.po -------------------------------------------------------------------------------- /bash-4.0/po/es.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/es.gmo -------------------------------------------------------------------------------- /bash-4.0/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/es.po -------------------------------------------------------------------------------- /bash-4.0/po/et.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/et.gmo -------------------------------------------------------------------------------- /bash-4.0/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/et.po -------------------------------------------------------------------------------- /bash-4.0/po/fr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/fr.gmo -------------------------------------------------------------------------------- /bash-4.0/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/fr.po -------------------------------------------------------------------------------- /bash-4.0/po/hu.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/hu.gmo -------------------------------------------------------------------------------- /bash-4.0/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/hu.po -------------------------------------------------------------------------------- /bash-4.0/po/id.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/id.gmo -------------------------------------------------------------------------------- /bash-4.0/po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/id.po -------------------------------------------------------------------------------- /bash-4.0/po/ja.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/ja.gmo -------------------------------------------------------------------------------- /bash-4.0/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/ja.po -------------------------------------------------------------------------------- /bash-4.0/po/lt.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/lt.gmo -------------------------------------------------------------------------------- /bash-4.0/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/lt.po -------------------------------------------------------------------------------- /bash-4.0/po/nl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/nl.gmo -------------------------------------------------------------------------------- /bash-4.0/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/nl.po -------------------------------------------------------------------------------- /bash-4.0/po/pl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/pl.gmo -------------------------------------------------------------------------------- /bash-4.0/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/pl.po -------------------------------------------------------------------------------- /bash-4.0/po/pt_BR.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/pt_BR.gmo -------------------------------------------------------------------------------- /bash-4.0/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/pt_BR.po -------------------------------------------------------------------------------- /bash-4.0/po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/quot.sed -------------------------------------------------------------------------------- /bash-4.0/po/ro.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/ro.gmo -------------------------------------------------------------------------------- /bash-4.0/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/ro.po -------------------------------------------------------------------------------- /bash-4.0/po/ru.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/ru.gmo -------------------------------------------------------------------------------- /bash-4.0/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/ru.po -------------------------------------------------------------------------------- /bash-4.0/po/sk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/sk.gmo -------------------------------------------------------------------------------- /bash-4.0/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/sk.po -------------------------------------------------------------------------------- /bash-4.0/po/sv.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/sv.gmo -------------------------------------------------------------------------------- /bash-4.0/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/sv.po -------------------------------------------------------------------------------- /bash-4.0/po/tr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/tr.gmo -------------------------------------------------------------------------------- /bash-4.0/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/tr.po -------------------------------------------------------------------------------- /bash-4.0/po/vi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/vi.gmo -------------------------------------------------------------------------------- /bash-4.0/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/vi.po -------------------------------------------------------------------------------- /bash-4.0/po/zh_TW.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/zh_TW.gmo -------------------------------------------------------------------------------- /bash-4.0/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/po/zh_TW.po -------------------------------------------------------------------------------- /bash-4.0/print_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/print_cmd.c -------------------------------------------------------------------------------- /bash-4.0/quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/quit.h -------------------------------------------------------------------------------- /bash-4.0/redir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/redir.c -------------------------------------------------------------------------------- /bash-4.0/redir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/redir.h -------------------------------------------------------------------------------- /bash-4.0/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/shell.c -------------------------------------------------------------------------------- /bash-4.0/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/shell.h -------------------------------------------------------------------------------- /bash-4.0/sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/sig.c -------------------------------------------------------------------------------- /bash-4.0/sig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/sig.h -------------------------------------------------------------------------------- /bash-4.0/siglist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/siglist.c -------------------------------------------------------------------------------- /bash-4.0/siglist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/siglist.h -------------------------------------------------------------------------------- /bash-4.0/stringlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/stringlib.c -------------------------------------------------------------------------------- /bash-4.0/subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/subst.c -------------------------------------------------------------------------------- /bash-4.0/subst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/subst.h -------------------------------------------------------------------------------- /bash-4.0/support/SYMLINKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/support/SYMLINKS -------------------------------------------------------------------------------- /bash-4.0/support/bash.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/support/bash.xbm -------------------------------------------------------------------------------- /bash-4.0/support/fixlinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/support/fixlinks -------------------------------------------------------------------------------- /bash-4.0/support/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/support/missing -------------------------------------------------------------------------------- /bash-4.0/support/mkclone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/support/mkclone -------------------------------------------------------------------------------- /bash-4.0/support/mkdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/support/mkdirs -------------------------------------------------------------------------------- /bash-4.0/support/recho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/support/recho.c -------------------------------------------------------------------------------- /bash-4.0/support/texi2dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/support/texi2dvi -------------------------------------------------------------------------------- /bash-4.0/support/xcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/support/xcase.c -------------------------------------------------------------------------------- /bash-4.0/support/zecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/support/zecho.c -------------------------------------------------------------------------------- /bash-4.0/syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/syntax.h -------------------------------------------------------------------------------- /bash-4.0/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/test.c -------------------------------------------------------------------------------- /bash-4.0/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/test.h -------------------------------------------------------------------------------- /bash-4.0/tests/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/COPYRIGHT -------------------------------------------------------------------------------- /bash-4.0/tests/README: -------------------------------------------------------------------------------- 1 | Type `sh run-all'. 2 | 3 | Read COPYRIGHT for copyright information. 4 | -------------------------------------------------------------------------------- /bash-4.0/tests/arith1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/arith1.sub -------------------------------------------------------------------------------- /bash-4.0/tests/arith2.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/arith2.sub -------------------------------------------------------------------------------- /bash-4.0/tests/array1.sub: -------------------------------------------------------------------------------- 1 | printf "%s\n" -a a=(a 'b c') 2 | -------------------------------------------------------------------------------- /bash-4.0/tests/array2.sub: -------------------------------------------------------------------------------- 1 | declare -a ''=(a 'b c') 2 | -------------------------------------------------------------------------------- /bash-4.0/tests/array3.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/array3.sub -------------------------------------------------------------------------------- /bash-4.0/tests/array4.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/array4.sub -------------------------------------------------------------------------------- /bash-4.0/tests/array5.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/array5.sub -------------------------------------------------------------------------------- /bash-4.0/tests/array6.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/array6.sub -------------------------------------------------------------------------------- /bash-4.0/tests/array7.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/array7.sub -------------------------------------------------------------------------------- /bash-4.0/tests/array8.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/array8.sub -------------------------------------------------------------------------------- /bash-4.0/tests/array9.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/array9.sub -------------------------------------------------------------------------------- /bash-4.0/tests/assoc1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/assoc1.sub -------------------------------------------------------------------------------- /bash-4.0/tests/assoc2.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/assoc2.sub -------------------------------------------------------------------------------- /bash-4.0/tests/assoc3.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/assoc3.sub -------------------------------------------------------------------------------- /bash-4.0/tests/assoc4.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/assoc4.sub -------------------------------------------------------------------------------- /bash-4.0/tests/case.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/case.right -------------------------------------------------------------------------------- /bash-4.0/tests/case.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubecoder/android_bash/HEAD/bash-4.0/tests/case.tests -------------------------------------------------------------------------------- /bash-4.0/tests/comsub-eof0.sub: -------------------------------------------------------------------------------- 1 | foo=$(cat <