OpenBSD manual page server

Manual Page Search Parameters

OPENRSYNC(1) General Commands Manual OPENRSYNC(1)

openrsyncsynchronise local and remote files

openrsync [-aDglnoprtvx] [-e program] [--del] [--numeric-ids] [--port=service] [--rsync-path=program] [--version] source ... directory

The openrsync utility synchronises files in the destination directory with one or more source files. Either the source or the destination directory may be remote, but not both. The arguments are as follows:

, --archive
Shorthand for -Dgloprt.
Also transfer device and special files. Shorthand for --devices --specials.
, --delete
Delete files in directory not found in source directories. Only applicable with -r.
Also transfer device files.
program, --rsh=program
Specify alternative communication program, defaults to ssh(1).
, --group
Set the group name to match the source. For example, group "kristaps" with ID 1000 on a remote server is matched to group "kristaps" on the local machine with ID 2000. If --numeric-ids is also given or if the remote group name is unknown on the local machine, set the numeric group ID to match the source instead.
, --links
Also transfer symbolic links. The link is transferred as a standalone file: if the destination does not exist, it will be broken.
, --dry-run
Do not actually modify the destination. Mainly useful in combination with -v.
Ignore user and group names, use numeric user and group IDs only. Has no effect unless -g or -o is also given.
, --owner
Set the user name to match the source, with similar matching logic as for -g. If --numeric-ids is also given or if the remote user name is unknown on the local machine, set the numeric user ID to match the source instead. Only works if run as root.
, --perms
Set destination file or directory permissions to match the source when it is updated.
=service
Specify an alternative TCP port number. The service can be given as a decimal integer or as a name to be looked up in the services(5) database. The default is “rsync”.
, --recursive
If source designates a directory, synchronise the directory and the entire subtree connected at that point. If source ends with a slash, only the subtree is synchronised, not the source directory itself. If source is a file, this has no effect.
=program
Run program on the remote host instead of the default rsync.
Also transfer fifo and unix domain socket files.
, --times
Set destination file and directory modification time to match the source when it is updated or created.
, --verbose
Increase verbosity. Specify once for files being transferred, twice for specific status, thrice for per-file transfer information, and four times for per-file breakdowns.
Do not cross filesystem boundaries. If this option is repeated, all mount point directories from the copy are omitted. Otherwise, it includes an empty directory at each mount point it encounters.
Print version and exit.

A remote source or directory has the syntax host:path for connecting via ssh(1), or rsync://host/path or host::path for connecting to a remote daemon. Subsequent to the first remote source, the host may be dropped to become just :path or ::path.

For connecting to a remote daemon with rsync://host or host::path, the first path component is interpreted as a "module": host::module/path. This only applies to the first source invocation; subsequent to that, the module should not be specified.

By default, new destination files and directories are given the current time and the source file permissions. Updated files retain their existing permissions. It is an error if updated files have their file types change (e.g., updating a directory with a file).

At this time, source may only consist of regular files, directories (only with -r), or symbolic links (only with -l). The destination directory must be a directory and is created if not found.

The openrsync utility exits 0 on success, 1 if an error occurs, or 2 if the remote protocol version is older than the local protocol version.

All examples use -t so that destination files inherit the source time. If not changed, subsequent invocations of openrsync will then consider the file up to date and not transfer block hashes.

To update the out-of-date remote files host:dest/bar and host:dest/baz with the local ../src/bar and ../src/baz:

% rsync -t ../src/bar ../src/baz host:dest

To update the out-of-date local files bar and baz with the remote files host:src/bar and host:src/baz:

% rsync -t host:src/bar :src/baz .

To update the out-of-date local files ../dest/bar and ../dest/baz with bar and baz:

% rsync -t bar baz ../dest

To update the out-of-date remote files in host:dest on a remote host running openrsync with the local host running openrsync:

% rsync --rsync-path=rsync -t ../dest/* host:dest

ssh(1), rsync(5), rsyncd(5)

openrsync is compatible with rsync protocol version 27 as supported by the samba.org implementation of rsync.

The openrsync utility has been available since OpenBSD 6.5.

The openrsync utility was written by Kristaps Dzonsons <kristaps@bsd.lv>.

April 4, 2019 OpenBSD-6.5