Skip to content

Instantly share code, notes, and snippets.

@stemwinder
Last active August 29, 2015 14:15
Show Gist options
  • Save stemwinder/07efa1164936f584b83f to your computer and use it in GitHub Desktop.
Save stemwinder/07efa1164936f584b83f to your computer and use it in GitHub Desktop.
Recursive Unrar
# Source: http://www.beginninglinux.com/home/data-compression/unrar-all-files-from-multiple-subdirectories-at-once
# simple: unrar e -r *.rar
unrar e -r -o- /home/username/source/directory/*.rar /home/username/copy/extracted/to
# Delete after extraction
find ./ -name "*.r*" -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment