beautysh-install

This commit is contained in:
simono41 2017-12-23 00:37:51 +01:00
parent c7b3484e53
commit 22af54db0b

18
beautysh-install.sh Executable file
View file

@ -0,0 +1,18 @@
#!/bin/bash
set -ex
if [ -d /opt/beautysh ];then
rm -Rv /opt/beautysh
echo "Bereits vorhanden!!!"
fi
git clone https://github.com/bemeurer/beautysh /opt/beautysh
cd /opt/beautysh
python ./setup.py install
if [ -f /usr/bin/beautysh ];then
rm /usr/bin/beautysh
fi
ln -s /opt/beautysh/beautysh/beautysh.py /usr/bin/beautysh
chmod +x /usr/bin/beautysh
cd /