免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2910 | 回复: 1
打印 上一主题 下一主题

急问,AIX下的date 怎么没有linux的date -d选项? [复制链接]

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-02-16 14:40 |只看该作者 |倒序浏览
本帖最后由 yuantong 于 2011-02-16 14:48 编辑

现在有一脚本,在linux下,调试成功,在AIX上因为没有-d这个选项,死活不通过

#!/bin/bash
#传入合法日期或使用当前日期,并将其年和月的值取出
date=${1:-`date +%Y-%m-%d`}
year=$(date -d "$date" +%Y)
month=$(date -d "$date" +%m)
#day=$(date -d "$date" +%d)
#构造所求月的第一天,并求出为星期几
first_day="$year-$month-1"
number=$(date -d "$first_day" +%w )
#根据上面求出的星期几来构造出此月的第一个和第二个周六
if [ "$number" -eq 6 ]
then
        first_saturday="$first_day"
        second_saturday="$year-$month-$(( 1 + 7 ))"
        third_saturday="$year-$month-$(( 1 + 14 ))"
        fourth_saturday="$year-$month-$(( 1 + 21 ))"
        echo "This month's first Saturday is $first_saturday!"
        echo "This month's second saturday is $second_saturday!"
        echo "This month's third saturday is $third_saturday!"
        echo "This month's fourth saturday is $fourth_saturday!"
else
         first_saturday="$year-$month-$(( 6 - $number + 1 ))"
         second_saturday="$year-$month-$(( 6 - $number + 1 + 7 ))"
         third_saturday="$year-$month-$(( 6 - $number + 1 + 14 ))"
         fourth_saturday="$year-$month-$(( 6 - $number + 1 + 21 ))"
         echo "This month's first Saturday is $first_saturday!"
         echo "This month's second saturday is $second_saturday!"
         echo "This month's third saturday is $third_saturday!"
         echo "This month's third saturday is $fourth_saturday!"
fi

#如果当前日期等于第一个周六
if [ $(date -d "$first_saturday" +%Y%m%d) -eq $(date +%Y%m%d) ]then
         echo "execute the first task"
elif [ $(date -d "$second_saturday" +%Y%m%d) -eq $(date +%Y%m%d) ]then
         echo "execute the second task"
elif [ $(date -d "$third_saturday" +%Y%m%d) -eq $(date +%Y%m%d) ]then
        echo "execute the third task"
elif [ $(date -d "$fourth_saturday" +%Y%m%d) -eq $(date +%Y%m%d) ]then
        echo "execute the fourth task"
fi

如果AIX真没有这个选项,请问上面的脚本如何修改,谢谢

论坛徽章:
0
2 [报告]
发表于 2011-02-16 14:47 |只看该作者
-d选项好像是gnu date的参数。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP