17 lines
357 B
Bash
Executable File
17 lines
357 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
if [ "$1" != "no-progress" ]; then
|
|
PROG=--progress
|
|
else
|
|
shift
|
|
fi
|
|
if [ ! -z "$*" ]; then
|
|
for i in "$@"; do
|
|
/usr/bin/rsync -av --inplace --progress --append-verify "/mnt/ssd/deluge/done/$i" "hrat:tmp/tmp/done/"
|
|
done
|
|
else
|
|
/usr/bin/rsync -av --inplace --append-verify $PROG /mnt/ssd/deluge/done hrat:tmp/tmp
|
|
fi
|
|
|
|
|