Is it possible to get each char from STDIN once it is provided (without waiting for return key)?
This is possible with Ruby 1.9.3's new getch
method:
require 'io/console'
input = STDIN.getch
Docs (Core): http://ruby-doc.org/core-2.3.0/IO.html#class-IO-label-io-2Fconsole
Docs (Lib): http://ruby-doc.org/stdlib-2.3.0/libdoc/io/console/rdoc/IO.html#method-i-getch
Source: https://github.com/ruby/ruby/tree/trunk/ext/io/console
Yes, there are numerous ways to do this, and besides gems you can directly manipulate with terminfo through gems for termios, ncurses or stty program.
tty_param = `stty -g`
system 'stty raw'
a = IO.read '/dev/stdin', 1
system "stty #{tty_param}"
print a
Use the Highline gem:
require "highline/system_extensions" # gem install highline
include HighLine::SystemExtensions
print "Enter one character: "
char = get_character
puts char.chr
from JEG II's blog.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With