diff --git a/pages/common/rsync.md b/pages/common/rsync.md index 41414b450f..b86a4cecd5 100644 --- a/pages/common/rsync.md +++ b/pages/common/rsync.md @@ -19,6 +19,10 @@ `rsync -r {{remote_host_name}}:{{remote_directory_location}} {{local_directory_location}}` +- Transfer directory contents (but not the directory itself) from a remote to local: + +`rsync -r {{remote_host_name}}:{{remote_folder_location}}/ {{local_folder_location}}` + - Transfer only updated files from remote host: `rsync -ru {{remote_host_name}}:{{remote_directory_location}} {{local_directory_location}}`