有一批数据文件,加密的 rar ,我想批量解压该怎么写脚本
unrar x 数据.rar ./解压数据
expect{
"Enter password (will not be echoed) for abc.csv.gz:" { send "password" }
"yes/no" { send "y\r"; exp_continue}
}
这样写只执行第一句话,还是要手动输入密码?
所以请问,应该怎么写才可以执行 expect 语句
1
oott123 2015-09-28 23:06:18 +08:00
http://home.gna.org/unrar/
unrar -p password -f your_rar.rar |
2
znoodl 2015-09-29 08:46:40 +08:00 via iPhone
win 下简单,全选右键解压,输入密码,用于全部文件
|