Computercraft thingies
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

update.lua 158B

1234567
  1. local h = http.get("http://s.mort.coffee/mortcc/install.lua")
  2. local f = fs.open("tmp", "w")
  3. f.write(h.readAll())
  4. f.close()
  5. shell.run("tmp")
  6. fs.delete("tmp")