List
find . -name "node_modules" -type d -prune | xargs du -chsDelete
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +| #! /bin/bash | |
| git fetch -p && \ | |
| for branch in $(git for-each-ref --format '%(refname) %(upstream:track)' refs/heads | \ | |
| awk '$2 == "[gone]" {sub("refs/heads/", "", $1); print $1}'); do git branch -D $branch; done |
| import jenkins.model.* | |
| import com.cloudbees.plugins.credentials.* | |
| import com.cloudbees.plugins.credentials.impl.* | |
| import com.cloudbees.plugins.credentials.domains.* | |
| import com.cloudbees.jenkins.plugins.sshcredentials.impl.BasicSSHUserPrivateKey | |
| import com.cloudbees.jenkins.plugins.awscredentials.AWSCredentialsImpl | |
| import org.jenkinsci.plugins.plaincredentials.StringCredentials | |
| import org.jenkinsci.plugins.plaincredentials.impl.FileCredentialsImpl | |
| def showRow = { credentialType, secretId, username = null, password = null, description = null -> |