Error calling Functions: Command Not Found
I get a 'Command Not Found' error message when i call a function. It just doesn't go to the function. Can someone help?
for example:
Function functionName(){
receive 3 parameters ($1,$2,$3) then display a message
echo "something"
}
if functionName "$1" "$2" "$3"; then
....
...
..
fi
|