将日期时间字符串转换为Bash中的纪元


92

日期时间字符串的格式如下:06/12/2012 07:21:22。如何将其转换为UNIX时间戳或纪元?

Answers:


94

您正在寻找的是date --date='06/12/2012 07:21:22' +"%s"。请记住,这是假定你使用GNU的coreutils,既--date%s格式字符串是GNU扩展。POSIX没有指定任何一个,因此即使在POSIX兼容的系统上也没有可移植的方式进行这种转换。

有关的其他版本,请参考相应的手册页date

注意:bash --date-doption期望使用US或ISO8601格式的日期,即,mm/dd/yyyyyyyy-mm-dd,而不是英国,欧盟或任何其他格式的日期。


9
当我在Mac OSX 10.8.2上运行时,我得到“日期:非法选项–”
Ben Clayton

6
对于像我这样的菜鸟来说,它+"%s"代表输出格式,并且%s是自1970
razz 2015年

2
注意:如果要指定其他时区(例如UTC)的时间,请在末尾添加-HHMM或+ HHMM。因此date --date='06/12/2012 07:21:22 -0000' +"%s"将UTC日期转换为unix时间戳
格雷格·布雷

对于GNU日期,如果你希望使用UTC注意其格式是yyyy-mm-dd hh:mm:ss看看gnu.org/software/coreutils/manual/html_node/...gdate --date='2019-06-18 00:02:00 +0000' +%s
Ashutosh说金达尔

在Mac上不起作用...我想知道是否有一种在Mac和Linux上都能工作的方法
极性

47

对于Linux运行此命令

date -d '06/12/2012 07:21:22' +"%s"

对于Mac OSX,请运行以下命令

date -j -u -f "%a %b %d %T %Z %Y" "Tue Sep 28 19:35:15 EDT 2010" "+%s"

1
在OSX上,时间戳会随着当前时间以某种方式增加。我目前对此没有任何解释...
polym

3
更新:那是因为它调整了我的本地时间的时间戳,我想...添加一个-u标记应该可以解决该问题。
polym 2015年

@AbdulRehmanJanjua该-u标志应位于标志之前-f,否则外壳程序将其解释为格式字符串。因此,应为:date -j -u -f "%a..."

4
将其精确粘贴到macOS终端失败。
zneak

6
date -jf "%Y-%m-%d %H:%M:%S" "2018-01-08 14:45:00" +%s
daviestar

10

其中许多答案过于复杂,而且也缺少如何使用变量。这就是您在标准Linux系统上做起来更简单的方式(如前所述,必须为Mac用户调整date命令):

示例脚本:

#!/bin/bash
orig="Apr 28 07:50:01"
epoch=$(date -d "${orig}" +"%s")
epoch_to_date=$(date -d @$epoch +%Y%m%d_%H%M%S)    

echo "RESULTS:"
echo "original = $orig"
echo "epoch conv = $epoch"
echo "epoch to human readable time stamp = $epoch_to_date"

结果是 :

RESULTS:
original = Apr 28 07:50:01
epoch conv = 1524916201 
epoch to human readable time stamp = 20180428_075001

或作为功能:

# -- Converts from human to epoch or epoch to human, specifically "Apr 28 07:50:01" human.
#    typeset now=$(date +"%s")
#    typeset now_human_date=$(convert_cron_time "human" "$now")

function convert_cron_time() {
    case "${1,,}" in
        epoch)
            # human to epoch (eg. "Apr 28 07:50:01" to 1524916201)
            echo $(date -d "${2}" +"%s")
            ;;
        human)
            # epoch to human (eg. 1524916201 to "Apr 28 07:50:01")
            echo $(date -d "@${2}" +"%b %d %H:%M:%S")
            ;;
    esac
}

3
get_curr_date () {
    # get unix time
    DATE=$(date +%s)
    echo "DATE_CURR : "$DATE
}

conv_utime_hread () {
    # convert unix time to human readable format
    DATE_HREAD=$(date -d @$DATE +%Y%m%d_%H%M%S)
    echo "DATE_HREAD          : "$DATE_HREAD
}

5
欢迎使用堆栈溢出。除了代码外,请考虑添加说明。
Olivier De Meulder,2015年

2

date用作后台专用流程的高效解决方案

