You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cdr-exporter/cdr-md5.sh

10 lines
260 B

#!/bin/sh
error() { echo $@; exit 1; }
test -n "$1" || error "Usage: $0 <cdr-file>"
test -f "$1" || error "File '$1' not found"
TMPFILE="/tmp/$(basename "$1")"
MD5="$(tail -1 "$1") $TMPFILE"
sed '$d' < "$1" > $TMPFILE
echo "$MD5" | md5sum -c -
rm -f $TMPFILE