cleanup/hash.sh
2021-12-10 23:43:21 +01:00

4 lines
91 B
Bash
Executable file

#!/bin/sh
for f in $(ls ubuntu*.sh); do
sha256sum ${f} | cut -d' ' -f1 >${f}.sha256
done