Created
November 10, 2019 08:54
-
-
Save JonasGao/e2d6f09989cdd632971da5d00d03cb20 to your computer and use it in GitHub Desktop.
find git repo
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
#!/bin/bash | |
find ${1} -type d -maxdepth ${2} | while read line; do | |
git_dir="${line}/.git" | |
if [[ -d ${git_dir} ]]; then | |
echo $line | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment