查找早于 x 天的文件,然后在删除它们之前输出名称和大小

查找早于 x 天的文件,然后在删除它们之前输出名称和大小

我试图找到早于 x 天的文件,然后在删除它们之前将其名称和总大小打印到文本文件中,问题是当我组合多个 (-exec) 选项时出现错误。这是我的sh文件

#!/bin/bash
cache_location=$1
age=$2
date=`date +%d-%m-%Y`
find $cache_location -mtime $2 -path '*keyword*' -fprint deleted_cache_$date.log -exec du -k {} \; | awk '{total+=$1}END{print "TOTAL SIZE " total/1024/1024 "GB"}' >> deleted_cache_$date.log \; 
-exec echo {} | wc -l>> deleted_cache_$date.log \;
-exec rm -r {} \;

然后我这样调用脚本:

.\myscript.sh location +30

脚本因错误而停止

awk: fatal: cannot open file `;' for reading (No such file or directory)
find: ‘du’ terminated by signal 13

在日志文件中,我可以看到所有结果寻找命令。

相关内容