From 8a405c6ca15248347b8683184bc7e61f725ed027 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Mon, 25 Feb 2002 20:07:11 +0000 Subject: [PATCH] Try out DocBook SGML to see if it's easier than Texinfo. --- doc/rsync.sgml | 116 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 doc/rsync.sgml diff --git a/doc/rsync.sgml b/doc/rsync.sgml new file mode 100644 index 00000000..48f34144 --- /dev/null +++ b/doc/rsync.sgml @@ -0,0 +1,116 @@ + + + + rsync + + 1996 -- 2002 + Martin Pool + Andrew Tridgell + + + Martin + Pool + + + + + Introduction + + rsync is a flexible program for efficiently copying files or + directory trees. + + rsync has many options to select which files will be copied + and how they are to be transferred. It may be used as an + alternative to ftp, http, scp or rcp. + + The rsync remote-update protocol allows rsync to transfer just + the differences between two sets of files across the network link, + using an efficient checksum-search algorithm described in the + technical report that accompanies this package. + + Some of the additional features of rsync are: + + + + + support for copying links, devices, owners, groups and + permissions + + + + + + exclude and exclude-from options similar to GNU tar + + + + + + a CVS exclude mode for ignoring the same files that CVS would ignore + + + + + can use any transparent remote shell, including rsh or ssh + + + + + does not require root privileges + + + + + pipelining of file transfers to minimize latency costs + + + + + support for anonymous or authenticated rsync servers (ideal for + mirroring) + + + + + + + + + Using rsync +
+ + Introductory example + + + + Probably the most common case of rsync usage is to copy files + to or from a remote machine using + ssh as a network transport. In + this situation rsync is a good alternative to + scp. + + + + The most commonly used arguments for rsync are + + + +
+
+
\ No newline at end of file -- 2.34.1