Skip to content

Instantly share code, notes, and snippets.

View f33rx's full-sized avatar

Dalton f33rx

View GitHub Profile
#!/bin/bash
# Let the person running the script know what's going on.
echo "Pulling in latest changes for all repositories..."
# Find all git repositories and update it to the master latest revision
for i in $(find ./Addons -name ".git" | sed 's/....$//'); do
echo "";
echo "+$i+";