shell脚本之如何监控目录下的文件内容是否被修改。

#!/bin/bash

[ !  -f /root/wyb/bo/cat.log  ]  && cat *.html > /root/wyb/bo/cat.log
cat *.html >tmp.log

cmp tmp.log /root/wyb/bo/cat.log

[ $? -eq 0 ] && echo yes || echo no

你可能感兴趣的:(shell,脚本)