Following is a guide on how to save backups with the date and time.
Add the following to /opt/shutdown.sh
DATE=$(date +"%Y%m%d-%H:%M")
DATA=Data-$DATE.tgz
cp /mnt/sda1/tce/mydata.tgz /mnt/sda1/tce/$DATA
If not using sda1, change it to the correct partition.
This copies the backup file to another file with the date and time, in this format.
Data-20110520-15:31.tgz
You can change the format if you modify the commands.
If you have year, month, day, then time, in that order, it will keep the backup files in order.
Be aware, a new backup file is created every time you turn off the computer. At times you will need to delete some.
I have also put this in the wiki, but have included it here for those who may not read the wiki.