#!/bin/sh
package=wwgetall-2.00
packagefile=${package}.tar.gz
oldpackagefile=${packagefile}.old
rm $oldpackagefile
mv $packagefile $oldpackagefile 
rm -r $package/
mkdir $package/
cp wwgetall.txt *.pl wwgetall wwget pack $package/
tar -zcvf $packagefile $package

