Configuration

需要解釋 rtorrent.rc 調度值

  • November 9, 2014

我想設置一些監視文件夾,然後將完成的種子移動到特定目錄以進行進一步處理。在我根據這個相當古老的指南從這裡開始之前,我想知道的是值 11,10 和 12,10 和 13,10 是什麼?我已經為此做了一些搜尋,但並不幸運。也許是我選擇的關鍵字。

# Schedules to watch folders
schedule = watch_directory_1,11,10,"load_start=~/torrents/misc/*.torrent,d.set_custom1=~/Downloads/"
schedule = watch_directory_2,12,10,"load_start=~/torrents/tv/*.torrent,d.set_custom1=~/Downloads/TV/"
schedule = watch_directory_3,13,10,"load_start=~/torrents/movie/*.torrent,d.set_custom1=~/Downloads/Movies/"

# Move completed downloads to preset target
system.method.set_key = event.download.finished,move_complete,"d.set_directory=$d.get_custom1=;execute=mv,-u,$d.get_base_path=,$d.get_custom1="

第一個值是開始,第二個值是函式執行的時間間隔。一秒鐘的差異,只是確保並非所有 3 個 watch_directory “呼叫”都隨時間分佈。

而不是秒(如您的範例),也可以是時間值(HH:MM:SS)。以下時間安排在每 24 小時凌晨 1 點:

schedule = throttle_1,01:00:00,24:00:00,download_rate=0
schedule = throttle_2,01:00:00,24:00:00,upload_rate=300

引用自:https://unix.stackexchange.com/questions/166942