cleanup/hash.sh
2021-12-10 23:13:42 +01:00

4 lines
72 B
Bash
Executable file

#!/bin/sh
for f in $(ls ubuntu*); do
sha256sum ${f} >${f}.sha256
done