Comment on Gdb: graphic (tui) modeparentComments−jpr15yCan't seem to find the package on Ubuntu 10.10, do I need to enable some repository?EDIT: Apparently it was included in the basic gdb package or something.−ludwigvan15yIt is a simple script.cat `which gdbtui`#!/bin/shprog=$(basename $0 tui)dir=$(dirname $0) if [ "$dir" != "." ]; then prog=$dir/$prog fiexec $prog --tui "$@"
Comments
Can't seem to find the package on Ubuntu 10.10, do I need to enable some repository?
EDIT: Apparently it was included in the basic gdb package or something.
It is a simple script.
cat `which gdbtui`
#!/bin/sh
prog=$(basename $0 tui)
dir=$(dirname $0) if [ "$dir" != "." ]; then prog=$dir/$prog fi
exec $prog --tui "$@"