서버 | OS/Linux - Shell Script
Faster bulk(directory) copy than cp, and watch progress
가을타는넘
2023. 8. 24. 22:32
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 - )