linux – 移动30分钟的文件

前端之家收集整理的这篇文章主要介绍了linux – 移动30分钟的文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在一个服务器系统上工作,不允许我存储超过50千兆字节的文件.我的应用程序需要20分钟才能生成文件.有什么方法可以将所有超过30分钟的文件从源移动到目的地吗?我试过rsync:

rsync -avP source/folder/ user@destiantionIp:dest/folder

但这不会从我的服务器中删除文件,因此存储限制失败.

其次,如果我使用mv命令,仍然生成文件也会移动到目标文件夹,程序将失败.

最佳答案
你可以使用find和-exec来实现这个目的: –

根据需要将/ sourcedirectory和/ destination / directory /替换为源路径和目标路径.

find /sourcedirectory -maxdepth 1 -mmin -30 -type f -exec mv "{}" /destination/directory/ \;

基本上该命令的作用是,它试图在当前文件夹-maxdepth 1中查找30分钟前最后修改文件-mmin -30并将它们移动到指定的目标目录.如果要使用上次访问文件的时间,请使用-amin -30.

或者,如果要查找在某个范围内修改文件,可以使用-mmin 30 -mmin -35之类的内容,这样可以获得修改时间超过30但不到35分钟的文件.

手册页中的参考文献: –

   -amin n
          File was last accessed n minutes ago.

   -atime n
          File was last accessed n*24 hours ago.  When find figures out how many 24-hour periods ago the file was last accessed,any fractional part is ignored,so  to  match  -atime
          +1,a file has to have been accessed at least two days ago.

   -mmin n
          File's data was last modified n minutes ago.

   -mtime n
          File's data was last modified n*24 hours ago.  See the comments for -atime to understand how rounding affects the interpretation of file modification times.
原文链接:https://www.f2er.com/linux/440340.html

猜你在找的Linux相关文章