我需要检查我的文件是否被修改,如果是,请从备份文件夹复制(还原旧文件)。
好,得到了我所期待的一部分:
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文件作为附件的输出,如何使其带有时间戳文件名?
此命令将排除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]