https://www.gatsbyjs.org/docs/adding-a-list-of-markdown-blog-posts/
https://codinghero.netlify.com/
個人在學習Linux過程當中的個人筆記,提供個人及有需要的人查閱,若有錯誤歡迎提供指正,謝謝。 This Blog recorded notes about my learning Linux and provides myself and others reference. If there are any incorrect information, welcome to leave a message to correct me, Thanks.
2019年10月23日 星期三
2019年10月22日 星期二
定時排程刪除超過一定天數的檔案
https://softwareengineering.stackexchange.com/questions/149824/automatically-delete-files-after-they-expire
https://superuser.com/questions/1072679/bash-what-does-means
http://linux.vbird.org/linux_basic/0430cron.php
find $search_path -atime +3 -exec rm {} \;
加到crontab裡面
# crontab -e
{}的意思就是find輸出的結果會帶到rm的參數,\;是確保command結束符號,可用+取代
https://superuser.com/questions/1072679/bash-what-does-means
http://linux.vbird.org/linux_basic/0430cron.php
find $search_path -atime +3 -exec rm {} \;
加到crontab裡面
# crontab -e
{}的意思就是find輸出的結果會帶到rm的參數,\;是確保command結束符號,可用+取代
訂閱:
文章 (Atom)