Files
linux-install-helper/Ubuntu/package_install.sh

11 lines
174 B
Bash
Raw Normal View History

2019-08-15 21:53:08 +02:00
#!/bin/bash
# Run sys update and upgrade
sudo apt update && sudo apt upgrade
# Install git
sudo apt install git
# Install gcc & g++ & cmake
sudo apt install gcc g++ cmake