Ruby prevent default CTRL+C output ^C

219 views Asked by At

I am catching signal with

rescue Interrupt => e

But it always prints:

^CShutting down!

Is there a way to prevent the default CTRL+C output:

^C

Any ideas?

1

There are 1 answers

1
Stefan On BEST ANSWER

Some terminals support stty -echoctl to disable echoing of control characters:

`stty -echoctl`

begin
  loop do
    # ...
  end
rescue Interrupt => e
  puts 'shutting down'
end

If the above doesn't work, you can disable all echoing by setting IO#echo= to false:

require 'io/console'

STDIN.echo = false

begin
  loop do
    # ...
  end
rescue Interrupt => e
  puts 'shutting down'
end