#!/bin/bash

. parse-args "$@"

set -x

rsync \
  --compress \
  --archive \
  --hard-links \
  --acls \
  --xattrs \
  --numeric-ids \
  --info=progress2 \
  "$FROM" \
  "$TO"



