continue
Command Function
Executes the application to the next breakpoint or until the application ends.
Syntax
1 | continue/c [-h | --help] |
The continue command can be abbreviated as c.
Parameter Description
Parameter |
Description |
|---|---|
None |
Executes the application to the next breakpoint or until the application ends. |
-h/--help |
Obtains help information. This parameter is optional. |
Example
Display the information about continue:
1 | continue -h |
Command output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | OVERVIEW Run this command to execute the application to the next breakpoint or until the application ends. USAGE continue/c [-h | --help] OPTIONS -h, --help Get help information. EXAMPLE # Executes the application to the next breakpoint or until the application ends. continue |
Parent topic: Debugging Operation Commands