mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
7 lines
190 B
Bash
7 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
|