mirror of
https://github.com/umutcamliyurt/Amnezichat.git
synced 2025-05-07 19:45:21 +01:00
9 lines
205 B
Bash
9 lines
205 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
|
||
|
# Run in arbitrary folder to create .sha256 files from .kat files
|
||
|
for filename in *.kat; do
|
||
|
sha256sum $filename | awk '{printf $1}' > $filename.sha256
|
||
|
done
|