your_command >> file_to_append_to
如果file_to_append_to不存在,它将被创建。
例:
$ echo "hello" > file $ echo "world" >> file $ cat file hello world