#!/bin/sh for DIR in *; do #[ -d "$DIR" ] && "cd "$DIR" ; pwd" if [ -d "$DIR" ] ; then cd "$DIR" git up cd .. fi done