Skip to content

Instantly share code, notes, and snippets.

View mpusz's full-sized avatar

Mateusz Pusz mpusz

View GitHub Profile
@mpusz
mpusz / alternatives.sh
Last active May 1, 2024 09:04
Ubuntu scripts
#/bin/bash
sudo update-alternatives --remove-all gcc
sudo update-alternatives --remove-all g++
sudo update-alternatives --remove-all clang
sudo update-alternatives --remove-all clang++
sudo update-alternatives --remove-all cc
sudo update-alternatives --remove-all c++
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70 --slave /usr/bin/g++ g++ /usr/bin/g++-7