2019年10月23日 星期三

Gatsby製作Blog

https://www.gatsbyjs.org/docs/adding-a-list-of-markdown-blog-posts/
https://codinghero.netlify.com/


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結束符號,可用+取代