This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on run {input, parameters} | |
repeat with inp in input | |
set f to quoted form of (POSIX path of (inp as text)) | |
do shell script "open -n -a OutlookPreview.app --args " & f | |
end repeat | |
end run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.cloudbees.hudson.plugins.folder.properties.FolderCredentialsProvider | |
import com.cloudbees.plugins.credentials.common.StandardCredentials | |
import com.cloudbees.hudson.plugins.folder.Folder | |
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials( | |
com.cloudbees.plugins.credentials.common.StandardCredentials.class, Jenkins.instance, null, null) | |
creds.eachWithIndex { | |
it, | |
i ->println "\n========== [Global] Credential ${i+1} Start ==========" | |
it.properties.each { | |
println it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials( | |
com.cloudbees.plugins.credentials.common.StandardCredentials.class, | |
Jenkins.instance, | |
null, | |
null | |
); | |
for (int i; i < creds.size(); i++) { | |
println "\n========== Credential ${i+1} Start ==========" | |
creds[i].properties.each { println it } | |
println "========== Credential ${i+1} End ==========\n" |