尝试按日期压缩文件未按预期工作

尝试按日期压缩文件未按预期工作

我正在尝试压缩一堆文件,但只压缩那些在特定日期创建的文件。我尝试使用 -t 选项,但它找不到我能清楚看到的文件。

这是我执行 ls -lrt 时目录中的内容的示例:

Oct  6 21:59 file07061259
Oct  6 23:54 file07062354
Oct  7 06:14 file07070614
Oct  7 06:54 file07070654
Oct  7 07:12 file07070712
Oct  7 07:26 file07070726

我只想压缩 10 月 7 日的文件。所以我尝试了这个:

zip -t10072022 10-07-22_logs.zip

但结果却是这样的:

zip error: Nothing to do! (10-07-22_logs.zip)

我还尝试将当前目录添加到命令中:

zip -t10072022 10-07-22_logs.zip .
zip error: Nothing to do! (10-07-22_logs.zip)

我究竟做错了什么?

相关内容