mirror of
https://github.com/dasrecht/deye-firmware.git
synced 2025-12-10 07:45:37 +02:00
9 lines
264 B
Bash
9 lines
264 B
Bash
# 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
|