local ans
repeat
  io.write("The killbox program will be installed\n")
  io.write("Do you want to continue? (y/n)\n")
  --io.flush()
  ans = io.read()
until ans == "y" or ans == "n"

if ans == "y" then
  shell.setDir("disk")
  shell.run("install")
end  
