Rsync (Linux): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
 
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt)
Zeile 4: Zeile 4:
rsync -az <source folder> <destination folder>
rsync -az <source folder> <destination folder>
</pre>
</pre>
== Datei mit Fortschrittsanzeige kopieren ==


<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, 15: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)