RSync: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
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 | ||
</pre> | </pre> |
Version vom 11. Dezember 2022, 16:57 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 Downloads/ . /tmp/jonny # und jetzt im aktuellen Verzeichnis: rsync -e 'ssh -p 58122' --exclude /Downloads/ . /tmp/jonny