Skip to content

Instantly share code, notes, and snippets.

@tombruijn
Last active October 18, 2016 08:54
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 tombruijn/a4181e217b8e1c46ebcc2c116223cb6a to your computer and use it in GitHub Desktop.
Save tombruijn/a4181e217b8e1c46ebcc2c116223cb6a to your computer and use it in GitHub Desktop.
SignalException rescue example
#!/usr/bin/env ruby
# $ ruby signal.rb
# $ kill -QUIT [pid]
puts "Process pid: #{Process.pid}"
puts "I will exit automatically after 50 seconds."
i = 0
loop do
i += 1
begin
sleep 5
rescue SignalException => e
puts e.inspect
end
exit if i > 10
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment