Append an echo to file?
In linux, how do I do something like
echo 'hello world' > log.txt
but instead of overwriting the contents of log.txt, it appends to the end of of log.txt?
echo 'hello world' >> log.txt
Try:
>>
In place of:
>