Skip to content

Instantly share code, notes, and snippets.

@YaroslavShapoval
Created September 8, 2016 06:54
Show Gist options
  • Select an option

  • Save YaroslavShapoval/007cb347f5f9e58d45cb7861e030c5e0 to your computer and use it in GitHub Desktop.

Select an option

Save YaroslavShapoval/007cb347f5f9e58d45cb7861e030c5e0 to your computer and use it in GitHub Desktop.
Site backup
#/bin/bash
rm -f "/backups/sitename-`date -d "-5 days" --iso`.tar.gz"
mysqldump -u username -ppassword www>db.sql
tar -cvzf "/backups/sitename-`date --iso`.tar.gz" db.sql /var/www/sitefolder --exclude "/var/www/sitefolder/exclude_files"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment