initial commit

This commit is contained in:
ston1th 2021-12-10 23:13:42 +01:00
commit acde20fb92
8 changed files with 75 additions and 0 deletions

4
hash.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
for f in $(ls ubuntu*); do
sha256sum ${f} >${f}.sha256
done