Files
Linux.js---javascript-OS/deps.sh
T
2021-11-30 10:57:05 +01:00

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