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