Languages
[Edit]
EN

Bash - how to use function (create / call function)

0 points
Created by:
Zeeshan-Peel
730

This article will show you how to use function (create / call function) in Bash.

Creating a function:

my_function () {
    <commands>
}

Another way: 

function my_function {
    <commands>
}

Calling a function:

my_function () {
    <commands>
}

my_function

 

Practical example

#!/bin/bash

my_function () {
    echo "Hello from function"
}

my_function
my_function

Output:

Hello from function
Hello from function
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Bash

Bash - how to use function (create / call function)
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join