Answer the question
In order to leave comments, you need to log in
How to display the output of utilities called with exec from the script.sh script in the terminal?
#!/bin/bash
cd build
exec cmake ../
exec make
exit 0
Answer the question
In order to leave comments, you need to log in
#!/bin/bash cd build exec cmake ../ exec make exit 0
#!/bin/bash
cd build
cmake ../
make
exit 0
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question