HP UX目录下根据创建时间删除文件的问题

发布于 2022-08-24 00:09:26 字数 220 浏览 19 评论 9

HP UX目录下根据创建时间删除文件的问题
1. root用户
2. 在某个目录下有50多个文件
3. 创建日期(通过#ll命令看到的日期是创建日期吧?)各不相同。分别为9月1号,9月2号,以此类推。
-----------------------------------------------------------------------
怎么删除9月1号创建的所有文件??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(9

爱你不解释 2022-08-29 20:43:51

哪位路过,给点提示?????????

禾厶谷欠 2022-08-29 18:19:57

晕了,还是不行:
-----------------------------
[root@ora10g testfile]# find . -atime +15 exec rm {}
>
find: paths must precede expression
Usage: find [path...] [expression]
[root@ora10g testfile]#

谜兔 2022-08-29 10:17:50

-atime n                    True if the file access time subtracted from
                             the initialized time is n-1 to n multiples of
                             24 h. The initialization time shall be a time
                             between the invocation of the find utility and
                             the first access by that invocation of the find
                             utility to any file specified by its path
                             operands.  The access time of directories in
                             pathname_list is changed by find itself.
                             
                             
                             
-ctime n                    True if the time of last change of file status
                             information subtracted from the initialization
                             time is n-1 to n multiples of 24 h. The
                             initialization time shall be a time between the
                             invocation of the find utility and the first
                             access by that invocation of the find utility
                             to any file specified by its path operands.

谜泪 2022-08-29 09:51:42

楼主给分吧,不过不要生搬2楼的,看好提示,以今日8号……

生寂 2022-08-28 18:09:18

查找满足 -atime +8的文件并执行rm的命令.

man find 可以看到相关的说明.

枉心 2022-08-28 11:01:42

哪位路过的朋友能帮忙解释下这条命令
#find . -atime +8 –exec rm {} ;

追我者格杀勿论 2022-08-28 04:40:09

能帮忙解释一下该命令吗?
----------------------------
find 不是查找命令吗?
----------------------------
以今日8号算
#find . -atime +8 –exec rm {} ;
----------------------------
原来:
查找满足 -atime +8的文件并执行rm的命令.
----------------------------------------------------------------------
-atime n                    True if the file access time subtracted from
                             the initialized time is n-1 to n multiples of
                             24 h. The initialization time shall be a time
                             between the invocation of the find utility and
                             the first access by that invocation of the find
                             utility to any file specified by its path
                             operands.  The access time of directories in
                             pathname_list is changed by find itself.
                             
                             
                             
-ctime n                    True if the time of last change of file status
                             information subtracted from the initialization
                             time is n-1 to n multiples of 24 h. The
                             initialization time shall be a time between the
                             invocation of the find utility and the first
                             access by that invocation of the find utility
                             to any file specified by its path operands.

[ 本帖最后由 TOADLover 于 2009-9-14 12:57 编辑 ]

舞袖。长 2022-08-25 05:06:50

以今日8号算
#find . -atime +8 –exec rm {} ;

海夕 2022-08-24 15:24:37

HP UX目录下根据创建时间删除文件的问题
1. root用户
2. 在某个目录下有50多个文件
3. 创建日期(通过#ll命令看到的日期是创建日期吧?)各不相同。分别为9月1号,9月2号,以此类推。
-----------------------------------------------------------------------
怎么删除9月1号创建的所有文件??

---------------------------------------------------------------------------------------------------------------

#find . -ctime n –exec rm {} ;
n =(today- target day approximate)

#find . -atime +8 –exec rm {} ;

atime for access time
+ means more than (n+1)*24hours

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