grimoire

personal wiki
git clone git://git.pyratebeard.net/grimoire.git
Log | Files | Refs

commit 93c6a31ace1b0fe575288f7ae13d68d64fde887a
parent cef285354ccdbefad3a923978f9c335c99e2095b
Author: pyratebeard <root@pyratebeard.net>
Date:   Tue, 19 Feb 2019 11:29:29 +0000

rsync page and link

Diffstat:
Mtechnology/linux/general/index.md | 1+
Atechnology/linux/general/rsync.md | 6++++++
2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/technology/linux/general/index.md b/technology/linux/general/index.md @@ -12,6 +12,7 @@ - [mpv](mpv) - [processes](processes) - [python](python) +- [rsync](rsync) - [rtv](rtv) - [sed](sed) - [ssh](ssh) diff --git a/technology/linux/general/rsync.md b/technology/linux/general/rsync.md @@ -0,0 +1,6 @@ +# rsync + +### copy files over ssh using compression +``` +rsync -avz -e ssh --progress pyratebeard@remote_server:/path/to/file ./local/path +```