Cronjob检查在共享主机上修改的文件

问题描述 投票:-1回答:2

我需要检查我的文件是否被修改,如果是,请从备份文件夹复制(还原旧文件)。

cron shared-hosting cron-task
2个回答
0
投票

好,得到了我所期待的一部分:

find /home/**/public_html -mtime -1 \! -type d -ls -print0 | mailx -s "Summary of the modified files in $(date +\%d-\%m-\%Y-\%H.\%M.\%S) past hours" [email protected]

但是它提供带有noname文件作为附件的输出,如何使其带有时间戳文件名?


0
投票

此命令将排除public_html文件夹中名为“ webanalyzer”的目录吗?>

find /home/**/public_html -mtime -1 \! -type d -name "webanalyze" -prune -o -ls -print0 | mailx -s "Summary of the modified files in $(date +\%d-\%m-\%Y-\%H.\%M.\%S) past hours" [email protected]
© www.soinside.com 2019 - 2024. All rights reserved.