Skip to content

Instantly share code, notes, and snippets.

@lidio601
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lidio601/15961a1b0a0e935053e8 to your computer and use it in GitHub Desktop.
Save lidio601/15961a1b0a0e935053e8 to your computer and use it in GitHub Desktop.
Bash Script to backup or make a snapshot of your website
#!/bin/bash
cd "/path/to/your/backup/directory"
mysqldump -u "<DATABASE-USER>" -p "<DATABASE-NAME>" >"`date +%Y%m%d`_database.sql"
tar czvf "`date +%Y%m%d`_htdocs.tar.gz" "/path/to/your/htdocs/directory"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment