标签:color tps 需要 链接 hive log code 清理 name
参考链接:Linux命令删除指定日期的文件
#清理当前目录90天前以.log结尾的文件
find -name "*.log" -mtime +90 -exec rm {} \;
示例
#查找文件内容修改发生在2天之内的文件 find /var/log/hive/ -name "*" -mtime -2
#删除5天前的文件 # -exec参数,如果查找有返回,可在exec参数后加上需要操作的命令,查找结果用{}来代替 find /var/log/hive/ -name "*" -mtime +5 -exec rm -rfv {} \;
标签:color tps 需要 链接 hive log code 清理 name
原文地址:https://www.cnblogs.com/victorfrost/p/12614643.html