8 lines
175 B
Bash
Executable file
8 lines
175 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
pluginFolder="/home/jonathan/WPPlugins"
|
|
for dir in $pluginFolder/*/; do
|
|
cd $dir
|
|
pwd | cowsay
|
|
/home/jonathan/.gem/ruby/2.4.0/bin/git-svn-mirror update
|
|
done
|