View Single Post
Posts: 557 | Thanked: 370 times | Joined on Apr 2010
#53
Originally Posted by IzzehO View Post
7zip should work for rar files as well. Just change the file.zip to file.rar.

Also if you need to extract multiple files, there is a script on google you can type out with a for loop. (7zip doesn't support * variables) Just google terminal zip multiple files or something.
Code:
for fl in *.7z; do 7z x -y "$fl"; done
^What I was looking for. According to some it should work using 7z e "*.zip", but I'm certain that didn't work for me. Anyway, with that above command just change the *.7z to whatever archive type you need (Eg. *.rar)
 

The Following User Says Thank You to IzzehO For This Useful Post: