12 lines
190 B
Bash
12 lines
190 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Update repositories
|
|
apt-get update
|
|
apt-get upgrade
|
|
|
|
# Install utilities
|
|
apt-get install -y unzip
|
|
apt-get install -y git
|
|
apt-get install -y make
|
|
apt-get install -y g++
|