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
- Mac
- plugin
- grep
- 줄바꿈 문자
- tomcat
- import
- VirtualBox
- port
- Windows
- Quartz
- Eclipse
- resource
- bash
- Windows 10
- GIT
- netsh
- ssh
- maVen
- find
- xargs
- web.xml
- 단축키
- context
- Source
- 네트워크
- IntelliJ
- vscode
- lsof
- JavaScript
- profile
Archives
- Today
- Total
develog
[bash] shell script 실행시 실행하는 명령어 표시하기 본문
# set -x 라인 이후로 실행되는 명령어는 화면에 출력한다
set -x
# set +x 라인 이후로 실행되는 명령어는 화면에 출력하지 않는다
set +x
Comments