Skip to content

Instantly share code, notes, and snippets.

@liukun
Forked from bmihaylov/getgist
Last active August 29, 2015 14:00
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 liukun/11362136 to your computer and use it in GitHub Desktop.
Save liukun/11362136 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
if [[ "$1" =~ ^[0-9]+ ]]; then
curl -L "http://gist.github.com/$1/download" | tar zx --strip-components 1
exit 0
fi
curl -L "$1/download" | tar zx --strip-components 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment