diff options
Diffstat (limited to 'release/scripts/info.sh')
-rw-r--r-- | release/scripts/info.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/release/scripts/info.sh b/release/scripts/info.sh index 2923643..1f58732 100644 --- a/release/scripts/info.sh +++ b/release/scripts/info.sh @@ -1,2 +1,7 @@ #!/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 } ' +done |