diff options
author | B. Watson <yalhcru@gmail.com> | 2020-05-09 13:25:12 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-05-10 08:37:01 +0700 |
commit | 3f1a0907d814d3b8780b1ab8fc374a64ba4b9c78 (patch) | |
tree | 4d9779f5eafa499204421799306708d8bfa288c5 /system/crc32_simple/crc32_simple.rst | |
parent | b94b29ab1bdf8925f05670137d3c2269b82e6c2b (diff) |
system/crc32_simple: Added (calculate crc32 checksum of files)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/crc32_simple/crc32_simple.rst')
-rw-r--r-- | system/crc32_simple/crc32_simple.rst | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/system/crc32_simple/crc32_simple.rst b/system/crc32_simple/crc32_simple.rst new file mode 100644 index 000000000000..d8842c4e2936 --- /dev/null +++ b/system/crc32_simple/crc32_simple.rst @@ -0,0 +1,44 @@ +.. RST source for crc32_simple(1) man page. Convert with: +.. rst2man.py crc32_simple.rst > crc32_simple.1 +.. rst2man.py comes from the SBo development/docutils package. + +.. |version| replace:: 20120911 +.. |date| date:: + +.. converting from pod: +.. s/B<\([^>]*\)>/**\1**/g +.. s/I<\([^>]*\)>/*\1*/g + +============ +crc32_simple +============ + +--------------------------------- +calculate standard crc32 checksum +--------------------------------- + +:Manual section: 1 +:Manual group: SlackBuilds.org +:Date: |date| +:Version: |version| + +SYNOPSIS +======== + +crc32_simple [filenames] + +DESCRIPTION +=========== + +Simple public domain implementation of the standard CRC32 checksum. +Outputs the checksum for each file given as a command line argument. +Invalid file names and files that cause errors are silently skipped. +The program reads from stdin if it is called with no arguments. + +AUTHORS +======= + +crc32_simple was written by Björn Samuelsson. + +This man page written for the SlackBuilds.org project +by B. Watson, and is licensed under the WTFPL. |