手记

日期循环调用的shell脚本

日期循环调用:
function times()
{
start=$1
end=$2
temp=$start
while true; do
temp=date +%Y-%m-%d -d "$temp 1 days "
echo "$temp"
if [ "$end" = "$temp" ]; then
break;
else

要调用的脚本 $temp
       fi
    done

}

0人推荐
随时随地看视频
慕课网APP