Skip to content

Instantly share code, notes, and snippets.

@fizzyade
Created April 3, 2020 20:20
Show Gist options
  • Save fizzyade/441d8da6a5782d02ed529555bffc6140 to your computer and use it in GitHub Desktop.
Save fizzyade/441d8da6a5782d02ed529555bffc6140 to your computer and use it in GitHub Desktop.
Clones all Silicon Labs (formerly Micrium) uc- library repositories

Clone Silicon Labs Repos

A convenience command to clone all Silicon Lab (Formerly Micrium) uc- related library repos. These libaries were closed source and high quality libraries for USB, Networking, Filing Systems etc that are portable to many platforms and different operating systems.

curl "https://api.github.com/search/repositories?q=uc-+user:SiliconLabs" | grep \"clone_url\" | awk '{print $2}' | sed -e 's/"//g' -e 's/,//g' | xargs -n1 git clone

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment