Skip to content

Instantly share code, notes, and snippets.

@gerbier
gerbier / rsync_parallel.sh
Last active July 21, 2017 10:46 — forked from rcoup/rsync_parallel.sh
Parallel-ise an rsync transfer when you want multiple concurrent transfers happening,
#!/bin/bash
set -e
# Usage:
# rsync_parallel.sh [--parallel=N] [rsync args...]
#
# Options:
# --parallel=N Use N parallel processes for transfer. Defaults is the number of processors.
#
# Notes: