Find a file
Kovács Bálint Hunor 526f688f81 testing
2022-10-25 12:29:10 +03:00
demo testing 2022-10-25 12:29:10 +03:00
cppcompile.sh fixed error handling 2022-10-18 15:54:43 +03:00
cppcompile_win.sh fixed error handling 2022-10-18 15:54:43 +03:00
LICENSE Initial commit 2022-10-01 11:20:07 +03:00
README.md Update README.md 2022-10-01 14:03:11 +03:00

cppcompile

Bash script for easier C++ compiling and running from terminal.

The program searches for the .cpp files then tries compiles it. Otherwise displays the compilation error.

Demo

If you want to try the program you could try it in the demo folder. The demo program prints out input arguments to the terminal, if there is none prints out './a.out'.

Demo usage:

cd demo/
cppcompile.sh banana 5 4.8

Output should be:

Program arguments are: 'banana', '5', '4.8'.

Usage example:

cppcompile.sh [Argument1] [Argument2] ...

Input arguments are optional

NOTE: In the case of multiple input arguments, each argument has to be separated with a space

NOTE:

If you want to make modifications to the script, for example using a different c++ standard, (not c++20) then do that firstly before running the commands below.

Installation

For using the script you need to download it.

git clone https://github.com/MemerGamer/cppcompile.git
cd cppcompile/

GNU Linux / OS X

After downloading you need to make it an executable

chmod +x ./cppcompile.sh

After that you need to copy the script to the /usr/bin directory. For this you will need to be a sudoer!

sudo cp ./cppcompile.sh /usr/bin/

Windows

(You will need GitBash or WSL enabled)

After downloading you need to put cppcompile_win.sh in a folder, or create a folder somewhere secure. After that you need to put the folders path in the environment variables. Example

Now you can use it in the Windows Terminal like:

cppcompile_win.sh [Argument1] [Argument2] ...