美文网首页
shell计算程序运行时长

shell计算程序运行时长

作者: 风吹路过的云 | 来源:发表于2019-12-13 17:50 被阅读0次
    #!/bin/bash
    
    starttime=`date +'%Y-%m-%d %H:%M:%S'`
    sleep 3
    endtime=`date +'%Y-%m-%d %H:%M:%S'`
    start_seconds=$(date --date="$starttime" +%s);
    end_seconds=$(date --date="$endtime" +%s);
    echo "本次运行时间: "$((end_seconds-start_seconds))"s"
    

    相关文章

      网友评论

          本文标题:shell计算程序运行时长

          本文链接:https://www.haomeiwen.com/subject/cfqqnctx.html