Answers:
echo "text" >> file
date >> file
如果您只想一行
echo -n "text" >> file
date >> file
echo
- 附加换行符-默认情况下,它将发送一个换行符;如果您想要更多,可以这样做(添加4个换行符)echo -e '\n\n\n'
。要一行完成,可以使用花括号{ echo "text"; echo date; } >> file
。
(echo -n "test : "; date;) >> file.log