You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nuTensor/tools/update-checksums.sh

14 lines
323 B
Bash

10 years ago
#!/bin/bash
#
# This script assumes a linux environment
echo "*** µMatrix: generating checksums.txt file..."
10 years ago
truncate -s 0 assets/checksums.txt
LIST="$(find assets/umatrix assets/thirdparties -type f)"
10 years ago
for ENTRY in $LIST; do
echo `md5sum $ENTRY` >> assets/checksums.txt
done
echo "*** µMatrix: checksums updated."
10 years ago