ksh debuggers??

Hi all,

I'm looking for a debugger to use on ksh scripts and the only one I can seem to find is the Rosenblatt kshdb, Does anyone know of any other commercial ones out there??

Not commercial but free. You can do some handy debugging by using set command in your script with a flag or two. See man set.

set -n  Read commands and check them for syntax errors, but do not execute them. Ignored for interactive shells.

set -x Print commands and their arguments as they are executed.

set - Turns off -x and -v flags and stops examining arguments for flags.
set -v  turns on verbose output.