Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 줄바꿈 문자
- profile
- Windows
- Mac
- IntelliJ
- Eclipse
- netsh
- lsof
- bash
- web.xml
- find
- tomcat
- vscode
- plugin
- JavaScript
- 단축키
- ssh
- port
- 네트워크
- xargs
- GIT
- Source
- context
- resource
- grep
- maVen
- Windows 10
- Quartz
- import
- VirtualBox
Archives
- Today
- Total
develog
[vscode] bash 디버깅 하기 본문
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 경로
}
]
}
Comments