mirror of
http://gitea.phreedom.club/localhost_frssoft/peertube-cli
synced 2024-11-16 23:03:19 +00:00
9 lines
223 B
Bash
9 lines
223 B
Bash
|
#!/bin/sh
|
||
|
installdir="$HOME/.local/bin"
|
||
|
datadir="$HOME/.local/share/peertube-cli"
|
||
|
|
||
|
cp -r transmission-daemon config.json $datadir
|
||
|
cp peertube-cli.sh $installdir/peertube-cli
|
||
|
|
||
|
echo "done, make sure $installdir in your PATH"
|