summaryrefslogtreecommitdiffstats
path: root/release/info.sh
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-06-07 11:46:19 +0000
committerjkh <jkh@FreeBSD.org>1996-06-07 11:46:19 +0000
commit9eb8bcf5f7b43415b3930dd048f0b6d7e7ce1948 (patch)
treed86b932164515c7717a51a4f8f75255b4c7fd785 /release/info.sh
parent95fcc9d9857fdefb3425fccb40419a251cd73521 (diff)
downloadFreeBSD-src-9eb8bcf5f7b43415b3930dd048f0b6d7e7ce1948.zip
FreeBSD-src-9eb8bcf5f7b43415b3930dd048f0b6d7e7ce1948.tar.gz
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).
Diffstat (limited to 'release/info.sh')
-rw-r--r--release/info.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/release/info.sh b/release/info.sh
index 1f58732..b1c8c53 100644
--- a/release/info.sh
+++ b/release/info.sh
@@ -1,7 +1,8 @@
#!/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 } '
+# $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
OpenPOWER on IntegriCloud