develog

[mac] tar backup with exclude 본문

카테고리 없음

[mac] tar backup with exclude

냐옴 2021. 5. 27. 09:30

 

tar cvf myProj_backup_$(date '+%Y%m%d').tar \
--exclude '.idea/' \
--exclude '*.iml' \
--exclude 'target/' \
--exclude 'build/' \
myProj/

 

Comments