Jenkins : Delete workspace for all disabled jobs

Deletes the workspace for all disabled jobs to save space
Log rotation normally runs after a build is completed. If you want to run log rotation on all of your jobs without having to build them (for example after you have changed the retention settings, or if you have disabled builds, or if you have jobs that don't run very often). Enter the following script into the script console:

//michaeldkfowler
import jenkins.model.*
Jenkins.instance.getAllItems(AbstractProject.class)
.findAll {it.disabled}
    .each {
      println("Wiping workspace for "+it.fullName)
      it.doDoWipeOutWorkspace()
    }