Bash -nt 比较如何区分访问、修改、更改?
在 Bash 中,-nt 测试比较修改时间
-nt 更新于(文件的修改日期-时间)
,如下所示
if [ file_a -nt file_b ]; then
fi
有没有办法比较访问时间或更改时间?
In Bash the -nt test compares Modify time
-nt newer than (modification date-time of file)
like here
if [ file_a -nt file_b ]; then
fi
Is there a way to compare Access time or Change time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 stat 来访问 atime 和 ctime:
You'll have to use stat to access the atime and ctime: