pipeline { agent any stages { stage('Hello') { steps { echo 'Hello World from app1 on Friday 4' sh ''' #!/bin/bash ls -la pwd ''' } } } }