Search found 4 matches

by ggeremy
Thu Oct 28, 2010 3:22 pm
Forum: Support
Topic: script partially running after download complete
Replies: 6
Views: 3871

Re: script partially running after download complete

It's working !

Thanks a lot :wink:
by ggeremy
Wed Oct 27, 2010 3:44 pm
Forum: Support
Topic: script partially running after download complete
Replies: 6
Views: 3871

Re: script partially running after download complete

Hi,
I need your help again. I've made some modifications modifications in my script
in order to send the data of a completed torrent on remote host.

#!/bin/bash
{

#COMMANDE
RSYNC=/usr/bin/rsync

#DATE
DAY=`date +"%F"`
TIME=`date +"%T"`

#LOGFILE
RSC="/path/to/log/rsync_${DAY}_${TIME}.log"
HST ...
by ggeremy
Sun Oct 24, 2010 2:31 pm
Forum: Support
Topic: script partially running after download complete
Replies: 6
Views: 3871

Re: script partially running after download complete

It's working like a charm !
Thank you

Now I have a second question, I saw on other scripts that there is a variable $TR_TORRENT_NAME.
I suppose this is the torrent completed. Are there more variables like this ?

Thank you
by ggeremy
Sat Oct 23, 2010 3:04 pm
Forum: Support
Topic: script partially running after download complete
Replies: 6
Views: 3871

script partially running after download complete

Hi everybody !

I have a problem with a really simple script partially running after download complete.
I just want to list all the torrent and get their ID.


#!/bin/bash

TR=/usr/local/bin/transmission-remote
AUTH="host:port --auth=user:password"
LIST=`$TR $AUTH -l | sed -e '1d;$d;s/^ *//' | cut ...