Skip to content

Instantly share code, notes, and snippets.

@luckylittle
Created May 4, 2018 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luckylittle/b9a1dc4e81613e21464fc5fc5df190f0 to your computer and use it in GitHub Desktop.
Save luckylittle/b9a1dc4e81613e21464fc5fc5df190f0 to your computer and use it in GitHub Desktop.
Recursively, UnRar all files
#!/bin/bash
# UNRAR 5.00 freeware https://www.rarlab.com/rar/unrar-5.0-RHEL5x64.tar.gz
find . -name '*.rar' -type f -execdir unrar e -o- {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment