Skip to content

Instantly share code, notes, and snippets.

@itsazzad
Last active August 25, 2021 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itsazzad/0455ede46f6041e365ad67f9ed5815ff to your computer and use it in GitHub Desktop.
Save itsazzad/0455ede46f6041e365ad67f9ed5815ff to your computer and use it in GitHub Desktop.
Git Organization: Status
for f in *; do
if [ -d "$f" ]; then
cd $f
pwd
git status
cd ..
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment