Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> linux date下取時間代碼

linux date下取時間代碼

日期:2017/2/7 14:26:43      編輯:Linux教程
 

公司網站有兩台服務器的硬盤空間少的可憐,所以必須一兩天得清理一次日志。但是這樣一來消耗了大量的人力和時間,並且有時候可能會忘記,日志一旦爆滿,用戶就無法訪問我們的網站。這時候我們就得讓腳本每天去清理日志:每天晚上的0點,通過crontab運行腳本把昨天的日志打包移到其他服務器上(這裡我用了NFS,本地目錄掛載到了其他硬盤空間大的服務器上)
•Linux下昨天:date -d ‘yesterday’ +”%Y_%m_%d”或者date -d ‘-1 day’ +”%Y_%m_%d”或者date -d ‘1 days ago’ +”%Y_%m_%d”
•前天:date -d ‘-2 day’ +”%Y_%m_%d”或者date -d ‘2 days ago’ +”%Y_%m_%d”
•大前天:date -d ‘-3 day’ +”%Y_%m_%d”或者date -d ‘3 days ago’ +”%Y_%m_%d”
•明天:date -d ‘tomorrow’ +”%Y_%m_%d”或者date -d ‘1 day’ +”%Y_%m_%d”

Copyright © Windows教程網 All Rights Reserved