Some notes on commands
## echo 'This text is now in a text file.' > textfile.txt
Writes the text This text is now in a text file. to the file textfile.txt. If textfile.txt does not exist, it will be created; if textfile.txt already exists, it will be overwritten. echo 'This text is now in a text file.' >> textfile.txt
Appends the text This text is now in a text file. to the file textfile.txt. If textfile.txt does not exist, it will be created.