Redirection Output: echo "Hello World" > hello.txt Appending: echo -ne "Hello\t" > hello.txt echo "World" >> hello.txt Input: cat < hello.txt