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
Written by Che
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Git
Authors
khasinski
591.1K
dmichaelavila
500.4K
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#