Rsync (Linux): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
 
Zeile 9: Zeile 9:
<pre>
<pre>
rsync -ah --progress source destination
rsync -ah --progress source destination
</pre>
== Optionen ==
<pre>
-a, --archive              archive mode; equals -rlptgoD (no -H,-A,-X)
-h, --human-readable        output numbers in a human-readable format
-z, --compress              compress file data during the transfer
</pre>
</pre>



Aktuelle Version vom 30. Dezember 2022, 16:48 Uhr

Zwei Ordner unter Beibehaltung der Rechte usw. synchronisieren

rsync -az <source folder> <destination folder>

Datei mit Fortschrittsanzeige kopieren

rsync -ah --progress source destination

Optionen

-a, --archive               archive mode; equals -rlptgoD (no -H,-A,-X)
-h, --human-readable        output numbers in a human-readable format
-z, --compress              compress file data during the transfer

Links

https://wiki.ubuntuusers.de/rsync/


Zurück zu Befehlsreferenz (Linux)