1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
computer-craft/download

6 lines
174 B
Text

local tArgs = { ... }
local url = "http://example.net/computercraft/"
local x = http.get(url..tArgs[1]).readAll()
hFile = io.open(tArgs[2], "w")
hFile:write(x)
hFile:close()