├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── AUTHORS ├── COPYING ├── INSTALL ├── Makefile.am ├── NEWS.md ├── README.md ├── THANKS ├── acinclude.m4 ├── admin └── how-to-make-a-release.md ├── autogen.sh ├── command ├── .gitignore ├── Makefile.am ├── alias.sh ├── backtrace.sh ├── break.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 ├── frame.sh ├── handle.sh ├── help.sh ├── info.sh ├── info_sub │ ├── .gitignore │ ├── Makefile.am │ ├── args.sh │ ├── breakpoints.sh │ ├── display.sh │ ├── files.sh │ ├── functions.sh │ ├── line.sh │ ├── program.sh │ ├── source.sh │ ├── variables.sh │ └── warranty.sh ├── kill.sh ├── list.sh ├── next.sh ├── pwd.sh ├── quit.sh ├── run.sh ├── set.sh ├── set_sub │ ├── .gitignore │ ├── Makefile.am │ ├── annotate.sh │ ├── args.sh │ ├── autoeval.sh │ ├── autolist.sh │ ├── basename.sh │ ├── confirm.sh │ ├── debug.sh │ ├── different.sh │ ├── editing.sh │ ├── highlight.sh │ ├── history.sh │ ├── linetrace.sh │ ├── listsize.sh │ ├── prompt.sh │ ├── showcommand.sh │ ├── style.sh │ ├── trace-commands.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 │ ├── confirm.sh │ ├── copying.sh │ ├── debug.sh │ ├── different.sh │ ├── directories.sh │ ├── editing.sh │ ├── highlight.sh │ ├── history.sh │ ├── linetrace.sh │ ├── listsize.sh │ ├── prompt.sh │ ├── style.sh │ ├── version.sh │ ├── warranty.sh │ └── width.sh ├── skip.sh ├── source.sh ├── step.sh ├── trace.sh ├── undisplay.sh ├── untrace.sh └── up.sh ├── configure.ac ├── data ├── .gitignore ├── Makefile.am └── shell.sh ├── dbg-main.sh ├── dbg-trace.sh.in ├── doc ├── .gitignore ├── Makefile.am └── kshdb-man.pod ├── 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 │ │ ├── Makefile │ │ ├── display.rst │ │ ├── eval.rst │ │ ├── examine.rst │ │ ├── load.rst │ │ └── undisplay.rst │ ├── files.rst │ ├── files │ │ ├── Makefile │ │ ├── edit.rst │ │ └── list.rst │ ├── info.rst │ ├── info │ │ ├── Makefile │ │ ├── breakpoints.rst │ │ ├── display.rst │ │ ├── files.rst │ │ ├── line.rst │ │ ├── program.rst │ │ ├── source.rst │ │ ├── stack.rst │ │ └── variables.rst │ ├── running.rst │ ├── running │ │ ├── Makefile │ │ ├── continue.rst │ │ ├── debug.rst │ │ ├── kill.rst │ │ ├── next.rst │ │ ├── quit.rst │ │ ├── run.rst │ │ ├── skip.rst │ │ └── step.rst │ ├── set.rst │ ├── set │ │ ├── Makefile │ │ ├── annotate.rst │ │ ├── args.rst │ │ ├── autoeval.rst │ │ ├── autolist.rst │ │ ├── basename.rst │ │ ├── cmdtrace.rst │ │ ├── confirm.rst │ │ ├── different.rst │ │ ├── editing.rst │ │ ├── highlight.rst │ │ ├── listsize.rst │ │ ├── style.rst │ │ └── width.rst │ ├── show.rst │ ├── show │ │ ├── Makefile │ │ ├── aliases.rst │ │ ├── annotate.rst │ │ ├── args.rst │ │ ├── autoeval.rst │ │ ├── autolist.rst │ │ ├── basename.rst │ │ ├── cmdtrace.rst │ │ ├── confirm.rst │ │ ├── different.rst │ │ ├── editing.rst │ │ ├── highlight.rst │ │ ├── listsize.rst │ │ ├── style.rst │ │ └── width.rst │ ├── stack.rst │ ├── stack │ │ ├── Makefile │ │ ├── backtrace.rst │ │ ├── down.rst │ │ ├── frame.rst │ │ └── up.rst │ ├── support.rst │ └── support │ │ ├── Makefile │ │ ├── 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 ├── getopt-test.sh ├── getopts_long.sh ├── init ├── .gitignore ├── Makefile.am ├── io.sh ├── opts.sh ├── pre.sh └── term-background.sh ├── kshdb.in ├── lib ├── .gitignore ├── Makefile.am ├── action.sh ├── alias.sh ├── break.sh ├── columnize.sh ├── complete.sh ├── dbg-call.sh ├── display.sh ├── file.sh ├── filecache.sh ├── fns.sh ├── frame.sh ├── gdb.sh ├── help.sh ├── hist.sh ├── hook.sh ├── info.sh ├── journal.sh ├── list.sh ├── log.sh ├── msg.sh ├── processor.sh ├── run.sh ├── save-restore.sh ├── set-d-vars.sh ├── setshow.sh ├── shell.sh ├── sort.sh ├── term-highlight.py └── tty.sh ├── test ├── .gitignore ├── Makefile.am ├── README.md ├── data │ ├── .gitignore │ ├── Makefile.am │ ├── break.cmd │ ├── break.right │ ├── bug-args.cmd │ ├── bug-args.right │ ├── bug-errexit.cmd │ ├── bug-errexit.right │ ├── bugIFS.cmd │ ├── bugIFS.right │ ├── condition.cmd │ ├── condition.right │ ├── delete.cmd │ ├── delete.right │ ├── display.cmd │ ├── display.right │ ├── enable.cmd │ ├── enable.right │ ├── examine.cmd │ ├── examine.right │ ├── file with spaces.cmd │ ├── file with spaces.right │ ├── frame.cmd │ ├── frame.right │ ├── info-args.cmd │ ├── info-args.right │ ├── list.cmd │ ├── list.right │ ├── next.cmd │ ├── next.right │ ├── restart.cmd │ ├── restart.right │ ├── restart2.cmd │ ├── setshow.cmd │ ├── setshow.right │ ├── settrace.cmd │ ├── settrace.right │ ├── skip.cmd │ ├── skip.right │ ├── step.cmd │ ├── step.right │ ├── subshell1.cmd │ └── subshell1.right ├── example │ ├── .gitignore │ ├── Makefile.am │ ├── bug-args.sh │ ├── bug-errexit.sh │ ├── bugIFS.sh │ ├── dbg-test1.sh │ ├── dbg-test2.sh │ ├── dir with spaces │ │ └── bug.sh │ ├── exam.sh │ ├── file with spaces.sh │ ├── hanoi.sh.in │ ├── nexting.sh │ ├── restart.sh │ ├── settrace.sh │ ├── stepping.sh │ └── subshell.sh ├── integration │ ├── .gitignore │ ├── Makefile.am │ ├── check-common.sh.in │ ├── test-break.in │ ├── test-bug-args.in │ ├── test-bug-errexit.in │ ├── test-bugIFS.in │ ├── test-condition.in │ ├── test-delete.in │ ├── test-display.in │ ├── test-enable.in │ ├── test-examine.in │ ├── test-file-with-spaces │ ├── test-frame.in │ ├── test-info-args.in │ ├── test-list.in │ ├── test-next.in │ ├── test-restart.in │ ├── test-setshow.in │ ├── test-skip.in │ ├── test-step.in │ └── test-subshell1.in └── unit │ ├── .gitignore │ ├── Makefile.am │ ├── helper.sh │ ├── shunit2 │ ├── test-alias.sh.in │ ├── test-break.sh.in │ ├── test-cmd-complete.sh.in │ ├── test-columns.sh.in │ ├── test-dbg-opts.sh.in │ ├── test-eval.sh.in │ ├── test-examine.sh.in │ ├── test-file.sh.in │ ├── test-filecache.sh.in │ ├── test-fns.sh.in │ ├── test-frame.sh.in │ ├── test-get-sourceline.sh.in │ ├── test-journal.sh.in │ ├── test-lib-complete.sh.in │ ├── test-msg.sh.in │ ├── test-pre.sh.in │ ├── test-run.sh.in │ ├── test-save-restore.sh.in │ ├── test-setshow.sh.in │ ├── test-sort.sh.in │ └── test-tty.sh.in └── testing.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/THANKS -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /admin/how-to-make-a-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/admin/how-to-make-a-release.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/autogen.sh -------------------------------------------------------------------------------- /command/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/.gitignore -------------------------------------------------------------------------------- /command/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/Makefile.am -------------------------------------------------------------------------------- /command/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/alias.sh -------------------------------------------------------------------------------- /command/backtrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/backtrace.sh -------------------------------------------------------------------------------- /command/break.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/break.sh -------------------------------------------------------------------------------- /command/complete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/complete.sh -------------------------------------------------------------------------------- /command/condition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/condition.sh -------------------------------------------------------------------------------- /command/continue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/continue.sh -------------------------------------------------------------------------------- /command/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/debug.sh -------------------------------------------------------------------------------- /command/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/delete.sh -------------------------------------------------------------------------------- /command/disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/disable.sh -------------------------------------------------------------------------------- /command/display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/display.sh -------------------------------------------------------------------------------- /command/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/down.sh -------------------------------------------------------------------------------- /command/edit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/edit.sh -------------------------------------------------------------------------------- /command/enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/enable.sh -------------------------------------------------------------------------------- /command/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/eval.sh -------------------------------------------------------------------------------- /command/examine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/examine.sh -------------------------------------------------------------------------------- /command/frame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/frame.sh -------------------------------------------------------------------------------- /command/handle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/handle.sh -------------------------------------------------------------------------------- /command/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/help.sh -------------------------------------------------------------------------------- /command/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info.sh -------------------------------------------------------------------------------- /command/info_sub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/.gitignore -------------------------------------------------------------------------------- /command/info_sub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/Makefile.am -------------------------------------------------------------------------------- /command/info_sub/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/args.sh -------------------------------------------------------------------------------- /command/info_sub/breakpoints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/breakpoints.sh -------------------------------------------------------------------------------- /command/info_sub/display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/display.sh -------------------------------------------------------------------------------- /command/info_sub/files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/files.sh -------------------------------------------------------------------------------- /command/info_sub/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/functions.sh -------------------------------------------------------------------------------- /command/info_sub/line.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/line.sh -------------------------------------------------------------------------------- /command/info_sub/program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/program.sh -------------------------------------------------------------------------------- /command/info_sub/source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/source.sh -------------------------------------------------------------------------------- /command/info_sub/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/variables.sh -------------------------------------------------------------------------------- /command/info_sub/warranty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/info_sub/warranty.sh -------------------------------------------------------------------------------- /command/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/kill.sh -------------------------------------------------------------------------------- /command/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/list.sh -------------------------------------------------------------------------------- /command/next.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/next.sh -------------------------------------------------------------------------------- /command/pwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/pwd.sh -------------------------------------------------------------------------------- /command/quit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/quit.sh -------------------------------------------------------------------------------- /command/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/run.sh -------------------------------------------------------------------------------- /command/set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set.sh -------------------------------------------------------------------------------- /command/set_sub/.gitignore: -------------------------------------------------------------------------------- 1 | /*~ 2 | -------------------------------------------------------------------------------- /command/set_sub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/Makefile.am -------------------------------------------------------------------------------- /command/set_sub/annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/annotate.sh -------------------------------------------------------------------------------- /command/set_sub/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/args.sh -------------------------------------------------------------------------------- /command/set_sub/autoeval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/autoeval.sh -------------------------------------------------------------------------------- /command/set_sub/autolist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/autolist.sh -------------------------------------------------------------------------------- /command/set_sub/basename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/basename.sh -------------------------------------------------------------------------------- /command/set_sub/confirm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/confirm.sh -------------------------------------------------------------------------------- /command/set_sub/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/debug.sh -------------------------------------------------------------------------------- /command/set_sub/different.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/different.sh -------------------------------------------------------------------------------- /command/set_sub/editing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/editing.sh -------------------------------------------------------------------------------- /command/set_sub/highlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/highlight.sh -------------------------------------------------------------------------------- /command/set_sub/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/history.sh -------------------------------------------------------------------------------- /command/set_sub/linetrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/linetrace.sh -------------------------------------------------------------------------------- /command/set_sub/listsize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/listsize.sh -------------------------------------------------------------------------------- /command/set_sub/prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/prompt.sh -------------------------------------------------------------------------------- /command/set_sub/showcommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/showcommand.sh -------------------------------------------------------------------------------- /command/set_sub/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/style.sh -------------------------------------------------------------------------------- /command/set_sub/trace-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/trace-commands.sh -------------------------------------------------------------------------------- /command/set_sub/width.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/set_sub/width.sh -------------------------------------------------------------------------------- /command/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/shell.sh -------------------------------------------------------------------------------- /command/show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show.sh -------------------------------------------------------------------------------- /command/show_sub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/.gitignore -------------------------------------------------------------------------------- /command/show_sub/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/Makefile.am -------------------------------------------------------------------------------- /command/show_sub/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/alias.sh -------------------------------------------------------------------------------- /command/show_sub/annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/annotate.sh -------------------------------------------------------------------------------- /command/show_sub/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/args.sh -------------------------------------------------------------------------------- /command/show_sub/autoeval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/autoeval.sh -------------------------------------------------------------------------------- /command/show_sub/autolist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/autolist.sh -------------------------------------------------------------------------------- /command/show_sub/basename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/basename.sh -------------------------------------------------------------------------------- /command/show_sub/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/commands.sh -------------------------------------------------------------------------------- /command/show_sub/confirm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/confirm.sh -------------------------------------------------------------------------------- /command/show_sub/copying.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/copying.sh -------------------------------------------------------------------------------- /command/show_sub/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/debug.sh -------------------------------------------------------------------------------- /command/show_sub/different.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/different.sh -------------------------------------------------------------------------------- /command/show_sub/directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/directories.sh -------------------------------------------------------------------------------- /command/show_sub/editing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/editing.sh -------------------------------------------------------------------------------- /command/show_sub/highlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/highlight.sh -------------------------------------------------------------------------------- /command/show_sub/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/history.sh -------------------------------------------------------------------------------- /command/show_sub/linetrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/linetrace.sh -------------------------------------------------------------------------------- /command/show_sub/listsize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/listsize.sh -------------------------------------------------------------------------------- /command/show_sub/prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/prompt.sh -------------------------------------------------------------------------------- /command/show_sub/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/style.sh -------------------------------------------------------------------------------- /command/show_sub/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/version.sh -------------------------------------------------------------------------------- /command/show_sub/warranty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/warranty.sh -------------------------------------------------------------------------------- /command/show_sub/width.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/show_sub/width.sh -------------------------------------------------------------------------------- /command/skip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/skip.sh -------------------------------------------------------------------------------- /command/source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/source.sh -------------------------------------------------------------------------------- /command/step.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/step.sh -------------------------------------------------------------------------------- /command/trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/trace.sh -------------------------------------------------------------------------------- /command/undisplay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/undisplay.sh -------------------------------------------------------------------------------- /command/untrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/untrace.sh -------------------------------------------------------------------------------- /command/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/command/up.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/configure.ac -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/data/shell.sh -------------------------------------------------------------------------------- /dbg-main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/dbg-main.sh -------------------------------------------------------------------------------- /dbg-trace.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/dbg-trace.sh.in -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/kshdb-man.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/doc/kshdb-man.pod -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands.rst -------------------------------------------------------------------------------- /docs/commands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/Makefile -------------------------------------------------------------------------------- /docs/commands/breakpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/breakpoints.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/breakpoints/Makefile -------------------------------------------------------------------------------- /docs/commands/breakpoints/break.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/breakpoints/break.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/condition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/breakpoints/condition.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/delete.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/breakpoints/delete.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/disable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/breakpoints/disable.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/enable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/breakpoints/enable.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/tbreak.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/breakpoints/tbreak.rst -------------------------------------------------------------------------------- /docs/commands/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/data.rst -------------------------------------------------------------------------------- /docs/commands/data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/data/Makefile -------------------------------------------------------------------------------- /docs/commands/data/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/data/display.rst -------------------------------------------------------------------------------- /docs/commands/data/eval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/data/eval.rst -------------------------------------------------------------------------------- /docs/commands/data/examine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/data/examine.rst -------------------------------------------------------------------------------- /docs/commands/data/load.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/data/load.rst -------------------------------------------------------------------------------- /docs/commands/data/undisplay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/data/undisplay.rst -------------------------------------------------------------------------------- /docs/commands/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/files.rst -------------------------------------------------------------------------------- /docs/commands/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/files/Makefile -------------------------------------------------------------------------------- /docs/commands/files/edit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/files/edit.rst -------------------------------------------------------------------------------- /docs/commands/files/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/files/list.rst -------------------------------------------------------------------------------- /docs/commands/info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/info.rst -------------------------------------------------------------------------------- /docs/commands/info/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/info/Makefile -------------------------------------------------------------------------------- /docs/commands/info/breakpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/info/breakpoints.rst -------------------------------------------------------------------------------- /docs/commands/info/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/info/display.rst -------------------------------------------------------------------------------- /docs/commands/info/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/info/files.rst -------------------------------------------------------------------------------- /docs/commands/info/line.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/info/line.rst -------------------------------------------------------------------------------- /docs/commands/info/program.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/info/program.rst -------------------------------------------------------------------------------- /docs/commands/info/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/info/source.rst -------------------------------------------------------------------------------- /docs/commands/info/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/info/stack.rst -------------------------------------------------------------------------------- /docs/commands/info/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/info/variables.rst -------------------------------------------------------------------------------- /docs/commands/running.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/running.rst -------------------------------------------------------------------------------- /docs/commands/running/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/running/Makefile -------------------------------------------------------------------------------- /docs/commands/running/continue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/running/continue.rst -------------------------------------------------------------------------------- /docs/commands/running/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/running/debug.rst -------------------------------------------------------------------------------- /docs/commands/running/kill.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/running/kill.rst -------------------------------------------------------------------------------- /docs/commands/running/next.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/running/next.rst -------------------------------------------------------------------------------- /docs/commands/running/quit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/running/quit.rst -------------------------------------------------------------------------------- /docs/commands/running/run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/running/run.rst -------------------------------------------------------------------------------- /docs/commands/running/skip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/running/skip.rst -------------------------------------------------------------------------------- /docs/commands/running/step.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/running/step.rst -------------------------------------------------------------------------------- /docs/commands/set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set.rst -------------------------------------------------------------------------------- /docs/commands/set/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/Makefile -------------------------------------------------------------------------------- /docs/commands/set/annotate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/annotate.rst -------------------------------------------------------------------------------- /docs/commands/set/args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/args.rst -------------------------------------------------------------------------------- /docs/commands/set/autoeval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/autoeval.rst -------------------------------------------------------------------------------- /docs/commands/set/autolist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/autolist.rst -------------------------------------------------------------------------------- /docs/commands/set/basename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/basename.rst -------------------------------------------------------------------------------- /docs/commands/set/cmdtrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/cmdtrace.rst -------------------------------------------------------------------------------- /docs/commands/set/confirm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/confirm.rst -------------------------------------------------------------------------------- /docs/commands/set/different.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/different.rst -------------------------------------------------------------------------------- /docs/commands/set/editing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/editing.rst -------------------------------------------------------------------------------- /docs/commands/set/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/highlight.rst -------------------------------------------------------------------------------- /docs/commands/set/listsize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/listsize.rst -------------------------------------------------------------------------------- /docs/commands/set/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/style.rst -------------------------------------------------------------------------------- /docs/commands/set/width.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/set/width.rst -------------------------------------------------------------------------------- /docs/commands/show.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show.rst -------------------------------------------------------------------------------- /docs/commands/show/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/Makefile -------------------------------------------------------------------------------- /docs/commands/show/aliases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/aliases.rst -------------------------------------------------------------------------------- /docs/commands/show/annotate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/annotate.rst -------------------------------------------------------------------------------- /docs/commands/show/args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/args.rst -------------------------------------------------------------------------------- /docs/commands/show/autoeval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/autoeval.rst -------------------------------------------------------------------------------- /docs/commands/show/autolist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/autolist.rst -------------------------------------------------------------------------------- /docs/commands/show/basename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/basename.rst -------------------------------------------------------------------------------- /docs/commands/show/cmdtrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/cmdtrace.rst -------------------------------------------------------------------------------- /docs/commands/show/confirm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/confirm.rst -------------------------------------------------------------------------------- /docs/commands/show/different.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/different.rst -------------------------------------------------------------------------------- /docs/commands/show/editing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/editing.rst -------------------------------------------------------------------------------- /docs/commands/show/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/highlight.rst -------------------------------------------------------------------------------- /docs/commands/show/listsize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/listsize.rst -------------------------------------------------------------------------------- /docs/commands/show/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/style.rst -------------------------------------------------------------------------------- /docs/commands/show/width.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/show/width.rst -------------------------------------------------------------------------------- /docs/commands/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/stack.rst -------------------------------------------------------------------------------- /docs/commands/stack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/stack/Makefile -------------------------------------------------------------------------------- /docs/commands/stack/backtrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/stack/backtrace.rst -------------------------------------------------------------------------------- /docs/commands/stack/down.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/stack/down.rst -------------------------------------------------------------------------------- /docs/commands/stack/frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/stack/frame.rst -------------------------------------------------------------------------------- /docs/commands/stack/up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/stack/up.rst -------------------------------------------------------------------------------- /docs/commands/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/support.rst -------------------------------------------------------------------------------- /docs/commands/support/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/support/Makefile -------------------------------------------------------------------------------- /docs/commands/support/alias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/support/alias.rst -------------------------------------------------------------------------------- /docs/commands/support/help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/support/help.rst -------------------------------------------------------------------------------- /docs/commands/support/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/support/source.rst -------------------------------------------------------------------------------- /docs/commands/support/unalias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/commands/support/unalias.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/entry-exit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/entry-exit.rst -------------------------------------------------------------------------------- /docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/features.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/manpage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/manpage.rst -------------------------------------------------------------------------------- /docs/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/syntax.rst -------------------------------------------------------------------------------- /docs/syntax/command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/syntax/command.rst -------------------------------------------------------------------------------- /docs/syntax/suffixes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/docs/syntax/suffixes.rst -------------------------------------------------------------------------------- /getopt-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/getopt-test.sh -------------------------------------------------------------------------------- /getopts_long.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/getopts_long.sh -------------------------------------------------------------------------------- /init/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/init/.gitignore -------------------------------------------------------------------------------- /init/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/init/Makefile.am -------------------------------------------------------------------------------- /init/io.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/init/io.sh -------------------------------------------------------------------------------- /init/opts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/init/opts.sh -------------------------------------------------------------------------------- /init/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/init/pre.sh -------------------------------------------------------------------------------- /init/term-background.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/init/term-background.sh -------------------------------------------------------------------------------- /kshdb.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/kshdb.in -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/action.sh -------------------------------------------------------------------------------- /lib/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/alias.sh -------------------------------------------------------------------------------- /lib/break.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/break.sh -------------------------------------------------------------------------------- /lib/columnize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/columnize.sh -------------------------------------------------------------------------------- /lib/complete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/complete.sh -------------------------------------------------------------------------------- /lib/dbg-call.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/dbg-call.sh -------------------------------------------------------------------------------- /lib/display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/display.sh -------------------------------------------------------------------------------- /lib/file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/file.sh -------------------------------------------------------------------------------- /lib/filecache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/filecache.sh -------------------------------------------------------------------------------- /lib/fns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/fns.sh -------------------------------------------------------------------------------- /lib/frame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/frame.sh -------------------------------------------------------------------------------- /lib/gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/gdb.sh -------------------------------------------------------------------------------- /lib/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/help.sh -------------------------------------------------------------------------------- /lib/hist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/hist.sh -------------------------------------------------------------------------------- /lib/hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/hook.sh -------------------------------------------------------------------------------- /lib/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/info.sh -------------------------------------------------------------------------------- /lib/journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/journal.sh -------------------------------------------------------------------------------- /lib/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/list.sh -------------------------------------------------------------------------------- /lib/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/log.sh -------------------------------------------------------------------------------- /lib/msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/msg.sh -------------------------------------------------------------------------------- /lib/processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/processor.sh -------------------------------------------------------------------------------- /lib/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/run.sh -------------------------------------------------------------------------------- /lib/save-restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/save-restore.sh -------------------------------------------------------------------------------- /lib/set-d-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/set-d-vars.sh -------------------------------------------------------------------------------- /lib/setshow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/setshow.sh -------------------------------------------------------------------------------- /lib/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/shell.sh -------------------------------------------------------------------------------- /lib/sort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/sort.sh -------------------------------------------------------------------------------- /lib/term-highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/term-highlight.py -------------------------------------------------------------------------------- /lib/tty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/lib/tty.sh -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/README.md -------------------------------------------------------------------------------- /test/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/.gitignore -------------------------------------------------------------------------------- /test/data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/Makefile.am -------------------------------------------------------------------------------- /test/data/break.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/break.cmd -------------------------------------------------------------------------------- /test/data/break.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/break.right -------------------------------------------------------------------------------- /test/data/bug-args.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/bug-args.cmd -------------------------------------------------------------------------------- /test/data/bug-args.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/bug-args.right -------------------------------------------------------------------------------- /test/data/bug-errexit.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/bug-errexit.cmd -------------------------------------------------------------------------------- /test/data/bug-errexit.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/bug-errexit.right -------------------------------------------------------------------------------- /test/data/bugIFS.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/bugIFS.cmd -------------------------------------------------------------------------------- /test/data/bugIFS.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/bugIFS.right -------------------------------------------------------------------------------- /test/data/condition.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/condition.cmd -------------------------------------------------------------------------------- /test/data/condition.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/condition.right -------------------------------------------------------------------------------- /test/data/delete.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/delete.cmd -------------------------------------------------------------------------------- /test/data/delete.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/delete.right -------------------------------------------------------------------------------- /test/data/display.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/display.cmd -------------------------------------------------------------------------------- /test/data/display.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/display.right -------------------------------------------------------------------------------- /test/data/enable.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/enable.cmd -------------------------------------------------------------------------------- /test/data/enable.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/enable.right -------------------------------------------------------------------------------- /test/data/examine.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/examine.cmd -------------------------------------------------------------------------------- /test/data/examine.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/examine.right -------------------------------------------------------------------------------- /test/data/file with spaces.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/file with spaces.cmd -------------------------------------------------------------------------------- /test/data/file with spaces.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/file with spaces.right -------------------------------------------------------------------------------- /test/data/frame.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/frame.cmd -------------------------------------------------------------------------------- /test/data/frame.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/frame.right -------------------------------------------------------------------------------- /test/data/info-args.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/info-args.cmd -------------------------------------------------------------------------------- /test/data/info-args.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/info-args.right -------------------------------------------------------------------------------- /test/data/list.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/list.cmd -------------------------------------------------------------------------------- /test/data/list.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/list.right -------------------------------------------------------------------------------- /test/data/next.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/next.cmd -------------------------------------------------------------------------------- /test/data/next.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/next.right -------------------------------------------------------------------------------- /test/data/restart.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/restart.cmd -------------------------------------------------------------------------------- /test/data/restart.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/restart.right -------------------------------------------------------------------------------- /test/data/restart2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/restart2.cmd -------------------------------------------------------------------------------- /test/data/setshow.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/setshow.cmd -------------------------------------------------------------------------------- /test/data/setshow.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/setshow.right -------------------------------------------------------------------------------- /test/data/settrace.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/settrace.cmd -------------------------------------------------------------------------------- /test/data/settrace.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/settrace.right -------------------------------------------------------------------------------- /test/data/skip.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/skip.cmd -------------------------------------------------------------------------------- /test/data/skip.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/skip.right -------------------------------------------------------------------------------- /test/data/step.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/step.cmd -------------------------------------------------------------------------------- /test/data/step.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/step.right -------------------------------------------------------------------------------- /test/data/subshell1.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/subshell1.cmd -------------------------------------------------------------------------------- /test/data/subshell1.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/data/subshell1.right -------------------------------------------------------------------------------- /test/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/.gitignore -------------------------------------------------------------------------------- /test/example/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/Makefile.am -------------------------------------------------------------------------------- /test/example/bug-args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/bug-args.sh -------------------------------------------------------------------------------- /test/example/bug-errexit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/bug-errexit.sh -------------------------------------------------------------------------------- /test/example/bugIFS.sh: -------------------------------------------------------------------------------- 1 | #!/bin/ksh 2 | IFS="." 3 | PS4='foo' 4 | exit 0 5 | -------------------------------------------------------------------------------- /test/example/dbg-test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/dbg-test1.sh -------------------------------------------------------------------------------- /test/example/dbg-test2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/dbg-test2.sh -------------------------------------------------------------------------------- /test/example/dir with spaces/bug.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | x=1 3 | echo "file with spaces here" 4 | -------------------------------------------------------------------------------- /test/example/exam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/exam.sh -------------------------------------------------------------------------------- /test/example/file with spaces.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | x=1 3 | echo "file with spaces here" 4 | -------------------------------------------------------------------------------- /test/example/hanoi.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/hanoi.sh.in -------------------------------------------------------------------------------- /test/example/nexting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/nexting.sh -------------------------------------------------------------------------------- /test/example/restart.sh: -------------------------------------------------------------------------------- 1 | #!/bin/ksh 2 | # For testing restart. 3 | 4 | x=1 5 | cd / 6 | y=2 7 | z=0 8 | -------------------------------------------------------------------------------- /test/example/settrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/settrace.sh -------------------------------------------------------------------------------- /test/example/stepping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/stepping.sh -------------------------------------------------------------------------------- /test/example/subshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/example/subshell.sh -------------------------------------------------------------------------------- /test/integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/.gitignore -------------------------------------------------------------------------------- /test/integration/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/Makefile.am -------------------------------------------------------------------------------- /test/integration/check-common.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/check-common.sh.in -------------------------------------------------------------------------------- /test/integration/test-break.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-break.in -------------------------------------------------------------------------------- /test/integration/test-bug-args.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-bug-args.in -------------------------------------------------------------------------------- /test/integration/test-bug-errexit.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-bug-errexit.in -------------------------------------------------------------------------------- /test/integration/test-bugIFS.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-bugIFS.in -------------------------------------------------------------------------------- /test/integration/test-condition.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-condition.in -------------------------------------------------------------------------------- /test/integration/test-delete.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-delete.in -------------------------------------------------------------------------------- /test/integration/test-display.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-display.in -------------------------------------------------------------------------------- /test/integration/test-enable.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-enable.in -------------------------------------------------------------------------------- /test/integration/test-examine.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-examine.in -------------------------------------------------------------------------------- /test/integration/test-file-with-spaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-file-with-spaces -------------------------------------------------------------------------------- /test/integration/test-frame.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-frame.in -------------------------------------------------------------------------------- /test/integration/test-info-args.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-info-args.in -------------------------------------------------------------------------------- /test/integration/test-list.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-list.in -------------------------------------------------------------------------------- /test/integration/test-next.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-next.in -------------------------------------------------------------------------------- /test/integration/test-restart.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-restart.in -------------------------------------------------------------------------------- /test/integration/test-setshow.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-setshow.in -------------------------------------------------------------------------------- /test/integration/test-skip.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-skip.in -------------------------------------------------------------------------------- /test/integration/test-step.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-step.in -------------------------------------------------------------------------------- /test/integration/test-subshell1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/integration/test-subshell1.in -------------------------------------------------------------------------------- /test/unit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/.gitignore -------------------------------------------------------------------------------- /test/unit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/Makefile.am -------------------------------------------------------------------------------- /test/unit/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/helper.sh -------------------------------------------------------------------------------- /test/unit/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/shunit2 -------------------------------------------------------------------------------- /test/unit/test-alias.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-alias.sh.in -------------------------------------------------------------------------------- /test/unit/test-break.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-break.sh.in -------------------------------------------------------------------------------- /test/unit/test-cmd-complete.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-cmd-complete.sh.in -------------------------------------------------------------------------------- /test/unit/test-columns.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-columns.sh.in -------------------------------------------------------------------------------- /test/unit/test-dbg-opts.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-dbg-opts.sh.in -------------------------------------------------------------------------------- /test/unit/test-eval.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-eval.sh.in -------------------------------------------------------------------------------- /test/unit/test-examine.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-examine.sh.in -------------------------------------------------------------------------------- /test/unit/test-file.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-file.sh.in -------------------------------------------------------------------------------- /test/unit/test-filecache.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-filecache.sh.in -------------------------------------------------------------------------------- /test/unit/test-fns.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-fns.sh.in -------------------------------------------------------------------------------- /test/unit/test-frame.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-frame.sh.in -------------------------------------------------------------------------------- /test/unit/test-get-sourceline.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-get-sourceline.sh.in -------------------------------------------------------------------------------- /test/unit/test-journal.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-journal.sh.in -------------------------------------------------------------------------------- /test/unit/test-lib-complete.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-lib-complete.sh.in -------------------------------------------------------------------------------- /test/unit/test-msg.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-msg.sh.in -------------------------------------------------------------------------------- /test/unit/test-pre.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-pre.sh.in -------------------------------------------------------------------------------- /test/unit/test-run.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-run.sh.in -------------------------------------------------------------------------------- /test/unit/test-save-restore.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-save-restore.sh.in -------------------------------------------------------------------------------- /test/unit/test-setshow.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-setshow.sh.in -------------------------------------------------------------------------------- /test/unit/test-sort.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-sort.sh.in -------------------------------------------------------------------------------- /test/unit/test-tty.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/test/unit/test-tty.sh.in -------------------------------------------------------------------------------- /testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/kshdb/HEAD/testing.sh --------------------------------------------------------------------------------