torrent/data/finisher.pl
Benoît HUBERT ( Home ) 5608e4d62e first commit
2025-06-10 16:12:38 +02:00

12 lines
261 B
Perl
Executable File

#!/usr/bin/perl
use strict;
use warnings;
# Stop sharing
if( $ENV{ "TR_TORRENT_ID" } )
{
print "/usr/bin/transmission-remote -t ".$ENV{ "TR_TORRENT_ID" }." -r\n";
system("/usr/bin/transmission-remote", "-t", $ENV{ "TR_TORRENT_ID" }, "-r" );
}