Answers for "shell function example"

1

functions in linux

#!/bin/sh

# Define your function here
Hello () {
   echo "Hello World"
}

# Invoke your function
Hello
Posted by: Guest on September-07-2020
0

shell function example

#!/bin/sh

# Define your function here
Hello () {
   echo "Hello World $1 $2"
}

# Invoke your function
Hello Zara Ali
Posted by: Guest on April-04-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language