Last active
July 4, 2016 15:17
-
-
Save A5hleyRich/9a639d586b9e8ea9381c to your computer and use it in GitHub Desktop.
Simple WordPress Backups
This file contains 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 | |
cd /home/ashley/ashleyrich.com/public | |
# Backup database | |
wp db export ../backups/`date +%Y%m%d`_database.sql --add-drop-table | |
# Backup uploads directory | |
tar -zcf ../backups/`date +%Y%m%d`_uploads.tar.gz wp-content/uploads |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment