Skip to content

Instantly share code, notes, and snippets.

@minesweeper106
Forked from wjkennedy/top100jiracsv.sh
Last active October 7, 2020 14:47
Show Gist options
  • Save minesweeper106/367944345761bf0e005a97504f180c06 to your computer and use it in GitHub Desktop.
Save minesweeper106/367944345761bf0e005a97504f180c06 to your computer and use it in GitHub Desktop.
Hacky jq one-liner gets Top 100 most popular Jira Addons from the Marketplace
curl "https://marketplace.atlassian.com/rest/2/addons?application=jira&filter=popular&limit=100" | jq '._embedded.addons[]| [.name, .key, ._embedded.distribution.totalUsers, ._embedded.distribution.downloads]|@csv'|sed 's/\\//g'|sed 's/^\"//'| sed 's/\"$//'|tee -a jira.addons.csv
#100 newest custom fields related apps for Cloud
https://marketplace.atlassian.com/rest/2/addons?category=Custom+fields&filter=recent&hosting=cloud&limit=100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment