#! /bin/sh

# split-zips -- from the original zip, produce several smaller

if test "$1" = "" ; then
	echo "usage: $0 files"
fi

for i
do
	#cmd="split -b 485888 $i $i. && rm -f $i"
	#cmd="split -b 200000 $i $i. && rm -f $i"
	# 280 * 512 = 143360
	cmd="split -b 143360 $i $i. && rm -f $i"
	echo $cmd
	eval "$cmd"
done

## 981227
