Create a zip file and append the date on the filename in linux
Filed Under (Others) by admin on 29-12-2011
When we backup we want to add a date on the filename to know when the file was created
Try this line
tar -zcvf database_backup_$(date +%m-%d-%Y).tar.gz /DB/data


