1
vashodeでbashdbでbashシェルをデバッグしたいのですが、launch.jsonを設定する必要があるようです。vscodeでbashシェルをデバッグするときにlaunch.jsonを設定するには
どうすればいいですか?
scriptPath ...を編集しているようですか?
vashodeでbashdbでbashシェルをデバッグしたいのですが、launch.jsonを設定する必要があるようです。vscodeでbashシェルをデバッグするときにlaunch.jsonを設定するには
どうすればいいですか?
scriptPath ...を編集しているようですか?
launch.json
に${file}
で${command.AskForScriptName}
を交換デバッグが現在IDE
でスクリプトを開く/実行するには:
のLinux:
また、あなたが特定のファイルをハードコーディングすることができます{
"version": "0.2.0",
"configurations": [
{
"name": "Bash-Debug (type in script name)",
"type": "bashdb",
"request": "launch",
"scriptPath": "${file}",
"commandLineArguments": "",
"windows": {
"bashPath": "C:\\Windows\\sysnative\\bash.exe"
},
"linux": {
"bashPath": "bash"
},
"osx": {
"bashPath": "bash"
}
}
]
}
を
"scriptPath": "${workspaceRoot}/test.sh"
のWindows:
"scriptPath": "${workspaceRoot}\\test.sh"