How to call a c++ program in a shell script, is it the same as in this thread?
When I run a shell script I should get result of a c++ program.
How to call a c++ program in a shell script, is it the same as in this thread?
When I run a shell script I should get result of a c++ program.
You, ah, run any program from a shell script by, um, calling it. All you need is a path to the executable and use that as your first string in the shell line. And command line agruments go after that (on the same line).