Skip to content

Instantly share code, notes, and snippets.

View chthonn's full-sized avatar
:octocat:
learning..

Sunil Kumar chthonn

:octocat:
learning..
View GitHub Profile
@milanboers
milanboers / clone.bash
Last active July 10, 2026 23:20
Clone all repositories of a Github user
curl -s https://api.github.com/users/milanboers/repos | grep \"clone_url\" | awk '{print $2}' | sed -e 's/"//g' -e 's/,//g' | xargs -n1 git clone