我知道我可以在 Linux 系统中使用date +%s
和。stat
但是由于 Solaris 不支持这些格式或时代命令,我如何创建一个 shellscript 来比较文件修改时间和当前时间?
与当前时间相比,修改文件时间应在 10 分钟内。
[ShellScript]
Current_Time=
Modification_Time=
Compare = Current_Time - Modification_time
if ["$Compare" -gt 600]; then
Echo "there is no find found within 10 min"
else
Echo "Found the file"
if