Created
April 10, 2021 13:55
-
-
Save patharanordev/675d43e75af4886e438d3c57a68b42bd to your computer and use it in GitHub Desktop.
Simple press key to continue new shell script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo "Press 'q' to continue" | |
| count=0 | |
| while : ; do | |
| read -n 1 k <&1 | |
| if [[ $k = q ]] ; then | |
| break | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment