NOTES
Run command in all subdirectories
Should work for any shell. Here, the command to be run is a bash command. The -exec
can be updated to whatever from the example.
find . -maxdepth 1 -type d \( ! -name . \) -exec bash -c "cd '{}' && git pull" \;