考虑下面两个计划同时运行的命令(通过 Autosys,恰好在早上 8 点)。
该find
命令删除了超过 15 天的文件但以非零状态退出:
???find missing /app/source/a.txt no such file or directory
但是,a.txt
已经是一天前了。为什么该find
命令会验证运行期间存在但同时移动到另一个文件夹的最近文件?
find /app/source -type f -name -mtime +15 rm -f {} \;
mv /app/source/a.txt /app/backup/