Files
Linux.js---javascript-OS/deps.sh
T
2021-12-02 16:28:42 +01:00

12 lines
358 B
Bash
Executable File

if [ -f /bin/pacman ] # btw
then
sudo pacman -S python gcc make bc unzip wget sudo binutils nasm autoconf diffutils binutils bison gettext flex
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