如何创建最近30天的文件tar

时间:2014-06-17 13:27:36

标签: linux find tar

如何创建最后 30天文件的 tar ? 有没有人对此有所了解 请帮忙

由于

1 个答案:

答案 0 :(得分:1)

使用这个简单的命令

$find ~ -mtime -30 | xargs tar -cvf Tar_File.tar

Explanation:    

find     -- To find the files recursively
-mtime   -- specified the modification time of last 30 days  
xargs    --The given output is passed as an input using pipe  |  and xargs convert
            all  input as an arguments .
tar      --tar comand tar the files