Skip to content

Instantly share code, notes, and snippets.

@fjarrett
Last active September 12, 2015 18:51
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 fjarrett/c3e9a156031014cd7114 to your computer and use it in GitHub Desktop.
Save fjarrett/c3e9a156031014cd7114 to your computer and use it in GitHub Desktop.
Update all plugins on every virtual host running WordPress
#!/bin/bash
for DIR in /var/www/*/public_html; do
cd $DIR
if [ -f "wp-config.php" ]; then
echo "cd $DIR"
sudo -u www-data wp plugin update --all
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment