Add prompt any key

This commit is contained in:
ViViDboarder 2021-10-22 17:59:14 -07:00
parent 77c49e1b5b
commit ca64a39b0f
1 changed files with 7 additions and 0 deletions

View File

@ -443,3 +443,10 @@ prompt_yn () {
return 1
}
#
# Prompt any key
#
prompt_any () {
read -p "Press any key key to continue..." -n1 -s -r
}