simple thing to run terminal commands so i dont have to type them out everytime
Runs commands from the BUILD file
Compile the program
g++ main.cpp -o build
./build
Just running any terminal commands
g++ main.cpp -o build
echo Hi Mom!
Variables to store things
Flags = "-Wextra -Werror -Wall"
g++ main.cpp -o build Flags
Ability to run commands while user is on a specific operating system
[WINDOWS]
echo this will only run on windows :D
[LINUX]
echo this will only run on linux :D
[MAC]
echo this will only run on Mac Os :|
ability to save all output to a file with the OUTPUT keyword like this:
output [FILENAME]