标签: file cron move
我需要一个脚本,我可以从一个cron作业运行,将10天或更旧的文件移动到另一个目录。作为一个Windows系统管理员,我不知道我在linux上做了什么。 :(有人能指出我正确的方向吗?
提前致谢。
答案 0 :(得分:0)
find /source/directory/* -mtime +10 -exec mv "{}" /my/directory \;
使用'crontab -e'打开crontab并将其设置为根据需要运行。