From 3ec18ba97640ce94abb175495d409fc6b3e62fae Mon Sep 17 00:00:00 2001 From: Christian Zangl Date: Mon, 9 Jan 2023 22:38:39 +0100 Subject: [PATCH] publish 2.3.0 --- README.md | 23 ++++++++++++----------- setup.py | 2 +- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index fc78da9..5c85508 100644 --- a/README.md +++ b/README.md @@ -45,22 +45,23 @@ chkbit will Run `chkbit PATH` to verify only. ``` -usage: chkbit [-h] [-u] [--algo ALGO] [-f] [-i] [-w N] [-q] [-v] [PATH ...] +usage: chkbit.py [-h] [-u] [--algo ALGO] [-f] [-i] [-s] [-w N] [-q] [-v] [PATH ...] Checks the data integrity of your files. See https://github.com/laktak/chkbit-py positional arguments: - PATH directories to check + PATH directories to check -optional arguments: - -h, --help show this help message and exit - -u, --update update indices (without this chkbit will only verify files) - --algo ALGO hash algorithm: md5, sha512 - -f, --force force update of damaged items - -i, --verify-index verify files in the index only (will not report new files) - -w N, --workers N number of workers to use, default=5 - -q, --quiet quiet, don't show progress/information - -v, --verbose verbose output +options: + -h, --help show this help message and exit + -u, --update update indices (without this chkbit will only verify files) + --algo ALGO hash algorithm: md5, sha512 + -f, --force force update of damaged items + -i, --verify-index verify files in the index only (will not report new files) + -s, --skip-symlinks do not follow symlinks + -w N, --workers N number of workers to use, default=5 + -q, --quiet quiet, don't show progress/information + -v, --verbose verbose output Status codes: DMG: error, data damage detected diff --git a/setup.py b/setup.py index 3f66c99..4281b6f 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8" setup( name="chkbit", - version="2.2.0", + version="2.3.0", url="https://github.com/laktak/chkbit-py", author="Christian Zangl", author_email="laktak@cdak.net",