---
title: step-in命令
description: "执行当前行，若遇到函数调用则进入该函数内部。"
url: https://www.hikunpeng.com/document/detail/zh/kunpengdevps/debugging/debugger/KunpengDevKitCli_0145.html
sourcePath: /source/zh/kunpengdevps/debugging/debugger/KunpengDevKitCli_0145.html
indexId: d1893ea551b6ff985b0ff15f403a6b99b391b75913d72e4de1f72ccf7a71f32069
---
# step-in命令

#### 命令功能

执行当前行，若遇到函数调用则进入该函数内部。


#### 命令格式

```
step-in/si [-h | --help]
```

step-in命令可简写为si。


#### 参数说明


**表1 step-in命令参数**

| 参数 | 参数说明 |
| --- | --- |
| 无 | 执行当前行，若遇到函数调用则进入该函数内部。 |
| \-h/\-\-help | 可选参数，获取帮助信息。 |


#### 使用示例

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

```
step-in -h
```

返回信息如下：

```
OVERVIEW
    Run this command to execute the current line. If a function is called, enter this function.

USAGE
    step-in/si
    [-h | --help]

OPTIONS
    -h, --help
    Get help information.

EXAMPLE
    # Executes the current line. If a function is called, enter this function.
    step-in
```
