Skip to content

Instantly share code, notes, and snippets.

@mystix
Created June 7, 2010 10:45
Show Gist options
  • Select an option

  • Save mystix/428523 to your computer and use it in GitHub Desktop.

Select an option

Save mystix/428523 to your computer and use it in GitHub Desktop.
Rapidshare unpacker
#!/bin/bash
for FILE in $(find . -type f -regex '.*\.rar$'); do
mv $FILE .
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment