開始日と終了日を持つ awk で期間を計算しようとしています。これが私の機能です
function computeDuration(start, end) {
sub(/T/, " ", start);
sub(/T/, " ", end);
print start;
print end;
cmd="date --date=\"$start\" +%s";
cmd | getline startDate;
cmd="date --date=\"$end\" +%s";
cmd | getline endDate;
print startDate;
print endDate;
return endDate-startDate;
}
私の出力は次のとおりです。
2012-7-16 13:20
2012-7-16 13:30
1342389600
1342389600
2 つの異なる日付が同じ結果になる可能性がある理由を説明できる人はいます+%s
か?