fix repos_checker.sh

This commit is contained in:
2024-03-25 10:24:43 +00:00
parent c3f9001381
commit efbb624cbd

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/sh
# script to find all the git repositories in the current directory (& sub-directories) and display their git statuses # 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 {}/../; pwd; git status)' \;