如何使用名称中的日期创建zip文件?


12

在命令行中,如何从名称为当前日期的目录中创建一个zip文件?

我可以使用zip -r name dir,但是如何给它命名一个日期呢?

Answers:


28

通过将date命令放入文件名中:

zip -r "archive-$(date +"%Y-%m-%d").zip" file1 file2 file3 file4

那只是年月日,但是您可以使用时间,星期等等,如果更适合您。您可以在中阅读有关替换字符串的更多信息man date


比你好:)
szaman

1
对于日期和时间:zip -r“ archive-$(date +”%Y-%m-%d%H-%M-%S“)。zip” file1 file2 file3 file4
Samad
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.