mscripts/scripts/trsync
2017-02-26 13:13:55 +01:00

9 lines
133 B
Bash
Executable File

#!/bin/bash
if [ $# -eq 2 ]; then
tree -ha --du "$1"
time rsync -vazh --progress --partial "$@"
else
time rsync "$@"
fi