The Following User Says Thank You to IzzehO For This Useful Post: | ||
|
2010-04-27
, 23:42
|
Posts: 11 |
Thanked: 2 times |
Joined on Apr 2010
@ Oman
|
#52
|
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.
|
2010-04-27
, 23:48
|
Posts: 557 |
Thanked: 370 times |
Joined on Apr 2010
|
#53
|
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.
for fl in *.7z; do 7z x -y "$fl"; done
The Following User Says Thank You to IzzehO For This Useful Post: | ||
|
2010-05-15
, 08:29
|
Posts: 1 |
Thanked: 0 times |
Joined on May 2010
@ Australia
|
#54
|
|
2010-06-09
, 22:41
|
|
Posts: 248 |
Thanked: 51 times |
Joined on Jan 2010
@ Amsterdam
|
#55
|
|
2010-06-09
, 22:58
|
|
Posts: 609 |
Thanked: 243 times |
Joined on Jan 2010
@ Eastern USA
|
#56
|
|
2010-06-20
, 06:42
|
|
Posts: 417 |
Thanked: 200 times |
Joined on Apr 2010
@ Germany
|
#57
|
|
2010-08-16
, 08:37
|
Posts: 3 |
Thanked: 0 times |
Joined on Aug 2010
|
#58
|
|
2010-08-22
, 20:09
|
|
Posts: 7,075 |
Thanked: 9,073 times |
Joined on Oct 2009
@ Moon! It's not the East or the West side... it's the Dark Side
|
#59
|
|
2010-08-22
, 20:36
|
Posts: 384 |
Thanked: 95 times |
Joined on Jan 2010
@ Romania
|
#60
|
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.