Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MC42/b11179b30248d1ccd254ef2711dc7217 to your computer and use it in GitHub Desktop.
Save MC42/b11179b30248d1ccd254ef2711dc7217 to your computer and use it in GitHub Desktop.
gh_clone_script_latest_release
#!/bin/bash
curl -s https://api.github.com/repos/opencv/opencv/releases/latest \
| grep "browser_download_url.*zip" \
| cut -d : -f 2,3 \
| tr -d \" \
| wget -qi -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment