I have a bash shell script in which I would like to pause execution until the user presses a key. In DOS, this is easily accomplished with the "pause" command. Is there a linux equivalent I can use in my script?
|
|
The If you are using bash, you can also specify a timeout with
|
|||
|
|
|
|
Try this:
|
|||
|
|
|
|
This will work in bash as long as stdin is coming from the console. If you have redirected stdin doing something like this e.g
it will not work. |
||
|
|
|
|
|
||
|
|
