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