mirror of
http://gitea.phreedom.club/localhost_frssoft/peertube-cli
synced 2024-11-16 13:33:17 +00:00
11 lines
262 B
Bash
Executable file
11 lines
262 B
Bash
Executable file
#!/bin/sh
|
|
installdir="$HOME/.local/bin"
|
|
datadir="$HOME/.local/share/peertube-cli"
|
|
mkdir -p $installdir
|
|
mkdir -p $datadir
|
|
|
|
cp -r transmission-daemon config.json $datadir
|
|
cp peertube-cli.sh $installdir/peertube-cli
|
|
|
|
echo "done, make sure $installdir in your PATH"
|