summaryrefslogtreecommitdiff
path: root/release/info.sh
diff options
context:
space:
mode:
Diffstat (limited to 'release/info.sh')
-rw-r--r--release/info.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/release/info.sh b/release/info.sh
new file mode 100644
index 0000000000000..b1c8c5356ccf2
--- /dev/null
+++ b/release/info.sh
@@ -0,0 +1,8 @@
+#!/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