Jenkins To print all env in jenkins pipeline { agent any stages { stage('env') { steps { sh "printenv" } } } }