HP UX 上删除超过 1 天的文件问题
我想删除文件夹中创建时间超过 1 天的文件。我怎样才能获得这些文件?
问候
I want to delete files in a folder that have creation time older than 1 day. How can I get those files?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Unix 没有创建时间。您可以尝试:
这将删除最后修改超过 1 天前的所有文件。
如果您想查找最近一天未访问的文件,请改用
-atime
参数。Unix does not have creation time. You can try:
This will delete all files which were last modified more than 1 day ago.
If you want to look for files that have not been accessed in the last day, use the
-atime
argument instead.