From 25441c625106bbd0a900d9f03bacb035473ac362 Mon Sep 17 00:00:00 2001 From: Dylan Khor Date: Wed, 24 Oct 2018 14:58:54 -0400 Subject: [PATCH] rsync: modify one example with more useful flags (#2477) --- pages/common/rsync.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/rsync.md b/pages/common/rsync.md index 8d531d8f7..30f58f109 100644 --- a/pages/common/rsync.md +++ b/pages/common/rsync.md @@ -11,9 +11,9 @@ `rsync {{remote_host_name}}:{{remote_file_location}} {{local_file_location}}` -- Transfer file in archive (to preserve attributes) and compressed (zipped) mode: +- Transfer file in archive (to preserve attributes) and compressed (zipped) mode with verbose and human-readable progress: -`rsync -az {{path/to/file}} {{remote_host_name}}:{{remote_host_location}}` +`rsync -azvhP {{path/to/file}} {{remote_host_name}}:{{remote_host_location}}` - Transfer a directory and all its children from a remote to local: