• shell生成连续天数日期


    #!/bin/bash
    #两个参数:起始时间和终止时间,循环输出每天
    #输入格式:20171201 20171225
    #输出格式:2017-12-01 2017-12-25
    startdate=`date -d "+0 day $1" +%Y%m%d`
    enddate=`date -d "+0 day $2" +%Y%m%d`
    
    while [[ $startdate -le $enddate ]]
    do
    date=$startdate
    startdateother=`date -d "+0 day $date" +%Y-%m-%d`
    dateother=$startdateother
    echo "$dateother"
    startdate=`date -d "+1 day $date" +%Y%m%d`
    startdateother=`date -d "+1 day $date" +%Y-%m-%d`
    # write code here
    echo /usr/bin/python /home/admin/bin/getappidasrandtts.py /data/trace/trace.log.$dateother /data/trace/appidasrtts.log.$dateother
    /usr/bin/python /home/admin/bin/getappidasrandtts.py /data/trace/trace.log.$dateother /data/trace/appidasrtts.log.$dateother
    done
    

    备份备查

  • 相关阅读:
    CUDA和cudnn的环境变量设置问题
    zsh-Ubuntu更实用终端
    应用安全
    应用安全
    应用安全
    操作系统
    应用安全
    应用安全
    操作系统
    密码学
  • 原文地址:https://www.cnblogs.com/zhzhang/p/9395843.html
Copyright © 2020-2023  润新知