added rsync global progress

coverage
Ondrej Brinkel 2017-12-05 19:37:48 +01:00 committed by GitHub
parent def44ed37f
commit 6b953f6a20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -23,6 +23,11 @@
`rsync -ru {{remote_host_name}}:{{remote_folder_location}} {{local_folder_location}}`
- Transfer file over SSH and show progress:
- Transfer file over SSH and show progress per file:
`rsync -e ssh --progress {{remote_host_name}}:{{remote_file}} {{local_file}}`
- Transfer file over SSH and show global progress:
`rsync -e ssh --info=progress2 {{remote_host_name}}:{{remote_file}} {{local_file}}`