Skip to content

Instantly share code, notes, and snippets.

@luislavena
Created March 9, 2012 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luislavena/2009356 to your computer and use it in GitHub Desktop.
Save luislavena/2009356 to your computer and use it in GitHub Desktop.
# a.rb
trap(:INT) do
puts "Hit Ctrl+C in a.rb"
end
exec "ruby b.rb"
# b.rb
trap(:INT) do
puts "Hit Ctrl+C in b.rb"
exit(false)
end
sleep
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment