Last Updated: February 25, 2016
·
685
· codefendant

Bash script to get 'git status' of all child directories

#!/bin/bash

FOLDER=`pwd`

if [ $# -eq 1  ]
  then
    FOLDER=`readlink -f `
fi


echo $FOLDER
for dir in `ls $FOLDER`
do
echo ==========================$dir======================
cd $FOLDER/$dir
git status

done