mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 14:56:13 +01:00
8 lines
190 B
Bash
8 lines
190 B
Bash
#!/bin/sh
|
|
ls $1.* | wc | awk '{ print "Pieces = ",$1 }'
|
|
for FILE in $1.*; do \
|
|
PIECE=`echo $FILE | cut -d . -f 2` ; \
|
|
echo -n "cksum.$PIECE = "; \
|
|
cksum $FILE | awk ' { print $1,$2 } '
|
|
done
|