Bash Scripting - File Operations in Scripts
What will be the output in
report.txt after running this script?printf "Line1\n" > report.txt printf "Line2" >> report.txt echo "Line3" >> report.txt
