In my company we have to manually configure and install apaches. So I'm working in a script to automatically install it.
My problem is that I couldn't find an exit code for the configure/make/make install
I found a workaround to check the output, but its barely working.
There is any way to check if the commands finish successfully?
I tried using exit(0), but the commands always finish. I need to know if they finish with errors.
Thanks for your help