如何创建最后 30天文件的 tar ? 有没有人对此有所了解 请帮忙
由于
答案 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