mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2025-10-07 07:22:36 +02:00
8 lines
246 B
Bash
Executable File
8 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
# torrent peertube videos, requires the transadd script
|
|
# first argument is the video link, second is the quality (480 or 1080)
|
|
# 13/07/20 - Arthur Bais
|
|
|
|
link="$(echo "$1" | sed "s/w/download\/torrents/")""-$2.torrent"
|
|
transadd "$link"
|