93c6a31ace1b0fe575288f7ae13d68d64fde887a
technology/linux/general/index.md
| ... | ... | @@ -12,6 +12,7 @@ |
| 12 | 12 | - [mpv](mpv) |
| 13 | 13 | - [processes](processes) |
| 14 | 14 | - [python](python) |
| 15 | +- [rsync](rsync) |
|
| 15 | 16 | - [rtv](rtv) |
| 16 | 17 | - [sed](sed) |
| 17 | 18 | - [ssh](ssh) |
technology/linux/general/rsync.md
| ... | ... | @@ -0,0 +1,6 @@ |
| 1 | +# rsync |
|
| 2 | + |
|
| 3 | +### copy files over ssh using compression |
|
| 4 | +``` |
|
| 5 | +rsync -avz -e ssh --progress pyratebeard@remote_server:/path/to/file ./local/path |
|
| 6 | +``` |