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