Skip to content

Instantly share code, notes, and snippets.

@hayderimran7
Created February 13, 2015 22:41
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 hayderimran7/d791c09997dc28eda3fb to your computer and use it in GitHub Desktop.
Save hayderimran7/d791c09997dc28eda3fb to your computer and use it in GitHub Desktop.
How to get names of all jenkins plugins installed in your master
easiest way is by going through jenkins UI, but if you want to know from CLI, follow along:
1. cd to jenkins home directory i.e. 'cd /var/lib/jenkins'
2. cd to plugins folder
3. run command : ls -ld */ | awk '{print $9}'
e.g.
~/plugins$ ls -ld */ | awk '{print $9}'
4. this will show a list of plugins installed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment