9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
directory=/tmp/webtorrent
|
|
player=mpv
|
|
|
|
webtorrent download "$1" -s -o "$directory" --"$player"
|
|
read -rp "File number: " nr
|
|
webtorrent download "$@" -s "$nr" -o "$directory" --"$player"
|