I have this bash script which basically starts the web and selenium servers with progress indicator. Since it takes some time to selenium server to start I\'m checking the statu
Use stty to turn off keyboard input.
stty
stty -echo #### Ur Code here #### stty echo
-echo turns off keyboard input and stty echo reenables keyboard input.
-echo
stty echo