shell-scripte-code/beautysh-install.sh
2017-12-23 00:37:51 +01:00

18 lines
368 B
Bash
Executable file

#!/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 /