如何使用批处理脚本压缩具有唯一密码的文件?


0

美好的一天。我想知道是否有办法编写批处理脚本将文件转换为密码加密的zip文件夹(每个zip文件夹将有一个唯一的密码)?

我已经看过几个关于为zip文件夹创建批处理脚本的教程 预设&一致的密码,但我想知道是否有办法让批处理脚本引用.csv文件中记录的一组随机密码来创建具有不同密码的zip文件?


既然你提到“批处理”,你问的是什么 视窗 批处理文件 S'
Worthwelle

Answers:


0

假设一个 file.csv (以空格分隔的文件名):

file1 file2 file3,password1,output1
file4 file5,password2,output2
file2 file5,password3,output3

您可以使用以下脚本:

#!/bin/bash
cat file.csv | while IFS="," read -r files password output; do zip -e -P $password $output $files; done

现在(现在)OP想要一个Windows批处理文件。另外,请研究在shell脚本和UUOC中引用内容的必要性。
Scott
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.