Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
par7133 authored Nov 22, 2023
1 parent 5a6798e commit 2d00e3b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions checkmd5
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/sh

if [ "X$1" = "X" ]; then
echo "usage: checkmd5 [file] [md5 checksum]"
exit
fi

CHECKSUM="$2"
echo "$CHECKSUM $1" > /tmp/verify.md5
md5 -c /tmp/verify.md5

0 comments on commit 2d00e3b

Please sign in to comment.