Ives Asked: 2018-05-25 21:04:05 +0800 CST2018-05-25 21:04:05 +0800 CST 2018-05-25 21:04:05 +0800 CST Extracting rar files having the same password 772 I use unrar to extract rar files on Ubuntu 18.04. How can I extract 100 files that have the same password without giving the password 100 times. I hope I can do it on Nautilus, also terminal is fine. batch rar unzip 3 Answers Voted muclux 2018-05-25T22:30:46+08:002018-05-25T22:30:46+08:00 I don't think that you can do that in nautilus. In a terminal you can do it with unrar x -ppassword <files...> if you want to use the included path names. Type man unrar to see other options. 林果皞 2021-03-20T13:16:44+08:002021-03-20T13:16:44+08:00 In my case, the same password is for multiple split parts, so what I need is: unrar x -p<your_password> <1st_rar_filepath> ./<output_main_directory>/ Note: You only need to provide the first .rar filepath, then it will extract the rest of the rar files automatically. Ensure output directory name trailing with /. Holger Morgen 2018-05-25T22:54:16+08:002018-05-25T22:54:16+08:00 ... And use ls myfile*.rar | xargs -n1 rar x -ppassword to unpack all (100) files
I don't think that you can do that in nautilus. In a terminal you can do it with
if you want to use the included path names. Type
man unrar
to see other options.In my case, the same password is for multiple split parts, so what I need is:
Note:
.rar
filepath, then it will extract the rest of the rar files automatically./
.... And use
to unpack all (100) files