df2daf524d
Signed-off-by: Nico Schottelius <nico@manager.schottelius.org>
8 lines
228 B
Bash
Executable file
8 lines
228 B
Bash
Executable file
#!/bin/sh
|
|
|
|
torrent="$1"
|
|
logfile="$2"
|
|
echo "Logging to $logfile"
|
|
|
|
#btdownloadheadless --max_upload_rate 1 "$torrent" > "$logfile" 2>&1
|
|
btdownloadheadless --display_interval 10 --max_upload_rate 1 "$torrent" 2>&1 | tee "$logfile"
|