Skip to content

Instantly share code, notes, and snippets.

@koyudoon
Last active August 29, 2015 14:06
Show Gist options
  • Save koyudoon/83bc9e960f2a3f1fdbbf to your computer and use it in GitHub Desktop.
Save koyudoon/83bc9e960f2a3f1fdbbf to your computer and use it in GitHub Desktop.
github で公開されているプロジェクトの description を手っ取り早く取得する

require

  • zsh
  • wget
  • jq

usage

$ () { wget -q "https://api.github.com/repos/$1" -O - | jq -r -M '.description' } 'USER/REPO'

e.g.

$ () { wget -q "https://api.github.com/repos/$1" -O - | jq -r -M '.description' } 'Shougo/neosnippet.vim'
neo-snippet plugin contains neocomplcache snippets source
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment