Viewing, Creating, and Editing Files

echo can be used to write to a file i.e echo "hey" > hey.txt To append to hey.txt echo "Hey again dude" >> hey.txt

touch newfile.txt can also be used to create a file na

Last updated