Used for my OpenGL graphics class. This teeny tiny bash script compiles .cpp files for OpenGL projects using Linux, and links all the libraries necessary for the course (make sure you've already got GLEW, GLFW, GLM, etc etc installed). Inspired by this stackoverflow answer on how to build and install GLFW3 on linux.
git clone https://github.com/dsvoid/glcomp.git && cd glcomp/
sudo cp glcomp /usr/bin/glcomp
sudo chmod +x /usr/bin/glcomp
glcomp [YOUR FILE HERE].cpp
./[YOUR FILE HERE].exec