Warning, file /education/kturtle/spec/kill_kturtle.rb was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
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)