Skip to content

Function in Bash

homepage-banner

Function

#!/bin/bash

function Fun_Name()
{
    #function here
    echo "this is a function"
}

Fun_Name

Example

change workspace to script dir

#!/usr/bin/env bash

work_dir() {
    WORK_DIR=$(
        cd "$(dirname "$0")"
        pwd
    )
    cd ${WORK_DIR}
}

work_dir

Back to Table of Contents

Disclaimer
  1. License under CC BY-NC 4.0
  2. Copyright issue feedback me#imzye.com, replace # with @
  3. Not all the commands and scripts are tested in production environment, use at your own risk
  4. No personal information is collected.
Feedback