### 查看硬盘容量 `df -h` ### 查看目录容量 `du -sh /usr/local` ### 统计目录文件数量 `ls -l | grep '^-' | wc -l` ### 删除指定天数之前的文件 `find /usr/local -mtime +30 -type f -name '*.png' | xargs rm -rf` ### 每月定时任务 `crontab -e` `0 0 1 * * ls -l`