# http://superuser.com/questions/302914/append-stdout-to-file-from-terminal
#
# this will clobber the file and replace all data with stdout.
$ command > file.txt
# this will append stdout to the file.
# meaning the value of stdout is tacked to the end of the file.
$ command >> file.txt