ellie-bash-installer/linuxAIO.sh

14 lines
286 B
Bash
Raw Normal View History

2024-06-25 02:11:33 -07:00
#!/bin/sh
echo ""
echo "Welcome to EllieBot."
echo "Downloading the latest installer..."
root=$(pwd)
rm "$root/e-menu.sh" 1>/dev/null 2>&1
2024-06-25 03:22:09 -07:00
wget -N https://toastielab.dev/Emotions-stuff/ellie-bash-installer/raw/branch/v5/e-menu.sh
2024-06-25 02:11:33 -07:00
bash e-menu.sh
cd "$root"
rm "$root/e-menu.sh"
exit 0