run.sh 192 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 mkdir -p output mkdir -p logs python3 main.py # 清理output目录下365天以前的文件 find output/ -type f -mtime +365 -exec rm -f {} \; find logs/ -type f -mtime +180 -exec rm -f {} \;