Menu

Tree [eb0f74] master /
 History

HTTPS access


File Date Author Commit
 rpm 2017-04-30 rocky rocky [7b2cfa] Update test results ..
 .cvsignore unknown
 .gitignore 2018-04-15 rocky rocky [f83d29] Expan bactrace ..
 AUTHORS unknown
 CHANGES unknown
 COPYING unknown
 ChangeLog.0 unknown
 INSTALL 2016-03-12 rocky rocky [bd3f52] We don't do bash 3.0 anymore.
 README-git.md 2021-07-08 rocky rocky [eb0f74] Remove most of the debugger files from master
 README.md 2014-12-14 rocky rocky [5d96ba] Make "make distcheck" work
 THANKS 2018-11-17 rocky rocky [b3cc84] Administrivia
 TODO unknown
 check-prefix.sh 2017-08-23 rocky rocky [8b96ae] Better shell script for setting/checking prefix
 cvs2cl_header unknown
 cvs2cl_usermap unknown
 getopts_long.sh unknown

Read Me

Here we have a debugger (the debugger?) for Bash 3.0 and higher.

The command syntax generally follows that of the
zsh debugger trepanning debuggers
and, more generally, GNU debugger gdb.

There are 3 ways to get into the debugger. If bash (with debugger
support enabled which is the default) is installed and the debugger
are both installed properly. Then:

   bash --debugger -- bash-script-name script-arg1 script-arg2...

If bash isn't installed in a way that will find bashdb, then:

   bashdb [bashdb-opts] -- bash-script-name script-arg1 script-arg2...

The downside here is that $0 will be "bashdb" not
bash-script-name. Also call stack will show the invocation to bashdb.

Finally, to invoke the debugger from the script

  # my script
  # work, work, work, ...

  # Load debugger support
  source <bashdb-installation>/bashdb-trace -L <bashdb-installation>
  # work, work, work or not...
  _Dbg_debugger; :   # Calls the debugger at the line below
  stop_here

An advantage of the above is that there is no overhead up until you
invoke the debugger. Typically for large bash programs like
configuration scripts, this is a big win.

IMPORTANT NOTE IF YOU USE THE ABOVE TO DEBUG CONFIGURE SCRIPTS...

stdin is closed by configure early on. This causes the debugger to quit.
You can get around this invoking a command script that sets debugger
up input and output. Run tty to figure out what the terminal tty is set to.

  $ tty
  /dev/pts/3
  $

Above it came out to /dev/pts/3. Let's go with that. Put the folliwng
in a file say /tmp/bashdb-configure

  source /dev/pts/3
  tty /dev/pts/3

Now arrange to read that configuration file using the -x or --eval-command
switch:

  source <bashdb-installation>/bashdb-trace -L <bashdb-installation> -x /tmp/bashdb-configure

See INSTALL for generic GNU configure installation instructions.