diff --git a/honoka-plugins/4all.sh b/honoka-plugins/4all.sh new file mode 100755 index 0000000..e491b25 --- /dev/null +++ b/honoka-plugins/4all.sh @@ -0,0 +1,12 @@ +#!/bin/sh +p=$PWD +for f in `find -maxdepth 1 -type d` + do + if [ $f != "." -a $f != "./.svn" ];then + echo ">>> $f" + cd $p/$f + $* + cd $p + fi +done +