Skip to content

Instantly share code, notes, and snippets.

View Mr-Bossman's full-sized avatar
💤
Slept through school

Jesse Taube Mr-Bossman

💤
Slept through school
View GitHub Profile
@Mr-Bossman
Mr-Bossman / cloneall.sh
Last active January 23, 2022 03:59
clone all github user's repos
curl -s https://api.github.com/users/mr-bossman/repos?per_page=1000 | grep clone_url | awk -F"\"" '{print "git clone " $4}'