Bash Scripting - File Operations in Scripts
What will be the output of this script if
Script:
file.txt contains:apple banana cherry
Script:
while IFS= read -r line; do echo "Fruit: $line"; done < file.txt
