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
- Quartz
- GIT
- resource
- netsh
- Windows
- profile
- Eclipse
- tomcat
- plugin
- grep
- Source
- ssh
- web.xml
- import
- vscode
- VirtualBox
- IntelliJ
- lsof
- port
- 단축키
- xargs
- context
- maVen
- 네트워크
- Mac
- bash
- find
- Windows 10
- JavaScript
- 줄바꿈 문자
Archives
- Today
- Total
develog
[bash] diff 로 디렉토리 비교하기 본문
SRC_PATH=/source/path;
TGT_PATH=/target/path;
PROJ_DIR=project_directory;
diff -rq \
--exclude '.DS_Store' \
--exclude '.git' \
--exclude '.gitignore' \
--exclude '.idea' \
--exclude '*.iml' \
--exclude '.vscode' \
--exclude '.classpath' \
--exclude '.project' \
--exclude '.settings' \
--exclude '*.class' \
$SRC_PATH/$PROJ_DIR \
$TGT_PATH/$PROJ_DIR
Comments