User`s guide

134
Appendix B: Predefined Aliases
j status Lists all the currently set stop, trace, and when
commands.
l list Lists the next $listwindow lines of source code
beginning at the current line.
li $curpc/10i; \
set $curpc=$curpc+40
Lists the next 40 bytes of machine instructions
(approximately 10 instructions).
n next Executes the specified number of lines of
source code, stepping over procedures. If you
do not provide an argument, dbx executes only
one line.
ni nexti Executes the specified number of lines of
machine code, stepping over procedures. If
you do not provide an argument, dbx executes
only one instruction.
p print Prints the value of the specified variable or
expression.
pd printd Prints the value of the specified variable in
decimal.
pi playback input Replays dbx commands saved in the specified
file. If you do not specify a file, dbx uses the
temporary file specified by $defaultin.
po printo Prints the value of the specified variable or
expression in octal.
pr printregs Prints values contained in all registers.
px printx Prints the value of the specified variable or
expression in hexadecimal.
q quit Quits dbx.
r rerun Runs the program again using the arguments
specified for the last run command executed.
Table B-1 (continued) Predefined Aliases
Alias Definition Description