--- /dev/null
+#!/bin/bash
+
+echo "Will run git gc on all repos in this directory in 10 sec."
+sleep 10
+
+echo "------OLD------" > /tmp/ggcAll.txt
+find . -path '*.git' -type d -print0 | du -sch --files0-from=- >> /tmp/ggcAll.txt
+echo "------NEW------" >> /tmp/ggcAll.txt
+find . -path '*.git/config' -type f -execdir echo "------------------------------------------" \; -execdir pwd \; -execdir git gc \;
+find . -path '*.git' -type d -print0 | du -sch --files0-from=- >> /tmp/ggcAll.txt
+echo "-----STATS-----"
+cat /tmp/ggcAll.txt
+rm /tmp/ggcAll.txt
+