Rsync: Difference between revisions

From wikinotes
Tag: Replaced
 
No edit summary
Line 2: Line 2:


= Install =
= Install =
= Usage =
<blockquote>
<syntaxhighlight lang="bash">
# backup to filesystem when permissions forced
rsync -avz --no-perms --no-owner --no-group --progress /src /dst
</syntaxhighlight>
</blockquote><!-- Usage -->

Revision as of 00:27, 15 November 2021

rsync is a very flexible copy tool.

Install

Usage

# backup to filesystem when permissions forced
rsync -avz --no-perms --no-owner --no-group --progress /src /dst