RSync: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „Kategorie:Tool = Optionen = * --delete-excluded auch ausgeschlossene Dateien auf dem Ziel löschen * -vv mehr Info * --progress * --exclude PATTERN ** Aus…“) |
|||
Zeile 9: | Zeile 9: | ||
* --exclude-from FILE | * --exclude-from FILE | ||
* -x keine Dateisystemgrenzen überschreiten | * -x keine Dateisystemgrenzen überschreiten | ||
* -e 'ssh -p PORT' Anderer Port als 22 | |||
<pre># Genau einen Ordner ausschließen: | <pre># Genau einen Ordner ausschließen: | ||
rsync --exclude /jonny/Downloads/ /home/jonny /tmp/jonny | rsync --exclude /jonny/Downloads/ /home/jonny /tmp/jonny | ||
Zeile 14: | Zeile 16: | ||
rsync --exclude /jonny/Downloads/ . /tmp/jonny | rsync --exclude /jonny/Downloads/ . /tmp/jonny | ||
# und jetzt im aktuellen Verzeichnis: | # und jetzt im aktuellen Verzeichnis: | ||
rsync --exclude /Downloads/ . /tmp/jonny | rsync -e 'ssh -p 58122' --exclude /Downloads/ . /tmp/jonny | ||
</pre> | </pre> |
Version vom 24. November 2022, 17:39 Uhr
Optionen
- --delete-excluded auch ausgeschlossene Dateien auf dem Ziel löschen
- -vv mehr Info
- --progress
- --exclude PATTERN
- Ausschlusspfade sind immer relativ zum Basisverzeichnis
- --exclude-from FILE
- -x keine Dateisystemgrenzen überschreiten
- -e 'ssh -p PORT' Anderer Port als 22
# Genau einen Ordner ausschließen: rsync --exclude /jonny/Downloads/ /home/jonny /tmp/jonny # Alle Downloads-Ordner ausschließen: rsync --exclude /jonny/Downloads/ . /tmp/jonny # und jetzt im aktuellen Verzeichnis: rsync -e 'ssh -p 58122' --exclude /Downloads/ . /tmp/jonny