Skip to content

Instantly share code, notes, and snippets.

@mavieth
Last active April 14, 2016 04:05
Show Gist options
  • Save mavieth/37c0593cb96a10e1aa127d8ff338886a to your computer and use it in GitHub Desktop.
Save mavieth/37c0593cb96a10e1aa127d8ff338886a to your computer and use it in GitHub Desktop.
#!/bin/bash
# in ~/Sites directory
for D in *; do
if [ -d "${D}" ]; then
wp --path=$D/ core update
wp --path=$D/ theme update --all
wp --path=$D/ plugin update --all
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment