Quick-Phone-Setup/install-requirements-rhel.sh

18 lines
342 B
Bash
Raw Permalink Normal View History

2024-09-01 16:29:55 -04:00
clear
echo "Installing ADB and Golang..."
sudo dnf install adb golang -y
clear
echo "Completed."
sleep 2
echo "Downloading FDroidCl..."
mkdir ./temp/ && cd ./temp/
wget https://github.com/mvdan/fdroidcl/releases/download/v0.7.0/fdroidcl_v0.7.0_linux_amd64
chmod +x ./fdroidcl_v0.7.0_linux_amd64
cd ../
clear
echo "Completed."
sleep 2
clear