This commit is contained in:
Marc Beninca 2017-12-02 23:02:37 +01:00
parent 5dba54b9d5
commit 2c273a2626
100 changed files with 1534 additions and 0 deletions

7
source/rsync/index.rst Normal file
View file

@ -0,0 +1,7 @@
#####
Rsync
#####
.. toctree::
snippets

17
source/rsync/snippets.rst Normal file
View file

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