9 lines
147 B
Bash
Executable File
9 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
trap 'stty sane; exit' INT TERM
|
|
eval "$@"
|
|
stty_orig="$(stty -g)"
|
|
stty -echo raw
|
|
dd bs=1 count=1 1>/dev/null 2>/dev/null
|
|
stty $stty_orig
|
|
|