From 752befb398758870e27bb4fe1d204a6dafb7aa55 Mon Sep 17 00:00:00 2001 From: nodiego Date: Mon, 5 Sep 2022 03:46:29 +0200 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'Tuto=20Rsync'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tuto-Rsync.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tuto-Rsync.md b/Tuto-Rsync.md index 8d85dbf..e53a236 100644 --- a/Tuto-Rsync.md +++ b/Tuto-Rsync.md @@ -4,11 +4,11 @@ Copie intégralement le fichier ou le répertoire source et son contenu vers destination: ``` -rsync --aADXv --info=progress2 --stats --delete /source /destination +rsync -aADXv --info=progress2 --stats --delete /source /destination ``` Copie seulement le contenu du répertoire source dans destination: ``` -rsync --aADXv --info=progress2 --stats --delete /source/ /destination +rsync -aADXv --info=progress2 --stats --delete /source/ /destination ``` ## Tableau des options