1.应用场景
当脚本中涉及大文件或多文件的解压压缩时,等待时间过长,最好加上执行过程耗时,以便后期优化和下一步操作。
2.解决办法
starttime=`date +'%Y-%m-%d %H:%M:%S'`
#执行程序
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"