What does echo "new" > output.txt do when output.txt already contains data?
echo "new" > output.txt
output.txt
Reads output.txt and sends it into echo as input
echo
Adds the new text after all existing contents
Writes only error messages to output.txt
Replaces the existing contents with the command's standard output