master
Jeffrey Paul 4 years ago
parent c24e396a5d
commit d6a2a1e6fd
  1. 11
      download-starred-github-repos/download-starred-github-repos.sh

@ -17,7 +17,8 @@ function list_starred_repos {
REPOS="" REPOS=""
for PAGE in `seq $PAGES`; do for PAGE in `seq $PAGES`; do
REPOS+=" $( REPOS+=" $(
curl -sH "Accept: application/vnd.github.v3.star+json" "https://api.github.com/users/$USER/starred?per_page=100&page=$PAGE" | curl -sH "Accept: application/vnd.github.v3.star+json" \
"https://api.github.com/users/$USER/starred?per_page=100&page=$PAGE" |
jq -r '.[]|[.repo.full_name][0]' | jq -r '.[]|[.repo.full_name][0]' |
grep -v eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee grep -v eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
)" )"
@ -31,11 +32,11 @@ function list_starred_repos {
function fetch_starred_repos { function fetch_starred_repos {
for SHORTNAME in $(list_starred_repos); do for SHORTNAME in $(list_starred_repos); do
UN="$(echo $SHORTNAME | cut -d'/' -f1)" UN="$(echo $SHORTNAME | cut -d'/' -f1)"
if [[ ! -d "$SHORTNAME" ]]; then if [[ ! -d "dl/$SHORTNAME" ]]; then
if [[ ! -d "$UN" ]]; then if [[ ! -d "dl/$UN" ]]; then
mkdir -p $UN mkdir -p dl/$UN
fi fi
git clone https://github.com/$SHORTNAME $SHORTNAME git clone https://github.com/$SHORTNAME dl/$SHORTNAME
fi fi
done done
} }

Loading…
Cancel
Save