首页 > 我的文章 > PHP开发 > 备份 > linux文件夹中新增文件压缩备份

linux文件夹中新增文件压缩备份

浏览:1132 编辑:绿萝 来源:绿萝
linux文件夹中新增文件压缩备份

find and tar union use

进入到文件的根目录下.

find . -mtime -1 -type d | xargs tar zcvpf  /xxx.tar.gz


find . -type f -mtime -1 | xargs tar zcvpf /xxx.tar.gz


-mtime -1 一天内的所有文件.


-mtime n 查找系统最后n*24小时被改变文件数据的文件


-type 查找某一类型的文件

     b 块设备文件

     d 目录

     c 字符设备文件

     p 管道文件

     l 符号链接文件

     f 普通文件

上一篇: 下一篇: