shell将执行命令结果赋值给变量出错
#!/bin/bash#统计从最开始有数据到今天的所有数据if(($#!=1));thenecho"usage./$0[统计天数]"exitfibeginday=$1ec...
#!/bin/bash
#统计从最开始有数据到今天的所有数据
if(($#!=1)); then
echo "usage ./$0 [统计天数]"
exit
fi
beginday=$1
echo $beginday
for((i=-beginday;i<=0;i++));
do
strday=${date -d "$i days" "+%Y-%m-%d"}
echo strday
done
在strday=${date -d "$i days" "+%Y-%m-%d"}这里,报了bad substitution的错误。是什么原因? 展开
#统计从最开始有数据到今天的所有数据
if(($#!=1)); then
echo "usage ./$0 [统计天数]"
exit
fi
beginday=$1
echo $beginday
for((i=-beginday;i<=0;i++));
do
strday=${date -d "$i days" "+%Y-%m-%d"}
echo strday
done
在strday=${date -d "$i days" "+%Y-%m-%d"}这里,报了bad substitution的错误。是什么原因? 展开
2个回答
展开全部
这语法你看的那本书这么写的?你看的是bash shell的书吗?
#!/bin/bash
if [ $# != 1 ]; then
echo "usage ./$0 [统计天数]"
exit 1
fi
beginday=$1
echo $beginday
for((i=-beginday;i<=0;i++));do #你这个-beginday 没看懂你想表达什么意思。
strday=$(date -d "$i days" "+%Y-%m-%d")
echo $strday
done
如果一行内不包含两条语句可以不用写;
比如
if [ $# != 1 ]
then
if [ $# != 1 ];then
#!/bin/bash
if [ $# != 1 ]; then
echo "usage ./$0 [统计天数]"
exit 1
fi
beginday=$1
echo $beginday
for((i=-beginday;i<=0;i++));do #你这个-beginday 没看懂你想表达什么意思。
strday=$(date -d "$i days" "+%Y-%m-%d")
echo $strday
done
如果一行内不包含两条语句可以不用写;
比如
if [ $# != 1 ]
then
if [ $# != 1 ];then
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询