- # Tranche 4: Greater than 100MiB
- rsync --min-size='100MiB' --max-size='8192PiB-1' "${rsync_opts[@]}" "$source" "$dest" &
+ # Tranche 8: 64MiB to 128MiB-1
+ rsync --min-size='64MiB' --max-size='128MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
+
+ # Tranche 9: 128MiB to 256MiB-1
+ rsync --min-size='128MiB' --max-size='256MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
+
+ # Tranche 10: 256MiB to 512MiB-1
+ rsync --min-size='256MiB' --max-size='512MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
+
+ # Tranche 11: 512MiB to 1024MiB-1
+ rsync --min-size='512MiB' --max-size='1024MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
+
+ # Tranche 12: Greater than 1024MiB
+ rsync --min-size='1024MiB' --max-size='8192PiB-1' "${rsync_opts[@]}" "$source" "$dest" &