script shell dans le pipeline Jenkins

pipeline {
    agent any
    stages {
        stage('Build')
        {
            steps 
            {
                sh '''#!/bin/bash
                echo shell commands here
                '''
            }
        }
        
        }
    }
Biggus Dickus