echo content file name (will overwrite all the content in the file) echo content file name (append content to the file and write it on a new line)
echo “content” > file name (will overwrite all content in the file)
echo "Content" >> File name (append content to the file, a new line will be written)