回答:
echo -e "First Line" | tee ~/output.log
echo -e "Second Line" | tee -a ~/output.log
^^
マンティーから:
Copy standard input to each FILE, and also to standard output.
-a, --append
append to the given FILEs, do not overwrite
注:を使用-a
すると、上記のファイルが作成されます。