将文本附加到文本文件的末尾

将文本附加到文本文件的末尾

如何在文本文件中追加新行,后跟当前日期和时间?

答案1

echo "text" >> file
date >> file

如果你只想在一行中

echo -n "text" >> file
date >> file

答案2

您也可以使用printf。一行解决方案是

printf "\nsome text\n$(date)" >> file.txt

相关内容