a590cd439e
need to fetch it dynamically rather than keep it in the source tree (subject of a follow-up commit).
9 lines
276 B
Bash
9 lines
276 B
Bash
#!/bin/sh
|
|
# $ANA: info.sh,v 1.3 1996/06/04 16:25:30 wollman Exp $
|
|
ls $1.[a-z][a-z] | wc | awk '{ print "Pieces = ",$1 }'
|
|
for FILE in $1.[a-z][a-z]; do
|
|
PIECE=`echo $FILE | cut -d . -f 2`
|
|
echo -n "cksum.$PIECE = "
|
|
cksum $FILE | awk ' { print $1,$2 } '
|
|
done
|