mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-19 18:00:22 +01:00
18 lines
646 B
Bash
Executable File
18 lines
646 B
Bash
Executable File
# https://github.com/Stadicus/guides/blob/master/raspibolt/raspibolt_67_additional-scripts.md
|
|
|
|
echo ""
|
|
echo "*** Adding: raspibolt_67_additional-scripts.md"
|
|
echo "Creating the command lnbalance as well as lnchannels which will give you a nicer output"
|
|
cd
|
|
mkdir /home/admin/tmpScriptDL
|
|
cd /home/admin/tmpScriptDL
|
|
wget https://raw.githubusercontent.com/Stadicus/guides/master/raspibolt/resources/lnbalance
|
|
wget https://raw.githubusercontent.com/Stadicus/guides/master/raspibolt/resources/lnchannels
|
|
chmod +x lnbalance
|
|
chmod +x lnchannels
|
|
sudo cp lnchannels /usr/local/bin
|
|
sudo cp lnbalance /usr/local/bin
|
|
echo "OK"
|
|
cd
|
|
rm -r /home/admin/tmpScriptDL
|