In Ruby I have the following:
# Trap Interrupts
trap("INT") do
puts "Shutting down..."
exit
end
When I interrupt the program, the following is printed (Mac OSX Lion):
^CShutting down...
Is there any way to hide ^C from within Ruby?
|
Whether control characters are echoed is a property of the tty you're using. |
|||
|
|
|
I've found that in my Python programs on Linux and Mac OS X terminals I can hide the ^C by starting the message with a carriage return (\r). It feels like a hack but it works just fine. |
|||
|
|
Closing link...) and then omitting the 'C' :) (Still would have the^though) – itdoesntwork Mar 21 '12 at 2:01