vote up 1 vote down star

So, I have a Makefile which runs different commands of how to build S/W. I execute make from within a MSYS / MinGW enviroment.

I found for example, the sleep <seconds> command, but this only delays the execution. How can I make it wait for a key being pressed, for example?

flag

3 Answers

vote up 2 vote down check

You can use the read command. When you are done you press enter and your script/makefile continues. It's a builtin bash command, so it should work also on MinGW.

link|flag
It does. Thanks – cmdev Oct 29 at 12:26
then accept please :-) (you get some rep too ;) ) – klez Oct 29 at 17:06
vote up 1 vote down

Pipe the output of the build through more (or less)

e.g.

make <make command line> | more
link|flag
this is the correct answer – Pavel Shved Oct 29 at 17:45
vote up 0 vote down

My proposition doesn't stop execution but halts and resume display on capable terminals:

Use ctrl-S for halting display, and ctrl-Q for resuming.

You don't need to modify your Makefile.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.