Skip to content

Instantly share code, notes, and snippets.

@mohan43u
Created November 22, 2015 04:33
Show Gist options
  • Save mohan43u/f0caacb6d25b7c3c9039 to your computer and use it in GitHub Desktop.
Save mohan43u/f0caacb6d25b7c3c9039 to your computer and use it in GitHub Desktop.
download files from archlinux svngit
curl 'https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/xorg-server' | sed 's:/svntogit:\nhttp\://projects.archlinux.com/svntogit:g' | grep plain | sed "s/'.*//g" | while IFS='?' read url suffix; do name=$(basename $url); url="$url?$suffix"; curl -o "${name}" "${url}" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment