Environment is Beaglebone Black which is running Debian Linux and Python.
I need a function which will wait for only Enter hit and will return True. Anything apart from Enter, I don't want to show keypress in terminal (act like keyboard doesn't work). raw_input
will show pressed key in terminal. I need something similar as os.system("pause")
which works in Windows.