Skip to content

Instantly share code, notes, and snippets.

@ko31
Created September 6, 2018 00:45
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 ko31/8b8e6bbdcbe58d1964be7d8aebec40d0 to your computer and use it in GitHub Desktop.
Save ko31/8b8e6bbdcbe58d1964be7d8aebec40d0 to your computer and use it in GitHub Desktop.
GitHub issuesからCSV出力するコマンド
curl -u ":username" "https://api.github.com/repos/:owner/:repos/issues?state=open" |\
jq -r '["number","title","html_url"], (.[] | [.number,.title,.html_url]) | @csv' > issues.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment