fixes in wording and adding the digest scripts

This commit is contained in:
Bastian Widmer
2023-04-02 10:44:45 +02:00
parent 159b63446e
commit 88b0179b64
3 changed files with 14 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
# loop over all *.bin.DIGEST files
for filename in *.bin.DIGEST; do
shasum -a 256 -c $filename
done

View File

@@ -0,0 +1,8 @@
# bash script that runs shasum on all *.bin files in this directory
# and creates a file called $filename.DIGEST
# loop over all *.bin files
for filename in *.bin; do
# create a file called $filename.DIGEST
shasum -a 256 $filename > $filename.DIGEST
done