Last active
August 25, 2021 01:36
-
-
Save itsazzad/0455ede46f6041e365ad67f9ed5815ff to your computer and use it in GitHub Desktop.
Git Organization: Status
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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