Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/znerol/python-dgst-concat
A python 3 script to collect and concatenate coreutils digest files
https://github.com/znerol/python-dgst-concat
Last synced: 25 days ago
JSON representation
A python 3 script to collect and concatenate coreutils digest files
- Host: GitHub
- URL: https://github.com/znerol/python-dgst-concat
- Owner: znerol
- License: unlicense
- Created: 2019-12-09T16:39:12.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-09T06:39:42.000Z (over 2 years ago)
- Last Synced: 2024-04-16T00:33:52.423Z (7 months ago)
- Language: Python
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Digest Concat
=============A collection of python 3 scripts to collect and concatenate coreutils digest
files.Usage
-----dgst-concat.py
==============```
usage: dgst-concat.py [-h] [-d] [-o OUTFILE] [-b | -t] PATTERN [PATTERN ...]Recursively concatenate coreutils digest files.
positional arguments:
PATTERN glob pattern for digest files. E.g., "**/*.md5"optional arguments:
-h, --help show this help message and exit
-d, --debug print a stacktrace when something goes wrong
-o OUTFILE, --outfile OUTFILE
output file, defaults to standard output
-b, --binary enforce binary tag (i.e., add a * in front of each entry)
-t, --text enforce text tag (i.e., clear any * in front of each entry)
```dgst-concat-dir.py
==================```
usage: dgst-concat-dir.py [-h] [-d] [-o OUTNAME] [-b | -t] PATTERN [PATTERN ...]Recursively walk a filesystem hierarchy and concatenate digest files into one file per directory.
positional arguments:
PATTERN glob pattern for digest files. E.g., "*.md5"optional arguments:
-h, --help show this help message and exit
-d, --debug print a stacktrace when something goes wrong
-o OUTNAME, --outname OUTNAME
output file name
-b, --binary enforce binary tag (i.e., add a * in front of each entry)
-t, --text enforce text tag (i.e., clear any * in front of each entry)
```License
-------Digest concat source code is in the [public-domain](LICENSE) and is free to everyone to use for any purpose.