2009
09.05
09.05
This will unrar all the rar files matching the pattern into the current directory, ignoring pathnames (-ep) and force overwrite (-o+) – handy for unrar’ing ISO’s.
for f in /source/dir/*.rar ; do unrar x -ep -o+ $f ; done
No Comment.
Add Your Comment