ellie-bash-installer/linuxAIO.sh

13 lines
284 B
Bash

#!/bin/sh
echo ""
echo "Welcome to EllieBot."
echo "Downloading the latest installer..."
root=$(pwd)
rm "$root/e-menu.sh" 1>/dev/null 2>&1
wget -N https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v5/e-menu.sh
bash e-menu.sh
cd "$root"
rm "$root/e-menu.sh"
exit 0