File indexing completed on 2024-04-21 03:45:23

0001 #!/usr/bin/env ruby
0002 #  SPDX-FileCopyrightText: 2009 Niels Slot
0003 #
0004 #  SPDX-License-Identifier: GPL-2.0-or-later
0005 
0006 puts "Killing interpreter process."
0007 
0008 pid = IO.readlines("pid")[0].to_i
0009 File.delete("pid")
0010 
0011 Process.kill('TERM', pid)