8 lines
124 B
Plaintext
8 lines
124 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. ../tui.sh
|
||
|
|
||
|
printf 'Press any key. Key will printed below.\n'
|
||
|
tui_readkey KEY
|
||
|
printf 'Key pressed: %s\n' "$KEY"
|