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