12 lines
311 B
Bash
Executable File
12 lines
311 B
Bash
Executable File
if [ -f /bin/pacman ] # btw
|
|
then
|
|
sudo pacman -S python gcc make bc unzip wget sudo binutils nasm
|
|
else if [ -f /bin/apt ] #deb / ubuntu
|
|
then
|
|
sudo apt-get install python3 g++ make bc unzip wget sudo
|
|
else if [ -f /bin/dnf ] #fedora
|
|
then
|
|
sudo dnf install python3 gcc-c++ make bc unzip wget sudo
|
|
fi
|
|
fi
|
|
fi |