This commit is contained in:
Marc Beninca 2018-11-21 15:45:20 +01:00
parent b68b95d3f3
commit 6f53c3d3b2
5 changed files with 5 additions and 15 deletions

View file

@ -6,3 +6,4 @@ Storage
mdadm/index
parted/index
rsync/index

View file

@ -0,0 +1,6 @@
Rsync
=====
.. toctree::
snippets

View file

@ -0,0 +1,16 @@
Snippets
========
Simulate sync with deletion
---------------------------
.. code:: shell
rsync \
--archive \
--no-whole-file \
--progress \
--verbose \
--delete --dry-run
"/local/directory/" \
"user@host:/remote/directory/"