HP UX 上删除超过 1 天的文件问题

发布于 2024-11-28 22:22:02 字数 52 浏览 0 评论 0原文

我想删除文件夹中创建时间超过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终止放荡 2024-12-05 22:22:02

Unix 没有创建时间。您可以尝试:

find /path/to/dir -type f -mtime +1 -exec rm {} \;

这将删除最后修改超过 1 天前的所有文件。

如果您想查找最近一天未访问的文件,请改用-atime 参数。

Unix does not have creation time. You can try:

find /path/to/dir -type f -mtime +1 -exec rm {} \;

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文