Skip to content

Instantly share code, notes, and snippets.

@JohnPreston
Last active December 29, 2015 09:19
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 JohnPreston/7649923 to your computer and use it in GitHub Desktop.
Save JohnPreston/7649923 to your computer and use it in GitHub Desktop.
Get all GIT rpms in a given version from pkgs.repoforge.org
for rpm in `curl http://pkgs.repoforge.org/git/ | grep CentOS | grep '1.7.11.3' | grep el6 | grep x86_64 | cut -d ' ' -f 8 | sed 's/href="//g' | sed 's/".*//g' ` ; do wget http://pkgs.repoforge.org/git/$rpm ;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment