diff --git a/repos_checker.sh b/repos_checker.sh index c3b4ca9..b42d58d 100755 --- a/repos_checker.sh +++ b/repos_checker.sh @@ -1,4 +1,4 @@ #!/bin/sh # script to find all the git repositories in the current directory (& sub-directories) and display their git statuses -find . -name ".git" -type d -not -path "./.cache/*" -not -path "./.local/*" -exec sh -c '(cd {}/../; pwd; git status)' \; +find . -name ".git" -type d -not -path "./.cache/*" -not -path "./.local/*" -exec sh -c '(cd {}/../; echo -e "\n\033[1m$(pwd)\033[0m"; git status)' \;