source→in

This commit is contained in:
Marc Beninca 2018-05-10 12:19:20 +02:00
parent 56de30bb57
commit 4097336b90
113 changed files with 0 additions and 0 deletions

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

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

17
in/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/"