develog

[bash] diff 로 디렉토리 비교하기 본문

카테고리 없음

[bash] diff 로 디렉토리 비교하기

냐옴 2024. 10. 10. 09:52

 

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