#!/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"
#!/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
网友评论