---
title: continue命令
description: "继续执行程序直到遇到下一个断点或结束。"
url: https://www.hikunpeng.com/document/detail/zh/kunpengdevps/debugging/debugger/KunpengDevKitCli_0143.html
sourcePath: /source/zh/kunpengdevps/debugging/debugger/KunpengDevKitCli_0143.html
indexId: fb1fd3f68b17cbdc31ce8deef79ac42f0e32d06a9bd01c929d45ecab6b4c07f669
---
# continue命令

#### 命令功能

继续执行程序直到遇到下一个断点或结束。


#### 命令格式

```
continue/c [-h | --help]
```

continue命令可简写为c。


#### 参数说明


**表1 continue命令参数**

| 参数 | 参数说明 |
| --- | --- |
| 无 | 继续执行程序直到遇到下一个断点或结束。 |
| \-h/\-\-help | 可选参数，获取帮助信息。 |


#### 使用示例

执行以下命令，查看continue支持的功能信息：

```
continue -h
```

返回信息如下：

```
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
```
