Skip to content

Instantly share code, notes, and snippets.

@renuka-fernando
Created March 15, 2019 05:05
Show Gist options
  • Save renuka-fernando/a19790ad8900f02ead9de343b1d0d524 to your computer and use it in GitHub Desktop.
Save renuka-fernando/a19790ad8900f02ead9de343b1d0d524 to your computer and use it in GitHub Desktop.
check regex of list of git repositories
#/bin/bash
# Grep Here ####################
regex='<\s*script\s*language\s*'
# Grep Here ####################
repo_index=1
declare -a repos=(
"git@github.com:renuka-fernando/sinhalese_language_racism_detection.git"
"git@github.com:renuka-fernando/hackgen.git"
"git@github.com:renuka-fernando/diabetes_data_warehouse.git"
"git@github.com:renuka-fernando/file_bucket.git"
)
for repo in "${repos[@]}"
do
echo "Checking Repo Index $repo_index"
git clone --recursive "$repo"
dir=$(grep -oP '(?<=/).*?(?=\.)' <<< "$repo")
if grep -iRqI "$regex" "./$dir/"; then
echo "FOUND IN : Repo Index: $repo_index - Repo: $repo" >> script_mediator.txt
echo "FOUND IN : Repo Index: $repo_index - Repo: $repo"
else
echo "Not Found in : Repo Index: $repo_index - Repo: $repo" >> script_mediator.txt
echo "Not Found in : Repo Index: $repo_index - Repo: $repo"
fi
repo_index=$(($repo_index + 1))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment