summaryrefslogtreecommitdiffstats
path: root/release/scripts/info.sh
blob: e25ceb73dbe98156e4f2e8eb39bcb2531ebe1fb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
#
# $ANA: info.sh,v 1.3 1996/06/04 16:25:30 wollman Exp $
# $FreeBSD$
#

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
OpenPOWER on IntegriCloud