为了使这种转换的快了很多 ......

介绍

在这篇文章中,您会发现

  • 一个快速演示,在这之后,
  • 一些解释
  • 一个功能对于许多可用的Un * X工具(bcrot13sed...)。

快速演示

fifo=$HOME/.fifoDate-$$
mkfifo $fifo
exec 5> >(exec stdbuf -o0 date -f - +%s >$fifo 2>&1)
echo now 1>&5
exec 6< $fifo
rm $fifo
read -t 1 -u 6 now
echo $now

这必须输出当前的UNIXTIME。从那里,你可以比较

time for i in {1..5000};do echo >&5 "now" ; read -t 1 -u6 ans;done
real    0m0.298s
user    0m0.132s
sys     0m0.096s

和:

time for i in {1..5000};do ans=$(date +%s -d "now");done 
real    0m6.826s
user    0m0.256s
sys     0m1.364s

从超过6秒到不到半秒!(在我的主机上)。

你可以检查echo $ans,更换"now""2019-25-12 20:10:00"等等...

可选地,一旦日期子流程的要求结束,您可以:

exec 5>&- ; exec 6<&-

原始帖子(详细说明)

无需按日期运行1个fork即可转换,date只需运行1次并使用相同的流程进行所有转换(这可能会更快)!

date -f - +%s <<eof
Apr 17  2014
May 21  2012
Mar  8 00:07
Feb 11 00:09
eof
1397685600
1337551200
1520464020
1518304140

样品:

start1=$(LANG=C ps ho lstart 1)
start2=$(LANG=C ps ho lstart $$)
dirchg=$(LANG=C date -r .)
read -p "A date: " userdate
{ read start1 ; read start2 ; read dirchg ; read userdate ;} < <(
   date -f - +%s <<<"$start1"$'\n'"$start2"$'\n'"$dirchg"$'\n'"$userdate" )

然后现在看看:

declare -p start1 start2 dirchg userdate

(可能会回答类似:

declare -- start1="1518549549"
declare -- start2="1520183716"
declare -- dirchg="1520601919"
declare -- userdate="1397685600"

一次执行即可完成!

使用长时间运行的子流程

我们只需要一个fifo

mkfifo /tmp/myDateFifo
exec 7> >(exec stdbuf -o0 /bin/date -f - +%s >/tmp/myDateFifo)
exec 8</tmp/myDateFifo
rm /tmp/myDateFifo

(注意:由于进程正在运行并且所有描述符都已打开,因此我们可以安全地删除fifo的文件系统条目。)

那么现在:

LANG=C ps ho lstart 1 $$ >&7
read -u 8 start1
read -u 8 start2
LANG=C date -r . >&7
read -u 8 dirchg

read -p "Some date: " userdate
echo >&7 $userdate
read -u 8 userdate

我们可以提供一些功能:

mydate() {
    local var=$1;
    shift;
    echo >&7 $@
    read -u 8 $var
}

mydate start1 $(LANG=C ps ho lstart 1)
echo $start1

或使用我的 newConnector功能

随着功能连接 MySQL/MariaDBPostgreSQLSQLite...

您可以在GitHub或我的网站上找到不同版本的它们:下载显示

wget https://raw.githubusercontent.com/F-Hauri/Connector-bash/master/shell_connector.bash

. shell_connector.bash 
newConnector /bin/date '-f - +%s' @0 0

myDate "2018-1-1 12:00" test
echo $test
1514804400

注意:GitHub上,功能和测试是分开的文件。如果未获取该脚本,则仅在我的站点上运行测试。

# Exit here if script is sourced
[ "$0" = "$BASH_SOURCE" ] || { true;return 0;}

2

只要确定您要使用的时区即可。

datetime="06/12/2012 07:21:22"

最受欢迎的使用是机器时区。

date -d "$datetime" +"%s" #depends on local timezone, my output = "1339456882"

但是,如果您有意要传递UTC日期时间,并且想要正确的时区,则需要添加-u标记。否则,您可以从本地时区进行转换。

date -u -d "$datetime" +"%s" #general output = "1339485682"

如果我的日期格式为“ YYYYmmdd”怎么办?例如 20200827
Mayur Gite

您也可以使用它。date正确格式化此输入。
塔吉尼
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.