我目前正在运行成功的 mysql 备份,并且在某些站点上,我正在使用此命令删除超过 7 天的文件
find /path/to/file -mtime +7 -exec rm -f {} \;
我想做的,因为我是偏执狂并且仍然想要一些存档信息,是删除超过 31 天的文件,但至少保留上个月的一个文件,也许保留 1 日创建的任何文件本月的。
有任何想法吗?
您可以使用以下命令创建文件:
SRC_DIR=/home/USB-Drive
DATE=$(/bin/date "+%4Y%2m%2d%2H%2M")
TIME_STAMP=$(/bin/date --date 'now' +%s)
TIME_CAL=$[$TIME_STAMP-2592000+25200] #last day, 25200 is my GMT+7hour
TIME_LAST=$(/bin/date --date "1970-01-01 $TIME_CAL sec" "+%4Y%2m%2d%2H%2M")
/bin/touch -t ${TIME_LAST} /tmp/lastmonth
/usr/bin/find -P -H ${SRC_DIR} ! -newer /tmp/lastmonth -type d -exec rm -r {} \;
您可以根据要删除的内容修改最后一个命令,在这种情况下,我想删除 SRC_DIR 中的子文件夹。超过 1 个月前的“时间属性”。
您还可以使用 xargs 编写一个脚本来包含这样的内容:
查找 /path/to/files -mtime +7| xargs -i rm {};
然后将脚本添加到您的 cron 作业中
grep 几乎是对的,它只有一个空格太多。这有效(至少对我来说,我使用 Debian):
rm `find /path/to/file -type f -mtime +7 -exec ls -l {} + | grep -v ' [A-S][a-z][a-z] 1 ' | sed -e 's:.* /path/to/file:/path/to/file:g'`
有点难看,但你可以尝试解析输出ls -l
rm `find /path/to/file -type f -mtime +7 -exec ls -l {} + | grep -v ' [A-S][a-z][a-z] 1 ' | sed -e 's:.* /path/to/file:/path/to/file:g'`
或者编写一个脚本来获取列表,然后一次运行rm
一个。