I am running Ubuntu MATE 19.04 and i like using the command line. I have been looking around for upto date C++ tutorials that i can use.
learncpp.com
EDIT: My bad, read the question wrong.
Last edited on
this may help.
a compile batch file for simple gettng started programs:
g++ %1 %2 %3 %4 %5 %6 -std=c++17 -Wall -Wextra -pedantic-errors -O3 -s
you can fool with makefiles and bigger stuff later.
I forget maybe shell script inputs look a little different; the g++ flags are the useful bit here.