9 lines
133 B
Bash
Executable File
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
|