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