Bash Scripting - Functions
What will the following bash function print when called as
show_args apple banana?show_args() {
echo "$1 and $2 are fruits"
}show_args apple banana?show_args() {
echo "$1 and $2 are fruits"
}apple and banana. So, $1 = apple, $2 = banana.$1 and $2 followed by the text "are fruits".15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions