#!/bin/bash
# This scripts backup the CellCount Program to another directory

# first remove all the backup files *.*~
rm -v *.*~
rm -v *~

# Now make a tar archieve
cd ..
tar zcvf CellCount_Current.tar.gz CellCount

# Now move the tar file to the backup directory
echo ""
echo "Moving the backup file to the Backup directory"
cp CellCount_Current.tar.gz CellCount.tar.gz
mv -v CellCount_Current.tar.gz Backups
