Bash Scripting - Loops
Given the list:
Which condition will print only items starting with 'b'?
items="car bike bus boat" for item in $items; do # condition here echo $item done
Which condition will print only items starting with 'b'?
