Skip to content

Instantly share code, notes, and snippets.

View jenvigo's full-sized avatar

Juan Enrique jenvigo

View GitHub Profile
@jenvigo
jenvigo / fetch-repos.sh
Created July 1, 2021 18:29 — forked from hhutch/fetch-repos.sh
find file changes in all forks of a github repo
curl -i https://api.github.com/repos/scrooloose/nerdtree/forks |grep -e "git_url" |awk '{gsub(/,/,"");split($2,a,"/"); system("mkdir "a[4]"; cd "a[4]"; git clone " $2);}'