Sun Studio 12: Debugging a Program With dbx

Native Mode Syntax

run

Begin executing the program with the current arguments.

run arguments

Begin executing the program with new arguments.

run ... >|>> output_file

Set the output redirection.

run ... < input_file

Set the input redirection.

where:

arguments are the arguments to be used in running the target process.

input_file is the file name of the file from which input is to be redirected.

output_file is the file name of the file to which output is to be redirected.


Note –

There is currently no way to redirect stderr using the run or runargs command.