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