vscode中bash调试
时间: 2023-05-25 12:05:36 浏览: 967
vscode-bash-debug:VSCode的Bash Shell调试器扩展(基于bashdb)
5星 · 资源好评率100%
在vscode中调试bash脚本可以按照以下步骤进行:
1. 安装bash-debug插件
在vscode中打开扩展面板,搜索并安装bash-debug插件。
2. 创建launch.json文件
在vscode中打开调试面板,点击“添加配置”按钮,选择bash。会自动生成一个launch.json配置文件。
3. 配置launch.json文件
在launch.json文件中,可以配置启动脚本和调试参数等,例如:
```
{
"version": "0.2.0",
"configurations": [
{
"type": "bashdb",
"request": "launch",
"name": "Debug Bash",
"program": "${workspaceFolder}/test.sh",
"stopOnEntry": true,
"args": ["arg1", "arg2"]
}
]
}
```
其中,type指定了程序的类型,request指定了调试请求的类型,name指定了任务名称,program指定了待调试的脚本,stopOnEntry指示在程序开始时是否暂停执行,args指定了脚本的传入参数。
4. 调试脚本
点击调试按钮,选择“Debug Bash”任务,即可开始调试bash脚本。可以设置断点、查看输出等操作。
阅读全文