diff options
Diffstat (limited to 'scripts/rsync-generation')
-rwxr-xr-x | scripts/rsync-generation/mksnapshot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rsync-generation/mksnapshot.sh b/scripts/rsync-generation/mksnapshot.sh index 1feece5577..f932102daa 100755 --- a/scripts/rsync-generation/mksnapshot.sh +++ b/scripts/rsync-generation/mksnapshot.sh @@ -54,7 +54,7 @@ COMPRS=( # produce compressed variants, use as much cpu as left on the system, do # all in parallel for compr in "${COMPRS[@]}" ; do - read -a args <<< "${compr#*:}" + read -r -a args <<< "${compr#*:}" nice -n19 "${args[@]}" "${SNAME}" > "${SNAME}.${compr%%:*}" & done wait |