OS

Linux. 파일 복사시에 progress 보이기

out of coding 2020. 6. 28. 01:53

그래픽 위주가 아닌 Linux는 파일 복사시에 progress가 보이지 않습니다.

이것을 대체하는 방법입니다.

 

$ rsync -ah --progress source destination

혹은 alias로 기존의 cp를 대체도 가능합니다.

$ alias cp="rsync -ah --progress"