├── .circleci └── config.yml ├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS ├── CHANGES ├── COPYING ├── ChangeLog-spell-corrected.diff ├── ChangeLog.0 ├── INSTALL ├── Makefile.am ├── NEWS.md ├── README-git.md ├── README.md ├── THANKS.md ├── TODO ├── acinclude.m4 ├── autogen.sh ├── bashdb-main.inc.in ├── bashdb-part2.sh ├── bashdb-trace.in ├── bashdb.in ├── check-prefix.sh ├── command ├── .cvsignore ├── .gitignore ├── Makefile.am ├── action.sh ├── alias.sh ├── backtrace.sh ├── break.sh ├── clear.sh ├── commands.sh ├── complete.sh ├── condition.sh ├── continue.sh ├── debug.sh ├── delete.sh ├── disable.sh ├── display.sh ├── down.sh ├── edit.sh ├── enable.sh ├── eval.sh ├── examine.sh ├── export.sh ├── file.sh ├── finish.sh ├── frame.sh ├── handle.sh ├── help.sh ├── history.sh ├── info.sh ├── info_sub │ ├── .gitignore │ ├── Makefile.am │ ├── args.sh │ ├── breakpoints.sh │ ├── display.sh │ ├── files.sh │ ├── functions.sh │ ├── handle.sh │ ├── line.sh │ ├── program.sh │ ├── signals.sh │ ├── source.sh │ ├── stack.sh │ ├── variables.sh │ ├── warranty.sh │ └── watchpoints.sh ├── kill.sh ├── list.sh ├── load.sh ├── log.sh ├── next.sh ├── pwd.sh ├── quit.sh ├── return.sh ├── run.sh ├── search.sh ├── set.sh ├── set_sub │ ├── .gitignore │ ├── Makefile.am │ ├── annotate.sh │ ├── args.sh │ ├── autoeval.sh │ ├── autolist.sh │ ├── basename.sh │ ├── debug.sh │ ├── debugging.sh │ ├── different.sh │ ├── dollar0.sh │ ├── editing.sh │ ├── filename-display.sh │ ├── highlight.sh │ ├── history.sh │ ├── linetrace.sh │ ├── listsize.sh │ ├── prompt.sh │ ├── showcommand.sh │ ├── style.sh │ ├── trace-commands.sh │ ├── tty.sh │ └── width.sh ├── shell.sh ├── show.sh ├── show_sub │ ├── .gitignore │ ├── Makefile.am │ ├── alias.sh │ ├── annotate.sh │ ├── args.sh │ ├── autoeval.sh │ ├── autolist.sh │ ├── basename.sh │ ├── commands.sh │ ├── copying.sh │ ├── debug.sh │ ├── different.sh │ ├── directories.sh │ ├── editing.sh │ ├── filename-display.sh │ ├── highlight.sh │ ├── history.sh │ ├── listsize.sh │ ├── prompt.sh │ ├── style.sh │ ├── tty.sh │ ├── version.sh │ ├── warranty.sh │ └── width.sh ├── signal.sh ├── skip.sh ├── source.sh ├── step.sh ├── trace.sh ├── tty.sh ├── undisplay.sh ├── untrace.sh ├── up.sh └── watch.sh ├── compute-prefix.sh ├── configure.ac ├── cvs2cl_header ├── cvs2cl_usermap ├── data ├── .gitignore ├── Makefile.am └── shell.sh ├── dbg-main.sh ├── doc ├── .cvsignore ├── .gitignore ├── Makefile.am ├── README.md ├── bashdb-man.pod ├── bashdb.texi ├── copyright.texi ├── fdl.texi ├── gpl.texi ├── how-to-make-a-release.md ├── macros.texi.in └── notecase-HTML.sh ├── docs ├── .gitignore ├── Makefile ├── commands.rst ├── commands │ ├── Makefile │ ├── breakpoints.rst │ ├── breakpoints │ │ ├── Makefile │ │ ├── break.rst │ │ ├── condition.rst │ │ ├── delete.rst │ │ ├── disable.rst │ │ ├── enable.rst │ │ └── tbreak.rst │ ├── data.rst │ ├── data │ │ ├── display.rst │ │ ├── eval.rst │ │ ├── examine.rst │ │ ├── load.rst │ │ └── undisplay.rst │ ├── files.rst │ ├── files │ │ ├── edit.rst │ │ └── list.rst │ ├── info.rst │ ├── info │ │ ├── Makefile │ │ ├── breakpoints.rst │ │ ├── display.rst │ │ ├── files.rst │ │ ├── functions.rst │ │ ├── line.rst │ │ ├── program.rst │ │ ├── source.rst │ │ ├── stack.rst │ │ └── variables.rst │ ├── running.rst │ ├── running │ │ ├── continue.rst │ │ ├── debug.rst │ │ ├── kill.rst │ │ ├── next.rst │ │ ├── quit.rst │ │ ├── run.rst │ │ ├── skip.rst │ │ └── step.rst │ ├── set.rst │ ├── set │ │ ├── annotate.rst │ │ ├── args.rst │ │ ├── autoeval.rst │ │ ├── autolist.rst │ │ ├── basename.rst │ │ ├── confirm.rst │ │ ├── debug.rst │ │ ├── different.rst │ │ ├── editing.rst │ │ ├── filename-display.rst │ │ ├── highlight.rst │ │ ├── linetrace.rst │ │ ├── listsize.rst │ │ ├── style.rst │ │ ├── trace-commands.rst │ │ └── width.rst │ ├── show.rst │ ├── show │ │ ├── Makefile │ │ ├── aliases.rst │ │ ├── annotate.rst │ │ ├── args.rst │ │ ├── autoeval.rst │ │ ├── autolist.rst │ │ ├── basename.rst │ │ ├── confirm.rst │ │ ├── different.rst │ │ ├── editing.rst │ │ ├── filename-display.rst │ │ ├── highlight.rst │ │ ├── linetrace.rst │ │ ├── listsize.rst │ │ ├── style.rst │ │ ├── trace-commands.rst │ │ └── width.rst │ ├── stack.rst │ ├── stack │ │ ├── backtrace.rst │ │ ├── down.rst │ │ ├── frame.rst │ │ └── up.rst │ ├── support.rst │ └── support │ │ ├── alias.rst │ │ ├── help.rst │ │ ├── source.rst │ │ └── unalias.rst ├── conf.py ├── entry-exit.rst ├── features.rst ├── index.rst ├── install.rst ├── make.bat ├── manpage.rst ├── syntax.rst └── syntax │ ├── command.rst │ └── suffixes.rst ├── getopts_long.sh ├── htdocs ├── .gitignore ├── bashdb-break.png ├── bashdb-break_thumb.png ├── bashdb-ddd.png ├── bashdb-ddd_thumb.png ├── bashdb-where.png ├── bashdb-where_thumb.png ├── bashdbOutline.html ├── index.html ├── jc.css └── sflogo.png ├── init ├── .gitignore ├── Makefile.am ├── io.sh ├── opts.sh ├── pre.sh ├── require.sh ├── term-background.sh └── vars.sh ├── lib ├── .cvsignore ├── .gitignore ├── Makefile.am ├── action.sh ├── alias.sh ├── break.sh ├── cmd-hooks.sh ├── columnize.sh ├── commands.sh ├── complete.sh ├── dbg-call.sh ├── display.sh ├── file.sh ├── filecache.sh ├── fns.sh ├── frame.sh ├── help.sh ├── hist.sh ├── hook.sh ├── info.sh ├── journal.sh ├── list.sh ├── msg.sh ├── processor.sh ├── run.sh ├── save-restore.sh ├── setshow.sh ├── shell.sh ├── sig.sh ├── sort.sh ├── stepping.sh ├── subcmd.sh ├── term-highlight.py ├── unescape.sh └── validate.sh ├── ltmain.sh ├── make-check-filter.pl ├── make-check-filter.rb ├── readthedocs.yaml ├── rpm ├── bashdb-4.2-0.8.spec ├── bashdb-4.2-0.92.spec └── bashdb-5.2-0.spec ├── set-d-vars.sh └── test ├── .cvsignore ├── .gitignore ├── Makefile.am ├── README.md ├── data ├── .cvsignore ├── .gitignore ├── Makefile.am ├── README ├── action.cmd ├── action.right ├── bash-rematch.cmd ├── bash-rematch.right ├── brkpt1.cmd ├── brkpt1.right ├── brkpt2.cmd ├── brkpt2.right ├── brkpt3.cmd ├── brkpt3.right ├── bug-args.cmd ├── bug-args.right ├── bug-break.cmd ├── bug-break.right ├── bug-clear.cmd ├── bug-clear.right ├── bug-loc.cmd ├── bug-loc.right ├── bug-set-e.cmd ├── bug-set-e.right ├── bug-source.cmd ├── bug-source.right ├── bug-step-subshell.cmd ├── bug-step-subshell.right ├── bug-step.cmd ├── bug-step.right ├── bugI.cmd ├── bugI.right ├── bugIFS.cmd ├── bugIFS.right ├── command.cmd ├── command.right ├── complete.cmd ├── complete.right ├── continue.cmd ├── debug.cmd ├── debug.right ├── debug2.cmd ├── delete.cmd ├── delete.right ├── display.cmd ├── display.right ├── enable.cmd ├── enable.right ├── export.cmd ├── export.right ├── file with spaces.cmd ├── file with spaces.right ├── finish.cmd ├── finish.right ├── frame.cmd ├── frame.right ├── info-args.cmd ├── info-args.right ├── interrupt.right ├── list.cmd ├── list.right ├── lopts.right ├── misc-output-41.right ├── misc-output-50.right ├── misc-output.right ├── misc.cmd ├── misc.right ├── multi1.cmd ├── multi1.right ├── multi2.cmd ├── multi2.right ├── multi3.cmd ├── multi3.right ├── multi4.cmd ├── multi4.right ├── parm.cmd ├── parm.right ├── preset-brkpt.cmd ├── preset-brkpt.right ├── prof1.cmd ├── prof2.cmd ├── quit.cmd ├── restart.cmd ├── restart.right ├── restart2.cmd ├── search.cmd ├── search.right ├── setshow.cmd ├── setshow.right ├── settrace.cmd ├── settrace.right ├── sig-41.right ├── sig-43.cmd ├── sig-43.right ├── sig-44.cmd ├── sig-44.right ├── sig-50.cmd ├── sig-50.right ├── sig-Darwin.right ├── sig-bug.cmd ├── sig.cmd ├── sig.right ├── skip.cmd ├── skip.right ├── sopts.right ├── subshell1.cmd ├── subshell1.right ├── subshell2.cmd ├── subshell2.right ├── subshell3.cmd ├── subshell3.right ├── subshell4.cmd ├── subshell4.right ├── tbreak.cmd ├── tbreak.right ├── trace.right ├── trace2.right ├── watch1.cmd ├── watch1.right ├── watch2.cmd └── watch2.right ├── example ├── .cvsignore ├── .gitignore ├── Makefile.am ├── README ├── bash-rematch.sh ├── bug-args.sh.in ├── bug-clear.sh ├── bug-loc.sh ├── bug-set-e.sh ├── bug-step-subshell.sh ├── bug-step.sh ├── bugI.sh ├── bugIFS.sh.in ├── dbg-test1.sh ├── dbg-test1.sub ├── dbg-test2.sh ├── debug.sh ├── dir with spaces │ └── bug.sh ├── false.sh.in ├── fib.sh ├── file with spaces.sh ├── gcd.sh ├── hanoi.sh.in ├── interrupt.sh.in ├── library.sh ├── multi.sh ├── nexting.sh ├── parm.sh ├── restart.sh ├── settrace.sh ├── sig-bug.sh ├── sig.sh ├── skip.sh ├── stepping.sh └── subshell.sh ├── integration ├── .cvsignore ├── .gitignore ├── Makefile.am ├── README.md ├── check-common.sh.in ├── interrupt-3.tests ├── interrupt.tests ├── lopts.tests ├── settrace.tests ├── sopts.tests ├── test-action ├── test-bash-rematch.in ├── test-brkpt ├── test-bug-args ├── test-bug-break.in ├── test-bug-clear ├── test-bug-loc ├── test-bug-set-e ├── test-bug-source ├── test-bug-step ├── test-bug-step-subshell.in ├── test-bugI ├── test-bugIFS ├── test-command ├── test-complete.in ├── test-debug.in ├── test-delete.in ├── test-display ├── test-enable ├── test-export.in ├── test-file-with-spaces.in ├── test-finish ├── test-frame ├── test-info-args.in ├── test-interrupt.in ├── test-list ├── test-lopts ├── test-misc.in ├── test-multi ├── test-parm ├── test-preset-brkpt ├── test-restart ├── test-search ├── test-setshow.in ├── test-settrace.in ├── test-sig.in ├── test-skip ├── test-sopts ├── test-subshell ├── test-tbreak ├── test-trace ├── test-watch1 ├── test-watch2 ├── trace.tests └── trace2.tests └── unit ├── .cvsignore ├── .gitignore ├── Makefile.am ├── helper.sh ├── mock-cmd.sh ├── require_me.sh.in ├── shunit2 ├── test-action.sh.in ├── test-alias.sh.in ├── test-bashdb-trace.sh.in ├── test-break.sh.in ├── test-cmd-complete.sh.in ├── test-cmd-eval.sh.in ├── test-cmd-info-variables.sh.in ├── test-cmd-load.sh.in ├── test-columns.sh.in ├── test-file.sh.in ├── test-filecache.sh.in ├── test-fns.sh.in ├── test-frame.sh.in ├── test-get-sourceline.sh.in ├── test-io.sh.in ├── test-lib-eval.sh.in ├── test-lib-list.sh.in ├── test-logging.sh.in ├── test-msg.sh.in ├── test-pre.sh.in ├── test-require.sh.in ├── test-run.sh.in ├── test-save-restore.sh.in ├── test-sort.sh.in └── test-validate.sh.in /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog-spell-corrected.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/ChangeLog-spell-corrected.diff -------------------------------------------------------------------------------- /ChangeLog.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/ChangeLog.0 -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/NEWS.md -------------------------------------------------------------------------------- /README-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/README-git.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/README.md -------------------------------------------------------------------------------- /THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/THANKS.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/TODO -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/autogen.sh -------------------------------------------------------------------------------- /bashdb-main.inc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/bashdb-main.inc.in -------------------------------------------------------------------------------- /bashdb-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/bashdb-part2.sh -------------------------------------------------------------------------------- /bashdb-trace.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/bashdb-trace.in -------------------------------------------------------------------------------- /bashdb.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/bashdb.in -------------------------------------------------------------------------------- /check-prefix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/check-prefix.sh -------------------------------------------------------------------------------- /command/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/.cvsignore -------------------------------------------------------------------------------- /command/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/.gitignore -------------------------------------------------------------------------------- /command/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/Makefile.am -------------------------------------------------------------------------------- /command/action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/action.sh -------------------------------------------------------------------------------- /command/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/alias.sh -------------------------------------------------------------------------------- /command/backtrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/backtrace.sh -------------------------------------------------------------------------------- /command/break.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/break.sh -------------------------------------------------------------------------------- /command/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/clear.sh -------------------------------------------------------------------------------- /command/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/commands.sh -------------------------------------------------------------------------------- /command/complete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/complete.sh -------------------------------------------------------------------------------- /command/condition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/condition.sh -------------------------------------------------------------------------------- /command/continue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/continue.sh -------------------------------------------------------------------------------- /command/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/debug.sh -------------------------------------------------------------------------------- /command/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/delete.sh -------------------------------------------------------------------------------- /command/disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/disable.sh -------------------------------------------------------------------------------- /command/display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/display.sh -------------------------------------------------------------------------------- /command/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/down.sh -------------------------------------------------------------------------------- /command/edit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/edit.sh -------------------------------------------------------------------------------- /command/enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/enable.sh -------------------------------------------------------------------------------- /command/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/eval.sh -------------------------------------------------------------------------------- /command/examine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/examine.sh -------------------------------------------------------------------------------- /command/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/export.sh -------------------------------------------------------------------------------- /command/file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/file.sh -------------------------------------------------------------------------------- /command/finish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/finish.sh -------------------------------------------------------------------------------- /command/frame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/frame.sh -------------------------------------------------------------------------------- /command/handle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/handle.sh -------------------------------------------------------------------------------- /command/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/help.sh -------------------------------------------------------------------------------- /command/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/history.sh -------------------------------------------------------------------------------- /command/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info.sh -------------------------------------------------------------------------------- /command/info_sub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/.gitignore -------------------------------------------------------------------------------- /command/info_sub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/Makefile.am -------------------------------------------------------------------------------- /command/info_sub/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/args.sh -------------------------------------------------------------------------------- /command/info_sub/breakpoints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/breakpoints.sh -------------------------------------------------------------------------------- /command/info_sub/display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/display.sh -------------------------------------------------------------------------------- /command/info_sub/files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/files.sh -------------------------------------------------------------------------------- /command/info_sub/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/functions.sh -------------------------------------------------------------------------------- /command/info_sub/handle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/handle.sh -------------------------------------------------------------------------------- /command/info_sub/line.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/line.sh -------------------------------------------------------------------------------- /command/info_sub/program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/program.sh -------------------------------------------------------------------------------- /command/info_sub/signals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/signals.sh -------------------------------------------------------------------------------- /command/info_sub/source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/source.sh -------------------------------------------------------------------------------- /command/info_sub/stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/stack.sh -------------------------------------------------------------------------------- /command/info_sub/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/variables.sh -------------------------------------------------------------------------------- /command/info_sub/warranty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/warranty.sh -------------------------------------------------------------------------------- /command/info_sub/watchpoints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/info_sub/watchpoints.sh -------------------------------------------------------------------------------- /command/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/kill.sh -------------------------------------------------------------------------------- /command/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/list.sh -------------------------------------------------------------------------------- /command/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/load.sh -------------------------------------------------------------------------------- /command/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/log.sh -------------------------------------------------------------------------------- /command/next.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/next.sh -------------------------------------------------------------------------------- /command/pwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/pwd.sh -------------------------------------------------------------------------------- /command/quit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/quit.sh -------------------------------------------------------------------------------- /command/return.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/return.sh -------------------------------------------------------------------------------- /command/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/run.sh -------------------------------------------------------------------------------- /command/search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/search.sh -------------------------------------------------------------------------------- /command/set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set.sh -------------------------------------------------------------------------------- /command/set_sub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/.gitignore -------------------------------------------------------------------------------- /command/set_sub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/Makefile.am -------------------------------------------------------------------------------- /command/set_sub/annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/annotate.sh -------------------------------------------------------------------------------- /command/set_sub/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/args.sh -------------------------------------------------------------------------------- /command/set_sub/autoeval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/autoeval.sh -------------------------------------------------------------------------------- /command/set_sub/autolist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/autolist.sh -------------------------------------------------------------------------------- /command/set_sub/basename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/basename.sh -------------------------------------------------------------------------------- /command/set_sub/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/debug.sh -------------------------------------------------------------------------------- /command/set_sub/debugging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/debugging.sh -------------------------------------------------------------------------------- /command/set_sub/different.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/different.sh -------------------------------------------------------------------------------- /command/set_sub/dollar0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/dollar0.sh -------------------------------------------------------------------------------- /command/set_sub/editing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/editing.sh -------------------------------------------------------------------------------- /command/set_sub/filename-display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/filename-display.sh -------------------------------------------------------------------------------- /command/set_sub/highlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/highlight.sh -------------------------------------------------------------------------------- /command/set_sub/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/history.sh -------------------------------------------------------------------------------- /command/set_sub/linetrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/linetrace.sh -------------------------------------------------------------------------------- /command/set_sub/listsize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/listsize.sh -------------------------------------------------------------------------------- /command/set_sub/prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/prompt.sh -------------------------------------------------------------------------------- /command/set_sub/showcommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/showcommand.sh -------------------------------------------------------------------------------- /command/set_sub/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/style.sh -------------------------------------------------------------------------------- /command/set_sub/trace-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/trace-commands.sh -------------------------------------------------------------------------------- /command/set_sub/tty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/tty.sh -------------------------------------------------------------------------------- /command/set_sub/width.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/set_sub/width.sh -------------------------------------------------------------------------------- /command/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/shell.sh -------------------------------------------------------------------------------- /command/show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show.sh -------------------------------------------------------------------------------- /command/show_sub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/.gitignore -------------------------------------------------------------------------------- /command/show_sub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/Makefile.am -------------------------------------------------------------------------------- /command/show_sub/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/alias.sh -------------------------------------------------------------------------------- /command/show_sub/annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/annotate.sh -------------------------------------------------------------------------------- /command/show_sub/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/args.sh -------------------------------------------------------------------------------- /command/show_sub/autoeval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/autoeval.sh -------------------------------------------------------------------------------- /command/show_sub/autolist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/autolist.sh -------------------------------------------------------------------------------- /command/show_sub/basename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/basename.sh -------------------------------------------------------------------------------- /command/show_sub/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/commands.sh -------------------------------------------------------------------------------- /command/show_sub/copying.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/copying.sh -------------------------------------------------------------------------------- /command/show_sub/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/debug.sh -------------------------------------------------------------------------------- /command/show_sub/different.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/different.sh -------------------------------------------------------------------------------- /command/show_sub/directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/directories.sh -------------------------------------------------------------------------------- /command/show_sub/editing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/editing.sh -------------------------------------------------------------------------------- /command/show_sub/filename-display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/filename-display.sh -------------------------------------------------------------------------------- /command/show_sub/highlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/highlight.sh -------------------------------------------------------------------------------- /command/show_sub/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/history.sh -------------------------------------------------------------------------------- /command/show_sub/listsize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/listsize.sh -------------------------------------------------------------------------------- /command/show_sub/prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/prompt.sh -------------------------------------------------------------------------------- /command/show_sub/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/style.sh -------------------------------------------------------------------------------- /command/show_sub/tty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/tty.sh -------------------------------------------------------------------------------- /command/show_sub/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/version.sh -------------------------------------------------------------------------------- /command/show_sub/warranty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/warranty.sh -------------------------------------------------------------------------------- /command/show_sub/width.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/show_sub/width.sh -------------------------------------------------------------------------------- /command/signal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/signal.sh -------------------------------------------------------------------------------- /command/skip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/skip.sh -------------------------------------------------------------------------------- /command/source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/source.sh -------------------------------------------------------------------------------- /command/step.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/step.sh -------------------------------------------------------------------------------- /command/trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/trace.sh -------------------------------------------------------------------------------- /command/tty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/tty.sh -------------------------------------------------------------------------------- /command/undisplay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/undisplay.sh -------------------------------------------------------------------------------- /command/untrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/untrace.sh -------------------------------------------------------------------------------- /command/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/up.sh -------------------------------------------------------------------------------- /command/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/command/watch.sh -------------------------------------------------------------------------------- /compute-prefix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/compute-prefix.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/configure.ac -------------------------------------------------------------------------------- /cvs2cl_header: -------------------------------------------------------------------------------- 1 | ## 2 | ## autogenerated ChangeLog -- don't edit 3 | ## 4 | 5 | -------------------------------------------------------------------------------- /cvs2cl_usermap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/cvs2cl_usermap -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/data/shell.sh -------------------------------------------------------------------------------- /dbg-main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/dbg-main.sh -------------------------------------------------------------------------------- /doc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/.cvsignore -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/bashdb-man.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/bashdb-man.pod -------------------------------------------------------------------------------- /doc/bashdb.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/bashdb.texi -------------------------------------------------------------------------------- /doc/copyright.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/copyright.texi -------------------------------------------------------------------------------- /doc/fdl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/fdl.texi -------------------------------------------------------------------------------- /doc/gpl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/gpl.texi -------------------------------------------------------------------------------- /doc/how-to-make-a-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/how-to-make-a-release.md -------------------------------------------------------------------------------- /doc/macros.texi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/macros.texi.in -------------------------------------------------------------------------------- /doc/notecase-HTML.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/doc/notecase-HTML.sh -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | /.python-version 3 | /_build 4 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands.rst -------------------------------------------------------------------------------- /docs/commands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/Makefile -------------------------------------------------------------------------------- /docs/commands/breakpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/breakpoints.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/breakpoints/Makefile -------------------------------------------------------------------------------- /docs/commands/breakpoints/break.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/breakpoints/break.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/condition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/breakpoints/condition.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/delete.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/breakpoints/delete.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/disable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/breakpoints/disable.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/enable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/breakpoints/enable.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/tbreak.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/breakpoints/tbreak.rst -------------------------------------------------------------------------------- /docs/commands/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/data.rst -------------------------------------------------------------------------------- /docs/commands/data/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/data/display.rst -------------------------------------------------------------------------------- /docs/commands/data/eval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/data/eval.rst -------------------------------------------------------------------------------- /docs/commands/data/examine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/data/examine.rst -------------------------------------------------------------------------------- /docs/commands/data/load.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/data/load.rst -------------------------------------------------------------------------------- /docs/commands/data/undisplay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/data/undisplay.rst -------------------------------------------------------------------------------- /docs/commands/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/files.rst -------------------------------------------------------------------------------- /docs/commands/files/edit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/files/edit.rst -------------------------------------------------------------------------------- /docs/commands/files/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/files/list.rst -------------------------------------------------------------------------------- /docs/commands/info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info.rst -------------------------------------------------------------------------------- /docs/commands/info/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info/Makefile -------------------------------------------------------------------------------- /docs/commands/info/breakpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info/breakpoints.rst -------------------------------------------------------------------------------- /docs/commands/info/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info/display.rst -------------------------------------------------------------------------------- /docs/commands/info/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info/files.rst -------------------------------------------------------------------------------- /docs/commands/info/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info/functions.rst -------------------------------------------------------------------------------- /docs/commands/info/line.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info/line.rst -------------------------------------------------------------------------------- /docs/commands/info/program.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info/program.rst -------------------------------------------------------------------------------- /docs/commands/info/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info/source.rst -------------------------------------------------------------------------------- /docs/commands/info/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info/stack.rst -------------------------------------------------------------------------------- /docs/commands/info/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/info/variables.rst -------------------------------------------------------------------------------- /docs/commands/running.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/running.rst -------------------------------------------------------------------------------- /docs/commands/running/continue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/running/continue.rst -------------------------------------------------------------------------------- /docs/commands/running/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/running/debug.rst -------------------------------------------------------------------------------- /docs/commands/running/kill.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/running/kill.rst -------------------------------------------------------------------------------- /docs/commands/running/next.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/running/next.rst -------------------------------------------------------------------------------- /docs/commands/running/quit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/running/quit.rst -------------------------------------------------------------------------------- /docs/commands/running/run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/running/run.rst -------------------------------------------------------------------------------- /docs/commands/running/skip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/running/skip.rst -------------------------------------------------------------------------------- /docs/commands/running/step.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/running/step.rst -------------------------------------------------------------------------------- /docs/commands/set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set.rst -------------------------------------------------------------------------------- /docs/commands/set/annotate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/annotate.rst -------------------------------------------------------------------------------- /docs/commands/set/args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/args.rst -------------------------------------------------------------------------------- /docs/commands/set/autoeval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/autoeval.rst -------------------------------------------------------------------------------- /docs/commands/set/autolist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/autolist.rst -------------------------------------------------------------------------------- /docs/commands/set/basename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/basename.rst -------------------------------------------------------------------------------- /docs/commands/set/confirm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/confirm.rst -------------------------------------------------------------------------------- /docs/commands/set/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/debug.rst -------------------------------------------------------------------------------- /docs/commands/set/different.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/different.rst -------------------------------------------------------------------------------- /docs/commands/set/editing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/editing.rst -------------------------------------------------------------------------------- /docs/commands/set/filename-display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/filename-display.rst -------------------------------------------------------------------------------- /docs/commands/set/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/highlight.rst -------------------------------------------------------------------------------- /docs/commands/set/linetrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/linetrace.rst -------------------------------------------------------------------------------- /docs/commands/set/listsize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/listsize.rst -------------------------------------------------------------------------------- /docs/commands/set/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/style.rst -------------------------------------------------------------------------------- /docs/commands/set/trace-commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/trace-commands.rst -------------------------------------------------------------------------------- /docs/commands/set/width.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/set/width.rst -------------------------------------------------------------------------------- /docs/commands/show.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show.rst -------------------------------------------------------------------------------- /docs/commands/show/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/Makefile -------------------------------------------------------------------------------- /docs/commands/show/aliases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/aliases.rst -------------------------------------------------------------------------------- /docs/commands/show/annotate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/annotate.rst -------------------------------------------------------------------------------- /docs/commands/show/args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/args.rst -------------------------------------------------------------------------------- /docs/commands/show/autoeval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/autoeval.rst -------------------------------------------------------------------------------- /docs/commands/show/autolist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/autolist.rst -------------------------------------------------------------------------------- /docs/commands/show/basename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/basename.rst -------------------------------------------------------------------------------- /docs/commands/show/confirm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/confirm.rst -------------------------------------------------------------------------------- /docs/commands/show/different.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/different.rst -------------------------------------------------------------------------------- /docs/commands/show/editing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/editing.rst -------------------------------------------------------------------------------- /docs/commands/show/filename-display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/filename-display.rst -------------------------------------------------------------------------------- /docs/commands/show/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/highlight.rst -------------------------------------------------------------------------------- /docs/commands/show/linetrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/linetrace.rst -------------------------------------------------------------------------------- /docs/commands/show/listsize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/listsize.rst -------------------------------------------------------------------------------- /docs/commands/show/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/style.rst -------------------------------------------------------------------------------- /docs/commands/show/trace-commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/trace-commands.rst -------------------------------------------------------------------------------- /docs/commands/show/width.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/show/width.rst -------------------------------------------------------------------------------- /docs/commands/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/stack.rst -------------------------------------------------------------------------------- /docs/commands/stack/backtrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/stack/backtrace.rst -------------------------------------------------------------------------------- /docs/commands/stack/down.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/stack/down.rst -------------------------------------------------------------------------------- /docs/commands/stack/frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/stack/frame.rst -------------------------------------------------------------------------------- /docs/commands/stack/up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/stack/up.rst -------------------------------------------------------------------------------- /docs/commands/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/support.rst -------------------------------------------------------------------------------- /docs/commands/support/alias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/support/alias.rst -------------------------------------------------------------------------------- /docs/commands/support/help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/support/help.rst -------------------------------------------------------------------------------- /docs/commands/support/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/support/source.rst -------------------------------------------------------------------------------- /docs/commands/support/unalias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/commands/support/unalias.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/entry-exit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/entry-exit.rst -------------------------------------------------------------------------------- /docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/features.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/manpage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/manpage.rst -------------------------------------------------------------------------------- /docs/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/syntax.rst -------------------------------------------------------------------------------- /docs/syntax/command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/syntax/command.rst -------------------------------------------------------------------------------- /docs/syntax/suffixes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/docs/syntax/suffixes.rst -------------------------------------------------------------------------------- /getopts_long.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/getopts_long.sh -------------------------------------------------------------------------------- /htdocs/.gitignore: -------------------------------------------------------------------------------- 1 | /bashdb.html 2 | -------------------------------------------------------------------------------- /htdocs/bashdb-break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/htdocs/bashdb-break.png -------------------------------------------------------------------------------- /htdocs/bashdb-break_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/htdocs/bashdb-break_thumb.png -------------------------------------------------------------------------------- /htdocs/bashdb-ddd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/htdocs/bashdb-ddd.png -------------------------------------------------------------------------------- /htdocs/bashdb-ddd_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/htdocs/bashdb-ddd_thumb.png -------------------------------------------------------------------------------- /htdocs/bashdb-where.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/htdocs/bashdb-where.png -------------------------------------------------------------------------------- /htdocs/bashdb-where_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/htdocs/bashdb-where_thumb.png -------------------------------------------------------------------------------- /htdocs/bashdbOutline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/htdocs/bashdbOutline.html -------------------------------------------------------------------------------- /htdocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/htdocs/index.html -------------------------------------------------------------------------------- /htdocs/jc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/htdocs/jc.css -------------------------------------------------------------------------------- /htdocs/sflogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/htdocs/sflogo.png -------------------------------------------------------------------------------- /init/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/init/.gitignore -------------------------------------------------------------------------------- /init/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/init/Makefile.am -------------------------------------------------------------------------------- /init/io.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/init/io.sh -------------------------------------------------------------------------------- /init/opts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/init/opts.sh -------------------------------------------------------------------------------- /init/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/init/pre.sh -------------------------------------------------------------------------------- /init/require.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/init/require.sh -------------------------------------------------------------------------------- /init/term-background.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/init/term-background.sh -------------------------------------------------------------------------------- /init/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/init/vars.sh -------------------------------------------------------------------------------- /lib/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/.cvsignore -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/action.sh -------------------------------------------------------------------------------- /lib/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/alias.sh -------------------------------------------------------------------------------- /lib/break.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/break.sh -------------------------------------------------------------------------------- /lib/cmd-hooks.sh: -------------------------------------------------------------------------------- 1 | typeset -A _Dbg_cmdloop_hooks 2 | -------------------------------------------------------------------------------- /lib/columnize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/columnize.sh -------------------------------------------------------------------------------- /lib/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/commands.sh -------------------------------------------------------------------------------- /lib/complete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/complete.sh -------------------------------------------------------------------------------- /lib/dbg-call.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/dbg-call.sh -------------------------------------------------------------------------------- /lib/display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/display.sh -------------------------------------------------------------------------------- /lib/file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/file.sh -------------------------------------------------------------------------------- /lib/filecache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/filecache.sh -------------------------------------------------------------------------------- /lib/fns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/fns.sh -------------------------------------------------------------------------------- /lib/frame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/frame.sh -------------------------------------------------------------------------------- /lib/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/help.sh -------------------------------------------------------------------------------- /lib/hist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/hist.sh -------------------------------------------------------------------------------- /lib/hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/hook.sh -------------------------------------------------------------------------------- /lib/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/info.sh -------------------------------------------------------------------------------- /lib/journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/journal.sh -------------------------------------------------------------------------------- /lib/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/list.sh -------------------------------------------------------------------------------- /lib/msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/msg.sh -------------------------------------------------------------------------------- /lib/processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/processor.sh -------------------------------------------------------------------------------- /lib/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/run.sh -------------------------------------------------------------------------------- /lib/save-restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/save-restore.sh -------------------------------------------------------------------------------- /lib/setshow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/setshow.sh -------------------------------------------------------------------------------- /lib/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/shell.sh -------------------------------------------------------------------------------- /lib/sig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/sig.sh -------------------------------------------------------------------------------- /lib/sort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/sort.sh -------------------------------------------------------------------------------- /lib/stepping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/stepping.sh -------------------------------------------------------------------------------- /lib/subcmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/subcmd.sh -------------------------------------------------------------------------------- /lib/term-highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/term-highlight.py -------------------------------------------------------------------------------- /lib/unescape.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/unescape.sh -------------------------------------------------------------------------------- /lib/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/lib/validate.sh -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/ltmain.sh -------------------------------------------------------------------------------- /make-check-filter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/make-check-filter.pl -------------------------------------------------------------------------------- /make-check-filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/make-check-filter.rb -------------------------------------------------------------------------------- /readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/readthedocs.yaml -------------------------------------------------------------------------------- /rpm/bashdb-4.2-0.8.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/rpm/bashdb-4.2-0.8.spec -------------------------------------------------------------------------------- /rpm/bashdb-4.2-0.92.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/rpm/bashdb-4.2-0.92.spec -------------------------------------------------------------------------------- /rpm/bashdb-5.2-0.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/rpm/bashdb-5.2-0.spec -------------------------------------------------------------------------------- /set-d-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/set-d-vars.sh -------------------------------------------------------------------------------- /test/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/.cvsignore -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/README.md -------------------------------------------------------------------------------- /test/data/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/.cvsignore -------------------------------------------------------------------------------- /test/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/.gitignore -------------------------------------------------------------------------------- /test/data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/Makefile.am -------------------------------------------------------------------------------- /test/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/README -------------------------------------------------------------------------------- /test/data/action.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/action.cmd -------------------------------------------------------------------------------- /test/data/action.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/action.right -------------------------------------------------------------------------------- /test/data/bash-rematch.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bash-rematch.cmd -------------------------------------------------------------------------------- /test/data/bash-rematch.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bash-rematch.right -------------------------------------------------------------------------------- /test/data/brkpt1.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/brkpt1.cmd -------------------------------------------------------------------------------- /test/data/brkpt1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/brkpt1.right -------------------------------------------------------------------------------- /test/data/brkpt2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/brkpt2.cmd -------------------------------------------------------------------------------- /test/data/brkpt2.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/brkpt2.right -------------------------------------------------------------------------------- /test/data/brkpt3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/brkpt3.cmd -------------------------------------------------------------------------------- /test/data/brkpt3.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/brkpt3.right -------------------------------------------------------------------------------- /test/data/bug-args.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-args.cmd -------------------------------------------------------------------------------- /test/data/bug-args.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-args.right -------------------------------------------------------------------------------- /test/data/bug-break.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-break.cmd -------------------------------------------------------------------------------- /test/data/bug-break.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-break.right -------------------------------------------------------------------------------- /test/data/bug-clear.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-clear.cmd -------------------------------------------------------------------------------- /test/data/bug-clear.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-clear.right -------------------------------------------------------------------------------- /test/data/bug-loc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-loc.cmd -------------------------------------------------------------------------------- /test/data/bug-loc.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-loc.right -------------------------------------------------------------------------------- /test/data/bug-set-e.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-set-e.cmd -------------------------------------------------------------------------------- /test/data/bug-set-e.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-set-e.right -------------------------------------------------------------------------------- /test/data/bug-source.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-source.cmd -------------------------------------------------------------------------------- /test/data/bug-source.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-source.right -------------------------------------------------------------------------------- /test/data/bug-step-subshell.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-step-subshell.cmd -------------------------------------------------------------------------------- /test/data/bug-step-subshell.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-step-subshell.right -------------------------------------------------------------------------------- /test/data/bug-step.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-step.cmd -------------------------------------------------------------------------------- /test/data/bug-step.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bug-step.right -------------------------------------------------------------------------------- /test/data/bugI.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bugI.cmd -------------------------------------------------------------------------------- /test/data/bugI.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bugI.right -------------------------------------------------------------------------------- /test/data/bugIFS.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bugIFS.cmd -------------------------------------------------------------------------------- /test/data/bugIFS.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/bugIFS.right -------------------------------------------------------------------------------- /test/data/command.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/command.cmd -------------------------------------------------------------------------------- /test/data/command.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/command.right -------------------------------------------------------------------------------- /test/data/complete.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/complete.cmd -------------------------------------------------------------------------------- /test/data/complete.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/complete.right -------------------------------------------------------------------------------- /test/data/continue.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/continue.cmd -------------------------------------------------------------------------------- /test/data/debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/debug.cmd -------------------------------------------------------------------------------- /test/data/debug.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/debug.right -------------------------------------------------------------------------------- /test/data/debug2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/debug2.cmd -------------------------------------------------------------------------------- /test/data/delete.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/delete.cmd -------------------------------------------------------------------------------- /test/data/delete.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/delete.right -------------------------------------------------------------------------------- /test/data/display.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/display.cmd -------------------------------------------------------------------------------- /test/data/display.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/display.right -------------------------------------------------------------------------------- /test/data/enable.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/enable.cmd -------------------------------------------------------------------------------- /test/data/enable.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/enable.right -------------------------------------------------------------------------------- /test/data/export.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/export.cmd -------------------------------------------------------------------------------- /test/data/export.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/export.right -------------------------------------------------------------------------------- /test/data/file with spaces.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/file with spaces.cmd -------------------------------------------------------------------------------- /test/data/file with spaces.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/file with spaces.right -------------------------------------------------------------------------------- /test/data/finish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/finish.cmd -------------------------------------------------------------------------------- /test/data/finish.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/finish.right -------------------------------------------------------------------------------- /test/data/frame.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/frame.cmd -------------------------------------------------------------------------------- /test/data/frame.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/frame.right -------------------------------------------------------------------------------- /test/data/info-args.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/info-args.cmd -------------------------------------------------------------------------------- /test/data/info-args.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/info-args.right -------------------------------------------------------------------------------- /test/data/interrupt.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/interrupt.right -------------------------------------------------------------------------------- /test/data/list.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/list.cmd -------------------------------------------------------------------------------- /test/data/list.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/list.right -------------------------------------------------------------------------------- /test/data/lopts.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/lopts.right -------------------------------------------------------------------------------- /test/data/misc-output-41.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/misc-output-41.right -------------------------------------------------------------------------------- /test/data/misc-output-50.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/misc-output-50.right -------------------------------------------------------------------------------- /test/data/misc-output.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/misc-output.right -------------------------------------------------------------------------------- /test/data/misc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/misc.cmd -------------------------------------------------------------------------------- /test/data/misc.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/misc.right -------------------------------------------------------------------------------- /test/data/multi1.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/multi1.cmd -------------------------------------------------------------------------------- /test/data/multi1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/multi1.right -------------------------------------------------------------------------------- /test/data/multi2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/multi2.cmd -------------------------------------------------------------------------------- /test/data/multi2.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/multi2.right -------------------------------------------------------------------------------- /test/data/multi3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/multi3.cmd -------------------------------------------------------------------------------- /test/data/multi3.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/multi3.right -------------------------------------------------------------------------------- /test/data/multi4.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/multi4.cmd -------------------------------------------------------------------------------- /test/data/multi4.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/multi4.right -------------------------------------------------------------------------------- /test/data/parm.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/parm.cmd -------------------------------------------------------------------------------- /test/data/parm.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/parm.right -------------------------------------------------------------------------------- /test/data/preset-brkpt.cmd: -------------------------------------------------------------------------------- 1 | info break 2 | -------------------------------------------------------------------------------- /test/data/preset-brkpt.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/preset-brkpt.right -------------------------------------------------------------------------------- /test/data/prof1.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/prof1.cmd -------------------------------------------------------------------------------- /test/data/prof2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/prof2.cmd -------------------------------------------------------------------------------- /test/data/quit.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/quit.cmd -------------------------------------------------------------------------------- /test/data/restart.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/restart.cmd -------------------------------------------------------------------------------- /test/data/restart.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/restart.right -------------------------------------------------------------------------------- /test/data/restart2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/restart2.cmd -------------------------------------------------------------------------------- /test/data/search.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/search.cmd -------------------------------------------------------------------------------- /test/data/search.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/search.right -------------------------------------------------------------------------------- /test/data/setshow.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/setshow.cmd -------------------------------------------------------------------------------- /test/data/setshow.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/setshow.right -------------------------------------------------------------------------------- /test/data/settrace.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/settrace.cmd -------------------------------------------------------------------------------- /test/data/settrace.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/settrace.right -------------------------------------------------------------------------------- /test/data/sig-41.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig-41.right -------------------------------------------------------------------------------- /test/data/sig-43.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig-43.cmd -------------------------------------------------------------------------------- /test/data/sig-43.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig-43.right -------------------------------------------------------------------------------- /test/data/sig-44.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig-44.cmd -------------------------------------------------------------------------------- /test/data/sig-44.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig-44.right -------------------------------------------------------------------------------- /test/data/sig-50.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig-50.cmd -------------------------------------------------------------------------------- /test/data/sig-50.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig-50.right -------------------------------------------------------------------------------- /test/data/sig-Darwin.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig-Darwin.right -------------------------------------------------------------------------------- /test/data/sig-bug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig-bug.cmd -------------------------------------------------------------------------------- /test/data/sig.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig.cmd -------------------------------------------------------------------------------- /test/data/sig.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sig.right -------------------------------------------------------------------------------- /test/data/skip.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/skip.cmd -------------------------------------------------------------------------------- /test/data/skip.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/skip.right -------------------------------------------------------------------------------- /test/data/sopts.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/sopts.right -------------------------------------------------------------------------------- /test/data/subshell1.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/subshell1.cmd -------------------------------------------------------------------------------- /test/data/subshell1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/subshell1.right -------------------------------------------------------------------------------- /test/data/subshell2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/subshell2.cmd -------------------------------------------------------------------------------- /test/data/subshell2.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/subshell2.right -------------------------------------------------------------------------------- /test/data/subshell3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/subshell3.cmd -------------------------------------------------------------------------------- /test/data/subshell3.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/subshell3.right -------------------------------------------------------------------------------- /test/data/subshell4.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/subshell4.cmd -------------------------------------------------------------------------------- /test/data/subshell4.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/subshell4.right -------------------------------------------------------------------------------- /test/data/tbreak.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/tbreak.cmd -------------------------------------------------------------------------------- /test/data/tbreak.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/tbreak.right -------------------------------------------------------------------------------- /test/data/trace.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/trace.right -------------------------------------------------------------------------------- /test/data/trace2.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/trace2.right -------------------------------------------------------------------------------- /test/data/watch1.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/watch1.cmd -------------------------------------------------------------------------------- /test/data/watch1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/watch1.right -------------------------------------------------------------------------------- /test/data/watch2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/watch2.cmd -------------------------------------------------------------------------------- /test/data/watch2.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/data/watch2.right -------------------------------------------------------------------------------- /test/example/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/.cvsignore -------------------------------------------------------------------------------- /test/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/.gitignore -------------------------------------------------------------------------------- /test/example/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/Makefile.am -------------------------------------------------------------------------------- /test/example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/README -------------------------------------------------------------------------------- /test/example/bash-rematch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/bash-rematch.sh -------------------------------------------------------------------------------- /test/example/bug-args.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/bug-args.sh.in -------------------------------------------------------------------------------- /test/example/bug-clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/bug-clear.sh -------------------------------------------------------------------------------- /test/example/bug-loc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/bug-loc.sh -------------------------------------------------------------------------------- /test/example/bug-set-e.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | x=1 3 | 4 | set -e 5 | 6 | echo hi 7 | (( 1 / 0)) 8 | exit 0 9 | -------------------------------------------------------------------------------- /test/example/bug-step-subshell.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | workdir=$(x=1; pwd) 3 | -------------------------------------------------------------------------------- /test/example/bug-step.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/bug-step.sh -------------------------------------------------------------------------------- /test/example/bugI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/bugI.sh -------------------------------------------------------------------------------- /test/example/bugIFS.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/bugIFS.sh.in -------------------------------------------------------------------------------- /test/example/dbg-test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/dbg-test1.sh -------------------------------------------------------------------------------- /test/example/dbg-test1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/dbg-test1.sub -------------------------------------------------------------------------------- /test/example/dbg-test2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/dbg-test2.sh -------------------------------------------------------------------------------- /test/example/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/debug.sh -------------------------------------------------------------------------------- /test/example/dir with spaces/bug.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | x=1 3 | echo "file with spaces here" 4 | -------------------------------------------------------------------------------- /test/example/false.sh.in: -------------------------------------------------------------------------------- 1 | #!@SH_PROG@ 2 | # A portable to /bin/false 3 | exit 1 4 | -------------------------------------------------------------------------------- /test/example/fib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/fib.sh -------------------------------------------------------------------------------- /test/example/file with spaces.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | x=1 3 | echo "file with spaces here" 4 | -------------------------------------------------------------------------------- /test/example/gcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/gcd.sh -------------------------------------------------------------------------------- /test/example/hanoi.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/hanoi.sh.in -------------------------------------------------------------------------------- /test/example/interrupt.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/interrupt.sh.in -------------------------------------------------------------------------------- /test/example/library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/library.sh -------------------------------------------------------------------------------- /test/example/multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/multi.sh -------------------------------------------------------------------------------- /test/example/nexting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/nexting.sh -------------------------------------------------------------------------------- /test/example/parm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/parm.sh -------------------------------------------------------------------------------- /test/example/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/restart.sh -------------------------------------------------------------------------------- /test/example/settrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/settrace.sh -------------------------------------------------------------------------------- /test/example/sig-bug.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | x=1 3 | -------------------------------------------------------------------------------- /test/example/sig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/sig.sh -------------------------------------------------------------------------------- /test/example/skip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/skip.sh -------------------------------------------------------------------------------- /test/example/stepping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/stepping.sh -------------------------------------------------------------------------------- /test/example/subshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/example/subshell.sh -------------------------------------------------------------------------------- /test/integration/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/.cvsignore -------------------------------------------------------------------------------- /test/integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/.gitignore -------------------------------------------------------------------------------- /test/integration/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/Makefile.am -------------------------------------------------------------------------------- /test/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/README.md -------------------------------------------------------------------------------- /test/integration/check-common.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/check-common.sh.in -------------------------------------------------------------------------------- /test/integration/interrupt-3.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/interrupt-3.tests -------------------------------------------------------------------------------- /test/integration/interrupt.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/interrupt.tests -------------------------------------------------------------------------------- /test/integration/lopts.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/lopts.tests -------------------------------------------------------------------------------- /test/integration/settrace.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/settrace.tests -------------------------------------------------------------------------------- /test/integration/sopts.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/sopts.tests -------------------------------------------------------------------------------- /test/integration/test-action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-action -------------------------------------------------------------------------------- /test/integration/test-bash-rematch.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bash-rematch.in -------------------------------------------------------------------------------- /test/integration/test-brkpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-brkpt -------------------------------------------------------------------------------- /test/integration/test-bug-args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bug-args -------------------------------------------------------------------------------- /test/integration/test-bug-break.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bug-break.in -------------------------------------------------------------------------------- /test/integration/test-bug-clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bug-clear -------------------------------------------------------------------------------- /test/integration/test-bug-loc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bug-loc -------------------------------------------------------------------------------- /test/integration/test-bug-set-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bug-set-e -------------------------------------------------------------------------------- /test/integration/test-bug-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bug-source -------------------------------------------------------------------------------- /test/integration/test-bug-step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bug-step -------------------------------------------------------------------------------- /test/integration/test-bug-step-subshell.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bug-step-subshell.in -------------------------------------------------------------------------------- /test/integration/test-bugI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bugI -------------------------------------------------------------------------------- /test/integration/test-bugIFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-bugIFS -------------------------------------------------------------------------------- /test/integration/test-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-command -------------------------------------------------------------------------------- /test/integration/test-complete.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-complete.in -------------------------------------------------------------------------------- /test/integration/test-debug.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-debug.in -------------------------------------------------------------------------------- /test/integration/test-delete.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-delete.in -------------------------------------------------------------------------------- /test/integration/test-display: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-display -------------------------------------------------------------------------------- /test/integration/test-enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-enable -------------------------------------------------------------------------------- /test/integration/test-export.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-export.in -------------------------------------------------------------------------------- /test/integration/test-file-with-spaces.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-file-with-spaces.in -------------------------------------------------------------------------------- /test/integration/test-finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-finish -------------------------------------------------------------------------------- /test/integration/test-frame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-frame -------------------------------------------------------------------------------- /test/integration/test-info-args.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-info-args.in -------------------------------------------------------------------------------- /test/integration/test-interrupt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-interrupt.in -------------------------------------------------------------------------------- /test/integration/test-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-list -------------------------------------------------------------------------------- /test/integration/test-lopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-lopts -------------------------------------------------------------------------------- /test/integration/test-misc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-misc.in -------------------------------------------------------------------------------- /test/integration/test-multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-multi -------------------------------------------------------------------------------- /test/integration/test-parm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-parm -------------------------------------------------------------------------------- /test/integration/test-preset-brkpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-preset-brkpt -------------------------------------------------------------------------------- /test/integration/test-restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-restart -------------------------------------------------------------------------------- /test/integration/test-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-search -------------------------------------------------------------------------------- /test/integration/test-setshow.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-setshow.in -------------------------------------------------------------------------------- /test/integration/test-settrace.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-settrace.in -------------------------------------------------------------------------------- /test/integration/test-sig.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-sig.in -------------------------------------------------------------------------------- /test/integration/test-skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-skip -------------------------------------------------------------------------------- /test/integration/test-sopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-sopts -------------------------------------------------------------------------------- /test/integration/test-subshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-subshell -------------------------------------------------------------------------------- /test/integration/test-tbreak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-tbreak -------------------------------------------------------------------------------- /test/integration/test-trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-trace -------------------------------------------------------------------------------- /test/integration/test-watch1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-watch1 -------------------------------------------------------------------------------- /test/integration/test-watch2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/test-watch2 -------------------------------------------------------------------------------- /test/integration/trace.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/trace.tests -------------------------------------------------------------------------------- /test/integration/trace2.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/integration/trace2.tests -------------------------------------------------------------------------------- /test/unit/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/.cvsignore -------------------------------------------------------------------------------- /test/unit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/.gitignore -------------------------------------------------------------------------------- /test/unit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/Makefile.am -------------------------------------------------------------------------------- /test/unit/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/helper.sh -------------------------------------------------------------------------------- /test/unit/mock-cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/mock-cmd.sh -------------------------------------------------------------------------------- /test/unit/require_me.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/require_me.sh.in -------------------------------------------------------------------------------- /test/unit/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/shunit2 -------------------------------------------------------------------------------- /test/unit/test-action.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-action.sh.in -------------------------------------------------------------------------------- /test/unit/test-alias.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-alias.sh.in -------------------------------------------------------------------------------- /test/unit/test-bashdb-trace.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-bashdb-trace.sh.in -------------------------------------------------------------------------------- /test/unit/test-break.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-break.sh.in -------------------------------------------------------------------------------- /test/unit/test-cmd-complete.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-cmd-complete.sh.in -------------------------------------------------------------------------------- /test/unit/test-cmd-eval.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-cmd-eval.sh.in -------------------------------------------------------------------------------- /test/unit/test-cmd-info-variables.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-cmd-info-variables.sh.in -------------------------------------------------------------------------------- /test/unit/test-cmd-load.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-cmd-load.sh.in -------------------------------------------------------------------------------- /test/unit/test-columns.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-columns.sh.in -------------------------------------------------------------------------------- /test/unit/test-file.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-file.sh.in -------------------------------------------------------------------------------- /test/unit/test-filecache.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-filecache.sh.in -------------------------------------------------------------------------------- /test/unit/test-fns.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-fns.sh.in -------------------------------------------------------------------------------- /test/unit/test-frame.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-frame.sh.in -------------------------------------------------------------------------------- /test/unit/test-get-sourceline.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-get-sourceline.sh.in -------------------------------------------------------------------------------- /test/unit/test-io.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-io.sh.in -------------------------------------------------------------------------------- /test/unit/test-lib-eval.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-lib-eval.sh.in -------------------------------------------------------------------------------- /test/unit/test-lib-list.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-lib-list.sh.in -------------------------------------------------------------------------------- /test/unit/test-logging.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-logging.sh.in -------------------------------------------------------------------------------- /test/unit/test-msg.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-msg.sh.in -------------------------------------------------------------------------------- /test/unit/test-pre.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-pre.sh.in -------------------------------------------------------------------------------- /test/unit/test-require.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-require.sh.in -------------------------------------------------------------------------------- /test/unit/test-run.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-run.sh.in -------------------------------------------------------------------------------- /test/unit/test-save-restore.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-save-restore.sh.in -------------------------------------------------------------------------------- /test/unit/test-sort.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-sort.sh.in -------------------------------------------------------------------------------- /test/unit/test-validate.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/bashdb/HEAD/test/unit/test-validate.sh.in --------------------------------------------------------------------------------