6 lines
219 B
Bash
Executable file
6 lines
219 B
Bash
Executable file
#!/bin/bash
|
|
watch_folder=~/rtorrent/watch/start
|
|
cd $watch_folder
|
|
[[ "$1" =~ xt=urn:btih:([^&/]+) ]] || exit;
|
|
echo "d10:magnet-uri${#1}:${1}e" > "meta-${BASH_REMATCH[1]}.torrent"
|
|
notify-send "rTorrent" "Torrent ajouté"
|