Linux CLI - Pipes and Redirection
Given the file content of data.txt is initially empty, what will be the content of data.txt after running these commands in order?
echo "First" > data.txt echo "Second" >> data.txt echo "Third" > data.txt
