18 lines
342 B
Bash
18 lines
342 B
Bash
|
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
|