我正在尝试将目录中的许多文件压缩,但是我需要按年份对它们进行压缩。 我正在使用以下命令来查找文件:
find /destination_path/ -newermt 20160101 -not -newermt 20170101
使用|
可以压缩这些文件吗?
TIA
答案 0 :(得分:0)
尝试先管道先xargs
,再先zip
find /destination_path/ -newermt 20160101 -not -newermt 20170101 | xargs -n1 zip 20170101.zip