6

I'm on Ubuntu. When I run ghci on Terminal and do this:

Prelude Control.Monad System.IO> forever $ getChar >>= print

The result is something like this:

a'a'
b'b'
C'C'
%'%'
\'\\'
1'1'
''\''
"'"'
^X'\CAN'
^?'\DEL'
^CInterrupted.

That is, the characters I type in my keyboard are being flushed into output. How can I prevent this and have only print as the writer?

Dannyu NDos
  • 2,458
  • 13
  • 32

1 Answers1

9

To prevent input being flushed into the output (or "echoed"), use hSetEcho stdin False.

Prelude> import System.IO
Prelude System.IO> import Control.Monad
Prelude System.IO Control.Monad> hSetEcho stdin False
Prelude System.IO Control.Monad> forever $ getChar >>= print
'a'
'\n'
'b'
'c'

This can be used to do things like read in a password.

4castle
  • 32,613
  • 11
  • 69
  • 106