commit 15228ffb8fd1a9baad85a3c87e21b0f56c9b9e73 Author: kemi Date: Tue Jul 8 16:16:42 2025 +0000 rsync hinzugefügt diff --git a/rsync b/rsync new file mode 100644 index 0000000..4428146 --- /dev/null +++ b/rsync @@ -0,0 +1,16 @@ + + + +rsync -avzh --info=progress2 --no-inc-recursive /pfad/zu/meinen/daten/ /pfad/zum/ziel/ 2>&1 | tee rsync_log.txt + + + +# ziel ist zbps user@domain:folder/ + + + +--info=progress2 --no-inc-recursive +# zeigt den gesamtfortschritt # no inc ist wichtig das zuerst der geamte inhalt der zu kopeiren ist erfasst wird um den progress vernünftig darzustellen + +2>&1 | tee rsync_log.txt +# sorgt dafür das der gesamte verbose output + fehler in eine logdatei geschrieben wird