mirror of
https://github.com/dasrecht/deye-firmware.git
synced 2025-12-10 07:45:37 +02:00
6 lines
105 B
Bash
6 lines
105 B
Bash
# loop over all *.bin.DIGEST files
|
|
|
|
for filename in *.bin.DIGEST; do
|
|
shasum -a 256 -c $filename
|
|
done
|