代码如下:
#!/bin/bash
timestamp=`date +%s`
filepath=/root/yuhui/ta-2016030307.log
if [ -f $filepath ];
then
echo "文件存在!路径为:$filepath"
filetimestamp=`stat -c %Y $filepath`
echo "文件最后修改时间戳:$filetimestamp"
timecha=$[$timestamp - $filetimestamp]
if [ $timecha -gt 60 ];then
echo '当前时间大于文件最后修改时间60秒'
else
echo '当前时间小于文件最后修改时间60秒'
fi
else
echo "文件不存在或者您输入的路径有误"
fi
运行结果如下: