\documentclass[10pt,a4paper]{article} % Packages \usepackage{fancyhdr} % For header and footer \usepackage{multicol} % Allows multicols in tables \usepackage{tabularx} % Intelligent column widths \usepackage{tabulary} % Used in header and footer \usepackage{hhline} % Border under tables \usepackage{graphicx} % For images \usepackage{xcolor} % For hex colours %\usepackage[utf8x]{inputenc} % For unicode character support \usepackage[T1]{fontenc} % Without this we get weird character replacements \usepackage{colortbl} % For coloured tables \usepackage{setspace} % For line height \usepackage{lastpage} % Needed for total page number \usepackage{seqsplit} % Splits long words. %\usepackage{opensans} % Can't make this work so far. Shame. Would be lovely. \usepackage[normalem]{ulem} % For underlining links % Most of the following are not required for the majority % of cheat sheets but are needed for some symbol support. \usepackage{amsmath} % Symbols \usepackage{MnSymbol} % Symbols \usepackage{wasysym} % Symbols %\usepackage[english,german,french,spanish,italian]{babel} % Languages % Document Info \author{Richard Holloway (richardjh)} \pdfinfo{ /Title (rsync.pdf) /Creator (Cheatography) /Author (Richard Holloway (richardjh)) /Subject (rsync Cheat Sheet) } % Lengths and widths \addtolength{\textwidth}{6cm} \addtolength{\textheight}{-1cm} \addtolength{\hoffset}{-3cm} \addtolength{\voffset}{-2cm} \setlength{\tabcolsep}{0.2cm} % Space between columns \setlength{\headsep}{-12pt} % Reduce space between header and content \setlength{\headheight}{85pt} % If less, LaTeX automatically increases it \renewcommand{\footrulewidth}{0pt} % Remove footer line \renewcommand{\headrulewidth}{0pt} % Remove header line \renewcommand{\seqinsert}{\ifmmode\allowbreak\else\-\fi} % Hyphens in seqsplit % This two commands together give roughly % the right line height in the tables \renewcommand{\arraystretch}{1.3} \onehalfspacing % Commands \newcommand{\SetRowColor}[1]{\noalign{\gdef\RowColorName{#1}}\rowcolor{\RowColorName}} % Shortcut for row colour \newcommand{\mymulticolumn}[3]{\multicolumn{#1}{>{\columncolor{\RowColorName}}#2}{#3}} % For coloured multi-cols \newcolumntype{x}[1]{>{\raggedright}p{#1}} % New column types for ragged-right paragraph columns \newcommand{\tn}{\tabularnewline} % Required as custom column type in use % Font and Colours \definecolor{HeadBackground}{HTML}{333333} \definecolor{FootBackground}{HTML}{666666} \definecolor{TextColor}{HTML}{333333} \definecolor{DarkBackground}{HTML}{1C33FF} \definecolor{LightBackground}{HTML}{F0F2FF} \renewcommand{\familydefault}{\sfdefault} \color{TextColor} % Header and Footer \pagestyle{fancy} \fancyhead{} % Set header to blank \fancyfoot{} % Set footer to blank \fancyhead[L]{ \noindent \begin{multicols}{3} \begin{tabulary}{5.8cm}{C} \SetRowColor{DarkBackground} \vspace{-7pt} {\parbox{\dimexpr\textwidth-2\fboxsep\relax}{\noindent \hspace*{-6pt}\includegraphics[width=5.8cm]{/web/www.cheatography.com/public/images/cheatography_logo.pdf}} } \end{tabulary} \columnbreak \begin{tabulary}{11cm}{L} \vspace{-2pt}\large{\bf{\textcolor{DarkBackground}{\textrm{rsync Cheat Sheet}}}} \\ \normalsize{by \textcolor{DarkBackground}{Richard Holloway (richardjh)} via \textcolor{DarkBackground}{\uline{cheatography.com/478/cs/329/}}} \end{tabulary} \end{multicols}} \fancyfoot[L]{ \footnotesize \noindent \begin{multicols}{3} \begin{tabulary}{5.8cm}{LL} \SetRowColor{FootBackground} \mymulticolumn{2}{p{5.377cm}}{\bf\textcolor{white}{Cheatographer}} \\ \vspace{-2pt}Richard Holloway (richardjh) \\ \uline{cheatography.com/richardjh} \\ \uline{\seqsplit{richardjh}.org} \end{tabulary} \vfill \columnbreak \begin{tabulary}{5.8cm}{L} \SetRowColor{FootBackground} \mymulticolumn{1}{p{5.377cm}}{\bf\textcolor{white}{Cheat Sheet}} \\ \vspace{-2pt}Published 27th March, 2012.\\ Updated 13th May, 2016.\\ Page {\thepage} of \pageref{LastPage}. \end{tabulary} \vfill \columnbreak \begin{tabulary}{5.8cm}{L} \SetRowColor{FootBackground} \mymulticolumn{1}{p{5.377cm}}{\bf\textcolor{white}{Sponsor}} \\ \SetRowColor{white} \vspace{-5pt} %\includegraphics[width=48px,height=48px]{dave.jpeg} Measure your website readability!\\ www.readability-score.com \end{tabulary} \end{multicols}} \begin{document} \raggedright \raggedcolumns % Set font size to small. Switch to any value % from this page to resize cheat sheet text: % www.emerson.emory.edu/services/latex/latex_169.html \footnotesize % Small font. \begin{multicols*}{3} \begin{tabularx}{5.377cm}{X} \SetRowColor{DarkBackground} \mymulticolumn{1}{x{5.377cm}}{\bf\textcolor{white}{rsync Usage}} \tn % Row 0 \SetRowColor{LightBackground} \mymulticolumn{1}{x{5.377cm}}{rsync {[}OPTION{]}... SRC {[}SRC{]}... DEST} \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} \mymulticolumn{1}{x{5.377cm}}{rsync {[}OPTION{]}... SRC {[}SRC{]}... {[}USER@{]}HOST:DEST} \tn % Row Count 2 (+ 1) % Row 2 \SetRowColor{LightBackground} \mymulticolumn{1}{x{5.377cm}}{rsync {[}OPTION{]}... SRC {[}SRC{]}... {[}USER@{]}HOST::DEST} \tn % Row Count 3 (+ 1) % Row 3 \SetRowColor{white} \mymulticolumn{1}{x{5.377cm}}{rsync {[}OPTION{]}... SRC {[}SRC{]}... rsync://{[}USER@{]}HOST{[}:PORT{]}/DEST} \tn % Row Count 5 (+ 2) % Row 4 \SetRowColor{LightBackground} \mymulticolumn{1}{x{5.377cm}}{rsync {[}OPTION{]}... {[}USER@{]}HOST:SRC {[}DEST{]}} \tn % Row Count 6 (+ 1) % Row 5 \SetRowColor{white} \mymulticolumn{1}{x{5.377cm}}{rsync {[}OPTION{]}... {[}USER@{]}HOST::SRC {[}DEST{]}} \tn % Row Count 7 (+ 1) % Row 6 \SetRowColor{LightBackground} \mymulticolumn{1}{x{5.377cm}}{rsync {[}OPTION{]}... rsync://{[}USER@{]}HOST{[}:PORT{]}/SRC {[}DEST{]}} \tn % Row Count 9 (+ 2) \hhline{>{\arrayrulecolor{DarkBackground}}-} \SetRowColor{LightBackground} \mymulticolumn{1}{x{5.377cm}}{The ':' usages connect via remote shell, while '::' \& 'rsync://' usages connect to an rsync daemon, and require SRC or DEST to start with a module name.} \tn \hhline{>{\arrayrulecolor{DarkBackground}}-} \end{tabularx} \par\addvspace{1.3em} \columnbreak \begin{tabularx}{5.377cm}{x{1.64241 cm} x{3.33459 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{rsync Options}} \tn % Row 0 \SetRowColor{LightBackground} -{}-verbose, -v & increase verbosity \tn % Row Count 1 (+ 1) % Row 1 \SetRowColor{white} -{}-quiet, -q & suppress non-error messages \tn % Row Count 3 (+ 2) % Row 2 \SetRowColor{LightBackground} -{}-no-motd & suppress daemon-mode MOTD (see manpage caveat) \tn % Row Count 5 (+ 2) % Row 3 \SetRowColor{white} -{}-checksum, -c & skip based on checksum, not mod-time \& size \tn % Row Count 7 (+ 2) % Row 4 \SetRowColor{LightBackground} -{}-archive, -a & archive mode; equals -rlptgoD (no -H,-A,-X) \tn % Row Count 9 (+ 2) % Row 5 \SetRowColor{white} -{}-no-OPTION & turn off an implied OPTION (e.g. -{}-no-D) \tn % Row Count 11 (+ 2) % Row 6 \SetRowColor{LightBackground} -{}-recursive, -r & recurse into directories \tn % Row Count 13 (+ 2) % Row 7 \SetRowColor{white} -{}-relative, -R & use relative path names \tn % Row Count 15 (+ 2) % Row 8 \SetRowColor{LightBackground} -{}-no-implied-dirs & don't send implied dirs with -{}-relative \tn % Row Count 17 (+ 2) % Row 9 \SetRowColor{white} -{}-backup, -b & make backups (see -{}-suffix \& -{}-backup-dir) \tn % Row Count 19 (+ 2) % Row 10 \SetRowColor{LightBackground} -{}-backup-dir=DIR & make backups into hierarchy based in DIR \tn % Row Count 21 (+ 2) % Row 11 \SetRowColor{white} -{}-suffix=SUFFIX & set backup suffix (default \textasciitilde{} w/o -{}-backup-dir) \tn % Row Count 23 (+ 2) % Row 12 \SetRowColor{LightBackground} -{}-update, -u & skip files that are newer on the receiver \tn % Row Count 25 (+ 2) % Row 13 \SetRowColor{white} -{}-inplace & update destination files in-place (SEE MAN PAGE \tn % Row Count 27 (+ 2) % Row 14 \SetRowColor{LightBackground} -{}-append & append data onto shorter files \tn % Row Count 29 (+ 2) % Row 15 \SetRowColor{white} -{}-append-verify & like -{}-append, but with old data in file checksum \tn % Row Count 31 (+ 2) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{5.377cm}{x{1.64241 cm} x{3.33459 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{rsync Options (cont)}} \tn % Row 16 \SetRowColor{LightBackground} -{}-dirs, -d & transfer directories without recursing \tn % Row Count 2 (+ 2) % Row 17 \SetRowColor{white} -{}-links, -l & copy symlinks as symlinks \tn % Row Count 3 (+ 1) % Row 18 \SetRowColor{LightBackground} -{}-copy-links, -L & transform symlink into referent file/dir \tn % Row Count 5 (+ 2) % Row 19 \SetRowColor{white} -{}-copy-unsafe-links & only "unsafe" symlinks are transformed \tn % Row Count 7 (+ 2) % Row 20 \SetRowColor{LightBackground} -{}-safe-links & ignore symlinks that point outside the source tree \tn % Row Count 9 (+ 2) % Row 21 \SetRowColor{white} -{}-copy-dirlinks, -k & transform symlink to a dir into referent dir \tn % Row Count 11 (+ 2) % Row 22 \SetRowColor{LightBackground} -{}-keep-dirlinks, -K & treat symlinked dir on receiver as dir \tn % Row Count 13 (+ 2) % Row 23 \SetRowColor{white} -{}-hard-links, -H & preserve hard links \tn % Row Count 15 (+ 2) % Row 24 \SetRowColor{LightBackground} -{}-perms, -p & preserve permissions \tn % Row Count 16 (+ 1) % Row 25 \SetRowColor{white} -{}-executability, -E & preserve the file's executability \tn % Row Count 18 (+ 2) % Row 26 \SetRowColor{LightBackground} -{}-chmod=CHMOD & affect file and/or directory permissions \tn % Row Count 20 (+ 2) % Row 27 \SetRowColor{white} -{}-acls, -A & preserve ACLs (implies -{}-perms) \tn % Row Count 22 (+ 2) % Row 28 \SetRowColor{LightBackground} -{}-xattrs, -X & preserve extended attributes \tn % Row Count 24 (+ 2) % Row 29 \SetRowColor{white} -{}-owner, -o & preserve owner (super-user only) \tn % Row Count 26 (+ 2) % Row 30 \SetRowColor{LightBackground} -{}-group, -g & preserve group \tn % Row Count 27 (+ 1) % Row 31 \SetRowColor{white} -{}-devices & preserve device files (super-user only) \tn % Row Count 29 (+ 2) % Row 32 \SetRowColor{LightBackground} -{}-specials & preserve special files \tn % Row Count 30 (+ 1) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{5.377cm}{x{1.64241 cm} x{3.33459 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{rsync Options (cont)}} \tn % Row 33 \SetRowColor{LightBackground} -D & same as -{}-devices -{}-special \tn % Row Count 2 (+ 2) % Row 34 \SetRowColor{white} -{}-times, -t & preserve modification times \tn % Row Count 4 (+ 2) % Row 35 \SetRowColor{LightBackground} -{}-omit-dir-times, -O & omit directories from -{}-times \tn % Row Count 6 (+ 2) % Row 36 \SetRowColor{white} -{}-super & receiver attempts super-user activities \tn % Row Count 8 (+ 2) % Row 37 \SetRowColor{LightBackground} -{}-fake-super & store/recover privileged attrs using xattrs \tn % Row Count 10 (+ 2) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{1.74195 cm} x{3.23505 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{rsync Options contd.}} \tn % Row 0 \SetRowColor{LightBackground} -{}-sparse, -S & handle sparse files efficiently \tn % Row Count 2 (+ 2) % Row 1 \SetRowColor{white} -{}-dry-run, -n & perform a trial run with no changes made \tn % Row Count 4 (+ 2) % Row 2 \SetRowColor{LightBackground} -{}-whole-file, -W & copy files whole (without delta-xfer algorithm) \tn % Row Count 6 (+ 2) % Row 3 \SetRowColor{white} -{}-one-file-system, -x & don't cross filesystem boundaries \tn % Row Count 8 (+ 2) % Row 4 \SetRowColor{LightBackground} -{}-block-size=SIZE & force a fixed checksum block-size \tn % Row Count 10 (+ 2) % Row 5 \SetRowColor{white} -{}-rsh=COMMAND, -e & specify the remote shell to use \tn % Row Count 12 (+ 2) % Row 6 \SetRowColor{LightBackground} -{}-rsync-path=PROGRAM & specify the rsync to run on the remote machine \tn % Row Count 14 (+ 2) % Row 7 \SetRowColor{white} -{}-existing & skip creating new files on receiver \tn % Row Count 16 (+ 2) % Row 8 \SetRowColor{LightBackground} -{}-ignore-existing & skip updating files that already exist on receiver \tn % Row Count 18 (+ 2) % Row 9 \SetRowColor{white} -{}-remove-source-files & sender removes synchronized files (non-dirs) \tn % Row Count 20 (+ 2) % Row 10 \SetRowColor{LightBackground} -{}-del & an alias for -{}-delete-during \tn % Row Count 22 (+ 2) % Row 11 \SetRowColor{white} -{}-delete & delete extraneous files from destination dirs \tn % Row Count 24 (+ 2) % Row 12 \SetRowColor{LightBackground} -{}-delete-before & receiver deletes before transfer, not during \tn % Row Count 26 (+ 2) % Row 13 \SetRowColor{white} -{}-delete-during & receiver deletes during transfer (default) \tn % Row Count 28 (+ 2) % Row 14 \SetRowColor{LightBackground} -{}-delete-delay & find deletions during, delete after \tn % Row Count 30 (+ 2) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{5.377cm}{x{1.74195 cm} x{3.23505 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{rsync Options contd. (cont)}} \tn % Row 15 \SetRowColor{LightBackground} -{}-delete-after & receiver deletes after transfer, not during \tn % Row Count 2 (+ 2) % Row 16 \SetRowColor{white} -{}-delete-excluded & also delete excluded files from destination dirs \tn % Row Count 4 (+ 2) % Row 17 \SetRowColor{LightBackground} -{}-ignore-errors & delete even if there are I/O errors \tn % Row Count 6 (+ 2) % Row 18 \SetRowColor{white} -{}-force & force deletion of directories even if not empty \tn % Row Count 8 (+ 2) % Row 19 \SetRowColor{LightBackground} -{}-max-delete=NUM & don't delete more than NUM files \tn % Row Count 10 (+ 2) % Row 20 \SetRowColor{white} -{}-max-size=SIZE & don't transfer any file larger than SIZE \tn % Row Count 12 (+ 2) % Row 21 \SetRowColor{LightBackground} -{}-min-size=SIZE & don't transfer any file smaller than SIZE \tn % Row Count 14 (+ 2) % Row 22 \SetRowColor{white} -{}-partial & keep partially transferred files \tn % Row Count 16 (+ 2) % Row 23 \SetRowColor{LightBackground} -{}-partial-dir=DIR & put a partially transferred file into DIR \tn % Row Count 18 (+ 2) % Row 24 \SetRowColor{white} -{}-delay-updates & put all updated files into place at transfer's end \tn % Row Count 20 (+ 2) % Row 25 \SetRowColor{LightBackground} -{}-prune-empty-dirs, -m & prune empty directory chains from the file-list \tn % Row Count 22 (+ 2) % Row 26 \SetRowColor{white} -{}-numeric-ids & don't map uid/gid values by user/group name \tn % Row Count 24 (+ 2) % Row 27 \SetRowColor{LightBackground} -{}-timeout=SECONDS & set I/O timeout in seconds \tn % Row Count 26 (+ 2) % Row 28 \SetRowColor{white} -{}-contimeout & set daemon connection timeout in seconds \tn % Row Count 28 (+ 2) % Row 29 \SetRowColor{LightBackground} -{}-ignore-times, -I & don't skip files that match in size and mod-time \tn % Row Count 30 (+ 2) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{5.377cm}{x{1.74195 cm} x{3.23505 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{rsync Options contd. (cont)}} \tn % Row 30 \SetRowColor{LightBackground} -{}-size-only & skip files that match in size \tn % Row Count 2 (+ 2) % Row 31 \SetRowColor{white} -{}-modify-window=NUM & compare mod-times with reduced accuracy \tn % Row Count 4 (+ 2) % Row 32 \SetRowColor{LightBackground} -{}-temp-dir, -T & create temporary files in directory DIR \tn % Row Count 6 (+ 2) % Row 33 \SetRowColor{white} -{}-fuzzy, -y & find similar file for basis if no dest file \tn % Row Count 8 (+ 2) % Row 34 \SetRowColor{LightBackground} -{}-compare-dest=DIR & also compare destination files relative to DIR \tn % Row Count 10 (+ 2) % Row 35 \SetRowColor{white} -{}-copy-dest=DIR & ... and include copies of unchanged files \tn % Row Count 12 (+ 2) % Row 36 \SetRowColor{LightBackground} -{}-link-dest=DIR & hardlink to files in DIR when unchanged \tn % Row Count 14 (+ 2) % Row 37 \SetRowColor{white} -{}-compress, -z & compress file data during the transfer \tn % Row Count 16 (+ 2) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{5.377cm}{x{1.84149 cm} x{3.13551 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{rsync Options cont'd.}} \tn % Row 0 \SetRowColor{LightBackground} -{}-compress-level=NUM & explicitly set compression level \tn % Row Count 2 (+ 2) % Row 1 \SetRowColor{white} -{}-skip-compress=LIST & skip compressing files with a suffix in LIST \tn % Row Count 4 (+ 2) % Row 2 \SetRowColor{LightBackground} -{}-cvs-exclude, -C & auto-ignore files the same way CVS does \tn % Row Count 6 (+ 2) % Row 3 \SetRowColor{white} -{}-filter=RULE, -f & add a file-filtering RULE \tn % Row Count 8 (+ 2) % Row 4 \SetRowColor{LightBackground} -F & same as -{}-filter='dir-merge /.rsync-filter' \tn % Row Count 10 (+ 2) % Row 5 \SetRowColor{white} & repeated: -{}-filter='- .rsync-filter' \tn % Row Count 12 (+ 2) % Row 6 \SetRowColor{LightBackground} -{}-exclude=PATTERN & exclude files matching PATTERN \tn % Row Count 14 (+ 2) % Row 7 \SetRowColor{white} -{}-exclude-from=FILE & read exclude patterns from FILE \tn % Row Count 16 (+ 2) % Row 8 \SetRowColor{LightBackground} -{}-include=PATTERN & don't exclude files matching PATTERN \tn % Row Count 18 (+ 2) % Row 9 \SetRowColor{white} -{}-include-from=FILE & read include patterns from FILE \tn % Row Count 20 (+ 2) % Row 10 \SetRowColor{LightBackground} -{}-files-from=FILE & read list of source-file names from FILE \tn % Row Count 22 (+ 2) % Row 11 \SetRowColor{white} -{}-from0, -0 & all *-from/filter files are delimited by 0s \tn % Row Count 24 (+ 2) % Row 12 \SetRowColor{LightBackground} -{}-protect-args, -s & no space-splitting; only wildcard special-chars \tn % Row Count 26 (+ 2) % Row 13 \SetRowColor{white} -{}-address=ADDRESS & bind address for outgoing socket to daemon \tn % Row Count 28 (+ 2) % Row 14 \SetRowColor{LightBackground} -{}-port=PORT & specify double-colon alternate port number \tn % Row Count 30 (+ 2) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{5.377cm}{x{1.84149 cm} x{3.13551 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{rsync Options cont'd. (cont)}} \tn % Row 15 \SetRowColor{LightBackground} -{}-sockopts=OPTIONS & specify custom TCP options \tn % Row Count 2 (+ 2) % Row 16 \SetRowColor{white} -{}-blocking-io & use blocking I/O for the remote shell \tn % Row Count 4 (+ 2) % Row 17 \SetRowColor{LightBackground} -{}-stats & give some file-transfer stats \tn % Row Count 6 (+ 2) % Row 18 \SetRowColor{white} -{}-8-bit-output, -8 & leave high-bit chars unescaped in output \tn % Row Count 8 (+ 2) % Row 19 \SetRowColor{LightBackground} -{}-human-readble, -h & output numbers in a human-readable format \tn % Row Count 10 (+ 2) % Row 20 \SetRowColor{white} -{}-progress & show progress during transfer \tn % Row Count 12 (+ 2) % Row 21 \SetRowColor{LightBackground} -P & same as -{}-partial -{}-progress \tn % Row Count 14 (+ 2) % Row 22 \SetRowColor{white} -{}-itemize-changes, -i & output a change-summary for all updates \tn % Row Count 16 (+ 2) % Row 23 \SetRowColor{LightBackground} -{}-out-format=FORMAT & output a change-summary for all updates \tn % Row Count 18 (+ 2) % Row 24 \SetRowColor{white} -{}-log-file=FILE & log what we're doing to the specified FILE \tn % Row Count 20 (+ 2) % Row 25 \SetRowColor{LightBackground} -{}-log-file-format=FMT & log updates using the specified FMT \tn % Row Count 22 (+ 2) % Row 26 \SetRowColor{white} -{}-password-file=FILE & read daemon-access password from FILE \tn % Row Count 24 (+ 2) % Row 27 \SetRowColor{LightBackground} -{}-list-only & list the files instead of copying them \tn % Row Count 26 (+ 2) % Row 28 \SetRowColor{white} -{}-bwlimit=KBPS & limit I/O bandwidth; KBytes per second \tn % Row Count 28 (+ 2) % Row 29 \SetRowColor{LightBackground} -{}-write-batch=FILE & write a batched update to FILE \tn % Row Count 30 (+ 2) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{5.377cm}{x{1.84149 cm} x{3.13551 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{5.377cm}}{\bf\textcolor{white}{rsync Options cont'd. (cont)}} \tn % Row 30 \SetRowColor{LightBackground} -{}-only-write-batch=FILE & like -{}-write-batch but w/o updating destination \tn % Row Count 2 (+ 2) % Row 31 \SetRowColor{white} -{}-read-batch=FILE & read a batched update from FILE \tn % Row Count 4 (+ 2) % Row 32 \SetRowColor{LightBackground} -{}-protocol=NUM & force an older protocol version to be used \tn % Row Count 6 (+ 2) % Row 33 \SetRowColor{white} -{}-iconv=CONVERT\_SPEC & request charset conversion of filenames \tn % Row Count 8 (+ 2) % Row 34 \SetRowColor{LightBackground} -{}-ipv4, -4 & prefer IPv4 \tn % Row Count 9 (+ 1) % Row 35 \SetRowColor{white} -{}-ipv6, -6 & prefer IPv6 \tn % Row Count 10 (+ 1) % Row 36 \SetRowColor{LightBackground} -{}-version & print version number \tn % Row Count 11 (+ 1) % Row 37 \SetRowColor{white} -{}-help, -h & show this help ( -h works with no other options ) \tn % Row Count 13 (+ 2) \hhline{>{\arrayrulecolor{DarkBackground}}--} \SetRowColor{LightBackground} \mymulticolumn{2}{x{5.377cm}}{Please see the rsync(1) and rsyncd.conf(5) man pages for full documentation. \newline See http://rsync.samba.org/ for updates, bug reports, and answers} \tn \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} % That's all folks \end{multicols*} \end{document}