date命令用法

1.獲取當前時間spa

    date "+%Y-%d-%m %H:%M:%S"字符串

    輸出:2014-02-10 22:34:52string

    %w:獲取星期幾date

2.時間與時間戳相互轉換時間戳

    獲取當前時間戳:date +%snext

    輸出:1412260667英文

    把時間戳轉換爲時間:date -d @1412260667時間

    輸出:2014年 10月 02日 星期四 22:37:47 CST字符

    把時間轉換爲時間戳:date -d '2015-01-01' +%s

    輸出:1420041600

3.獲取過去或將來的時間戳

    獲取昨天的時間戳:date -d  "yesterday" +%s

    輸出:1412174625

   獲取下個月的時間戳:date -d "next month" +%s

    輸出:1414939492

    date -d  "string" 其中string是合法的英文時間字符串,好比明天tomorrow,3天前-3 day,明年next year。  

相關文章
相關標籤/搜索