Bash Scripting - Functions
What will be the output of this bash script?
greet() {
echo "Hi, $1!"
}
greet Alice
greet Bobgreet() {
echo "Hi, $1!"
}
greet Alice
greet Bob15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions