Using cp -n
man cp
-n, --no-clobber
do not overwrite an existing file (overrides a previous -i option)
cp -n test.txt test2.txt
Using rsync
# update files if differ
rsync -a -v <src_dir> <dst_dir>
# ignore existing file
rsync -a -v --ignore-existing <src_dir> <dst_dir>
'tools > linux' 카테고리의 다른 글
linux: Ubuntu Firewall Open Port Command See the firewall (0) | 2018.11.12 |
---|---|
linux command lecture (0) | 2018.10.12 |
crontab 기본 사용법 (0) | 2018.04.03 |
Mac os X : termianl에서 자동으로 zsh 열기 (0) | 2018.02.08 |
리눅스 파일 내용 검색하기 (0) | 2018.02.05 |