Bash Scripting - Loops
You want to print only the fruits that start with the letter 'b' from this list:
Which condition inside the loop correctly filters fruits starting with 'b'?
fruits="apple banana cherry blueberry" for fruit in $fruits; do # Fill condition here echo "$fruit" done
Which condition inside the loop correctly filters fruits starting with 'b'?
