본문 바로가기

서버 | OS/Linux - Shell Script

Faster bulk(directory) copy than cp, and watch progress

tar cf - . | ( cd /target-dir/ ; tar xf - )

 

yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

yum install --disablerepo="*" --enablerepo="epel" pv

tar cf - . | pv | ( cd /target-dir/ ; tar xf - )