From c732f759445e335fe36586859b6fde7e27bb8901 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 8 Feb 2022 14:43:14 -0800 Subject: [PATCH] doc update --- jc/parsers/rsync.py | 6 +++++- jc/parsers/rsync_s.py | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/jc/parsers/rsync.py b/jc/parsers/rsync.py index 2ab0ea57..30d506c0 100644 --- a/jc/parsers/rsync.py +++ b/jc/parsers/rsync.py @@ -4,7 +4,7 @@ Supports the `-i` or `--itemize-changes` options with all levels of verbosity. Will also process the rsync log file generated with the `--log-file` -option. +option and the `-i` or `--itemize-changes` options. Usage (cli): @@ -14,6 +14,10 @@ Usage (cli): $ jc rsync -i -a source/ dest + or + + $ cat rsync-backup.log | jc --rsync + Usage (module): import jc diff --git a/jc/parsers/rsync_s.py b/jc/parsers/rsync_s.py index d6b697ff..e2bdc885 100644 --- a/jc/parsers/rsync_s.py +++ b/jc/parsers/rsync_s.py @@ -6,12 +6,16 @@ Supports the `-i` or `--itemize-changes` options with all levels of verbosity. Will also process the rsync log file generated with the `--log-file` -option. +option and the `-i` or `--itemize-changes` options. Usage (cli): $ rsync -i -a source/ dest | jc --rsync-s + or + + $ cat rsync-backup.log | jc --rsync-s + Usage (module): import jc