11-Linux中批量解压缩rar文件

https://blog.easwy.com/archives/extract-multiple-rar-files-in-linux/

进入到有.rar文件的目录下,执行下面这句话:(确保安装过rar解压工具)

for f in `ls --color=none`; do unrar x $f; done

你可能感兴趣的:(Linux,python,linux)