Dotfiles/bin/wordpress/update3rdPartyPlugins
2019-05-17 12:52:12 +01:00

9 lines
206 B
Bash
Executable file

#!/usr/bin/bash
pluginFolder="/home/jonathan/WPPlugins"
for dir in $pluginFolder/*/; do
cd $dir
name=${PWD##*/}
echo $name | toilet -w 200
/home/jonathan/.gem/ruby/2.4.0/bin/git-svn-mirror update
done