Problem Statement
Which keyword defines a function in a shell script?
Explanation
Functions in shell scripts are defined using the function keyword or simply the function name followed by parentheses.
They help group reusable code blocks and make scripts modular.
Code Solution
SolutionRead Only
function greet() {
echo 'Hello User'
}
greet