Slurp WordPress Theme and Plugins together.
git clone git@github.com:markjaquith/WordPress-Plugin-Directory-Slurper.git
repo linkgit clone git@github.com:aaronjorbin/WordPress-Theme-Directory-Slurper.git
repo linkwp-slurp
function to your bash functions file.wp-slurp
#!/usr/bin/env bash
function wp-slurp() {
local current_dir=`pwd`
for thing in {'Theme','Plugin'}
do
local repo="$HOME/Repositories/WordPress-${thing}-Directory-Slurper"
echo "=== Updating ${thing}s ==="
cd $repo && ./update
done
cd $current_dir
}