good afternoon !! I have this script but I could not get the emulator to work already I tried everything and nothing
#!/bin/bash
echo ""
echo "O Batocera não tem suporte oficial ao Drastic,
para informações de uso, bugs e limitações acesse o grupo
http://bit.ly/DrasticRBR"
echo "================================================"
read -p "Quer continuar? (Sim, não) " prompt
if [[ $prompt == "sim" || $prompt == "Sim" || $prompt == "sim" || $prompt == "Sim" ]]
then
mount -o remount,rw /
cd /usr/bin/
echo "Baixando o emulador..."
sleep 3
wget https://1fichier.com/?wn5op4ievj
mv index.html?wn5op4ievj drastic.zip
unzip -o drastic.zip
rm drastic.zip
chmod +x /usr/bin/drastic/drastic
chmod +x /usr/bin/drastic/scripts/start.sh
cd /usr/lib/
wget https://1fichier.com/?pzsavmsgi2
mv index.html?pzsavmsgi2 lib.zip
unzip -o lib.zip
rm lib.zip
echo "Baixando arquivos de configuração..."
cd /
wget https://1fichier.com/?rtwm8w0n1m
mv index.html?rtwm8w0n1m files.zip
unzip -o files.zip
rm files.zip
echo "Tudo pronto, baixando New Super Mario Bros para o primeiro teste."
sleep 4
cd /recalbox/share/roms
mkdir nds
cd /recalbox/share/roms/nds/
wget https://1fichier.com/?is70ueejho
mv index.html?is70ueejho NSMB.zip
unzip -o NSMB.zip
rm NSMB.zip
echo "Salvando alterações"
sleep 3
cd /boot/boot/
mount -o remount,rw /boot
rm overlay
/recalbox/scripts/recalbox-save-overlay.sh
echo "Reiniciando sistema"
reboot
fi