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 |
Tags
- find
- context
- Windows
- Windows 10
- netsh
- 줄바꿈 문자
- GIT
- IntelliJ
- VirtualBox
- lsof
- grep
- port
- Eclipse
- vscode
- xargs
- web.xml
- resource
- JavaScript
- Mac
- maVen
- Source
- 네트워크
- import
- tomcat
- Quartz
- profile
- ssh
- plugin
- bash
- 단축키
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