diff --git a/.bin/upload b/.bin/upload index c20dcda..f9fc52b 100755 --- a/.bin/upload +++ b/.bin/upload @@ -132,7 +132,8 @@ then then echo "Uploading $file as ${file}${_ext}" _ext="$_ext.tgz" - tar czf - "$file" | ssh $_sshhost "pv - > $_rpath/${file}${_ext}" + tar czf - "$file" \ + | ssh $_sshhost "pv - > $_rpath/${file}${_ext}" copy_and_print "${file}${_ext}" continue fi @@ -142,7 +143,8 @@ then then echo "Uploading $file as ${file}${_ext}" _ext="$_ext.gz" - cat "$file" gzip -o - "$file" | $_sshhost "pv - > $_rpath/${file}${_ext}" + cat "$file" gzip -o - "$file" \ + | $_sshhost "pv - > $_rpath/${file}${_ext}" copy_and_print "${file}${_ext}" continue fi