freebsd-dev/release/info.sh
Jordan K. Hubbard a590cd439e Various fixes, take power.uu out as it was causing overflows. We'll
need to fetch it dynamically rather than keep it in the source tree
(subject of a follow-up commit).
1996-06-07 11:46:19 +00:00

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