LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

rsyncy

Status and progress bar for rsync

TLDR

Sync files with a visual progress bar
$ rsyncy -a [/source/] [/destination/]
copy
Remote sync with progress display
$ rsyncy -avz [remote:/path/] [/local/]
copy
Sync with delete and compression
$ rsyncy -avz --delete [/source/] [/destination/]
copy
Dry run to preview changes
$ rsyncy -avn [/source/] [/destination/]
copy

SYNOPSIS

rsyncy [rsync-options] source destination

DESCRIPTION

rsyncy wraps rsync to display a visual progress bar showing overall transfer progress, speed, elapsed time, and file counts. You run it with the same arguments as rsync and it adds the necessary --info flags automatically. Unlike rsync's built-in --progress flag which shows per-file progress, rsyncy shows overall progress across all files.

PARAMETERS

All standard rsync options are supported and passed through to rsync. rsyncy adds the necessary --info flags automatically for progress display.

HISTORY

rsyncy was created by Christian Zangl (laktak) and is written in Go.

SEE ALSO

rsync(1), progress(1), pv(1)

Copied to clipboard
Kai