Skip to content

Instantly share code, notes, and snippets.

@andreik6v
Forked from hofmannsven/README.md
Created March 20, 2023 18:07
Show Gist options
  • Select an option

  • Save andreik6v/dfd557f6deb8ed50fff328bc6e0fe7cd to your computer and use it in GitHub Desktop.

Select an option

Save andreik6v/dfd557f6deb8ed50fff328bc6e0fe7cd to your computer and use it in GitHub Desktop.
Storing WordPress files and database with WP-CLI on the server.
#!/bin/sh
/usr/local/bin/wp db --path=/var/www/websites/wp - | gzip > /var/www/backups/db_backup-$(date +%Y-%m-%d-%H%M%S).sql.gz &
tar --create --gzip --absolute-names --file=/var/www/backups/wp_backup-$(date +%Y-%m-%d-%H%M%S).tar.gz --exclude=*.tar.gz /var/www/websites/wp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment