1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 16:55:34 +02:00

rsync: fix --delete doc (#7379)

This commit is contained in:
Shadab Zafar 2021-11-07 17:57:01 +05:30 committed by GitHub
parent 78b19eebc3
commit 2860c80196
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@
`rsync -rauL {{remote_host}}:{{path/to/remote_file}} {{path/to/local_directory}}`
- Transfer file over SSH and delete local files that do not exist on remote host:
- Transfer file over SSH and delete remote files that do not exist locally:
`rsync -e ssh --delete {{remote_host}}:{{path/to/remote_file}} {{path/to/local_file}}`