Dup Goto 📝

input_recipes

PT2/linux/shell 07-31 13:46:40
To Pop
13 lines, 67 words, 477 chars Monday 2023-07-31 13:46:40

Press Enter to Continue

See this unix.stackexchange question

read -p "Press enter to continue"
# for any key to do
read -n 1 -s -r -p "Press any key to continue"

Explanation by Rayne and wchargin

-n defines the required character count to stop reading
-s hides the user's input
-r causes the string to be interpreted "raw" (without considering backslash escapes)