카테고리 없음
[vscode] bash 디버깅 하기
냐옴
2024. 10. 4. 22:53
bash 버전 업그레이드
brew install bash
Bash Debug 플러그인 설치
launch.json 생성
// .vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "bashdb",
"request": "launch",
"name": "Bash Debug",
"program": "${file}",
"pathBash": "/opt/homebrew/Cellar/bash/5.2.37/bin/bash" // bash 경로
}
]
}