13 lines
299 B
Bash
13 lines
299 B
Bash
|
#!/bin/sh
|
||
|
echo ""
|
||
|
echo "Welcome to EllieBot."
|
||
|
echo "Downloading the latest installer..."
|
||
|
root=$(pwd)
|
||
|
|
||
|
rm "$root/e-bin.sh" 1>/dev/null 2>&1
|
||
|
curl -L -o "$root/e-bin.sh" https://toastielab.dev/EllieBotDevs/ellie-bash-installer/raw/branch/v6/e-bin.sh
|
||
|
|
||
|
bash e-bin.sh
|
||
|
cd "$root"
|
||
|
rm "$root/e-bin.sh"
|
||
|
exit 0
|