通过读取文件
将日期和时间传递给date -d
命令
我试过了:
#cat temp.txt
2013/10/31 10:57:02
#cat temp.txt | xargs date -d
date: the argument `10:57:02' lacks a leading `+';
when using an option to specify date(s), any non-option
argument must be a format string beginning with `+'
答案 0 :(得分:4)
答案 1 :(得分:2)
你也可以使用-0
$ cat temp.txt | xargs -0 date -d
当输入项可能包含空格,引号或。时有用 反斜杠。