2023-06-24 04:44:49 +02:00
|
|
|
* go-torrent-helper
|
|
|
|
|
|
|
|
This is a helper program to add and remove torrents from a transmission-daemon instance.
|
|
|
|
|
|
|
|
To use, make sure `TRANSMISSION_RPC_URL` is exported in the shell:
|
|
|
|
#+begin_src shell
|
|
|
|
export TRANSMISSION_RPC_URL=10.0.0.42
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
Install with Go:
|
|
|
|
#+begin_src shell
|
2023-10-02 17:31:23 +02:00
|
|
|
go install git.sr.ht/~hyperreal/go-torrent-helper@latest
|
2023-06-24 04:44:49 +02:00
|
|
|
#+end_src
|
|
|
|
|
|
|
|
Example usage:
|
|
|
|
#+begin_src shell
|
|
|
|
# Add Fedora torrents
|
|
|
|
go-torrent-helper add -distro fedora -relver 38
|
|
|
|
|
|
|
|
# Remove NixOS torrents
|
|
|
|
go-torrent-helper remove -distro nixos
|
|
|
|
|
|
|
|
# Add Rocky Linux torrents
|
|
|
|
go-torrent-helper add -distro rocky -relver 9.2
|
|
|
|
|
|
|
|
# Remove older Rocky Linux torrents
|
|
|
|
go-torrent-helper remove -distro rocky -relver 8.1
|
2023-06-25 13:29:13 +02:00
|
|
|
|
|
|
|
# If not -relver flag is supplied for the remove subcommand, remove all torrents for given distro
|
|
|
|
go-torrent-helper remove -distro debian
|
2023-06-24 04:44:49 +02:00
|
|
|
#+end_src
|