RSync: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
Zeile 14: | Zeile 14: | ||
rsync --exclude /jonny/Downloads/ /home/jonny /tmp/jonny | rsync --exclude /jonny/Downloads/ /home/jonny /tmp/jonny | ||
# Alle Downloads-Ordner ausschließen: | # Alle Downloads-Ordner ausschließen: | ||
rsync --exclude | rsync --exclude Downloads/ . /tmp/jonny | ||
# und jetzt im aktuellen Verzeichnis: | # und jetzt im aktuellen Verzeichnis: | ||
rsync -e 'ssh -p 58122' --exclude /Downloads/ . /tmp/jonny | rsync -e 'ssh -p 58122' --exclude /Downloads/ . /tmp/jonny | ||
# auch geht: | |||
rsync -vau --exclude "wk/*/t1/" wk wk2 | |||
</pre> | </pre> |
Aktuelle Version vom 11. Dezember 2022, 17:43 Uhr
Optionen[Bearbeiten]
- --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 Downloads/ . /tmp/jonny # und jetzt im aktuellen Verzeichnis: rsync -e 'ssh -p 58122' --exclude /Downloads/ . /tmp/jonny # auch geht: rsync -vau --exclude "wk/*/t1/" wk wk2