From b679c6c2e28621ca6810bcdd14ef7a5db0236a6b Mon Sep 17 00:00:00 2001 From: JJ Date: Fri, 21 Mar 2025 13:45:32 +0000 Subject: chess page --- content/snippets/rsync.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 content/snippets/rsync.md (limited to 'content/snippets') diff --git a/content/snippets/rsync.md b/content/snippets/rsync.md new file mode 100644 index 0000000..21e43fa --- /dev/null +++ b/content/snippets/rsync.md @@ -0,0 +1,13 @@ +--- +title: Basic rsync commands +description: Basic rsync commands +tags: ["rsync"] +--- + +I use these rscync commands regularly to sync local data and remote servers: + +```console +rsync -avz --progress /local/path /remote/path +``` + +`a` is archive mode, which keeps permissions, timestamps, symlinks etc, `v` means verbose and shows transfer progress in a human readable format, `z` compresses data during send and `---progress` shows files transer progress. -- cgit v1.2.3