Created
September 8, 2016 06:54
-
-
Save YaroslavShapoval/007cb347f5f9e58d45cb7861e030c5e0 to your computer and use it in GitHub Desktop.
Site backup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/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