8 lines
110 B
Bash
Executable File
8 lines
110 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -eq 2 ]; then
|
|
time rsync -vazh --progress --partial "$@"
|
|
else
|
|
time rsync "$@"
|
|
fi
|