Hmm, vi får se om jag har förstått de här rätt...
Det här skulle jag vilja automatisera med .rtorrent.rc;
- jag kategoriserar nedladdningar efter typ (manuellt)
- alla nedladdningar hamnar i /media/Love_/Torrents/Downloads (rtorrent.rc innehåller även
Kod: Markera allt
directory = /media/Love_/Torrents/Downloads
, spelar det någon roll när man använder d.set_directory?
- när nedladdningen är klar packar ett skript upp filen till en katalog som beror på typ av fil (sätts med d.set_custom1)
- när nedladdningen har nått sin ratio tas de nedladdade filerna bort tillsammans med torrent-filen
Kod: Markera allt
schedule = watch_directory_DVD,5,5,"load_start=/media/Love_/Torrents/Torrentfiles/DVD_Movies/*.torrent,d.set_directory=/media/Love_/Torrents/Downloads,d.set_custom1=/media/Love_/Downloads/DVD_Movies"
schedule = watch_directory_HD,5,5,"load_start=/media/Love_/Torrents/Torrentfiles/HD_Movies/*.torrent,d.set_directory=/media/Love_/Torrents/Downloads,d.set_custom1=/media/Love_/Downloads/HD_Movies"
schedule = watch_directory_Music,5,5,"load_start=/media/Love_/Torrents/Torrentfiles/Music/*.torrent,d.set_directory=/media/Love_/Torrents/Downloads,d.set_custom1=/media/Love_/Downloads/Music"
schedule = watch_directory_TV_Series,5,5,"load_start=/media/Love_/Torrents/Torrentfiles/TV_Series/*.torrent,d.set_directory=/media/Love_/Torrents/Downloads,d.set_custom1=/media/Love_/Downloads/TV_Series"
schedule = watch_directory_Other,5,5,"load_start=/media/Love_/Torrents/Torrentfiles/Other/*.torrent,d.set_directory=/media/Love_/Torrents/Downloads,d.set_custom1=/media/Love_/Downloads/Other"
schedule = untied_directory,5,5,stop_untied=
schedule=ratio,60,60,"close_on_ratio={400,0,1000,\"execute={rm,-rf,$d.get_base_path=}\",d.erase=}
on_finished = unpack_rar,"execute=/path/to/unpack_rar.sh,$d.get_base_path=,$d.get_custom1"
Tillsammans med unpack_rar.sh aktiverat med chmod a+x unpack_rar.sh
Kod: Markera allt
#!/bin/bash
if [ "$2" != "" ]; then
yes no | nice -n 15 unrar x -r "$1/*.rar" "$2" >&- 2>&- &
fi
Ser det ut som någonting som skulle kunna fungera?