Add computechecksums.sh

This commit is contained in:
2026-01-19 19:53:11 -05:00
parent 5569019e7d
commit 9b2f3f8222

9
computechecksums.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
FILE='$1'
touch ./checksums.txt
sha1sum $FILE >> ./checksums.txt
md1sum $FILE >> ./checksums.txt
md5sum $FILE >> ./checksums.txt
sha256sum $FILE >> ./checksums.txt