免费注册 查看新帖 |

Chinaunix

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

shell script 运行出错。麻烦高手帮我看看 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-03-03 17:32 |只看该作者 |倒序浏览
  6 PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
  7 export PATH
  8
  9 echo "This program will try to calculate : "
10 echo "how many days before yr demobilization date..."
11 read -p "pls input yr dempbilization date (YYYYMMDD ex>20080401): " date2
12
13 date_d=$(echo $date2 | grep '[0-9]\{8\}')
14
15 if [ "$date_d" == "" ];then
16         echo "u input the worng date format"
17         exit 1
18 fi
19
20 declare -i date_dem='date --date="$date2" + %s'
21 declare -i date_now='date + %s'
22 declare -i date_total_s=$(($date_dem-$date_now))
23 declare -i date_d=$((date_total_s/60/60/24))
24
25 if [ "$date_total_s" -lt "0" ];then
26         echo "u had been demobilization before: "$((-a*$date_d))" ago"
27 else
28         declare -i date_h=$(($(($date_total_s-$date_d*60*60*24))/60/60))
29         echo "u will demobilize after $date_d days and $date_h hours."







=-======错误=====
sh11.sh: line 20: declare: date --date="$date2" + %s: syntax error in expression (error token is "date="$date2" + %s")
sh11.sh: line 21: declare: date + %s: syntax error: operand expected (error token is "%s")
sh11.sh: line 22: -: syntax error: operand expected (error token is "-")
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP