diff --git a/beautysh-install.sh b/beautysh-install.sh new file mode 100755 index 0000000..d789f62 --- /dev/null +++ b/beautysh-install.sh @@ -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 / +