pull.sh

#!/bin/bash

for directory in */ ; do
    echo $directory
    cd $directory
    git pull
    cd ..
done
wait