Created
December 30, 2021 01:58
-
-
Save NerdyDeedsLLC/d57d741264a4ee626b3df9c24b2f4480 to your computer and use it in GitHub Desktop.
capture_input.sh - reads non-meta keystrokes from a bash shell (for key-operated menus and interfaces)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function capture_input(){ | |
export CAPPING=true | |
export SSTTY | |
if [[ "$(stty --save 2>/dev/null)" == "" ]]; then | |
SSTTY="$(stty -g)" #BASH | |
else | |
SSTTY="$(stty --save)" #ZSH | |
fi | |
trap sigint_handler SIGINT | |
keycap | |
} | |
function keycap(){ | |
[[ "$CAPPING" == false ]] && return 1 | |
command stty -echo -icanon -icrnl time 0 min 0 | |
keypress='' | |
while [[ "x$keypress" == "x" && "$CAPPING" == true ]]; do | |
echo -ne '>\r' | |
keypress="$(cat -v)" | |
done | |
echo "KEY :: '$keypress'" | |
[[ "$CAPPING" == true ]] && keycap "$SSTTY" | |
} | |
function sigint_handler(){ | |
echo "Killed by user" | |
CAPPING=false | |
stty $SSTTY | |
trap '' INT | |
return 1 | |
} | |
capture_input |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment