Continued:
[jprojects-scripts.git] / filter-jprojects.sh
diff --git a/filter-jprojects.sh b/filter-jprojects.sh
new file mode 100755 (executable)
index 0000000..041aacf
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+. ./.jprojects.sh || exit 255
+
+for project in ${LIST}; do
+       echo "$0: Processing '${project}' ..."
+       cd "${JPROJECTS_HOME}/${project}/" || exit 255
+       /opt/bin/git-author.sh || exit 255
+done
+
+echo "$0: All done."
+exit 0