如何以时间戳格式显示Unix时间?


27

我正在寻找一种方法来显示我在Debian Linux中的时间作为时间戳,例如

1279628325

我找不到使用该date命令执行此操作的任何选项。有任何想法吗?

Answers:




1

srand 没有值的话,将当前时间戳与以下Awk实现一起使用:

  • 高克
  • gawk --posix
  • mawk 1.3.3
  • w

因此您可以使用Awk:

awk 'BEGIN {srand(); print srand()}'

或awk Velor库

velour -n 'print t_now()'
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.