mirror of
https://github.com/umutcamliyurt/Amnezichat.git
synced 2025-05-07 03:45:24 +01:00
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/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
|