Skip to content

Instantly share code, notes, and snippets.

View sricola's full-sized avatar
🍦
searching for Ice Cream

Sri Ray sricola

🍦
searching for Ice Cream
View GitHub Profile

Keybase proof

I hereby claim:

  • I am sricola on github.
  • I am sricola (https://keybase.io/sricola) on keybase.
  • I have a public key whose fingerprint is BC82 FF21 E287 7AD5 DAD9 65D5 A567 0E9D 37C5 5F2D

To claim this, I am signing this object:

google.com
youtube.com
facebook.com
baidu.com
wikipedia.org
qq.com
tmall.com
taobao.com
yahoo.com
amazon.com
@sricola
sricola / clone_all_repos.md
Last active July 28, 2019 17:31
Clone all repos in Github Organization
# Fetch token from https://github.com/settings/tokens
EXPORT GITHUB_TOKEN=your_token

# Your org name
EXPORT GITHUB_ORG=your_org

curl --silent https://api.github.com/orgs/$GITHUB_ORG/repos?access_token=$GITHUB_TOKEN | \
grep -o "git@github.com:$GITHUB_ORG/[^ ,\"]\+" | \
xargs -L 1 git clone