I'm trying to silent the echo command so that it doesn't display me the output on Jenkins console. I'm defining value of abc variable just at the beginning of pipeline. Following is the script:
steps{
script{
xyz = sh(script: "echo ${abc} | base64 --decode", returnStdout: true).trim()
}
}
How can I silent or hide the value of abc appearing in the console?