請按照日期格式(xxxx-xx-xx)每日生成一個文件,例現在天生成的文件爲2017-09-03.log, 而且把磁盤的使用狀況寫到到這個文件中。shell
## vim log.shvim
## vim log.sh
#!/bin/bash d=`date +%F` touch $d.log df -hT > $d.log
crontab -e
00 * * * /bin/sh /root/shell/log.shbash
00 * * * /bin/sh /root/shell/log.sh