Skip to content

Instantly share code, notes, and snippets.

@gary-kim
Created May 20, 2020 15:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gary-kim/7e2f3f5172cd704cf38d15dea038bb92 to your computer and use it in GitHub Desktop.
Save gary-kim/7e2f3f5172cd704cf38d15dea038bb92 to your computer and use it in GitHub Desktop.
Currently Supported Nextcloud App Name Finder
curl https://apps.nextcloud.com/api/v1/apps.json | jq '. | map({name: .translations.en.name, versionspec: .releases | first | .rawPlatformVersionSpec}) | map(select(.versionspec[-2:] // "0" | tonumber >= 18)) | map(.name)' -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment