Maj de sheebr + maj mineure des scripts

This commit is contained in:
Marc
2021-11-29 14:08:48 +01:00
parent 07c16904e6
commit 952edb4270
18 changed files with 294 additions and 33 deletions
Executable
+12
View File
@@ -0,0 +1,12 @@
if [ -f /bin/pacman ] # btw
then
sudo pacman -S python gcc make bc
else if [ -f /bin/apt ] #deb / ubuntu
then
sudo apt-get install python3 g++ make
else if [ -f /bin/dnf ] #fedora
then
sudo dnf install python3 gcc-c++ make bc
fi
fi
fi