Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # Unrar my torrent files after download
- # get parameter from qBT (the torrent path) and set it as a variable for the script.
- t_path="$1"
- # change to the torrent directory
- cd "$t_path"
- # unrar any rar files inside the directory
- /usr/bin/unrar x *.rar
Add Comment
Please, Sign In to add comment