假设我想在某些文本的开头通过管道输出日期
例如
echo "this line is test line" | date
预期输出应该是
Wed May 22 14:55:10 UTC 2024 this line is test line
如何在行前插入日期和时间?
假设我想在某些文本的开头通过管道输出日期
例如
echo "this line is test line" | date
预期输出应该是
Wed May 22 14:55:10 UTC 2024 this line is test line
如何在行前插入日期和时间?
您可以使用的命令是
这将是
echo
命令执行的结果date
,并将所需文本附加到末尾您可能对以下
ts
命令感兴趣:或者,bash 的内置函数
printf
可以执行 strftime:%()T
采用括号内的时间格式。-1
是一个表示“现在”的值