Dup Ver Goto 📝

input_recipes

PT2/linux/shell does not exist
To
13 lines, 67 words, 477 chars Page 'input_recipes' does not exist.

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)