linux shell 時間運算以及時間差計算方法__linux

來源:互聯網
上載者:User

最近一段時間,在處理Shell 指令碼時候,遇到時間的處理問題。 時間的加減,以及時間差的計算。

 

1。 時間加減

 

這裡處理方法,是將基礎的時間轉變為時間戳記,然後,需要增加或者改變時間,變成 秒。

 

如:1990-01-01 01:01:01  加上 1小時 20分

處理方法:

a.將基礎時間轉為時間戳記

time1=$(date +%s -d '1990-01-01 01:01:01')

echo $time1

631126861 【時間戳記】

 

b.將增加時間變成秒

[root@localhost ~]# time2=$((1*60*60+20*60))
[root@localhost ~]# echo $time2

4800

 

c.兩個時間相加,計算出結果時間

time1=$(($time1+$time2))

time1=$(date +%Y-%m-%d\ %H:%M:%S -d "1970-01-01 UTC $time1 seconds");

echo $time1

1990-01-01 02:21:01

 

2。時間差計算方法

 

如:2010-01-01 與 2009-01-01 11:11:11 時間差

原理:同樣轉成時間戳記,然後計算天,時,分,秒

 

time1=$(($(date +%s -d '2010-01-01') - $(date +%s -d '2009-01-01 11:11:11')));

echo time1

 

將time1 / 60 秒,就變成分了。

 

補充說明:

shell 單括弧運算子號:

a=$(date);

等同於:a=`date`;

 

雙括弧運算子:

a=$((1+2));

echo $a;

等同於:

a=`expr 1 + 2`


http://www.cnblogs.com/chengmo/archive/2010/07/13/1776473.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.