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