# this is a backup script for the bx directory.
# it backs up all *.c and *.h files to its sibling directory backbx.

echo "copying all c files and include files to ../backbx and ~/thesis/backup"
cp *.c ../backbx
cp *.h ../backbx

cp *.c ~/thesis/backup
cp *.h ~/thesis/backup

echo "copying completed."
