遍历解压带密码的rar文件

下载对应版本的unrar可执行文件:

https://www.rarlab.com/download.htm

循环解压带密码的rar文件:

for file in ./*.rar
do
    if test -f $file
    then
        unrar e -pWoShiMiMa -u $file -y
    fi
done


 

 

 

 

你可能感兴趣的:(随手记,shell)