Skip to content

Instantly share code, notes, and snippets.

View PLumowina's full-sized avatar

Rafał Michalski PLumowina

  • Gliwice, Poland
View GitHub Profile
@Nilpo
Nilpo / wpbackup.sh
Created December 8, 2015 23:27
A Wordpress Backup Shell Script
#!/bin/bash
# usage: ./wpbackup.sh domain.com
DOMAIN="$1"; # domain name to backup
BACKUP="$HOME/backups"; # store backups here
HOSTPATH="$HOME"; # path where hosted domains are
backmeup () {
local _N _U _P _H FS FT TD WP;