有没有办法在 Ubuntu 的文件中插入时间戳?

有没有办法在 Ubuntu 的文件中插入时间戳?

我经常发现自己需要在文本文件中输入时间戳。有没有办法在 Ubuntu 中快速将当前时间戳插入到文件中?

答案1

您可以使用该date命令。

date >> my_file.txt

my_file.txt时间戳文件放在哪里?

查看strftime(3)( man 3 strftime) 的手册页,了解一些可以使用的日期格式化程序。例如:

date +%l:%M >> my_file.txt

将输出类似9:37(小时:分钟)的内容到文本文件。

答案2

在 shell 提示符下(或 shell 脚本内)使用此命令:

  • 日期 >> /var/log/my_log_file.log

答案3

安装 xclip:

sudo apt-get install xclip

并在命令提示符中运行以下命令:

date +"%Y-%M-%d %H:%M" | while read line; do echo -n "$line"; done | xclip -i -selection clipboard

然后,您可以通过 ctrl+v 将日期时间戳粘贴到您选择的任何程序中。您可以将命令放入 shell 脚本中,然后通过键盘快捷键运行它以方便使用。

相关内容