Answers for "how to write a function shell script"

2

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 "how to write a function shell script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language