mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
rsync: added global progress (#1756)
This commit is contained in:
commit
cc76febe22
1 changed files with 5 additions and 1 deletions
|
@ -23,6 +23,10 @@
|
|||
|
||||
`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}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue