rsync 병렬화(Parallelise rsync)

https://unix.stackexchange.com/questions/189878/parallelise-rsync-using-gnu-parallel
  1. rsync –dry-run 으로 목록 텍스트로 저장
  2. parallel rsync 에 목록 텍스트를 넘겨서 병렬로 동기화

더 간단하게

  1. ls 결과를 parallel rsync 에 파이프로 넘겨줌
    1. ls -1 | parallel rsync -a {} /destination/directory/


Posted

in

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.