8
crc32sum - Calculate CRC32 for each file (Bash using 7z) - bugfix
(gist.github.com)
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
I was actually looking for something like this a few days ago. This is pretty useful as there's no crc32sum readily available on linux. Thanks for that!
I would personally change a few things, mostly small nitpicks to be fair.
[[ ]]
over[ ]
for tests. Source: https://www.shellcheck.net/wiki/SC2292$0
instead of hardcodingcrc32sum
in the help messages. That way it will work even if someone names the script differentlyexit 0
after the help and end theif
there instead of having the whole work being done in anelse
.As I said, nitpicks!
Also, I like that your example uses
*.smc
, that's also the reason I needed a crc32sum 🤣Agreed on your points and usually I do 2. (name) and 3. (exit instead else) sometimes. For the
[[
over[
, it usually matters only for word splitting and globbing behavior, if you do not enclose the variables between quotes I believe. But looking into the shellcheck entry, looks like there is no disadvantage. I may start doing this by default in the future too.So thanks for the suggestions, I will update the script in a minute.
Edit: I always forget that Beehaw will break if I use the "lower than" character like in
, so I replaced it in the post with
cat %%EOF
which requires to change that line. And the example usage is gone for the moment.Edit2 (21 hours later): I totally forgot to remove the indentation and else-branch. While doing so I also added a special option
-h
, in case someone tries that. Not a big deal, but thought this should be.