我正在尝试从一行文本中获取 linux 时间戳。我可以使用命令cut
来抓取字符串
> echo '"tester_row_____",0,"2016-07-04T01:42:28Z","2016-07-04T02:00:58Z"' | cut -c 22-41
2016-07-04T01:42:28Z
现在,如果我直接在调用 date 时使用该日期字符串,我可以获得 linux 时间戳
> date +"%s" --date 2016-07-04T01:42:28Z
1467596548
但是,如果我将命令的结果通过管道传输到命令cut
中,date
我会得到不同的结果
> echo '"tester_row_____",0,"2016-07-04T01:42:28Z","2016-07-04T02:00:58Z"' | cut -c 22-41 | date +"%s" --date -
1467590400
为什么结果不同?
答案1
date --date -
不接受标准输入;尝试date +"%s" --date "$(echo '"tester_row_____",0,"2016-07-04T01:42:28Z","2016-07-04T02:00:58Z"' | cut -c 22-41)"
一下。这将在子 shell 中运行字符串操作管道,并将其输出用作date
.