sh Bash - 时间戳功能示例 - 来自http://stackoverflow.com/questions/17066250/create-timestamp-variable-in-bash

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Bash - 时间戳功能示例 - 来自http://stackoverflow.com/questions/17066250/create-timestamp-variable-in-bash相关的知识,希望对你有一定的参考价值。

#!/bin/bash

# Define a timestamp function
timestamp() {
  date +"%T"
}

# do something...
timestamp # print timestamp
# do something else...
timestamp # print another timestamp
# continue...

以上是关于sh Bash - 时间戳功能示例 - 来自http://stackoverflow.com/questions/17066250/create-timestamp-variable-in-bash的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Bash 中将时间戳转换为日期?

sh Bash If语句示例 - 来自http://www.thegeekstuff.com/2010/06/bash-if-statement-examples

sh bash时间戳

sh bash时间戳和/或日期

sh Bash脚本根据exif数据和文件时间戳移动图像

sh Bash - 检查流程示例 - 来自http://stackoverflow.com/questions/7708715/check-if-program-is-running-with-ba