Unrar multiple files
Unrar Multiple Files
Not something you run into everyday. However when you need to unrar multiple files in a directory, the following command is handy:
$ find -type f -name '*.rar' -exec unrar x {} \;
Read other posts
Not something you run into everyday. However when you need to unrar multiple files in a directory, the following command is handy:
$ find -type f -name '*.rar' -exec unrar x {} \;