Skip to content

Instantly share code, notes, and snippets.

@kstarzyk
kstarzyk / clone_em_all.sh
Last active April 22, 2017 16:17
Clone all user repositories from github [one-liner]
curl https://api.github.com/users/<GITHUB_LOGIN>/repos | grep "clone" | grep -oE "https:(.*).git" | xargs -l bash -c 'git clone $0'