Skip to content

Instantly share code, notes, and snippets.

@davemac
Created June 23, 2017 02:03
Show Gist options
  • Save davemac/58628778f5e2ad12dcc94c140a3e2503 to your computer and use it in GitHub Desktop.
Save davemac/58628778f5e2ad12dcc94c140a3e2503 to your computer and use it in GitHub Desktop.
rsync wp uploads directory from staging to current site
# rsync wp uploads directory from staging to current site
getups() {
current=${PWD##*/}
cd ~/Sites/$current/wp-content/uploads
rsync -avzW --progress --exclude '*.pdf' $current-s:~/www/wp-content/uploads/* .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment