通过管道传递参数到日期命令

时间:2013-12-13 06:08:16

标签: shell unix

通过读取文件

将日期和时间传递给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 `+'

2 个答案:

答案 0 :(得分:4)

你可以说:

cat temp.txt | xargs -i date -d {}

或避免Useless Use of cat

date -d "$(<temp.txt)"

答案 1 :(得分:2)

你也可以使用-0

$ cat temp.txt | xargs -0 date -d
  

当输入项可能包含空格,引号或。时有用   反斜杠。