Create an account


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Unrar all files from multiple subdirectories at once

#1
Unrar all files from multiple subdirectories at once
One command, no script is needed, great time saver
Unpack (decompress) all files in multiple subdirectories, such as for example torrents with whole TV series with each episode in its own directory and each directory containing a lot of compressed files

/TV-show/

/TV-show/Episode.Name.S01E01/episode.name.01.r01
/TV-show/Episode.Name.S01E01/episode.name.01.r02
...
...
/TV-show/Episode.Name.S01E02/episode.name.02.rar

/TV-show/Episode.Name.S01E02/episode.name.02.r01
/TV-show/Episode.Name.S01E02/episode.name.02.r02
...
...
/TV-show/Episode.Name.S01E02/episode.name.02.rar

TV-show/Episode.Name.S01E03/episode.name.03.r01
/TV-show/Episode.Name.S01E03/episode.name.03.r02
...
...
/TV-show/Episode.Name.S01E03/episode.name.03.rar

Change to the TV-show directory and use unrar command:

Code:
$ cd /home/username/Videos/TV-show
$ unrar e -r *.rar

In your terminal, you should see a lot of lines like this:

Extracting from Episode.Name.S01E0X/episode.name.0X.rY

...         Episode.Name.0X.avi                                OK
All OK


And done!

To understand this command, unrar is command line application to decompress .rar files, e is command to extract files to current directory, -r is switch to recurse subdirectories.
TIP
You can run this command on any number of subdirectories, even whole Downloads folder, if you want to unrar everything and some archives are already unrar-ed, consider option switch -o- which is do not overwrite existing files, makes it faster and you do not have to confirm anything manually. For more information $ man unrar.

Code:
$ cd /home/username/Videos

Code:
$ unrar e -r -o- *.rar

This will extract all archives in any subdirectory inside Videos directory, if archive is already extracted, it will ignore it. Files will be extracted to the directory that you are in now, in this case /home/username/Videos.

To extract archives in a directory and it's subdirectories to other specified directory, use:

Code:
$ unrar e -r -o- /home/username/source/directory/*.rar /home/username/copy/extracted/t
Code:
o

If you do not specify the path, you may end up with extracted files in your home dir or whatever path you run these commands from.
[Image: 8OHl5AB.png]
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  Fedora - Recover your files from Btrfs snapshots xSicKxBot 0 1,075 10-05-2020, 04:17 PM
Last Post: xSicKxBot
  Fedora - How to setup multiple monitors in sway xSicKxBot 0 993 01-09-2020, 05:29 AM
Last Post: xSicKxBot
  Fedora - Using i3 with multiple monitors xSicKxBot 0 877 06-24-2019, 09:13 AM
Last Post: xSicKxBot
  Finding Files with mlocate xSicKxBot 0 1,109 03-18-2019, 07:05 PM
Last Post: xSicKxBot
  How to Search for Files from the Linux Command Line xSicKxBot 0 1,043 11-02-2018, 09:55 AM
Last Post: xSicKxBot
  Systemd Services: Monitoring Files and Directories xSicKxBot 0 1,467 06-19-2018, 02:29 PM
Last Post: xSicKxBot
  [Ubuntu] How to extract .7z 7 zip files xSicKx 0 1,656 05-20-2018, 09:05 PM
Last Post: xSicKx
  How to Rename Multiple Files on Linux xSicKx 0 1,428 05-19-2018, 07:01 PM
Last Post: xSicKx

Forum Jump:


Users browsing this thread:

Forum software by © MyBB Theme © iAndrew 2016