使用Bash计算AIX中两个日期之间的天数

我试图找出两个日期的日期.下面是我在UNIX上完美运行的代码.

date1=$(date "+%m/%d/%y")
temp1=4/8/24
echo $((($(date -u -d $temp1 +%s) - $(date -u -d $date1 +%s)) / 86400))

当我在AIX框上执行上面的脚本时,我收到以下错误:

date: Not a recognized flag: d

Usage: date [-u] [+”Field Descriptors”]

date: Not a recognized flag: d

Usage: date [-u] [+”Field Descriptors”]

( – ) / 86400: syntax error: operand expected (error token is “) / 86400”)`

这是一个PROD环境,我没有管理员权限来安装任何包.

最佳答案 这假定一个月是一年的1/12,并且您使用正确的4位数

年份:

#!/usr/bin/awk -f
function mktm(datespec) {
  split(datespec, q, "/")
  return \
  (q[3] - 1970) * 60 * 60 * 24 * 365.25 + \
  (q[1] -    1) * 60 * 60 * 24 * 365.25 / 12 + \
  (q[2] -    1) * 60 * 60 * 24
}
function ceil(x) {
  y = int(x); return y < x ? y + 1 : y
}
BEGIN {
  srand()
  print ceil((mktm(ARGV[1]) - srand()) / (60 * 60 * 24))
}
点赞