readline-sync/lib/read.sh

24 lines
722 B
Bash
Raw Normal View History

2015-03-03 18:30:41 +01:00
silent_read() {
2015-03-01 18:00:20 +01:00
stty --file=/dev/tty -echo echonl 2>/dev/null || \
stty -F /dev/tty -echo echonl 2>/dev/null || \
2015-03-03 18:30:41 +01:00
stty -f /dev/tty -echo echonl || exit 1
IFS= read -r INPUT </dev/tty || exit 1
2015-03-01 18:00:20 +01:00
stty --file=/dev/tty echo -echonl 2>/dev/null || \
stty -F /dev/tty echo -echonl 2>/dev/null || \
2015-03-03 18:30:41 +01:00
stty -f /dev/tty echo -echonl || exit 1
2015-03-01 18:07:28 +01:00
}
if [ "$1" = "noechoback" ]; then
# Try `-s` option. *ksh have it that not `--silent`. Therefore, don't try it.
if [ -n "$BASH_VERSION" ] || [ -n "$ZSH_VERSION" ]; then
2015-03-03 18:30:41 +01:00
IFS= read -rs INPUT </dev/tty 2>/dev/null || silent_read
2015-03-01 18:07:28 +01:00
printf '\n' >/dev/tty
else
2015-03-03 18:30:41 +01:00
silent_read
2015-03-01 18:07:28 +01:00
fi
2014-07-12 00:37:25 +02:00
else
2015-03-03 18:30:41 +01:00
IFS= read -r INPUT </dev/tty || exit 1
2014-07-12 00:37:25 +02:00
fi
2015-03-01 07:06:53 +01:00
printf '%s' "'$INPUT'"
2014-06-27 03:08:05 +02:00
exit 0