Skip to content

Instantly share code, notes, and snippets.

@tknerr
Created October 19, 2016 22:02
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 tknerr/e1f21f794364186de58695c10c918df1 to your computer and use it in GitHub Desktop.
Save tknerr/e1f21f794364186de58695c10c918df1 to your computer and use it in GitHub Desktop.
List the installed jenkins plugins @ version
#!/bin/sh
curl 'http://localhost:8080/pluginManager/api/xml?depth=1&xpath=/*/*/shortName|/*/*/version&wrapper=plugins' | perl -pe 's/.*?<shortName>([\w-]+).*?<version>([^<]+)()(<\/\w+>)+/\1@\2\n/g' | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment