Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justin-credible/auto-unrar
A quick and dirty command line tool to automatically extract rar files.
https://github.com/justin-credible/auto-unrar
command-line-tool file-decompression personal-utility
Last synced: 1 day ago
JSON representation
A quick and dirty command line tool to automatically extract rar files.
- Host: GitHub
- URL: https://github.com/justin-credible/auto-unrar
- Owner: Justin-Credible
- License: mit
- Created: 2016-05-07T19:03:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-05-07T19:21:21.000Z (over 8 years ago)
- Last Synced: 2024-11-10T19:56:02.594Z (about 2 months ago)
- Topics: command-line-tool, file-decompression, personal-utility
- Language: C#
- Size: 6.84 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# auto-unrar
This is a quick and dirty command line tool used to automatically extract a rar file given the path to a rar file OR the path to a directory containing a rar file.
This is useful for torrent clients that can execute a command after a torrent has finished downloading.
Files are extracted to the same directory that the rar is located.
## Usage
I've tested this with qBittorrent v3.3.3, but it should work with other clients as well.
1. Open the `.sln` file and compile the project
2. Copy the resulting binary `bin/debug/auto-unrar.exe` to the desired location
3. Copy the configuration file `bin/debug/auto-unrar.exe.config` to the desired location (same as the binary)
4. Edit the configuration file to point at the location of `unrar.exe` and desired log file path
5. Open qBittorrent, navigate to File > Options > Downloads
6. Check "Run external program on torrent completion"
7. Enter the quoted path to `auto-unrar.exe` with the `%F` flag:````
"D:/auto-unrar.exe" "%F"
````