2025-01-19 12:39:49 +03:00
|
|
|
# Torrent download alias.
|
|
|
|
function tdl() {
|
2025-01-19 12:43:28 +03:00
|
|
|
transmission-remote home.local "${@}"
|
2025-01-19 12:39:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
# Download torrent files to home.
|
|
|
|
# Usage: tdla <FILES>
|
|
|
|
function tdla() {
|
|
|
|
tdl -a "${@}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# List download torrents.
|
|
|
|
function tdll() {
|
|
|
|
transmission-remote home.local -l
|
|
|
|
}
|